/* ========================================
   Reset & Base Styles
   ======================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	color: #333;
	background-color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	line-height: 1.75;
}

/* ========================================
   Color Palette
   ======================================== */
:root {
	--text-dark: #333;
	--text-light: #666;
	--bg-light: #f8f9fa;
	--border-light: #e0e0e0;
	--white: #fff;
	--first-blue: #0090f6;
	--secondary-blue: #1c46c0;
	--third-blue: #0dc9ff;
	--light-blue: #c5ddf2;
	--light-gray: #f6f7f9;
	--gray: #eff3f6;
	--dark-gray: #50565b;
	--green: #2bb19f;
	--first-red: #f80636;
	--secondary-red: #ff7641;
	--btn-orange: #f97316;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.3;
}

h1 {
	font-size: 2rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin-bottom: 1rem;
	color: var(--text-light);
}

/* ========================================
   Container
   ======================================== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   Header
   ======================================== */
.header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	/* padding: 1rem 0; */
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	height: 80px;
	margin: 0 auto;
	padding: 0 20px;
}

.logo h1 {
	margin: 0;
	background: linear-gradient(125deg, #1c46c0, #0fc9ff);
	-webkit-background-clip: text;
	        background-clip: text;
	font-size: 1.875rem;
	font-weight: 800;

	-webkit-text-fill-color: transparent;
}

.min-br {
	display: none;
}

.header-right {
	display: flex;
	align-items: center;

	gap: 2rem;
}

.phone-link {
	display: flex;
	align-items: center;
	transition: opacity 0.3s ease;
	text-decoration: none;
	color: var(--first-blue);
	font-size: 25px;
	font-weight: 700;

	gap: 0.5rem;
}

.phone-icon {
	width: 25px;
	height: 25px;
}

/* ========================================
   ボタン
======================================== */

.cta-button {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;

	gap: 10px;
}

.cta-button .cta-icon {
	fill: var(--white);
}

.cta-button:hover .cta-icon {
	fill: var(--btn-orange);
}

.cta-icon {
	width: 24px;
	height: 24px;
}

.btn-style6 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	cursor: pointer;
	transition: color 0.3s;
	text-align: center;
	text-decoration: none;
	color: var(--white);
	border: 2px solid var(--btn-orange);
	background-color: var(--btn-orange);
	font-weight: 600;
}

.btn-style6::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	content: "";
	transition: width 0.3s ease;
	background-color: var(--white);
}

.btn-style6:hover {
	color: var(--btn-orange);
}

.btn-style6.line-btn:hover {
	color: #06c755;
}

.cta-button.line-btn:hover .cta-icon {
	fill: #06c755;
}

.btn-style6.line-btn {
	position: relative;
	z-index: 1;
	overflow: hidden;
	cursor: pointer;
	transition: color 0.3s;
	text-align: center;
	text-decoration: none;
	color: var(--white);
	border: 2px solid #06c755;
	background-color: #06c755;
	font-weight: 600;
}

.btn-style6.line-btn:hover {
	color: #06c755;
}

.btn-style6:hover::before {
	width: 100%;
}

.size-medium {
	padding: 0.75em 1.5em;
	font-size: 1rem;
}

.width-auto {
	width: auto;
}

.radius-medium {
	border-radius: 8px;
}

.header__open {
	display: none;
}

.drawer-content {
	display: none;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
	height: 100vh;
	min-height: 600px;
	margin-top: 80px;
	color: white;
}

.hero-bg {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero-bg img {
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;
}
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
}
.hero-content {
	max-width: 950px;
}

.hero-tag {
	display: inline-block;
	margin-bottom: 24px;
	padding: 8px 20px;
	letter-spacing: 0.05em;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.2);
	font-size: 1.4rem;
	font-weight: 700;

	backdrop-filter: blur(5px);
}
.hero-title {
	margin-bottom: 20px;
	text-indent: -0.6em;
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.1;
}

.hero-impact-line {
	white-space: nowrap;
	color: var(--white);
	font-size: 3.8rem;
	font-weight: 800;
}

.hero-impact-line:first-child {
	text-indent: 0;
}

.hero-impact-line:last-child {
	margin-left: 1em;
	text-indent: -1.2em;
}

