@charset "UTF-8";

/* ----------------------------------------
* レスポンシブ
---------------------------------------- */

body {
  max-width: 768px;
  width: 100%;
  overflow: hidden;
  margin: 0;
  color: var(--color-body);
  font-size: 1.2em;
  line-height: 1.5;
  font-family: var(--font-sans);
  background: #ffffff;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
button {
  font: inherit;
}
main {

}
section {
  width: 100%;
  text-align: center;
}
section .wrap {
  width: 100%;
  max-width: 750px;
  padding: 0 6.667%;
  margin: auto;
}

.f_in {
  opacity: 0;
  transition: all 1s ease 0.1s;
  transform: translate(0, 0);
}

.f_go {
  opacity: 1;
  transform: translate(0, 0);
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-family: var(--font-serif-jp);
}

.section-kicker--light {
  color: #fff;
}

.section-heading {
  text-align: center;
}
.section-heading__title {
  margin: 0 auto;
  font-family: var(--font-serif-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
}
.section-heading__sub {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: var(--font-serif-jp);
}

.section-heading--dark {
  color: var(--color-navy);
}

.section-heading--light {
  color: var(--color-white);
}

.site-header {
  top: 0;
  z-index: 20;
  background: #fff;
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-header__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-left: 0;
}
.site-header .site-header__logo {
  width: 30.6%;
  flex-shrink: 0;
  margin-left: 3.333%;
  display:flex;
}
.site-header .site-header__logo span {
  display:none;
}
.site-header--top .site-header__logo {
  width: 30.6%;
  flex-shrink: 0;
  margin-left: 3.333%;
  position: relative;
  padding-top: 27px;
}
.site-header--top .site-header__logo span {
  width: 200px;
  font-size: 10px;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  color: #fff;
}

.site-header__logo-image {
  width: 100%;
}

.site-header__logo-image--light {
  display: none;
}

.site-header__nav {
  display: none;
}

.site-header__sns {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-right: 25px;
}

.site-header__sns a {
  padding: 0;
  border-left: 0;
}

.site-header__sns-icon {
  width: 24px;
  height: 24px;
}

.site-header__sns-icon--light {
  display: none;
}

.site-header .menu-button {
  background: #1f3456;
}

.menu-button {
  display: block;
  width: 13.33%;
  height: auto;
  border: 0;
  background: #1f3456;
  padding: 0;
  cursor: pointer;
}

.menu-button img {
  width: 100%;
  margin: 0 auto;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.site-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  cursor: pointer;
}

.site-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 93.333%;
  height: 100%;
  background: #fff;
  padding: 17px 21px 18px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.site-menu.is-open .site-menu__panel {
  transform: translateX(0);
}

.site-menu__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--color-navy-deep);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.site-menu__logo {
  display: block;
  text-align: center;
  margin-top: 20px;
}
.site-menu__logo img {
  display: inline-block;
  width: 50%;
}

.site-menu__nav {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.site-menu__nav a {
  font-family: var(--font-serif-jp);
  font-size: 16px;
  font-weight: 400;
}

.site-menu__cta {
  margin-top: 27px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.site-menu__cta-button {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.site-menu__cta-button--primary {
  background: #075f34;
  color: #fff;
}

.site-menu__cta-button--secondary {
  background: #ebebeb;
}

.site-menu__sns {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-menu__sns img {
  width: 20px;
  height: 20px;
}

.site-menu__subnav {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
}

.site-menu__subnav a {
  font-size: 12px;
  font-weight: 500;
}

.membership-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.membership-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.membership-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.membership-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86.777%;
  background: #fff;
  padding: 20px 20px 30px;
}

.membership-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  color: var(--color-navy-deep);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.membership-modal__title {
  margin: 0 0 30px;
  text-align: center;
  font-family: var(--font-serif-jp);
  font-size: 24px;
  font-weight: 500;
}

.membership-card {

}

.membership-card p {
  margin: 12px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.membership-card a {
  min-height: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--color-teal-dark);
  background: var(--color-teal-dark);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 10px;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.membership-card a::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--color-teal);
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.membership-card a:hover {
  opacity: 1;
  color: var(--color-white);
}

.membership-card a:hover::before {
  opacity: 1;
  transform: scale(1.01);
}

.membership-card a .button-label {
  position: relative;
  z-index: 1;
}

.membership-card a .button-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.membership-card a .button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  transform: translate(-50%, -50%);
}

.membership-card a:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 4px;
}

.membership-card--wide {
  grid-column: 1 / -1;
}

.site-header--top {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.site-header--top .site-header__logo-image--dark,
.site-header--top .site-header__sns-icon--dark {
  display: none;
}

.site-header .site-header__logo-image--light,
.site-header .site-header__sns-icon--light {
  display: block;
}

.site-header .menu-button {
  background: var(--color-navy);
}

.site-header.is-fixed {
  position: fixed;
  width: 100%;
  background: transparent;
}

.site-header.is-fixed .site-header__logo-image--light,
.site-header.is-fixed .site-header__sns-icon--light {
  display: none;
}

.site-header.is-fixed .site-header__logo-image--dark,
.site-header.is-fixed .site-header__sns-icon--dark {
  display: none;
}
.site-header--top.is-fixed .site-header__logo span {
  display: none;
}

#mv {
  padding-bottom: 300px;
  position: relative;
}

.mv__slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s ease;
}

.mv__slide.is-active {
  opacity: 1;
}

.mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__dots {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: -20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  transform: translateX(-50%);
}

.mv__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(61, 76, 101, 0.45);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mv__dot.is-active {
  background: #3d4c65;
  transform: scale(1.1);
}

.mv__overlay {
}
.mv__overlay_inner {
}
.mv__copy-image {
  width: 100%;
  position: relative;
  top: 0;
  right: 0;
  z-index: 3;
  /* transform:translateY(-50%); */
}
.mv__copy-panel {
}
.mv__trackman {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateY(30%);
  z-index: 3;
  width: 61%;
}

#news {
  padding: 40px 0;
}
#news .wrap {
}
.mv__news-head {
  text-align: left;
}
#news .section-heading__title {
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 20px;
}
.mv__news-more {
   font-family: var(--font-serif-display);
}
.mv__news-more:hover {
  opacity: 0.7;
}
.mv__news-list {
  text-align: left;
}
.mv__news-list li {
  margin: 0 0 14px;
}
.mv__news-list li time {
  font-family: var(--font-serif-display);
  display:block;
  margin-bottom: 5px;
}
.mv__news-list li a:hover {
  text-decoration: underline;
}



