﻿@charset "utf-8";
body {
  margin: 0;
  color: var(--color-body);
  font-size: 1.4em;
  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: 1280px;
  padding: 0 40px;
  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: clamp(36px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
}
.section-heading__sub {
  margin: 0;
  font-size: 18px;
  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;
  min-height: 80px;
  padding-left: 0;
}

.site-header__logo {
  width: 179px;
  height:80px;
  display: inline-block;
  margin-left: 28px;
  position: relative;
  padding-top: 25px;
}

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

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

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.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__nav a {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .site-header__nav .site-header__sns a .site-header__sns-icon {
  background: transparent;
}

.site-header .site-header__nav a.nav1 {
  display:none;
}
.site-header .site-header__logo span {
  display:none;
}
.site-header--top .site-header__logo span {
  width: 200px;
  font-size: 12px;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  color: #fff;
}
.site-header--top .site-header__nav a.nav1 {
  background: transparent;
  color: var(--color-white);
  padding: 0 30px 0 0;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}

.site-header .site-header__nav a.nav2 {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0 30px;
  font-size: 16px;
  font-weight: 600;
}

.site-header .site-header__nav a.nav3 {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-navy-deep);
  padding: 0 30px;
  font-size: 16px;
  font-weight: 600;
}

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

.menu-button {
  display: block;
  width: 80px;
  height: 80px;
  border: 0;
  background: var(--color-navy);
  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: min(50%, 700px);
  height: 100%;
  background: #fff;
  padding: 34px 42px 36px;
  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: 40px;
}
.site-menu__logo img {
  display: inline-block;
  width: 180px;
}

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

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

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

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

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

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

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

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

.site-menu__subnav {
  max-width: 450px;
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 25px;
}

.site-menu__subnav a {
  font-size: 14px;
  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: 1000px;
  background: #fff;
  padding: 80px 90px 100px;
}

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

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

.membership-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

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

.membership-card a {
  min-height: 44px;
  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: 20px;
  font-weight: 700;
  padding: 25px 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--top .site-header__logo-image--light,
.site-header--top .site-header__sns-icon--light {
  display: block;
}
.site-header--top .site-header__nav .site-header__sns a .site-header__sns-icon {
  background: transparent;
}

.site-header .site-header__nav a.nav1 {
  background: transparent;
  color: var(--color-white);
  padding: 0 30px 0 0;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 600;
}

.site-header .site-header__nav a.nav2 {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0 30px;
  font-size: 16px;
  font-weight: 600;
}

.site-header .site-header__nav a.nav3 {
  background: #fff;
  color: var(--color-navy-deep);
  padding: 0 30px;
  font-size: 16px;
  font-weight: 600;
}

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

.site-header.is-fixed {
  width: 100%;
  position: fixed;
  background: transparent;
}
.site-header.is-fixed .site-header__logo {
  display: none;
}
.site-header.is-fixed .site-header__logo-image--light,
.site-header.is-fixed .site-header__sns-icon--light,
.site-header.is-fixed .site-header__logo-image--dark,
.site-header .site-header__sns-icon--dark {
  display: none;
}
.site-header.is-fixed .site-header__nav a.nav1 {
  display: none;
}

#mv {
  position: relative;
}

.mv__slider {
  position: relative;
  min-height: 780px;
  overflow: hidden;
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

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

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

.mv__dots {
  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 {
  background:url(../img/mv_text_bg.png)no-repeat top right;
  height: 100%;
  width: calc(50% + 73px);
  position: absolute;
  top: 0;
  right: calc(50% - 73px);
}
.mv__overlay_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv__copy-image {
  width: 663px;
  position: absolute;
  bottom: -15px;
  right: 10px;
  z-index: 3;
  /* transform:translateY(-50%); */
}
.mv__copy-panel {
  background:url(../img/mv_text_bg_bottom.png)no-repeat top right / 1390px;
  width: calc(50% + 73px);
  height: 159px;
  position: absolute;
  bottom: -63px;
  right: calc(50% - 73px);
}
.mv__trackman {
  position: absolute;
  left: calc(50% + 300px);
  bottom: -109px;
  z-index: 3;
  width: 364px;
}

#news {
  padding: 130px 0 50px;
}
#news .message__more.sp {
  display:none!important;
}
#news .wrap {
  display: flex;
  padding: 0 0 0 310px;
}
.mv__news-head {
  text-align: left;
  padding-right: 35px;
}
#news .section-heading__title {
  font-size: 4rem;
  letter-spacing: 0;
  line-height: 1;
}
.mv__news-more {
   font-family: var(--font-serif-display);
   margin-top: 12px;
}
.mv__news-more:hover {
  opacity: 0.7;
}
.mv__news-list {
  text-align: left;
  border-left: solid 1px #b9c2d3;
  padding-left: 35px;
}
.mv__news-list li {
  margin: 0 0 14px;
}
.mv__news-list li time {
  font-family: var(--font-serif-display);
  width: 115px;
  display:inline-block;
}
.mv__news-list li a:hover {
  text-decoration: underline;
}



