@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap');

/*!
global > font
------------------------------
*/
:root {
  --font-family-title-en: 'Sorts Mill Goudy', serif;
  --font-family-title-jp: 'Noto Serif JP', serif;
  --font-family-content-jp: 'Noto Sans JP', sans-serif;
}

/*!
global > color
------------------------------
*/
:root {
  --color-theme-base: rgb(28, 42, 84);
}

/*!
global > size
------------------------------
*/

/*!
global > base
------------------------------
*/
html,
body {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  font-family: var(--font-family-content-jp);
  line-height: 1.8;
  overflow: hidden;
}
p {
  letter-spacing: 0.06em;
}
@media (max-width: 480px) {
  p {
    letter-spacing: 0.08em;
  }
}

/*!
global > animation
------------------------------
*/
/* neon */
@keyframes neon {
  0% {
    filter: blur(0);
    color: var(--color-theme-base);
  }

  50% {
    filter: blur(20px);
    color: #9ec9f7;
  }

  100% {
    filter: blur(10px);
    color: #fff;
  }

  /* 100% {
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  } */
}

/* shine */
@keyframes shine {
  0% {
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }

  50% {
    text-shadow: 0 0 2px #fff, 0 0 4px #fff;
  }

  100% {
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}

/* borderAnime */
@keyframes borderAnime {
  0% {
    width: 0;
    right: 100px;
    opacity: 0;
  }

  100% {
    width: 100px;
    right: 0;
    opacity: 1;
  }
}

/* pathmove */
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/*!
component > title
------------------------------
*/
.section-title {
  font-family: var(--font-family-title-jp);
  color: #333;
  font-size: clamp(28px, 3.13vw, 40px);
  line-height: 130%;
}

.page-title {
  font-family: var(--font-family-title-en);
  color: rgba(254, 254, 254, 0.80);
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 130%;
  letter-spacing: 0.08em;
}

.content-title {
  position: relative;
  padding: clamp(1.5rem, 1.062rem + 1.8vw, 2.5rem) 0; /* min 24px / max 40px */
  font-family: var(--font-family-title-jp);
  font-size: clamp(1.5rem, 1.281rem + 0.9vw, 2rem); /* min 24px / max 32px */
  line-height: 130%;
  letter-spacing: 0.08em;
}
.content-title::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background-color: #000;
}
.content-sub-title {
  font-size: clamp(1rem, 0.89rem + 0.45vw, 1.25rem); /* min 16px / max 20px */
}

/*!
component > button
------------------------------
*/
.button-01 {
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  display: inline-block;
  width: 340px;
  border: 1px solid #495474;
  background-color: #E0E0E0;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  transition: ease .2s;
}

.button-01 span {
  position: relative;
  z-index: 3;
  color: #333;
}

.button-01:hover {
  border-color: #ffffff60;
}

.button-01:hover span {
  color: #fff;
}

.bgleft::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--color-theme-base);
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft.btnf span {
  color: #fff;
}

.bgleft.btnf::before {
  background: #364d8e;
}

.bgleft:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.border::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 100px;
  height: 1px;
  background-color: #000;
  /* z-index: 99999; */
  z-index: 10;
}

.border:hover::after {
  background-color: #fff;
  opacity: 0;
  animation: borderAnime 1.4s ease-in-out forwards 0.4s;
}


.ghost {
  background-color: transparent !important;
}

.button-01.small {
  padding: 10px 0;
}

.button-01.venue {
  padding: 4px 30px;
  background-color: rgba(76, 135, 33, 0.8);
  font-size: 14px!important;
  line-height: 1.6;
}

.button-01.venue.large span {
  font-size: 20px!important;
}

.button-01.venue span {
  color: #fff;
}

