/* ワツナグ ランディングページ CSS */

:root {
	--charcoal-black: #2d2d2d;
	--warm-tan: #f58a4b;
	--soft-gray: #f5f5f5;
	--trust-blue: #5a7d9a;
	--white: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--charcoal-black);
	background-color: var(--soft-gray);
	padding-top: 80px;
}

h1,
h2,
h3 {
	font-weight: 700;
}

/* テキストカラークラス */
.text-orange {
	color: var(--warm-tan);
}

.text-blue {
	color: var(--trust-blue);
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

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

.section {
	padding: 80px 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 35px;
	background: linear-gradient(
		135deg,
		#f58a4b 0%,
		#ff6b9d 100%
	);
	color: var(--white);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

.btn::after {
	content: "→";
	font-size: 18px;
	transition: transform 0.3s ease;
}

.btn:hover {
	background: linear-gradient(
		135deg,
		#e07a3f 0%,
		#ff5a8d 100%
	);
	transform: translateX(5px);
}

.btn:hover::after {
	transform: translateX(3px);
}

/* ヘッダー */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--white);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo a {
	text-decoration: none;
}

.logo img {
	height: 45px;
	width: auto;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-list a {
	color: var(--charcoal-black);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.3s ease;
}

.nav-list a:hover {
	color: var(--warm-tan);
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(
		135deg,
		#f58a4b 0%,
		#ff6b9d 100%
	);
	color: var(--white) !important;
	padding: 10px 20px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.nav-cta::before {
	content: "✉";
	font-size: 16px;
}

.nav-cta:hover {
	background: linear-gradient(
		135deg,
		#e07a3f 0%,
		#ff5a8d 100%
	) !important;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background-color: var(--charcoal-black);
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

.nav.mobile-nav-active {
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px 0;
}

.nav.mobile-nav-active .nav-list {
	flex-direction: column;
	width: 100%;
	gap: 1rem;
}

/* ファーストビュー */
.hero {
	min-height: 80vh;
	background-image: url("images/main_visual_bg3.png");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-text h1 {
	font-weight: bolder;
	font-size: 3.5rem;
	animation: fadeInUp 1s ease-out;
}

.hero-text p {
	font-weight: 700;
	margin-bottom: 2rem;
}

.hero-catchphrase {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease-out;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
	line-height: 1.4;
	letter-spacing: 0.02em;
	display: block;
	width: 100%;
}

.hero-lead {
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.9;
	color: var(--charcoal-black);
	margin-top: 1.5rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease-out 0.2s both;
	background: rgba(255, 255, 255, 0.85);
	padding: 1.2rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-features {
	list-style: none;
	margin-bottom: 2rem;
	padding-left: 0;
	animation: fadeInUp 1s ease-out 0.3s both;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-features li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--charcoal-black);
	background: rgba(255, 255, 255, 0.9);
	padding: 10px 16px;
	border-radius: 50px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-features li:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(245, 138, 75, 0.2);
}

.hero-features li .material-icons {
	color: var(--warm-tan);
	font-size: 24px;
}

.hero-text .btn {
	animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image img {
	width: 100%;
	height: auto;
}

/* β版トライアルセクション */
.beta-trial {
	background-color: var(--white);
	text-align: center;
}

.beta-trial-content {
	max-width: 800px;
	margin: 0 auto;
}

.beta-title {
	font-size: 1.8rem;
	color: var(--warm-tan);
	margin-bottom: 2rem;
}

.trial-details {
	background-color: var(--soft-gray);
	padding: 2rem;
	border-radius: 12px;
	text-align: left;
}

.trial-details p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.trial-details .highlight {
	font-weight: 700;
	color: var(--warm-tan);
	font-size: 1.1rem;
}

.trial-details .release-date {
	font-weight: 700;
	color: var(--trust-blue);
	font-size: 1.1rem;
}

/* 問題提起セクション */
.problems {
	background-color: var(--soft-gray);
}

.problems h2 {
	margin-bottom: 1rem;
}

.problems-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.problem-card {
	background-color: var(--white);
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.problem-card:hover {
	transform: translateY(-5px);
}

.problem-card img {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
}

/* FAX文化セクション */
.fax-culture {
	background-color: var(--white);
}

.fax-culture h2 {
	color: var(--charcoal-black);
	margin-bottom: 3rem;
}

.fax-culture-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.concerns {
	margin-bottom: 2.5rem;
}

.concerns .quote {
	font-size: 1.1rem;
	color: var(--trust-blue);
	margin-bottom: 1rem;
	font-style: italic;
	line-height: 1.8;
}

.empathy {
	font-size: 1.15rem;
	color: var(--charcoal-black);
	margin-bottom: 2.5rem;
	line-height: 1.8;
	font-weight: 500;
}

.philosophy {
	background-color: var(--soft-gray);
	padding: 2.5rem;
	border-radius: 12px;
	border-left: 4px solid var(--warm-tan);
}

.philosophy .highlight {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--warm-tan);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.philosophy p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--charcoal-black);
}

/* 解決策セクション */
.solutions {
	background-color: var(--white);
}

.solution-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
	padding-bottom: 80px;
	border-bottom: 1px solid #e0e0e0;
}

.solution-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.solution-item:nth-child(3) .solution-text {
	order: 1;
}

.solution-item:nth-child(3) .solution-image {
	order: 2;
}

.solution-text h3 {
	color: var(--charcoal-black);
	margin-bottom: 20px;
}

.solution-text p {
	line-height: 1.8;
}

.solution-image img {
	width: 100%;

	height: auto;
	border-radius: 8px;
}

/* 機能紹介セクション */
.features {
	background-color: var(--soft-gray);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.feature-card {
	background-color: #f9eee7;
	padding: 25px;
	border-radius: 12px;
	text-align: left;
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-card .material-icons {
	font-size: 48px;
	color: var(--warm-tan);
	margin-bottom: 15px;
}

.feature-card h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--charcoal-black);
}

.feature-card p {
	font-size: 0.9rem;
	color: var(--charcoal-black);
}

.features-note {
	font-size: 0.8rem;
	color: #888;
	margin-top: 30px;
	text-align: left;
}

/* スモールスタートセクション */
.small-start {
	background-color: var(--white);
}

.small-start h2 {
	color: var(--charcoal-black);
	margin-bottom: 2rem;
}

.small-start .intro-text {
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 3rem;
	color: var(--charcoal-black);
}

.small-start-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 3rem;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.step-item {
	background-color: var(--soft-gray);
	padding: 30px;
	border-radius: 12px;
	text-align: center;
	transition: transform 0.3s ease;
	border-left: 4px solid var(--warm-tan);
}

.step-item:hover {
	transform: translateY(-5px);
}

.step-number {
	width: 50px;
	height: 50px;
	background: linear-gradient(
		135deg,
		#f58a4b 0%,
		#ff6b9d 100%
	);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 20px;
}

.step-item p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--charcoal-black);
	font-weight: 500;
}

.small-start .conclusion-text {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--warm-tan);
	margin-bottom: 4rem;
}

.small-start h3 {
	font-size: 1.8rem;
	color: var(--charcoal-black);
	text-align: center;
	margin-bottom: 1.5rem;
	margin-top: 3rem;
}

.small-start > .container > p {
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 2rem;
	color: var(--charcoal-black);
}

.benefits-list {
	list-style: none;
	padding: 0;
	max-width: 700px;
	margin: 0 auto 2.5rem;
	background-color: var(--soft-gray);
	padding: 30px 40px;
	border-radius: 12px;
}

.benefits-list li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 15px;
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--charcoal-black);
}

