@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Manrope:wght@700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* 共通デザイントークン */
:root {
	--hoc-orange-main: #E87A31;
	--hoc-orange-dark: #D66B26;
	--hoc-dark-section: #2D2622;
	--hoc-text-default: #333333;
	--hoc-review-bg: #FEF9F3;
}

/* ページ共通の初期設定 */
body.page-index {
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--hoc-text-default);
	background-color: #ffffff;
	padding-bottom: 74px;
}

@media (min-width: 768px) {
	body.page-index {
		padding-bottom: 0;
	}
}

body.page-review {
	font-family: 'Plus Jakarta Sans', 'Noto Sans JP', sans-serif;
	background-color: var(--hoc-review-bg);
	padding-bottom: 74px;
}

/* 横幅に応じて文字サイズを可変にする（小さい画面ほど小さく） */
.text-2xl {
	font-size: clamp(1.15rem, 5vw, 1.5rem);
}

.text-xl {
	font-size: clamp(1rem, 4.4vw, 1.25rem);
}

.text-lg {
	font-size: clamp(0.95rem, 3.8vw, 1.125rem);
}

.text-sm {
	font-size: clamp(0.78rem, 3.2vw, 0.875rem);
}

.text-xs {
	font-size: clamp(0.68rem, 2.9vw, 0.75rem);
}

/* ページ共通で使うユーティリティクラス */
.text-orange-main {
	color: var(--hoc-orange-main);
}

.bg-orange-main {
	background-color: var(--hoc-orange-main);
}

.bg-orange-dark {
	background-color: var(--hoc-orange-dark);
}

.bg-dark-section {
	background-color: var(--hoc-dark-section);
}

.border-orange-main {
	border-color: var(--hoc-orange-main);
}