.button-cta {
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 58px;
  padding: 10px 30px;
  border-radius: 4px;
  background: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
  color: var(--color-theme-base);
  font-size: 20px;
  text-align: center;
  outline: none;
  transition: ease .2s;
}
.button-cta.request {
  background: linear-gradient(90deg, #CBF9F0 0%, #85F3DF 100%);
}
.button-cta span {
  position: relative;
  z-index: 3;
}

.bgleft-cta:hover span {
  color: #fff !important;
}

.bgleft-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FFA751;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.bgleft-cta.request::before {
  background-color: #11e5be;
}

.bgleft-cta:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.button-menu {
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 58px;
  padding: 10px 30px;
  border-radius: 4px;
  background: #E6F2FF;
  font-size: 20px;
  color: var(--color-theme-base);
  text-align: center;
  transition: ease .2s;
}

.button-menu>span {
  position: relative;
  z-index: 3;
}

.button-menu:hover>span {
  color: #fff;
}

.button-02 {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #333;
  font-size: 18px;
  color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(37, 44, 97, 0.15), 0px 2px 4px 0px rgba(136, 144, 194, 0.20);
}
.button-02 span {
  position: relative;
  z-index: 3;
}
.button-02 span::before {
  position: absolute;
  top: 50%;
  right: -24px;
  content: "";
  width: 12px;
  height: 11px;
  background-image: url(../img/common/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
  transform: translateY(-30%);
}

/* lg */
@media (max-width: 1279px) {
  .button-cta {
    width: 330px;
    font-size: 18px;
  }

  .button-menu {
    width: 120px;
    font-size: 18px;
  }
}

/* md */
@media (max-width: 959px) {}

/* sm */
@media (max-width: 767px) {}

/* xxs */
@media (max-width: 427px) {
  .button-menu {
    width: 90px;
    height: 40px;
    font-size: 14px;
  }
}

/*!
layout > header
------------------------------
*/
.header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: translateY(-100%);
}

.header.bg-active {
  background-color: rgba(28, 42, 82, 0.8)
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
}

.header__logo img {
  width: 224px;
  height: auto;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.header__tel {
  color: #FEFEFE;
  text-shadow: 1px 1px 0px rgba(28, 42, 82, 0.80);
  font-family: Helvetica Neue;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2.88px;
}

.header__menu span {
  cursor: pointer;
}

@media (max-width: 1079px) {
  .header__tel {
    display: none;
  }
}

/* md */
@media (max-width: 959px) {}

/* sm */
@media (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

/* xxs */
@media (max-width: 427px) {
  .header__logo img {
    width: 160px;
  }
}

/*!
layout > main
------------------------------
*/

/*!
layout > footer
------------------------------
*/
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: clamp(56px, 5.63vw, 72px) 0 clamp(40px, 4.22vw, 54px); */
  padding: 0 0 clamp(40px, 4.22vw, 54px);
  background-color: var(--color-theme-base);
  background-image:
    linear-gradient(rgba(28, 42, 84, 0.7), rgba(28, 42, 84, 0.7)),
    url(../img/common/footer_bg.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  color: #fff;
}

.footer__banner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 24px;
  width: 100%;
  height: 100%;
  margin-bottom: clamp(56px, 5.63vw, 72px);
  padding: 24px 0;
  background-color: #D6E6F5;
}

.footer_banner-wide {
  max-width: 1312px;
  width: 100%;
  height: 100%;
  padding: 0 16px;
}

.footer_banner-wide a {
  display: block;
  transition: opacity 0.3s ease;
}

.footer_banner-wide a:hover {
  opacity: 0.8;
}

.footer__banner-list {
  display: flex;
  column-gap: 16px;
  max-width: 1280px;
  margin: 0 16px;
}

.footer__banner-list a {
  display: block;
  transition: opacity 0.3s ease;
}

.footer__banner-list a:hover {
  opacity: 0.8;
}

.footer__banner-list a img {
  max-width: 100%;
  height: auto;
}

.footer__logo {
  margin-bottom: 32px;
}

.footer__logo img {
  display: block;
  width: 184px;
  height: auto;
  margin: 0 auto;
}

.footer__menu {
  /* margin-bottom: 32px; */
  margin-bottom: 0;
}

.footer__menu ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer__menu ul + ul {
  margin-top: 16px;
}

.footer__menu a {
  position: relative;
  padding-bottom: 6px;
}

.footer__menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.footer__menu a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer__tel {
  display: block;
  margin-bottom: 16px;
  color: #F5F5F5;
  font-family: Helvetica Neue;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2.56px;
  text-align: center;
}

.footer__contact {
  text-align: center;
}

.footer__info {
  margin: 0 16px;
}
.footer__info-inner {
  display: flex;
  max-width: 660px;
  margin: 32px auto 16px;
  padding: 12px;
  border-radius: 4px;
  background:
  linear-gradient(rgba(28, 42, 84, 0.7), rgba(28, 42, 84, 0.4)), 
  rgba(255, 255, 255, 0.09);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.footer__info-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border-right: 1px solid #757985;
}
.footer__info-left > h3 {
  font-size: 16px;
}
.footer__info-right {
  padding: 0 24px;
}
.footer__info-top {
  margin-bottom: 8px;
}
.footer__info-top > h4 {
  font-size: 16px;
}
.footer__info-top > p {
  font-size: 15px;
}
.footer__info-bottom > h4 {
  font-size: 16px;
}
.footer__info-bottom > p {
  font-size: 15px;
}

/* lg */
@media (max-width: 1279px) {}

/* md */
@media (max-width: 959px) {
  .footer__logo {
    margin-bottom: 48px;
  }

  .footer__logo img {
    width: clamp(120px, 16.6vw, 160px);
  }

  .footer__menu ul {
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 40px;
  }
}

/* sm */
@media (max-width: 767px) {
  .footer__info-inner {
    flex-direction: column;
  }
  .footer__info-left {
    padding: 0 0 12px;
    border-right: none;
    border-bottom: 1px solid #495474;
    text-align: center;
  }
  .footer__info-right {
    padding-top: 12px;
    text-align: center;
  }
  .footer__info-top > p {
    font-size: 14px;
  }
  .footer__info-bottom > p {
    font-size: 14px;
  }
}

/* xs */
@media (max-width: 567px) {}

/* xxs */
@media (max-width: 427px) {}

/*!
layout > nav
------------------------------
*/
.nav {
  position: fixed;
  top: -100%;
  /* top: 0; */
  right: 0;
  max-width: 100%;
  width: 440px;
  height: auto;
  padding: 64px 48px;
  background: #6F6F6F;
  color: #fff;
  font-size: 20px;
  z-index: 99999;
}

.js-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.nav__list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 24px;
  margin-bottom: 40px;
}

.nav__link {
  width: 50%;
}

.nav__link a {
  position: relative;
  padding-bottom: 6px;
}

.nav__link a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.nav__link a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.nav__tel {
  padding: 24px;
  font-size: 38px;
  font-family: Helvetica Neue;
  font-weight: 700;
  letter-spacing: 2.88px;
  text-align: center;
}

.nav__link-button {
  display: flex;
  justify-content: space-between;
}

.nav__link-button a {
  width: calc(100% / 2 - 8px);
  font-size: 16px;
}

.nav__close .nav span {
  cursor: pointer;
}

/* lg */
@media (max-width: 1279px) {}

/* md */
@media (max-width: 959px) {}

/* sm */
@media (max-width: 767px) {}

/* xs */
@media (max-width: 567px) {
  .nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav__contact-button a {
    margin: 0 auto;
  }
}

/* xxs */
@media (max-width: 427px) {}


/*!
layout > page > mv
------------------------------
*/
.mv-page {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 360px;
  z-index: -1;
}

.mv-page__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px;
  object-fit: cover;
  z-index: -1;
  transform: scale(1.2);
}

