/* ============================================
   Empathy Template - style.css
   オレンジベースの暖かく優しい雰囲気のデザイン
   対象ペルソナ: リスクコンサルタント / 保険プロフェッショナル
============================================ */

/* ------------------------------------------
   CSS変数
------------------------------------------ */
:root {
	/* カラー - 落ち着いたオレンジベースの暖かい配色 */
	--color-primary: #E8920E;           /* ゴールデンオレンジ（やや深め） */
	--color-primary-dark: #D4711B;      /* オレンジ（やや深め） */
	--color-secondary: #FEF0DB;         /* 淡いゴールデン */
	--color-accent: #E8920E;            /* ゴールデンオレンジ（やや深め） */
	--color-accent-dark: #D4711B;       /* オレンジ（やや深め） */
	--color-soft: #FFF8EE;              /* ごく薄いオレンジ背景 */
	--color-text: #2F2E2C;              /* チャコールグレー */
	--color-text-light: #6B6560;        /* サブテキスト */
	--color-white: #ffffff;
	--color-header-bg: #D4711B;         /* ヘッダー背景（オレンジ） */
	
	/* グラデーション */
	--gradient-primary: linear-gradient(135deg, #E8920E 0%, #EDAA30 100%);
	--gradient-accent: linear-gradient(135deg, #D4711B 0%, #E8920E 100%);
	--gradient-soft: linear-gradient(135deg, #FFF8EE 0%, #FEF0DB 100%);
	
	/* フォント */
	--font-en: 'Montserrat', sans-serif;
	--font-jp: 'Noto Sans JP', sans-serif;
	
	/* z-index */
	--z-header: 100;
	--z-mobile-nav: 90;
	--z-modal: 200;
}

/* ------------------------------------------
   ユーティリティ
------------------------------------------ */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}


/* ------------------------------------------
   共通コンポーネント
------------------------------------------ */
body {
	font-family: var(--font-jp);
	font-size: 1.6rem;
	color: var(--color-text);
	background-color: var(--color-white);
}

/* セクションラベル（ピンク背景+白文字のラベル風デザイン） */
.philosophy__label,
.strength__label,
.about__label,
.service__label,
.voice__label,
.cta__label,
.personal__label {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-white);
	background: var(--color-primary);
	padding: 0.5rem 1.5rem;
	border-radius: 30px;
	margin-bottom: 1.5rem;
}

/* セクションタイトル */
.philosophy__title,
.strength__title,
.about__title,
.service__title,
.voice__title,
.cta__title {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 2rem;
}
.service__title {
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.philosophy__title,
	.strength__title,
	.about__title,
	.service__title,
	.voice__title,
	.cta__title {
		font-size: 3.4rem;
	}
}

.sp_only {
	display: block;
}
@media (min-width: 768px) {
	.sp_only {
		display: none;
	}
}

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

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.header__logo {
	font-family: var(--font-en);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--color-white); /* 背景が濃い色になったので白に */
}

.header__nav {
	display: none;
}
@media (min-width: 768px) {
	.header__nav {
		display: block;
	}
}

.header__nav-list {
	display: flex;
	gap: 3rem;
}

.header__nav-link {
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-white); /* 背景が濃い色になったので白に */
	transition: color 0.3s ease;
}
@media (any-hover: hover) {
	.header__nav-link:hover,
	.header__nav-link:focus-visible {
		color: var(--color-secondary); /* ホバー時は明るい色に */
	}
}

.header__menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient-soft);
	box-shadow: 0 4px 15px color-mix(in srgb, var(--color-primary) 20%, transparent);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.header__menu-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 50%;
	transition: transform 0.3s ease;
	z-index: 0;
}
@media (any-hover: hover) {
	.header__menu-btn:hover {
		box-shadow: 0 6px 20px color-mix(in srgb, var(--color-primary) 30%, transparent);
	}
	.header__menu-btn:hover::before {
		transform: translate(-50%, -50%) scale(1);
	}
	.header__menu-btn:hover .header__menu-icon {
		fill: var(--color-white);
	}
}
@media (min-width: 768px) {
	.header__menu-btn {
		display: none;
	}
}

