@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');

    /* ─── CSS Variables ─────────────────────────── */
    :root {
	--primary: #06c755;
	--primary-dark: #04a344;
	--primary-light: #e8faf0;
	--sub-primary: #2e75b6;
	--sub-primary-light: #e8f2fb;
	--attention: #09bdc6;
	--attention-light: #e6feff;
	--text-dark: #333333;
	--text-light: #7d7d7d;
	--white: #ffffff;
	--bg-gray: #f8f9fa;
	--border: #e5e7eb;
		--orange: #f59e0b;
	--radius: 8px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 16px rgba(0,0,0,0.10);
	--shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    }

    /* ─── Reset & Base ──────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
	font-family: "LINE Seed JP", sans-serif;
	color: var(--text-dark);
	background: var(--white);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ─── Layout ─────────────────────────────────── */
    .container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
    }

    .section {
	padding: 80px 0;
    }

    /* ─── Sticky CTA Bar ─────────────────────────── */
    .sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--border);
	padding: 12px 24px;
	display: flex;
	justify-content: center;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    }

    .sticky-bar .btn-cta {
	width: 100%;
	max-width: 380px;
    }

    /* ─── CTA Button ─────────────────────────────── */
    .btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--attention) 100%);
	color: var(--white);
	font-family: "LINE Seed JP", sans-serif;
	font-size: 18px;
	font-weight: 700;
	padding: 20px 40px;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 4px 16px rgba(6,199,85,0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	text-decoration: none;
    }

    .btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(6,199,85,0.45);
	background: linear-gradient(135deg, #08d95e 0%, var(--primary) 100%);
    }

    .btn-cta:active {
	transform: translateY(-1px);
    }

    .btn-cta .fa {
	font-size: 20px;
    }

    .btn-cta-sub {
	display: block;
	font-size: 11px;
	font-weight: 400;
	opacity: 0.9;
	margin-top: 2px;
    }

    .cta-wrap {
	text-align: center;
	padding: 16px 0 0;
    }

    .cta-period {
	margin-top: 12px;
	font-size: 14px;
	color: var(--text-light);
    }

    /* ─── Header / Hero ──────────────────────────── */
    header {
	background: linear-gradient(160deg, #0a4a24 0%, #0f6b35 45%, #128f45 100%);
	position: relative;
	overflow: hidden;
	padding-bottom: 64px;
    }

    header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 60% 30%, rgba(6,199,85,0.18) 0%, transparent 70%),
			radial-gradient(ellipse 50% 40% at 20% 80%, rgba(46,117,182,0.15) 0%, transparent 60%);
	pointer-events: none;
    }

    .header-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 32px;
	position: relative;
	z-index: 2;
    }

    .header-logo {
	width: clamp(100px, 50%, 200px);
    height: auto;
    align-content: center;
	  }

    .header-logo span {
	color: var(--primary);
    }

    .header-period-badge {
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.2);
	color: var(--white);
	font-size: 13px;
	padding: 6px 16px;
	border-radius: 100px;
	backdrop-filter: blur(4px);
    }

    .hero {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	max-width: 960px;
	margin: 0 auto;
	padding: 48px 32px 0;
    }

    .hero-text {
	color: var(--white);
    }

    .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--attention);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 100px;
	margin-bottom: 20px;
    }

    .hero-badge i {
	font-size: 12px;
    }

    .hero-h1 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 24px;
	letter-spacing: -0.5px;
    }

    .hero-h1 .highlight {
	color: var(--primary);
    }

    .hero-lead {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255,255,255,0.82);
	margin-bottom: 32px;
    }

    .hero-period {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(9, 189, 198, 0.15);
	border: 1px solid rgba(9, 189, 198, 0.4);
	color: var(--attention);
	font-size: 14px;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: var(--radius);
	margin-bottom: 32px;
    }

    .hero-period i {
	color: var(--attention);
    }

    .hero-image-col {
	position: relative;
    }

    .hero-image-wrap {
	position: relative;
    }

    .hero-image-placeholder {
	height: 550px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
    }

    .hero-image-placeholder i {
	font-size: 48px;
	color: rgba(255,255,255,0.25);
    }

    .hero-image-placeholder .name {
	font-size: 15px;
	font-weight: 700;
	color: rgba(255,255,255,0.7);
    }

    .hero-image-placeholder .title {
	font-size: 12px;
	color: rgba(255,255,255,0.45);
	text-align: center;
	padding: 0 16px;
    }

    .ambassador-tag {
	padding: 24px 20px 16px;
    }

    .ambassador-tag p {
	font-size: 12px;
	color: rgba(255,255,255,0.85);
	font-weight: 400;
    }

    .ambassador-tag strong {
	font-size: 12px;
	color: var(--white);
	font-weight: 700;
    }

    /* ─── Campaign Badge Strip ───────────────────── */
    .campaign-strip {
	background: var(--primary);
	padding: 0;
	overflow: hidden;
    }

    .campaign-strip-inner {
	display: flex;
	animation: marquee 20s linear infinite;
	white-space: nowrap;
    }

    .campaign-strip-text {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	padding: 14px 0;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	padding-right: 48px;
    }

    .campaign-strip-text i {
	font-size: 12px;
	opacity: 0.7;
    }

    @keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
    }

    /* ─── Section Header ─────────────────────────── */
    .section-header {
	text-align: center;
	margin-bottom: 56px;
    }

    .section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 12px;
    }

    .section-label::before,
    .section-label::after {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
    }

    .section-h2 {
	font-size: clamp(22px, 3.5vw, 32px);
	font-weight: 800;
	line-height: 1.3;
	color: var(--text-dark);
	margin-bottom: 16px;
    }

    .section-desc {
	font-size: 15px;
	color: var(--text-light);
	max-width: 560px;
	margin: 0 auto;
    }

    /* ─── Course Cards ───────────────────────────── */
    .courses {
	background: var(--bg-gray);
    }

    .course-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	margin-bottom: 40px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .course-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
    }

    .course-card:last-of-type {
	margin-bottom: 0;
    }

    .course-header {
	padding: 32px 40px;
	display: flex;
	align-items: center;
	gap: 24px;
	border-bottom: 1px solid var(--border);
    }

    .course-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
    }

    .course-restaurant .course-icon {
	background: linear-gradient(135deg, #fff3e0, #ffe0b2);
	color: #e65100;
    }

    .course-salon .course-icon {
	background: linear-gradient(135deg, #fce4ec, #f8bbd0);
	color: #c2185b;
    }

    .course-basic .course-icon {
	background: linear-gradient(135deg, var(--sub-primary-light), #bdd7f0);
	color: var(--sub-primary);
    }

    .course-title-wrap {}

    .course-target-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 8px;
    }

    .course-restaurant .course-target-badge {
	background: #fff3e0;
	color: #e65100;
    }

    .course-salon .course-target-badge {
	background: #fce4ec;
	color: #c2185b;
    }

    .course-basic .course-target-badge {
	background: var(--sub-primary-light);
	color: var(--sub-primary);
    }

    .course-h2 {
	font-size: 24px;
	font-weight: 800;
	color: var(--text-dark);
    }

    .course-body {
	padding: 32px 40px;
    }

    /* Benefits Grid */
    .benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 32px;
    }

    .benefit-box {
	border-radius: var(--radius);
	padding: 24px;
	border: 2px solid transparent;
    }

    .benefit-box-ly {
	background: var(--primary-light);
	border-color: var(--primary);
    }

    .benefit-box-cn {
	background: var(--attention-light);
	border-color: var(--attention);
    }

    .benefit-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 100px;
	margin-bottom: 12px;
    }

    .benefit-box-ly .benefit-label {
	background: var(--primary);
	color: var(--white);
    }

    .benefit-box-cn .benefit-label {
	background: var(--attention);
	color: var(--white);
    }

    .benefit-value {
	font-size: 22px;
	font-weight: 800;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 4px;
    }

    .benefit-box-ly .benefit-value { color: var(--primary-dark); }
    .benefit-box-cn .benefit-value { color: var(--attention); }

    /* Attention Gift Box */
    .gift-box {
	background: linear-gradient(135deg, #fff8e1 0%, #fff3cd 100%);
	border: 2px solid var(--orange);
	border-radius: var(--radius);
	padding: 24px 28px;
	margin-top: 16px;
	position: relative;
	overflow: hidden;
    }

    .gift-box::before {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 80px; height: 80px;
	background: linear-gradient(225deg, rgba(245,158,11,0.15) 0%, transparent 60%);
	pointer-events: none;
    }

    .gift-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 100px;
	margin-bottom: 12px;
    }

    .gift-title {
	font-size: 18px;
	font-weight: 800;
	color: #92400e;
	margin-bottom: 8px;
    }

    .gift-desc {
	font-size: 14px;
	color: #78350f;
	line-height: 1.8;
    }

    .gift-desc ul {
	margin-top: 8px;
	padding-left: 4px;
    }

    .gift-desc ul li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 4px;
	font-size: 13px;
    }

    .gift-desc ul li i {
	color: var(--orange);
	margin-top: 3px;
	flex-shrink: 0;
    }

    /* Benefit detail list & notes */
    .benefit-detail-list {
	margin: 10px 0 12px;
	padding-left: 0;
	list-style: none;
    }

    .benefit-detail-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-dark);
	margin-bottom: 6px;
	line-height: 1.5;
    }

    .benefit-detail-list li i {
	color: var(--primary);
	margin-top: 2px;
	flex-shrink: 0;
    }

    .benefit-notes {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(6,199,85,0.25);
	list-style: none;
	padding-left: 0;
    }

    .benefit-notes li {
	font-size: 11px;
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 3px;
	list-style: disc;
	list-style-position: inside;
    }

    .course-plus-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -4px 0 2.5rem;
	position: relative;
	z-index: 1;
    }

    .course-plus-icon {
	width: 40px;
	height: 40px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--text-light);
	box-shadow: var(--shadow-sm);
    }

    /* Basic Course special */
    .gift-ab-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 8px;
    }

    .gift-ab-item {
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid rgba(245,158,11,0.3);
	padding: 16px;
    }

    .gift-ab-label {
	font-size: 13px;
	font-weight: 800;
	color: var(--orange);
	margin-bottom: 6px;
    }

    .gift-ab-title {
	font-size: 14px;
	font-weight: 700;
	color: #92400e;
	margin-bottom: 6px;
    }

    .gift-ab-desc {
	font-size: 12px;
	color: #78350f;
	line-height: 1.7;
    }

    /* ─── Notes ──────────────────────────────────── */
    .notes-section {
	background: var(--bg-gray);
	padding: 40px 0 64px;
    }

    .notes-box {
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	padding: 28px 32px;
    }

    .notes-box p {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: var(--text-light);
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
	line-height: 1.8;
    }

    .notes-box p:last-child {
	border-bottom: none;
	padding-bottom: 0;
    }

    .notes-box p i {
	color: var(--primary);
	margin-top: 4px;
	flex-shrink: 0;
    }

    /* ─── FAQ ────────────────────────────────────── */
    .faq-section {
	background: var(--white);
    }

    .faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
    }

    .faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
    }

    .faq-item:hover {
	box-shadow: var(--shadow-sm);
    }

    .faq-question {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	background: var(--bg-gray);
	user-select: none;
	transition: background 0.2s ease;
    }

    .faq-question:hover {
	background: #f0f0f0;
    }

    .faq-q-icon {
	width: 32px;
	height: 32px;
	background: var(--primary);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 800;
	flex-shrink: 0;
	line-height: 1;
    }

    .faq-q-text {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-dark);
	flex: 1;
	padding-top: 4px;
    }

    .faq-toggle {
	width: 28px;
	height: 28px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	color: var(--text-light);
	flex-shrink: 0;
	margin-top: 2px;
	transition: transform 0.3s ease, background 0.2s ease;
    }

    .faq-item.open .faq-toggle {
	transform: rotate(180deg);
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
    }

    .faq-answer {
	display: none;
	padding: 20px 24px 20px 72px;
	font-size: 14px;
	color: var(--text-dark);
	line-height: 1.9;
	border-top: 1px solid var(--border);
    }

    .faq-a-icon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--attention);
	margin-bottom: 8px;
    }

    .faq-item.open .faq-answer {
	display: block;
    }

    /* ─── Ambassador Section ─────────────────────── */
    .ambassador-section {
	background: linear-gradient(160deg, #001f0e 0%, #003d1a 60%, #005a28 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
    }

    .ambassador-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(6,199,85,0.15) 0%, transparent 70%);
	pointer-events: none;
    }

    .ambassador-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
    }

    .ambassador-image-placeholder {
	background: rgba(255,255,255,0.06);
	border: 2px dashed rgba(255,255,255,0.2);
	border-radius: var(--radius-lg);
	height: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
    }

    .ambassador-image-placeholder i {
	font-size: 56px;
	color: rgba(255,255,255,0.2);
    }

    .ambassador-text {
	color: var(--white);
    }

    .ambassador-text .section-label {
	color: var(--primary);
	margin-bottom: 16px;
    }

    .ambassador-text .section-label::before,
    .ambassador-text .section-label::after {
	background: var(--primary);
    }

    .ambassador-name {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 8px;
    }

    .ambassador-title {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 24px;
    }

    .ambassador-desc {
	font-size: 15px;
	color: rgba(255,255,255,0.8);
	line-height: 1.9;
    }

    /* ─── Footer ─────────────────────────────────── */
    footer {
	background: var(--text-dark);
	color: var(--white);
	padding: 56px 0 120px;
    }

    .footer-logo {
    width: clamp(80px, 50%, 150px);
    height: auto;
    align-content: center;
	margin-bottom: 32px;
    }

    .footer-logo span {
	color: var(--primary);
    }

    .footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(255,255,255,0.1);
	margin-top: 32px;
    }

    .footer-col h4 {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
    }

    .footer-col address {
	font-style: normal;
	font-size: 13px;
	line-height: 1.8;
    }

    .footer-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
    }

    .footer-links a {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	transition: color 0.2s;
    }

    .footer-links a:hover {
	color: var(--primary);
    }

    .footer-bottom {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	text-align: center;
    }

    /* ─── Responsive ─────────────────────────────── */
    @media (max-width: 768px) {
	.container { padding: 0 24px; }
	.section { padding: 56px 0; }

	.header-nav { padding: 16px; }
	.header-period-badge { display: none; }

	.hero {
	  grid-template-columns: 1fr;
	  padding: 32px 24px 0;
	  gap: 32px;
	}

	.hero-h1 { font-size: 26px; }

	.hero-image-col { order: 0; }
		.hero-image-placeholder{ height: 350px;}

	.benefits-grid { grid-template-columns: 1fr; }

	.gift-ab-grid { grid-template-columns: 1fr; }

	.course-header { padding: 24px 20px; }
	.course-body { padding: 24px 20px; }

	.ambassador-inner { grid-template-columns: 1fr; }
	.ambassador-image-placeholder { height: 280px; order: -1; }

	.footer-grid { grid-template-columns: 1fr; gap: 24px; }

	.faq-answer { padding-left: 24px; }

	.btn-cta { font-size: 16px; padding: 18px 28px; width: 100%;}

	.notes-box p { font-size: 12px; }
    }

    /* ─── Animation ──────────────────────────────── */
    @keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
    }

    .fade-up {
	animation: fadeUp 0.6s ease both;
    }

    .fade-up-delay-1 { animation-delay: 0.1s; }
    .fade-up-delay-2 { animation-delay: 0.2s; }
    .fade-up-delay-3 { animation-delay: 0.3s; }