.mv-page__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 360px;
}

.mv-page__inner-bg {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 42, 82, 0.4);
  z-index: 99;
}

.page-title {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 0 24px;
  z-index: 99;
}

.page-title__bg {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}


/*!
layout > page > page-content-area
------------------------------
*/
.page-content-area {
  opacity: 0;
  max-width: 1280px;
  width: 100%;
  margin: clamp(4rem, 2.466rem + 6.29vw, 7.5rem) auto; /* min 64px / max 120px */
}

/* page-section */
.page-section + .page-section {
  margin-top: clamp(5rem, 3.904rem + 4.49vw, 7.5rem); /* min 80px / max 120px */
}

/* page-content */
.page-content {
  padding: 0 clamp(1rem, 0.343rem + 2.7vw, 2.5rem); /* min 16px / max 40px */
}

/* page-card */
.page-card {
  display: flex;
  justify-content: flex-start;
  column-gap: 64px;
}
.page-card__text {
  width: 480px;
  padding-top: 48px;
}
.page-card__text h3 + p {
  margin-bottom: 16px;
}
.page-card__text p + p {
  margin-top: 8px;
}

/* page-text */
.page-text p + p {
  margin-top: 8px;
}
.page-text.center {
  text-align: center;
}
.page-text a.underline {
  text-decoration: underline;
}