.hero-subtitle {
	margin-bottom: 40px;
	color: var(--white);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.8;
}

.max1023 {
	display: none;
}

.hero-subtitle-mobile {
	display: none;
}

.cta-button-large {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
}

.cta-button-large a {
	margin: -1rem -2.5rem;
}

.cta-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-start;

	gap: 40px;
	margin-inline: auto;
}

/* ========================================
   Instructor Section
   ======================================== */
.instructor {
	padding: 80px 0;
	background-color: var(--white);
}

.instructor-content {
	display: grid;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;

	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.instructor-image {
	display: block;
	width: 100%;
	max-width: 450px;
	height: auto;
	max-height: 450px;
	margin: 0 auto;
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

	object-fit: cover;
}

.instructor-info h4 {
	margin-bottom: 0.5rem;
	color: var(--text-dark);
	font-size: 1.8rem;
}

.instructor-title {
	margin-bottom: 1.5rem;
	color: var(--first-blue);
	font-weight: 600;
}

.instructor-bio ul {
	margin-bottom: 1.8rem;
	list-style: none;
}

.instructor-bio li {
	position: relative;
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
}

.instructor-bio li:before {
	position: absolute;
	left: 0;
	content: "✓";
	color: var(--green);
	font-weight: 700;
}

.instructor-bio p {
	margin-bottom: 0.8rem;
}

.instructor-bio strong {
	color: var(--text-dark);
}

/* ========================================
   Logos Carousel Section
   ======================================== */
.logos-section {
	padding: 40px 0 80px;
}

.logos-section .section-title {
	margin-bottom: 2rem;
}

.logos-intro {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	text-align: center;
	color: var(--dark-gray);
	font-size: 1.5rem;
	font-style: normal;

	gap: 1.5rem;
}

.logos-intro::before, .logos-intro::after {
	display: block;
	width: 40px;
	height: 2px;
	content: "";
	background-color: var(--first-blue);
}

.logos-container {
	margin: 0 auto;
}

.logos-container > .section-title {
	margin-bottom: 1rem;
}

.text-container {
	padding: 0 20px;
}

.logos-carousel {
	display: flex;
	overflow: hidden;
	align-items: center;
	height: 100px;
	margin-top: 2rem;
	padding: 2rem;
	border-radius: 10px;
	background: var(--white);
}

.logos-track {
	display: flex;
	width: max-content;
	animation: scroll 40s linear infinite;
	white-space: nowrap;

	gap: 2rem;
}

.logo-item {
	flex-shrink: 0;
	height: 60px;
	transition: filter 0.3s ease;

	object-fit: contain;
	filter: grayscale(0%);
}

.logo-item:hover {
	filter: grayscale(0%);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.logos-carousel:hover .logos-track {
	animation-play-state: paused;
}

/* ========================================
   Section Title
   ======================================== */
.section-title-wrapper {
	margin-right: auto;
	margin-bottom: 80px;
	margin-left: auto;
	text-align: center;
}

.section-title-en {
	display: block;
	margin-bottom: 16px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--dark-gray);
	font-size: 0.85rem;
	font-weight: 700;
}

.section-title {
	width: fit-content;
	margin-bottom: 3rem;
	text-align: center;
	background: linear-gradient(125deg, #1c46c0, #0fc9ff);
	-webkit-background-clip: text;
	        background-clip: text;
	font-size: 2.5rem;

	-webkit-text-fill-color: transparent;
	margin-inline: auto;
}

/* ========================================
   Pain Points Section
   ======================================== */
.pain-points {
	position: relative;
	z-index: 1;
	padding: 80px 0 120px;
	background-color: var(--light-gray);
}

.pain-points::after {
	position: absolute;
	z-index: 10;
	bottom: -40px;
	left: 50%;
	width: 2px;
	height: 80px;
	content: "";
	transform: translateX(-50%);
	background: var(--first-blue);
}

.pain-points-grid {
	display: grid;
	max-width: 1200px;
	margin: 0 auto;

	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.pain-point-card {
	padding: 2rem;
	transition: all 0.3s ease;
	text-align: center;
	border-left: 4px solid var(--light-blue);
	background: var(--white);
}

.pain-point-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 1rem;
	color: var(--secondary-blue);
	font-size: 2.2rem;
	font-weight: 700;
}

.pain-point-card p {
	margin: 0;
	color: var(--text-dark);
	font-weight: 500;
}

/* ========================================
   About Section
   ======================================== */
.about {
	padding: 120px 0 80px;
	background-color: var(--white);
}

.about-subtitle {
	margin-bottom: 2rem;
	text-align: center;
	color: var(--first-blue);
	font-size: 2.1rem;
	font-weight: 600;
}

.about-content {
	max-width: 1200px;
	margin: 0 auto;
}

.about-text p {
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-size: 1rem;
	line-height: 1.8;
}

.about-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 0;
}

.about-container::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	content: "";
	background-image: url(img/about-bg.webp);
	background-position: center;
	background-size: cover;
}

