.p-container {
  max-width: 144rem;
  margin: auto;
}

.p-inner {
  width: 100%;
  padding-inline: 8rem;
}

.p-stickyContainer {
  position: relative;
  width: 100%;
}

.p-stickyContainer_content {
  position: relative;
}

.p-stickyContainer_bg {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-stickyContainer_bg_img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100lvh;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-stickyContainer_bg_img>* {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-stickyContainer_bg_overlay {
  display: block;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-font-bk);
  opacity: .3;
}

.p-stickyContainer_bg.is-kv {
  background-color: var(--color-main-light);
}

.p-card {
  position: relative;
  overflow: hidden;
}

.p-card>*:not(.p-card_bg) {
  z-index: 1;
}

.p-card .c-button {
  color: var(--color-base);
}

.p-card .c-button_line_base {
  fill: var(--color-base);
}

.p-card_bg {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  -webkit-transition: -webkit-transform calc(var(--duration)*3) var(--easing);
  transition: -webkit-transform calc(var(--duration)*3) var(--easing);
  transition: transform calc(var(--duration)*3) var(--easing);
  transition: transform calc(var(--duration)*3) var(--easing), -webkit-transform calc(var(--duration)*3) var(--easing);
}

.p-card_bg * {
  display: block;
  -webkit-transition: -webkit-transform calc(var(--duration)*3) var(--easing);
  transition: -webkit-transform calc(var(--duration)*3) var(--easing);
  transition: transform calc(var(--duration)*3) var(--easing);
  transition: transform calc(var(--duration)*3) var(--easing), -webkit-transform calc(var(--duration)*3) var(--easing);
}

.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  width: 100%;
  padding: 1rem 1.2rem 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: padding var(--transition-button),color var(--transition-default),fill var(--transition-default),opacity var(--transition-default),-webkit-transform var(--transition-button);
  transition: padding var(--transition-button),color var(--transition-default),fill var(--transition-default),opacity var(--transition-default),-webkit-transform var(--transition-button);
  transition: transform var(--transition-button),padding var(--transition-button),color var(--transition-default),fill var(--transition-default),opacity var(--transition-default);
  transition: transform var(--transition-button),padding var(--transition-button),color var(--transition-default),fill var(--transition-default),opacity var(--transition-default),-webkit-transform var(--transition-button);
}

.p-header_button {
  z-index: 99;
  position: relative;
  width: 6rem;
  -webkit-transition: inherit;
  transition: inherit;
}


.p-header_button_line {
  width: 100%;
  fill: currentColor;
  -webkit-transition: inherit;
  transition: inherit;
}

.p-header_button_text {
  color: currentColor;
  -webkit-transition: inherit;
  transition: inherit;
}

.p-header_button:has(+.p-header_nav.is-opend) .p-header_button_line,.p-header_button:has(+.p-header_nav.is-opend) .p-header_button_text {
  fill: var(--color-base);
  color: var(--color-base);
}

.p-header_nav {
  --wave-height: 13.88vw;
  z-index: 98;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100dvh;
  -webkit-transform: translate(-50%, calc(-100lvh - var(--wave-height) * 2));
          transform: translate(-50%, calc(-100lvh - var(--wave-height) * 2));
  font-family: "Jost","Noto Sans JP",游ゴシック, Yu Gothic, YuGothic, メイリオ, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3, Lucida Grande, Osaka, Verdana, ＭＳ Ｐゴシック, sans-serif;
  letter-spacing: 0;
  -webkit-font-feature-settings: initial;
  font-feature-settings: initial;
  -webkit-text-size-adjust: initial;
  color: var(--color-base);
}

.p-header_nav_inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-main-light);
}

.p-header_nav_inner>* {
  opacity: 0;
  will-change: opacity;
}

.p-header_nav_text {
  position: absolute;
  top: 3.2rem;
  right: 4rem;
  font-size: 1.4rem;
  letter-spacing: .05em;
  text-align: right;
  text-transform: capitalize;
}

.p-header_nav_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
}

.p-header_nav_content>* {
  width: 50%;
  padding-left: 16rem;
}

.p-header_nav_content_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 3.2rem;
}

.p-header_nav_content_menu_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 1.16em;
  overflow: hidden;
  font-size: 8.8rem;
}

.p-header_nav_content_text {
  padding-top: .8rem;
}

.p-header_nav_content_text_copy {
  margin-bottom: 3.2rem;
  font-size: 3.2rem;
  line-height: 1.15;
}

.p-header_nav_content_text_hours {
  margin-bottom: 2rem;
}