.header__menu-icon,
.header__close-icon {
	fill: var(--color-primary-dark); /* ボタン背景が薄いのでアイコンは濃い色に */
	position: relative;
	z-index: 1;
	transition: fill 0.3s ease;
}

.header__close-icon {
	display: none;
}

.header__menu-btn.is-active {
	background: var(--gradient-primary);
}

.header__menu-btn.is-active::before {
	display: none;
}

.header__menu-btn.is-active .header__menu-icon {
	display: none;
}

.header__menu-btn.is-active .header__close-icon {
	display: block;
	fill: var(--color-white);
}

/* ------------------------------------------
   モバイルナビ
------------------------------------------ */
.mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: var(--z-mobile-nav);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	overflow: hidden;
}

.mobile-nav::before {
	content: '';
	position: absolute;
	top: 10%;
	right: -10%;
	width: 50vw;
	height: 50vw;
	background: radial-gradient(circle, color-mix(in srgb, var(--color-white) 15%, transparent) 0%, transparent 70%);
	pointer-events: none;
	border-radius: 50%;
}

.mobile-nav::after {
	content: '';
	position: absolute;
	bottom: 10%;
	left: -15%;
	width: 40vw;
	height: 40vw;
	background: radial-gradient(circle, color-mix(in srgb, var(--color-secondary) 20%, transparent) 0%, transparent 70%);
	pointer-events: none;
	border-radius: 50%;
}

.mobile-nav.is-active {
	opacity: 1;
	visibility: visible;
}

.mobile-nav__list {
	text-align: center;
	position: relative;
	z-index: 1;
}

.mobile-nav__item {
	margin-bottom: 0;
	transform: translateY(20px);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-nav.is-active .mobile-nav__item {
	transform: translateY(0);
	opacity: 1;
}

.mobile-nav.is-active .mobile-nav__item:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav.is-active .mobile-nav__item:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.is-active .mobile-nav__item:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.is-active .mobile-nav__item:nth-child(4) { transition-delay: 0.26s; }
.mobile-nav.is-active .mobile-nav__item:nth-child(5) { transition-delay: 0.32s; }

.mobile-nav__link {
	font-size: 1.6rem;
	display: block;
	font-family: var(--font-en);
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-white);
	padding: 1.5rem 2.5rem;
	position: relative;
	transition: all 0.3s ease;
}

.mobile-nav__link::after {
	content: '';
	position: absolute;
	bottom: 0.8rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background-color: var(--color-white);
	border-radius: 1px;
	transition: width 0.3s ease;
}

@media (any-hover: hover) {
	.mobile-nav__link:hover,
	.mobile-nav__link:focus-visible {
		transform: scale(1.05);
	}
	.mobile-nav__link:hover::after,
	.mobile-nav__link:focus-visible::after {
		width: 60%;
	}
}

/* ------------------------------------------
   メインビジュアル（100vh対応 & 50/50レイアウト）
------------------------------------------ */
.mv {
	position: relative;
	min-height: 100vh;
	display: flex;
	overflow: hidden;
	padding-top: 0; /* ヘッダーとの余白を削除 */
	margin-top: 0;
}

.mv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-soft);
	z-index: -2;
}





.mv__inner {
	display: flex;
	flex-direction: column; /* SP: 画像とテキストを縦並び */
	width: 100%;
	height: calc(100vh - 80px); /* ヘッダー分引く */
	max-width: none;
	padding: 0;
	margin: 0;
	padding-top: 80px; /* ヘッダー高さ分確保 */
}
@media (min-width: 768px) {
	.mv__inner {
		flex-direction: row; /* PC: 横並び 50/50 */
		width: 100%;
		height: 100vh;
		padding-top: 0;
	}
}

/* MV 画像エリア */
.mv__image-area {
	position: relative;
	width: 100%;
	height: 45%; /* SP: 画面の半分 */
	order: 2; /* SP: テキストの後に画像（テキスト→写真の順） */
	overflow: hidden;
}
@media (min-width: 768px) {
	.mv__image-area {
		width: 50%;
		height: 100%;
		order: 2; /* PC: 右側に配置 */
	}
}

