@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2d3340;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

html {
  font-size: 62.5%;
}

.section-header {
  margin-bottom: 56px;
}
.section-header__label {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f26419;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.section-header__label--light {
  color: #ff8c42;
}
.section-header__title {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 700;
  color: #1a2744;
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-header__title--white {
  color: #ffffff;
}
.section-header__desc {
  font-size: 1.6rem;
  color: #5a6270;
  max-width: 780px;
  line-height: 1.8;
}
.section-header__desc--white {
  color: rgba(255, 255, 255, 0.6);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  height: 36px;
  width: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--primary {
  background: #f26419;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(242, 100, 25, 0.4);
}
.btn--primary:hover {
  background: #ff8c42;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 100, 25, 0.5);
}
.btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline {
  background: transparent;
  color: #1a2744;
  border: 2px solid #1a2744;
}
.btn--outline:hover {
  background: #1a2744;
  color: #ffffff;
  transform: translateY(-2px);
}
.btn--white {
  background: #ffffff;
  color: #f26419;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  font-size: 1.6rem;
  font-weight: 700;
  padding: 18px 40px;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.tag {
  background: #f1f3f7;
  color: #5a6270;
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  display: inline-block;
}
.tag--navy {
  background: rgba(26, 39, 68, 0.08);
  color: #1a2744;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fadeup {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.animate-fadeup--delay-1 {
  animation-delay: 0.15s;
}
.animate-fadeup--delay-2 {
  animation-delay: 0.3s;
}
.animate-fadeup--delay-3 {
  animation-delay: 0.45s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e6ed;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .nav__list {
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    background: #ffffff;
    padding: 80px 24px 40px;
    gap: 32px;
    overflow-y: auto;
  }
  .nav__list--open {
    display: flex;
  }
}
.nav__link {
  font-size: 1.4rem;
  font-weight: 500;
  color: #5a6270;
  transition: color 0.2s;
}
.nav__link:hover {
  color: #1a2744;
}
.nav__link--cta {
  background: #f26419;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav__link--cta:hover {
  background: #ff8c42;
  transform: translateY(-1px);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 101;
}
@media (max-width: 1024px) {
  .nav__hamburger {
    display: flex;
  }
}
.nav__hamburger-line {
  width: 24px;
  height: 2px;
  background: #1a2744;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  transform-origin: center;
}
.nav__hamburger--open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger--open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger--open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a2744 0%, #243660 60%, #111c35 100%);
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 100, 25, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 100, 25, 0.15);
  border: 1px solid rgba(242, 100, 25, 0.4);
  color: #ff8c42;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}
.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #f26419;
  border-radius: 50%;
  display: inline-block;
}
.hero__title {
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero__title-accent {
  color: #f26419;
}
.hero__subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.hero__subtitle-en {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 40px;
  font-style: italic;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 40px;
}
@media (max-width: 640px) {
  .hero__stats {
    gap: 24px;
  }
}
@media (max-width: 400px) {
  .hero__stats {
    gap: 16px;
  }
}
.hero__stat-num {
  font-family: "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.hero__stat-num-accent {
  color: #f26419;
}
.hero__stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.hero__visual {
  position: relative;
}
@media (max-width: 768px) {
  .hero__visual {
    order: -1;
  }
}
.hero__card {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}
.hero__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hero__card-overlay {
  background: linear-gradient(to top, rgba(26, 39, 68, 0.9) 0%, transparent 60%);
  padding: 28px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.hero__card-tag {
  background: #f26419;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__card-text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
}
.hero__float {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.18);
}
.hero__float--booking {
  top: 24px;
  left: -24px;
  background: #ffffff;
  padding: 16px 20px;
  min-width: 180px;
}
@media (max-width: 1024px) {
  .hero__float--booking {
    display: none;
  }
}
.hero__float--app {
  bottom: 80px;
  right: -20px;
  background: #1a2744;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1024px) {
  .hero__float--app {
    display: none;
  }
}
.hero__float-label {
  font-size: 1.1rem;
  color: #9aa3b2;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__float-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2744;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
}
.hero__float-sub {
  font-size: 1.2rem;
  color: #9aa3b2;
}
.hero__float-icon {
  width: 40px;
  height: 40px;
  background: rgba(242, 100, 25, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.hero__float-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
}
.hero__float-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
}

.features {
  background: #f8f9fc;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .features {
    padding: 72px 20px;
  }
}
.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.features__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  border: 1px solid #e2e6ed;
  transition: transform 0.3s, box-shadow 0.3s;
}
.features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
.features__card--accent .features__card-icon {
  background: linear-gradient(135deg, #f26419 0%, #ff8c42 100%);
}
.features__card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a2744 0%, #243660 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.features__card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 10px;
}
.features__card-desc {
  font-size: 1.4rem;
  color: #5a6270;
  line-height: 1.8;
}
.features__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .features__intro {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }
}
.features__intro-btn {
  margin-top: 32px;
}
.features__intro-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.18);
}
.features__intro-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.features__intro-visual:hover .features__intro-img {
  transform: scale(1.03);
}

