/* リセットとベーススタイル */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	overflow-x: hidden;
	color: #333;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	line-height: 1.6;
}

:root {
	--accent-orange: #f97316;
	--white: #fff;
	--blue1: #00398e;
	--blue2: #0066ff;
	--blue3: #3c8aff;
	--blue4: #dbe9ff;
	--blue5: #edf9ff;
	--green1: #00b13b;
	--green2: #0ad18f;
	--black: #002965;
	--light-gray: #e6eaf0;
	--dark-gray: #335484;
	--pyramid-base-font: clamp(16px, 1.4vw, 20px);
}

.bold-highlight {
	color: var(--blue2);
	font-weight: 600;
}

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

/* ヘッダー */
.header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.95);

	backdrop-filter: blur(10px);
}

.fixed-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	width: 100%;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	padding: 8px 20px;
}

.header-content {
	display: flex;
	align-items: center;
}

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

.logo {
	display: flex;
	align-items: center;

	gap: 1rem;
}

.ai-ad-text {
	background: radial-gradient(circle, var(--green2) 0%, var(--blue2) 100%);
	-webkit-background-clip: text;
	font-size: 1.8rem;
	font-weight: bold;

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

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

	gap: 30px;
}

.header-tel {
	position: relative;
	padding-left: 32px;
	text-decoration: none;
	letter-spacing: -0.04em;
	color: var(--blue2);
	font-size: 25px;
	font-weight: 700;
}

.header-tel::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	content: "";
	transform: translateY(-50%);
	background: url(./img/tel-icon.png) no-repeat center center / contain;
}

.nav {
	display: flex;
	align-items: center;

	gap: 1rem;
}

/* ボタンスタイル */
.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(--accent-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(--accent-orange);
	background-color: var(--accent-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(--accent-orange);
}

.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;
}

/* ファーストビュー */
.hero {
	position: relative;
	overflow: hidden;
	padding: 120px 0 80px;
	color: var(--white);
	background: linear-gradient(135deg, rgba(0, 57, 142, 0.9) 0%, rgba(1, 23, 56, 0.9) 100%);
}

.hero::before {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	background-image: url(./img/hero-background.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;

	mix-blend-mode: soft-light;
}

.hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;

	grid-template-columns: 60% 36%;
	gap: 3rem;
}

.badge {
	display: inline-block;
	margin-bottom: 1.5rem;
	padding: 0.5rem 1rem;
	color: var(--black);
	border-radius: 20px;
	background: var(--white);
	font-size: 0.9rem;
	font-weight: 600;
}

.hero-title {
	margin-bottom: 1.5rem;
	text-shadow: 17px 10px 11px rgba(0, 0, 0, 0.3);
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.2;
}

.hero-description {
	margin-bottom: 3rem;
	opacity: 0.9;
	font-size: 1.2rem;
}

.features-grid {
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;

	gap: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	flex-direction: row;

	gap: 1rem;
}

.feature-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: var(--blue2);
	font-size: 1.2rem;
}

.feature-item h3 {
	font-size: 1.1rem;
}

.feature-item p {
	opacity: 0.9;
	font-size: 0.9rem;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	gap: 1rem;
}

.hero-image {
	text-align: center;
}

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

/* Logo Scroll */
.logo-scroll-section {
	padding: 20px 0;
}

.logo-slide {
	display: block;
	width: 160px;
	height: 120px;
	margin: 0 auto;
}

.logo-slide img {
	max-width: 100%;
	height: auto;
}

.myLogoSwiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* 問題提起セクション */
.problem-section {
	padding: 100px 0;
	background: var(--blue5);
}

.section-header {
	margin-bottom: 4rem;
	text-align: center;
}

.section-header h2 {
	margin-bottom: 1rem;
	color: var(--blue2);
	font-size: 2.5rem;
	font-weight: bold;
}

.section-header p {
	color: var(--dark-gray);
	font-size: 1.2rem;
}

.problem-content {
	position: relative;
	display: grid;
	align-items: center;

	grid-template-columns: 36% 60%;
	gap: 3rem;
}