.cv {
  padding: 0 0 40px;
}
.cv.cv_area2 {
  padding: 40px 0 40px;
}
.cv__box {
  background: var(--color-gray);
  margin: auto;
  padding: 34px 0 30px;
}
.cv__header h2 {
  margin: 0;
  font-size: 24px;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.cv__notice {
  margin: 22px auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 7%;
}
.cv__notice img {
  width: calc(100% / 3);
}
.cv__notice span {
  width: calc(100% / 3 * 2);
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}
.cv__offer {
  text-align: center;
}
.cv__offer img {
  margin: auto;
}
.cv__actions {
  text-align: center;
  margin-top: 20px;
}
.cv__button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 37px;
  width: 86%;
  padding: 19px 0 19px;
  border: 1px solid var(--color-teal-dark);
  background: var(--color-teal-dark);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  transition: color 0.35s ease, border-color 0.35s ease;
}
.cv__button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: var(--color-teal);
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.cv__button:hover {
  opacity: 1;
  color: var(--color-white);
}
.cv__button:hover::before {
  opacity: 1;
  transform: scale(1.01);
}
.cv__button-label {
  position: relative;
  z-index: 1;
  display: block;
}
.cv__button-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}
.cv__button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  transform: translate(-50%, -50%);
}
.cv__button:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 4px;
}