.comparison {
  background: #ffffff;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .comparison {
    padding: 72px 20px;
  }
}
.comparison__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.comparison__table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
  border: 1px solid #e2e6ed;
  margin-top: 56px;
}
.comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison__thead {
  background: #1a2744;
}
.comparison__th {
  padding: 20px 24px;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
}
.comparison__th:first-child {
  color: #ffffff;
}
.comparison__th--highlight {
  color: #f26419;
  font-size: 1.6rem;
}
.comparison__tr {
  border-bottom: 1px solid #f1f3f7;
  transition: background 0.2s;
}
.comparison__tr:last-child {
  border-bottom: none;
}
.comparison__tr:hover {
  background: #f8f9fc;
}
.comparison__td {
  padding: 18px 24px;
  font-size: 1.4rem;
  color: #5a6270;
}
.comparison__td:first-child {
  font-weight: 500;
  color: #2d3340;
}
.comparison__td--asu {
  font-weight: 600;
  color: #1a2744;
}
.comparison__badge-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
  font-weight: 600;
}
.comparison__badge-check::before {
  content: "✓";
}
.comparison__badge-cross {
  color: #ef4444;
  font-size: 1.8rem;
}
.comparison__badge-partial {
  color: #9aa3b2;
  font-size: 1.4rem;
}

.trainers {
  background: #f8f9fc;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .trainers {
    padding: 72px 20px;
  }
}
.trainers__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.trainers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .trainers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .trainers__grid {
    grid-template-columns: 1fr;
  }
}
.trainers__card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  border: 1px solid #e2e6ed;
  transition: transform 0.3s, box-shadow 0.3s;
}
.trainers__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
.trainers__photo {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.trainers__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.4rem;
  background: linear-gradient(135deg, #1a2744 0%, #243660 100%);
}
.trainers__info {
  padding: 24px;
}
.trainers__specialty {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f26419;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.trainers__name {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 4px;
}
.trainers__name-en {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  color: #9aa3b2;
  margin-bottom: 14px;
}
.trainers__bio {
  font-size: 1.3rem;
  color: #5a6270;
  line-height: 1.8;
  margin-bottom: 16px;
}
.trainers__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.trainers__more {
  margin-top: 48px;
  text-align: center;
}

.plans {
  background: #ffffff;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .plans {
    padding: 72px 20px;
  }
}
.plans__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.plans__card {
  border: 2px solid #e2e6ed;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.plans__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
.plans__card--featured {
  border-color: #f26419;
  box-shadow: 0 8px 40px rgba(242, 100, 25, 0.15);
}
.plans__card--featured .plans__cta {
  background: #f26419;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(242, 100, 25, 0.35);
}
.plans__card--featured .plans__cta:hover {
  background: #ff8c42;
}
.plans__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f26419;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}
.plans__name {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #9aa3b2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.plans__price {
  font-family: "Inter", sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  color: #1a2744;
  line-height: 1;
  margin-bottom: 4px;
}
.plans__price-sup {
  font-size: 2rem;
  font-weight: 600;
  vertical-align: super;
}
.plans__price-note {
  font-size: 1.3rem;
  color: #9aa3b2;
  margin-bottom: 24px;
}
.plans__divider {
  border: none;
  border-top: 1px solid #e2e6ed;
  margin: 20px 0;
}
.plans__feature-list {
  margin-bottom: 32px;
}
.plans__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  color: #5a6270;
  margin-bottom: 12px;
}
.plans__feature-item::before {
  content: "✓";
  color: #f26419;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plans__cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  background: #f1f3f7;
  color: #1a2744;
}
.plans__cta:hover {
  transform: translateY(-1px);
}