.cv {
  padding: 0 0 80px;
}
.cv.cv_area2 {
  padding: 80px 0 80px;
}
.cv__box {
  background: var(--color-gray);
  max-width: 890px;
  margin: auto;
  padding: 42px 20px 50px;
}
.cv__header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 37px);
  font-family: var(--font-serif-jp);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.cv__notice {
  margin: 15px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cv__notice span {
  font-size: 18px;
  font-weight: 600;
}
.cv__offer {
  text-align: center;
}
.cv__offer img {
  margin: auto;
}
.cv__actions {
  text-align: center;
  margin-top: 30px;
}
.cv__button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 37px;
  min-width: min(100%, 520px);
  padding: 22px 30px 22px 34px;
  border: 1px solid var(--color-teal-dark);
  background: var(--color-teal-dark);
  color: var(--color-white);
  font-size: clamp(16px, 2vw, 22px);
  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_pc.webp) no-repeat center center / cover;
  position: relative;
  color: var(--color-white);
  padding: 90px 0 70px;
  text-align: center;
}

.concept__tagline {
  font-family: var(--font-serif-jp);
  margin: 50px auto 40px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 52px;
  letter-spacing: 0.1em;
}

.concept__text {
  font-size: 15px;
  line-height: 36px;
  letter-spacing: 0.1em;
}

.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 350px;
}

.loop-slider img {
  width: 100%;
  aspect-ratio: 1 / 0.88;
  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 / 130px;
  padding: 0 0 140px;
}

#message .wrap {
  background: #fff;
  max-width: 1110px;
  transform: translateY(-40px);
  padding: 72px 0 100px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.1);
}
#message .section-heading {
  margin: 0 auto 70px;
}
.message__grid {
  display: flex;
  justify-content: space-between;
}
.message__text {
  text-align: left;
  width: 580px;
  padding-left: 100px;
}
.message__text h3 {
  margin: 0 0 45px;
  color: var(--color-navy-deep);
  font-family: var(--font-serif-jp);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}
.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: 42px;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 480px;
  max-width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(13, 34, 61, 0.28);
  color: var(--color-navy-deep);
  font-family: var(--font-serif-display);
  font-size: 20px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.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: 460px;
}

.message__figure img:first-child {
  width: 100%;
}

.message__name {
  margin: 12px auto 0;
  width: 220px;
}

#concerns {
  padding: 0 0 80px;

}
.concerns__board {
  position: relative;
  background: var(--color-teal-dark);
  color: #fff;
  max-width: 980px;
  margin: 0 auto;
  padding: 75px 50px 70px;
  transform: translateY(-115px);
}
.concerns__board::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid var(--color-teal-dark);
  transform: translateX(-50%);
}
.concerns__title {
  font-family: var(--font-serif-jp);
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 75px;
}
.concerns__lists {
  display: flex;
}
.concerns__list {
  width: 50%;
  text-align: left;
}
.concerns__list li {
  font-size: 18px;
  padding-left: 55px;
  margin-bottom: 22px;
  letter-spacing: 0.12em;
  position: relative;
}
.concerns__list li:before {
  content: '';
  background: url(../img/top_concerns_li_check.png) no-repeat center center / 100%;
  width: 17px;
  height: 18px;
  position: absolute;
  top: 3px;
  left: 24px;
}
.concerns__message {
font-family: var(--font-serif-jp);
font-size: clamp(28px, 4vw, 37px);
line-height: 67px;
font-weight: 400;
margin-top: -45px;
}

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

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

.points__title-img {
  max-width: 307px;
  margin: 0 auto;
}

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

.point-card {
  background: #fff;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
  padding: 0 100px;
  min-height: 570px;
}

.point-card--reverse {
  flex-direction: row-reverse;
}

.point-card--reverse .point-card__image {
}

.point-card__image {
  position: relative;
  width: 50%;
  max-width: 500px;
  max-height: 550px;
  transform: translateY(-30px);
}

.point-image-slider {
  background: #fff;
}

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

.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 {
  width: 435px;
  padding: 64px 0 75px;
  text-align: left;
}