.text-indent {
  padding-left: 18px;
}

/* page-gallery */
.page-gallery__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px auto;
  padding: 0 16px;
}
.page-gallery__list::before {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  width: calc(100% + 152px);
  background-color: #EFF1F3;;
  z-index: -1;
}
.page-gallery__item {
  width: calc((100% - 80px) / 3);
}
.page-gallery__item img {
  width: 100%;
}

/* lg */
@media (max-width: 1279px) {
}

/* md */
@media (max-width: 959px) {}

/* sm */
@media (max-width: 767px) {
  .mv-page {
    height: 280px;
  }
  
  .mv-page__bg-image {
    height: 280px;
  }
  
  .mv-page__inner {
    height: 280px;
  }

  /* page-card */
  .page-card {
    flex-direction: column;
    row-gap: 40px;
  }
  .page-card__text {
    width: 100%;
    padding-top: 0;
  }

  /* page-gallery */
  .page-gallery__list {
    justify-content: center;
    gap: 24px;
  }
  .page-gallery__item {
    width: calc((100% - 24px) / 2);
  }
}

/* xs */
@media (max-width: 567px) {
  .mv-page {
    height: 240px;
  }
  
  .mv-page__bg-image {
    height: 240px;
  }
  
  .mv-page__inner {
    height: 240px;
  }

  .page-title {
    margin-top: 24px;
  }
}

/* xxs */
@media (max-width: 427px) {}



/*!
other > mouse stalker
------------------------------
*/
#mouse-stalker {
  display: none;
}

.no_stick_ {
  pointer-events: none;
}

@media (pointer: fine) {
  #mouse-stalker {
    position: fixed;
    display: block;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgba(70, 221, 247, 0.4);
    border-radius: 50%;
    transform: translate(0, 0);
    transition: transform 0.2s;
    transition-timing-function: ease-out;
    z-index: 9999;
    pointer-events: none;
  }

  #mouse-stalker.is_active {
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: rgba(70, 221, 247, 0.15);
    transition: 0.2s;
  }
}

/*!
utility > utility
------------------------------
*/
.js-split-text span {
  display: inline-block;
}

.js-text-effect span {
  display: inline-block;
  opacity: 0;
}

.visible-md {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-xs {
  display: none !important;
}

.hidden-sm {
  display: block !important;

}

.hidden-xs {
  display: block !important;
}

.mt80 {
  margin-top: clamp(2.5rem, 1.404rem + 4.49vw, 5rem)!important; /* min 40px / max 80px */
}
.mt120 {
  margin-top: clamp(3.75rem, 2.107rem + 6.74vw, 7.5rem)!important; /* min 60px / max 120px */
}
.mt160 {
  margin-top: clamp(5rem, 2.809rem + 8.99vw, 10rem)!important; /* min 80px / max 160px */
}
.mt180 {
  margin-top: clamp(5.625rem, 3.16rem + 10.11vw, 11.25rem)!important; /* min 90px / max 180px */
}
.mt240 {
  margin-top: clamp(7.5rem, 4.213rem + 13.48vw, 15rem)!important; /* min 120px / max 240px */
}

/* lg */
@media (max-width: 1279px) {}

/* md */
@media (max-width: 959px) {
  .visible-md {
    display: block !important;
  }
}

/* sm */
@media (max-width: 767px) {
  .visible-sm {
    display: block !important;
  }
  .hidden-sm {
    display: none !important;
  
  }
}

/* xs */
@media (max-width: 567px) {
  .visible-xs {
    display: block !important;
  }
  .hidden-xs {
    display: none !important;
  }
}

/* xxs */
@media (max-width: 427px) {}