@charset "UTF-8";

/* =========================================================
  Cura Lymph School LP CSS
  後から修正しやすいように、セクション単位で整理しています。
========================================================= */

/* =========================
  01. Variables
========================= */
:root {
  --main: #4a403b;
  --text: #333;
  --line: #e6e1d5;
  --bg: rgba(255, 255, 255, 0.6);
  --bg-soft: #e9e3dd;
  --white: #fff;
  --line-alpha: rgba(230, 225, 213, 0.86);
  --white-alpha: rgba(255, 255, 255, 0.88);
  --shadow: 0 18px 42px rgba(74, 64, 59, 0.08);
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
}

/* =========================
  02. Base
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--main);
  background: var(--bg);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.04em;
}

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

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

p {
  margin: 0;
  color: var(--text);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--main);
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(32px, 4.5vw, 54px);
}
h1 span{
	font-size: 20px;
}

h2 {
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.85;
}
.ttl-h2{
  margin: 0;
  color: var(--main);
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: 0.05em;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.85;	
	
}

h3 {
  font-size: 18px;
}

.text-small{
  font-size: 16px;
}
/* =========================
  03. Common Layout
========================= */
.container {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.center {
  text-align: center;
}

.center p {
  margin-left: auto;
  margin-right: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 124px) 20px;
  overflow: hidden;
}

.intro,
.about,
.compare,
.course,
.profile,
.access {
  background: var(--bg);
}

.worry,
.reason,
.learn,
.faq {
  background: var(--bg-soft);
}

.flow {
  background: var(--white);
}

.section-head {
  width: min(780px, 100%);
  margin: 0 auto 44px;
}

.section-head h2 {
  margin-bottom: 42px;
  text-align: center;
}

.section-head .ttl-h2 {
  margin-bottom: 42px;
  text-align: center;
}
.section-head p,
.split p,
.intro p:not(.eyebrow),
.reason-grid p,
.course-card p,
.faq-list p,
.flow-list p {
  color: var(--text);
  line-height: 2;
  font-family: var(--serif);
}

.section-head p,
.split p,
.intro p:not(.eyebrow) {
  margin-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

/* =========================
  04. Header / Navigation
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid var(--line-alpha);
  box-shadow: 0 8px 24px rgba(74, 64, 59, 0.04);
  backdrop-filter: blur(14px);
}

.logo {
  display: grid;
  gap: 0;
  margin: 0;
  line-height: 1.15;
}

.logo span {
  color: var(--main);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.logo small {
  color: var(--main);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-nav {
  align-items: center;
  color: var(--main);
  font-size: 16px;
}

.header-nav .navbar-nav {
  gap: 22px;
}

.header-nav .nav-link {
  color: var(--main);
  padding: 0;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus {
  color: var(--main);
}

.navbar-toggler {
  border-color: var(--line);
  box-shadow: none;
}

/* =========================
  05. Buttons / CTA
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.nav-cta,
.btn-primary,
.fixed-line {
  border: 0 !important;
  color: var(--white) !important;
  background: #00b900;
  box-shadow: 0 12px 24px rgba(74, 64, 59, 0.18);
  outline: 0 !important;
  text-decoration: none;
  font-family: var(--sans) !important;
}

.nav-cta i,
.btn-primary i,
.fixed-line i {
  color: var(--white) !important;
}

.nav-cta:hover,
.nav-cta:focus,
.nav-cta:active,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.fixed-line:hover,
.fixed-line:focus,
.fixed-line:active {
  border: 0 !important;
  color: var(--white) !important;
  background: var(--main);
  box-shadow: 0 12px 24px rgba(74, 64, 59, 0.18) !important;
  outline: 0 !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 999px;
}

.btn-sub {
  color: var(--main);
  background: rgba(255, 255, 255, 0.82);
}

/* =========================
  06. Hero
========================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 550px;
  padding: 92px clamp(22px, 8vw, 110px);
  overflow: hidden;
  background: var(--bg-soft);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero p {
  line-height: 2.5;
}
.hero .lead {
  line-height: 2;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(74, 64, 59, 0.52) 0%, rgba(74, 64, 59, 0.34) 42%, rgba(255, 255, 255, 0.08) 74%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(230, 225, 213, 0.12) 0%, rgba(74, 64, 59, 0.18) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 33%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding-top: 10px;
}

.hero h1,
.hero .lead {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(74, 64, 59, 0.22);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.lead {
  max-width: 560px;
  margin-top: 18px;
  font-size: 15px;
}

.hero-actions,
.course-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.intro {
  position: relative;
  background-image: url("../images/concept-bg.jpg"); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8); 
  z-index: 1;
}

.intro .container {
  position: relative;
  z-index: 2;
}
/* =========================
  07. Worry / Check List
========================= */
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 17px 20px 17px 52px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white-alpha);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--main);
  border-bottom: 2px solid var(--main);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: var(--main);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}
