@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 10;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background-repeat: no-repeat;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
}

a,
a:visited {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: top;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

/* フォーム */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
}

select {
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

[type=radio],
[type=checkbox] {
  margin: 0;
}

[type=text],
[type=number],
[type=tel],
[type=email] {
  border-style: solid;
  border-width: 1px;
  border-radius: 0;
}

[type=number] {
  -moz-appearance: textfield;
}
[type=number]::-webkit-outer-spin-button, [type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
  border: none;
  padding: 0;
  background: transparent;
  outline: none;
}

input,
select {
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.footer {
  text-align: center;
  max-width: 94%;
  margin: 100px auto 80px;
}
@media (max-width: 767px) {
  .footer {
    margin: 40px auto;
  }
}
.footer__logo {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .footer__logo {
    text-align: center;
    max-width: 80%;
    margin: 0 auto 20px;
  }
}
.footer__sns {
  margin-bottom: 50px;
}
.footer__sns a:first-of-type {
  margin-right: 25px;
}
.footer__copyright {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: 12px;
  }
}

/*base.scss*/
[src$="_sp.jpg"],
[src*="_sp.jpg?"],
[src$="_sp.svg"],
[src*="_sp.svg?"],
[src$="_sp.png"],
[src*="_sp.png?"] {
  display: block;
}
@media screen and (min-width: 768px) {
  [src$="_sp.jpg"],
[src*="_sp.jpg?"],
[src$="_sp.svg"],
[src*="_sp.svg?"],
[src$="_sp.png"],
[src*="_sp.png?"] {
    display: none;
  }
}

[src$="_pc.jpg"],
[src*="_pc.jpg?"],
[src$="_pc.svg"],
[src*="_pc.svg?"],
[src$="_pc.png"],
[src*="_pc.png?"] {
  display: none;
}
@media screen and (min-width: 768px) {
  [src$="_pc.jpg"],
[src*="_pc.jpg?"],
[src$="_pc.svg"],
[src*="_pc.svg?"],
[src$="_pc.png"],
[src*="_pc.png?"] {
    display: block;
  }
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  word-break: normal;
}

p {
  line-height: 1.6;
}

a {
  transition: 0.3s;
  color: #000;
}
a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

@keyframes fadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn-r {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIn-l {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
*[class*=fadeUp].scroll-in {
  animation-name: fadeUp;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

*[class*=slideIn-r].scroll-in {
  animation-name: slideIn-r;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

*[class*=slideIn-l].scroll-in {
  animation-name: slideIn-l;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-delay: 0;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.fadeUp-1,
.slideIn-r-1,
.slideIn-l-1 {
  opacity: 0;
  animation-delay: 0.1s;
}
.fadeUp-2,
.slideIn-r-2,
.slideIn-l-2 {
  opacity: 0;
  animation-delay: 0.3s;
}
.fadeUp-3,
.slideIn-r-3,
.slideIn-l-3 {
  opacity: 0;
  animation-delay: 0.5s;
}
.fadeUp-4,
.slideIn-r-4,
.slideIn-l-4 {
  opacity: 0;
  animation-delay: 0.7s;
}
.fadeUp-5,
.slideIn-r-5,
.slideIn-l-5 {
  opacity: 0;
  animation-delay: 0.9s;
}
.fadeUp-6,
.slideIn-r-6,
.slideIn-l-6 {
  opacity: 0;
  animation-delay: 1.1s;
}
.fadeUp-7,
.slideIn-r-7,
.slideIn-l-7 {
  opacity: 0;
  animation-delay: 1.3s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}
.fadeOut.scroll-in {
  animation: fadeOut 0.5s ease 0s 1 forwards;
}

.loading {
  height: 100%;
  background: #3E3A39;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
}