.mv__image {
	width: 100%;
	height: 100%;
	/* 円形装飾を解除し、全面表示に近づける */
	aspect-ratio: auto;
	border-radius: 0;
	border: none;
	box-shadow: none;
}

.mv__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

.mv__image-deco {
	display: none; /* 50/50レイアウトでは削除 */
}

/* MV コンテンツエリア */
.mv__content {
	width: 100%;
	height: 55%; /* SP: 残り半分 */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	text-align: center;
	order: 1; /* SP: テキストを先に（テキスト→写真の順） */
	z-index: 1;
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	.mv__content {
		width: 50%;
		height: 100%;
		align-items: flex-start;
		text-align: left;
		padding: 0 5%;
	}
}

@media screen and (min-width: 1080px) {
	.mv__content {
		padding: 0 5% 0 10%;
	}
}

/* ブロブ装飾 - テキスト背後の柔らかいアクセント */
.mv__blob {
	position: absolute;
	pointer-events: none;
	z-index: -1;
	opacity: 0.15;
}
.mv__blob svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* ブロブ1 - 大きめ、左上寄り */
.mv__blob--1 {
	width: 280px;
	height: 280px;
	top: -30%;
	right: 70%;
	animation: blob-animate-1 14s ease-in-out infinite;
}
.mv__blob--1 svg path {
	fill: var(--color-primary);
}

/* ブロブ2 - 小さめ、右下寄り */
.mv__blob--2 {
	width: 200px;
	height: 200px;
	bottom: -10%;
	left: 80%;
	animation: blob-animate-2 18s ease-in-out infinite;
}
.mv__blob--2 svg path {
	fill: var(--color-accent-dark);
}

@media (min-width: 768px) {
	.mv__blob--1 {
		width: 400px;
		height: 400px;
		top: 5%;
		right: 60%;
		opacity: 0.12;
	}
	.mv__blob--2 {
		width: 300px;
		height: 300px;
		bottom: -5%;
		left: auto;
		right: -20%;
		opacity: 0.10;
	}
}

@media screen and (min-width: 1080px) {
	.mv__blob--1 {
		width: 500px;
		height: 500px;
	}
	.mv__blob--2 {
		width: 360px;
		height: 360px;
	}
}

/* ブロブアニメーション1 - ゆったりとした浮遊 */
@keyframes blob-animate-1 {
	0% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	25% {
		transform: translate(15px, -20px) rotate(4deg) scale(1.03);
	}
	50% {
		transform: translate(-10px, 12px) rotate(-3deg) scale(0.97);
	}
	75% {
		transform: translate(20px, 8px) rotate(5deg) scale(1.02);
	}
	100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
}

/* ブロブアニメーション2 - ゆったりとした浮遊 */
@keyframes blob-animate-2 {
	0% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	25% {
		transform: translate(-20px, -12px) rotate(-4deg) scale(1.04);
	}
	50% {
		transform: translate(12px, 20px) rotate(6deg) scale(0.96);
	}
	75% {
		transform: translate(-15px, 8px) rotate(-3deg) scale(1.02);
	}
	100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
}

.mv__subtitle {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-white);
	background: var(--gradient-primary);
	padding: 0.5rem 1.5rem;
	border-radius: 30px;
	margin-bottom: 1.5rem;
}

.mv__title {
	margin-bottom: 2rem;
}

.mv__title-line {
	display: block;
	font-size: clamp(2.4rem, 4.5vw, 4rem);
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}



.mv__text {
	font-size: 1.5rem;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-bottom: 3rem;
	max-width: 500px;
}

@media screen and (min-width: 768px) {
	.mv__text {
		font-size: 1.8rem;
	}
}



/* スクロールダウンアイコン */
.mv__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: var(--color-accent);
	animation: bounce 2s infinite;
	z-index: 10;
}
@media (min-width: 768px) {
	/* PCでは左側エリアの中心に配置したい場合、または全体の中央下 */
	.mv__scroll {
		left: 25%; /* 左半分の中央 */
		bottom: 3rem;
		color: var(--color-primary-dark);
	}
}

