@charset "UTF-8";
/* ========================================
  Foundation
======================================== */
/* ========================================
  Foundation / Variables
======================================== */
/* ========================================
  Foundation / Base
======================================== */
html {
  scroll-behavior: smooth;
  background: #F9F7F3;
}

body {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 834px) {
  body {
    font-size: 16px;
  }
}

input {
  appearance: revert;
}

figure {
  margin: 0;
  padding: 0;
}

/* ========================================
  Layout
======================================== */
/* ========================================
  Layout / Container
======================================== */
.l-container {
  width: 100%;
  max-width: 375px;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (min-width: 834px) {
  .l-container {
    max-width: 1140px;
    padding: 0 20px;
  }
}

/* ========================================
  Layout / Contents
======================================== */
.l-contents {
  padding: 80px 0;
}
@media screen and (min-width: 834px) {
  .l-contents {
    padding: 160px 0;
  }
}
.l-contents--top {
  padding-top: 80px;
  padding-bottom: 0;
}
@media screen and (min-width: 834px) {
  .l-contents--top {
    padding-top: 160px;
  }
}

/* ========================================
  Layout / Header
======================================== */
.l-header {
  background-color: #FFFFFF;
}
.l-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 16px;
  background-color: #EE7602;
}

.p-header {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (min-width: 834px) {
  .p-header {
    max-width: 1100px;
    padding: 0 20px;
  }
}

.p-header__catchcopy {
  font-size: 9px;
  color: #7E7E7E;
  padding: 0.6em 0;
}
@media screen and (min-width: 834px) {
  .p-header__catchcopy {
    font-size: 13px;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
@media screen and (min-width: 834px) {
  .p-header__inner {
    padding-bottom: 0;
  }
}

.p-header__logo-area {
  width: fit-content;
}

.p-header__logo {
  width: 100%;
  max-width: 210px;
  height: auto;
}
@media screen and (min-width: 834px) {
  .p-header__logo {
    max-width: 320px;
  }
}

.p-header__contact-area {
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.p-header__contact-text {
  font-size: 12px;
}

.p-header__mail {
  font-size: 20px;
  font-weight: bold;
}

.p-header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  background: #EE7602;
  border: 2px solid #EE7602;
}
.p-header__btn:hover {
  color: #EE7602;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.p-header__btn--pc {
  font-size: 18px;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 20px;
}
.p-header__btn--sp {
  font-size: 16px;
  padding: 16px 0;
}

.p-nav {
  position: absolute;
  top: 0;
  left: 30vw;
  right: 0;
  height: 100vh;
  background: #F9F7F3;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-nav {
    position: static;
    width: auto;
    height: auto;
    background: #FFFFFF;
    flex-direction: row;
    padding: 16px 0;
    gap: 8px;
  }
}

.p-nav__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-nav__list {
    flex-direction: row;
    gap: 0;
  }
}

.p-nav__item {
  width: 130px;
  text-align: center;
}

@media screen and (min-width: 834px) {
  .p-nav__item:not(:first-child) {
    border-left: 1px solid #000000;
  }
}

.p-nav__link {
  font-size: 12px;
}
.p-nav__link:hover {
  font-size: 14px;
  transition: font-size 0.3s ease;
}

.p-nav__icon {
  width: 50px;
  height: 50px;
}
.p-nav__icon:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.p-header__hamburger {
  width: 60px;
  height: 60px;
  background: #EE7602;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 150;
}
@media screen and (min-width: 834px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger-box {
  width: 32px;
  height: 28px;
  position: relative;
}

.p-header__hamburger-bar {
  width: 100%;
  height: 4px;
  background: #FFFFFF;
  position: absolute;
  left: 50%;
  transition: 0.3s;
}

.p-header__hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.p-header__hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-header__hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

/* ========================================
  Layout / Footer
======================================== */
.p-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.p-footer__logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  padding: 16px 0;
}
@media screen and (min-width: 834px) {
  .p-footer__logo {
    max-width: 300px;
    padding: 24px 0;
  }
}

.p-footer__copyright {
  width: 100%;
  font-size: 6px;
  color: #FFFFFF;
  background: #EE7602;
  text-align: center;
  padding: 0.8em 0;
}
@media screen and (min-width: 834px) {
  .p-footer__copyright {
    font-size: 10px;
  }
}

/* ========================================
  Object
======================================== */
/* ========================================
  Object / SectionTitle
======================================== */
.o-section-title {
  font-size: 28px;
  font-weight: bold;
  color: #EE7602;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.o-section-title::before {
  content: "◆";
  margin-right: 0.3em;
}

@media screen and (min-width: 834px) {
  .o-section-title {
    font-size: 36px;
    margin-bottom: 60px;
  }
}
/* ========================================
  Project
======================================== */
/* ========================================
  Project / KV
======================================== */
.p-kv {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0 auto;
}

.p-kv__slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-kv__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 1s ease;
}