#concept {
  background: url(../img/top_concept_bg_sp.webp) no-repeat center center / cover;
  position: relative;
  color: var(--color-white);
  padding: 50px 0 70px;
  text-align: center;
}

.concept__tagline {
  font-family: var(--font-serif-jp);
  margin: 30px auto 40px;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 0.1em;
}

.concept__text {
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
}

.slider_area {
  padding: 0;
}

.loop-slider {
  display: flex;
  overflow: hidden;
}

.loop-slider .inner {
  display: contents;
}

.loop-slider ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: infinity-scroll-left 48s infinite linear;
}

.loop-slider li {
  flex: 0 0 175px;
}

.loop-slider img {
  width: 100%;
  aspect-ratio: 0.6 / 1;
  object-fit: cover;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#message {
  background: url(../img/top_message_bg.webp) repeat top center / 65px;
  padding: 0 6.6667% 110px;
}

#message .wrap {
  background: #fff;
  transform: translateY(-25px);
  padding: 45px 9% 35px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.1);
}
#message .section-heading {
  margin: 0 auto 35px;
}
.message__grid {
}
.message__text {
  text-align: left;
  width: 100%;
  margin: 0 0 35px;
}
.message__text h3 {
  margin: 0 0 25px;
  color: var(--color-navy-deep);
  font-family: var(--font-serif-jp);
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  text-align: center;
}
.message__text p {
  margin: 0;
  line-height: 2;
}

.message__text p + p {
  margin-top: 14px;
}

.message__detail {
  margin-top: 14px;
  position: relative;
  max-height: 400px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.message__detail.open {
  max-height: 1200px;
}

.message__detail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
}
.message__detail.open::after {
  display:none;
}

.message__more {
  margin-top: 21px;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 62%;
  max-width: 100%;
  padding: 11px 22px;
  border: 1px solid rgba(13, 34, 61, 0.28);
  color: var(--color-navy-deep);
  font-family: var(--font-serif-display);
  font-size: 11px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: color 0.35s ease, border-color 0.35s ease;
}

#message .message__more {
  width: 100%;
}

.message__more::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: #000;
  opacity: 0;
  transform: scale(0.9);
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.message__more:hover {
  opacity: 1;
  color: #fff;
  border-color: #000;
}

.message__more:hover::before {
  opacity: 1;
  transform: scale(1.01);
}

.message__more:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 4px;
}

.message__more > .message__more_text {
  position: relative;
  z-index: 2;
}

.message__toggle-icon {
  min-width: 1em;
  position: absolute;
  top: 50%;
  right:25px;
  transform: translateY(-50%);
}

.message__figure {
  width: 100%;
}


#concerns {
  padding: 0 0 40px;

}
.concerns__board {
  position: relative;
  background: var(--color-teal-dark);
  color: #fff;
  margin: 0 auto;
  padding: 35px 10% 35px;
  transform: translateY(-80px);
}
.concerns__board::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--color-teal-dark);
  transform: translateX(-50%);
}
.concerns__title {
  font-family: var(--font-serif-jp);
  font-size: 27px;
  line-height: 37px;
  font-weight: 400;
  margin-bottom: 40px;
}
.concerns__lists {
}
.concerns__list {
  width: 100%;
  text-align: left;
}
.concerns__list li {
  font-size: 13px;
  padding-left: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.08em;
  position: relative;
}
.concerns__list li:before {
  content: '';
  background: url(../img/top_concerns_li_check.png) no-repeat center center / 100%;
  width: 12px;
  height: 13px;
  position: absolute;
  top: 3px;
  left: 0;
}
.concerns__message {
font-family: var(--font-serif-jp);
font-size: 22px;
line-height: 35px;
font-weight: 400;
margin-top: -45px;
}

#points {
  background: url(../img/top_7point_bg.webp) repeat top center / 65px;
  padding: 60px 0 55px;
  overflow: hidden;
}

.points__heading {
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
  text-align: center;
}