.steps {
  background: #1a2744;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .steps {
    padding: 72px 20px;
  }
}
.steps__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  position: relative;
}
.steps__grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, rgba(242, 100, 25, 0.5), rgba(242, 100, 25, 0.2));
}
@media (max-width: 1024px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .steps__grid::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .steps__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.steps__num {
  width: 56px;
  height: 56px;
  background: #f26419;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.steps__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}
.steps__desc {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.testimonials {
  background: #f8f9fc;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 72px 20px;
  }
}
.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
.testimonials__card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  border: 1px solid #e2e6ed;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
.testimonials__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f3f7;
}
.testimonials__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f26419 0%, #f7971e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.testimonials__user-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3340;
}
.testimonials__handle {
  font-size: 1.2rem;
  color: #9aa3b2;
  font-family: "Inter", sans-serif;
}
.testimonials__sns-icon {
  margin-left: auto;
  color: #9aa3b2;
  font-size: 2rem;
  flex-shrink: 0;
}
.testimonials__image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.6rem;
  background: #f1f3f7;
}
.testimonials__body {
  padding: 14px 16px 18px;
}
.testimonials__stars {
  color: #f59e0b;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.testimonials__quote {
  font-size: 1.3rem;
  color: #5a6270;
  line-height: 1.8;
  margin-bottom: 10px;
}
.testimonials__meta {
  font-size: 1.2rem;
  color: #9aa3b2;
}

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

.cta {
  background: linear-gradient(135deg, #f26419 0%, #ff8c42 100%);
  padding: 80px 24px;
}
.cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}
.cta__desc {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.8;
}
.cta__note {
  margin-top: 16px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
}

.studio {
  background: #ffffff;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .studio {
    padding: 72px 20px;
  }
}
.studio__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.studio__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  background: #f8f9fc;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
  border: 1px solid #e2e6ed;
}
@media (max-width: 768px) {
  .studio__card {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.studio__visual {
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .studio__visual {
    aspect-ratio: 16/9;
  }
}
.studio__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.studio__visual:hover .studio__img {
  transform: scale(1.03);
}
.studio__info {
  padding: 48px 48px 48px 0;
}
@media (max-width: 768px) {
  .studio__info {
    padding: 32px 24px;
  }
  .studio__info .btn {
    display: flex;
    justify-content: center;
  }
}
.studio__name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f26419;
  display: inline-block;
}
.studio__dl {
  margin-bottom: 24px;
}
.studio__dl-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e6ed;
  align-items: baseline;
}
.studio__dl-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .studio__dl-row {
    grid-template-columns: 70px 1fr;
  }
}
.studio__dt {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f26419;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.studio__dd {
  font-size: 1.4rem;
  color: #5a6270;
  line-height: 1.7;
}
.studio__dd a {
  color: #1a2744;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.studio__dd a:hover {
  color: #f26419;
}
.studio__address {
  font-style: normal;
}
.studio__map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.faq {
  background: #f8f9fc;
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .faq {
    padding: 72px 20px;
  }
}
.faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e6ed;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq__item[open] {
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.1);
  border-color: #f26419;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2744;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.2s;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question:hover {
  background: #f8f9fc;
}
.faq__item[open] .faq__question {
  color: #f26419;
}
.faq__q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #f26419;
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}
.faq__item[open] .faq__q-icon {
  background: #1a2744;
}
.faq__toggle-icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq__toggle-icon::before, .faq__toggle-icon::after {
  content: "";
  position: absolute;
  background: #9aa3b2;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s, opacity 0.3s;
}
.faq__toggle-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__toggle-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__answer {
  padding: 0 24px 24px 66px;
  font-size: 1.4rem;
  color: #5a6270;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .faq__answer {
    padding: 0 20px 20px;
  }
}

