@charset "UTF-8";

/* ==========================================
   1. Variables (変数定義)
========================================== */
:root {
	/* Colors */
	--color-orange: #ff6c03;
	--color-green: #5f9130;
	--color-text: #333333;
	--color-bg-base: #fcfbf8;
	--color-bg-light-green: #ebf3e6;
	--color-bg-light-orange: #fdf2e6;
	--color-bg-bubble: #f4f7ee;

	/* Fonts */
	--font-en: 'Montserrat', sans-serif;
	--font-ja: 'Zen Kaku Gothic New', sans-serif;
	--font-hand: 'Dancing Script', cursive; /* 筆記体フォント */
}

/* ==========================================
   2. Reset & Base (初期化とベース設定)
========================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* ページ内リンク時、固定ヘッダー分ズラす */
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-ja), sans-serif;
	color: var(--color-text);
	background-color: var(--color-bg-base);
	line-height: 1.75;
	letter-spacing: 0.04em;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: normal;
	margin: 0;
}

p {
	margin: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* ==========================================
   3. Utilities (汎用クラス)
========================================== */
.u-font-en {
	font-family: var(--font-en), sans-serif;
}
.u-text-orange {
	color: var(--color-orange);
}
.u-text-lg {
	font-size: 1.6em;
}
.u-text-xl {
	font-size: 1.5em;
}

/* ==========================================
   4. Layout (レイアウト共通設定)
========================================== */
.l-section {
	padding: 100px 5%;
}

.l-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* ==========================================
   5. Components (共通パーツ)
========================================== */
/* --- Buttons --- */
.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-orange);
	color: #fff;
	border-radius: 40px;
	font-weight: 700;
	box-shadow: 0 4px 8px rgba(255, 108, 3, 0.2);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	border: none;
	font-family: inherit;
	cursor: pointer;
}
.c-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(255, 108, 3, 0.3);
}
.c-btn--sm {
	padding: 12px 24px;
	font-size: 1rem;
}
.c-btn--lg {
	padding: 16px 32px;
	font-size: 1.25rem;
}

.c-btn--xl {
	min-width: 400px;
}

/* 白背景・オレンジ文字のボタンバリエーション */
.c-btn--white {
	background-color: #fff;
	color: var(--color-orange);
}

.c-btn--arrow::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-left: 16px;
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 12h4m4 0h11m-7-7l7 7-7 7" stroke="%23ffffff" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.3s ease;
}
/* 白ボタン用のオレンジ矢印 */
.c-btn--white.c-btn--arrow::after {
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 12h4m4 0h11m-7-7l7 7-7 7" stroke="%23FF6C03" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.c-btn--arrow:hover::after {
	transform: translateX(8px);
}

/* --- Section Header --- */
.c-section-header {
	text-align: center;
	margin-bottom: 48px;
}
.c-section-subtitle {
	display: inline-block;
	font-family: var(--font-en), sans-serif;
	color: var(--color-green);
	font-weight: 700;
	font-size: 1.5rem;
	margin-bottom: 8px;
	line-height: normal;
}
.c-section-title {
	display: flex;
	justify-content: center;
	gap: 4px;
	align-items: baseline;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}

/* --- Marker --- */
.c-marker {
	position: relative;
	display: inline-block;
	z-index: 1;
}
.c-marker::before,
.c-marker::after {
	content: '';
	position: absolute;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: -1;
}
.c-marker::before {
	left: -2%;
	bottom: 18%;
	width: 82%;
	height: 24px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 20" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 5 12 Q 50 2 95 12" stroke="%23FFE8D1" stroke-width="8" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" /></svg>');
	transform: rotate(-1.5deg);
}
.c-marker::after {
	left: 5%;
	bottom: 3%;
	width: 95%;
	height: 24px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 20" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M 5 15 Q 50 4 95 10" stroke="%23FFE8D1" stroke-width="10" stroke-linecap="round" fill="none" vector-effect="non-scaling-stroke" /></svg>');
	transform: rotate(-2.5deg);
}

/* --- Bubble --- */
.c-bubble {
	position: absolute;
	z-index: 2;
	width: 280px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 24px;
}
.c-bubble__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/deco/deco-problem.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
}
.c-bubble__text {
	position: relative;
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	z-index: 1;
}
.c-bubble--flip .c-bubble__bg {
	transform: scaleX(-1);
}