.point-card__ttl {
  max-width: 161px;
  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: 28px;
  font-weight: 600;
  line-height: 48px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  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: 30px 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.point-card__logos img {
  max-width: 210px;
}

.coach-grid {
  background: #fff;
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 30px 100px 80px;
  text-align: left;
}
.coach-grid__title {
  color: var(--color-navy-deep);
  font-family: var(--font-serif-display);
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 auto 12px;
}
.coach-cards {
  background: #686a6e;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
.coach-card {
  background: #4f5256;
  width: calc(100% / 3 - 1px);
}
.coach-card:nth-child(even) {
  background: #3f4245;
}
.coach-card img {
  width: 100%;
  object-fit: cover;
}
.coach-card_text {
  color: #fff;
  padding: 35px 40px 40px;
}
.coach-card_text h4 {
  font-family: var(--font-serif-jp);
  font-size: 24px;
  margin-bottom: 4px;
}
.coach-card_text .h4_sub {
  color: #e5e5e5;
  font-family: var(--font-serif-jp);
  font-size: 11px;
}
.coach-card_text .carrier {
  font-size: 13px;
  line-height: 21px;
  padding-bottom: 15px;
  margin: 20px 0 30px;
  position: relative;
}
.coach-card_text .carrier:after {
  content: '';
  display: inline-block;
  width: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 1px #fff;
}
.coach-card_text .catch {
  font-family: var(--font-serif-jp);
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.05em;
  min-height: 80px;
  margin-bottom: 10px;
}
.coach-card_text .keireki {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.coach-card_text .keireki_text {
  line-height: 23px;
}

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

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

.rooms__list {
  max-width: 760px;
  margin: auto;
}

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

.room-card__side {
  position: absolute;
  top: 0;
  left: -53px;
  max-width: 28px;
}

.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: 48px;
  height: 48px;
  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: 8px solid transparent;
  border-bottom: 8px 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: 130px;
  margin: -45px 30px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.room-card__label {
  width: calc(100% - 390px);
  text-align: center;
}
.room-card__label .label1 {
  max-width: 209px;
  margin: auto;
}
.room-card__label .label2 {
  max-width: 115px;
  margin: auto;
}
.room-card__label .label3 {
  max-width: 201px;
  margin: auto;
}

.room-card__body p {
  width: 390px;
  line-height: 24px;
  letter-spacing: 0.04em;
}

.room-card__description {
  margin-top: 25px;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

#price {
  background: url(../img/top_price_bg.webp) repeat top center / 130px;
  padding: 110px 0 110px;
  overflow: hidden;
  position: relative;
}
#price .section-heading {
    margin: 0 auto 47px;
}
.price__inner {
  max-width: 960px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.price__meta {
  margin: 0 0 40px;
  font-size: 17px;
  color: #fff;
}
.price__meta .serif22 {
  font-family: var(--font-serif-jp);
  font-size: 22px;
}
.price__meta .serif28 {
  font-family: var(--font-serif-jp);
  font-size: 28px;
}
.price__note {
  color: #fff;
  margin-top: 18px;
  font-size: 14px;
  text-align: right;
}
.price__table-wrap {
  position: relative;
  overflow: visible!important;
}

.price__table {
  width: 100%;
  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: 26px 14px;
}

.price__table tbody th {
  color: var(--color-navy-deep);
  font-size: 15px;
  text-align: left;
  padding: 21px 10px 20px 30px;
}

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

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

.price__popular-badge {
  position: absolute;
  left: 101px;
  top: 260px;
  width: 85px;
}

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

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

#top_q_a .wrap {
  max-width: 1280px;
}

#top_q_a .section-heading {
  margin-bottom: 70px;
}
#top_q_a .section-heading__title {
  margin-bottom: 15px;
}

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

#top_q_a dt {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  padding: 23px 56px 22px 78px;
  position: relative;
  cursor: pointer;
}

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

#top_q_a dt::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 1.8rem;
  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: 12px 56px16px 78px;
  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: 3px;
  left: 26px;
  color: #fff;
  font-family: var(--font-serif-display);
  font-size: 30px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

#top_q_a dt.open + dd {
  height: auto;
  overflow: visible;
  opacity: 1;
  padding: 0 56px 22px 78px;
}

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


#access {
  padding: 110px 0 120px;
  background: #fff;
}
#access .section-heading {
  margin-bottom: 45px;
}
.access__inner {
  max-width: 1000px;
  margin: auto;
}

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

.access__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 24px;
}

.access__media img,
.access__map {
  width: 100%;
  min-height: 420px;
}

.access__media img {
  object-fit: cover;
}

.access__map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 64px 0 28px;
  position: relative;
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  width: 290px;
}

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

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

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

.site-footer__nav {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 16px;
}
.site-footer__nav a {
  margin-right: 1em;
  padding-right: 1em;
  display: inline-block;
  line-height: 1;
  border-right: solid 1px #fff;
}
.site-footer__nav a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.site-footer__copy {
  margin: 30px 0 0;
  font-size: 11px;
  color: #fff;
}

