@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --in-sine: cubic-bezier(.47, 0, .745, .715);
  --out-sine: cubic-bezier(.39, .575, .565, 1);
  --in-out-sine: cubic-bezier(.445, .05, .55, .95);
  --in-quad: cubic-bezier(.55, .085, .68, .53);
  --out-quad: cubic-bezier(.25, .46, .45, .94);
  --in-out-quad: cubic-bezier(.455, .03, .515, .955);
  --in-cubic: cubic-bezier(.55, .055, .675, .19);
  --out-cubic: cubic-bezier(.215, .61, .355, 1);
  --in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --in-quart: cubic-bezier(.895, .03, .685, .22);
  --out-quart: cubic-bezier(.165, .84, .44, 1);
  --in-out-quart: cubic-bezier(.77, 0, .175, 1);
  --in-quint: cubic-bezier(.755, .05, .855, .06);
  --out-quint: cubic-bezier(.23, 1, .32, 1);
  --in-out-quint: cubic-bezier(.86, 0, .07, 1);
  --in-expo: cubic-bezier(.95, .05, .795, .035);
  --out-expo: cubic-bezier(.19, 1, .22, 1);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(.6, .04, .98, .335);
  --out-circ: cubic-bezier(.075, .82, .165, 1);
  --in-out-circ: cubic-bezier(.785, .135, .15, .86);
  --in-back: cubic-bezier(.6, -.28, .735, .045);
  --out-back: cubic-bezier(.175, .885, .32, 1.275);
  --in-out-back: cubic-bezier(.68, -.55, .265, 1.55);
}

@keyframes photoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background: url(../img/bg/bg_pattern.png) repeat 0 0;
  background-size: 1400px;
}
@media screen and (max-width: 767px) {
  .l-bg {
    background-size: 600px;
  }
}

@media screen and (max-width: 767px) {
  .l-wrap {
    overflow: hidden;
  }
}

