@charset "UTF-8";

/* ==========================================================================
   Loading
========================================================================== */
body #container::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--l-gray2) url(../img/loading.svg) no-repeat center center / 5em;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
  transition: 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ==========================================================================
   Animation
========================================================================== */
.iv {
  opacity: 0;
}

/* ==========================================================================
   Base
========================================================================== */
html {
  font-family: var(--mincho);
  font-size: 81.3%;
  line-height: 2;
  letter-spacing: .075em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 374px) {
  html {
    font-size: 3.475vw;
  }
}

body {
  background: var(--off-white);
  color: var(--black);
}
@media (max-width: 991px) {
  body.navOpen {
    height: 100%;
    overflow: hidden;
  }
}

#container {
  overflow: hidden;
  position: relative;
}


/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
}
#siteHeader .inner-header {
  height: 100%;
  padding: 0 0 0 25px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#siteHeader .inner-header::before {
  content: '';
  background: var(--off-white);
  opacity: .95;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(((100vw - 100%)/2)*-1);
  right: calc(((100vw - 100%)/2)*-1);
  transition: background 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (max-width: 991px){
  #siteHeader .inner-header:has(.on)::before {
    opacity: 1;
  }
}

#logo {
  flex: 0 0 58px;
  width: 58px;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.logo__inner {
  display: block;
  width: 100%;
  color: inherit;
  transform: opacity .2s;
}
#logo .logo__inner img {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 991px) {
  #siteHeader {
    position: fixed;
  }
}
@media (min-width: 992px) {
  #siteHeader {
    height: 100px;
    font-size: min(1.1vw, 0.923em);
  }
  #siteHeader .inner-header {
    padding: 0 0 0 4vw;
  }
}
@media (min-width: 1200px) {
  #siteHeader {
    font-size: 1em;
  }
  #logo {
    flex: 0 0 65px;
    width: 65px;
  }
}


/* ==========================================================================
   Navigation
========================================================================== */
nav a {
  display: block;
  text-decoration: none;
}

nav ul {
  display: flex;
  border-bottom: 0;
  margin: 0;
}
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
}
nav ul li a span {
  display: block;
}
nav ul li a em {
  display: block;
  font-family: var(--font1);
  font-style: normal;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.gNav {
  flex: 1 1 100%;
  max-width: 100%;
  height: 100%;
  color: var(--black);
}
.gNav__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.gNav nav {
  display: flex;
  width: 100%;
}
.gNav nav ul li a {
  line-height: 1.5rem;
  position: relative;
  transition: none;
}
.gNav .main-nav li a {
  display: flex;
  align-items: center;
  font-size: 1.077em;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 1.125vw;
}

.gNav .main-nav li > a {
  text-align: left;
  border-bottom: 1px solid var(--border2);
  margin-bottom: .5em;
}
.gNav .main-nav li > a::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--color3);
  border: 1px solid var(--color3);
  position: absolute;
  top: 50%;
  right: 0;
  transition: background .2s;
  transform: translateY(-50%);
}
.gNav .main-nav li > a::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transition: color .2s;
  transform: translate(-5%, -50%) rotate(45deg) scale(0.3);
}
.gNav .main-nav li > a:hover::before {
  background: transparent;
}
.gNav .main-nav li > a:hover::after {
  color: var(--color1);
}
.gNav .main-nav li > a > span {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 0;
}
.gNav .main-nav li > a > span em {
  width: 11.5em;
  color: var(--color1);
}

.sns-nav li a {
  line-height: 1.5em;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1em;
  letter-spacing: .04em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  padding: .25em 0 !important;
}
.sns-nav li a svg {
  fill: currentColor;
  width: 22px;
  height: 22px;
  margin-right: .75em;
}

