*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  display: block; }

a {
  text-decoration: none;
  color: inherit; }

ul, ol {
  list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700; }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden; }

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; }

.section-en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 64px;
  color: #fff;
  line-height: 1; }
  @media (max-width: 768px) {
    .section-en {
      font-size: 40px; } }

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, rgba(41, 105, 70, 0.85), rgba(155, 192, 89, 0.85));
  margin: 16px auto 0; }

.br-sp {
  display: none; }
  @media (max-width: 768px) {
    .br-sp {
      display: inline; } }

.section-heading {
  font-size: 32px;
  text-align: center;
  color: #1a1a1a;
  line-height: 1.5; }
  @media (max-width: 768px) {
    .section-heading {
      font-size: 24px; } }

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to right, rgba(41, 105, 70, 0.85), rgba(155, 192, 89, 0.85));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  width: 263px;
  height: 56px;
  transition: opacity 0.3s; }
  .btn-gradient::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    flex-shrink: 0; }
  .btn-gradient:hover {
    opacity: 0.85; }
  @media (max-width: 768px) {
    .btn-gradient {
      width: 100%;
      max-width: 263px; } }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  color: #2d6a4f;
  font-size: 24px;
  font-weight: 700;
  width: 347px;
  height: 78px;
  transition: background 0.3s; }
  .btn-white::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #2d6a4f;
    border-bottom: 2px solid #2d6a4f;
    transform: rotate(-45deg);
    flex-shrink: 0; }
  .btn-white:hover {
    background: rgba(255, 255, 255, 0.9); }
  @media (max-width: 768px) {
    .btn-white {
      font-size: 18px;
      width: 280px;
      height: 60px; } }

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 20px;
  width: 120px;
  height: 50px;
  transition: background 0.3s;
  margin-top: 24px;
  letter-spacing: 2px; }
  .btn-more::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    flex-shrink: 0; }
  .btn-more:hover {
    background: rgba(255, 255, 255, 0.15); }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06); }

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 30px; }

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto; }
  .header__logo img {
    height: 58px;
    width: auto; }

@media (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 60px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s; }
    .is-open .header__nav {
      opacity: 1;
      pointer-events: auto; } }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px; }
  @media (max-width: 1024px) {
    .header__nav-list {
      flex-direction: column;
      gap: 24px; } }
  .header__nav-list a {
    font-size: 14px;
    color: #333;
    transition: color 0.3s; }
    .header__nav-list a:hover {
      color: #2d6a4f; }
    @media (max-width: 1024px) {
      .header__nav-list a {
        font-size: 18px; } }

.header__cta {
  display: inline-block;
  background: linear-gradient(to right, rgba(41, 105, 70, 0.85), rgba(155, 192, 89, 0.85));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 24px;
  margin-left: 32px;
  border-radius: 0;
  transition: opacity 0.3s; }
  .header__cta:hover {
    opacity: 0.85; }
  @media (max-width: 1024px) {
    .header__cta {
      display: none; } }

.header__hamburger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  margin-left: 16px; }
  @media (max-width: 1024px) {
    .header__hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 6px; } }
  .header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none; }
  .is-open .header__hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg); }
  .is-open .header__hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0); }
  .is-open .header__hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); }

.footer {
  background: #1A1A1A;
  color: #888;
  padding-top: 60px; }

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  padding-bottom: 50px; }
  @media (max-width: 768px) {
    .footer__inner {
      flex-direction: column;
      gap: 40px; } }

.footer__info {
  flex-shrink: 0; }

.footer__logo {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px; }

.footer__address,
.footer__tel,
.footer__hours {
  font-size: 13px;
  line-height: 2; }

.footer__nav {
  display: flex;
  gap: 60px;
  margin-left: auto; }
  @media (max-width: 768px) {
    .footer__nav {
      margin-left: 0;
      gap: 40px; } }

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px; }
  .footer__nav-col a {
    font-size: 13px;
    color: #aaa;
    transition: color 0.3s; }
    .footer__nav-col a:hover {
      color: #fff; }

.footer__sns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: auto; }
  @media (max-width: 768px) {
    .footer__sns {
      flex-direction: row;
      margin-left: 0; } }

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #888;
  border-radius: 50%;
  font-size: 18px;
  color: #888;
  transition: border-color 0.3s, color 0.3s; }
  .footer__sns-link:hover {
    border-color: #fff;
    color: #fff; }

.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 20px 0; }
  .footer__copyright p {
    font-size: 11px;
    color: #666; }

.kv {
  position: relative;
  margin-top: 80px;
  aspect-ratio: 1440 / 806;
  overflow: hidden; }
  @media (max-width: 768px) {
    .kv {
      aspect-ratio: 16 / 10; } }

.kv__media {
  position: absolute;
  inset: 0; }
  .kv__media img, .kv__media video {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.kv__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3); }

.kv__copy {
  position: absolute;
  bottom: 53%;
  left: 5%; }
  @media (max-width: 768px) {
    .kv__copy {
      bottom: 35%; } }

.kv__text {
  display: inline;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  line-height: 2.2;
  background: linear-gradient(to right, rgba(41, 105, 70, 0.85), rgba(155, 192, 89, 0.85));
  padding: 12px 28px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; }
  @media (max-width: 768px) {
    .kv__text {
      font-size: 20px;
      padding: 8px 18px; } }

.intro {
  padding: 80px 0;
  text-align: center; }
  @media (max-width: 768px) {
    .intro {
      padding: 56px 0; } }

.intro__heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.6; }
  @media (max-width: 768px) {
    .intro__heading {
      font-size: 22px; } }

.intro__lead {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2;
  color: #666; }
  @media (max-width: 768px) {
    .intro__lead {
      margin-top: 24px;
      font-size: 14px;
      line-height: 1.9;
      text-align: left; } }

.reason {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .reason {
      padding: 60px 0 80px; }
      .reason .section-heading {
        text-align: right; }
      .reason .section-line {
        margin-left: auto;
        margin-right: 0; } }

.reason__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F4F4F4;
  z-index: -1; }