.benefits-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--warm-tan);
	font-weight: 700;
	font-size: 1.3rem;
}

.benefit-summary {
	text-align: center;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--trust-blue);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.final-message {
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--charcoal-black);
	max-width: 800px;
	margin: 0 auto 3rem;
	font-style: italic;
}

/* β版体験の流れセクション */
.beta-flow {
	background-color: var(--soft-gray);
}

.beta-flow h2 {
	margin-bottom: 3rem;
}

.flow-steps {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.flow-step {
	background-color: var(--white);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	position: relative;
}

.flow-step:hover {
	transform: translateX(5px);
}

.flow-step::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: linear-gradient(
		135deg,
		#f58a4b 0%,
		#ff6b9d 100%
	);
	border-radius: 12px 0 0 12px;
}

.flow-step-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.flow-step-number {
	background: linear-gradient(
		135deg,
		#f58a4b 0%,
		#ff6b9d 100%
	);
	color: var(--white);
	padding: 8px 20px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 0.9rem;
	white-space: nowrap;
}

.flow-step h3 {
	font-size: 1.3rem;
	color: var(--charcoal-black);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.time-required {
	font-size: 0.9rem;
	color: var(--trust-blue);
	font-weight: 500;
}

.flow-step p {
	line-height: 1.8;
	color: var(--charcoal-black);
	margin-bottom: 0;
}

.demo-features {
	list-style: none;
	padding: 0;
	margin-top: 15px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.demo-features li {
	position: relative;
	padding-left: 25px;
	color: var(--charcoal-black);
	font-size: 0.95rem;
	line-height: 1.6;
}

.demo-features li::before {
	content: "●";
	position: absolute;
	left: 0;
	color: var(--warm-tan);
	font-size: 0.8rem;
}

/* β版限定特典セクション */
.beta-benefits {
	background-color: var(--white);
}

.beta-benefits h2 {
	margin-bottom: 3rem;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(
		auto-fit,
		minmax(300px, 1fr)
	);
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

.benefit-card {
	background: linear-gradient(
		135deg,
		#fff5f0 0%,
		#ffe8e0 100%
	);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease,
		box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(245, 138, 75, 0.1) 0%,
		transparent 70%
	);
	transition: transform 0.5s ease;
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 25px rgba(245, 138, 75, 0.2);
}

.benefit-card:hover::before {
	transform: scale(1.5);
}

.benefit-number {
	width: 45px;
	height: 45px;
	background: linear-gradient(
		135deg,
		#f58a4b 0%,
		#ff6b9d 100%
	);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.benefit-card h3 {
	font-size: 1.2rem;
	color: var(--charcoal-black);
	margin-bottom: 15px;
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.benefit-card p {
	color: var(--charcoal-black);
	line-height: 1.8;
	font-size: 0.95rem;
	position: relative;
	z-index: 1;
}

/* おすすめセクション */
.recommended {
	background-color: var(--soft-gray);
}

.recommended h2 {
	margin-bottom: 3rem;
}

.recommended-list {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.recommended-item {
	background-color: var(--white);
	padding: 20px 25px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 15px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease,
		box-shadow 0.3s ease;
}

.recommended-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px
		rgba(245, 138, 75, 0.15);
}

.check-icon {
	font-size: 1.5rem;
	color: var(--warm-tan);
	font-weight: 700;
	flex-shrink: 0;
}

.recommended-item p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--charcoal-black);
}

/* 参加条件セクション */
.participation-requirements {
	background-color: var(--white);
}

.participation-requirements h2 {
	margin-bottom: 3rem;
}

.requirements-box {
	max-width: 700px;
	margin: 0 auto;
	background: linear-gradient(
		135deg,
		#fff5f0 0%,
		#f9f9f9 100%
	);
	padding: 40px;
	border-radius: 12px;
	border: 2px solid var(--warm-tan);
	box-shadow: 0 4px 15px rgba(245, 138, 75, 0.1);
}

.requirements-list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.requirements-list li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--charcoal-black);
	font-weight: 500;
}