.points__title-img {
  margin: 0 auto;
}

.points__title-img--sp {
  display: none;
}

.point-card {
  background: #fff;
  padding: 30px 9% 45px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  margin-top: 30px;
}

.point-card__image {
  position: relative;
}

.point-image-slider {
  width: 100%;
  aspect-ratio: 0.6 / 1;
  object-fit: cover;
  background: #fff;
}

.point-card__image img {
  max-width: 130%;
  width: 130%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-12%);
}

.point-image-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.point-image-slider img.is-active {
  opacity: 1;
}

.point-image-slider__dots {
  position: absolute;
  left: 50%;
  bottom: -40px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  transform: translateX(-50%);
}

.point-image-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(48, 43, 74, 0.28);
  cursor: pointer;
}

.point-image-slider__dot.is-active {
  background: #302b4a;
}

.point-card__content {
  text-align: left;
  margin-bottom: 20px;
}

.point-card__ttl {
  margin-bottom: 25px;
}

.point-card__ttl--sp {
  display: none;
}

.point-card__content .point-card__lead {
  font-family: var(--font-serif-jp);
  color: var(--color-navy-deep);
  font-size: 19px;
  font-weight: 600;
  line-height: 25px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  position: relative;
}
.point-card__content .point-card__lead:after {
  content: '';
  display: inline-block;
  width: 170px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px var(--color-navy-deep);
}

.point-card__content p {
  line-height: 26px;
  font-weight: 500;
}

.point-card__logos {
  margin: 15px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.point-card__logos img {
  width: 50%;
}

.coach-grid {
  background: #fff;
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 30px 4.5% 40px;
  text-align: left;
}
.coach-grid__title {
  color: var(--color-navy-deep);
  font-family: var(--font-serif-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 auto 15px;
}
.coach-cards {
}
.coach-card {
  background: #4f5256;
  width: 100%;
}
.coach-card:nth-child(even) {
  background: #3f4245;
  border-top: solid 1px #686a6e;
  border-bottom: solid 1px #686a6e;
}
.coach-card img {
  width: 50%;
  object-fit: cover;
  margin-bottom: 30px;
}
.coach-card_text {
  color: #fff;
  padding: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
}
.coach-card_text .sp_text1 {
  width: 50%;
  padding: 30px 15px 0;
  margin-bottom: 30px;
}
.coach-card_text h4 {
  font-family: var(--font-serif-jp);
  font-size: 20px;
  margin-bottom: 2px;
}
.coach-card_text .h4_sub {
  color: #e5e5e5;
  font-family: var(--font-serif-jp);
  font-size: 10px;
}
.coach-card_text .carrier {
  font-size: 10px;
  line-height: 1;
  padding-bottom: 15px;
  margin: 10px 0 15px;
  position: relative;
}
.coach-card_text .carrier:after {
  content: '';
  display: inline-block;
  width: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #fff;
}
.coach-card_text .catch {
  font-family: var(--font-serif-jp);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.05em;
}
.coach-card_text .keireki {
  display: none;
}
.coach-card_text .keireki_text {
  font-size: 12px;
  line-height: 22px;
  width: 100%;
  padding: 0 15px;
}
.coach-card_text .keireki_text .sp {
  display: inline-block;
  margin-right: 1em;
  font-weight: 600;
}

#rooms {
  padding: 27px 0 20px;
  background: #fff;
}
#rooms .section-heading {
    margin: 0 auto 30px;
}

.rooms__intro {
  font-family: var(--font-serif-jp);
  font-size: 16px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto 40px;
}

.rooms__list {
  margin: auto;
  padding: 0 3.8%;
}

.room-card {
  margin-bottom: 40px;
  position: relative;
  text-align: left;
}

.room-card__side {
  position: absolute;
  top: 0;
  left: -8%;
  width: 4%;
}

.room-card__main {
  display: block;
}

.room-card__media {
  position: relative;
}

.room-slider {
  position: relative;
  overflow: hidden;
}