.reason__label {
  position: absolute;
  top: -9px;
  left: 0;
  width: 508px;
  height: 205px;
  background: url("../img/bg_label.svg") no-repeat center/contain;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 40px;
  z-index: 1; }
  @media (max-width: 768px) {
    .reason__label {
      width: 300px;
      height: 120px;
      padding: 0 0 0 20px; }
      .reason__label .section-en {
        font-size: 36px; } }

.reason__cards {
  display: flex;
  gap: 33px;
  justify-content: center;
  margin-top: 50px;
  align-items: flex-start; }
  @media (max-width: 768px) {
    .reason__cards {
      flex-direction: column;
      gap: 24px;
      align-items: center; } }

.reason__card {
  width: 338px;
  max-width: 100%;
  background: #fff;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  flex-shrink: 0; }
  .reason__card:nth-child(1) {
    margin-top: 117px; }
    @media (max-width: 768px) {
      .reason__card:nth-child(1) {
        margin-top: 0; } }
  .reason__card:nth-child(2) {
    margin-top: 56px; }
    @media (max-width: 768px) {
      .reason__card:nth-child(2) {
        margin-top: 0; } }
  .reason__card:nth-child(3) {
    margin-top: 0; }

.reason__card-img {
  height: 226px;
  overflow: hidden; }
  .reason__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.reason__card-body {
  padding: 24px 20px 28px;
  text-align: center;
  position: relative; }

.reason__card-num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  background: linear-gradient(to bottom, #d2783c, #f4d24d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  position: relative;
  margin-top: -48px; }
  @media (max-width: 768px) {
    .reason__card-num {
      font-size: 48px;
      margin-top: -36px; } }

.reason__card-body h3 {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 8px; }
  @media (max-width: 768px) {
    .reason__card-body h3 {
      font-size: 18px; } }

.reason__card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7; }

.concern {
  padding: 80px 0 0;
  text-align: center; }
  @media (max-width: 768px) {
    .concern {
      padding: 60px 0 0; } }

.concern__lead {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0; }

.concern__pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1050px;
  margin: 40px auto 0; }
  @media (max-width: 768px) {
    .concern__pills {
      grid-template-columns: 1fr 1fr;
      gap: 12px; } }
  @media (max-width: 480px) {
    .concern__pills {
      grid-template-columns: 1fr; } }

.concern__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #f9f9f6;
  font-size: 16px;
  color: #1a1a1a; }
  @media (max-width: 768px) {
    .concern__pill {
      font-size: 14px;
      padding: 12px 16px; } }

.concern__arrow {
  margin: 32px auto;
  width: 120px;
  aspect-ratio: 190 / 52;
  background: linear-gradient(to right, #296946, #9BC059);
  clip-path: polygon(0 0, 100% 0, 50% 75%); }
  @media (max-width: 768px) {
    .concern__arrow {
      width: 80px;
      margin: 24px auto; } }

.concern__solution {
  background: #f5fff6;
  padding: 80px 0 100px;
  margin-bottom: 80px; }
  @media (max-width: 768px) {
    .concern__solution {
      padding: 60px 0 80px;
      margin-bottom: 60px; } }

.concern__solution-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px; }
  .concern__solution-logo .concern__logo-horizon {
    height: 52px;
    width: auto; }
  .concern__solution-logo .concern__logo-nara {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 2;
    margin-top: 12px;
    margin-left: 12px; }

.concern__solution-heading {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a; }
  @media (max-width: 768px) {
    .concern__solution-heading {
      font-size: 28px; } }

.service {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  margin-bottom: 80px; }
  @media (max-width: 768px) {
    .service {
      padding: 60px 0;
      margin-bottom: 60px; }
      .service .section-heading {
        text-align: right; }
      .service .section-line {
        margin-left: auto;
        margin-right: 0; } }

.service__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F4F4F4;
  z-index: -1; }

.service__label {
  position: absolute;
  top: -9px;
  left: 0;
  width: 508px;
  height: 205px;
  background: url("../img/bg_label.svg") no-repeat center/contain;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 40px;
  z-index: 1; }
  @media (max-width: 768px) {
    .service__label {
      width: 300px;
      height: 120px;
      padding: 0 0 0 20px; } }

.service__en-title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 48px;
  background: linear-gradient(to right, rgba(41, 105, 70, 0.85), rgba(155, 192, 89, 0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  margin-bottom: 4px; }
  @media (max-width: 768px) {
    .service__en-title {
      font-size: 32px;
      text-align: right; } }

.service__ja-title {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 40px; }
  @media (max-width: 768px) {
    .service__ja-title {
      font-size: 16px;
      margin-bottom: 24px;
      text-align: right; } }

.service__layout {
  display: flex;
  align-items: flex-start; }
  @media (max-width: 1024px) {
    .service__layout {
      flex-direction: column; } }

.service__text {
  flex: 1;
  padding-left: calc((100vw - 1100px) / 2);
  padding-right: 80px; }
  @media (max-width: 1024px) {
    .service__text {
      padding-left: 20px;
      padding-right: 20px; } }
  @media (max-width: 768px) {
    .service__text .btn-gradient {
      display: flex;
      margin-left: auto;
      margin-right: auto; } }

.service__item {
  margin-bottom: 28px; }
  .service__item:last-of-type {
    margin-bottom: 40px; }

.service__item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border-bottom: 1px solid #2d6a4f;
  padding-bottom: 6px;
  margin-bottom: 8px; }
  .service__item-head h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2d6a4f; }
  @media (max-width: 768px) {
    .service__item-head {
      margin-left: auto; } }

.service__dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: url("../img/dot_gradient.svg") no-repeat center/contain; }

.service__item-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7; }
  @media (max-width: 768px) {
    .service__item-desc {
      text-align: right; } }

.service__img {
  width: 39%;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 40px; }
  .service__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560 / 667; }
  @media (max-width: 1024px) {
    .service__img {
      width: 100%;
      margin-right: 0;
      margin-top: 32px;
      padding: 0 20px; }
      .service__img img {
        aspect-ratio: auto;
        height: auto;
        object-fit: initial; } }