.problem-content::after {
	position: absolute;
	bottom: -36%;
	left: 50%;
	width: 300px;
	height: 100px;
	content: "";
	transform: translateX(-50%);
	background: url(./img/arrow-down_1.svg) no-repeat center center / contain;
}

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

.problem-list {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	background: var(--white);
}

.problem-item {
	display: flex;
	align-items: flex-start;
	padding: 1.5rem;

	gap: 1rem;
}

.problem-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--white);
	border-radius: 50%;
	background: var(--dark-gray);
	font-weight: bold;
}

.problem-text h3 {
	margin-bottom: 0.5rem;
	color: var(--black);
	font-size: 1.2rem;
}

.problem-text p {
	color: var(--dark-gray);
}

.solution-highlight {
	margin-top: 11rem;
	padding: 2rem;
	text-align: center;
	color: white;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--blue2), var(--green2));
}

.solution-highlight p {
	font-size: 1.3rem;
	font-weight: 600;
}

/* ソリューションセクション */
.solution-section {
	padding: 100px 0;
	background: white;
}

.solutions-grid {
	display: grid;

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

.solution-card {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0, 102, 255, 0.3);
	border-radius: 12px;
	background: var(--white);
}

.solution-header {
	margin-bottom: 2rem;
	text-align: center;
}

.solution-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 auto 1rem;
	color: white;
	border-radius: 16px;
	font-size: 1.5rem;
}

.solution-icon.primary {
	background: linear-gradient(135deg, #0066ff, #13499a);
}

.solution-icon.secondary {
	background: linear-gradient(135deg, #24a1db, #056794);
}

.solution-icon.accent {
	background: linear-gradient(135deg, #47d7b7, #049576);
}

.solution-header h3 {
	margin-bottom: 0.5rem;
	color: var(--black);
	font-size: 1.5rem;
}

.solution-subtitle {
	color: var(--dark-gray);
	font-size: 1rem;
}

.solution-image {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	max-height: 240px;
	margin-bottom: 1.5rem;
	text-align: center;
}

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

	object-fit: cover;
}

.solution-content p {
	color: #333;
	line-height: 1.7;
}

/* AI広告運用の強みセクション */
.strengths-section {
	padding: 100px 0;
	background: var(--blue5);
}

.strengths-grid {
	display: grid;
	margin-top: 60px;

	grid-template-columns: 1fr;
	gap: 60px;
}

.strength-card {
	padding: 48px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 12px;
	background: white;
}

.strength-card:nth-child(1) > .strength-image img {
	max-width: 100%;

	margin-inline: auto;
}
.strength-card:nth-child(3) > .strength-image {
	width: 400px;

	margin-inline: auto;
}

.strength-header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;

	gap: 20px;
}

.strength-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: center;
	width: 80px;
	height: 80px;
	color: white;
	border-radius: 20px;
	font-size: 32px;
}