.requirements-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--warm-tan);
	font-weight: 700;
	font-size: 1.5rem;
}

.requirements-box .note {
	margin: 0;
	padding-top: 20px;
	border-top: 2px dashed var(--warm-tan);
	color: var(--trust-blue);
	font-size: 0.95rem;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
}

/* CTAバナー（お客様の声セクション内） */
.banner-cta-inline {
	margin-top: 60px;
	text-align: center;
}

.banner-cta-inline img {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.banner-cta-inline img:hover {
	transform: translateY(-5px);
}

/* お客様の声セクション */
.testimonials {
	background-color: var(--white);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.testimonial-card {
	background-color: var(--white);
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.testimonial-content {
	margin-bottom: 25px;
}

.testimonial-content p {
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--charcoal-black);
	position: relative;
}

.testimonial-content p::before {
	content: '"';
	font-size: 3rem;
	color: var(--warm-tan);
	position: absolute;
	top: -10px;
	left: -15px;
	line-height: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-info h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--charcoal-black);
	margin-bottom: 5px;
}

.author-info p {
	font-size: 0.9rem;
	color: var(--trust-blue);
}

/* FAQ セクション */
.faq {
	background-color: var(--soft-gray);
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--white);
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	background-color: var(--white);
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: var(--soft-gray);
}