.worry {
  position: relative;
  background-image: url("../images/worry-bg.jpg"); /* 背景画像のパスに変更 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
}

.worry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* 黒70% */
  z-index: 0;
}

.worry .container {
  position: relative;
  z-index: 1;
}

.worry h2,
.worry .ttl-h2,
.worry p,
.worry .eyebrow,
.worry .text-link {
  color: #fff;
}

.worry li{
  color: #333;
}

.worry .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
  text-decoration: none;
}

.worry .text-link:hover {
  opacity: 0.8;
}

/* =========================
  08. About / Profile Images
========================= */
.photo-stack {
  position: relative;
  min-height: 520px;
}

.photo-main,
.photo-sub,
.profile-image img {
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-main {
  height: 430px;
}

@media (min-width: 981px) {
  .about .photo-main {
    transform: translateX(-90px);
  }
}
.photo-sub {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 58%;
  height: 250px;
  border: 9px solid var(--bg);
}

.profile-image img {
  height: 540px;
  background: #333;
}

.profile {
  position: relative;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.82)
    ),
    url("../images/profile-bk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================
  09. Reason
========================= */
.reason-grid,
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reason-grid article,
.course-card,
details,
.compare-table,
.access-box {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white-alpha);
  box-shadow: none;
}

.reason-photo {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
  border-radius: 0;
}

.reason-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reason-grid article {
  position: relative;
  min-height: 300px;
  padding: 32px 28px;
  overflow: hidden;
}

.reason-grid article .reason-photo {
  width: calc(100% + 56px);
  margin: -32px -28px 24px;
}
.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--main);
  background: var(--line);
  font-family: var(--serif);
  font-weight: 700;
}

.reason-grid article .num {
  position: relative;
  z-index: 2;
  display: flex;
  margin: -30px auto 24px;
}

.reason {
  position: relative;
  overflow: hidden;
}

.reason::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/reason-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 0;
}

.reason .container {
  position: relative;
  z-index: 1;
}


.reason-grid p,
.course-card p,
.faq-list p,
.flow-list p {
  margin-top: 12px;
}