.booking {
  background: linear-gradient(135deg, #1a2744 0%, #243660 100%);
  padding: 100px 24px;
}
@media (max-width: 768px) {
  .booking {
    padding: 72px 20px;
  }
}
.booking__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.booking__lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
@media (max-width: 1024px) {
  .booking__lead {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .booking__lead {
    margin-bottom: 48px;
  }
}
.booking__benefits {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.booking__benefit-item {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.booking__lead-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.booking__lead-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.booking__lead-visual:hover .booking__lead-img {
  transform: scale(1.03);
}
.booking__form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .booking__form-wrap {
    padding: 36px 24px;
  }
}
.booking__form-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 8px;
}
.booking__form-note {
  font-size: 1.3rem;
  color: #9aa3b2;
  margin-bottom: 32px;
  line-height: 1.7;
}

.form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}
.form__legend {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3340;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form__row {
  margin-bottom: 24px;
}
.form__row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .form__row--double {
    grid-template-columns: 1fr;
  }
}
.form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3340;
  margin-bottom: 8px;
}
.form__required {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: #f26419;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
}
.form__optional {
  font-size: 1.1rem;
  font-weight: 600;
  color: #9aa3b2;
  background: #f1f3f7;
  padding: 2px 6px;
  border-radius: 4px;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e6ed;
  border-radius: 8px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #2d3340;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.form__input::-moz-placeholder, .form__select::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #9aa3b2;
}
.form__input::placeholder, .form__select::placeholder, .form__textarea::placeholder {
  color: #9aa3b2;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: #f26419;
  box-shadow: 0 0 0 3px rgba(242, 100, 25, 0.12);
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%239aa3b2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__radio-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.form__radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: #5a6270;
  cursor: pointer;
}
.form__radio {
  width: 18px;
  height: 18px;
  accent-color: #f26419;
  cursor: pointer;
  flex-shrink: 0;
}
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  color: #5a6270;
  cursor: pointer;
}
.form__checkbox {
  width: 18px;
  height: 18px;
  accent-color: #f26419;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}
.form__link {
  color: #f26419;
  text-decoration: underline;
  transition: color 0.2s;
}
.form__link:hover {
  color: #ff8c42;
}
.form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1.6rem;
  padding: 18px;
  margin-top: 8px;
}

.footer {
  background: #1a2744;
  padding: 60px 24px 32px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer .logo__img {
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__address {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.footer__col-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}
.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-link {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col-link:hover {
  color: #ffffff;
}
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.6rem;
  transition: background 0.2s;
  color: #ffffff;
}
.footer__social-btn:hover {
  background: #f26419;
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #1a2744;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
  opacity: 0;
  transition: opacity 0.3s, transform 0.2s, background 0.2s;
  text-decoration: none;
  font-size: 1.8rem;
  z-index: 50;
}
.scroll-top--visible {
  opacity: 1;
}
.scroll-top:hover {
  transform: translateY(-2px);
  background: #f26419;
}

.page-hero {
  background: linear-gradient(135deg, #1a2744 0%, #243660 100%);
  padding: 120px 24px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 100, 25, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero__title {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.page-hero__subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 20px 44px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb__item:last-child {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  color: rgba(255, 255, 255, 0.35);
}
.breadcrumb__link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  color: #ffffff;
}

.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .steps-indicator {
    margin-bottom: 40px;
  }
}
.steps-indicator__step {
  display: flex;
  align-items: center;
  gap: 0;
}
.steps-indicator__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e6ed;
  color: #9aa3b2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.steps-indicator__step--active .steps-indicator__circle {
  background: #f26419;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(242, 100, 25, 0.4);
}
.steps-indicator__step--done .steps-indicator__circle {
  background: #1a2744;
  color: #ffffff;
}
.steps-indicator__label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9aa3b2;
  text-align: center;
  margin-top: 6px;
}
.steps-indicator__step--active .steps-indicator__label {
  color: #f26419;
}
.steps-indicator__step--done .steps-indicator__label {
  color: #1a2744;
}
.steps-indicator__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 100px;
}
@media (max-width: 768px) {
  .steps-indicator__item {
    min-width: 80px;
  }
}
@media (max-width: 400px) {
  .steps-indicator__item {
    min-width: 60px;
  }
}
@media (max-width: 400px) {
  .steps-indicator__circle {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}
@media (max-width: 400px) {
  .steps-indicator__label {
    font-size: 1rem;
  }
}
.steps-indicator__connector {
  height: 2px;
  width: 80px;
  background: #e2e6ed;
  margin-bottom: 24px;
}
.steps-indicator__connector--done {
  background: #1a2744;
}
@media (max-width: 768px) {
  .steps-indicator__connector {
    width: 40px;
  }
}
@media (max-width: 400px) {
  .steps-indicator__connector {
    width: 20px;
  }
}

.page-content {
  padding: 80px 24px;
  background: #ffffff;
}
.page-content__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-content--gray {
  background: #f8f9fc;
}
@media (max-width: 768px) {
  .page-content {
    padding: 56px 20px;
  }
}

.not-found {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #f8f9fc;
}
.not-found__inner {
  text-align: center;
  max-width: 600px;
}
.not-found__icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  image-rendering: pixelated;
}
.not-found__code {
  font-family: "Inter", sans-serif;
  font-size: clamp(7.2rem, 15vw, 12rem);
  font-weight: 800;
  color: #f26419;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -4px;
}
.not-found__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 24px;
  line-height: 1.5;
}
.not-found__desc {
  font-size: 1.4rem;
  color: #5a6270;
  line-height: 2;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .not-found__desc br {
    display: none;
  }
}