.mv__scroll svg {
	fill: var(--color-primary-dark);
}

@keyframes bounce {
	0%, 100% { translate: -50% 0; }
	50% { translate: -50% 10px; }
}

/* ------------------------------------------
   想い・理念（充実したストーリー形式）
------------------------------------------ */
.philosophy {
	padding: 8rem 0;
	position: relative;
}
@media (min-width: 768px) {
	.philosophy {
		padding: 12rem 0;
	}
}

.philosophy__inner {
	padding: 0 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.philosophy__header {
	text-align: center;
	margin-bottom: 5rem;
}

.philosophy__story-lead {
	position: relative;
	text-align: center;
	padding: 4rem 3rem;
	background: var(--color-accent);
	border-radius: 24px;
	max-width: 800px;
	margin: 0 auto 7rem;
}

/* 吹き出しの三角形 */
.philosophy__story-lead::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	border-style: solid;
	border-width: 20px 15px 0 15px;
	border-color: var(--color-accent) transparent transparent transparent;
}

.philosophy__lead {
	font-size: 2rem;
	font-weight: 700;
	line-height: 2;
	margin-bottom: 2rem;
	color: var(--color-white);
}
@media (min-width: 768px) {
	.philosophy__lead {
		font-size: 2.4rem;
	}
}

.philosophy__lead-sub {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.85);
}

.philosophy__story-main {
	margin-bottom: 5rem;
}

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

/* チャプター上部の画像 */
.philosophy__main-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 5rem;
}

.philosophy__main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}

.philosophy__chapter {
	margin-bottom: 4rem;
	padding-left: 2rem;
	border-left: 3px solid var(--color-secondary);
}

.philosophy__chapter:last-child {
	margin-bottom: 0;
}

.philosophy__chapter-title {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.philosophy__chapter-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	font-family: var(--font-en);
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-white);
	background: var(--gradient-primary);
	border-radius: 50%;
}

.philosophy__chapter-text {
	font-size: 1.5rem;
	line-height: 2;
	color: var(--color-text-light);
	margin-bottom: 1rem;
}

.philosophy__chapter-text:last-child {
	margin-bottom: 0;
}

.philosophy__message {
	text-align: center;
	padding: 4rem 3rem;
	background: var(--gradient-accent);
	border-radius: 30px;
}

.philosophy__message-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 7rem;
	margin: 0 auto 2rem;
	background-color: var(--color-white);
	border-radius: 50%;
	position: relative;
	overflow: hidden;
}

.philosophy__message-icon svg {
	fill: var(--color-accent);
	transform: translateX(-80px);
	opacity: 0;
}