/* =========================
  10. Compare
========================= */
.compare-table {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare-row > div {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.compare-row > div + div {
  border-left: 1px solid var(--line);
}

.compare-row:last-child > div {
  border-bottom: 0;
}

/* 見出し共通 */
.compare-row.head > div {
  background: var(--main);
  font-family: var(--serif);
}

/* Curaスクール：1列目を強調 */
.compare-row.head > div:first-child {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

/* 一般的なリンパスクール：2列目を控えめに */
.compare-row.head > div:nth-child(2) {
  color: var(--main);
  background: var(--bg-soft);
  font-size: 18px;
  font-weight: 500;
}

/* 本文：Curaスクール 1列目 */
.compare-row:not(.head) > div:first-child {
  color: var(--main);
  background: var(--bg);
  font-size: 1.2em;
  font-weight: 700;
}

/* 本文：一般的なリンパスクール 2列目 */
.compare-row:not(.head) > div:nth-child(2) {
  color: var(--text);
  background: var(--white);
  font-size: 1em;
  font-weight: 400;
}
/* =========================
  11. Curriculum Slider
========================= */
.learn .section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.learn-slider-wrap {
  position: relative;
}

.learn-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 50px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.learn-slider::-webkit-scrollbar {
  height: 6px;
}

.learn-slider::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--line);
}

.learn-card {
  flex: 0 0 260px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(74, 64, 59, 0.08);
  scroll-snap-align: start;
}

.learn-card > div {
  padding: 18px 18px 20px;
}

.learn-card .parts {
  padding: 0;
  margin: 0;
}

.learn-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--main);
  background: var(--line);
  font-size: 16px;
}

.learn-card .parts {
  margin: 0;
  color: var(--main);
  font-size: 20px;
  line-height: 1.5;
}

.learn-card p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.learn-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  color: var(--white);
  background: var(--main);
  box-shadow: 0 8px 20px rgba(74, 64, 59, 0.18);
  cursor: pointer;
  transition: 0.3s;
}

.learn-arrow:hover {
  background: var(--text);
}

.learn-arrow i {
  font-size: 14px;
}

.learn-prev {
  left: 0;
}

.learn-next {
  right: 0;
}

/* =========================
  12. Course
========================= */
.course-card {
  overflow: hidden;
  background: var(--white);
}

.course-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.97) brightness(1.02);
}

.course-body {
  padding: 24px;
}

.course-body h3 {
  min-height: 30px;
  font-size: 20px;
}

.tag {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--main);
  background: var(--line);
  font-size: 12px;
  font-weight: 700;
}

.price {
  margin-top: 10px;
  color: var(--main);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
}

.course-desc {
  margin-top: 12px;
  text-align: center;
}

.course-text {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8 !important;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.course-desc.is-open .course-text {
  display: block;
  overflow: visible;
}

.course-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  border: none;
  border-radius: 999px;
  color: var(--white);
  background: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--sans) !important;
}

.course-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.3s;
}

.course-toggle:hover {
  color: var(--white);
  background: var(--main);
}

.course-toggle:focus {
  outline: none;
}

.course-toggle:focus-visible {
  outline: 2px solid var(--line);
  outline-offset: 3px;
}

.course-desc.is-open .course-toggle::after {
  transform: rotate(180deg);
}

.course-body small {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

.course-body small span {
  flex: 0 0 auto;
  padding: 1px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.course-cta {
  justify-content: center;
  margin: 42px auto 0;
  padding: 28px;
  border-radius: 3px;
  background: var(--line);
  text-align: center;
}

.course-cta p {
  color: var(--main);
  font-weight: 700;
}

/* =========================
  13. Flow
========================= */
.flow .section-head {
  max-width: 760px;
  margin: 0 auto 42px;
}

.flow-list {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: 0 10px 28px rgba(74, 64, 59, 0.05);
}

.flow-list li + li {
  margin-top: 18px;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 51px;
  bottom: -18px;
  width: 1px;
  height: 18px;
  background: rgba(74, 64, 59, 0.22);
}

.flow-list li > span {
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.flow-list strong {
  display: block;
  margin: 0 0 6px;
  color: var(--main);
  font-size: 20px;
  line-height: 1.5;
}

.flow-list p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
  14. FAQ
========================= */
.faq-list {
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  margin: 0 auto;
}

summary {
  padding: 20px 24px;
  color: var(--main);
  font-weight: 700;
  cursor: pointer;
}

details p {
  padding: 0 24px 22px;
}

/* =========================
  15. Access
========================= */
.access-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(880px, 100%);
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
}

.access-box h3 {
  margin-bottom: 14px;
}

.access-box p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.access-box p + p {
  margin-top: 8px;
}

.access-box i {
  width: 18px;
  margin-top: 8px;
  color: var(--main);
  text-align: center;
}

.access-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 190px;
  padding: 13px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--main);
  font-weight: 700;
}