.booking-page {
  background: #f8f9fc;
  padding: 72px 24px 100px;
}
@media (max-width: 768px) {
  .booking-page {
    padding: 48px 20px 72px;
  }
}
.booking-page__inner {
  max-width: 800px;
  margin: 0 auto;
}
.booking-page__form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
@media (max-width: 768px) {
  .booking-page__form-wrap {
    padding: 36px 24px;
  }
}
.booking-page__form-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 8px;
}
.booking-page__form-note {
  font-size: 1.3rem;
  color: #9aa3b2;
  margin-bottom: 40px;
  line-height: 1.7;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e6ed;
}

.form__fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}
.form__legend {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3340;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form__row {
  margin-bottom: 24px;
}
.form__row--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .form__row--double {
    grid-template-columns: 1fr;
  }
}
.form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3340;
  margin-bottom: 8px;
}
.form__required {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: #f26419;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
}
.form__optional {
  font-size: 1.1rem;
  font-weight: 600;
  color: #9aa3b2;
  background: #f1f3f7;
  padding: 2px 6px;
  border-radius: 4px;
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e6ed;
  border-radius: 8px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #2d3340;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.form__input::-moz-placeholder, .form__select::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #9aa3b2;
}
.form__input::placeholder, .form__select::placeholder, .form__textarea::placeholder {
  color: #9aa3b2;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: #f26419;
  box-shadow: 0 0 0 3px rgba(242, 100, 25, 0.12);
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%239aa3b2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__radio-group--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.form__radio-label, .form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  color: #5a6270;
  cursor: pointer;
}
.form__radio-label {
  align-items: center;
}
.form__radio, .form__checkbox {
  width: 18px;
  height: 18px;
  accent-color: #f26419;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
}
.form__radio {
  margin-top: 0;
}
.form__link {
  color: #f26419;
  text-decoration: underline;
  transition: color 0.2s;
}
.form__link:hover {
  color: #ff8c42;
}
.form__submit {
  width: 100%;
  justify-content: center;
  font-size: 1.6rem;
  padding: 18px;
  margin-top: 8px;
  background: #f26419;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(242, 100, 25, 0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.form__submit:hover {
  background: #ff8c42;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 100, 25, 0.5);
}
.form__divider {
  border: none;
  border-top: 1px solid #e2e6ed;
  margin: 32px 0;
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.loading-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}
.loading-overlay__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #e2e6ed;
  border-top-color: #f26419;
  border-radius: 50%;
  animation: loading-spin 0.75s linear infinite;
}
.loading-overlay__text {
  font-size: 15px;
  font-weight: 600;
  color: #5a6270;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.5px;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.confirm-table__row {
  border-bottom: 1px solid #e2e6ed;
}
.confirm-table__row:first-child {
  border-top: 1px solid #e2e6ed;
}
.confirm-table__th {
  padding: 16px 20px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #5a6270;
  background: #f8f9fc;
  text-align: left;
  width: 180px;
  vertical-align: top;
}
@media (max-width: 768px) {
  .confirm-table__th {
    display: block;
    width: 100%;
    padding: 12px 16px 4px;
    border-bottom: none;
  }
}
.confirm-table__td {
  padding: 16px 20px;
  font-size: 1.4rem;
  color: #2d3340;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .confirm-table__td {
    display: block;
    padding: 4px 16px 12px;
  }
}