/* --- Scroll Arrows --- */
.c-scroll-arrows {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 64px;
	gap: 4px;
}
.c-scroll-arrows__item {
	width: 32px;
	height: 20px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background-color: var(--color-orange);
	opacity: 0.4;
	animation: arrowPulse 1.5s infinite;
}
.c-scroll-arrows__item:nth-child(1) {
	animation-delay: 0s;
}
.c-scroll-arrows__item:nth-child(2) {
	animation-delay: 0.2s;
}
.c-scroll-arrows__item:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes arrowPulse {
	0%,
	100% {
		opacity: 0.4;
	}
	50% {
		opacity: 1;
	}
}

/* ==========================================
   6. Project (ヘッダー、フッター、共通パーツ)
========================================== */
/* --- Header --- */
.p-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 2%;
	z-index: 100;
	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		padding 0.3s ease;
}
/* 下層ページ用ヘッダー（デフォルトで白背景） */
.p-header--sub {
	background-color: #ffffff;
}
.p-header.is-scrolled {
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.p-header__logo {
	display: flex;
	align-items: center;
	z-index: 102; /* ハンバーガーより上 */
	position: relative;
}
.p-header__logo a {
	display: block;
	transition: opacity 0.3s ease;
}
.p-header__logo a:hover {
	opacity: 0.8;
}
.p-header__logo img {
	height: 32px;
	width: auto;
	display: block;
}
.p-header__actions {
	display: flex;
	align-items: center;
	gap: 40px;
}
.p-header__nav ul {
	display: flex;
	gap: 32px;
}
.p-header__nav a {
	font-size: 1rem;
	font-weight: 700;
	transition: color 0.3s ease;
}
.p-header__nav a:hover {
	color: var(--color-orange);
}
/* ハンバーガーボタン（PC時は非表示） */
.p-header__hamburger {
	display: none;
}

/* --- Footer --- */
.p-footer__top {
	background-color: var(--color-text); /* ダークグレー */
	color: #fff;
	padding: 80px 5%;
}
.p-footer__top-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.p-footer__desc {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 16px;
}
.p-footer__logo img {
	height: 48px;
	width: auto;
	display: block;
}
.p-footer__nav {
	display: flex;
	gap: 80px;
}
.p-footer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.p-footer__nav-list a {
	font-size: 1rem;
	font-weight: 500;
	transition: opacity 0.3s ease;
}
.p-footer__nav-list a:hover {
	opacity: 0.7;
}
.p-footer__bottom {
	background-color: #fff;
	padding: 24px 5%;
}
.p-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.p-footer__company-info {
	display: flex;
	align-items: center;
	gap: 40px;
}
.p-footer__company-logo-wrap {
	display: flex;
	align-items: center;
	gap: 16px;
}
.p-footer__company-label {
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
}
.p-footer__company-link {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: opacity 0.3s ease;
}
.p-footer__company-link:hover {
	opacity: 0.7;
}
.p-footer__company-link img {
	height: 24px;
	width: auto;
	display: block;
}
/* 外部リンクアイコン */
.p-footer__company-link svg {
	width: 16px;
	height: 16px;
	stroke: #666;
}
.p-footer__sub-nav {
	display: flex;
	gap: 24px;
}
.p-footer__sub-nav a {
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
	transition: opacity 0.3s ease;
}
.p-footer__sub-nav a:hover {
	opacity: 0.7;
}
.p-footer__copyright {
	font-size: 0.875rem;
	color: #999;
	font-family: var(--font-en), sans-serif;
}

/* --- スマホ用 固定CTA --- */
.p-fixed-cta {
	display: none;
}

/* ==========================================
   7. Top Page (トップページ固有)
========================================== */
/* --- Hero Section --- */
.p-hero {
	position: relative;
	width: 100%;
	min-height: 90vh;
	display: flex;
	align-items: center;
	padding: 0 5% 0;
	background-image: url('../img/mv-pc.png');
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
}
.p-hero__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	z-index: 10;
}
.p-hero__content {
	flex: 1;
	max-width: 552px;
	min-width: 356px;
}
.p-hero__label-wrapper {
	position: relative;
	display: inline-block;
	margin-bottom: 24px;
	z-index: 1;
}
.p-hero__label-deco {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 72px;
	height: auto;
	z-index: -1;
}
.p-hero__label {
	background-color: var(--color-green);
	color: #fff;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 1.25rem;
	font-weight: 700;
	display: inline-block;
}
.p-hero__title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 32px;
	line-height: 1.6;
}
.p-hero__desc {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 40px;
}
.p-hero__image-area {
	flex: 1.2;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 24px;
}
.p-hero__image-wrapper {
	width: 100%;
	max-width: 640px;
	position: relative;
	z-index: 2;
}
.p-hero__image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
}

