/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*--------------- form reset ------------*/
button {
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  padding: 0;
  outline: none;
  margin: 0;
  border: none;
  background-color: transparent;
}
button:hover {
  opacity: 0.7;
  background-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 0.1rem #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel], input[type=search], input[type=date] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel], input[type=date] {
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: #B7B7B7;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.666vw;
  }
}

body {
  line-height: 1.75;
  color: rgb(49, 49, 49);
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1rem;
  }
}

dl, ul, ol {
  margin: 0;
  padding: 0;
}

img {
  backface-visibility: hidden;
}

label {
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  html {
    min-height: 100vh;
  }
  body {
    line-height: 1.5714285714;
    min-width: 1%;
    position: relative;
    max-width: 100%;
  }
}
/* link
--------------------------------------------------*/
a {
  color: inherit;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a {
  /*&:hover,
  &:focus {
  	text-decoration: underline;
  }*/
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    transition: 0.3s;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
}
.p-side {
  text-align: center;
  height: 100vh;
  background: url("../images/common/bg_fixed.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.8rem;
}
.p-side__text {
  font-size: 1rem;
  margin-top: 1.5rem;
  letter-spacing: 0.03rem;
  color: #FFF;
}
.p-side__link {
  margin-top: 4rem;
}
.p-side__link-contact {
  margin-top: 4rem;
}

@keyframes rattling1 {
  0% {
    transform: translate(0, -2px) rotate(6deg);
  }
  10% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(0, 0) rotate(-6deg);
  }
  30% {
    transform: translate(0, -2px) rotate(0deg);
  }
  40% {
    transform: translate(0, -2px) rotate(-4deg);
  }
  50% {
    transform: translate(2px, 0) rotate(-2deg);
  }
  60% {
    transform: translate(0, 2px) rotate(0deg);
  }
  70% {
    transform: translate(0, 0) rotate(6deg);
  }
  80% {
    transform: translate(2px, 0) rotate(-2deg);
  }
  90% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, -2px) rotate(6deg);
  }
}
@keyframes rattling2 {
  0% {
    transform: translate(1px, 1px) rotate(6deg);
  }
  10% {
    transform: translate(2px, -1px) rotate(0deg);
  }
  20% {
    transform: translate(1px, 0) rotate(-6deg);
  }
  30% {
    transform: translate(0, 0) rotate(0deg);
  }
  40% {
    transform: translate(2px, 0) rotate(6deg);
  }
  50% {
    transform: translate(0, -1px) rotate(-2deg);
  }
  60% {
    transform: translate(0, 0) rotate(0deg);
  }
  70% {
    transform: translate(1px, 0) rotate(2deg);
  }
  80% {
    transform: translate(1px, 3px) rotate(-2deg);
  }
  90% {
    transform: translate(1px, 0) rotate(1deg);
  }
  100% {
    transform: translate(0, 2px) rotate(-6deg);
  }
}
@keyframes rattling3 {
  0% {
    transform: translate(0, 3px) rotate(4deg);
  }
  10% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(0, 0) rotate(2deg);
  }
  30% {
    transform: translate(0, 1px) rotate(0deg);
  }
  40% {
    transform: translate(0, -2px) rotate(4deg);
  }
  50% {
    transform: translate(2px, 0) rotate(2deg);
  }
  60% {
    transform: translate(0, 0) rotate(0deg);
  }
  70% {
    transform: translate(0, 2px) rotate(-4deg);
  }
  80% {
    transform: translate(-2px, 0) rotate(-2deg);
  }
  90% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 2px) rotate(6deg);
  }
}
@keyframes rattling4 {
  0% {
    transform: translate(0, 1px) rotate(-2deg);
  }
  10% {
    transform: translate(-3px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(0, 0) rotate(-6deg);
  }
  30% {
    transform: translate(0, 0) rotate(0deg);
  }
  40% {
    transform: translate(-2px, 0) rotate(-4deg);
  }
  50% {
    transform: translate(0, 1px) rotate(6deg);
  }
  60% {
    transform: translate(0, 0) rotate(0deg);
  }
  70% {
    transform: translate(-1px, 0) rotate(-4deg);
  }
  80% {
    transform: translate(0, 2px) rotate(2deg);
  }
  90% {
    transform: translate(0, 0) rotate(-1deg);
  }
  100% {
    transform: translate(0, -2px) rotate(6deg);
  }
}
@keyframes rattling5 {
  0% {
    transform: translate(0, 1px) rotate(-7deg);
  }
  10% {
    transform: translate(0, 0) rotate(-2deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(6deg);
  }
  30% {
    transform: translate(0, 0) rotate(0deg);
  }
  40% {
    transform: translate(2px, 0) rotate(-6deg);
  }
  50% {
    transform: translate(0, 2px) rotate(4deg);
  }
  60% {
    transform: translate(0, 0) rotate(-4deg);
  }
  70% {
    transform: translate(-1px, 0) rotate(6deg);
  }
  80% {
    transform: translate(0, 2px) rotate(-2deg);
  }
  90% {
    transform: translate(0, 0) rotate(-6deg);
  }
  100% {
    transform: translate(0, 2px) rotate(4deg);
  }
}
.p-mv {
  position: relative;
  height: 100%;
}
.p-mv__wrapper {
  position: absolute;
  top: 35%;
  left: 0;
}
.p-mv__inner {
  position: relative;
}
.p-mv__title {
  width: 21.2rem;
}
@media screen and (max-width: 960px) {
  .p-mv__title {
    width: 18.75vw;
  }
}
.p-mv__image img {
  position: absolute;
  height: auto;
}
.p-mv__image img:first-child {
  animation: rattling1 7s step-start 0s infinite;
  width: 6.5rem;
  top: 0;
  right: -8rem;
}
@media screen and (max-width: 960px) {
  .p-mv__image img:first-child {
    width: 5.2083333333vw;
    right: -7vw;
  }
}
.p-mv__image img:nth-child(2) {
  animation: rattling2 8.4s step-start 0s infinite;
  width: 6.4rem;
  left: -2rem;
  bottom: -9.5rem;
}
@media screen and (max-width: 960px) {
  .p-mv__image img:nth-child(2) {
    width: 5.2083333333vw;
    left: -2vw;
    bottom: -9.5vw;
  }
}
.p-mv__image img:nth-child(3) {
  animation: rattling3 8s step-start 0s infinite;
  width: 5.5rem;
  top: 18rem;
  left: 3rem;
}
@media screen and (max-width: 960px) {
  .p-mv__image img:nth-child(3) {
    width: 4.1666666667vw;
    top: 18vw;
    left: 3vw;
  }
}
.p-mv__image img:nth-child(4) {
  animation: rattling4 9s step-start 0s infinite;
  width: 4.8rem;
  top: 15rem;
  left: 9.5rem;
}
@media screen and (max-width: 960px) {
  .p-mv__image img:nth-child(4) {
    width: 3.6458333333vw;
    top: 15vw;
    left: 9vw;
  }
}
.p-mv__image img:nth-child(5) {
  animation: rattling5 9.4s step-start 0s infinite;
  width: 5.7rem;
  top: 17.5rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-mv__image img:nth-child(5) {
    width: 4.6875vw;
    top: 17vw;
  }
}
.p-mv__image img:nth-child(6) {
  animation: rattling2 10s step-start 0s infinite;
  width: 7.3rem;
  top: 14.5rem;
  right: -7rem;
}
@media screen and (max-width: 960px) {
  .p-mv__image img:nth-child(6) {
    width: 6.25vw;
    top: 14vw;
    right: -7vw;
  }
}

/* --------------------------------------------------
  footer
-------------------------------------------------- */
.l-footer {
  padding: 10rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 8rem 0 4rem;
  }
}
.l-footer__sns {
  margin: 5rem auto;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    margin: 4rem auto;
  }
}
.l-footer__sns ul {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer__sns ul li {
    height: 2.4rem;
  }
  .l-footer__sns ul li img {
    width: auto;
    height: 100%;
  }
}
.l-footer__sns ul li:not(:first-child) {
  margin-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns ul li:not(:first-child) {
    margin-left: 3rem;
  }
}
.l-footer__btn {
  width: 22.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__btn {
    width: 18rem;
  }
}
.l-footer__btn a {
  text-align: center;
  display: block;
  font-size: 2.25rem;
  text-transform: uppercase;
  color: #FFF;
  background-color: #343434;
  border-radius: 4rem;
  padding: 1rem 0;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-footer__btn a {
    font-size: 18px;
    font-size: 4.6153846154vw;
    padding: 0.8rem 0;
  }
}
.l-footer__copy {
  font-size: 1.25rem;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 10px;
    font-size: 2.5641025641vw;
  }
}