/* 走るアイコンのスライドインアニメーション */
.philosophy__message-icon.is-animated svg {
	animation: run-slide-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes run-slide-in {
	0% {
		transform: translateX(-80px) scale(0.8);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	70% {
		transform: translateX(5px) scale(1.05);
	}
	100% {
		transform: translateX(0) scale(1);
		opacity: 1;
	}
}



/* パーティクルエフェクト用 */
.philosophy__message-icon::before,
.philosophy__message-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
}

.philosophy__message-icon.is-animated::before {
	animation: heart-ring 0.8s ease-out forwards;
	border: 3px solid var(--color-primary);
}

.philosophy__message-icon.is-animated::after {
	animation: heart-ring 0.8s ease-out 0.1s forwards;
	border: 2px solid var(--color-secondary);
}

@keyframes heart-ring {
	0% {
		transform: scale(0.8);
		opacity: 0.8;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

/* 小さなパーティクル（ハートの周りに飛び散る） */
.philosophy__message-icon .heart-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
	opacity: 0;
	pointer-events: none;
}

.philosophy__message-icon.is-animated .heart-particle {
	animation: particle-burst 0.7s ease-out forwards;
}

.philosophy__message-icon.is-animated .heart-particle:nth-child(2) {
	animation-delay: 0.05s;
	background: var(--color-secondary);
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(3) {
	animation-delay: 0.1s;
	background: var(--color-accent);
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(4) {
	animation-delay: 0.08s;
	background: var(--color-primary-dark);
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(5) {
	animation-delay: 0.12s;
	background: var(--color-secondary);
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(6) {
	animation-delay: 0.06s;
}

@keyframes particle-burst {
	0% {
		transform: translate(0, 0) scale(1);
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* パーティクルの方向（各パーティクルに異なる方向を設定） */
.philosophy__message-icon.is-animated .heart-particle:nth-child(1) {
	animation-name: particle-1;
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(2) {
	animation-name: particle-2;
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(3) {
	animation-name: particle-3;
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(4) {
	animation-name: particle-4;
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(5) {
	animation-name: particle-5;
}
.philosophy__message-icon.is-animated .heart-particle:nth-child(6) {
	animation-name: particle-6;
}

@keyframes particle-1 {
	0% { transform: translate(0, 0) scale(1); opacity: 1; }
	100% { transform: translate(-25px, -35px) scale(0); opacity: 0; }
}
@keyframes particle-2 {
	0% { transform: translate(0, 0) scale(1); opacity: 1; }
	100% { transform: translate(25px, -30px) scale(0); opacity: 0; }
}
@keyframes particle-3 {
	0% { transform: translate(0, 0) scale(1); opacity: 1; }
	100% { transform: translate(35px, 10px) scale(0); opacity: 0; }
}
@keyframes particle-4 {
	0% { transform: translate(0, 0) scale(1); opacity: 1; }
	100% { transform: translate(-35px, 5px) scale(0); opacity: 0; }
}
@keyframes particle-5 {
	0% { transform: translate(0, 0) scale(1); opacity: 1; }
	100% { transform: translate(15px, 35px) scale(0); opacity: 0; }
}
@keyframes particle-6 {
	0% { transform: translate(0, 0) scale(1); opacity: 1; }
	100% { transform: translate(-20px, 30px) scale(0); opacity: 0; }
}

.philosophy__message-text {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
	color: var(--color-white);
}
@media (min-width: 768px) {
	.philosophy__message-text {
		font-size: 2rem;
	}
}

/* ------------------------------------------
   強み
------------------------------------------ */
.strength {
	padding: 8rem 0;
	background: var(--gradient-soft);
	position: relative;
}

/* ウェーブ: philosophy(白) → strength(薄オレンジ) */
.strength::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 60px;
	background: var(--color-white);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	z-index: 1;
}

/* ウェーブ: strength(薄オレンジ)が下に突き出す形 */
.strength::after {
	content: '';
	position: absolute;
	bottom: -59px;
	left: 0;
	width: 100%;
	height: 60px;
	background: var(--gradient-soft);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	z-index: 1;
}
@media (min-width: 768px) {
	.strength {
		padding: 12rem 0;
	}
}

.strength__inner {
	padding: 0 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

/* 強み：2カラムレイアウト（カード+画像） */
.strength__layout {
	display: flex;
	flex-direction: column-reverse;
	gap: 3rem;
}
@media (min-width: 768px) {
	.strength__layout {
		flex-direction: row;
		align-items: center;
		gap: 5rem;
	}
}

/* カードエリア */
.strength__cards {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
@media (min-width: 768px) {
	.strength__cards {
		flex: 1;
	}
}

.strength__card {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 2.5rem;
	background-color: var(--color-white);
	border-radius: 16px;
	text-align: left;
	box-shadow: 0 10px 40px color-mix(in srgb, var(--color-primary) 10%, transparent);
	transition: translate 0.3s ease;
}
@media (any-hover: hover) {
	.strength__card:hover {
		translate: 0 -4px;
	}
}

.strength__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	min-width: 5rem;
	background: var(--gradient-accent);
	border-radius: 50%;
}

.strength__card-icon svg {
	fill: var(--color-white);
}

.strength__card-body {
	flex: 1;
}

.strength__card-title {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0.6rem;
}

.strength__card-text {
	font-size: 1.4rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

/* 画像エリア */
.strength__image {
	border-radius: 20px;
	overflow: hidden;
}
@media (min-width: 768px) {
	.strength__image {
		flex: 1;
		max-width: 50%;
	}
}

.strength__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ------------------------------------------
   プロフィール
------------------------------------------ */
.about {
	padding: 8rem 0;
}
@media (min-width: 768px) {
	.about {
		padding: 12rem 0;
	}
}

.about__inner {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 0 2rem;
	max-width: 1100px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.about__inner {
		flex-direction: row;
		align-items: flex-start;
		gap: 5rem;
	}
}

.about__images {
	position: relative;
	flex-shrink: 0;
	width: 80%;
	max-width: 320px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.about__images {
		width: 40%;
		max-width: none;
		margin: 0;
	}
}

.about__image {
	border-radius: 24px;
	overflow: hidden;
}

.about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about__image--main {
	width: 100%;
	aspect-ratio: 3 / 4;
}

.about__image--sub {
	position: absolute;
	bottom: -2rem;
	right: -2rem;
	width: 45%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: 4px solid var(--color-primary);
	box-shadow: 0 8px 30px color-mix(in srgb, var(--color-primary) 25%, transparent);
	overflow: hidden;
}

.about__content {
	flex: 1;
}

.about__text {
	margin-bottom: 2rem;
}

.about__name {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.about__name span {
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color-text-light);
	margin-left: 0.5rem;
}

.about__text p {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 1rem;
}

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

.about__info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--gradient-soft);
	border-radius: 20px;
}

.about__info-item {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.about__info-label {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-primary-dark);
}

.about__info-value {
	font-size: 1.4rem;
	line-height: 1.6;
}

/* ------------------------------------------
   私をもっと知る - ショーケース
------------------------------------------ */


.showcase__wrapper {
	padding: 4rem 2rem 0;
	max-width: 1100px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.showcase__wrapper {
		padding: 5rem 2rem 0;
	}
}

.showcase__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.2rem;
}
@media (min-width: 768px) {
	.showcase__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: minmax(180px, auto);
		gap: 1.5rem;
	}
	
	/* Bentoサイズバリエーション */
	.showcase__card--wide {
		grid-column: span 2;
	}
	.showcase__card--tall {
		grid-row: span 2;
	}
	.showcase__card--large {
		grid-column: span 2;
		grid-row: span 2;
	}
}

/* ショーケースカード共通 */
.showcase__card {
	background: var(--gradient-soft);
	border-radius: 24px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 5px 20px color-mix(in srgb, var(--color-primary) 15%, transparent);
	display: flex;
	flex-direction: column;
}


.showcase__card-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--color-text);
	flex-shrink: 0;
}





/* ===== カード2: レーダーチャート ===== */
.radar-chart {
	position: relative;
	width: 100%;
	max-width: 220px;
	margin: 0 auto;
	aspect-ratio: 1 / 1;
}

.radar-chart__svg {
	width: 100%;
	height: 100%;
}

.radar-chart__grid {
	fill: none;
	stroke: var(--color-text-light);
	stroke-width: 1;
	opacity: 0.3;
}

.radar-chart__grid--half {
	stroke-dasharray: 4 2;
}

.radar-chart__data {
	fill: color-mix(in srgb, var(--color-primary) 40%, transparent);
	stroke: var(--color-primary-dark);
	stroke-width: 2;
	transition: all 0.8s ease-out;
}

.radar-chart__axis {
	stroke: var(--color-text-light);
	stroke-width: 1;
	opacity: 0.2;
}

.radar-chart__labels {
	position: absolute;
	inset: -10px;
}

.radar-chart__label {
	position: absolute;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text);
	white-space: nowrap;
}



/* ===== カード4: ハッシュタグ風キーワード ===== */
.keywords {
	flex: 1;
	align-content: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
	padding: 0.5rem 0;
}

@media screen and (min-width: 768px) {
	.keywords {
	flex: 1;
	align-content: center;
		padding: 2rem 0 0;
	}
}

.keyword {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.6rem 1.2rem;
	background: var(--color-white);
	border: 2px solid var(--color-primary);
	border-radius: 30px;
	opacity: 0;
	transform: scale(0);
}

@media (any-hover: hover) {
	.keyword:hover {
		background: var(--color-primary);
		transform: scale(1.05);
	}
	.keyword:hover .keyword__hash,
	.keyword:hover .keyword__text {
		color: white;
	}
}

.keyword__hash {
	font-family: var(--font-en);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--color-primary);
	transition: color 0.3s ease;
}

.keyword__text {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-text);
	transition: color 0.3s ease;
}

/* ------------------------------------------
   私のこと - 二択カード
------------------------------------------ */
.personal {
	padding: 8rem 0;
	background: var(--gradient-soft);
	position: relative;
}

/* ウェーブ: about(白) → personal(薄オレンジ) */
.personal::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: 60px;
	background: var(--color-white);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	z-index: 1;
}

/* ウェーブ: personal(薄オレンジ)が下に突き出す形 */
.personal::after {
	content: '';
	position: absolute;
	bottom: -59px;
	left: 0;
	width: 100%;
	height: 60px;
	background: var(--gradient-soft);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C360,60 1080,60 1440,0 L1440,0 L0,0 Z' fill='%23fff'/%3E%3C/svg%3E");
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
	z-index: 1;
}
@media (min-width: 768px) {
	.personal {
		padding: 12rem 0;
	}
}

.personal__inner {
	padding: 0 2rem;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.personal__label {
	display: inline-block;
	font-family: var(--font-en);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-white);
	margin-bottom: 1rem;
}

.personal__title {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.personal__title {
		font-size: 3.4rem;
	}
}

.personal__lead {
	font-size: 1.5rem;
	color: var(--color-text-light);
	margin-bottom: 4rem;
}

.personal__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.personal__cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem;
	}
}

/* カード本体 */
.personal__card {
	perspective: 1000px;
	cursor: pointer;
}

.personal__card-inner {
	position: relative;
	width: 100%;
	max-width: 300px;
	margin-inline: auto;
	aspect-ratio: 1 / 1;
	transform-style: preserve-3d;
	transition: transform 0.6s ease;
}

.personal__card.is-flipped .personal__card-inner {
	transform: rotateY(180deg);
}

/* カード表面・裏面共通 */
.personal__card-front,
.personal__card-back {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 2rem;
	border-radius: 24px;
	backface-visibility: hidden;
}

/* 表面 */
.personal__card-front {
	background-color: var(--color-white);
	border: 3px solid var(--color-secondary);
	box-shadow: 0 10px 40px color-mix(in srgb, var(--color-primary) 15%, transparent);
}

/* 裏面 */
.personal__card-back {
	background: var(--color-primary-dark);
	transform: rotateY(180deg);
}

.personal__card-question {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.personal__card-question {
		font-size: 2.2rem;
	}
}

.personal__card-options {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.personal__card-option {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--color-text);
}

.personal__card-option svg {
	fill: var(--color-primary-dark);
}

.personal__card-or {
	font-family: var(--font-en);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--color-text-light);
}