.p-header_nav_content_text_tel {
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.p-header_nav_content_text_social {
  display: inline-block;
  aspect-ratio: 1/1;
  width: 2.4rem;
  height: auto;
  margin-bottom: 3.2rem;
  -webkit-transition: var(--transition-default);
  transition: var(--transition-default);
  will-change: opacity;
}

.p-header_nav_content_text_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.6rem;
}

.p-header_nav_content_text_contact_link {
  font-size: 3.2rem;
}

.p-header_nav_content_text_contact_link.is-round {
  width: 27rem;
  height: 9.6rem;
}

.p-header_nav_copyright {
  position: absolute;
  right: 4rem;
  bottom: 3.2rem;
  font-size: 1rem;
  letter-spacing: .05em;
  text-align: right;
}

.p-header_nav_wave {
  position: absolute;
  bottom: calc(-1*var(--wave-height) + 1px);
  left: 50%;
  aspect-ratio: 1440/200;
  width: 100%;
  height: var(--wave-height);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.p-header_nav_wave_path {
  fill: var(--color-main-light);
}

.p-header_logo {
  display: block;
  width: 14rem;
  margin-right: auto;
  -webkit-transition: inherit;
  transition: inherit;
  will-change: opacity;
}

.p-header_logo_img {
  fill: var(--color-main-deep);
  -webkit-transition: inherit;
  transition: inherit;
}

.p-header_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3.2rem;
  -webkit-transition: inherit;
  transition: inherit;
}

.p-header_contact_link {
  -webkit-transition: color inherit;
  transition: color inherit;
}

.p-header_contact_link.is-round {
  width: 13.3rem;
  height: 4.8rem;
}

.p-header_contact_link:not(.is-round) {
  color: var(--color-main-light);
}

.p-header.is-narrow {
  padding-top: 4rem;
}

.p-header.is-narrow .p-header_button {
  -webkit-transform: none;
          transform: none;
}

.p-header.is-narrow .p-header_contact {
  -webkit-transform: none;
          transform: none;
}

.p-header.is-inverted .p-header_button_line {
  fill: var(--color-base);
}

.p-header.is-inverted .p-header_button_text {
  color: var(--color-base);
}

#js-header .p-header_button_line,
#js-header .p-header_button_text {
  fill: var(--color-base);
  color: var(--color-base);
}

#js-header .lang-switcher__toggle {
  color: var(--color-base);
}

.p-header_contact_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.lang-switcher__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: auto;
  height: auto;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .35rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-main-light);
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: inherit;
          transition: inherit;
}

.p-header.is-inverted .lang-switcher__toggle {
  color: var(--color-base);
  background: transparent;
}

.lang-switcher__current {
  display: block;
  line-height: 1;
}

.lang-switcher__arrow {
  font-size: .9rem;
  line-height: 1;
  opacity: .7;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + .8rem);
  right: 0;
  min-width: 10rem;
  padding: .5rem;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: .6rem;
  -webkit-box-shadow: 0 .4rem 1.6rem rgba(0, 0, 0, .1);
          box-shadow: 0 .4rem 1.6rem rgba(0, 0, 0, .1);
  list-style: none;
  z-index: 100;
}

.lang-switcher__menu li + li {
  margin-top: .2rem;
}

.lang-switcher__option {
  display: block;
  width: 100%;
  padding: .8rem 1.4rem;
  border: 0;
  border-radius: .4rem;
  background: transparent;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  color: var(--color-main-deep, #1a1a2e);
  text-align: left;
  text-decoration: none;
  -webkit-transition: background var(--transition-button);
          transition: background var(--transition-button);
}

.lang-switcher__option:hover,
.lang-switcher__option[aria-selected="true"] {
  background: rgba(0, 0, 0, .05);
}

.lang-switcher__option:focus-visible,
.lang-switcher__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.lang-switcher__menu button {
  display: block;
  cursor: pointer;
}

.p-header.is-inverted .p-header_logo_img {
  fill: var(--color-base);
}

.p-header.is-inverted .p-header_contact_link:not(.is-round) {
  color: var(--color-base);
}

.p-footer {
  position: relative;
  padding-top: 90lvh;
  padding-bottom: 4rem;
  font-family: "Jost","Noto Sans JP",游ゴシック, Yu Gothic, YuGothic, メイリオ, Hiragino Kaku Gothic Pro, ヒラギノ角ゴ Pro W3, Lucida Grande, Osaka, Verdana, ＭＳ Ｐゴシック, sans-serif;
  letter-spacing: 0;
  -webkit-font-feature-settings: initial;
  font-feature-settings: initial;
  -webkit-text-size-adjust: initial;
  color: var(--color-base);
}

.p-footer_logo {
  position: relative;
  width: 100%;
  margin-bottom: 5.2rem;
}

.p-footer_content {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: 50% 1fr 2.4rem;
  width: 100%;
}

.p-footer_content_copy_text {
  font-size: 3.2rem;
  line-height: 1.15;
  text-transform: uppercase;
}

#js-footerAnimeTrigger .p-footer_content_copy_text {
  font-size: 2.8rem;
}