.room-slider__track {
  display: flex;
  transition: transform 0.45s ease;
}

.room-slider__track img {
  flex: 0 0 100%;
  width: 100%;
}

.room-slider__nav {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 0;
  background: rgba(10, 29, 60, 0);
  cursor: pointer;
  transform: translateY(-50%);
}

.room-slider__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translate(-50%, -50%);
}

.room-slider__nav--prev {
  left: 0;
}

.room-slider__nav--prev::before {
  border-right: 12px solid #fff;
  margin-left: -2px;
}

.room-slider__nav--next {
  right: 0;
}

.room-slider__nav--next::before {
  border-left: 12px solid #fff;
  margin-left: 2px;
}

.room-card__body {
  background: #173147;
  color: #fff;
  height: auto;
  margin: -25px 3% 0;
  padding: 18px 20px;
  position: relative;
}

.room-card__label {
  text-align: left;
  margin-bottom: 15px;
}
.room-card__label .label1 {
  max-width: 70%;
  margin: auto;
}
.room-card__label .label2 {
  max-width: 33%;
  margin: auto;
}
.room-card__label .label3 {
  max-width: 90%;
  margin: auto;
}

.room-card__body p {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.04em;
}

.room-card__description {
  margin-top: 20px;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
}

#price {
  background: url(../img/top_price_bg.webp) repeat top center / 65px;
  padding: 40px 0 35px;
  overflow: hidden;
  position: relative;
}
#price .section-heading {
    margin: 0 auto 30px;
}
.price__inner {
  margin: auto;
  position: relative;
  z-index: 1;
}
.price__meta {
  margin: 0 0 20px;
  font-size: 13px;
  color: #fff;
}
.price__meta .serif22 {
  font-family: var(--font-serif-jp);
  font-size: 15px;
}
.price__meta .serif28 {
  font-family: var(--font-serif-jp);
  font-size: 18px;
}
.price__note {
  color: #fff;
  margin-top: 15px;
  font-size: 11px;
  text-align: left;
}
.price__note .mr {
  margin-right:1em;
}
.price__table-wrap {
  position: relative;
  overflow: auto;
  padding-bottom: 5px;
}

.price__table {
  width: 750px;
  margin: auto;
  border-collapse: collapse;
  background: rgba(255,255,255,0.96);
}

.price__table tbody th,
.price__table td {
  background: #fff;
  border: 1px solid #223544;
}

.price__table thead th {
  background: #223544;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border: 1px solid #223544;
  border-right: 1px solid #6b89a1;
  padding: 12px 12px;
}

.price__table tbody th {
  color: var(--color-navy-deep);
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  padding: 12px 10px 12px 12px;
}

.price__table tbody td {
  color: var(--color-navy-deep);
  text-align: center;
  padding: 12px 12px;
}

.price__table tbody tr.is-popular td,
.price__table tbody tr.is-popular th {
  background: #ebf7ff;
}

.price__popular-badge {
  position: absolute;
  left: 80px;
  top: 168px;
  width: 50px;
}

.price__popular-badge-img--sp {
  display: none;
}

#top_q_a {
  background: #16232f;
  padding: 40px 0 40px;
}

#top_q_a .wrap {
}

#top_q_a .section-heading {
  margin-bottom: 30px;
}
#top_q_a .section-heading__title {
  margin-bottom: 7px;
}

#top_q_a dl {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #404b54;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

#top_q_a dt {
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  padding: 15px 28px 11px 39px;
  position: relative;
  cursor: pointer;
}

#top_q_a dt::before {
  content: "Q.";
  position: absolute;
  top: 12px;
  left: 10px;
  color: #fff;
  font-family: var(--font-serif-display);
  font-size: 20px;
  line-height: 1;
}

#top_q_a dt::after {
  content: "+";
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

#top_q_a dt.open::after {
  content: "-";
}

#top_q_a dd {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  padding: 0 28px 0 39px;
  position: relative;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, padding 0.35s ease;
}