/* ========================================
  Project / About
======================================== */
.p-about__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 834px) {
  .p-about__inner {
    gap: 100px;
  }
}

.p-about__img {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.p-about__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (min-width: 834px) {
  .p-about__img {
    width: 40%;
  }
}

.p-about__athlete,
.p-about__training {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-about__athlete,
  .p-about__training {
    gap: 60px;
  }
}

.p-about__heading {
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #EE7602;
  text-align: center;
  padding: 0.6em 0;
}
@media screen and (min-width: 834px) {
  .p-about__heading {
    font-size: 16px;
  }
}

.p-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-about__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
  }
}

.p-about__message {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-about__message-img {
  width: 100%;
  max-width: 590px;
  height: auto;
}
.p-about__message-img img {
  width: 100%;
  height: 100%;
}

.p-about__columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-about__columns {
    gap: 60px;
  }
}

.p-about__subheading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (min-width: 834px) {
  .p-about__subheading {
    font-size: 20px;
  }
}

.p-about__dot {
  color: #EE7602;
  margin-right: 0.3em;
}

.p-about__slogan-img {
  display: flex;
  justify-content: center;
}
.p-about__slogan-img img {
  width: 100%;
  max-width: 700px;
}

/* ========================================
  Project / Coach
======================================== */
.p-coach__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 834px) {
  .p-coach__inner {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 120px;
  }
}

.p-coach__img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 3/4;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.p-coach__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (min-width: 834px) {
  .p-coach__img {
    max-width: 300px;
    margin-bottom: 24px;
  }
}

.p-coach__role {
  font-size: 12px;
  color: #7E7E7E;
  margin-bottom: 4px;
}
@media screen and (min-width: 834px) {
  .p-coach__role {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.p-coach__name-block {
  display: flex;
  gap: 16px;
}

.p-coach__name-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-coach__kana {
  font-size: 12px;
}

.p-coach__name {
  font-size: 24px;
  font-weight: bold;
}

.p-coach__list {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4px;
}
@media screen and (min-width: 834px) {
  .p-coach__list {
    grid-template-columns: 120px 1fr;
  }
}

.p-coach__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background: #EE7602;
  line-height: normal;
  letter-spacing: normal;
}

.p-coach__text {
  letter-spacing: 0.05em;
  background: #FFFFFF;
  padding: 16px;
}

/* ========================================
  Project / Support
======================================== */
#support {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../img/support-bg.jpg) center/cover no-repeat;
}

.p-support {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  padding: 32px 16px;
}
@media screen and (min-width: 834px) {
  .p-support {
    padding: 60px 32px;
  }
}

.p-support__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (min-width: 834px) {
  .p-support__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

.p-support__columns {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-support__columns {
    flex-direction: row;
    margin-bottom: 60px;
    gap: 32px;
  }
}

.p-support__box {
  width: 100%;
  max-width: 300px;
  background: #FFFFFF;
}
@media screen and (min-width: 834px) {
  .p-support__box {
    max-width: 480px;
  }
}
.p-support__box--left {
  --support-color: #EE7602;
}
.p-support__box--right {
  --support-color: #66D4FF;
}
.p-support__box .p-support__heading {
  background: var(--support-color);
}
.p-support__box .p-support__dot {
  font-size: 1.5em;
  color: var(--support-color);
}

.p-support__heading {
  font-size: 14px;
  font-weight: bold;
  color: #FFFFFF;
  padding: 16px 0;
}
@media screen and (min-width: 834px) {
  .p-support__heading {
    font-size: 20px;
    padding: 24px 0;
  }
}

.p-support__list {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
}
@media screen and (min-width: 834px) {
  .p-support__list {
    padding: 32px;
    gap: 16px;
  }
}

.p-support__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-support__item .p-support__text {
  text-align: left;
}

.p-support__btn {
  display: inline-block;
  font-size: 16px;
  color: #FFFFFF;
  background: #EE7602;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 9999px;
  padding: 24px 32px;
  border: 2px solid #EE7602;
}
@media screen and (min-width: 834px) {
  .p-support__btn {
    font-size: 24px;
    padding: 32px 80px;
  }
}
.p-support__btn:hover {
  color: #EE7602;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

/* ========================================
  Project / Course
======================================== */
.p-course__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 32px;
  gap: 32px;
}
@media screen and (min-width: 834px) {
  .p-course__inner {
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 60px;
    gap: 80px;
  }
}

.p-course__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (min-width: 834px) {
  .p-course__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.p-course__list {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 4px;
}

.p-course__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background: #EE7602;
  line-height: normal;
  letter-spacing: normal;
}

.p-course__text {
  letter-spacing: 0.05em;
  background: #FFFFFF;
  padding: 16px;
}

.p-course__link {
  display: inline-block;
  color: #EE7602;
  overflow-wrap: anywhere;
  text-decoration-line: underline;
}

.p-course__img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-course__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
@media screen and (min-width: 834px) {
  .p-course__img {
    width: 45%;
  }
}

/* ========================================
  Project / Price
======================================== */
.p-price {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 32px;
  padding-bottom: 40px;
}
@media screen and (min-width: 834px) {
  .p-price {
    padding: 60px;
    padding-bottom: 100px;
  }
}

.p-price__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-price__list {
    grid-template-columns: 120px 1fr;
    gap: 80px 60px;
  }
}