.confirm-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  .confirm-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .confirm-actions__back, .confirm-actions__submit {
    width: 100%;
    text-align: center;
  }
}
.confirm-actions__back {
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #5a6270;
  background: #f1f3f7;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.confirm-actions__back:hover {
  background: #e2e6ed;
}
.confirm-actions__submit {
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  background: #f26419;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(242, 100, 25, 0.4);
  transition: background 0.2s, transform 0.2s;
}
.confirm-actions__submit:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

.thanks {
  padding: 80px 24px 100px;
  background: #f8f9fc;
}
@media (max-width: 768px) {
  .thanks {
    padding: 56px 20px 72px;
  }
}
.thanks__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.thanks__icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #f26419 0%, #ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(242, 100, 25, 0.35);
}
.thanks__title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 16px;
  line-height: 1.4;
}
.thanks__desc {
  font-size: 1.5rem;
  color: #5a6270;
  line-height: 1.9;
  margin-bottom: 48px;
}
.thanks__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  border: 1px solid #e2e6ed;
  text-align: left;
  margin-bottom: 48px;
}
.thanks__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.thanks__card-title::before {
  content: "";
  width: 4px;
  height: 16px;
  background: #f26419;
  border-radius: 2px;
  display: inline-block;
}
.thanks__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thanks__step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.4rem;
  color: #5a6270;
  line-height: 1.7;
}
.thanks__step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #1a2744;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-top: 1px;
}
.thanks__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.thanks__btn {
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.thanks__btn--primary {
  background: #f26419;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(242, 100, 25, 0.4);
}
.thanks__btn--primary:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}
.thanks__btn--secondary {
  background: #f1f3f7;
  color: #2d3340;
}
.thanks__btn--secondary:hover {
  background: #e2e6ed;
}