.card-shadow {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.check-mark::before {
	content: '□';
	margin-right: 4px;
}

.bullet-square::before {
	content: '■';
	margin-right: 4px;
}

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.text-shadow-sm {
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* LifeDock 特徴カード */
.feature-cards-wrap {
	background-color: var(--hoc-orange-main);
	margin-left: -1rem;
	margin-right: -1rem;
	padding: 0.95rem 0.9rem 1rem;
	display: grid;
	gap: 0.75rem;
}

.feature-card {
	background-color: #f4f4f4;
	border: 3px solid var(--hoc-orange-main);
	border-radius: 16px;
	padding: 0.9rem 0.8rem 0.85rem;
	text-align: left;
}

.feature-card-title {
	background-color: var(--hoc-orange-main);
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin: 0 0.65rem 0.65rem;
	padding: 0.32rem 0.6rem;
}

.feature-card-title h3 {
	font-size: 2.05rem;
	font-weight: 800;
	line-height: 1;
	color: #ffffff;
	letter-spacing: 0.06em;
	margin: 0;
}

.feature-card-icon {
	width: 1.85rem;
	height: 1.85rem;
	object-fit: contain;
	flex-shrink: 0;
}

.feature-card-text {
	font-size: 1.05rem;
	line-height: 1.55;
	font-weight: 700;
	color: #1f1f1f;
	margin: 0;
	padding: 0 0.3rem;
}

/* レビュー: 体験者の声セクション */
.testimonials-match {
	background-color: transparent;
	padding: 0.7rem 0.35rem 1rem;
	max-width: 430px;
	margin: 0 auto;
}

.testimonials-match .testimonials-heading {
	display: block;
}

.testimonials-match .testimonials-tabs {
	margin-bottom: 0.6rem;
	gap: 0.38rem;
}

.testimonials-match .testimonials-tab {
	padding: 0.34rem 0.2rem;
	border-radius: 0;
	text-align: center;
	font-size: 0.86rem;
	line-height: 1.2;
	font-weight: 800;
	color: #ffffff;
	box-shadow: none;
	position: relative;
}

.testimonials-match .testimonials-tab-active {
	background-color: #df7a27;
}

.testimonials-match .testimonials-tab-muted {
	background-color: #e8bf95;
	color: #ffffff;
	font-weight: 700;
}

.testimonials-match .testimonials-tab-with-pointer > div {
	display: none;
}

.testimonials-match .testimonials-list {
	gap: 0.55rem;
	display: grid;
}

.testimonials-match .testimonial-card {
	background-color: #ffffff;
	border-color: #df7a27;
	border-width: 2px;
	border-radius: 8px;
	padding: 0.78rem 0.72rem 0.72rem;
	padding-top: 1.45rem;
	box-shadow: none;
}

.testimonials-match .testimonial-badge {
	top: -0.62rem;
	border-radius: 0;
	padding: 0.14rem 0.9rem;
	font-size: 0.58rem;
	line-height: 1.2;
	font-weight: 700;
	background-color: #df7a27;
	clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
	box-shadow: none;
}

.testimonials-match .testimonial-age {
	margin-bottom: 0.45rem;
	padding-bottom: 0.32rem;
	border-bottom: 1px solid #df7a27;
}

.testimonials-match .testimonial-age p {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.25;
	color: #df7a27;
}

.testimonials-match .testimonial-body {
	font-size: 0.72rem;
	line-height: 1.55;
	font-weight: 600;
	color: #1f1f1f;
}

/* レビュー: ご利用の流れセクション */
.flow-match {
	padding-top: 0.9rem;
	padding-bottom: 1.05rem;
	background-color: #f7efe6;
}

.flow-match .flow-inner {
	max-width: 36rem;
}

.flow-match .flow-heading {
	margin-bottom: 0.55rem;
}

.flow-match .flow-heading .material-symbols-outlined {
	display: none;
}

.flow-match .flow-title {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.2;
	color: #121212;
}

.flow-match .flow-list {
	display: grid;
	gap: 0.45rem;
}

.flow-match .flow-card {
	border: 1.5px solid #df7a27;
	border-radius: 9px;
	box-shadow: none;
	background-color: #ffffff;
	min-height: 0;
}

.flow-match .flow-media {
	width: 36%;
	min-height: 72px;
}

.flow-match .flow-copy {
	width: 64%;
	padding: 0.42rem 0.5rem;
}

.flow-match .flow-step-chip {
	padding: 0.05rem 0.55rem;
	border-radius: 999px;
	font-size: 0.62rem;
	line-height: 1.25;
	font-weight: 700;
	margin-bottom: 0.15rem;
	background-color: #df7a27;
}

.flow-match .flow-step-title {
	font-size: 1.6rem;
	line-height: 1.08;
	font-weight: 800;
	color: #df7a27;
	margin-bottom: 0.16rem;
}

.flow-match .flow-step-lead {
	font-size: 0.86rem;
	line-height: 1.3;
	font-weight: 700;
	color: #1f1f1f;
}

.flow-match .flow-step-sub {
	font-size: 0.62rem;
	line-height: 1.25;
	font-weight: 500;
	color: #4d4137;
}

/* レビュー: FAQセクション */
.faq-match {
	padding-top: 1rem;
	padding-bottom: 1.2rem;
	padding-left: 0.35rem;
	padding-right: 0.35rem;
	max-width: 390px;
	margin: 0 auto;
}

.faq-match .faq-list {
	display: grid;
	gap: 0.62rem;
}

.faq-match .faq-list > div {
	background-color: #f6e8d6;
	border: 1px solid #eadfce;
	border-radius: 10px;
	padding: 0.65rem 0.58rem;
	box-shadow: none;
}

.faq-match .faq-list > div.space-y-3 {
	gap: 0.38rem;
}

.faq-match .faq-list > div.pb-6 {
	padding-bottom: 0.65rem;
	border-bottom: none;
}

.faq-match .faq-list > div > div {
	gap: 0.45rem;
	align-items: flex-start;
}

.faq-match .faq-list > div > div > div:first-child {
	width: 1.12rem;
	height: 1.12rem;
	min-width: 1.12rem;
	font-size: 0.6rem;
	font-weight: 700;
	border: none;
}

.faq-match .faq-list > div > div:first-child > div:first-child {
	background-color: #db8727;
	color: #ffffff;
}

.faq-match .faq-list > div > div:nth-child(2) > div:first-child {
	background-color: #df7a27;
	color: #ffffff;
}

.faq-match .faq-list > div > div:first-child p {
	font-size: 0.84rem;
	line-height: 1.35;
	font-weight: 700;
	color: #df7a27;
	padding-top: 0;
}

.faq-match .faq-list > div > div:nth-child(2) p,
.faq-match .faq-list > div > div:nth-child(2) .text-sm {
	font-size: 0.8rem;
	line-height: 1.45;
	font-weight: 500;
	color: #3f3a35;
	padding-top: 0;
}

/* 下部固定CTAバー */
.bottom-cta {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	height: 68px;
	z-index: 70;
}

.bottom-cta-grid {
	width: 100%;
}

.bottom-cta-item {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
	gap: 0.28rem;
}

.bottom-cta-instagram {
	background-color: #de7a1f;
	gap: 0.22rem;
}

.bottom-cta-icon {
	width: 17px;
	height: 17px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.96;
	flex-shrink: 0;
}

.bottom-cta-label-stack {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.05;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.bottom-cta-phone {
	background-color: #eba81b;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.bottom-cta-phone-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.bottom-cta-phone-label {
	font-size: 1.65rem;
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.bottom-cta-web {
	background-color: #8ec31f;
}

.bottom-cta-web-label {
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
	.feature-cards-wrap {
		margin-left: 0;
		margin-right: 0;
		border-radius: 18px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 1.2rem;
	}

	.testimonials-match {
		max-width: 1100px;
		padding: 1.4rem 0.6rem 1.6rem;
	}

	.testimonials-match .testimonials-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.9rem;
	}

	.flow-match .flow-inner {
		max-width: 1100px;
	}

	.flow-match .flow-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.8rem;
	}

	.faq-match {
		max-width: 1100px;
		padding-left: 0.6rem;
		padding-right: 0.6rem;
	}

	.faq-match .faq-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.9rem;
	}

	.bottom-cta-phone-label {
		font-size: 1.8rem;
	}

	.bottom-cta-web-label {
		font-size: 1.7rem;
	}
}

@media (min-width: 1440px) {
	body.page-index {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.testimonials-match {
		max-width: 1320px;
		padding: 1.8rem 0.8rem 2rem;
	}

	.testimonials-match .testimonials-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
	}

	.flow-match .flow-inner {
		max-width: 1320px;
	}

	.flow-match .flow-list {
		gap: 1rem;
	}

	.faq-match {
		max-width: 1320px;
	}

	.faq-match .faq-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1rem;
	}
}

@media (min-width: 1920px) {
	.feature-cards-wrap {
		max-width: 1320px;
		margin-left: auto;
		margin-right: auto;
	}

	.testimonials-match {
		max-width: 1480px;
	}

	.flow-match .flow-inner {
		max-width: 1480px;
	}

	.faq-match {
		max-width: 1480px;
	}

	.bottom-cta-phone-label {
		font-size: 1.95rem;
	}

	.bottom-cta-web-label {
		font-size: 1.85rem;
	}
}