@keyframes floatBlob1 {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
		border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	}
	33% {
		transform: translate(-8px, -16px) rotate(4deg);
		border-radius: 60% 40% 30% 70% / 60% 40% 70% 40%;
	}
	66% {
		transform: translate(8px, -8px) rotate(8deg);
		border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
	}
}
@keyframes floatBlob2 {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
	}
	33% {
		transform: translate(16px, 8px) scale(1.02);
		border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
	}
	66% {
		transform: translate(-8px, 16px) scale(0.98);
		border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
	}
}
.p-hero__decor-1 {
	position: absolute;
	top: 0%;
	right: -5%;
	width: 140px;
	height: 120px;
	background-color: var(--color-bg-light-orange);
	z-index: 3;
	animation: floatBlob1 6s ease-in-out infinite;
}
.p-hero__decor-2 {
	position: absolute;
	bottom: 0%;
	left: -2%;
	width: 160px;
	height: 130px;
	background-color: var(--color-bg-light-green);
	z-index: 3;
	animation: floatBlob2 8s ease-in-out infinite;
}

/* --- Problem Section --- */
.p-problem {
	background-color: #fff;
	overflow: hidden;
	padding-bottom: 40px;
}
.p-problem__content {
	position: relative;
	/* max-width: 896px; */
	margin: 0 auto;
	/* height: 512px; */
	/* margin-bottom: 40px; */
}
.p-problem__content img {
	width: 100%;
	height: auto;
}
.p-problem__person {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 256px;
	z-index: 5;
}
.p-problem__person img {
	width: 100%;
	display: block;
}

.p-problem__bubble--1 {
	top: 5%;
	left: 0;
}
.p-problem__bubble--2 {
	top: 30%;
	left: 25%;
}
.p-problem__bubble--3 {
	bottom: 10%;
	left: 5%;
}
.p-problem__bubble--4 {
	top: -5%;
	right: 5%;
}
.p-problem__bubble--5 {
	top: 35%;
	right: -5%;
}
.p-problem__bubble--6 {
	bottom: 5%;
	right: 10%;
}