.personal__card-hint {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.2rem;
	color: var(--color-text-light);
}

.personal__card-hint svg {
	fill: none;
	stroke: currentColor;
	width: 32px;
	height: 32px;
}

/* 裏面のスタイル */
.personal__card-answer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 1.5rem;
}

.personal__card-answer svg {
	fill: var(--color-white);
}

.personal__card-reason {
	font-size: 1.4rem;
	line-height: 1.8;
	color: var(--color-white);
}

/* ホバー効果 */
@media (any-hover: hover) {
	.personal__card:hover .personal__card-inner {
		transform: scale(1.03);
	}
	.personal__card.is-flipped:hover .personal__card-inner {
		transform: rotateY(180deg) scale(1.03);
	}
}

/* ------------------------------------------
   サービス
------------------------------------------ */
.service {
	padding: 8rem 0;
}
@media (min-width: 768px) {
	.service {
		padding: 12rem 0;
	}
}

.service__inner {
	padding: 0 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.service__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 768px) {
	.service__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: var(--color-white);
	border-radius: 24px;
	overflow: hidden;
	text-align: left;
	box-shadow: 0 10px 40px color-mix(in srgb, var(--color-primary) 10%, transparent);
	transition: translate 0.3s ease;
	max-width: 40rem;
	margin-inline: auto;
	border: 2px solid var(--color-accent-dark);
}
@media (any-hover: hover) {
	.service__card:hover {
		translate: 0 -8px;
	}
}