.l-load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 100;
}
.is-load .l-load {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@keyframes loading {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.l-load__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .l-load__loader {
    width: 70px;
  }
}
.l-load__loader-dot {
  width: 12px;
  height: 12px;
  background-color: #1ccadb;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .l-load__loader-dot {
    width: 8px;
    height: 8px;
  }
}
.l-load__loader-dot:nth-child(1) {
  animation: loading 0.9s ease infinite forwards 0s;
}
.l-load__loader-dot:nth-child(2) {
  animation: loading 0.9s ease infinite forwards 0.2s;
}
.l-load__loader-dot:nth-child(3) {
  animation: loading 0.9s ease infinite forwards 0.4s;
}
.l-load__loader-dot:nth-child(2n) {
  background-color: #f8d224;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 51px 50px 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 33px 19px;
  }
}
.l-header__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 160px;
  pointer-events: all;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    top: 10px;
    left: 10px;
    max-width: 97px;
    width: 28%;
  }
}
.l-header__logo a {
  display: block;
}
@media (hover: hover) {
  .l-header__logo a:hover img {
    transform: scale(0.95);
  }
}
.l-header__logo a img {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-header__content {
  align-items: center;
  display: flex;
  pointer-events: all;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-header_weather {
  pointer-events: none;
  display: flex;
  font-family: "Josefin Sans", sans-serif;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  justify-content: flex-end;
  z-index: 1;
  padding: 42px 150px 20px;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header_weather {
    width: 144px;
    flex-direction: column;
    padding: 19px 0;
    margin-right: 66px;
    align-items: flex-start;
  }
}
.l-header_weather__ttl {
  text-align: right;
  margin-right: 18px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .l-header_weather__ttl {
    text-align: left;
    margin: 0;
    font-size: 10px;
    margin-bottom: 1px;
  }
}
.l-header_weather__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-header_weather__content {
    justify-content: flex-end;
  }
}
.l-header_weather__date {
  display: flex;
  padding-right: 14px;
  margin-right: 12px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header_weather__date {
    padding-right: 9px;
    margin-right: 6px;
  }
}
.l-header_weather__date::before {
  content: "";
  width: 1px;
  height: 45%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #000;
}
.l-header_weather__date-day {
  display: flex;
  align-items: center;
  font-size: 44px;
  font-weight: 500;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .l-header_weather__date-day {
    margin-right: 3px;
    font-size: 27px;
  }
}
.l-header_weather__date-day .p-in_month::after {
  content: "/";
}
.l-header_weather__date-week {
  font-size: 16px;
  transform: translateY(-2px);
  font-weight: 700;
  text-align: center;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 767px) {
  .l-header_weather__date-week {
    font-size: 10px;
  }
}
.l-header_weather__temperature {
  display: flex;
  align-items: center;
}
.l-header_weather__temperature-text {
  flex-shrink: 0;
  font-size: 23px;
  font-weight: 500;
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .l-header_weather__temperature-text {
    margin-right: 0px;
    font-size: 15px;
  }
}
.l-header_weather__temperature-text .is-small {
  vertical-align: baseline;
  font-size: 16px;
  display: inline-block;
  padding-left: 5px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .l-header_weather__temperature-text .is-small {
    font-size: 10px;
    padding-left: 3px;
  }
}
.l-header_weather__temperature-icon {
  width: 30px;
  transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .l-header_weather__temperature-icon {
    width: 22px;
  }
}

.l-header_menu {
  pointer-events: all;
}
.l-header_menu__btn {
  width: 60px;
  height: 20px;
  position: relative;
  margin-left: 37px;
  pointer-events: all;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
  .l-header_menu__btn:hover {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .l-header_menu__btn {
    margin-left: 15px;
    width: 32px;
    height: 10px;
  }
}
.l-header_menu__btn-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-header_menu__btn-line {
    height: 1px;
  }
}
.l-header_menu__btn-line:nth-child(1) {
  top: 0%;
}
.is-menu-open .l-header_menu__btn-line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}
.is-menu-open .l-header_menu__btn-line:nth-child(2) {
  transform: translate(-50%, -50%) scaleX(0);
}
.l-header_menu__btn-line:nth-child(3) {
  top: 100%;
}
.is-menu-open .l-header_menu__btn-line:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
}
.l-header_menu__content {
  position: fixed;
  top: 0;
  right: 0;
  width: 430px;
  height: 100%;
  border-left: 2px solid #000;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-menu-open .l-header_menu__content {
  transform: translateX(0);
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .l-header_menu__content {
    border-left: 1px solid #000;
    width: 70%;
  }
}
.l-header_menu__content-head {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 50px 35px 20px;
  background-color: #f8d224;
}
@media screen and (max-width: 767px) {
  .l-header_menu__content-head {
    padding: 22px 26px 20px;
  }
}
.l-header_menu__content-inner {
  position: relative;
  min-height: 100%;
  background-color: #f8d224;
  padding-top: 124px;
  padding-bottom: 47px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header_menu__content-inner {
    padding-top: 87px;
    padding-bottom: 37px;
  }
}
.l-header_menu__list-item {
  transform: translateY(25px);
  opacity: 0;
}
.is-menu-open .l-header_menu__list-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.3s;
}
.is-menu-open .l-header_menu__list-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.45s;
}
.is-menu-open .l-header_menu__list-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
}
.is-menu-open .l-header_menu__list-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.75s;
}
.is-menu-open .l-header_menu__list-item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.9s;
}
.l-header_menu__list-item + .l-header_menu__list-item {
  margin-top: 7px;
}
.l-header_menu__list-item a {
  line-height: 1.3;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  display: block;
  padding: 5px 20% 10px 47px;
  font-size: 27px;
  position: relative;
}
.l-header_menu__list-item a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .l-header_menu__list-item a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .l-header_menu__list-item a:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .l-header_menu__list-item a {
    padding: 5px 15% 10px 25px;
    font-size: 22px;
  }
}
.l-header_menu__list-item a::after {
  content: "";
  width: 15px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 13%;
  background: url(../img/common/arrow.svg) no-repeat center center;
  background-size: contain;
  transform: translateX(-10px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .l-header_menu__list-item a::after {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header_menu__list-item a::after {
    width: 11px;
    right: 8%;
  }
}
.l-header_menu__list-item a .p-in_text {
  position: relative;
}
.l-header_menu__changelang {
  min-width: 220px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #000;
  border-radius: 100px;
  padding-left: 10%;
  padding-right: 4%;
  position: relative;
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
  transform: translateY(25px);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 0 1px #000;
}
@media (hover: hover) {
  .l-header_menu__changelang:hover {
    background-color: #fff;
  }
  .l-header_menu__changelang:hover::after {
    background-color: #000;
  }
  .l-header_menu__changelang:hover .l-header_menu__changelang-ttl {
    color: #000;
  }
}
.is-menu-open .l-header_menu__changelang {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s, opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-header_menu__changelang {
    min-width: 143px;
    padding-left: 11%;
    height: 26px;
  }
}
.l-header_menu__changelang::after {
  content: "";
  width: 18px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 5%;
  -webkit-mask: url(../img/common/icon_language.svg) no-repeat center center;
  mask: url(../img/common/icon_language.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-header_menu__changelang::after {
    width: 12px;
  }
}
.l-header_menu__changelang select {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  display: block;
  box-sizing: border-box;
  opacity: 0;
}
.l-header_menu__changelang-ttl {
  pointer-events: none;
  width: 100%;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-header_menu__changelang-ttl {
    font-size: 10px;
  }
}
.l-header_menu__changelang-ttl .p-in_ttl {
  font-size: 15px;
  font-family: "Josefin Sans", sans-serif;
  vertical-align: baseline;
  position: relative;
  padding-right: 4px;
  margin-right: 5px;
  letter-spacing: 0px;
}
@media screen and (max-width: 767px) {
  .l-header_menu__changelang-ttl .p-in_ttl {
    font-size: 10px;
    letter-spacing: 0.3px;
    padding-right: 3px;
    margin-right: 2px;
  }
}
.l-header_menu__changelang-ttl .p-in_ttl::after {
  content: ":";
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
}
.l-header_menu__sns {
  padding: 0 47px;
}
@media screen and (max-width: 767px) {
  .l-header_menu__sns {
    padding: 0 24px;
  }
}
.l-header_menu__sns-ttl {
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 17px;
  transform: translateY(25px);
  opacity: 0;
}
.is-menu-open .l-header_menu__sns-ttl {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header_menu__sns-ttl {
    font-size: 11px;
  }
}
.l-header_menu__sns-list {
  display: flex;
  align-items: center;
  transform: translateY(25px);
  opacity: 0;
}
.is-menu-open .l-header_menu__sns-list {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
.l-header_menu__sns-list-item {
  width: 24px;
}
@media screen and (max-width: 767px) {
  .l-header_menu__sns-list-item {
    width: 22px;
  }
}
.l-header_menu__sns-list-item a {
  display: block;
}
@media (hover: hover) {
  .l-header_menu__sns-list-item a:hover svg {
    fill: #fff;
  }
}
.l-header_menu__sns-list-item:nth-child(1) {
  width: 22px;
}
@media screen and (max-width: 767px) {
  .l-header_menu__sns-list-item:nth-child(1) {
    width: 20px;
  }
}
.l-header_menu__sns-list-item + .l-header_menu__sns-list-item {
  margin-left: 9%;
}
@media screen and (max-width: 767px) {
  .l-header_menu__sns-list-item + .l-header_menu__sns-list-item {
    margin-left: 15%;
  }
}
.l-header_menu__sns-list-item svg {
  width: 100%;
  transition: fill 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  fill-rule: evenodd;
}

.l-mian {
  position: relative;
}

.l-content {
  position: relative;
}

.l-section {
  position: relative;
}
.l-section__ttl {
  text-align: center;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-section__ttl h2 {
  font-size: 58px;
  position: relative;
  color: #f8d224;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-section__ttl h2 {
    line-height: 1.2;
    font-size: 29px;
    letter-spacing: 2px;
  }
}
.l-section__ttl h2 .p-in_bg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 6px #000;
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .l-section__ttl h2 .p-in_bg {
    -webkit-text-stroke: 3px #000;
  }
}
[data-lang=en] .l-section__ttl h2 .p-in_bg {
  display: none;
}
.l-section__ttl h2 .p-in_text {
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  z-index: 1;
  font-weight: 900;
}
[data-lang=en] .l-section__ttl h2 .p-in_text {
  -webkit-text-stroke: 1px #000;
}
.l-section__ttl h2 .p-in_shadow {
  display: inline-block;
  vertical-align: baseline;
  color: #000;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
  -webkit-text-stroke: 5px #000;
}
[data-lang=en] .l-section__ttl h2 .p-in_shadow {
  -webkit-text-stroke: 1px #000;
}
@media screen and (max-width: 767px) {
  .l-section__ttl h2 .p-in_shadow {
    -webkit-text-stroke: 3px #000;
  }
}
@media screen and (min-width: 768px) {
  .l-section.is-active .l-section__ttl h2 .p-in_shadow {
    top: 3px;
    left: 3px;
  }
  [data-lang=en] .l-section.is-active .l-section__ttl h2 .p-in_shadow {
    top: 3px;
    left: 3px;
  }
}
@media screen and (max-width: 767px) {
  .l-section.is-active .l-section__ttl h2 .p-in_shadow {
    top: 2px;
    left: 2px;
  }
  [data-lang=en] .l-section.is-active .l-section__ttl h2 .p-in_shadow {
    top: 2px;
    left: 2px;
  }
}
.l-section__inner {
  position: relative;
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}

.l-footer {
  position: relative;
}
.l-footer__banner {
  background-color: #f8d224;
  position: relative;
  padding-top: 77px;
  padding-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .l-footer__banner {
    padding-top: 59px;
    padding-bottom: 48px;
  }
}
.l-footer__banner::before {
  pointer-events: none;
  content: "";
  width: 100%;
  padding-top: 10%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg/wave_yellow.png) repeat-x 0 bottom;
  background-size: 13%;
  transform: translateY(-98%);
}
@media screen and (max-width: 767px) {
  .l-footer__banner::before {
    background-size: 20%;
  }
}
.l-footer__banner-list {
  margin: 0 auto;
  width: 78.5%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-footer__banner-list {
    width: 89.5%;
  }
}
.l-footer__banner-list-item {
  width: 32%;
  margin-bottom: 2%;
  margin-right: 2%;
}
@media screen and (min-width: 768px) {
  .l-footer__banner-list-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__banner-list-item {
    width: 48.3%;
    margin-bottom: 3.5%;
    margin-right: 3%;
  }
  .l-footer__banner-list-item:nth-child(2n) {
    margin-right: 0;
  }
}
.l-footer__banner-list-item:last-of-type {
  margin-right: 0;
}
.l-footer__banner-list-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.l-footer__banner-list-item a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f8d224;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .l-footer__banner-list-item a:hover::after {
    opacity: 0.3;
  }
  .l-footer__banner-list-item a:hover img {
    transform: scale(1.05);
  }
}
.l-footer__banner-list-item a img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-footer__content {
  background-color: #000;
  padding: 60px 5.5%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    padding: 31px 5.5% 78px;
  }
}
.l-footer__content-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .l-footer__content-inner {
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 auto;
    max-width: 600px;
  }
}
.l-footer__box.--left {
  width: 25%;
  max-width: 316px;
  flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .l-footer__box.--left {
    margin: 0 auto 29px;
    width: 100%;
    order: 1;
  }
}
.l-footer__box.--center {
  flex-grow: 1;
  width: 58%;
  padding: 0 5%;
}
@media screen and (max-width: 1100px) {
  .l-footer__box.--center {
    margin: 0 auto;
    width: 100%;
    order: 3;
    padding: 0;
  }
}
.l-footer__box.--right {
  width: 17%;
  max-width: 211px;
  flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .l-footer__box.--right {
    margin: 0 auto 37px;
    width: 100%;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__box.--right {
    max-width: none;
  }
}
.l-footer__info {
  padding-left: 1%;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    padding: 0;
  }
}
.l-footer__info-item {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .l-footer__info-item {
    display: block;
  }
}
.l-footer__info-item + .l-footer__info-item {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .l-footer__info-item + .l-footer__info-item {
    margin-top: 30px;
  }
}
.l-footer__info-ttl {
  flex-shrink: 0;
  width: 147px;
  font-weight: 700;
  font-size: 17px;
  position: relative;
  margin-right: 3%;
}
@media screen and (max-width: 1100px) {
  .l-footer__info-ttl {
    width: 100%;
    padding-left: 18px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__info-ttl {
    font-size: 13px;
  }
}
.l-footer__info-ttl::before {
  content: "";
  width: 11px;
  height: 10px;
  position: absolute;
  top: 6px;
  right: -1px;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #f8d224;
  transform: rotate(90deg);
}
@media screen and (max-width: 1100px) {
  .l-footer__info-ttl::before {
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__info-ttl::before {
    width: 8px;
    height: 8px;
    top: 3px;
  }
}
.l-footer__info-content {
  line-height: 1.6;
  margin-top: -2px;
  flex-grow: 1;
}
@media screen and (max-width: 1100px) {
  .l-footer__info-content {
    margin-top: 17px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__info-content {
    line-height: 1.7;
    font-size: 11px;
    margin-top: 17px;
    letter-spacing: 1.5px;
    padding-left: 19px;
  }
}
.l-footer__info-content .p-in_tell {
  font-size: 17px;
  letter-spacing: 1.8px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footer__info-content .p-in_tell {
    font-size: 12px;
  }
}
.l-footer__info-btn {
  border: 1px solid #fff;
  border-radius: 100px;
  width: 90%;
  max-width: 260px;
  margin-top: 16px;
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .l-footer__info-btn:hover {
    background-color: #fff;
  }
  .l-footer__info-btn:hover .p-in_text {
    color: #000;
  }
  .l-footer__info-btn:hover .p-in_text::before {
    background-color: #000;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__info-btn {
    width: 95%;
    margin-top: 12px;
  }
}
.l-footer__info-btn a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer__info-btn a {
    font-size: 11px;
    padding: 9px 0;
  }
}
.l-footer__info-btn .p-in_text {
  padding-right: 25px;
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-footer__info-btn .p-in_text {
    padding: 0 18px 0 15px;
  }
}
.l-footer__info-btn .p-in_text::before {
  content: "";
  width: 11px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-mask: url(../img/common/icon_arrow_2.svg) no-repeat center center;
  mask: url(../img/common/icon_arrow_2.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-footer__info-note {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-footer__info-note {
    margin-top: 8px;
  }
}
.l-footer__info-note-item {
  font-size: 12px;
  text-indent: -0.7rem;
  padding-left: 0.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info-note-item {
    font-size: 10px;
  }
}
.l-footer__logo {
  width: 76%;
  max-width: 236px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 44%;
    margin: 0 auto;
  }
}
.l-footer__bottom {
  display: flex;
  margin-top: 106px;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .l-footer__bottom {
    flex-direction: column-reverse;
    justify-content: center;
    margin-top: 59px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    margin-top: 39px;
  }
}
.l-footer__copy {
  color: #fff;
  font-size: 12px;
  width: 25%;
  max-width: 316px;
  flex-shrink: 0;
  line-height: 1.4;
}
@media screen and (max-width: 1100px) {
  .l-footer__copy {
    text-align: center;
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 10px;
  }
}
.l-footer__links {
  display: flex;
  width: 58%;
  max-width: 740px;
  padding-left: 165px;
  padding-left: min(165px, 10vw);
  font-size: 11px;
}
@media screen and (max-width: 1100px) {
  .l-footer__links {
    text-align: center;
    width: 100%;
    max-width: none;
    justify-content: center;
    padding-left: 0;
  }
}
.l-footer__links-item {
  cursor: pointer;
}
@media (hover: hover) {
  .l-footer__links-item:hover .p-in_text {
    color: #1ccadb;
  }
  .l-footer__links-item:hover .p-in_text::before {
    background-color: #1ccadb;
  }
}
.l-footer__links-item.ot-sdk-show-settings {
  padding-right: 17px;
  position: relative;
  transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-footer__links-item.ot-sdk-show-settings {
    padding-right: 14px;
  }
}
.l-footer__links-item.ot-sdk-show-settings::before {
  content: "";
  width: 10px;
  height: 7px;
  position: absolute;
  top: 2px;
  right: 0;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #fff;
  transform: rotate(90deg);
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-footer__links-item.ot-sdk-show-settings::before {
    width: 8px;
    height: 7px;
    top: 2px;
  }
}
@media (hover: hover) {
  .l-footer__links-item.ot-sdk-show-settings:hover {
    color: #1ccadb;
  }
  .l-footer__links-item.ot-sdk-show-settings:hover::before {
    background-color: #1ccadb;
  }
}
.l-footer__links-item .p-in_text {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  vertical-align: baseline;
  font-size: 11px;
  letter-spacing: 1px;
  position: relative;
  padding-right: 17px;
  transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-footer__links-item .p-in_text {
    padding-right: 14px;
  }
}
.l-footer__links-item .p-in_text::before {
  content: "";
  width: 10px;
  height: 7px;
  position: absolute;
  top: 2px;
  right: 0;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #fff;
  transform: rotate(90deg);
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .l-footer__links-item .p-in_text::before {
    width: 8px;
    height: 7px;
    top: 2px;
  }
}
.l-footer__links-item + .l-footer__links-item {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__links-item + .l-footer__links-item {
    margin-left: 7%;
  }
}
.l-footer__sns-ttl {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  padding-right: 11px;
}
@media screen and (max-width: 1100px) {
  .l-footer__sns-ttl {
    justify-content: center;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns-ttl {
    font-size: 13px;
  }
}
.l-footer__sns-ttl::before, .l-footer__sns-ttl::after {
  content: "";
  height: 20px;
  width: 2px;
  background-color: #1ccadb;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-ttl::before, .l-footer__sns-ttl::after {
    height: 17px;
  }
}
.l-footer__sns-ttl::before {
  transform-origin: bottom;
  transform: rotate(-30deg);
}
.l-footer__sns-ttl::after {
  transform-origin: bottom;
  transform: rotate(30deg);
}
.l-footer__sns-ttl .p-in_text {
  padding: 0 18px;
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  .l-footer__sns-ttl .p-in_text {
    padding: 0 10px;
  }
}
.l-footer__sns-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 21px;
}
@media screen and (max-width: 1100px) {
  .l-footer__sns-list {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns-list {
    margin-top: 18px;
  }
}
.l-footer__sns-list-item {
  width: 24px;
  margin: 0 9%;
}
.l-footer__sns-list-item a {
  display: block;
}
@media (hover: hover) {
  .l-footer__sns-list-item a:hover svg {
    fill: #1ccadb;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sns-list-item {
    width: 26px;
    margin: 0px 6%;
  }
  .l-footer__sns-list-item:nth-child(1) {
    width: 25px;
  }
}
.l-footer__sns-list-item svg {
  fill: #fff;
  fill-rule: evenodd;
  transition: fill 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.l-footer__pagetop {
  width: 17%;
  max-width: 211px;
  flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .l-footer__pagetop {
    position: absolute;
    bottom: 17px;
    right: 18px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    width: 60px;
  }
}
.l-footer__pagetop-item {
  width: 80px;
  margin-left: auto;
}
@media (hover: hover) {
  .l-footer__pagetop-item {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .l-footer__pagetop-item:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop-item {
    width: 100%;
  }
}
.l-footer__pagetop-item a {
  text-decoration: none;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
}
.l-footer__pagetop-item .p-in_text {
  position: relative;
  margin-top: 9px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop-item .p-in_text {
    font-size: 10px;
    margin-top: 6px;
  }
}

.m-modal__content {
  max-width: 1300px !important;
  width: 90% !important;
}
@media screen and (max-width: 767px) {
  .m-modal__content {
    width: 100% !important;
  }
}
.m-modal__close-btn {
  top: 38px !important;
  right: 46px !important;
  width: 70px !important;
  height: 70px !important;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
  .m-modal__close-btn:hover {
    transform: scale(0.95);
  }
  .m-modal__close-btn:hover::before, .m-modal__close-btn:hover::after {
    background-color: #1ccadb !important;
  }
}
@media screen and (max-width: 767px) {
  .m-modal__close-btn {
    top: 18px !important;
    right: 17px !important;
    width: 40px !important;
    height: 40px !important;
  }
}
.m-modal__close-btn::before, .m-modal__close-btn::after {
  width: 2px !important;
  height: 70px !important;
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .m-modal__close-btn::before, .m-modal__close-btn::after {
    width: 1px !important;
    height: 40px !important;
  }
}
.m-modal__close-btn::before {
  transform: rotate(-65deg) !important;
}
.m-modal__close-btn::after {
  transform: rotate(65deg) !important;
}

.c-btn {
  text-align: center;
  background-color: #000;
  border-radius: 50px;
  border: 1px solid #000;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
  .c-btn:hover {
    background-color: #f88cd3;
    transform: scale(1.05);
  }
  .c-btn:hover .c-btn__inner::before {
    background-color: #000;
  }
  .c-btn:hover .c-btn__text {
    color: #000;
  }
}
.c-btn__inner {
  display: block;
  padding: 18px 15% 23px;
  position: relative;
  text-decoration: none;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-btn__inner {
    padding: 12px 15% 15px;
  }
}
.c-btn__inner::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  -webkit-mask: url(../img/common/arrow.svg) no-repeat center center;
  mask: url(../img/common/arrow.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .c-btn__inner::before {
    width: 10px;
    height: 10px;
    right: 7%;
  }
}
.c-btn__text {
  pointer-events: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: block;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .c-btn__text {
    font-size: 11px;
  }
}

.c-back {
  text-align: center;
  background-color: #000;
  border-radius: 50px;
  border: 1px solid #000;
  transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin: 0 auto;
  width: 250px;
}
@media screen and (max-width: 767px) {
  .c-back {
    width: 180px;
  }
}
@media (hover: hover) {
  .c-back:hover {
    background-color: #f88cd3;
    transform: scale(1.05);
  }
  .c-back:hover .c-back__inner::before {
    background-color: #000;
  }
  .c-back:hover .c-back__text {
    color: #000;
  }
}
.c-back__inner {
  display: block;
  padding: 18px 15% 23px;
  position: relative;
  text-decoration: none;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-back__inner {
    padding: 12px 15% 13px;
  }
}
.c-back__inner::before {
  content: "";
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  left: 9%;
  transform: translateY(-50%) scaleX(-1);
  -webkit-mask: url(../img/common/arrow.svg) no-repeat center center;
  mask: url(../img/common/arrow.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .c-back__inner::before {
    width: 10px;
    height: 10px;
    left: 7%;
  }
}
.c-back__text {
  pointer-events: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: block;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .c-back__text {
    font-size: 11px;
  }
}

.p-line {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .p-line {
    padding: 6px 0;
  }
}
.p-line.--yellow {
  background-color: #f8d224;
}
.is-load .p-line.--yellow .p-line__list-item {
  animation: photoSlide 5s linear infinite forwards reverse;
}
.p-line.--white {
  background-color: #fff;
}
.is-load .p-line.--white .p-line__list-item {
  animation: photoSlide 5s linear infinite forwards;
}
.p-line.--blue {
  background-color: #1ccadb;
}
.is-load .p-line.--blue .p-line__list-item {
  animation: photoSlide 5s linear infinite forwards reverse;
}
.p-line__list {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.p-line__list-item {
  flex-shrink: 0;
  min-width: 200px;
  width: 15%;
  max-width: 385px;
}
@media screen and (max-width: 767px) {
  .p-line__list-item {
    width: 30%;
    min-width: 100px;
  }
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}