/* --- Solution Banner --- */
.p-solution-banner-area {
	background: linear-gradient(to bottom, #ffffff 50%, var(--color-bg-base) 50%);
	padding: 20px 5% 76px;
}
.p-solution-banner-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 10;
}
.p-solution-lead {
	margin-top: 0;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 16px;
}
.p-solution-banner {
	background-color: var(--color-orange);
	color: #fff;
	padding: 20px;
	border-radius: 16px;
	position: relative;
	box-shadow: 0 8px 24px rgba(255, 108, 3, 0.15);
}
.p-solution-banner__title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.p-solution-banner__char {
	position: absolute;
	right: 16px;
	bottom: 0;
	transform: translateY(40px);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p-solution-banner__char img {
	width: 160px;
	height: auto;
}
.p-solution-banner__char-text {
	font-size: 0.75rem;
	color: var(--color-text);
	margin-top: 8px;
	font-weight: 500;
}

/* --- Feature Section --- */
.p-feature {
	position: relative;
	background-color: var(--color-bg-base);
	overflow: hidden;
	z-index: 0;
	padding-top: 40px;
}
.p-feature .l-container {
	position: relative;
	z-index: 1;
}
.p-feature__bg-blob {
	position: absolute;
	z-index: -1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.p-feature__bg-blob--1 {
	top: 0%;
	left: -15%;
	width: 600px;
	height: 500px;
	background-image: url('../img/deco/deco-bg01.png');
}
.p-feature__bg-blob--2 {
	bottom: 5%;
	right: -15%;
	width: 600px;
	height: 500px;
	background-image: url('../img/deco/deco-bg02.png');
}
.p-feature__list {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 80px;
}
.p-feature__item {
	display: flex;
	align-items: center;
	gap: 80px;
}
.p-feature__item--reverse {
	flex-direction: row-reverse;
}
.p-feature__content {
	flex: 1;
}
.p-feature__num {
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 16px;
	line-height: 1;
}
.p-feature__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 20px;
	line-height: 1.5;
}
.p-feature__desc {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75;
}
.p-feature__image {
	flex: 1;
	position: relative;
}
.p-feature__image-inner {
	position: relative;
	z-index: 2;
	border-radius: 16px;
	overflow: hidden;
}
.p-feature__image img {
	width: 100%;
	height: auto;
	display: block;
}
.p-feature__image::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	width: 100%;
	height: 100%;
	border: 2px solid #5f9130;
	border-radius: 16px;
	z-index: 1;
	pointer-events: none;
}
.p-feature__deco {
	position: absolute;
	z-index: 3;
}
.p-feature__item:nth-child(odd) .p-feature__deco {
	width: 120px;
	height: auto;
	top: -70px;
	right: -80px;
}
.p-feature__item:nth-child(even) .p-feature__deco {
	width: 120px;
	height: auto;
	top: -70px;
	left: -80px;
	transform: scaleX(-1);
}

/* --- CTA Section --- */
.p-cta {
	background-color: var(--color-orange);
	color: #fff;
	padding: 40px 5%;
}
.p-cta__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	/* max-width: 1000px; */
	margin: 0 auto;
}
.p-cta__char {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p-cta__char img {
	width: 200px;
	height: auto;
}
.p-cta__char-text {
	font-size: 0.75rem;
	margin-top: 8px;
	font-weight: 500;
	text-align: center;
}
.p-cta__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.p-cta__title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 28px;
}
.p-cta__lead {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 8px;
}

/* --- Service Section --- */
.p-service {
	position: relative;
	background-color: var(--color-bg-base);
	overflow: hidden;
	z-index: 0;
}
.p-service__bg-blob {
	position: absolute;
	z-index: -1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.p-service__bg-blob--1 {
	bottom: -10%;
	left: -10%;
	width: 600px;
	height: 500px;
	background-image: url('../img/deco/deco-bg03.png');
}
.p-service__bg-blob--2 {
	top: -8%;
	right: -12%;
	width: 600px;
	height: 500px;
	background-image: url('../img/deco/deco-bg01.png');
}
.p-service__lead {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 48px;
}
.p-service__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.p-service__item {
	background-color: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	position: relative;
}
.p-service__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1.618 / 1;
	object-fit: cover;
	display: block;
}
.p-service__body {
	position: relative;
	padding: 56px 40px 48px;
}
.p-service__deco-text {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--font-hand);
	font-size: 4.5rem;
	color: #f8e3c3;
	white-space: nowrap;
	pointer-events: none;
	z-index: 2;
}
.p-service__item-title {
	text-align: center;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 24px;
}
.p-service__item-desc {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75;
}
.p-service__item-desc p {
	margin: 0 0 16px;
}
.p-service__item-desc p:last-child {
	margin-bottom: 0;
}

/* --- Flow Section --- */
.p-flow {
	background-color: #fff;
}
.p-flow__lead {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 48px;
}
.p-flow__list {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 40px;
}
.p-flow__item {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.p-flow__image-area {
	background-color: var(--color-bg-base);
	border-radius: 16px;
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 48px;
}
.p-flow__badge {
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--color-green);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 16px 0 16px 0;
}
.p-flow__icon {
	width: 100px;
	height: auto;
	display: block;
}
.p-flow__item-title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 16px;
}
.p-flow__item-desc {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.75;
}
.p-flow__arrow {
	padding-top: 88px;
	display: flex;
	justify-content: center;
}
.p-flow__arrow svg {
	width: 32px;
	height: 32px;
	stroke: var(--color-green);
}
.p-flow__bottom-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.p-flow__bottom-lead {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 8px;
}