.page-top {
  position: fixed;
  right: 35px;
  bottom: 30px;
  width: 65px;
  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: 35px;
  bottom: calc(100% + 40px);
}

@media (max-width: 1024px) {
  .site-header__nav a {
    padding-inline: 18px;
  }

  .mv__copy-image {
    width: min(62vw, 680px);
    margin-left: 32px;
  }

  .mv__news {
    transform: translate(-20%, 50%);
  }

  .cv__offer {
    grid-template-columns: 92px 1fr 92px 1.1fr;
    gap: 18px;
  }

  .cv__bubble,
  .cv__plus {
    width: 92px;
    height: 92px;
    font-size: 18px;
  }

  .message__inner,
  .point-card,
  .point-card--reverse,
  .access__media {
    grid-template-columns: 1fr;
  }

  .point-card-grid {
    grid-template-columns: 1fr;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card__side {
    writing-mode: horizontal-tb;
    justify-content: flex-start;
    padding: 0 0 10px;
  }
}

#mv_title {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
}
#mv_title .bg {
  width: 100%;
  height: 100%;
}
#mv_title .bg img {
  width: 100%;
  height: 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(36px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
}
#mv_title .mv_title-head span {
  display:block;
  color: #fff;
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-family: var(--font-serif-jp);
}

#contact {
  padding: 110px 0 150px;
}
#contact p.desc {
  font-size: 15px;
  line-height: 2;
  text-align: center;
  margin-bottom: 40px;
}
#contact .table_area {
  max-width: 800px;
  margin: auto;

}
#contact table {
  width: 100%;
  border: solid 1px #e6e6e6;
  text-align: left;
}
#contact th {
  background: #ecedf5;
  padding: 20px 0 20px 20px;
  border: solid 1px #e7e8ea;
  vertical-align: top;
  min-width: 240px;
}
#contact th p {
  display: flex;
  align-items: center;
}
#contact th p .his {
  color: #fff;
  font-size: 12px;
  background: #f68827;
  border-radius: 3px;
  padding: 3px 5px;
  margin-right: 10px;
}
#contact th p .nini {
  color: #fff;
  font-size: 12px;
  background: #bdbdbd;
  border-radius: 3px;
  padding: 3px 5px;
  margin-right: 10px;
}
#contact td {
  padding: 20px;
  border: solid 1px #e7e8ea;
}

#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: 16px;
  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: 20px;
  width: 280px;
  height: 75px;
  margin-top: 70px;
  cursor: pointer;
}
#contact .formbt input[type="submit"]:disabled{
  cursor: not-allowed;
}

#news_list {
  padding: 110px 0 200px;
}
#news_list .list_area {
  width: 900px;
  margin: auto;
}
#news_list .list_area li {
  padding: 20px 0;
  border-bottom: solid 1px #e2e2e2;
  display: flex;
}
#news_list .list_area li .date {
  font-family: var(--font-serif-display);
  width: 100px;
  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: calc(100% - 210px);
}

.wp-pagenavi {
  margin-top: 50px;
}
.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: 100px 0 180px;
  text-align: left;
}
#news_detail .wrap {
  max-width: 980px;
}
#news_detail h1 {
  font-size: 26px;
  padding-bottom: 16px;
  margin-bottom: 1em;
  border-bottom: solid 1px #000;
}
#news_detail h2 {
  font-size: 24px;
  padding-bottom: 16px;
  margin-bottom: 1em;
  position: relative;
}
#news_detail h2:after {
  content: '';
  width:110px;
  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: 15px;
  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: 90px;
  height: 24px;
  margin: 0 0 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;

}
#news_detail .cat span {
  color: #fff;
  font-size: 12px;
}
#news_detail .wp-block-media-text {
  margin-bottom: 60px;
}
#news_detail .btns {
  padding-top: 70px;
  margin-top: 60px;
  border-top: solid 1px #afafaf;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
#news_detail  .btns a.backbtn {
  background: var(--color-navy-deep);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 60px;
  text-decoration: none;
}
#news_detail .btns .navbtn {
  font-family: var(--font-serif-display);
  color: var(--color-navy-deep);
  font-size: 16px;
  text-decoration: none;
  position: relative;
  display:flex;
  justify-content: space-between;
  align-items: center;
  width: 76px;
}
#news_detail .btns .navbtn .arrow {
  z-index: 1;
  flex: 0 0 18px;
  width: 10px;
  height: 10px;
}
#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 {
}
#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 {
}
#news_detail .btns .navbtn-next .arrow::before {
  position: absolute;
  top: 50%;
  right: 0;
}
#news_detail .btns .navbtn.is-disabled {
}