/* Nav Btn */
.nav-btn {
  background: var(--off-white);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.nav-btn i {
  display: block;
  background: currentColor;
  height: 1px;
  position: absolute;
  right: 25px;
  left: 25px;
  margin-top: -0.5px;
  transition: transform .3s;
}
.nav-btn i:nth-of-type(1) {
  top: 50%;
}
.nav-btn i:nth-of-type(2) {
  top: calc(50% - 10px);
}
.nav-btn i:nth-of-type(3) {
  top: calc(50% + 10px);
}
.nav-btn.on {
  color: var(--black);
}
.nav-btn.on i:nth-of-type(1) {
  transform: scaleX(0);
}
.nav-btn.on i:nth-of-type(2) {
  top: 50%;
  transform: rotate(40deg);
}
.nav-btn.on i:nth-of-type(3) {
  top: 50%;
  transform: rotate(140deg);
}

/* ==========================================================================
   PC Navigation
========================================================================== */
@media (min-width: 992px) {
  .gNav {
    display: block !important;
  }
  .gNav nav,
  .gNav .nav-row,
  .gNav ul {
    justify-content: flex-end;
    align-items: center;
  }
  .gNav .main-nav > li > a {
    text-align: center;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .gNav .main-nav li > a::before,
  .gNav .main-nav li > a:after {
    display: none;
  }

  .nav-btn {
    display: none;
  }

  #sp_gNav.gNav {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .gNav .main-nav > li > a {
    font-size: 1.077em;
  }
}

/* ==========================================================================
   SP Navigation
========================================================================== */
@media (max-width: 991px) {
  .gNav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    background: var(--off-white);
    width: 100%;
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
    transition: clip-path .6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .gNav.on {
    clip-path: inset(0);
  }
  .gNav nav {
    padding-top: 40px;
    padding-block: 40px;
    height: 100%;
    padding-top: 80px;
    flex-direction: column;
    justify-content: flex-start;
  }
  .gNav nav .navBar_inner {
    background: var(--off-white);
    height: calc(100dvh - 80px);
    overflow-y: auto;
  }
  .gNav nav .navBar_inner .nav-row {
    padding: 40px 0;
  }
  .gNav nav ul {
    max-width: min(32em, calc(100% - 50px));
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
  }
  .gNav nav ul li a {
    padding: 1em 0 !important;
  }

  /* OPEN */
  .gNav.on {
    display: block;
  }
  .gNav.on .gNav__inner {
    opacity: 1;
    height: 100dvh;
  }

  .gNav nav .sub-menu {
    display: none;
  }
  .gNav nav .sub-menu ul li a em {
    padding-left: 1.5em;
  }
}

/* ==========================================================================
   Book Navigation
========================================================================== */
.bookNav {
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 80px;
  background: var(--off-white);
  width: 100%;
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  transition: clip-path .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.bookNav.on {
  clip-path: inset(0);
}

.bookNav__inner {
  height: calc(100dvh - 80px);
  overflow-y: auto;
  background: var(--color2);
  color: var(--white);
}
.bookNav .bookNav__inner > div {
  padding: 40px 25px;
}

.bookNav .nav-book-row .ttlBox {
  text-align: center;
  padding: 2em 0 1em;
}
.bookNav .nav-book-row .buttons {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.bookNav .nav-book-row .tel-link {
  order: 10;
}
.bookNav .nav-book-row .txt {
  order: 10;
  margin-bottom: 2rem;
}

.book-btn {
  background: var(--color2);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75em;
  text-align: center;
  align-items: center;
  white-space: nowrap;
  width: 85px;
  height: 80px;
  font-family: var(--mincho-m);
  font-weight: 600;
  font-size: .923em;
  line-height: 1.375;
  letter-spacing: .08em;
  padding-right: 1.5vw;
  padding-left: 1.5vw;
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.book-btn svg {
  display: inline-block;
  fill: currentColor;
}
@media (min-width: 992px) {
  .book-btn:hover {
    background: var(--color2-h);
  }
}

/* ==========================================================================
   PC Book Navigation
========================================================================== */
@media (min-width: 992px) {
  .bookNav {
    padding-top: 0;
    max-width: 31.38rem;
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
  }
  .bookNav__inner {
    height: 100dvh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .book-btn {
    width: 10vw;
    height: 100px;
    margin-left: 1.5vw;
    font-size: 0.923em;
  }
  .bookNav-close {
    background: transparent;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10vw;
    height: 100px;
    padding-top: 2em;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .bookNav-close i {
    display: block;
    background: currentColor;
    width: 32px;
    height: 1px;
    position: absolute;
    top: calc(50% - .75em);
    left: 50%;
    margin-top: -0.5px;
    transition: transform .3s;
  }
  .bookNav-close i:nth-of-type(1) {
    transform: translateX(-50%) rotate(40deg);
  }
  .bookNav-close i:nth-of-type(2) {
    transform: translateX(-50%) rotate(140deg);
  }
}
/* ==========================================================================
   SP Book Navigation
========================================================================== */
@media (max-width: 991px) {

  /* Book Btn */
  .book-btn {
    position: fixed;
    top: 0;
    right: 85px;
    z-index: 2;
    letter-spacing: 0;
    transition: width .15s;
  }
  .book-btn > span {
    padding: 0;
    font-size: .923em;
  }

  .bookNav-close {
    display: none;
  }
}
@media (min-width: 576px) {
  .book-btn {
    width: 120px;
  }
}

/* ==========================================================================
   Book List
========================================================================== */
.nav-book-row {
  text-align: center;
}
.nav-book-row dl {
  max-width: 22.6em;
  margin: 1.5em auto 0;
  display: flex;
  flex-direction: column;
}
.nav-book-row dt {
  margin-bottom: .75em;
}
.nav-book-row dt span {
  font-size: 1.077em;
  font-weight: 700;
}
.nav-book-row dd p {
  margin-top: 0;
  margin-bottom: .75rem;
  line-height: 1.75;
}
.nav-book-row h5 {
  font-weight: 400;
  margin-bottom: .75rem;
}
.nav-book-row .btn {
  padding: 1.125em 1.5em;
}
.nav-book-row .txt {
  font-family: var(--gothic);
  font-size: .923em;
  margin-bottom: .5em;
}
.nav-book-row .tel-txt {
  display: inline-block;
}
.nav-book-row .tel-txt .num {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--mincho);
  font-size: 2.308em;
  letter-spacing: .04em;
  position: relative;
  z-index: 2;
}
.nav-book-row .tel-txt svg {
  color: var(--color2);
  display: inline-block;
  width: .7em;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.nav-book-row .tel-txt .num::before {
  content: '';
  background: var(--white);
  border-radius: 100%;
  display: inline-block;
  width: .7em;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translate(0,-50%) scale(1.7);
}
.nav-book-row .tel-link {
  margin-bottom: 0.75em;
}

@media (max-width: 991px) {
  .nav-book-row dl {
    max-width: 32em;
  }
}

@media (min-width: 992px) {
  .nav-book-row dt {
    margin-bottom: 0.75em;
  }
}

/* ==========================================================================
   Fair
========================================================================== */
#fair-cont * {
  color-scheme: normal;
}

/* ==========================================================================
   Footer Information
========================================================================== */
#footer-info {
  background: var(--color2);
  color: var(--white);
  position: relative;
  z-index: 3;
}

#footer-info .en_ttl {
  text-align: center;
}
#footer-info .ttl {
  display: block;
  text-align: center;
  margin-top: 1em;
}

#footer-info .nav-book-row .buttons {
  width: 100%;
  margin: 1em auto 2em;
}
#footer-info .nav-book-row .ttl {
  display: block;
  margin-top: 1em;
}