.about-container::after {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	content: "";
	background: rgba(255, 255, 255, 0.3);
}

.about-content-box {
	z-index: 10;
	max-width: 660px;
	padding: 60px 70px;
	background: var(--white);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.description {
	margin-bottom: 2rem;
	color: var(--text-dark);
	font-size: 1.05rem;
	line-height: 2;
}

.secondary-description {
	margin-bottom: 2.5rem;
	color: var(--text-dark);
	font-size: 1.05rem;
	line-height: 2;
}

.about-list {
	list-style: none;
}

.about-item {
	display: flex;
	align-items: center;
	margin-bottom: 0.7rem;
	color: var(--text-dark);
	font-size: 1.1rem;
	font-weight: 600;
}

.about-item:last-child {
	margin-bottom: 0;
}

.about-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	margin-right: 1rem;
}

.about-icon img {
	width: 100%;
	height: 100%;

	object-fit: contain;
}

/* ========================================
   Features Section
   ======================================== */
.features {
	padding: 80px 0;
	background-color: var(--white);
}

.features-grid {
	display: grid;
	max-width: 1200px;
	margin: 0 auto;

	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.feature-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: all 0.3s ease;
	text-align: center;
	background: var(--bg-light);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-img-wrapper {
	overflow: hidden;
	width: 100%;
	height: 220px;
}

.feature-img-wrapper img {
	width: 100%;
	height: 100%;
	transition: transform 0.6s ease;

	object-fit: cover;
}

.feature-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 30px;
}

.feature-content h4 {
	min-height: calc(20.8px * 2 * 1.3);
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-size: 1.4rem;
	font-weight: 700;
}

.feature-content p {
	margin: 0;
	color: var(--text-dark);
	font-size: 1rem;
	line-height: 1.8;
}

.pc-br {
	display: block;
}

/* ========================================
   Flow Section
   ======================================== */