.access-tel i {
  width: auto;
  margin: 0;
  color: var(--white);
}

.access-map {
  width: min(880px, 100%);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(74, 64, 59, 0.06);
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 360px;
}

/* =========================
  16. Last CTA / Footer / Fixed CTA
========================= */
.last-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 20px;
  color: var(--white);
  background:
    linear-gradient(rgba(74, 64, 59, 0.5), rgba(74, 64, 59, 0.5)),
    url("../images/learn-menu.jpg") center/cover;
}

.last-cta ttl-h2 {
  font-size: clamp(25px, 3vw, 30px);
  line-height: 1.85;
}

.last-cta .ttl-h2,
.last-cta p,
.last-cta .eyebrow {
  color: var(--white);
}

.last-cta p:not(.eyebrow) {
  margin-top: 18px;
}
@media (max-width: 640px) {
  .last-cta {
    background-position: center, 70% center;
  }
}
.site-footer {
  padding: 38px 20px 86px;
  color: var(--text);
  background: var(--bg-soft);
  text-align: center;
}

.footer-logo {
  color: var(--main);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.fixed-line {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 178px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}


/* =========================
  13. Life Story / Instructors / Future
========================= */
.life-concept,
.future {
  background: var(--white);
}

.instructors {
  background: var(--bg-soft);
}

.life-concept .section-head,
.instructors .section-head,
.future .section-head {
  margin-bottom: 42px;
}

.life-concept .section-head > p:not(.eyebrow):not(.ttl-h2),
.instructors .section-head > p:not(.eyebrow):not(.ttl-h2),
.future .section-head > p:not(.eyebrow):not(.ttl-h2) {
  margin-top: 18px;
}

.life-story-wrap {
  margin-top: clamp(58px, 8vw, 92px);
}

.life-story {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.life-story::-webkit-scrollbar {
  height: 6px;
}

.life-story::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--line);
}

.life-step {
  position: relative;
  flex: 1 0 150px;
  min-width: 150px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
  scroll-snap-align: start;
}

.life-step:not(:last-child)::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 2;
  color: var(--main);
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  transform: translateY(-50%);
}

.life-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--main);
  background: var(--line);
}

.life-step strong {
  display: block;
  margin-top: 14px;
  color: var(--main);
  font-size: 17px;
  line-height: 1.5;
}

.life-step p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;	
}

.life-message {
  margin: 44px auto 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white-alpha);
}

.life-message > p + p {
  margin-top: 16px;
}

.life-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.life-quote {
  margin-top: 30px !important;
  color: var(--main) !important;
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.instructor-story-title {
  position: relative;
  margin: 32px 0 24px;
  padding-bottom: 12px;
  color: #4a403b;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.instructor-story-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 2px;
  border-radius: 10px;
  background-color: var(--main);
  transform: translateX(-50%);
}
.instructor-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.instructor-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}

.instructor-main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.instructor-story {
  border-top: 1px solid var(--line);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.instructor-body {
  padding:0 0 15px;
}

.instructor-body h3 {
  font-size: 24px;
}

.instructor-body > p:not(.tag):not(.instructor-label) {
  margin-top: 16px;
}

.instructor-label {
  margin-top: 26px;
  color: var(--main);
  font-size: 17px;
  font-weight: 700;
}

.instructor-check-list {
  margin-top: 14px;
}

.instructor-check-list li {
  padding-top: 12px;
  padding-bottom: 12px;
}

.instructor-check-list li::before {
  top: 20px;
}

@media (min-width: 981px) {
  .instructor-story .life-story {
    overflow: visible;
    padding-right: 0;
    padding-left: 0;
  }

  .instructor-story .life-step {
    flex: 1 1 0;
    min-width: 0;
    padding: 22px 10px;
  }

  .instructor-story .life-step strong {
    font-size: 15px;
  }

  .instructor-story .life-step p {
    font-size: 12px;
  }
}
.instructors {
  background: var(--bg-soft);
}

.instructor-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.instructor-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}