/* --- FAQ Section --- */
.p-faq {
	background-color: var(--color-bg-base);
}
.p-faq__inner {
	max-width: 960px;
	margin: 0 auto;
}
.p-faq__lead {
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 64px;
}
.p-faq__list {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.p-faq__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.p-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 0;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
}
.p-faq__q-icon {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-orange);
	line-height: 1;
}
.p-faq__q-text {
	flex: 1;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-orange);
}
.p-faq__icon-plus {
	position: relative;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}
.p-faq__icon-plus::before,
.p-faq__icon-plus::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--color-orange);
	transform: translate(-50%, -50%);
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}
.p-faq__icon-plus::before {
	width: 24px;
	height: 3px;
	border-radius: 2px;
}
.p-faq__icon-plus::after {
	width: 3px;
	height: 24px;
	border-radius: 2px;
}
.p-faq__item.is-open .p-faq__icon-plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}
.p-faq__a {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}
.p-faq__item.is-open .p-faq__a {
	grid-template-rows: 1fr;
}
.p-faq__a-inner-wrapper {
	overflow: hidden;
}
.p-faq__a-inner {
	padding: 0 0 32px 0;
	display: flex;
	gap: 24px;
	align-items: center;
}
.p-faq__a-char {
	width: 64px;
	height: auto;
	flex-shrink: 0;
}
.p-faq__a-text {
	font-size: 1rem;
	line-height: 1.75;
	margin: 0;
	font-weight: 500;
}

/* ==========================================
   8. Subpage Common (下層ページ共通)
========================================== */
.p-subpage-top {
	padding-top: 112px;
	background-color: var(--color-bg-base);
}
.c-breadcrumb {
	padding: 24px 5%;
	font-size: 0.875rem;
	color: #666;
}
.c-breadcrumb a {
	transition: opacity 0.3s ease;
}
.c-breadcrumb a:hover {
	opacity: 0.7;
}

.p-subpage__wrap {
	background-color: #fff;
	border-radius: 16px;
	padding: 80px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	position: relative;
}

/* ==========================================
   9. Contact Page (お問い合わせページ固有)
========================================== */
.p-contact {
	padding: 48px 5% 120px;
	background-color: var(--color-bg-base);
}
.p-contact__container {
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}
.p-contact__form-wrap {
	background-color: #fff;
	border-radius: 16px;
	padding: 80px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	position: relative;
}
.p-contact__char {
	position: absolute;
	top: -64px;
	right: -32px;
	width: 140px;
	height: auto;
	z-index: 10;
}
.p-contact__lead {
	font-size: 1rem;
	line-height: 2;
	margin-bottom: 40px;
}
.p-contact__lead a {
	color: var(--color-orange);
	font-weight: 700;
	transition: opacity 0.3s ease;
}
.p-contact__lead a:hover {
	opacity: 0.7;
}

/* フォーム要素 */
.c-form-group {
	margin-bottom: 32px;
}
.c-form-label {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 12px;
}
.c-form-req {
	background-color: var(--color-green);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	margin-left: 12px;
	line-height: 1.5;
}
.c-form-note {
	font-size: 0.875rem;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.5;
}
.c-form-input {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 16px;
	font-family: inherit;
	font-size: 1rem;
	color: var(--color-text);
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
	background-color: #fff;
}
.c-form-input:focus {
	outline: none;
	border-color: var(--color-orange);
	box-shadow: 0 0 0 3px rgba(255, 108, 3, 0.1);
}
.c-form-input::placeholder {
	color: #bbb;
}
textarea.c-form-input {
	resize: vertical;
	min-height: 200px;
}