.trainer {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .trainer {
      padding: 60px 0; } }

.trainer__label {
  position: absolute;
  top: -9px;
  right: 0;
  width: 508px;
  height: 205px;
  background: url("../img/bg_label_right.svg") no-repeat center/contain;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 40px 0 0;
  z-index: 2; }
  @media (max-width: 768px) {
    .trainer__label {
      width: 300px;
      height: 120px;
      padding: 0 20px 0 0; } }

.trainer__layout {
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: auto 1fr; }
  .trainer__layout::before {
    content: '';
    grid-column: 1 / -1;
    grid-row: 2;
    background: #2d6a4f; }
  @media (max-width: 768px) {
    .trainer__layout {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto; }
      .trainer__layout::before {
        grid-row: 3; } }

.trainer__photo {
  grid-column: 1;
  grid-row: 1 / -1;
  position: relative;
  z-index: 1; }
  .trainer__photo img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 0 0 auto; }
  @media (max-width: 768px) {
    .trainer__photo {
      grid-row: 1; }
      .trainer__photo img {
        width: 100%; } }

.trainer__info-upper {
  grid-column: 2;
  grid-row: 1;
  padding: 20px calc((100vw - 1100px) / 2) 0 40px;
  position: relative;
  z-index: 1; }
  .trainer__info-upper .section-heading {
    text-align: left;
    font-size: 24px; }
  @media (max-width: 1024px) {
    .trainer__info-upper {
      padding: 20px 20px 0 20px; } }
  @media (max-width: 768px) {
    .trainer__info-upper {
      grid-column: 1;
      grid-row: 2; } }

.trainer__info-lower {
  grid-column: 2;
  grid-row: 2;
  padding: 24px calc((100vw - 1100px) / 2) 40px 40px;
  position: relative;
  z-index: 1; }
  @media (max-width: 1024px) {
    .trainer__info-lower {
      padding: 0 20px 40px 20px; } }
  @media (max-width: 768px) {
    .trainer__info-lower {
      grid-column: 1;
      grid-row: 3;
      padding: 24px 20px; } }

.trainer__role {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  color: #2d6a4f;
  margin-top: 24px; }

.trainer__name-en {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  color: #1a1a1a; }

.trainer__name {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    .trainer__name {
      font-size: 36px; } }

.trainer__quals {
  margin-bottom: 16px; }
  .trainer__quals h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px; }
  .trainer__quals ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px; }
  .trainer__quals li {
    font-size: 18px;
    color: #111;
    background: #fff;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 6px; }
    .trainer__quals li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #2d6a4f;
      border-radius: 50%;
      flex-shrink: 0; }

.trainer__message {
  margin-top: 24px; }
  .trainer__message p {
    font-size: 18px;
    color: #fff;
    line-height: 1.8; }

.blog-sec {
  position: relative;
  padding: 120px 0 64px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .blog-sec {
      padding: 80px 0 48px; } }

.blog-sec__title {
  text-align: center;
  color: #2d6a4f;
  margin-bottom: 80px;
  position: relative;
  z-index: 2; }

.blog-sec__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 75%;
  z-index: 0;
  margin-top: 24px; }
  .blog-sec__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .blog-sec__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); }

.blog-sec__slider {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px; }
  @media (max-width: 768px) {
    .blog-sec__slider {
      flex-direction: column;
      gap: 24px; } }

.blog-sec__arrow {
  flex-shrink: 0;
  width: 23px;
  padding: 16px 0; }
  .blog-sec__arrow::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 23 / 80;
    background: #fff;
    clip-path: polygon(88.3% 1.25%, 1.4% 50%, 88.3% 98.75%, 100% 98.75%, 16% 50%, 100% 1.25%); }
  .blog-sec__arrow.is-next::before {
    transform: scaleX(-1); }
  @media (max-width: 768px) {
    .blog-sec__arrow {
      display: none; } }

.blog-sec__cards {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center; }
  @media (max-width: 768px) {
    .blog-sec__cards {
      flex-direction: column;
      gap: 24px;
      align-items: center; } }

.blog-card {
  width: 282px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column; }

.blog-card__img {
  height: 176px;
  flex-shrink: 0;
  overflow: hidden; }
  .blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.blog-card__body {
  padding: 16px; }

.blog-card__date {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 4px; }

.blog-card__title {
  font-size: 14px;
  font-weight: 500;
  color: #2d6a4f;
  line-height: 1.6;
  margin-bottom: 8px; }

.blog-card__excerpt {
  font-size: 11px;
  color: #666;
  line-height: 17px; }

.blog-card__border {
  height: 6px;
  background: linear-gradient(to bottom, #d2783c, #f4d24d);
  margin-top: auto; }

.blog-sec__more {
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 2; }

.studio {
  position: relative;
  padding: 80px 0;
  overflow: hidden; }
  @media (max-width: 768px) {
    .studio {
      padding: 60px 0; } }

.studio__border-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to bottom, #d2783c, #f4d24d); }

.studio__label {
  position: absolute;
  top: -9px;
  left: 0;
  width: 508px;
  height: 205px;
  background: url("../img/bg_label.svg") no-repeat center/contain;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 40px;
  z-index: 1; }
  @media (max-width: 768px) {
    .studio__label {
      width: 300px;
      height: 120px;
      padding: 0 0 0 20px; } }

.studio__content {
  display: flex;
  gap: 40px; }
  @media (max-width: 768px) {
    .studio__content {
      flex-direction: column; } }

.studio__photos {
  flex: 1; }

.studio__main {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 4px; }
  .studio__main img {
    width: 100%;
    aspect-ratio: 621 / 388;
    object-fit: cover; }

.studio__sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px; }
  .studio__sub img {
    width: 100%;
    aspect-ratio: 198 / 124;
    object-fit: cover; }

.studio__thumb {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s; }
  .studio__thumb.is-active {
    opacity: 1;
    outline: 3px solid #2d6a4f;
    outline-offset: -3px; }
  .studio__thumb:hover {
    opacity: 1; }