.p-footer_content_copy_copyright {
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: .05em;
}

.p-footer_content_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 8rem;
  gap: 3.2rem;
  font-size: 1.2rem;
  letter-spacing: .05em;
  white-space: nowrap;
}

.p-footer_content_social {
  aspect-ratio: 1/1;
  width: 2.4rem;
  -webkit-transition: opacity var(--transition-default);
  transition: opacity var(--transition-default);
}

.p-footer_content_social_img {
  width: 100%;
}

@media screen and (max-width: 48em) {
  .p-inner {
    padding-inline: 2rem;
  }
  .p-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 1.2rem 0;
  }
  .p-header_button {
    position: relative;
    width: 3.6rem;
  }
  .p-header_button_text {
    display: inline-block;
    margin-top: -1rem;
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .p-header_nav {
    --wave-height: 13.86vw;
    -webkit-transform: translate(-50%, calc(-100% - var(--wave-height)));
            transform: translate(-50%, calc(-100% - var(--wave-height)));
  }
  .p-header_nav_inner {
    display: block;
    padding: 2rem;
    overflow-y: auto;
  }
  .p-header_nav_text {
    top: 2rem;
    right: initial;
    left: 2rem;
  }
  .p-header_nav_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 12rem;
    padding-top: 10.7rem;
    gap: 5.4rem;
  }
  .p-header_nav_content>* {
    width: 100%;
    padding-left: initial;
  }
  .p-header_nav_content_menu {
    padding-top: initial;
    gap: .3rem;
  }
  .p-header_nav_content_menu_item {
    font-size: 6.4rem;
    font-size: 4rem;
  }
  .p-header_nav_content_text {
    font-size: 1.4rem;
  }
  .p-header_nav_content_text_copy {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
  .p-header_nav_content_text_tel {
    margin-bottom: 3.2rem;
  }
  .p-header_nav_content_text_social {
    margin-bottom: 3.6rem;
  }
  .p-header_nav_content_text_contact {
    gap: 4rem;
  }
  .p-header_nav_content_text_contact_link {
    font-size: 2.4rem;
  }
  .p-header_nav_content_text_contact_link.is-round {
    width: 20rem;
    height: 7.2rem;
  }
  .p-header_nav_copyright {
    position: relative;
    right: initial;
    bottom: initial;
    width: 100%;
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .p-header_nav_wave {
    aspect-ratio: 375/52;
  }
  .p-header_logo {
    width: 10rem;
  }
  .p-header_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1.2rem;
  }
  .p-header.is-narrow {
    padding: 1.4rem 2.4rem 0;
  }
  .p-header.is-narrow .p-header_button {
    -webkit-transform: initial;
            transform: initial;
  }
  .p-header.is-narrow .p-header_contact {
    -webkit-transform: initial;
            transform: initial;
  }
  .p-header_contact_lang {
    z-index: 99;
  }
  .p-footer {
    padding-bottom: 2rem;
  }
  .p-footer_logo {
    margin-bottom: 3.2rem;
  }
  .p-footer_content {
    grid-template-columns: 1fr 2.4rem;
    grid-template-areas: "info ." "copy social";
    gap: 3.2rem 0;
  }
  .p-footer_content_copy {
    grid-area: copy;
    width: auto;
  }
  .p-footer_content_copy_text {
    font-size: 2.2rem;
  }
  .p-footer_content_copy_copyright {
    font-size: 1rem;
  }
  .p-footer_content_info {
    grid-area: info;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    margin-right: initial;
    gap: 1.6rem;
    font-size: 1rem;
  }
  .p-footer_content_social {
    grid-area: social;
    margin-top: auto;
  }
}

@media (hover: hover) {
  .p-card:hover .c-button_text>span>* {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .p-card:hover .c-button_line_mask_hole {
    width: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .p-card:hover .p-card_bg {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
  .p-card:hover .p-card_bg * {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-header_nav_content_text_social:hover {
    opacity: var(--hover-opacity);
  }
  .p-header_logo:hover {
    opacity: var(--hover-opacity);
  }
  .p-footer_content_social:hover {
    opacity: var(--hover-opacity);
  }
}