.strength-icon.primary {
	background: linear-gradient(135deg, #0066ff, #13499a);
}

.strength-icon.secondary {
	background: linear-gradient(135deg, #24a1db, #056794);
}

.strength-icon.accent {
	background: linear-gradient(135deg, #47d7b7, #049576);
}

.strength-icon.primary img {
	width: 40px;
	height: 40px;
}

.strength-icon.secondary img {
	width: 50px;
	height: 50px;
}

.strength-icon.accent img {
	width: 50px;
	height: 50px;
}

.strength-header h3 {
	margin: 0 0 10px 0;
	color: var(--black);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
}

.strength-subtitle {
	margin: 0;
	color: var(--dark-gray);
	font-size: 16px;
	font-weight: 500;
}

.strength-image {
	margin: 30px 0;
	text-align: center;
}

.strength-image p {
	margin-bottom: 1.2rem;
	color: var(--black);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.3;
}

.pyramid-wrapper {
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
}

.pyramid {
	position: relative;
	z-index: 10;
	width: 78%;
	padding: 0;
	list-style: none;
	font-size: var(--pyramid-base-font);

	margin-inline: auto;
}

.pyramid > li {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 8em;
}

.pyramid > li + li {
	border-top: 16px solid var(--white);
}
.pyramid > li::before {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	content: "";
	transform: translateX(-50%);
	background-repeat: no-repeat;
	background-position: top -2px left 1px, top -2px right 1px;
	background-size: 50% calc(8em * 3);
}
.pyramid > li:nth-of-type(1)::before {
	z-index: -1;
	height: calc(8em * 1);
	background-image: linear-gradient(to bottom right, transparent 50%, var(--blue4) 50%), linear-gradient(to bottom left, transparent 50%, var(--blue4) 50%);
}
.pyramid > li:nth-of-type(2)::before {
	z-index: -2;
	height: calc(8em * 2);
	background-image: linear-gradient(to bottom right, transparent 50%, #85b6ff 50%), linear-gradient(to bottom left, transparent 50%, #85b6ff 50%);
}
.pyramid > li:nth-of-type(3)::before {
	z-index: -3;
	height: calc(8em * 3);
	background-image: linear-gradient(to bottom right, transparent 50%, var(--blue3) 50%), linear-gradient(to bottom left, transparent 50%, var(--blue3) 50%);
}

.layer-content {
	width: 100%;
	max-width: 620px;
}

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

.layer-title h4 {
	margin-top: 0.8em;
	margin-bottom: 0;
	color: var(--black);
	font-size: 1.4rem;
}

.layer-title p {
	margin-top: 0.5em;
	color: var(--dark-gray);
	font-size: 14px;
}

.strength-content {
	color: var(--dark-gray);
	font-size: 16px;
	line-height: 1.8;
}

.strength-content p {
	max-width: 880px;

	margin-inline: auto;
}

/* インハウス化支援の選択肢スタイル */
.choice-options {
	display: grid;
	max-width: 880px;

	margin-block: 2rem;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-inline: auto;
}

.choice-item {
	display: flex;
	align-items: center;
	padding: 1.5rem;
	transition: all 0.3s ease;
	border-radius: 12px;
	background: var(--blue4);

	gap: 20px;
}

.choice-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #47d7b7, #049576);
}

.choice-icon i {
	color: var(--white);
	font-size: 1.2rem;
}

.choice-item-text {
}

.choice-item h4 {
	margin-bottom: 0.1rem;
	color: var(--black);
	font-size: 1.1rem;
}

.choice-item p {
	color: var(--dark-gray);
	font-size: 0.9rem;
}

/* 料金体系セクション */
.pricing-section {
	padding: 100px 0;
	background: var(--white);
}

.pricing-content {
}

.pricing-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.pricing-box {
	position: relative;
	margin-bottom: 2rem;
	padding: 2.5rem;
	text-align: center;
	color: white;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--blue2), var(--green2));
}

.pricing-box::after {
	position: absolute;
	bottom: -42%;
	left: 50%;
	width: 300px;
	height: 100px;
	content: "";
	transform: translateX(-50%);
	background: url(./img/arrow-down_1.svg) no-repeat center center / contain;
}

.pricing-box h3 {
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.pricing-box > p {
	font-weight: 600;
}

.price-main {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;

	gap: 30px;
}

.price-main-card {
	display: flex;
	flex-direction: column;
}

.price-main-head {
	width: fit-content;
	padding: 4px 12px;
	color: var(--blue3);
	border-radius: 30px;
	background: var(--white);
	font-weight: 600;

	margin-inline: auto;
}

.price-amount {
	margin-top: 10px;
}

.price-amount-number {
	letter-spacing: 0.1rem;
	font-size: 4.2rem;
	font-weight: 800;
	line-height: 1.3;
}

.currency {
	font-size: 2.2rem;
	font-weight: 600;

	margin-inline: 8px;
}

.plus img {
	width: 40px;
	height: 40px;
}

.small-text {
	font-size: 1.6rem;
}

.price-sub {
	margin-bottom: 1.5rem;
	opacity: 0.9;
	font-size: 1.1rem;
}

.comparison-section {
	margin-top: 11rem;
}

.comparison-section h4 {
	margin-bottom: 1.5rem;
	text-align: center;
	color: var(--black);
	font-size: 1.5rem;
}

.comparison-table {
	overflow-x: auto;
	margin: 0 -20px;
	padding: 0 20px;
}

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

.comparison-table th, .comparison-table td {
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
	color: var(--dark-gray);
	border-bottom: none;
	background: var(--blue5);
	font-weight: bold;
}

.comparison-table th:first-child {
	border-bottom: none;
	background: var(--white);
}

.comparison-table td:first-child {
	color: var(--blue2);
	background: var(--blue5);
	font-weight: bold;
}

.comparison-table td:last-child {
	color: var(--blue2);
	background: var(--white);
	font-weight: 800;
}

.comparison-table .highlight-column {
	color: var(--white);
	border-right: 4px solid var(--blue2);
	border-left: 4px solid var(--blue2);
	background: var(--blue2);
	font-size: 20px;
	font-weight: 800;
}

.comparison-table table tbody tr:last-child .highlight-column {
	border-bottom: 4px solid var(--blue2);
}

/* 実績・事例セクション */
.results-section {
	padding: 100px 0;
	background: var(--blue4);
}

.results-grid {
	display: grid;
	margin-bottom: 4rem;

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

.result-card {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	padding: 2rem;
	transition: transform 0.3s ease;
	border-radius: 12px;
	background: var(--white);
}

.result-header {
}

.result-badge {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 1.1rem;
	font-weight: 600;
}

.result-badge.secondary {
	color: var(--white);
	background: var(--blue1);
}

.result-badge.accent {
	color: var(--white);
	background: var(--blue2);
}

.result-header h3 {
	min-height: calc(1.3rem * 1.6 * 2);
	color: var(--black);
	font-size: 1.3rem;
}

.result-image {
	margin-top: 1rem;
	text-align: center;
}

.result-image img {
	width: 100%;
	max-width: 300px;
	height: 100%;
	max-height: 300px;
}

.result-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 2rem;
}

.challenge {
	flex-grow: 1;
	margin-bottom: 1.5rem;
}

.achievement {
	margin-bottom: 1.5rem;
}

.challenge h4, .achievement h4 {
	display: inline-block;
	margin-bottom: 0.5rem;
	padding: 0.5rem 1rem;
	color: var(--black);
	border-radius: 20px;
	background: var(--blue4);
	font-size: 1.1rem;
	font-weight: 600;
}

.challenge p {
	color: var(--dark-gray);
}

.achievement ul {
	list-style: none;
}

.achievement li {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	color: var(--blue2);
	font-size: 1.1rem;

	gap: 0.5rem;
}

.achievement li i {
	color: var(--blue2);
}

.result-content .achievement:last-child {
	margin-bottom: 0;
}

/* お客様の声 */
.testimonials {
	display: grid;
	margin-top: 4rem;

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

.testimonial-card {
	position: relative;
	padding: 2rem;
	border-radius: 12px;
	background: var(--white);
}

.testimonial-card::after {
	position: absolute;
	top: -24px;
	left: 50%;
	width: 48px;
	height: 48px;
	content: "";
	transform: translateX(-50%);
	border: 4px solid var(--blue4);
	border-radius: 50%;
	background-color: var(--white);
	background-image: url(./img/quote.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 50%;
}

.stars {
	margin-bottom: 1rem;
	color: var(--accent-orange);
}

.testimonial-card h4 {
	margin-bottom: 1rem;
	color: var(--black);
	font-size: 1.3rem;
}

.testimonial-card p {
	margin-bottom: 1rem;
	color: var(--dark-gray);
	line-height: 1.7;
}

.testimonial-author {
	display: flex;
	align-items: center;

	gap: 10px;
}

.testimonial-author img {
	width: 40px;
	height: 40px;
}

.testimonial-author p {
	margin-bottom: 0;
	color: var(--blue2);
	font-weight: 600;
}

/* 最終CTAセクション */
.final-cta {
	padding: 80px 0;
	text-align: center;
	color: var(--white);
	background: linear-gradient(135deg, var(--blue2), var(--green2));
}

.cta-content h2 {
	margin-bottom: 1.5rem;
	font-size: 2.5rem;
}

.cta-description {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.cta-sub {
	margin-bottom: 3rem;
	font-size: 1rem;
}

/* フッター */
.contact-info {
	display: flex;
	flex-direction: column;

	gap: 0.5rem;
}

.contact-item {
	display: flex;
	align-items: center;
	color: var(--light-gray);

	gap: 0.5rem;
}

.footer {
	padding: 40px 0 20px 0;
	color: var(--white);
	background-color: var(--black);
	font-size: 0.9em;
}

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

.footer-logo h3 {
	margin: 0;
	color: var(--white);
	font-size: 1.5em;
}

.footer-logo p {
	margin-top: 1em;
}

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

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

.footer-bottom {
	margin-top: 20px;
	padding-top: 20px;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.6);
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
	}

	.hero-image {
		width: 90%;

		margin-inline: auto;
	}

	.problem-content::after {
		bottom: -30%;
	}

	.solution-card {
		padding: 1.5rem;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.header-content {
		gap: 15px;
	}

	.header-tel {
		font-size: 20px;
	}

	.nav .cta-button {
		padding: 10px 20px;
		font-size: 12px;
	}

	.hero {
		padding: 120px 0 60px;
	}

	.hero-content {
		text-align: center;

		gap: 2rem;
	}

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

	.features-grid {
		gap: 1rem;
	}

	.feature-item {
	}

	.feature-item h3 {
		text-align: left;
	}

	.feature-item p {
		text-align: left;
	}

	.cta-buttons {
		align-items: center;
		flex-direction: column;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.problem-content, .pricing-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.problem-content::after {
		bottom: -17%;
	}

	.problem-image {
		width: 90%;

		margin-inline: auto;
	}

	.solutions-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.solution-image {
		width: 90%;
		max-height: inherit;

		margin-inline: auto;
	}

	.strengths-grid {
		gap: 40px;
	}

	.strength-card {
		padding: 1.5rem;
	}

	.strength-header {
		flex-direction: column;
		text-align: center;

		gap: 15px;
	}

	.strength-icon {
		width: 60px;
		height: 60px;
		margin: 0 auto;
		font-size: 24px;
	}

	.strength-header h3 {
		font-size: 24px;
	}

	.strength-image p {
		font-size: 1.2rem;
	}

	.pyramid {
		width: 95%;
		font-size: 16px;
	}

	.layer-title h4 {
		font-size: 1.2rem;
	}

	.layer-title p {
		font-size: 14px;
		line-height: 1.4;
	}

	.strength-card:nth-child(1) > .strength-image img {
		max-width: 90%;
	}

	.strength-card:nth-child(3) > .strength-image {
		width: 100%;
		max-width: 400px;
	}

	.choice-options {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.price-main {
		gap: 20px;
	}

	.pricing-box {
		padding: 1.5rem;
	}

	.price-main-head {
		font-size: 0.9rem;
	}

	.price-amount-number {
		font-size: 2.8rem;
	}

	.currency {
		font-size: 1.8rem;
	}

	.results-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.result-card {
		padding: 1.5rem;
	}

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

	.testimonial-card {
		padding: 1.5rem;
	}

	.footer-content {
		text-align: center;

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

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

	.comparison-table {
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

	table {
		min-width: 500px;
	}
}

@media (max-width: 560px) {
	.ai-ad-text {
		font-size: 1.3rem;
	}

	.header-tel {
		display: none;
	}

	.logo {
		width: 140px;
		height: 30px;
	}

	.price-main {
		flex-direction: column;

		gap: 20px;
	}

	.pricing-box::after {
		bottom: -30%;
	}

	.price-amount {
		margin-top: 4px;
	}

	.plus img {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 1.8rem;
	}

	.section-header h2 {
		font-size: 1.8rem;
	}

	.btn-large {
		padding: 0.8rem 1.5rem;
		font-size: 1rem;
	}

	.solution-highlight {
		padding: 1rem;
	}

	.strength-card:nth-child(1) > .strength-image img {
		max-width: 100%;
	}

	.pricing-box {
		padding: 2rem 1.5rem;
	}

	.comparison-table .highlight-column {
		font-size: 18px;
	}

	.final-cta h2 {
		font-size: 1.8rem;
	}
}

/* アニメーション */
@keyframes fadeInUp {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.hero-content, .section-header, .solution-card, .result-card {
	animation: fadeInUp 0.8s ease-out;
}

/* スムーススクロール */
html {
	scroll-behavior: smooth;
}