/* チェックボックス */
.c-form-checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.c-form-checkbox {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.c-form-checkbox input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.c-form-checkbox__mark {
	display: inline-block;
	position: relative;
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-right: 12px;
	transition: all 0.2s ease;
	flex-shrink: 0;
}
.c-form-checkbox:hover input ~ .c-form-checkbox__mark {
	border-color: var(--color-orange);
}
.c-form-checkbox input:checked ~ .c-form-checkbox__mark {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
}
.c-form-checkbox__mark::after {
	content: '';
	position: absolute;
	display: none;
	left: 8px;
	top: 4px;
	width: 6px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.c-form-checkbox input:checked ~ .c-form-checkbox__mark::after {
	display: block;
}
.c-form-checkbox__text {
	font-size: 1rem;
}
.p-contact__submit {
	text-align: center;
	margin-top: 48px;
}

/* ==========================================
   10. Thanks Page (サンクスページ固有)
========================================== */
.p-thanks {
	padding: 48px 5% 120px;
	background-color: var(--color-bg-base);
}
.p-thanks__container {
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}
.p-thanks__content {
	text-align: center;
}
.p-thanks__char {
	width: 160px;
	height: auto;
	margin-bottom: 32px;
}
.p-thanks__message {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-orange);
	margin-bottom: 32px;
	line-height: 1.6;
}
.p-thanks__desc {
	font-size: 1rem;
	line-height: 2;
	margin-bottom: 56px;
}

/* ==========================================
   11. Responsive (スマホ向けメディアクエリ)
========================================== */
@media (max-width: 1300px) {
	.p-hero__title {
		font-size: 2rem;
	}
	.p-header__nav ul {
		gap: 16px;
	}
	.p-header__actions {
		gap: 24px;
	}
	.p-feature__list {
		gap: 96px;
	}
	.p-feature__item {
		gap: 40px;
	}
	.p-hero__label {
		font-size: 16px;
	}
	.p-hero__title {
		font-size: 1.75rem;
	}
}

@media (max-width: 800px) {
	body {
		/* padding-bottom: 24px; */
	}

	/* スマホ用 固定CTA表示 (右下に浮くフローティングボタン) */
	.p-fixed-cta {
		display: flex;
		align-items: center;
		gap: 16px;
		position: fixed;
		bottom: 24px;
		right: 5%;
		left: auto;
		width: auto;
		background-color: transparent;
		padding: 0;
		box-shadow: none;
		z-index: 99;
		backdrop-filter: none;
	}
	.p-fixed-cta .c-btn {
		width: auto;
		min-width: auto;
		padding: 14px 24px;
		font-size: 1rem;
		border: 2px solid var(--color-bg-base);
		box-shadow: 0 4px 16px rgba(255, 108, 3, 0.4);
	}

	/* トップに戻るボタン */
	.p-fixed-cta__totop {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		background-color: #fff;
		color: var(--color-orange);
		border: 2px solid var(--color-orange);
		border-radius: 50%;
		box-shadow: 0 4px 16px rgba(255, 108, 3, 0.15);
		cursor: pointer;
		flex-shrink: 0;
		text-decoration: none;
	}
	.p-fixed-cta__totop svg {
		width: 20px;
		height: 20px;
		stroke: var(--color-orange);
		stroke-width: 2.5;
		stroke-linecap: round;
		stroke-linejoin: round;
		margin-bottom: 2px;
	}
	.p-fixed-cta__totop span {
		font-size: 0.625rem;
		font-weight: 700;
		line-height: 1;
		font-family: var(--font-en), sans-serif;
	}

	/* ヘッダー＆ハンバーガーメニュー */
	.p-header {
		padding: 16px 5%;
	}
	.p-header__logo img {
		height: 24px;
	}

	.p-header__hamburger {
		display: block;
		width: 44px;
		height: 44px;
		position: relative;
		z-index: 102;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
	}
	.p-header__hamburger span {
		display: block;
		width: 24px;
		height: 2px;
		background-color: var(--color-text);
		position: absolute;
		left: 10px;
		transition: all 0.3s ease;
		border-radius: 2px;
	}
	.p-header__hamburger span:nth-child(1) {
		top: 14px;
	}
	.p-header__hamburger span:nth-child(2) {
		top: 21px;
	}
	.p-header__hamburger span:nth-child(3) {
		top: 28px;
	}

	.is-menu-open .p-header__hamburger span:nth-child(1) {
		top: 21px;
		transform: rotate(45deg);
	}
	.is-menu-open .p-header__hamburger span:nth-child(2) {
		opacity: 0;
	}
	.is-menu-open .p-header__hamburger span:nth-child(3) {
		top: 21px;
		transform: rotate(-45deg);
	}

	.p-header__actions {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(255, 255, 255, 0.98);
		flex-direction: column;
		justify-content: center;
		gap: 40px;
		opacity: 0;
		visibility: hidden;
		transition: 0.3s ease;
		z-index: 101;
	}
	.is-menu-open .p-header__actions {
		opacity: 1;
		visibility: visible;
	}
	.p-header__nav {
		display: block;
		width: 100%;
	}
	.p-header__nav ul {
		flex-direction: column;
		text-align: center;
		gap: 32px;
	}
	.p-header__actions .c-btn {
		display: none;
	}

	/* 共通 */
	.u-text-lg {
		font-size: 1.75em;
	}
	.u-text-xl {
		font-size: 1.25em;
	}
	.c-btn--lg {
		font-size: 1rem;
		width: 100%;
	}
	.c-btn--xl {
		min-width: 280px;
	}
	.l-section {
		padding: 64px 5%;
	}
	.c-section-header {
		margin-bottom: 32px;
	}
	.c-section-title {
		font-size: 1.5rem;
		gap: 0;
		flex-direction: column;
		align-items: center;
	}
	.c-section-subtitle {
		font-size: 1.125rem;
	}

	/* ヒーロー */
	.p-hero {
		padding: 56px 5% 40px;
		background-image: url('../img/mv-sp.png');
	}
	.p-hero__inner {
		flex-direction: column-reverse;
		text-align: center;
		gap: 8px;
	}
	.p-hero__content {
		margin-bottom: 16px;
		min-width: auto;
	}
	.p-hero__label-wrapper {
		margin-bottom: 16px;
	}
	.p-hero__label-deco {
		/* right: -2px; */
		/* top: -56px; */
		/* transform: rotate(-28deg); */
		display: none;
	}
	.p-hero__label {
		padding: 8px 16px;
		font-size: 0.9375rem;
	}
	.p-hero__title {
		font-size: 1.5rem;
		margin-bottom: 16px;
	}
	.p-hero__desc {
		font-size: 0.9375rem;
		margin-bottom: 20px;
	}
	.p-hero__decor-1,
	.p-hero__decor-2 {
		/* display: none; */
	}
	.p-hero__decor-1 {
		width: 100px;
		height: 80px;
	}
	.p-hero__decor-2 {
		width: 120px;
		height: 80px;
		bottom: 20px;
	}

	/* Problem */
	.p-problem__content {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	.p-problem__person {
		position: relative;
		order: -1;
		transform: none;
		left: auto;
		margin-bottom: 24px;
	}
	.c-bubble {
		position: relative;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		width: 90%;
		max-width: 304px;
		height: 160px;
		padding-bottom: 16px;
	}
	.c-bubble__text {
		white-space: normal;
		font-size: 1rem;
	}
	.c-bubble--flip .c-bubble__bg {
		transform: none;
	}

	/* Solution Banner */
	.p-solution-banner-area {
		padding: 0px 5% 20px;
	}
	.p-solution-lead {
		font-size: 1rem;
		margin-top: 0;
	}
	.p-solution-banner {
		padding: 20px;
	}
	.p-solution-banner__title {
		font-size: 1.5rem;
	}
	.p-solution-banner__char {
		right: 10%;
		bottom: -10%;
		transform: translateX(50%) translateY(32px);
	}
	.p-solution-banner__char img {
		width: 100px;
	}
	.p-solution-banner__char-text {
		font-size: 0.625rem;
	}

	/* Feature */
	.p-feature__bg-blob {
		display: none;
	}
	.p-feature__list {
		gap: 56px;
	}
	.p-feature__item {
		flex-direction: column !important;
		gap: 32px;
	}
	.p-feature__content {
		text-align: center;
	}
	.p-feature__num {
		font-size: 2.5rem;
	}
	.p-feature__title {
		font-size: 1.375rem;
	}
	.p-feature__desc {
		text-align: left;
		font-size: 1rem;
	}
	.p-feature__image::before {
		top: 12px;
		left: 12px;
	}
	.p-feature__item--reverse .p-feature__image::before {
		/* top: 12px; */
		/* left: -12px; */
	}
	.p-feature__item:nth-child(even) .p-feature__deco {
		width: 80px;
		left: -8px;
		top: 0;
	}
	.p-feature__item:nth-child(odd) .p-feature__deco {
		width: 80px;
		right: -4px;
		top: 8px;
	}

	/* CTA */
	.p-cta {
		padding: 48px 5% 32px 5%;
	}
	.p-cta__inner {
		flex-direction: column-reverse;
		gap: 32px;
	}
	.p-cta__title {
		font-size: 1.25rem;
		margin-bottom: 24px;
		text-align: center;
	}
	.p-cta__lead {
		font-size: 1rem;
	}
	.p-cta__char img {
		width: 160px;
	}

	/* Service */
	.p-service__bg-blob {
		display: none;
	}
	.p-service__lead {
		font-size: 1rem;
		margin-bottom: 32px;
	}
	.p-service__list {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.p-service__body {
		padding: 40px 24px;
	}
	.p-service__item-title {
		font-size: 1.375rem;
	}
	.p-service__item-desc {
		font-size: 1rem;
	}
	.p-service__item-desc p {
		margin-bottom: 8px;
	}
	.p-service__deco-text {
		font-size: 3rem;
	}

	/* Flow */
	.p-flow__lead {
		font-size: 1rem;
		margin-bottom: 32px;
	}
	.p-flow__list {
		flex-direction: column;
		gap: 8px;
		align-items: center;
	}
	.p-flow__image-area {
		padding: 32px 20px;
		margin-bottom: 20px;
	}
	.p-flow__icon {
		width: 100px;
	}
	.p-flow__item-title {
		font-size: 1.25rem;
	}
	.p-flow__item-desc {
		font-size: 1rem;
	}
	.p-flow__arrow {
		padding-top: 0;
		transform: rotate(90deg);
		margin: 8px 0;
	}
	.p-flow__bottom-cta {
		margin-top: 40px;
	}
	.p-flow__bottom-lead {
		font-size: 1rem;
	}

	/* FAQ */
	.p-faq__lead {
		font-size: 1rem;
		margin-bottom: 40px;
	}
	.p-faq__q {
		padding: 24px 0;
		gap: 16px;
	}
	.p-faq__q-icon {
		font-size: 2rem;
	}
	.p-faq__q-text {
		font-size: 1rem;
	}
	.p-faq__icon-plus {
		width: 24px;
		height: 24px;
	}
	.p-faq__icon-plus::before {
		width: 16px;
		height: 2px;
	}
	.p-faq__icon-plus::after {
		width: 2px;
		height: 16px;
	}
	.p-faq__a-inner {
		padding: 0 0 24px;
		gap: 16px;
		align-items: flex-start;
	}
	.p-faq__a-char {
		width: 48px;
	}

	/* Footer */
	.p-footer__top {
		padding: 48px 5%;
	}
	.p-footer__top-inner {
		flex-direction: column;
		gap: 48px;
	}
	.p-footer__desc {
		text-align: center;
	}
	.p-footer__nav {
		flex-direction: column;
		gap: 24px;
		width: 100%;
	}
	.p-footer__bottom-inner {
		flex-direction: column;
		gap: 24px;
		align-items: center;
		margin-bottom: 80px;
	}
	.p-footer__company-info {
		flex-direction: column;
		gap: 16px;
	}
	.p-footer__sub-nav {
		flex-wrap: wrap;
		gap: 16px;
	}

	@media (max-width: 560px) {
		.p-solution-banner__title {
			font-size: 1.25rem;
			text-align: left;
		}
	}

	/* Subpage / Thanks / Contact SP調整 */
	.p-subpage-top {
		padding-top: 80px;
	}
	.c-breadcrumb {
		padding: 16px 5%;
	}
	.p-subpage__wrap {
		padding: 48px 24px;
	}

	.p-contact {
		padding: 24px 5% 80px;
	}
	.p-contact__form-wrap {
		padding: 88px 20px 32px;
	}
	.p-contact__char {
		width: 80px;
		top: 28px;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.p-contact__lead {
		font-size: 0.9rem;
	}
	.c-form-group {
		margin-bottom: 24px;
	}
	.c-form-input {
		padding: 12px;
	}
	.p-contact__submit {
		margin-top: 28px;
	}

	.p-thanks {
		padding: 24px 5% 80px;
	}
	.p-thanks__message {
		font-size: 1.25rem;
	}
	.p-thanks__desc {
		font-size: 0.95rem;
	}
}