@media (max-width: 991px) {
  #footer-info .nav-book-row > div:not(:first-child) dt {
    border-top: 1px solid var(--border1);
    padding-top: 2em;
    margin-top: 1em;
  }
}
@media (min-width: 576px) {
  #footer-info .nav-book-row dl {
    max-width: 100%;
  }
  #footer-info .nav-book-row .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -10px;
    margin-left: -10px;
  }
  #footer-info .nav-book-row .buttons > p {
    flex-basis: calc(100%/2);
    max-width: calc(100%/2);
    padding-right: 10px;
    padding-left: 10px;
  }
  #footer-info .nav-book-row .buttons > p .btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  #footer-info .nav-book-row > div:not(:first-child) {
    border-left: 1px solid var(--border1);
  }
  #footer-info .nav-book-row .buttons {
    margin: 3em auto 4em;
  }
  #footer-info .nav-book-row .buttons > p {
    flex-basis: calc(100%/4);
    max-width: 400px;
  }
}


/* ==========================================================================
   Breadcrumb
========================================================================== */
.breadcrumb-wrapper {
  border-bottom: 1px solid rgba(232, 228, 216, 0.60);
  overflow: hidden;
  padding: 1em 25px;
  position: relative;
  z-index: 3;
}
#breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  line-height: 1.25;
}
#breadcrumb ol li {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
}
#breadcrumb ol li a {
  display: inline-block;
}
#breadcrumb ol .separator {
  display: block;
  padding: 0.5em 0.25em;
}