.studio__map-area {
  width: 45%;
  flex-shrink: 0; }
  @media (max-width: 768px) {
    .studio__map-area {
      width: 100%; } }

.studio__address {
  font-size: 16px;
  margin-bottom: 16px; }

.studio__map {
  background: #e8e8e8;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  .studio__map h3 {
    font-size: 24px;
    color: #1a1a1a;
    text-align: center; }
  .studio__map iframe {
    width: 100%;
    height: 100%; }

.trial {
  position: relative;
  padding: 80px 0 100px;
  text-align: center;
  color: #fff;
  overflow: hidden; }
  @media (max-width: 768px) {
    .trial {
      padding: 60px 0 80px; } }

.trial__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(41, 105, 70, 0.85), rgba(155, 192, 89, 0.85));
  z-index: -1; }

.trial__en {
  margin-bottom: 16px; }

.trial__heading {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.5; }
  @media (max-width: 768px) {
    .trial__heading {
      font-size: 22px; } }

.trial__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 40px; }

.trial__yen {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 24px; }

.trial__amount {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 48px; }
  @media (max-width: 768px) {
    .trial__amount {
      font-size: 36px; } }

.trial__tilde {
  font-size: 28px;
  font-weight: 700; }

.page-kv {
  position: relative;
  height: 320px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .page-kv {
      height: 200px; } }
  .page-kv .page-kv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .page-kv .page-kv__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .page-kv .page-kv__bg::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3); }
  .page-kv .page-kv__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; }
  .page-kv .page-kv__title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: #2d6a4f;
    padding: 12px 48px; }
    @media (max-width: 768px) {
      .page-kv .page-kv__title {
        font-size: 20px;
        padding: 10px 32px; } }

.about-mission {
  position: relative;
  overflow: hidden;
  margin: 80px 0; }
  .about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 57%;
    height: 100%;
    background: #f4f4f4; }
    @media (max-width: 768px) {
      .about-mission::before {
        display: none; } }
  .about-mission > .inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: auto;
    padding: 120px 20px; }
    @media (max-width: 768px) {
      .about-mission > .inner {
        padding: 60px 20px; } }
  .about-mission .about-mission__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 120px; }
    @media (max-width: 768px) {
      .about-mission .about-mission__content {
        flex-direction: column;
        gap: 30px; } }
  .about-mission .about-mission__img {
    flex: 0 0 55%; }
    .about-mission .about-mission__img img {
      width: 100%;
      height: auto;
      display: block; }
    @media (max-width: 768px) {
      .about-mission .about-mission__img {
        width: 100%; } }
  .about-mission .about-mission__text {
    flex: 1; }
  .about-mission .about-mission__heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a; }
    @media (max-width: 768px) {
      .about-mission .about-mission__heading {
        font-size: 24px; } }
  .about-mission .about-mission__desc {
    font-size: 16px;
    line-height: 1.75;
    color: #666;
    margin-top: 20px; }
  .about-mission .about-mission__vertical {
    position: absolute;
    left: 52%;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: "Oswald", sans-serif;
    font-size: 96px;
    font-weight: 500;
    color: #e3e3e3;
    letter-spacing: 0.05em;
    pointer-events: none; }
    @media (max-width: 768px) {
      .about-mission .about-mission__vertical {
        font-size: 64px;
        left: auto;
        right: -10px; } }

.about-vision {
  position: relative;
  overflow: hidden; }
  .about-vision .about-vision__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 57%;
    height: 100%;
    background: #f4f4f4; }
    @media (max-width: 768px) {
      .about-vision .about-vision__bg {
        width: 100%; } }
  .about-vision > .inner {
    position: relative;
    max-width: 1100px;
    margin: auto;
    padding: 120px 20px; }
    @media (max-width: 768px) {
      .about-vision > .inner {
        padding: 60px 20px; } }
  .about-vision .about-vision__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px; }
    @media (max-width: 768px) {
      .about-vision .about-vision__content {
        flex-direction: column;
        gap: 30px; } }
  .about-vision .about-vision__text {
    flex: 1; }
  .about-vision .about-vision__heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a; }
    @media (max-width: 768px) {
      .about-vision .about-vision__heading {
        font-size: 24px; } }
  .about-vision .about-vision__desc {
    font-size: 16px;
    line-height: 1.75;
    color: #666;
    margin-top: 24px; }
  .about-vision .about-vision__img {
    flex: 0 0 53%; }
    @media (max-width: 768px) {
      .about-vision .about-vision__img {
        width: 100%; } }
    .about-vision .about-vision__img img {
      width: 100%;
      height: auto;
      display: block; }
  .about-vision .about-vision__vertical {
    position: absolute;
    left: 34%;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: "Oswald", sans-serif;
    font-size: 96px;
    font-weight: 500;
    color: #e3e3e3;
    letter-spacing: 0.05em;
    pointer-events: none; }
    @media (max-width: 768px) {
      .about-vision .about-vision__vertical {
        font-size: 64px;
        left: auto;
        right: -10px; } }

.about-values > .inner {
  max-width: 1100px;
  margin: auto;
  padding: 120px 20px 0; }
  @media (max-width: 768px) {
    .about-values > .inner {
      padding: 60px 20px 0; } }
.about-values .about-values__en {
  font-family: "Oswald", sans-serif;
  font-size: 96px;
  font-weight: 500;
  color: #e3e3e3;
  text-align: center;
  line-height: 1; }
  @media (max-width: 768px) {
    .about-values .about-values__en {
      font-size: 48px; } }