#top_q_a dd::before {
  content: "A.";
  position: absolute;
  top: 13px;
  left: 13px;
  color: #fff;
  font-family: var(--font-serif-display);
  font-size: 17px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

#top_q_a dt.open + dd {
  height: auto;
  overflow: visible;
  opacity: 1;
  padding: 6px 28px 8px 39px;
}

#top_q_a dt.open + dd::before {
  opacity: 1;
}


#access {
  padding: 40px 0 40px;
  background: #fff;
}
#access .section-heading {
  margin-bottom: 35px;
}
.access__inner {
  margin: auto;
}

.access__lead {
  text-align: center;
  font-family: var(--font-serif-jp);
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.access__media {
  margin-top: 24px;
}

.access__media img,
.access__map {
  width: 100%;
}

.access__map {
  height: 280px;
}

.access__text {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

.site-footer {
  background: var(--color-navy-deep);
  color: var(--color-white);
  padding: 32px 0 0;
  position: relative;
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  width: 52.3%;
}

.site-footer__sns {
  margin-top: 17px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.site-footer__sns img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.site-footer__address {
  margin-top: 25px;
  font-style: normal;
  font-size: 10px;
  line-height: 1.8;
  color: #fff;
}

.site-footer__nav {
  margin-top: 26px;
  font-size: 11px;
}
.site-footer__nav a {
  display: block;
  margin-bottom: 1em;
}

.site-footer__copy {
  margin: 10px 0 0;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #fff;
}

.page-top {
  position: fixed;
  right: 4%;
  bottom: 15px;
  width: 15%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-top.is-stopped {
  position: absolute;
  right: 4%;
  bottom: calc(100% + 15px);
}

#mv_title {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#mv_title .bg {
  width: 100%;
  height: 100%;
}
#mv_title .bg img {
  width: 100%;
  object-fit: cover;
}
#mv_title .mv_title-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mv_title .mv_title-head h1 {
  color: #fff;
  margin: 0 auto;
  font-family: var(--font-serif-display);
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 400;
  letter-spacing: 0;
}
#mv_title .mv_title-head span {
  display:block;
  color: #fff;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.05em;
  font-family: var(--font-serif-jp);
}

#contact {
  padding: 75px 0 85px;
}
#contact p.desc {
  font-size: 15px;
  line-height: 2;
  text-align: center;
  margin-bottom: 20px;
}
#contact .table_area {
  margin: auto;
  border: solid 1px #e6e6e6;
  padding: 10px;
  width: 100%;
}
#contact table {
  width: 100%;
  text-align: left;
  padding: 10px;
}
#contact th {
  background: #ecedf5;
  padding: 10px 0 10px 10px;
  vertical-align: top;
  display: block;
  width: 100%;
}
#contact th p {
  display: flex;
  align-items: center;
}
#contact th p .his {
  color: #fff;
  font-size: 10px;
  background: #f68827;
  border-radius: 3px;
  padding: 3px 5px;
  margin-right: 10px;
}
#contact th p .nini {
  color: #fff;
  font-size: 10px;
  background: #bdbdbd;
  border-radius: 3px;
  padding: 3px 5px;
  margin-right: 10px;
}
#contact td {
  padding: 20px;
  display: block;
  width: 100%;
}

#contact td input[type="text"],
#contact td input[type="email"],
#contact td input[type="tel"],
#contact td textarea {
  width: 100%;
  border: solid 1px #e5e5e5;
  padding: 15px;
}
#contact td select {
  border: solid 1px #e5e5e5;
  padding: 15px;
}
#contact td .doui p {
  font-size: 12px;
  line-height: 2;
  font-weight: 600;
}
#contact td .doui p a {
  color:#8b61b0;
}
#contact .formbt input[type="submit"] {
  background: var(--color-navy-deep);
  color: #fff;
  font-size: 16px;
  width: 55%;
  height: 50px;
  margin-top: 35px;
}