.instructor-image {
  overflow: hidden;
  border-radius: 3px;
}

.instructor-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  padding-right:25px;	
}

.instructor-body h3 {
  margin-bottom: 20px;
  font-size: clamp(22px, 2.5vw, 28px);
}

.instructor-body p:not(.tag) {
  margin-top: 16px;
  color: var(--text);
  line-height: 2;
}

.instructor-story {
  border-top: 1px solid var(--line);
}

.instructor-story-title {
  margin-bottom: 28px;
  color: var(--main);
  font-family: var(--serif);
  font-size: clamp(19px, 2.5vw, 26px);
  font-weight: 700;
  text-align: center;
}

.life-story {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.life-step {
  position: relative;
  padding: 22px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg);
  text-align: center;
}

.life-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 43px;
  right: -13px;
  z-index: 2;
  width: 13px;
  height: 1px;
  background: var(--line);
}

.life-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--main);
  background: var(--line);
}

.life-step strong {
  display: block;
  min-height: 48px;
  color: var(--main);
  font-size: 20px;
  line-height: 1.6;
}

.life-step p {
  margin-top: 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .instructor-card {
    padding: 22px 18px;
  }

  .instructor-profile {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .instructor-image img {
    height: 360px;
	padding-right: 0px; 
	padding-bottom:15px;  
  }

  .life-story {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .life-step {
    flex: 0 0 180px;
    scroll-snap-align: start;
  }

  .life-step:not(:last-child)::after {
    display: none;
  }
}


/* =========================
  16. Future Message / Step Slider
========================= */
.future-message {
  max-width: 860px;
  margin: 0 auto 50px;
  padding: 36px 40px;
  border-radius: 16px;
  background: #fbfaf8;
  text-align: center;
}

.future-message h3 {
  margin-bottom: 24px;
  color: var(--main);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.future-message > p {
  margin-bottom: 12px;
  line-height: 2;
}

.future-message-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 620px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.future-message-list li {
  position: relative;
  padding: 12px 15px 12px 38px;
  border-radius: 8px;
  background: var(--white);
}

.future-message-list li::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 15px;
  color: var(--main);
  font-weight: 700;
}

.future-list-title {
  margin-bottom: 28px;
  color: var(--main);
  font-size: clamp(21px, 2.4vw, 28px);
}

.future-slider-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.future-list {
  display: flex;
  gap: 22px;
  width: 100%;
  margin: 0;
  padding: 8px 52px 24px;
  overflow-x: auto;
  overflow-y: hidden;
  list-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--line) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.future-list::-webkit-scrollbar {
  height: 6px;
}

.future-list::-webkit-scrollbar-track {
  background: transparent;
}

.future-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--line);
}

.future-card {
  position: relative;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(74, 64, 59, 0.08);
  scroll-snap-align: start;
}

.future-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.future-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(74, 64, 59, 0.28));
  pointer-events: none;
}

.future-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.future-card:hover .future-card-image img {
  transform: scale(1.04);
}

.future-step-number {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.future-card-body {
  position: relative;
  padding: 34px 24px 26px;
  text-align: center;
}

.future-icon {
  position: absolute;
  top: -27px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--main);
  background: var(--line);
  font-size: 19px;
  transform: translateX(-50%);
}

.future-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  color: var(--main);
  font-size: 19px;
  line-height: 1.65;
}