.faq-question::after {
	content: "+";
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--warm-tan);
	transition: transform 0.3s ease;
}

.faq-question.active::after {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-answer.active {
	padding: 20px;
	max-height: 1000px;
}

.faq-answer p {
	margin-bottom: 15px;
	line-height: 1.8;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer strong {
	color: var(--warm-tan);
	font-weight: 700;
}

.faq-answer ul {
	margin: 10px 0 15px 0;
	padding-left: 25px;
}

.faq-answer ul li {
	margin-bottom: 8px;
	line-height: 1.7;
}

/* CTA セクション */
.cta {
	background: linear-gradient(
			rgba(0, 0, 0, 0.7),
			rgba(0, 0, 0, 0.7)
		),
		url("images/bg_cta.jpg");
	background-size: cover;
	background-position: center;
	color: var(--white);
	text-align: center;
}

.cta h2 {
	color: var(--white);
	margin-bottom: 2rem;
}

.cta p {
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-size: 1.05rem;
}

.cta-highlight {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 3rem !important;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	border: 2px solid var(--warm-tan);
}

.contact-form {
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 700;
	color: var(--white);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
}

.form-group textarea {
	height: 120px;
	resize: vertical;
}

.checkbox-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.checkbox-item input[type="checkbox"] {
	width: auto;
}

.privacy-agreement {
	margin-top: 10px;
}

.privacy-agreement label {
	font-size: 0.95rem;
}

.privacy-agreement a {
	color: var(--warm-tan);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.privacy-agreement a:hover {
	color: #ff6b9d;
}

.form-submit {
	text-align: center;
	margin-top: 30px;
}

/* フッター */
.footer {
	background-color: var(--charcoal-black);
	color: var(--white);
	padding: 40px 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 40px;
	align-items: center;
}

.footer-logo img {
	height: 40px;
	width: auto;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 30px;
}

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

.footer-links a:hover {
	color: var(--warm-tan);
}

.footer-copyright {
	text-align: right;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav {
		display: none;
	}

	.hero-content,
	.solution-item {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 0;
	}

	.solution-item .solution-text {
		order: 2;
	}

	.solution-item .solution-image {
		order: 1;
	}

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

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

	.small-start-steps {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.small-start h3 {
		font-size: 1.5rem;
	}

	.benefits-list {
		padding: 20px 25px;
	}

	.benefits-list li {
		font-size: 1rem;
	}

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

	.flow-step h3 {
		font-size: 1.1rem;
	}

	.flow-step-header {
		flex-direction: column;
		align-items: flex-start;
	}

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

	.benefit-card h3 {
		font-size: 1.1rem;
	}

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

	.requirements-box {
		padding: 25px;
	}

	.requirements-list li {
		font-size: 1rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 20px;
	}

	.footer-copyright {
		text-align: center;
	}

	.hero {
		min-height: 60vh;
	}

	h1 {
		font-size: 1.8rem;
	}

	.hero-text h1 {
		font-size: 1.8rem;
	}

	.hero-catchphrase {
		font-size: 1.5rem;
	}

	.hero-lead {
		font-size: 1rem;
		line-height: 1.7;
		padding: 1rem;
	}

	.hero-features {
		flex-direction: column;
		gap: 8px;
	}

	.hero-features li {
		font-size: 0.9rem;
		padding: 8px 14px;
	}

	.hero-features li .material-icons {
		font-size: 20px;
	}

	h2 {
		font-size: 1.5rem;
	}

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

	.trial-details {
		padding: 1.5rem;
	}

	.trial-details .highlight,
	.trial-details .release-date {
		font-size: 1rem;
	}

	.fax-culture-content {
		padding: 0 10px;
	}

	.concerns .quote {
		font-size: 1rem;
	}

	.empathy {
		font-size: 1.05rem;
	}

	.philosophy {
		padding: 1.5rem;
	}

	.philosophy .highlight {
		font-size: 1.1rem;
	}

	.philosophy p {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.problems-grid,
	.features-grid {
		grid-template-columns: 1fr;
	}

	.beta-title {
		font-size: 1.1rem;
		padding: 0 10px;
	}

	.trial-details {
		padding: 1rem;
	}

	.trial-details p {
		font-size: 0.9rem;
	}

	.concerns .quote {
		font-size: 0.95rem;
	}

	.empathy {
		font-size: 1rem;
	}

	.philosophy {
		padding: 1.2rem;
	}

	.philosophy .highlight {
		font-size: 1rem;
	}

	.philosophy p {
		font-size: 0.95rem;
	}
}

/* 運営会社ページのスタイル */

.company-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 20px;
}

.company-content h1 {
	font-size: 2rem;
	margin-bottom: 3rem;
	color: var(--warm-tan);
	text-align: left;
}

.company-section {
	margin-bottom: 60px;
}

.company-section h2 {
	color: var(--charcoal-black);
	border-bottom: 3px solid var(--warm-tan);
	padding-bottom: 10px;
	margin-bottom: 30px;
	text-align: left;
}

.company-info table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.company-info th,
.company-info td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

.company-info th {
	background-color: var(--soft-gray);
	font-weight: 700;
	width: 30%;
	color: var(--charcoal-black);
}

.company-info td {
	color: var(--charcoal-black);
}

.company-info tr:last-child th,
.company-info tr:last-child td {
	border-bottom: none;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
	padding: 15px 35px;
	background: linear-gradient(
		135deg,
		#f58a4b 0%,
		#ff6b9d 100%
	);
	color: var(--white);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.back-link::after {
	content: "→";
	font-size: 18px;
	transition: transform 0.3s ease;
}

.back-link:hover {
	background: linear-gradient(
		135deg,
		#e07a3f 0%,
		#ff5a8d 100%
	);
	transform: translateX(5px);
}

.back-link:hover::after {
	transform: translateX(3px);
}

/* プライバシーポリシーページのスタイル */

.privacy-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 20px;
}

.privacy-content h1 {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--warm-tan);
	text-align: left;
}

.privacy-subtitle {
	font-size: 1rem;
	color: #888;
	margin-bottom: 2rem;
}

.privacy-footer {
	text-align: center;
	background-color: var(--soft-gray);
}

.privacy-footer p {
	margin-bottom: 0.5rem;
}

.privacy-section {
	margin-bottom: 50px;
	background-color: var(--white);
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
	color: var(--charcoal-black);
	border-bottom: 3px solid var(--warm-tan);
	padding-bottom: 10px;
	margin-bottom: 25px;
	text-align: left;
	font-size: 1.5rem;
}

.privacy-section h3 {
	color: var(--charcoal-black);
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.privacy-section p {
	line-height: 1.8;
	margin-bottom: 20px;
	color: var(--charcoal-black);
}

.privacy-section ul {
	margin-bottom: 20px;
	padding-left: 20px;
}

.privacy-section li {
	margin-bottom: 10px;
	line-height: 1.6;
	color: var(--charcoal-black);
}

.contact-info {
	background-color: var(--soft-gray);
	padding: 30px;
	border-radius: 8px;
	margin-top: 20px;
}

.last-updated {
	text-align: right;
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 40px;
}

/* サンクスページ */
.thanks-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 60px 20px;
}

.thanks-content {
	max-width: 600px;
}

.thanks-icon {
	font-size: 80px;
	color: #f58a4b;
	margin-bottom: 30px;
}

.thanks-content h1 {
	color: #2d2d2d;
	margin-bottom: 20px;
	font-size: 2rem;
}

.thanks-content p {
	color: #2d2d2d;
	margin-bottom: 40px;
	line-height: 1.8;
}

.thanks-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}