.about-values .about-values__lead {
  font-size: 18px;
  text-align: center;
  margin-top: 16px;
  color: #1a1a1a; }
  @media (max-width: 768px) {
    .about-values .about-values__lead {
      font-size: 15px; } }
.about-values .about-values__list {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0 120px;
  counter-reset: values; }
  @media (max-width: 768px) {
    .about-values .about-values__list {
      padding: 40px 0 60px; } }
.about-values .about-values__item {
  counter-increment: values;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateX(-30px) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .about-values .about-values__item.is-visible {
    opacity: 1;
    transform: none; }
  @media (max-width: 768px) {
    .about-values .about-values__item {
      flex-direction: column;
      margin-bottom: 60px;
      transform: translateY(30px); }
      .about-values .about-values__item.is-visible {
        transform: none; } }
  .about-values .about-values__item--reverse {
    flex-direction: row-reverse;
    transform: translateX(30px) translateY(20px); }
    @media (max-width: 768px) {
      .about-values .about-values__item--reverse {
        flex-direction: column;
        transform: translateY(30px); } }
    .about-values .about-values__item--reverse .about-values__item-img::after {
      bottom: auto;
      top: -20px;
      right: auto;
      left: -10px; }
      @media (max-width: 768px) {
        .about-values .about-values__item--reverse .about-values__item-img::after {
          top: -12px;
          left: 10px; } }
    .about-values .about-values__item--reverse .about-values__item-text {
      padding: 20px 6% 20px 22%; }
      @media (max-width: 768px) {
        .about-values .about-values__item--reverse .about-values__item-text {
          padding: 20px 20px; } }
.about-values .about-values__item-img {
  flex: 0 0 40%;
  position: relative; }
  .about-values .about-values__item-img img {
    width: 100%;
    height: auto;
    display: block; }
  @media (max-width: 768px) {
    .about-values .about-values__item-img {
      width: 100%; } }
.about-values .about-values__item-img::after {
  content: counter(values,decimal-leading-zero);
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: "Oswald", sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  color: #2d6a4f; }
  @media (max-width: 768px) {
    .about-values .about-values__item-img::after {
      font-size: 60px;
      bottom: -12px;
      right: 10px; } }
.about-values .about-values__item-text {
  flex: 1;
  padding: 20px 12% 20px 6%; }
  @media (max-width: 768px) {
    .about-values .about-values__item-text {
      padding: 20px 20px; } }
  .about-values .about-values__item-text h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 16px; }
    @media (max-width: 768px) {
      .about-values .about-values__item-text h3 {
        font-size: 22px; } }
  .about-values .about-values__item-text p {
    font-size: 16px;
    line-height: 2;
    color: #666; }

.page-template-page-price .page-kv {
  margin-bottom: 60px; }
  .page-template-page-price .page-kv .page-kv__title {
    background: linear-gradient(to right, #296946, #9BC059); }

.service-spot {
  padding-bottom: 100px; }
  .service-spot__hero {
    position: relative;
    overflow: hidden; }
  .service-spot__photos {
    display: flex;
    height: 500px; }
    .service-spot__photos::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 500px;
      background: rgba(0, 0, 0, 0.35);
      z-index: 1; }
  .service-spot__photo {
    flex: 1;
    overflow: hidden; }
    .service-spot__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .service-spot__info {
    position: absolute;
    top: 80px;
    right: 40px;
    width: 65%;
    max-width: 940px;
    background: #fff;
    padding: 40px 60px 48px;
    z-index: 2; }
  .service-spot__recommend {
    display: inline-block;
    background: #2d6a4f;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    padding: 8px 40px;
    margin-bottom: 20px; }
  .service-spot__pricing {
    display: flex;
    align-items: baseline; }
  .service-spot__plan-name {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5; }
  .service-spot__plan-time {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5; }
  .service-spot__price {
    display: flex;
    align-items: baseline;
    margin-left: 16px; }
    .service-spot__price-num {
      font-family: "Oswald", sans-serif;
      font-size: 96px;
      font-weight: 500;
      line-height: 1; }
    .service-spot__price-unit {
      font-size: 36px;
      font-weight: 700;
      margin-left: 4px; }
  .service-spot__categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 1260px;
    margin: -60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3; }
  .service-spot__card {
    background: #fff;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    padding: 32px 24px; }
    .service-spot__card-title {
      font-size: 24px;
      font-weight: 700;
      color: #2d6a4f;
      line-height: 1.5;
      margin-bottom: 16px; }
    .service-spot__card-desc {
      font-size: 18px;
      line-height: 32px;
      color: #1a1a1a; }
  @media (max-width: 1024px) {
    .service-spot__categories {
      grid-template-columns: 1fr 1fr;
      gap: 20px; } }
  @media (max-width: 768px) {
    .service-spot {
      padding-bottom: 60px; }
      .service-spot__photos {
        height: 220px; }
        .service-spot__photos::after {
          height: 220px; }
      .service-spot__info {
        position: static;
        width: 100%;
        max-width: none;
        padding: 24px 20px 28px; }
      .service-spot__recommend {
        font-size: 15px;
        padding: 6px 20px;
        margin-bottom: 12px; }
      .service-spot__pricing {
        flex-wrap: wrap;
        align-items: baseline; }
      .service-spot__plan-name {
        font-size: 20px; }
      .service-spot__plan-time {
        font-size: 20px; }
      .service-spot__price {
        margin-left: 12px; }
        .service-spot__price-num {
          font-size: 52px; }
        .service-spot__price-unit {
          font-size: 18px; }
      .service-spot__categories {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px; }
      .service-spot__card {
        padding: 20px; }
        .service-spot__card-title {
          font-size: 18px;
          margin-bottom: 10px; }
        .service-spot__card-desc {
          font-size: 15px;
          line-height: 1.8; } }

.service-tickets {
  padding: 80px 0 120px; }
  .service-tickets__en {
    font-family: "Oswald", sans-serif;
    font-size: 96px;
    font-weight: 500;
    color: #e3e3e3;
    text-align: center;
    line-height: 1; }
  .service-tickets__line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 24px 0 0; }
  .service-tickets__table-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px; }
  .service-tickets__table {
    margin-top: 48px; }
  .service-tickets__headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 130px; }
  .service-tickets__header {
    background: #2d6a4f;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    padding: 14px 0;
    text-align: center;
    line-height: 1; }
  .service-tickets__body {
    display: flex; }
  .service-tickets__label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d6a4f;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 16px;
    width: 130px;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.6; }
  .service-tickets__cells {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex: 1; }
  .service-tickets__cell {
    padding: 28px 16px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center; }
  .service-tickets__amount {
    font-family: "Oswald", sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2; }
  .service-tickets__unit {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 4px; }
  .service-tickets__per {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 4px 20px;
    margin-top: 16px; }
  .service-tickets__banner {
    margin-top: 24px;
    margin-left: calc(130px + (100% - 130px) / 4);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    background: rgba(45, 106, 79, 0.08);
    padding: 20px; }
    .service-tickets__banner span {
      color: #2d6a4f; }
  @media (max-width: 768px) {
    .service-tickets {
      padding: 48px 0 72px; }
      .service-tickets__en {
        font-size: 48px; }
      .service-tickets__table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; }
      .service-tickets__table {
        min-width: 560px;
        margin-top: 28px; }
      .service-tickets__headers {
        margin-left: 88px; }
      .service-tickets__header {
        font-size: 20px;
        padding: 10px 0; }
      .service-tickets__label {
        width: 88px;
        font-size: 14px;
        padding: 16px 8px; }
      .service-tickets__cell {
        padding: 18px 8px; }
      .service-tickets__amount {
        font-size: 26px; }
      .service-tickets__unit {
        font-size: 14px; }
      .service-tickets__per {
        font-size: 12px;
        padding: 3px 8px;
        margin-top: 10px; }
      .service-tickets__banner {
        margin-left: 0;
        font-size: 15px;
        line-height: 1.8;
        padding: 16px; }
        .service-tickets__banner span {
          display: block; } }

.service-cancel {
  padding: 0 0 120px; }
  .service-cancel__heading {
    font-size: 32px;
    font-weight: 700;
    color: #2d6a4f;
    text-align: center;
    line-height: 1.4; }
  .service-cancel__line {
    width: 100%;
    height: 1px;
    background: #ddd;
    margin: 24px 0 0; }
  .service-cancel__body {
    max-width: 1100px;
    margin: 48px auto 0;
    padding: 0 20px; }
  .service-cancel__lead {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px; }
  .service-cancel__list {
    list-style: disc;
    margin-left: 1.4em; }
    .service-cancel__list li {
      font-size: 16px;
      line-height: 1.9; }
      .service-cancel__list li + li {
        margin-top: 8px; }
  @media (max-width: 768px) {
    .service-cancel {
      padding: 0 0 60px; }
      .service-cancel__heading {
        font-size: 22px; }
      .service-cancel__line {
        margin-top: 16px; }
      .service-cancel__body {
        margin-top: 28px; }
      .service-cancel__lead {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 18px; }
      .service-cancel__list li {
        font-size: 15px;
        line-height: 1.8; } }

.page-template-page-trainer .page-kv {
  margin-bottom: 80px; }
  .page-template-page-trainer .page-kv .page-kv__title {
    background: linear-gradient(to right, #296946, #9BC059); }

.trainer-profile {
  margin-bottom: 100px; }
  .trainer-profile__layout {
    display: flex;
    align-items: flex-start;
    gap: 64px; }
    @media (max-width: 1024px) {
      .trainer-profile__layout {
        flex-direction: column;
        gap: 32px; } }
  .trainer-profile__photo {
    flex: 0 0 38%; }
    .trainer-profile__photo img {
      width: 100%;
      height: auto;
      display: block; }
    @media (max-width: 1024px) {
      .trainer-profile__photo {
        width: 100%;
        max-width: 420px;
        margin: 0 auto; } }
  .trainer-profile__body {
    flex: 1;
    min-width: 0; }
  .trainer-profile__role {
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: #666; }
  .trainer-profile__name-en {
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(to right, rgba(41, 105, 70, 0.85), rgba(155, 192, 89, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; }
    @media (max-width: 768px) {
      .trainer-profile__name-en {
        font-size: 30px; } }
  .trainer-profile__name {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 4px; }
    @media (max-width: 768px) {
      .trainer-profile__name {
        font-size: 26px; } }
  .trainer-profile .section-line {
    margin-left: 0;
    margin-bottom: 32px; }
  .trainer-profile__quals {
    margin-bottom: 32px; }
    .trainer-profile__quals h3 {
      font-size: 16px;
      font-weight: 700;
      color: #2d6a4f;
      margin-bottom: 12px; }
    .trainer-profile__quals li {
      display: flex;
      gap: 8px;
      font-size: 15px;
      line-height: 1.8;
      color: #1a1a1a; }
      .trainer-profile__quals li + li {
        margin-top: 8px; }
      .trainer-profile__quals li::before {
        content: '';
        flex-shrink: 0;
        width: 6px;
        height: 6px;
        margin-top: 10px;
        background: #2d6a4f;
        border-radius: 50%; }
  .trainer-profile__stats {
    display: flex;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd; }
    @media (max-width: 480px) {
      .trainer-profile__stats {
        flex-direction: column;
        gap: 16px; } }
  .trainer-profile__stat dt {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin-bottom: 4px; }
  .trainer-profile__stat dd {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.2; }
  .trainer-profile__stat strong {
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #2d6a4f;
    margin-right: 2px; }
  .trainer-profile__note {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.9;
    color: #666; }

.trainer-message {
  margin-bottom: 100px;
  text-align: center;
  padding: 80px 0;
  background: #f5fff6; }
  .trainer-message__en {
    color: #e3e3e3;
    font-size: 96px; }
    @media (max-width: 768px) {
      .trainer-message__en {
        font-size: 56px; } }
  .trainer-message__body {
    max-width: 760px;
    margin: 40px auto 0; }
    .trainer-message__body p {
      font-size: 16px;
      line-height: 2.2;
      color: #1a1a1a; }
  .trainer-message__sign {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a; }

.trainer-specialty {
  margin-bottom: 100px;
  text-align: center; }
  .trainer-specialty__en {
    color: #e3e3e3;
    font-size: 96px; }
    @media (max-width: 768px) {
      .trainer-specialty__en {
        font-size: 56px; } }
  .trainer-specialty__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    text-align: left; }
    @media (max-width: 768px) {
      .trainer-specialty__list {
        grid-template-columns: 1fr;
        gap: 20px; } }
  .trainer-specialty__item {
    background: #f9f9f6;
    padding: 32px; }
    .trainer-specialty__item h3 {
      font-size: 18px;
      font-weight: 700;
      color: #2d6a4f;
      padding-bottom: 12px;
      margin-bottom: 16px;
      border-bottom: 1px solid #2d6a4f; }
    .trainer-specialty__item p {
      font-size: 15px;
      line-height: 1.9;
      color: #666; }
    @media (max-width: 768px) {
      .trainer-specialty__item {
        padding: 24px 20px; } }

.trainer-gallery {
  margin-bottom: 100px;
  text-align: center; }
  .trainer-gallery__en {
    color: #e3e3e3;
    font-size: 96px; }
    @media (max-width: 768px) {
      .trainer-gallery__en {
        font-size: 56px; } }
  .trainer-gallery__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px; }
    @media (max-width: 768px) {
      .trainer-gallery__list {
        grid-template-columns: 1fr; } }
    .trainer-gallery__list img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4 / 3;
      display: block; }

.trainer-career {
  margin-bottom: 100px;
  text-align: center; }
  .trainer-career__en {
    color: #e3e3e3;
    font-size: 96px; }
    @media (max-width: 768px) {
      .trainer-career__en {
        font-size: 56px; } }
  .trainer-career__list {
    max-width: 760px;
    margin: 48px auto 0;
    text-align: left; }
  .trainer-career__row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 20px 0 20px 24px;
    border-left: 2px solid #ddd;
    position: relative; }
    .trainer-career__row::before {
      content: '';
      position: absolute;
      left: -7px;
      top: 26px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid #ddd; }
    .trainer-career__row.is-current::before {
      background: #2d6a4f;
      border-color: #2d6a4f; }
    .trainer-career__row:last-child {
      border-left-color: transparent; }
    @media (max-width: 768px) {
      .trainer-career__row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding-left: 20px; } }
  .trainer-career dt {
    font-family: "Oswald", sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #2d6a4f;
    line-height: 1.6; }
  .trainer-career dd {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a; }

.page-template-page-contact .page-kv {
  margin-bottom: 60px; }
  .page-template-page-contact .page-kv .page-kv__title {
    background: linear-gradient(to right, #296946, #9BC059); }

.contact-lead {
  text-align: center;
  margin: 80px auto; }
  .contact-lead p {
    font-size: 16px;
    line-height: 2;
    color: #666; }
  @media (max-width: 768px) {
    .contact-lead {
      margin: 48px auto; }
      .contact-lead p {
        font-size: 14px;
        text-align: left; } }

.contact-direct {
  margin-bottom: 80px;
  text-align: center; }
  .contact-direct__line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 720px;
    margin: 40px auto 0;
    padding: 40px;
    background: #f5fff6;
    text-align: left; }
    @media (max-width: 768px) {
      .contact-direct__line {
        flex-direction: column;
        gap: 24px;
        padding: 28px 20px;
        text-align: center; } }
  .contact-direct__qr {
    flex-shrink: 0;
    width: 180px; }
    .contact-direct__qr img {
      width: 100%;
      height: auto;
      display: block; }
    @media (max-width: 768px) {
      .contact-direct__qr {
        width: 160px; } }
  .contact-direct__line-body {
    flex: 1;
    min-width: 0; }
  .contact-direct__line-lead {
    font-size: 18px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 12px; }
  .contact-direct__btn {
    margin-top: 20px; }
    .contact-direct__btn i {
      font-size: 20px; }
  .contact-direct__tel {
    font-family: "Oswald", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2; }
    .contact-direct__tel a {
      color: #1a1a1a; }
  .contact-direct__note {
    font-size: 13px;
    color: #666;
    margin-top: 8px; }

.contact-form {
  margin-bottom: 100px;
  text-align: center; }
  .contact-form__en {
    color: #e3e3e3;
    font-size: 96px; }
    @media (max-width: 768px) {
      .contact-form__en {
        font-size: 56px; } }
  .contact-form__body {
    max-width: 720px;
    margin: 48px auto 0;
    text-align: left; }
  .contact-form__errors {
    max-width: 720px;
    margin: 40px auto 0;
    padding: 20px 24px;
    background: rgba(210, 120, 60, 0.08);
    border-left: 4px solid #d2783c;
    text-align: left; }
    .contact-form__errors-title {
      font-weight: 700;
      color: #d2783c;
      margin-bottom: 8px; }
    .contact-form__errors li {
      font-size: 14px;
      color: #1a1a1a;
      line-height: 1.8; }
  .contact-form__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px; }
    @media (max-width: 480px) {
      .contact-form__actions {
        flex-direction: column;
        align-items: center; } }
  .contact-form__note {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-top: 24px; }
  .contact-form__confirm-lead {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px; }
  .contact-form__confirm {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-top: 1px solid #ddd; }
    .contact-form__confirm dt, .contact-form__confirm dd {
      padding: 18px 16px;
      border-bottom: 1px solid #ddd;
      font-size: 15px;
      line-height: 1.8; }
    .contact-form__confirm dt {
      font-weight: 700;
      background: #f9f9f6;
      color: #1a1a1a; }
    .contact-form__confirm dd {
      color: #666; }
    @media (max-width: 768px) {
      .contact-form__confirm {
        grid-template-columns: 1fr; }
        .contact-form__confirm dt {
          border-bottom: none;
          padding-bottom: 8px; }
        .contact-form__confirm dd {
          padding-top: 0; } }
  .contact-form__done {
    max-width: 720px;
    margin: 48px auto 0;
    padding: 48px 24px;
    background: #f5fff6; }
    .contact-form__done p {
      font-size: 15px;
      line-height: 2;
      color: #666; }
    .contact-form__done-lead {
      font-size: 24px;
      font-weight: 700;
      color: #2d6a4f;
      margin-bottom: 16px; }
    .contact-form__done .btn-gradient {
      margin-top: 32px; }

.form-row {
  margin-bottom: 28px;
  border: none;
  padding: 0;
  min-width: 0; }

.form-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px; }
  .form-double .form-row {
    margin-bottom: 0; }
  @media (max-width: 480px) {
    .form-double {
      grid-template-columns: 1fr;
      gap: 20px; } }

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  padding: 0; }

.form-required {
  color: #d2783c;
  margin-left: 4px; }

.form-sublabel {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px; }

.form-note {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-top: 8px; }

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row select,
.form-row textarea,
.form-nested input[type="text"] {
  width: 100%;
  background: #fff;
  border: 1px solid #767676;
  padding: 12px 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  transition: border-color 0.3s; }
  .form-row input[type="text"]:focus,
  .form-row input[type="email"]:focus,
  .form-row input[type="tel"]:focus,
  .form-row input[type="date"]:focus,
  .form-row select:focus,
  .form-row textarea:focus,
  .form-nested input[type="text"]:focus {
    outline: none;
    border-color: #2d6a4f; }
  .form-row input[type="text"]::placeholder,
  .form-row input[type="email"]::placeholder,
  .form-row input[type="tel"]::placeholder,
  .form-row input[type="date"]::placeholder,
  .form-row select::placeholder,
  .form-row textarea::placeholder,
  .form-nested input[type="text"]::placeholder {
    color: #aaa; }

.form-row select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #1a1a1a 50%), linear-gradient(135deg, #1a1a1a 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 1px), calc(100% - 13px) calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
  cursor: pointer; }

.form-row textarea {
  line-height: 1.8;
  resize: vertical; }

.form-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px; }
  .form-radios--stack {
    flex-direction: column;
    gap: 14px; }

.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer; }
  .form-radio input {
    width: 18px;
    height: 18px;
    accent-color: #2d6a4f;
    flex-shrink: 0; }

.form-nested {
  padding-left: 28px;
  max-width: 320px; }

.form-privacy {
  text-align: center;
  margin-top: 40px; }

.form-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #1a1a1a;
  cursor: pointer; }
  .form-check input {
    width: 18px;
    height: 18px;
    accent-color: #2d6a4f;
    flex-shrink: 0; }
  .form-check a {
    color: #2d6a4f;
    text-decoration: underline; }

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden; }

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 263px;
  height: 56px;
  background: #fff;
  border: 1px solid #ddd;
  color: #666;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.3s; }
  .btn-back:hover {
    background: #f4f4f4; }

.contact-access {
  margin-bottom: 100px;
  text-align: center; }
  .contact-access__en {
    color: #e3e3e3;
    font-size: 96px; }
    @media (max-width: 768px) {
      .contact-access__en {
        font-size: 56px; } }
  .contact-access__content {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    text-align: left; }
    @media (max-width: 1024px) {
      .contact-access__content {
        flex-direction: column;
        gap: 32px; } }
  .contact-access__map {
    flex: 1;
    aspect-ratio: 4 / 3;
    overflow: hidden; }
    .contact-access__map iframe {
      width: 100%;
      height: 100%; }
  .contact-access__info {
    flex: 0 0 38%;
    border-top: 1px solid #ddd;
    align-self: flex-start;
    width: 100%; }
    .contact-access__info dt {
      font-size: 13px;
      font-weight: 700;
      color: #2d6a4f;
      padding: 16px 0 4px; }
    .contact-access__info dd {
      font-size: 15px;
      line-height: 1.8;
      color: #666;
      padding-bottom: 16px;
      border-bottom: 1px solid #ddd; }

.page-template-page-privacy .page-kv {
  margin-bottom: 60px; }
  .page-template-page-privacy .page-kv .page-kv__title {
    background: linear-gradient(to right, #296946, #9BC059); }

.privacy {
  padding-bottom: 100px; }
  .privacy .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px; }
  .privacy__lead {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 56px; }
  .privacy__block {
    margin-bottom: 48px; }
    .privacy__block:last-of-type {
      margin-bottom: 0; }
  .privacy__heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #2d6a4f;
    padding-left: 16px;
    border-left: 4px solid #2d6a4f;
    margin-bottom: 20px; }
  .privacy__text {
    font-size: 16px;
    line-height: 2; }
    .privacy__text + .privacy__text {
      margin-top: 16px; }
    .privacy__text strong {
      font-weight: 700; }
  .privacy__list {
    list-style: disc;
    margin: 16px 0 0 1.4em; }
    .privacy__list li {
      font-size: 16px;
      line-height: 1.9; }
      .privacy__list li + li {
        margin-top: 4px; }
    .privacy__list + .privacy__text {
      margin-top: 16px; }
  .privacy__info {
    margin-top: 20px;
    border-top: 1px solid #ddd; }
    .privacy__info dt {
      font-size: 15px;
      font-weight: 700;
      color: #666;
      padding: 16px 0 0; }
    .privacy__info dd {
      font-size: 16px;
      line-height: 1.8;
      padding: 4px 0 16px;
      border-bottom: 1px solid #ddd; }
      .privacy__info dd a {
        color: #2d6a4f;
        text-decoration: underline; }
  .privacy__updated {
    margin-top: 56px;
    text-align: right;
    font-size: 15px;
    color: #666; }
  @media (max-width: 768px) {
    .privacy {
      padding-bottom: 60px; }
      .privacy__lead {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 36px; }
      .privacy__block {
        margin-bottom: 32px; }
      .privacy__heading {
        font-size: 18px;
        padding-left: 12px;
        border-left-width: 3px;
        margin-bottom: 14px; }
      .privacy__text {
        font-size: 15px;
        line-height: 1.9; }
      .privacy__list li {
        font-size: 15px; }
      .privacy__info dt {
        font-size: 14px; }
      .privacy__info dd {
        font-size: 15px; }
      .privacy__updated {
        margin-top: 36px;
        font-size: 14px; } }
