@charset "UTF-8";
/* CSS Document */

body {
	background-color: #ffffff;
	color: #685149;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	line-height: 160%;
	margin: 0;
	font-size: clamp(1.2rem, 1rem + 2vw, 1.5rem);
	letter-spacing: 0.05em;
   padding-top: 70px; /* 固定ヘッダー分の余白 */
}
h1 {
	color: #B49B6A; /* 文字色 */
	font-family: "Noto Serif JP", serif; /* フォント（明朝体） */
	font-size: 36px;   /* 文字サイズ */
	font-weight: 500;  /* 文字の太さ（少し細めが上品） */
	text-align: center;/* 中央揃え */
	letter-spacing: 0.05em; /* 文字間を少し広げる */
	/* 下の余白と飾り線 */
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #EAE2D6; /* ベースカラーに馴染む細い線 */
}
h2 {
	color: #B49B6A; /* 文字色 */
	font-family: "Noto Serif JP", serif; /* フォント（明朝体） */
	font-size: 28px;   /* 文字サイズ */
	font-weight: 500;  /* 文字の太さ */
	text-align: center;/* 中央揃え */
	/* 上下の余白 */
	margin-top: 60px;
	margin-bottom: 30px;
	/* 両サイドのラインを実現する設定 */
	display: flex;
	align-items: center;
	justify-content: center;
}
/* テキストの前の線 */
h2::before {
	content: "";
	flex-grow: 1;
	height: 1px;
	background-color: #B49B6A;
	margin-right: 20px;
}
/* テキストの後の線 */
h2::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background-color: #B49B6A;
	margin-left: 20px;
}
h3 {
	color: #685149; /* 文字色はダークブラウン */
	font-family: "Noto Serif JP", serif; /* フォント（明朝体） */
	font-size: 20px;   /* h2より小さく、本文より大きいサイズ */
	font-weight: bold; /* 太字 */
	/* 上下の余白 */
	margin-top: 40px;
	margin-bottom: 16px;
	display: flex; /* Flexboxを有効にする */
	align-items: center; /* アイコンと文字の高さを中央で揃える */
	gap: 0.6em; /* アイコンと文字の間に隙間を作る（emは文字サイズ基準の単位） */
}
h3::before {
	/* ここからがアイコンの設定 */
	font-family: 'Material Symbols Outlined'; /* ステップ1で読み込んだアイコンフォントを指定 */
	content: 'spa'; /* ← 使いたいアイコンの名前を入れる */
	font-weight: normal; /* アイコンを正しく表示するためにnormalに */
	font-size: 22px;   /* アイコンのサイズ */
	/* 色 */
	color: #B49B6A;
	/* 微調整（行の高さなど） */
	line-height: 1;
}
button {
	background-color: #A96B54;
	color: #FFFFFF;             /* 文字の色（白） */
	border: none;                /* 枠線をなくす */
	border-radius: 8px;          /* 角を丸くする（数値を調整してお好みの丸みに） */
	/* サイズと余白 */
	padding: 12px 24px;          /* 内側の余白（上下12px、左右24px） */
	/* テキスト関連 */
	font-size: 16px;             /* 文字のサイズ */
	font-weight: bold;           /* 文字を太くする */
	text-align: center;          /* 文字を中央揃えに */
	text-decoration: none;       /* aタグの場合の下線をなくす */
	/* その他 */
	cursor: pointer;             /* マウスカーソルを指マークに */
	transition: background-color 0.3s ease; /* ホバー時の色変化を滑らかに */
}
button:hover {
	background-color: #79884a; /* 少し濃い色に変化 */
}
hr {
	border: none; /* 標準の枠線を削除 */
	margin: 48px auto; /* 上下の余白を十分に確保（左右は中央揃え）*/
	height: 1px; /* 線の太さ */
	width: 100%; /* グラデーションを活かすため画面幅いっぱいに */
	background: linear-gradient(to right, transparent, #D9D2C9, transparent);
}
/* ======== アンカーリンクのスクロール位置調整 ======== */
section[id] {
  scroll-margin-top: 75px; /* PCのヘッダー高さ(70px) + 少しの余白 */
}
/* ======== ヘッダー ======== */
header {
	background-color: #ffffff; /* 背景色を白に変更 */
	color: #685149; /* テキストカラーをブラウンに */
	width: 100%;
	height: 70px; /* 高さを少し広げる */
	padding: 10px 40px; /* 上下左右の余白を調整 */
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* 影を追加 */
}
.header-logo img {
	height: 100%;
	width: auto;
    max-height: 50px; /* ロゴの高さをheaderのpaddingを考慮したサイズに */
}
.header-nav {
    display: flex;
    gap: 30px; /* メニュー間の余白 */
}
.header-nav a {
    background-color: transparent; /* 背景色をなくす */
    color: #685149; /* テキストカラー */
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    padding: 5px; /* クリックエリアを確保 */
    transition: color 0.3s ease;
}
.header-nav a:hover {
    color: #B49B6A; /* ホバー時の色をゴールドに */
}
.header-action .header-button {
    background-color: #A96B54; /* カッパー色 */
    color: #ffffff;
    font-size: 14px;
    padding: 10px 20px; /* ボタンのサイズを調整 */
    border-radius: 8px; /* 角を少し丸く */
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.header-action .header-button:hover {
    background-color: #8a5742; /* 少し濃い色に */
}

/* ======== 動画の上にテキストを重ねるためのCSS ======== */

.video-container {
	position: relative; /* テキストを重ねるための基準点にする */
	width: 100%;
}
.video-container::after {
	content: ''; /* 疑似要素に必須 */
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40%; /* ビデオ全体の高さに対して40%の高さを持つグラデーション */
	/* 下から上へ黒→透明のグラデーションをかける */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	/* 重なり順を調整（動画より手前、テキストや画像より奥） */
	z-index: 1;
	pointer-events: none; /* グラデーションがクリック操作を邪魔しないように */
}
.overlay-text {
	position: absolute; /* 親要素(.video-container)を基準に絶対配置する */
	bottom: 10%;
	right: 5%;
	transform: translateY(-50%); /* 要素自体の中心に位置を補正 */
	/* テキストの見た目 */
	color: white;       /* 文字色 */
	font-family: "Noto Serif JP", serif; /* 見出しとフォントを合わせる */
	font-size: 48px;    /* 文字サイズ（お好みで調整） */
	font-weight: 500;
	text-align: left;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* 文字を読みやすくするための影 */
	z-index: 10;        /* 動画の操作パネルより手前に表示 */
	pointer-events: none; /* テキストがクリック操作の邪魔をしないようにする */
}
/* ======== 画像オーバーレイのCSS ======== */
.overlay-image {
	position: absolute;
	top: 50%;
	left: 5%;
	transform: translateY(-50%);
	width: 20%;
	max-width: 30%;
/ 必要に応じて調整 / height: auto;
/ 縦横比を維持 / opacity: 0;
/ 最初は完全に透明にする / z-index: 2;
/ テキストより下、動画のコントロールより上に配置（調整可能） / pointer-events: none;
/ クリック操作を邪魔しない / animation: fadein 5s forwards 1s;
/ 5秒後に3秒かけてフェードイン */ filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.cta {
	background-color: #f8f7f2; /* 画像の背景色に近い色 */
	padding: 60px 20px; /* セクション上下に余白を持たせる */
	font-family: sans-serif; /* 基本のフォントを指定 */
}
.cta-inner {
	max-width: 1000px; /* コンテンツの最大幅 */
	margin: 0 auto;    /* 中央揃え */
background-image: image(img/cta-bg.png);
	background-repeat: no-repeat;
	background-position: right;
}
.flex-wrap {
	display: flex;
	align-items: center;  /* 要素を垂直方向の中央に揃える */
	gap: 40px;            /* 画像とテキストの間の余白 */
}
.flex-wrap-inner {
	flex: 1;
}
.flex-wrap-inner img {
	width: 100%;
	height: auto;
	display: block; /* 画像下の余分な隙間をなくす */
}
.flex-wrap-inner p {
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 24px 0; /* テキスト下の余白 */
	color: #333;
}
.flex-wrap-inner p:last-of-type {
	margin-bottom: 32px; /* 最後の段落とボタンの間の余白を調整 */
	font-weight: bold;  /* 画像の「新登場」のように少し強調 */
	font-size: 20px;
}
.flex-wrap-inner .cta-button {
	display: inline-block; /* aタグはインライン要素なので、padding等を効かせるために必要 */
	text-decoration: none; /* リンクの下線を消す */
	text-align: center;    /* 文字を中央揃えにする */
	letter-spacing: 0.25em;
	background-color: #6c9480;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
/* ホバー時のスタイルもセレクタを変更 */
.flex-wrap-inner .cta-button:hover {
	background-color: #5a7d6a;
}
.flex-wrap-inner:nth-child(2) {
	position: relative;
}
.cta-leaf {
	position: absolute; /* 親要素を基準に絶対位置を指定 */
	width: 200px !important;
	height: auto !important;
	height: auto;
	bottom: -100px;      /* 下からの位置を調整 */
	right: -20px;       /* 右からの位置を調整 */
}
/* ======== 選ばれる理由セクション ======== */
.features {
	background-color: #A8B8A0; /* セージグリーン */
	color: #ffffff; /* 文字色を白に */
	padding: 80px 40px;
}
/* セクションタイトルh2の文字色と線の色を調整 */
.features h2 {
	color: #ffffff;
	margin: 0 auto 60px;
    max-width: 700px;
}
.features h2::before, .features h2::after {
	background-color: #ffffff;
	opacity: 0.5; /* 線を少し控えめに */
}
.features-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px; /* 左右の余白 */
	max-width: 1200px;
	margin: 0 auto;
}
.features-list {
	flex: 1.2; /* テキスト側を少し広めに */
}
.features-image {
	flex: 1;
}
.features-image img {
	width: 100%;
	height: auto;
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px; /* 各項目の下の余白 */
}
.feature-number {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: bold;
	min-width: 50px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0; /* 円が潰れないようにする */
}
.feature-text p {
	margin: 0;
	line-height: 1.7;
	border-left: 1px solid #ffffff;
	padding-left: 1em;
}
.feature-title {
	font-weight: bold;
	font-size: 1.1em; /* 少しだけ大きく */
	margin-bottom: 0.3em; /* 説明文との間の余白 */
}
/* ======== お悩みセクション ======== */
.worries {
	background-color: #F8F7F2; /* ベースカラーより少し濃いオフホワイト */
	padding: 80px 20px;
	background-image: url('img/bg-leaf.png'); /* 背景に薄い葉っぱの画像を敷く場合 */
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
/* お悩みセクション専用のh2スタイル */
.worries h2 {
	/* 既存のh2スタイルを打ち消す */
	display: block;
	border-bottom: none;
	margin: 0 auto;
	/* 新しいスタイルを適用 */
	color: #685149; /* メインのテキストカラー */
	text-align: center;
	font-size: 28px;
	font-weight: 500;
}
/* h2の下の線 */
.worries h2::after {
	/* 既存のh2::afterを打ち消す */
	flex-grow: 0;
	height: auto;
	margin-left: 0;
	/* 新しいスタイルを適用 */
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background-color: #B49B6A; /* ゴールド */
	margin: 15px auto 80px; /* 上下中央の余白 */
}
/* 既存のh2::beforeは不要なので打ち消す */
.worries h2::before {
	display: none;
}
.worries-container {
	max-width: 900px;
	height: 420px; /* 高さを指定して、この中で吹き出しを自由に配置 */
	margin: 0 auto;
	position: relative; /* 吹き出しを絶対配置するための基準 */
}
.speech-bubble {
	position: absolute; /* containerを基準に絶対配置 */
	display: flex;
	align-items: center;
	gap: 15px; /* アイコンと吹き出しの間の隙間 */
}
.bubble-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover; /* 画像の比率を保ったままトリミング */
}
.bubble-text {
	background-color: #ffffff;
	border: 1px solid #EAE2D6;
	border-radius: 12px;
	padding: 1em 1.2em;
	font-size: 1rem;
	line-height: 1.7;
	color: #685149;
	position: relative;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
/* 吹き出しのしっぽ（左向き） */
.bubble-left .bubble-text::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px; /* 吹き出しの外側へ */
	transform: translateY(-50%);
	border: 10px solid transparent;
	border-right-color: #ffffff; /* 吹き出しと同じ色 */
	filter: drop-shadow(-1px 0 0 #EAE2D6); /* 影で線を表現 */
}
/* 吹き出しのしっぽ（右向き） */
.bubble-right .bubble-text::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -20px; /* 吹き出しの外側へ */
	transform: translateY(-50%);
	border: 10px solid transparent;
	border-left-color: #ffffff;
	filter: drop-shadow(1px 0 0 #EAE2D6);
}
/* 右側に配置する吹き出しは、アイコンとテキストの順序を逆にする */
.bubble-right {
	flex-direction: row-reverse;
}
/* 各吹き出しの位置調整 */
.pos-1 {
	top: 0;
	left: 5%;
}
.pos-2 {
	top: 60px;
	right: 0;
}
.pos-3 {
	top: 140px;
	left: 15%;
}
.pos-4 {
	top: 230px;
	right: 10%;
}
.pos-5 {
	top: 320px;
	left: 5%;
}
.worries-bridge {
	text-align: center;
	margin-top: 40px; /* 吹き出しエリアとの余白 */
}
.worries-bridge p {
	font-size: 1.2rem;
	font-weight: bold;
	color: #685149;
	line-height: 1.7;
	margin-bottom: 15px;
}
.worries-bridge strong {
	color: #A96B54; /* カッパー色 */
	font-size: 1.3em;
}
.worries-bridge .material-symbols-outlined {
	font-size: 36px;
	color: #B49B6A; /* ゴールド */
	animation: bounce-arrow 2.5s infinite ease-in-out;
}
.sp-only {
	display: none; /* PCでは改行しない */
}

/* 矢印を優しく動かすアニメーション */
@keyframes bounce-arrow {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(8px);
}
60% {
transform: translateY(4px);
}
}
/* ======== 解決策セクション ======== */
.solution {
	padding: 0 20px 80px; /* 上の余白はお悩みセクションと繋げるため0に */
	text-align: center; /* h2とアイコンを中央揃え */
}
.solution h2 {
	/* 既存のh2スタイルを打ち消す */
	display: block;
	border-bottom: none;
	margin: 0;
	padding: 0;
	/* 新しいスタイルを適用 */
	color: #685149;
	font-size: 24px;
	font-weight: 500;
}
/* h2の上下にあった線を非表示に */
.solution h2::before, .solution h2::after {
	display: none;
}
.solution-icon {
	font-size: 40px;
	color: #B49B6A; /* ゴールド */
	margin: 10px 0 20px;
	display: block;
}
.solution-card {
	background-color: #ffffff;
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 50px;
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
	text-align: left;
}
.solution-card p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #685149;
	margin: 0 0 1.5em;
}
.solution-card p:last-child {
	margin-bottom: 0;
}
.solution-divider {
	border: none;
	height: 1px;
	background-color: #EAE2D6;
	margin: 25px auto;
}
.emphasis-text {
	font-weight: bold;
	font-size: 1.15rem;
}
/* ======== 5つのポイントセクション ======== */
.points {
	background-color: #ffffff;
	padding: 60px 20px 80px;
}
.points-title-bar {
	background-color: #A8B8A0; /* セージグリーン */
	padding: 12px 20px;
	margin-bottom: 80px;
}
.points-title-bar h2 {
	/* 既存のh2スタイルを打ち消し */
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	/* 新しいスタイルを適用 */
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}
.points-title-bar h2::before, .points-title-bar h2::after {
	display: none;
}
.points-container {
	max-width: 1100px;
	margin: 0 auto;
}
.point-item {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 70px;
}
/* 偶数番目のアイテムは画像とテキストを反転 */
.point-item:nth-child(even) {
	flex-direction: row-reverse;
}
.point-image, .point-text {
	flex: 1;
	min-width: 0; /* flexアイテムの幅が縮小できるように */
}
.point-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.point-label {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 1.2rem;
	font-weight: bold;
	color: #8A9A5B; /* オリーブに近いセージグリーン */
	margin-bottom: 0.5em;
}
.point-text h3 {
	/* 既存のh3スタイルを打ち消し */
	display: block;
	gap: 0;
	/* 新しいスタイルを適用 */
	color: #685149;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.6;
	margin: 0 0 0.8em 0;
}
/* アイコンを非表示に */
.point-text h3::before {
	display: none;
}
.point-text p {
	font-size: 1rem;
	line-height: 1.9;
	color: #685149;
}
.points-summary {
	text-align: center;
	max-width: 900px;
	margin: 60px auto 0;
	padding: 25px;
	border-top: 1px solid #EAE2D6;
	border-bottom: 1px solid #EAE2D6;
}
.points-summary p {
	font-size: 1.1rem;
	line-height: 1.8;
	font-weight: bold;
	color: #685149;
	margin: 0;
}
/* ======== お客様の声セクション ======== */
.reviews {
	background-color: #F8F7F2; /* 背景色 */
	padding: 80px 20px;
	text-align: center;
}
.reviews h2 {
	/* 既存のh2スタイルを打ち消し */
	display: block;
	border-bottom: none;
	margin: 0 auto;
	/* 新しいスタイルを適用 */
	color: #685149;
	font-size: 28px;
	font-weight: 500;
}
.reviews h2::after {
	/* 既存のh2::afterを打ち消す */
	flex-grow: 0;
	height: auto;
	margin-left: 0;
	/* 新しいスタイルを適用 */
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background-color: #B49B6A; /* ゴールド */
	margin: 15px auto 0;
}
.reviews h2::before {
	display: none;
}
.reviews-subtitle {
	font-size: 1rem;
	color: #685149;
	margin: 25px 0 50px;
}
.reviews-container {
	max-width: 900px;
	margin: 0 auto;
}
.review-card {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.06);
	padding: 40px 50px;
	text-align: left;
}
.review-card h3 {
	/* 既存のh3スタイルを打ち消し */
	display: block;
	gap: 0;
	/* 新しいスタイルを適用 */
	font-size: 1.3rem;
	font-weight: bold;
	color: #A8B8A0; /* セージグリーン */
	margin: 0 0 1.5em 0;
	padding-bottom: 1em;
	border-bottom: 1px solid #EAE2D6;
}
.review-card h3::before {
	display: none;
}
.review-card p {
	font-size: 1rem;
	line-height: 1.9;
	color: #685149;
	margin: 0;
}
.review-disclaimer {
	font-size: 0.8rem;
	color: #888888;
	text-align: right;
	margin-top: 2em;
}
/* ======== 使い方セクション ======== */
.how-to {
	background-color: #ffffff;
	padding: 80px 20px;
	text-align: center;
}
.how-to-label {
	color: #B49B6A; /* ゴールド */
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.how-to-title-bar {
	background-color: #A8B8A0; /* セージグリーン */
	padding: 12px 20px;
	margin: 0 auto 70px;
}
.how-to-title-bar h2 {
	/* 既存のh2スタイルを打ち消し */
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	/* 新しいスタイルを適用 */
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: bold;
}
.how-to-title-bar h2::before, .how-to-title-bar h2::after {
	display: none;
}
.steps-container {
	display: flex;
	justify-content: center;
	align-items: flex-start; /* 上端揃え */
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.step-item {
	flex: 1;
	max-width: 260px;
}
.step-header {
	background-color: #f3f3f3;
	padding: 10px;
	margin-bottom: 20px;
}
.step-number {
	display: block;
	color: #A8B8A0;
	font-weight: bold;
	font-size: 0.9rem;
}
.step-item h3 {
	/* 既存のh3スタイルを打ち消し */
	display: block;
	gap: 0;
	/* 新しいスタイルを適用 */
	font-size: 1.1rem;
	color: #685149;
	font-weight: bold;
	margin: 5px 0 0 0;
	padding: 0;
	line-height: 1.5;
}
.step-item h3::before {
	display: none;
}
.step-image {
	width: 220px;
	height: 220px;
	margin: 0 auto 20px;
}
.step-image img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}
.step-description, .step-point {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #685149;
	text-align: left;
}
.step-point {
	margin-top: 1em;
	padding-top: 1em;
	border-top: 1px dashed #EAE2D6;
}
.point-title {
	color: #B49B6A;
	font-weight: bold;
	margin: 0 0 0.5em 0;
}
.step-point p {
	margin: 0;
}
/* ======== YouTube動画埋め込み ======== */
.video-embed {
	max-width: 800px; /* 動画の最大幅 */
	margin: 80px auto 0; /* 上下の余白と中央寄せ */
	position: relative;
	padding-bottom: 56.25%; /* 16:9の縦横比を維持 (高さ / 幅 = 9 / 16 = 0.5625) */
	height: 0;
	overflow: hidden;
	background-color: #f0f0f0; /* ロード中の背景色 */
	border-radius: 8px; /* 角を丸くする */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.video-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
/* ======== カラー特徴（使い方セクション内） ======== */
.color-feature {
	text-align: center;
	margin-top: 80px;
	padding-top: 60px;
	border-top: 1px solid #EAE2D6; /* 上のコンテンツとの区切り線 */
}
.color-feature h3 {
	/* 既存のh3スタイルを打ち消し */
	display: block;
	gap: 0;
	/* 新しいスタイルを適用 */
	font-size: 1.5rem;
	color: #685149;
	font-weight: bold;
	margin: 0 auto 30px;
}
.color-feature h3::before {
	display: none;
}
.color-sample-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin-bottom: 30px;
}
.color-feature p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #685149;
	max-width: 700px;
	margin: 0 auto;
}
/* ======== よくある質問セクション ======== */
.faq {
	background-color: #F8F7F2; /* 背景色 */
	padding: 80px 20px;
}
.faq h2 {
	/* 既存のh2スタイルを打ち消し */
	display: block;
	border-bottom: none;
	margin: 0 auto;
	/* 新しいスタイルを適用 */
	color: #685149;
	font-size: 28px;
	font-weight: 500;
	text-align: center;
}
.faq h2::after {
	/* 既存のh2::afterを打ち消し */
	flex-grow: 0;
	height: auto;
	margin-left: 0;
	/* 新しいスタイルを適用 */
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background-color: #B49B6A; /* ゴールド */
	margin: 15px auto 0;
}
.faq h2::before {
	display: none;
}
.faq-container {
	max-width: 1200px;
	margin: 60px auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr; /* 2カラムレイアウト */
	gap: 40px 30px; /* 縦横の隙間 */
}
.faq-question, .faq-answer {
	display: flex;
	align-items: flex-start; /* 上揃え */
	padding: 20px;
	border-radius: 8px;
}
.faq-question {
	background-color: #ffffff;
	margin-bottom: 12px;
}
.q-icon, .a-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #ffffff;
	font-weight: bold;
	font-family: serif;
	margin-right: 15px;
}
.q-icon {
	background-color: #A8B8A0; /* セージグリーン */
}
.a-icon {
	background-color: #E0B5A6; /* ピンクベージュ */
}
.faq-question p, .faq-answer p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.8;
	color: #685149;
}
/* ======== 商品情報セクション ======== */
.product-specs {
    background-color: #ffffff; /* 白背景 */
    padding: 80px 20px;
}
.product-specs h2 {
    /* 既存のh2スタイルを打ち消し */
    display: block; border-bottom: none; margin: 0 auto;
    /* 新しいスタイルを適用 */
    color: #685149;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}
.product-specs h2::after {
    /* 既存のh2::afterを打ち消し */
    flex-grow: 0; height: auto; margin-left: 0;
    /* 新しいスタイルを適用 */
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: #B49B6A; /* ゴールド */
    margin: 15px auto 0;
}
.product-specs h2::before {
    display: none;
}

.specs-container {
    max-width: 800px;
    margin: 60px auto 0;
}
.specs-card {
    background-color: #ffffff;
    border: 1px solid #EAE2D6;
    border-radius: 12px;
    padding: 40px 50px;
    text-align: center;
}
.spec-product-image {
    max-width: 150px;
    height: auto;
    margin: 0 auto 25px;
}
.specs-card h3 {
    /* 既存のh3スタイルを打ち消し */
    display: block; gap: 0;
    /* 新しいスタイルを適用 */
    font-size: 1.8rem;
    color: #685149;
    font-weight: 500;
    margin: 0 auto 30px;
}
.specs-card h3::before {
    display: none;
}

.specs-list {
    margin: 0;
    padding: 0;
    text-align: left;
    border-top: 1px solid #EAE2D6;
}
.spec-row {
    display: flex;
    padding: 20px 10px;
    border-bottom: 1px solid #EAE2D6;
    align-items: baseline;
}
.specs-list .spec-row:last-child {
    border-bottom: none;
}
.spec-row dt {
    flex-basis: 120px;
    flex-shrink: 0;
    font-weight: bold;
    color: #685149;
    font-size: 1rem;
}
.spec-row dd {
    flex-grow: 1;
    margin: 0;
    font-size: 1rem;
    color: #685149;
    line-height: 1.7;
}
.ingredients-list {
    font-size: 0.85rem;
    color: #888;
}
/* ======== ご購入方法セクション ======== */
.purchase {
	background-color: #F8F7F2; /* 背景色 */
	padding: 80px 20px;
	text-align: center;
}
.purchase-title-wrapper {
	background-color: #ffffff;
	max-width: 900px;
	margin: 0 auto;
	padding: 15px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.purchase-title-wrapper h2 {
	/* 既存のh2スタイルを打ち消し */
	display: block;
	border: none;
	margin: 0;
	padding: 0;
	/* 新しいスタイルを適用 */
	color: #685149;
	font-size: 28px;
	font-weight: 500;
}
.purchase-title-wrapper h2::before, .purchase-title-wrapper h2::after {
	display: none;
}
.purchase-subtitle {
	font-size: 1rem;
	color: #685149;
	margin: 30px 0 50px;
}
.purchase-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: stretch; /* カードの高さを揃える */
}
.purchase-card {
	flex: 1;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.06);
	overflow: hidden; /* ヘッダーの角丸を有効にする */
	display: flex;
	flex-direction: column;
}
.purchase-header {
	background-color: #A8B8A0; /* セージグリーン */
	padding: 15px;
}
.purchase-header h3 {
	/* 既存のh3スタイルを打ち消し */
	display: block;
	gap: 0;
	/* 新しいスタイルを適用 */
	font-size: 1.1rem;
	font-weight: bold;
	color: #ffffff;
	margin: 0;
	line-height: 1.5;
}
.purchase-header h3::before {
	display: none;
}
.purchase-body {
	padding: 30px 25px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.support-text {
	font-size: 0.9rem;
	color: #685149;
	margin: 0;
}
.phone-number {
	font-size: 2.2rem;
	line-height: 130%;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #685149;
	margin: 10px 0;
}
.purchase-button, .purchase-link {
	display: block;
	text-decoration: none;
	font-weight: bold;
	border-radius: 8px;
	transition: all 0.3s ease;
}
.purchase-button {
	background-color: #A96B54;
	color: #ffffff;
	padding: 12px;
	margin-bottom: 15px;
}
.purchase-button:hover {
	background-color: #8a5742;
}
.purchase-button.regular {
	background-color: #C8836A;
}
.purchase-button.regular:hover {
	background-color: #b56e56;
}
.purchase-link {
	font-size: 1.1rem;
	color: #685149;
	padding: 10px;
}
.purchase-link:hover {
	color: #A96B54;
}
/* ======== ハンバーガーメニューのスタイル (PC用) ======== */
.hamburger-menu {
    display: none; /* PCでは非表示 */
    background: none;
    border: none;
    color: #685149;
    font-size: 32px; /* アイコンサイズ */
    cursor: pointer;
    z-index: 1001; /* ヘッダーより手前に */
}
/* ▼▼▼ ハンバーガーメニュー画像をPCで非表示にする ▼▼▼ */
.nav-cta-banner {
    display: none;
}

/* ======== フッター ======== */
footer {
	background-color: #A8B8A0; /* セージグリーン */
	color: #685149;
	padding-top: 50px;
	font-size: 0.9rem;
	position: relative;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 40px 50px;
}
.footer-info {
	text-align: left;
}
.footer-contact {
	text-align: right;
}
footer p {
	margin: 0 0 0.5em;
	line-height: 1.7;
}
.footer-brand {
	font-family: "Noto Serif JP", serif;
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 1em;
}
.footer-phone {
	font-size: 2rem;
	font-weight: 500;
	margin: 0.2em 0;
}
.copyright {
	background-color: #685149; /* ダークブラウン */
	color: #ffffff;
	text-align: center;
	padding: 15px 20px;
	font-size: 0.8rem;
}
.back-to-top {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background-color: rgba(104, 81, 73, 0.8); /* 少し透過したダークブラウン */
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	transition: all 0.3s ease;
}
.back-to-top:hover {
	background-color: #685149;
	transform: translateY(-4px);
}

        /* ======== スクロールでふんわり表示させるアニメーション ======== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }


/* ======== レスポンシブ対応 (768px以下) ======== */
@media screen and (max-width: 768px) {

	/* ======== 基本設定 ======== */
	main {
		/* 最小14px、基本は画面幅の4%、最大16pxに自動調整 */
		font-size: clamp(14px, 4vw, 16px);
	}
	body {
		font-size: 14px; /* スマホ用に基本フォントサイズを調整 */
		padding-top: 60px; /* ヘッダーの高さに合わせる */
	}
	
	h2 {
        font-size: 1.5rem; /* ブラウザの基本設定(通常16px)の1.5倍の大きさ */
        line-height: 1.4;   /* 行間は文字サイズの1.4倍（この設定は変更不要） */
	}

	h3 {
        font-size: 1.125rem; /* 18px相当のサイズ */
        line-height: 1.4;
	}

	section {
		padding-left: 15px;
		padding-right: 15px;
	}
    section[id] {
        scroll-margin-top: 60px; /* スマホのヘッダー高さ(60px) + 少しの余白 */
    }


	/* ======== ヘッダーのハンバーガーメニュー化 ======== */
	header {
		height: 60px;
		padding: 5px 15px;
	}
    /* ▼▼▼ ハンバーガーメニューを表示 ▼▼▼ */
    .hamburger-menu {
        display: block; /* スマホで表示 */
        position: absolute; /* ヘッダーを基準に絶対位置を指定 */
        top: 50%;           /* 上から50%の位置に */
        right: 0px;        /* 右から0pxの位置に */
        transform: translateY(-50%); /* 垂直方向の中央に補正 */
    }
    .hamburger-menu:hover {
        background-color: transparent; /* ホバー時の背景色を無効にする */
    }
	.header-logo img {
		max-height: 40px;
	}

	/* 購入ボタン */
.header-action {
    position: absolute; /* 位置を細かく指定するために必要 */
    top: 50%;
    right: 60px; /* ハンバーガーメニューの幅(約50px) + 余白分、右から離す */
    transform: translateY(-50%);
}
    /* ▼▼▼ SP用ナビゲーションメニューのスタイル ▼▼▼ */
    .header-nav {
        /* 最初は画面の外に隠しておく */
        position: fixed;
        top: 60px; /* ヘッダーの高さ分下げる */
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background-color: rgba(255, 255, 255, 0.98); /* 少し透けた白 */
        
        /* 非表示の状態 */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.3s, visibility 0.3s, transform 0.3s;

        /* メニュー項目のレイアウト */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* 上揃えに変更 */
        padding-top: 40px;           /* 上部に余白を追加 */
        gap: 40px;
    }
    
    .header-nav a {
        font-size: 18px;
    }


    /* ▼▼▼ ハンバーガーメニュー内のCTA画像スタイル ▼▼▼ */
    .nav-cta-banner {
        margin-top: 30px; /* 上のFAQリンクとの間に余白を作る */
        display: block;
        text-align: center; /* 画像を中央に配置 */
    }
    .nav-cta-banner img {
        width: 85%; /* メニューの幅に対して85%のサイズ */
        max-width: 300px; /* PCで見た場合などでも大きくなりすぎないように */
        height: auto; /* 高さは自動調整 */
        border-radius: 8px; /* 角を少し丸くして上品に */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 影を付けて立体感を出す */
    }

    /* ▼▼▼ メニューが開いた時のスタイル ▼▼▼ */
    /* JavaScriptでheaderにis-openクラスが付いた時のスタイル */
    header.is-open .header-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
	

	/* ======== main要素の調整 ======== */

	/* --- 特徴セクション --- */
	.features-container {
		flex-direction: column; /* 上下に並べる */
	}


	/* --- お悩みセクション --- */
	/* PCの形をできるだけ維持 */
	.worries-container {
		height: auto; /* 高さを自動に */
		position: static; /* positionの基準を解除 */
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 40px;
	}

	.bubble-text {
        font-size: 1rem;     /* 文字サイズを約16px相当に少し大きくします */
		line-height: 1.5;
	}
	
	.speech-bubble {
		position: static; /* 絶対配置を解除 */
		transform: none;
		max-width: 90%;
	}
	.bubble-right {
		align-self: flex-end; /* 右側の吹き出しを右寄せ */
	}
	


	/* --- 5つのポイントセクション --- */
	.point-item,
	.point-item:nth-child(even) {
		flex-direction: column; /* 全て上下に並べる */
		gap: 20px;
	}
	
	.points-title-bar {
		margin-bottom: 40px;
	}
	
	.point-item {
		margin-bottom: 40px;
	}


	/* --- 使い方セクション (横2 x 縦2) --- */
	.steps-container {
		flex-wrap: wrap; /* 要素を折り返す */
		gap: 20px 15px;
	}
	.step-item {
		/* gapを考慮して幅を計算 (100% / 2) - (gap / 2) */
		flex-basis: calc(50% - 8px);
		max-width: none;
	}
	
	.step-image {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1; /* 正方形を維持 */
	}


	/* --- よくある質問セクション (縦に並べる) --- */
	.faq-container {
		grid-template-columns: 1fr; /* 1カラムレイアウトに変更 */
		gap: 20px;
	}

    .spec-row {
        flex-direction: column; /* 縦並びに変更 */
        align-items: flex-start; /* 左揃えに調整 */
    }
    .spec-row dt {
		flex-basis: auto;
        margin-bottom: 8px; /* 内容との間に少し余白を追加 */
    }

	/* --- ご購入方法セクション (縦に並べる) --- */
	.purchase-container {
		flex-direction: column; /* 上下に並べる */
	}

	
	/* --- その他微調整 --- */
	.video-container .overlay-text {
		font-size: 24px; /* 動画上のテキストサイズ調整 */
		right: 15px;
		bottom: 5%;
	}

	.flex-wrap {
		flex-direction: column; /* CTAセクションも上下並びに */
	}
	
	.solution-card,
	.review-card,
	.specs-card {
		padding: 25px 20px; /* カード内の余白を調整 */
	}
	
	.footer-content {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}
	.footer-info, .footer-contact {
		text-align: center;
	}
	.back-to-top {
		bottom: 20px;
		right: 20px;
	}
}
	