.breadcrumb-wrapper .nav-breadcrumb ul {
  margin-right: -1.125em;
  margin-left: -1.125em;
}
.breadcrumb-wrapper .nav-breadcrumb ul li {
  padding-right: 1.125em;
  padding-left: 1.125em;
  border-right: 1px solid #bdc1c7;
}
.breadcrumb-wrapper .nav-breadcrumb ul li:last-child {
  border-right: none;
}
.breadcrumb-wrapper .nav-breadcrumb ul li a {
  line-height: 1.5;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .nav-breadcrumb ul {
    margin-right: -2vw;
    margin-left: -2vw;
  }
  .breadcrumb-wrapper .nav-breadcrumb ul li {
    padding-right: 2vw;
    padding-left: 2vw;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .nav-breadcrumb {
    margin-top: 0.5em;
  }
}
@media (min-width: 992px) {
  .breadcrumb-wrapper {
    padding: 1em 4vw;
  }
  .breadcrumb-wrapper .nav-breadcrumb ul {
    justify-content: flex-end;
  }
}

/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  clear: both;
  overflow: hidden;
  padding: 4em 5px;
  position: relative;
  z-index: 3;
}
#siteFooter a {
  white-space: nowrap;
}
#siteFooter a:hover {
  opacity: 0.5;
}

#siteFooter #footerLogo {
  margin: 0 auto 3em;
}
#siteFooter .logo__inner {
  width: 128px;
}

#siteFooter .fNav .nav-row {
  font-size: .923rem;
  display: flex;
  flex-wrap: wrap;
}
#siteFooter .fNav .sub-menu ul {
  display: block;
}
#siteFooter .fNav .sub-menu ul li a {
  padding: 0.75em 0;
}

#siteFooter .fNav ul li {
  padding: .25em 0;
}
#siteFooter .fNav ul li a {
  padding: .75em 0;
}
#siteFooter .fNav ul.sns-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  margin: 2.5em 0 3.5em;
}
#siteFooter .fNav ul.sns-nav li a {
  display: flex;
  align-items: center;
  gap: .5em;
}
#siteFooter .fNav ul.sns-nav li a svg {
  margin: 0;
  width: 1.2em;
  height: 1.2em;
}
#siteFooter .fNav ul.sns-nav li a svg._blank {
  width: .8em;
  height: .8em;
  order: 2;
}



#siteFooter .footer-bottom {
  font-family: var(--gothic);
  font-size: .923rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