#news_list {
  padding: 55px 0 80px;
}
#news_list .list_area {
  margin: auto;
}
#news_list .list_area li {
  padding: 20px 0;
  border-bottom: solid 1px #e2e2e2;
  display: flex;
  flex-wrap: wrap;
}
#news_list .list_area li .date {
  font-family: var(--font-serif-display);
  width: 80px;
  display: inline-block;
  text-align: left;
}
#news_list .list_area li .cat {
  background: var(--color-navy-deep);
  width: 90px;
  height: 24px;
  margin: -3px 20px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;

}
#news_list .list_area li .cat span {
  color: #fff;
  font-size: 12px;
}
#news_list .list_area li .ttl {
  font-size: 14px;
  text-align: left;
  width: 100%;
  margin-top: 1em;
}

.wp-pagenavi {
  margin-top: 25px;
}
.wp-pagenavi .pages {
  display:none;
}
.wp-pagenavi span {
  color: #afafaf;
  margin-left: 12px;
  padding-left: 12px;
  border-left: solid 1px #afafaf;
}
.wp-pagenavi span:nth-child(2) {
  margin-left: 0;
  padding-left: 0;
  border-left: none;;
}
.wp-pagenavi span.current {
  color: #000;
  font-weight: bold;
}

#news_detail {
  padding: 50px 0 90px;
  text-align: left;
}
#news_detail .wrap {
}
#news_detail h1 {
  font-size: 18px;
  padding-bottom: 16px;
  margin-bottom: 1em;
  border-bottom: solid 1px #000;
}
#news_detail h2 {
  font-size: 18px;
  padding-bottom: 16px;
  margin-bottom: 1em;
  position: relative;
}
#news_detail h2:after {
  content: '';
  width:65px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
#news_detail h3 {
  font-size: 18px;
  padding-left: 20px;
  margin-bottom: 1em;
  position: relative;
}
#news_detail h3:after {
  content: '';
  width: 5px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}
#news_detail h4 {
  font-size: 14px;
  margin-bottom: 1em;
}
#news_detail h5 {
  font-size: 14px;
  margin-bottom: 1em;
}
#news_detail ul {
  padding: 1em 0;
}
#news_detail li {
  list-style: disc;
  list-style-position: inside;
  line-height: 2;
}
#news_detail a {
  color: #065750;
  text-decoration: underline;
}
#news_detail .cat {
  background: var(--color-navy-deep);
  width: auto;
  height: auto;
  padding: 5px 10px;
  margin: 0 0 30px 0;
  display: inline-block;

}
#news_detail .cat span {
  color: #fff;
  font-size: 11px;
}
#news_detail .wp-block-media-text {
  margin-bottom: 30px;
}
#news_detail .wp-block-media-text__content {
  margin-top: 1em;
}
#news_detail .btns {
  padding-top: 35px;
  margin-top: 30px;
  border-top: solid 1px #afafaf;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
#news_detail .btns a.backbtn {
  background: var(--color-navy-deep);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 40px;
  text-decoration: none;
}
#news_detail .btns .navbtn {
  font-family: var(--font-serif-display);
  color: var(--color-navy-deep);
  font-size: 11px;
  text-decoration: none;
  position: relative;
  display:flex;
  align-items: center;
  width: 20%;
}
#news_detail .btns .navbtn .arrow {
  z-index: 1;
  flex: 0 0 18px;
  width: 6px;
  height: 6px;
}
#news_detail .btns .navbtn .arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  transform: translate(-50%, -50%);
}
#news_detail .btns .navbtn-prev {
  justify-content: flex-start;
}
#news_detail .btns .navbtn-prev .arrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  border-left: none;
  border-right: 7px solid currentColor;
}
#news_detail .btns .navbtn-next {
  justify-content: flex-end;
}
#news_detail .btns .navbtn-next .arrow::before {
  position: absolute;
  top: 50%;
  right: 0;
}
#news_detail .btns .navbtn.is-disabled {
}