.service__card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.service__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 30px;
}

.service__card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 2rem 2.5rem 2.5rem;
}

.service__card-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.service__card-title::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: var(--gradient-primary);
	margin-top: 1rem;
}

.service__card-text {
	flex: 1;
	font-size: 1.4rem;
	line-height: 1.8;
	color: var(--color-text-light);
	margin-bottom: 1.5rem;
}



/* ------------------------------------------
   お客様の声
------------------------------------------ */
.voice {
	padding: 8rem 0;
}
@media (min-width: 768px) {
	.voice {
		padding: 12rem 0;
	}
}

.voice__inner {
	padding: 0 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.voice__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}
@media (min-width: 768px) {
	.voice__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.voice__card {
	padding: 2.5rem;
	background-color: var(--color-soft);
	border-radius: 24px;
	text-align: left;
}

.voice__card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.voice__card-avatar {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	flex-shrink: 0;
	overflow: hidden;
}

.voice__card-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* アイコン版アバター（写真なしの場合） */
.voice__card-avatar--icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-accent);
}

/* 男性用アバター（水色系） */
.voice__card-avatar--icon-male {
	background: linear-gradient(135deg, #7FBFDA 0%, #5BA3C9 100%);
}

.voice__card-avatar--icon svg {
	fill: var(--color-white);
}

.voice__card-author {
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--color-text-light);
}