body {
  scroll-behavior: smooth;
  background: url("../images/bg.jpg") center top/512px 512px repeat;
}

.l-wrapper {
  position: relative;
  width: 960px;
  margin: 0 auto;
  padding: 0 42px;
}
@media screen and (max-width: 960px) {
  .l-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    height: auto;
    padding: 0;
  }
}

.l-side {
  position: fixed;
  top: 0;
  left: 50%;
  margin-left: -438px;
  width: 334px;
  height: 100vh;
  padding: 0 4rem;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .l-side {
    margin-left: -410px;
  }
}
@media screen and (max-width: 767px) {
  .l-side {
    display: none;
  }
}

.l-main {
  margin-left: 376px;
  position: relative;
  display: block;
  width: 500px;
  z-index: 99;
  background-color: #F0ECE3;
}
@media screen and (max-width: 960px) {
  .l-main {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    width: 100%;
  }
}
.l-main.is-fixed {
  position: fixed;
}

.l-content-inner {
  margin: auto;
  max-width: 100%;
  padding: 0 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-content-inner {
    padding: 0 5vw;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

.u-bold {
  font-weight: bold;
}

/*----------- shadow ------------*/
.u-boxshadow {
  box-shadow: 0 0 10px rgba(24, 99, 175, 0.25);
}

.c-en {
  font-family: "Paytone One", sans-serif;
}

.c-sec__title {
  font-size: 3.2rem;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-sec__title {
    font-size: 25px;
    font-size: 6.4102564103vw;
  }
}
.c-sec__title::before, .c-sec__title::after {
  content: "";
  width: 146px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-sec__title::before, .c-sec__title::after {
    width: 28.5vw;
    height: 4vw;
  }
}
.c-sec__title::before {
  background: url("../images/img_line-left.svg") center/contain no-repeat;
  left: 0;
}
.c-sec__title::after {
  background: url("../images/img_line-right.svg") center/contain no-repeat;
  right: 0;
}

.c-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3Njc3MvZm91bmRhdGlvbi9fc2FuaXRpemUuc2NzcyIsImNvbW1vbi5jc3MiLCIuLi9zY3NzL2ZvdW5kYXRpb24vX21peGluLnNjc3MiLCIuLi9zY3NzL2ZvdW5kYXRpb24vX2Jhc2Uuc2NzcyIsIi4uL3Njc3MvZm91bmRhdGlvbi9fc2V0dGluZy5zY3NzIiwiLi4vc2Nzcy9sYXlvdXQvX3NpZGUuc2NzcyIsIi4uL3Njc3MvbGF5b3V0L19tdi5zY3NzIiwiLi4vc2Nzcy9sYXlvdXQvX2Zvb3Rlci5zY3NzIiwiLi4vc2Nzcy9sYXlvdXQvX2xheW91dC5zY3NzIiwiLi4vc2Nzcy9vYmplY3QvX3V0aWxpdHkuc2NzcyIsIi4uL3Njc3Mvb2JqZWN0L19jb21wb25lbnQuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQTsrRUFBQTtBQUdBOztFQUFBO0FBSUE7RUFDQyxzQkFBQTtBQ0ZEOztBRElBOzs7RUFHQyxtQkFBQTtBQ0REOztBRElBOzs7RUFBQTtBQUtBOztFQUVDLHdCQUFBLEVBQUEsTUFBQTtFQUNBLHVCQUFBLEVBQUEsTUFBQTtBQ0ZEOztBREtBOzs7Ozs7OztFQUFBO0FBVUE7RUFDQyxlQUFBLEVBQUEsTUFBQTtFQUNBLGdCQUFBLEVBQUEsTUFBQTtFQUNBLGdCQUFBLEVBQUEsTUFBQTtFQUNBLGNBQUE7S0FBQSxXQUFBLEVBQUEsTUFBQTtFQUNBLHdDQUFBLEVBQUEsTUFBQTtFQUNBLDBCQUFBLEVBQUEsTUFBQTtFQUNBLDhCQUFBLEVBQUEsTUFBQTtFQUNBLHNCQUFBLEVBQUEsTUFBQTtBQ0hEOztBRE1BOytFQUFBO0FBR0E7O0VBQUE7QUFJQTtFQUNDLFNBQUE7QUNMRDs7QURRQTs7O0VBQUE7QUFLQTtFQUNDLFNBQUE7RUFDQyxtQkFBQTtBQ05GOztBRFdBOytFQUFBO0FBR0E7O0VBQUE7QUFJQTs7Ozs7RUFLQyxTQUFBO0FDVkQ7O0FEYUE7O0VBQUE7QUFJQTs7OztFQUlDLFNBQUE7QUNYRDs7QURjQTs7O0VBQUE7QUFLQTtF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 */