.news-list {
  padding: 72px 24px 100px;
  background: #f8f9fc;
}
@media (max-width: 768px) {
  .news-list {
    padding: 48px 20px 72px;
  }
}
.news-list__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.news-list__filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .news-list__filter {
    margin-bottom: 32px;
  }
}
.news-list__filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 1.3rem;
  font-weight: 600;
  border: 1.5px solid #e2e6ed;
  background: #ffffff;
  color: #5a6270;
  cursor: pointer;
  transition: all 0.2s;
}
.news-list__filter-btn:hover {
  border-color: #f26419;
  color: #f26419;
}
.news-list__filter-btn--active {
  background: #f26419;
  border-color: #f26419;
  color: #ffffff;
}
.news-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .news-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-list__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.news-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .news-list__pagination {
    margin-top: 48px;
  }
}
.news-list__page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border: 1.5px solid #e2e6ed;
  background: #ffffff;
  color: #5a6270;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.news-list__page-btn:hover {
  border-color: #f26419;
  color: #f26419;
}
.news-list__page-btn--active {
  background: #f26419;
  border-color: #f26419;
  color: #ffffff;
}
.news-list__page-btn--arrow {
  font-size: 1.8rem;
  color: #9aa3b2;
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
.news-card {
  text-decoration: none;
  display: block;
}
.news-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f1f3f7;
}
.news-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s;
}
.news-card:hover .news-card__img {
  transform: scale(1.04);
}
.news-card__body {
  padding: 20px 24px 24px;
}
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.news-card__date {
  font-size: 1.2rem;
  color: #9aa3b2;
  font-family: "Inter", sans-serif;
}
.news-card__cat {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
}
.news-card__cat--info {
  background: rgba(26, 39, 68, 0.08);
  color: #1a2744;
}
.news-card__cat--campaign {
  background: rgba(242, 100, 25, 0.12);
  color: #f26419;
}
.news-card__cat--event {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.news-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3340;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__excerpt {
  font-size: 1.3rem;
  color: #9aa3b2;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-single {
  padding: 72px 24px 100px;
  background: #f8f9fc;
}
@media (max-width: 768px) {
  .news-single {
    padding: 48px 20px 72px;
  }
}
.news-single__inner {
  max-width: 800px;
  margin: 0 auto;
}
.news-single__article {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
  margin-bottom: 64px;
}
.news-single__eyecatch {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-single__eyecatch-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-single__header {
  padding: 40px 48px 32px;
}
@media (max-width: 768px) {
  .news-single__header {
    padding: 28px 24px 24px;
  }
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.news-single__date {
  font-size: 1.3rem;
  color: #9aa3b2;
  font-family: "Inter", sans-serif;
}
.news-single__cat {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(242, 100, 25, 0.12);
  color: #f26419;
  font-family: "Inter", sans-serif;
}
.news-single__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #1a2744;
  line-height: 1.5;
}
.news-single__body {
  padding: 0 48px 48px;
}
@media (max-width: 768px) {
  .news-single__body {
    padding: 0 24px 36px;
  }
}
.news-single__body p {
  font-size: 1.5rem;
  color: #5a6270;
  line-height: 1.9;
  margin-bottom: 24px;
}
.news-single__body h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2744;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid #f26419;
}
.news-single__body h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2d3340;
  margin: 32px 0 12px;
}
.news-single__body ul,
.news-single__body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.news-single__body ul li,
.news-single__body ol li {
  font-size: 1.5rem;
  color: #5a6270;
  line-height: 1.8;
  margin-bottom: 8px;
}
.news-single__body img {
  width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}
.news-single__body a {
  color: #f26419;
  text-decoration: underline;
}
.news-single__body a:hover {
  color: #ff8c42;
}

.news-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 48px;
  border-top: 1px solid #e2e6ed;
}
@media (max-width: 768px) {
  .news-share {
    padding: 20px 24px;
  }
}
.news-share__label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #5a6270;
  flex-shrink: 0;
}
.news-share__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.news-share__btn:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
.news-share__btn--x {
  background: #000000;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.news-share__btn--line {
  background: #06c755;
  color: #ffffff;
  font-size: 1.8rem;
}

.news-back {
  margin-bottom: 32px;
}
.news-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a2744;
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid #e2e6ed;
  border-radius: 100px;
  background: #ffffff;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.news-back__btn:hover {
  background: #1a2744;
  border-color: #1a2744;
  color: #ffffff;
}

.news-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .news-nav {
    grid-template-columns: 1fr;
  }
}
.news-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-nav__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
.news-nav__link--prev {
  justify-content: flex-start;
}
.news-nav__link--next {
  justify-content: flex-end;
  text-align: right;
}
@media (max-width: 768px) {
  .news-nav__link--next {
    justify-content: flex-start;
    text-align: left;
  }
}
.news-nav__arrow {
  font-size: 2rem;
  color: #f26419;
  flex-shrink: 0;
}
.news-nav__text {
  font-size: 1.2rem;
  color: #9aa3b2;
  margin-bottom: 4px;
}
.news-nav__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3340;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-related__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news-related__title::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #f26419;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}
.news-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .news-related__grid {
    grid-template-columns: 1fr;
  }
}

.trainers-list {
  padding: 72px 24px 100px;
  background: #f8f9fc;
}
@media (max-width: 768px) {
  .trainers-list {
    padding: 48px 20px 72px;
  }
}
.trainers-list__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.trainers-list__lead {
  font-size: 1.5rem;
  color: #5a6270;
  line-height: 1.9;
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}
@media (max-width: 768px) {
  .trainers-list__lead {
    margin-bottom: 48px;
  }
}
.trainers-list__grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .trainers-list__grid {
    gap: 64px;
  }
}