#siteFooter .footer-bottom nav ul {
  justify-content: center;
}
#siteFooter .footer-bottom nav ul li:not(:last-child) {
  border-right: 1px solid currentColor;
}
#siteFooter .footer-bottom nav ul li a {
  padding: 0 1em;
}

#siteFooter .copyright {
  text-align: center;
  margin-top: 1.5em;
}

@media (max-width: 991px) {
  #siteFooter .logo__inner {
    width: 128px;
    margin: 0 auto;
  }
  #siteFooter .fNav {
    max-width: 56rem;
    margin: 0 auto;
  }
  #siteFooter .fNav ul {
    flex-wrap: wrap;
    position: relative;
  }
  #siteFooter .fNav ul.main-nav {
    display: block;
    column-count: 5;
    column-fill: auto;
  }
  #siteFooter .fNav ul.main-nav li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
  }
  #siteFooter .fNav ul li a {
    padding: 1em 0;
  }
  #siteFooter .fNav ul.sns-nav {
    justify-content: center;
  }
  #siteFooter .fNav .sub-menu {
    display: none;
  }
}
@media (max-width: 767px) {
  #siteFooter .fNav {
    max-width: 32rem;
  }
  #siteFooter .fNav ul.main-nav {
    column-count: 3;
  }
}
@media (max-width: 575px) {
  #siteFooter .fNav {
    max-width: 23rem;
  }
  #siteFooter .fNav ul.main-nav {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  #siteFooter {
    padding: 5em 4vw;
  }
  #siteFooter .logo__inner {
    width: 97px;
  }

  #siteFooter .fNav ul.main-nav,
  #siteFooter .fNav ul.sns-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1em 2em;
  }
  
  #siteFooter .fNav ul li a {
    padding: 0.75em 0;
  }

  #siteFooter .fNav .sub-menu ul li a {
    display: flex;
    align-items: center;
  }
  #siteFooter .fNav .sub-menu ul li a::before {
    content: '-';
    margin-right: .75em;
    font-family: sans-serif;
  }

  #siteFooter .fNav ul.sns-nav {
    margin: 2.5em 0 7.5em;
  }
  #siteFooter .fNav ul.sns-nav li a svg {
    order: 2;
  }

  #siteFooter .footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #siteFooter .footer-bottom__inner .copyright,
  #siteFooter .footer-bottom__inner .copyright p {
    margin-top: 0;
    text-align: right;
  }

}


/* ==========================================================================
   Fixed Bottom Nav
========================================================================== */
#fixedBottomNav {
  width: 100%;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  transform: translateY(105%);
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
#fixedBottomNav.open {
  transform: translateY(0);
}
#fixedBottomNav.close,
body.navOpen #fixedBottomNav.open {
  transform: translateY(105%);
}
#fixedBottomNav .buttons {
  display: flex;
  height: 5rem;
}
#fixedBottomNav .buttons > div {
  flex-basis: 100%;
  font-family: var(--mincho-m);
  font-weight: 600;
  background: var(--white);
  color: var(--color2);
}
#fixedBottomNav .buttons > div:first-child {
  background: var(--color2);
  color: var(--white);
}
#fixedBottomNav .buttons > div:nth-child(n + 2) {
  border-top: 1px solid rgba(57, 90, 81, 0.10);
  border-right: 1px solid rgba(57, 90, 81, 0.10);
}
#fixedBottomNav .buttons > div:last-child {
  border-right: none;
}
#fixedBottomNav .buttons a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: .125em;
  border: .5px solid var(--off-white);
}
#fixedBottomNav .buttons a svg {
  display: block;
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
}
#fixedBottomNav .buttons > div:nth-child(2) a svg {
  width: 1.375em;
  height: 1.375em;
}

@media (min-width: 992px) {
  #fixedBottomNav {
    width: 46.2rem;
  }
  #fixedBottomNav .buttons {
    height: 4rem;
  }
  #fixedBottomNav .buttons a {
    flex-direction: row;
    gap: .375em;
  }
}