.flow {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.flow .section-title-wrapper {
	margin-bottom: 96px;
}

.flow-container {
	display: grid;
	max-width: 1200px;
	margin: 0 auto 3rem;

	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.flow-item {
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-height: 280px;
	padding: 40px 30px;
	background: var(--white);
}

.flow-item::after {
	position: absolute;
	top: 50%;
	right: calc(-1 * (24px / 2 + 20px / 2));
	width: 20px;
	height: 20px;
	content: "";
	transform: translateY(-50%);
	background: url(img/back.svg) no-repeat center center / contain;
}

.flow-item:last-child::after {
	display: none;
}

.flow-number {
	position: absolute;
	top: -16px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: var(--white);
	background: linear-gradient(180deg, rgba(28, 70, 192, 1) 0%, rgba(13, 201, 255, 1) 100%);
	font-size: 1.5rem;
	font-weight: 700;
}

.flow-title {
	min-height: calc(1.4rem * 2 * 1.4);
	margin-top: 20px;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.flow-description {
	margin-bottom: 0;
	color: var(--text-dark);
	font-size: 1rem;
	line-height: 1.8;
}

.flow-example {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	border-left: 4px solid var(--green);
	background: var(--white);
}

.flow-example h4 {
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.flow-example p {
	margin: 0;
	color: var(--text-dark);
	line-height: 1.8;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
	padding: 80px 0;
}

.pricing-cards {
	display: grid;
	align-items: center;
	max-width: 900px;
	margin: 0 auto 2rem;

	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.pricing-card {
	position: relative;
	padding: 2.5rem;
	transition: all 0.3s ease;
	text-align: center;
	border: 2px solid var(--border-light);
	border-radius: 10px;
	background: var(--white);
}

.pricing-card-featured {
	height: 110%;
	border: none;
	background: rgba(13, 201, 255, 0.1);
}

.badge {
	position: absolute;
	top: -65px;
	right: -65px;
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-direction: column;
	justify-content: center;
	width: 140px;
	height: 140px;
	text-align: center;
	color: var(--white);
	border-radius: 50%;
	background: linear-gradient(180deg, rgba(248, 6, 54, 1) 0%, rgba(255, 118, 65, 1) 100%);
	font-size: 0;
	line-height: 1;
}

.badge::before {
	display: block;
	margin-bottom: 2px;
	content: "20%";
	font-size: 2.7rem;
	font-weight: 900;
	line-height: 1;
}

.badge::after {
	display: block;
	content: "OFF";
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1;
}

.pricing-card h4 {
	margin-bottom: 2rem;
	color: var(--text-dark);
	font-size: 1.4rem;
}

.price {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.price span {
	background: linear-gradient(180deg, rgba(28, 70, 192, 1) 0%, rgba(13, 201, 255, 1) 100%);
	-webkit-background-clip: text;
	        background-clip: text;
	font-size: 2rem;
	font-weight: 800;

	-webkit-text-fill-color: transparent;
}

.price-box {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 16px;
	color: var(--text-main);
}

.currency {
	margin-right: 4px;
	color: var(--first-blue);
	font-size: 1.5rem;
	font-weight: 600;
}

.amount {
	letter-spacing: -0.02em;
	color: var(--first-blue);
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1;
}

.period {
	margin-left: 4px;
	color: var(--first-blue);
	font-size: 1.1rem;
	font-weight: 600;
}

.price-note {
	margin-bottom: 16px;
	color: var(--text-light);
	font-size: 0.95rem;
}

.pricing-note {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	color: var(--text-light);
	font-size: 0.9rem;
}

.price-comparison {
	margin-bottom: 8px;
}

.original-price {
	text-decoration: line-through;
	color: var(--text-light);
	font-size: 1.1rem;
	font-weight: 500;
}

/* ========================================
   Comparison Section
   ======================================== */
.comparison {
	padding: 80px 0;
	background-color: var(--light-gray);
}

.comparison-table {
	overflow-x: auto;
	max-width: 1200px;
	margin: 0 auto;
}

.comparison-table table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
}

.comparison-table thead {
	color: var(--text-dark);
	background: var(--light-blue);
}

.comparison-table th {
	padding: 1.5rem;
	text-align: left;
	border: 1px solid var(--border-light);
	font-size: 0.95rem;
	font-weight: 700;
}

.comparison-table th.comparison-our {
	position: relative;
	color: var(--white);
	border-top: 4px solid var(--first-blue);
	border-right: 4px solid var(--first-blue);
	border-bottom: none;
	border-left: 4px solid var(--first-blue);
	background: linear-gradient(180deg, rgba(28, 70, 192, 1) 0%, rgba(13, 201, 255, 1) 100%);
	font-size: 1.1rem;
	font-weight: 700;
}

.comparison-table th.comparison-our::before {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	pointer-events: none;
}

.comparison-table td {
	min-height: calc(0.95rem * 2 * 1.7);
	padding: 1.5rem;
	border: 1px solid var(--border-light);
	font-size: 0.95rem;
}

.comparison-table tbody tr:nth-child(odd) {
	background-color: var(--bg-light);
}

.comparison-table tbody tr:hover {
	background-color: rgba(138, 43, 226, 0.05);
}

.comparison-table td.comparison-our {
	position: relative;
	color: var(--first-blue);
	border-right: 4px solid var(--first-blue);
	border-left: 4px solid var(--first-blue);
	font-size: 1.1rem;
	font-weight: 800;
}

/* 最初の行のtdだけ上のボーダーも消す（thとの境界） */
.comparison-table tbody tr:first-child td.comparison-our {
	border-top: none;
}

/* 最後の行だけ下にも太枠 */
.comparison-table tbody tr:last-child td.comparison-our {
	border-bottom: 4px solid var(--first-blue);
}

.comparison th:first-child {
	background-color: var(--bg-light);
}

.comparison th, .comparison td {
	padding: 0.9rem;
	vertical-align: middle;
	border: 1px solid var(--border-light);
}

.comparison th:nth-child(n + 2), .comparison td:nth-child(n + 2) {
	text-align: center;
}

.comparison-table tbody tr:hover {
	background-color: rgba(43, 177, 159, 0.07);
}

.comparison-table table {
	width: 112%;
	table-layout: fixed;
}

/* 最初の列（項目名）の幅を固定 */
.comparison-table th:first-child, .comparison-table td:first-child {
	width: 20%;
	font-weight: 600;
}

/* その他の列の幅を均等に */
.comparison-table th:not(:first-child), .comparison-table td:not(:first-child) {
	width: 20%;
}

/* その他の列の幅を均等に */
.comparison-table th:not(:first-child):not(:nth-child(2)), .comparison-table td:not(:first-child):not(:nth-child(2)) {
	width: 18%;
}

.scroll-hint {
	display: none;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	padding: 0.8rem;
	animation: bounce 2s infinite;
	text-align: center;
	color: var(--first-blue);
	border-radius: 8px;
	background-color: rgba(43, 177, 159, 0.1);
	font-size: 0.9rem;
	font-weight: 700;

	gap: 0.5rem;
}

@keyframes bounce {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(5px);
	}
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
	padding: 80px 20px;
	background-color: var(--white);
}

.contact .section-title {
	margin-bottom: 2rem;
}

.contact .section-title-wrapper {
	margin-bottom: 0;
}

.contact-channels {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 900px;
	margin: 80px auto;

	gap: 5rem;
}

.contact-channel {
	align-items: center;
	flex: 1;
	justify-content: center;
	max-width: 180px;
	padding: 1rem;
	text-align: center;
}

.contact-channel img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;

	object-fit: contain;
}

/* ========================================
   CTA Final Section
   ======================================== */
.contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 3rem;
	border-radius: 1rem;
	background: white;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-final {
	padding: 80px 0;
	text-align: center;
	color: var(--white);
	background: linear-gradient(180deg, rgba(28, 70, 192, 1) 0%, rgba(13, 201, 255, 1) 100%);
}

.cta-final h3 {
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
	line-height: 1.4;
}

.cta-final p {
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.05rem;
}

.contact-intro {
	margin-bottom: 0;
	text-align: center;
	color: var(--text-dark);
	font-size: 1.1rem;
	font-weight: 500;
}

.cta-form-embed {
	max-width: 800px;
	margin: 2rem auto 0;
}

.phone-contact-info {
	margin-top: 2rem;
	text-align: center;
	color: var(--white);
}

.phone-contact-info p {
	margin: 0.5rem 0;
	color: inherit;
}

.phone-contact-info .phone-number-large {
	font-size: 1.5rem;
	font-weight: 700;
}

/* ========================================
   Footer
   ======================================== */
.footer {
	padding: 2rem 20px;
	text-align: center;
	color: var(--white);
	background-color: var(--dark-gray);
	font-size: 0.9rem;
}

.footer-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

.footer-links a {
	margin-left: 20px;
	transition: color 0.3s ease;
	text-decoration: none;
	color: var(--white);
}

.footer-links a:hover {
	color: var(--first-blue);
}

.footer-logo p {
	margin-bottom: 0;
}

.footer-bottom {
	margin-top: 20px;
	padding-top: 20px;
	text-align: center;
	border-top: 1px solid;
}

.footer-bottom p {
	color: var(--white);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
	.logo h1 {
		font-size: 1.5rem;
	}

	.header-right {
		gap: 1rem;
	}

	.size-medium {
		padding: 0.75em 1rem;
	}

	.phone-link {
		display: none;
	}

	.hero-title {
		font-size: 3.3rem;
	}

	.max1023 {
		display: block;
	}

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

	.about-ib {
		display: inline-block;
		width: fit-content;
	}

	.about-content-box {
		max-width: 500px;
		padding: 60px 30px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		flex-direction: row-reverse;
	}

	.feature-img-wrapper {
		width: 40%;
		height: auto;
		min-height: 200px;
	}

	.feature-content {
		width: 60%;
		padding: 30px;
		text-align: left;
	}

	.feature-content h4 {
		min-height: auto;
	}

	.pc-br {
		display: none;
	}

	.flow-container {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 40px;
	}

	.flow-item:nth-child(1)::after {
		display: block;
	}

	/* 1行目の2つ目は下に矢印 */
	.flow-item:nth-child(2)::after {
		display: none;
	}

	/* 2行目の1つ目は右に矢印 */
	.flow-item:nth-child(3)::after {
		display: block;
	}

	/* 2行目の2つ目(最後)は矢印なし */
	.flow-item:nth-child(4)::after {
		display: none;
	}

	.pricing-card {
		padding: 2.5rem 1.5rem;
	}

	.badge {
		top: -50px;
		right: 0;
		width: 100px;
		height: 100px;
	}
	.badge::before {
		font-size: 2rem;
	}
	.badge::after {
		font-size: 1.2rem;
	}

	.comparison .comparison-table td {
		height: 90px;
		padding: 1rem;
	}
}

@media (max-width: 768px) {
	.header-right {
		display: none;
	}

	.header__open {
		display: block !important;
	}

	.drawer-icon {
		position: relative;
		z-index: 1050;
		width: 36px;
		height: 21px;
	}
	.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
		top: 10px;
		-webkit-transform: rotate(30deg);
		    -ms-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
	.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
		display: none;
	}
	.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
		top: 10px;
		-webkit-transform: rotate(-30deg);
		    -ms-transform: rotate(-30deg);
		        transform: rotate(-30deg);
	}

	.drawer-icon__bar {
		position: absolute;
		top: 0;
		left: 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		width: 36px;
		height: 3px;
		-webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
		        transition: top 0.3s linear, -webkit-transform 0.3s linear;
		        transition: transform 0.3s linear, top 0.3s linear;
		        transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
		border-radius: 6px;
		background: var(--first-blue);
	}
	.drawer-icon__bar:nth-of-type(2) {
		top: 9px;
	}
	.drawer-icon__bar:nth-of-type(3) {
		top: 18px;
	}
	.drawer-content {
		position: fixed;
		z-index: 1002;
		top: 0;
		right: 0;
		display: block;
		width: 320px;
		height: 400px;
		padding: 86px 40px 40px;
		-webkit-transition: -webkit-transform 0.3s linear;
		        transition: -webkit-transform 0.3s linear;
		        transition:         transform 0.3s linear;
		        transition:         transform 0.3s linear, -webkit-transform 0.3s linear;
		-webkit-transform: translateX(100%);
		    -ms-transform: translateX(100%);
		        transform: translateX(100%);
		background-color: var(--light-gray);
	}
	.drawer-content.is-checked {
		-webkit-transform: translateX(0);
		    -ms-transform: translateX(0);
		        transform: translateX(0);
	}

	.drawer-content__link {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 1rem;
		padding: 12px 24px;
		text-align: center;
		text-decoration: none;
		letter-spacing: 0.48px;
		color: var(--white);
		font-size: 16px;
		font-weight: 700;

		gap: 10px;
	}

	.drawer-content__button {
		margin-top: 24px;
		text-align: right;
	}

	.drawer-content__button > .cta-button {
		font-size: 20px;
	}

	#js-drawer-icon.header__open.drawer-icon {
		z-index: 1010;
		border: none;
		background-color: transparent;
	}
	.phone-link {
		display: none;
	}

	.header-container {
		padding: 0 15px;
	}

	.header-right {
		gap: 15px;
	}

	.cta-button {
		padding: 12px 18px;
	}

	.hero {
		min-height: auto;
		margin-top: 0;
	}

	.hero-bg img {
		object-position: 62% center;
	}

	.hero-container {
		margin-top: 80px;
	}

	.hero-tag {
		font-size: 1.1rem;
	}

	.hero-title {
		text-indent: -0.3em;
		font-size: 2.6rem;
	}

	.ib {
		display: inline-block;
		width: fit-content;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.section-title {
		margin-bottom: 1.6rem;
		font-size: 2rem;
	}

	.instructor-content {
		gap: 1rem;
	}

	.instructor-info h4 {
		text-align: center;
	}

	.instructor-title {
		text-align: center;
	}

	.logos-intro {
		font-size: 1.2rem;
	}

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

	.pain-points-grid {
		grid-template-columns: 1fr;
	}

	.about-subtitle {
		font-size: 1.8rem;
	}

	.about-container {
		flex-direction: column;
		margin: 0;
		padding: 0;
	}

	.about-container::before {
		position: relative;
		left: 0;
		width: 100%;
		height: 40vh;
	}

	.about-container::after {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 40vh;
	}

	.about-content-box {
		position: relative;
		width: 94%;
		max-width: 100%;
		margin-top: -100px;
		padding: 40px 20px;
		box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	}

	.about-item {
		font-size: 1rem;
	}

	.feature-card {
		flex-direction: column;
	}

	.feature-img-wrapper {
		overflow: hidden;
		width: 100%;
		height: 320px;
	}

	.feature-content {
		display: flex;
		align-items: center;
		flex-direction: column;
		flex-grow: 1;
		width: 100%;
		padding: 30px;
	}

	.feature-content p {
		text-align: center;
	}

	.flow-container {
		grid-template-columns: 1fr;
	}

	.flow-item {
		min-height: 200px;
	}

	.flow-item::after {
		top: auto;
		right: 50%;
		bottom: -30px;
		display: block;
		transform: translateX(50%) rotate(90deg);
	}

	/* 最後のアイテムだけ矢印なし */
	.flow-item:last-child::after {
		display: none;
	}

	.flow-title {
		min-height: initial;
	}

	.pain-points-grid {
		grid-template-columns: 1fr;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.pricing-cards {
		grid-template-columns: 1fr;
		gap: 5rem;
	}

	.comparison-table table {
		width: auto;
		min-width: 900px;
	}

	.scroll-hint {
		display: flex;
	}

	.contact-channels {
		gap: 2rem;
	}

	.cta-final h3 {
		font-size: 2rem;
	}

	.cta-final p {
		font-size: 1rem;
	}

	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 1.8rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	h4 {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.logo h1 {
		font-size: 1.2rem;
	}

	.min-br {
		display: block;
	}

	.cta-button {
		justify-content: center;
		width: 100%;
		padding: 0.6rem;
		font-size: 1rem;
		line-height: 1.5;
	}

	.hero-container {
		padding-inline: 16px;
	}

	.hero-tag {
		font-size: 1rem;
	}

	.hero-title {
		font-size: 1.9rem;
	}

	.hero-impact-line {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.cta-buttons {
		flex-direction: column;

		gap: 16px;
	}

	.section-title {
		font-size: 1.3rem;
	}

	.pain-point-card {
		padding: 1.5rem;
	}

	.about-subtitle {
		font-size: 1.2rem;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
	}

	.feature-content h4 {
		font-size: 1.2rem;
	}

	.flow-step {
		padding: 1.5rem;
	}

	.instructor-info h4 {
		font-size: 1.2rem;
	}

	.pricing-card {
		padding: 1.2rem;
	}

	.pricing-card h4 {
		font-size: 1.2rem;
	}

	.amount {
		font-size: 2.5rem;
	}

	.price span {
		font-size: 1.5rem;
	}

	.badge {
		top: -40px;
		right: 0;
		width: 80px;
		height: 80px;
	}
	.badge::before {
		font-size: 1.7rem;
	}
	.badge::after {
		font-size: 1rem;
	}

	.contact-channels {
		margin: 40px auto;

		gap: 1rem;
	}

	.contact-channel {
		padding: 0.5rem;
	}

	.contact-form-wrapper {
		padding: 32px;
	}

	.cta-final h3 {
		font-size: 1.3rem;
	}

	.cta-final p {
		font-size: 0.9rem;
	}

	.flow-title {
		font-size: 1.2rem;
	}

	.flow-example {
		padding: 1.5rem;
	}

	.logos-carousel {
		padding: 1rem;
	}

	.logos-track {
		gap: 1rem;
	}

	.logo-item {
		height: 40px;
	}
}