.future-card p {
  margin-top: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.future-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--main);
  box-shadow: 0 8px 20px rgba(74, 64, 59, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.future-arrow:hover {
  background: var(--text);
  transform: translateY(-50%) scale(1.05);
}

.future-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.future-prev {
  left: 0;
}

.future-next {
  right: 0;
}

.future-slider-guide {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--text);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 991px) {
  .future-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 767px) {
  .future-message {
    margin-bottom: 36px;
    padding: 28px 20px;
    text-align: left;
  }

  .future-message h3 {
    font-size: 21px;
    text-align: center;
  }

  .future-message-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .future-list-title {
    margin-bottom: 22px;
    font-size: 21px;
    line-height: 1.65;
  }

  .future-list {
    gap: 14px;
    padding: 6px 20px 18px 0;
  }

  .future-card {
    flex-basis: 84%;
  }

  .future-card-body {
    min-height: 205px;
    padding: 32px 18px 22px;
  }

  .future-card strong {
    min-height: 58px;
    font-size: 18px;
  }

  .future-card p {
    font-size: 13px;
  }

  .future-arrow {
    display: none;
  }

  .future-slider-guide {
    display: flex;
  }
}

.voice {
  background-color: var(--bg-soft);
}

.voice-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 45px 50px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 35px rgba(74, 64, 59, 0.08);
}

.voice-heading {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e6e1d5;
  text-align: center;
}

.voice-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  border-radius: 30px;
  background-color: #f1eee8;
  color: #827671;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.voice-heading h3 {
  margin: 0;
  color: #4a403b;
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.voice-text p {
  margin-bottom: 18px;
  line-height: 2;
}

.voice-text p:last-child {
  margin-bottom: 0;
}

.voice-text strong {
  color: #4a403b;
  font-weight: 700;
}

@media (max-width: 767px) {
  .voice-card {
    padding: 30px 20px;
    border-radius: 14px;
  }

  .voice-heading {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .voice-heading h3 {
    font-size: 20px;
  }

  .voice-text p {
    margin-bottom: 16px;
    line-height: 1.9;
  }
}

.voice-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.voice-text {
  flex: 1;
  min-width: 0;
}

.voice-image {
  flex: 0 0 36%;
  max-width: 400px;
  border: solid 1px #ddd;
}

.voice-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

/* スマートフォン */
@media (max-width: 767.98px) {
  .voice-content {
    flex-direction: column;
    gap: 24px;
  }

  .voice-image {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .voice-image img {
    aspect-ratio: 4 / 3;
  }
}
/* =========================
  17. Responsive
========================= */
@media (max-width: 980px) {
  .header-nav .navbar-nav {
    gap: 12px;
    padding-top: 14px;
  }

  .header-nav .nav-link {
    padding: 6px 0;
  }

  .header-nav .nav-cta {
    width: fit-content;
    padding: 8px 16px;
  }

  .hero {
    min-height: 650px;
    padding-bottom: 128px;
  }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(74, 64, 59, 0.58) 0%, rgba(74, 64, 59, 0.32) 62%, rgba(255, 255, 255, 0.04) 100%),
      linear-gradient(180deg, rgba(230, 225, 213, 0.06) 0%, rgba(74, 64, 59, 0.22) 100%);
  }

  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .reason-grid,
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .instructor-main {
    grid-template-columns: 1fr;
  }

  .instructor-image img {
    height: 460px;
    min-height: 0;
  }

}