.p-price__heading {
  width: 100px;
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  background: #66D4FF;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: start;
  padding: 16px 0;
}
@media screen and (min-width: 834px) {
  .p-price__heading {
    width: 100%;
    font-size: 20px;
    padding: 20px 0;
  }
}

.p-price__amount {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 834px) {
  .p-price__amount {
    font-size: 20px;
  }
}
.p-price__amount strong {
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #EE7602;
  text-underline-offset: 0.4em;
  text-decoration-thickness: 0.3rem;
}
@media screen and (min-width: 834px) {
  .p-price__amount strong {
    font-size: 20px;
  }
}

.p-price__note:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (min-width: 834px) {
  .p-price__note:not(:last-child) {
    margin-bottom: 0px;
  }
}

.p-price__highlight {
  color: red;
}

/* ========================================
  Project / Contact
======================================== */
#contact {
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../img/contact-bg.jpg) center/cover no-repeat;
}
#contact .l-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.p-contact {
  text-align: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  width: fit-content;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
}
@media screen and (min-width: 834px) {
  .p-contact {
    padding: 60px 120px;
    gap: 32px;
  }
}

.p-contact__mail-block .p-contact__text {
  margin-bottom: 4px;
}
@media screen and (min-width: 834px) {
  .p-contact__mail-block .p-contact__text {
    margin-bottom: 8px;
  }
}

.p-contact__mail {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 834px) {
  .p-contact__mail {
    font-size: 24px;
  }
}

.p-contact__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 834px) {
  .p-contact__btns {
    flex-direction: row;
    gap: 60px;
  }
}

.p-contact__btn {
  font-size: 16px;
  color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 40px;
}
.p-contact__btn--trial {
  background: #EE7602;
  border: 2px solid #EE7602;
}
.p-contact__btn--trial:hover {
  color: #EE7602;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.p-contact__btn--inquiry {
  background: #66D4FF;
  border: 2px solid #66D4FF;
}
.p-contact__btn--inquiry:hover {
  color: #66D4FF;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
@media screen and (min-width: 834px) {
  .p-contact__btn {
    font-size: 20px;
  }
}

/* ========================================
  Utility
======================================== */
/* ========================================
  Utility / Display
======================================== */
.u-hidden-sp--block {
  display: none;
}
@media screen and (min-width: 834px) {
  .u-hidden-sp--block {
    display: block;
  }
}

.u-hidden-sp--flex {
  display: none;
}
@media screen and (min-width: 834px) {
  .u-hidden-sp--flex {
    display: flex;
  }
}

.u-hidden-sp--inline {
  display: none;
}
@media screen and (min-width: 834px) {
  .u-hidden-sp--inline {
    display: inline;
  }
}

/**
 * SPでは表示、PCでは非表示
 */
.u-visible-sp--block {
  display: block;
}
@media screen and (min-width: 834px) {
  .u-visible-sp--block {
    display: none;
  }
}

.u-visible-sp--flex {
  display: flex;
}
@media screen and (min-width: 834px) {
  .u-visible-sp--flex {
    display: none;
  }
}

.u-visible-sp--inline {
  display: inline;
}
@media screen and (min-width: 834px) {
  .u-visible-sp--inline {
    display: none;
  }
}

/* ========================================
  Utility / Text
======================================== */
.u-text-reset--normal {
  line-height: normal;
  letter-spacing: normal;
}

.u-text-reset--wide {
  line-height: normal;
  letter-spacing: 0.05em;
}

/* ========================================
  Interaction（JS制御・状態変化）
  ※ 最後に読み込むことで上書きを保証
======================================== */
.js-body.is-active {
  overflow: hidden;
}

.js-slide {
  opacity: 1;
}

.js-nav {
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}
@media screen and (min-width: 834px) {
  .js-nav {
    pointer-events: auto;
    opacity: 1;
  }
}
.js-nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js-hamburger ._hamburger-bar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.js-hamburger.is-active .p-header__hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}
.js-hamburger.is-active .p-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.js-hamburger.is-active .p-header__hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}