.voice__card-text {
	font-size: 1.5rem;
	line-height: 1.9;
}

/* 女性用アバター（ウォームオレンジ系） */
.voice__card-avatar--female {
	background: linear-gradient(135deg, #E8A070 0%, #D48B55 100%);
}



/* ------------------------------------------
   CTA
------------------------------------------ */
.cta {
	padding: 8rem 0;
	background: linear-gradient(135deg, rgba(230, 126, 34, 0.9), rgba(243, 156, 18, 0.92)), url('img/cta_bg.webp') right / cover no-repeat;
	position: relative;
}

@media (min-width: 768px) {
	.cta {
		padding: 12rem 0;
	}
}

.cta__inner {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding: 0 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.cta__content {
	text-align: center;
}

.cta__label {
	color: var(--color-white);
}

.cta__title {
	color: var(--color-white);
}

.cta__text {
	font-size: 1.5rem;
	line-height: 1.9;
	color: color-mix(in srgb, var(--color-white) 90%, transparent);
	margin-bottom: 3rem;
	font-weight: 500;
}

.cta__buttons {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 3rem;
	justify-content: center;
	align-items: center;
}
@media (min-width: 768px) {
	.cta__buttons {
		flex-direction: row;
		gap: 2rem;
	}
}

.cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1.6rem 3rem;
	font-size: 1.5rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	min-width: 24rem;
	max-width: 40rem;
}
@media (any-hover: hover) {
	.cta__btn:hover,
	.cta__btn:focus-visible {
		translate: 0 -3px;
	}
}

.cta__btn svg {
	fill: currentColor;
}

.cta__btn--line {
	color: var(--color-white);
	background-color: #06C755;
	box-shadow: 0 4px 20px color-mix(in srgb, #06C755 30%, transparent);
}

.cta__btn--mail {
	color: var(--color-primary-dark);
	background-color: var(--color-white);
	box-shadow: 0 4px 20px color-mix(in srgb, var(--color-text) 10%, transparent);
}





/* ------------------------------------------
   フッター
------------------------------------------ */
.footer {
	padding: 2.5rem 0;
	background-color: var(--color-text);
}

.footer__inner {
	padding: 0 2rem;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.footer__copyright {
	font-family: var(--font-en);
	font-size: 1.2rem;
	color: color-mix(in srgb, var(--color-white) 60%, transparent);
}