.trainer-detail {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .trainer-detail {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .trainer-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.trainer-detail:nth-child(even) {
  grid-template-areas: "body photo";
}
@media (max-width: 768px) {
  .trainer-detail:nth-child(even) {
    grid-template-areas: unset;
  }
}
.trainer-detail:nth-child(odd) {
  grid-template-areas: "photo body";
}
@media (max-width: 768px) {
  .trainer-detail:nth-child(odd) {
    grid-template-areas: unset;
  }
}
.trainer-detail__photo-wrap {
  grid-area: photo;
}
@media (max-width: 768px) {
  .trainer-detail__photo-wrap {
    grid-area: auto;
  }
}
.trainer-detail__photo {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.12);
}
@media (max-width: 768px) {
  .trainer-detail__photo {
    aspect-ratio: 4/3;
    border-radius: 16px;
  }
}
.trainer-detail__sns {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.trainer-detail__sns-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.6rem;
  transition: transform 0.2s, opacity 0.2s;
}
.trainer-detail__sns-link:hover {
  transform: scale(1.1);
  opacity: 0.85;
}
.trainer-detail__sns-link--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
}
.trainer-detail__sns-link--x {
  background: #000000;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.trainer-detail__body {
  grid-area: body;
}
@media (max-width: 768px) {
  .trainer-detail__body {
    grid-area: auto;
  }
}
.trainer-detail__role {
  font-size: 1.3rem;
  font-weight: 700;
  color: #f26419;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.trainer-detail__name {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 4px;
  line-height: 1.3;
}
.trainer-detail__name-en {
  font-size: 1.4rem;
  color: #9aa3b2;
  font-family: "Inter", sans-serif;
  margin-bottom: 24px;
}
.trainer-detail__catch {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2d3340;
  line-height: 1.6;
  margin-bottom: 16px;
  border-left: 4px solid #f26419;
}
.trainer-detail__bio {
  font-size: 1.4rem;
  color: #5a6270;
  line-height: 1.9;
  margin-bottom: 32px;
}
.trainer-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.trainer-detail__tag {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(26, 39, 68, 0.06);
  color: #1a2744;
}
.trainer-detail__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .trainer-detail__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .trainer-detail__stats {
    grid-template-columns: 1fr 1fr;
  }
}
.trainer-detail__stat {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.08);
  border: 1px solid #e2e6ed;
}
.trainer-detail__stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f26419;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  margin-bottom: 4px;
}
.trainer-detail__stat-label {
  font-size: 1.1rem;
  color: #9aa3b2;
  font-weight: 600;
}
.trainer-detail__certs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 3.2rem;
}
.trainer-detail__cert-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3340;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trainer-detail__cert-title::before {
  content: "";
  width: 3px;
  height: 14px;
  background: #f26419;
  border-radius: 2px;
  display: inline-block;
}
.trainer-detail__cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: #5a6270;
}
.trainer-detail__cert::before {
  content: "✓";
  color: #f26419;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trainer-detail__schedule {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e6ed;
  margin-bottom: 32px;
}
.trainer-detail__schedule-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3340;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trainer-detail__schedule-days {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.trainer-detail__schedule-day {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  background: #f1f3f7;
  color: #9aa3b2;
}
.trainer-detail__schedule-day--active {
  background: #1a2744;
  color: #ffffff;
}
.trainer-detail__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trainer-detail__btn {
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.trainer-detail__btn--primary {
  background: #f26419;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(242, 100, 25, 0.4);
}
.trainer-detail__btn--primary:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}
.trainer-detail__btn--secondary {
  background: #ffffff;
  color: #2d3340;
  border: 1.5px solid #e2e6ed;
}
.trainer-detail__btn--secondary:hover {
  background: #f1f3f7;
}

.trainers-cta {
  background: linear-gradient(135deg, #1a2744 0%, #243660 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trainers-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 100, 25, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .trainers-cta {
    padding: 64px 24px;
  }
}
.trainers-cta__title {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
}
.trainers-cta__desc {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.trainers-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.trainers-cta__btn {
  padding: 18px 40px;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.trainers-cta__btn--primary {
  background: #f26419;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(242, 100, 25, 0.5);
}
.trainers-cta__btn--primary:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}
.trainers-cta__btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.trainers-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}/*# sourceMappingURL=style.css.map */