@media screen and (max-width: 768px) {


  .learn-prev {
    left: 4px;
  }

  .learn-next {
    right: 4px;
  }

  .learn-arrow {
    top: 44%;
    width: 38px;
    height: 38px;
  }
  .learn-slider-wrap {
    overflow: hidden;
  }

  .learn-slider {
    gap: 14px;

    /* 矢印と文章が重ならないよう、左右に余白を確保 */
    padding: 4px 30px 18px;

    /* スクロール後もメインカードが中央に来る */
    scroll-padding-inline: 52px;
  }

  .learn-card {
    /* 左右に次のカードが少し見える幅 */
    flex: 0 0 calc(100% - 50px);

    /* カードの中央を基準に止める */
    scroll-snap-align: center;
  }

  .learn-prev {
    left: 6px;
  }

  .learn-next {
    right: 6px;
  }

  .learn-arrow {
    top: 50%;
    width: 38px;
    height: 38px;
    transform: translateY(-50%);
  }	
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .logo span {
    font-size: 23px;
  }

  .nav-cta {
    padding: 8px 13px;
    font-size: 13px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 0 0 56px;
    overflow: visible;
    background: var(--bg);
  }

  .hero-bg {
    position: relative;
    inset: auto;
    z-index: 1;
    height: auto;
  }

  .hero-bg::before {
    display: none;
  }

  .hero-bg img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center center;
    filter: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: calc(100% - 36px);
    margin: -34px auto 0;
    padding: 28px 20px 48px;
    border-radius: 22px 22px 0 0;
    background: #fff;
  }

  .hero h1 {
    color: var(--main);
    text-align: center;
    text-shadow: none;
    font-size: 27px;
    line-height: 1.65;
  }
h1 span{
	font-size: 16px;
}
	.text-small{
  font-size: 13px;
}
.hero .btn-sub {
    color: var(--main);
    background: var(--bg-soft);
}
  .hero .lead {
    margin-top: 16px;
    color: var(--text);
    text-shadow: none;
    font-size: 15px;
    line-height: 2 !important;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  h2 {
    font-size: 25px;
  }
	.ttl-h2{
	font-size: 25px;	
	}	

  .section {
    padding: 68px 18px;
  }

  .reason-grid,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-main {
    height: 330px;
  }

  .photo-sub {
    position: static;
    width: 82%;
    height: 210px;
    margin: -52px 0 0 auto;
  }

  .course-card img {
    height: 210px;
  }

  .course-body h3 {
    min-height: auto;
  }

  .course-body small {
    display: block;
  }

  .course-body small span {
    display: inline-flex;
    margin: 0 0 6px;
  }

  .profile-image img {
    height: 360px;
  }

  .life-story {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .life-step {
    flex-basis: calc(82vw - 36px);
    min-width: calc(82vw - 36px);
  }

  .life-step:not(:last-child)::after {
    right: -13px;
  }

  .life-check-list {
    grid-template-columns: 1fr;
  }

  .instructor-image img {
    height: 360px;
  }


  .instructor-story {
    padding: 6px 15px 10px;
  }


  .compare-table {
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
  }

  .compare-row {
    grid-template-columns: 230px 190px;
    min-width: 420px;
  }

  .compare-row > div {
    padding: 15px 16px;
    font-size: 13px;
    line-height: 1.7;
  }

  .compare-row.head > div {
    white-space: nowrap;
  }

  /* Curaスクール：1列目 */
  .compare-row.head > div:first-child {
    font-size: 17px;
    color: var(--white);
    font-weight: 700;
  }

  /* 一般的なリンパスクール：2列目 */
  .compare-row.head > div:nth-child(2) {
    font-size: 13px;
    color: var(--main);
    background: var(--bg-soft);
    font-weight: 500;
  }

  /* Curaスクール本文 */
  .compare-row:not(.head) > div:first-child {
    font-size: 15px;
    font-weight: 700;
  }

  /* 一般的なリンパスクール本文 */
  .compare-row:not(.head) > div:nth-child(2) {
    font-size: 13px;
    font-weight: 400;
  }

  .flow-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 4px 16px;
    align-items: center;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .flow-list li > span {
    grid-column: 1;
    grid-row: 1 / 3;
    flex: none;
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  .flow-list strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }

  .flow-list p {
    grid-column: 2;
    grid-row: 2;
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .flow-list li:not(:last-child)::after {
    left: 43px;
  }

  .access-box {
    padding: 22px;
  }

  .access-tel {
    width: 100%;
  }

  .access-map {
    margin-top: 22px;
    border-radius: 14px;
  }

  .access-map iframe {
    height: 280px;
  }

  .fixed-line {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}
