@charset "utf-8";



/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700&display=swap');


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #caffe5e1;				/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #645c4a;		/*上のprimary-colorの対として使う色*/

	--global-space: 3vw;				/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/
}


/*Q19用
---------------------------------------------------------------------------*/
.step-maru.arrow-maru .list-maru::before,
.step-float-maru.arrow-maru .list-maru::before {
	color: var(--primary-inverse-color) !important;
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "M PLUS 1p", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	line-height: 3;		/*行間*/
	animation: opa1 0.2s 0.5s both;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
input {font-size: 1rem;}

/*ul,ol*/
ul,ol {margin-left: 1.5rem;margin-bottom: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*sectionが続く場合*/
section + section {
	margin-top: 8vw;	/*sectionの上に空けるスペース*/
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {color: inherit;transition: 0.3s;}

a:hover {
	opacity: 0.7;	/*マウスオン時に色を80%に薄くする*/
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	padding-left: var(--global-space);		/*左側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-right: var(--global-space);		/*右側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
}


/*header（サイトロゴが入った最上部のボックス）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	padding-top: var(--global-space);		/*上側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-bottom: var(--global-space);	/*下側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
	text-align: center;		/*中のテキストをセンタリング*/
}

/*TELブロック（header内のaddress）*/
header address {
	font-style: normal;
}

	/*画面幅901px以上の追加指定*/
	@media screen and (min-width:901px) {
	
	/*headerブロック*/
	header {
		display: flex;	/*直接の子要素を横並びにする*/
		justify-content: space-between;
		align-items: center;
	}
	
	}/*追加指定ここまで*/


/*ヘッダー内のロゴ
---------------------------------------------------------------------------*/
#logo a {text-decoration: none;display: block;}

/*ロゴ*/
#logo {
	margin: 0;padding: 0;
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ロゴを画像にする場合*/
#logo img {
	display: block;
	width: 200px;	/*ロゴ画像の幅*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	margin-bottom: var(--global-space);	/*下に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます。*/
}


/*contents（左右のブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	display: flex;	/*直接の子要素を横並びにする*/
	gap: var(--global-space);		/*左右のボックスの間に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます。*/
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
main {
	flex: 1;
	line-height: 1.5;
	
}

/*h2見出し*/
main h2 {
	margin-top: 0;line-height: 1;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--primary-inverse-color);	/*下線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
  
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
/*メニューを囲むブロック*/
#menubar {
	order: -1;		/*左側に表示させる。右側がいいならこの１行を削除。*/
	width: 230px;	/*幅。お好みで変更して下さい。*/
        
}

/*メニュー１個あたりの設定*/
#menubar li {
	border-bottom: 1px solid var(--primary-inverse-color);	/*下線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
}
#menubar li a {
	padding-left: 1rem;	/*左側の余白*/
}

/*h3見出し*/
#menubar h3 {
	margin: 0;
	line-height:2;
	font-size: 1rem;
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	text-align: center;	/*テキストをセンタリング*/
}


/*メニューブロック初期設定（※変更不要）
---------------------------------------------------------------------------*/
#menubar {opacity: 0;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}
.large-screen #menubar {opacity: 1;}
.small-screen #menubar.display-none {display: none;}
.small-screen #menubar.display-block {display: block;opacity: 1;}
#menubar_hdr.display-none {display: none;}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 100px;	/*上に空ける余白。ハンバーガーアイコンと重ならない為の指定ですのでお好みで変更OK。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	animation: animation1 0.2s both;
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	padding: 1rem 3rem;		/*メニュー内の余白。上下、左右へ。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 20px;		/*上からの配置場所*/
	right: 20px;	/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	padding: 15px;	/*ブロック内の余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: rgba(0,0,0,0.6);	/*背景色*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;			/*線の太さ*/
	background-color: #fff;	/*線の色*/
	border-radius: 2px;		/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%;transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {opacity: 0;}
#menubar_hdr.ham div span:nth-child(3) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer a {color: inherit;text-decoration: none;}
footer .pr {display: block;}

footer {
	font-size: 0.8rem;		/*文字サイズ。80%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding-top: 5rem;
}


/*list-normal（service.htmlで使っている２カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-normal .list {
	display: flex;		/*直接の子要素を横並びにする*/
	gap: 2vw;			/*左右の間のマージン的なスペース*/
	margin-bottom: var(--global-space);	/*ボックスの下に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます。*/
	line-height: 2;		/*行間を少し狭く*/
}

/*テキストブロック*/
.list-normal .text {
	flex: 1;
}

/*画像ブロック*/
.list-normal figure {
	width: 40%;	/*幅。お好みで。*/
}

/*h4見出し*/
.list-normal h4 {
	margin: 0;
	margin-bottom: 0.5rem;	/*下に少しスペースをとる*/
	font-size: 1.2rem;	/*文字サイズを120%に*/
}

/*説明テキスト*/
.list-normal p {
	margin: 0;	
}


/*FAQ
---------------------------------------------------------------------------*/
.openclose {cursor: pointer;}

/*FAQ全体を囲むボックス*/
.faq {
	line-height: 2;	/*行間を少しせまくする*/
}

/*質問*/
.faq dt {
	position: relative;
	padding-left: 3rem; 	/*下の「回答」と数字部分を合わせる*/
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-right: 1rem;	/*ボックス内の右側の余白*/
	margin-bottom: 1rem;	/*ボックスの外（下）に空けるスペース*/
	border-radius: 5px;		/*角を少しだけ丸くする*/
}

/*「Q」のテキスト*/
.faq dt::before {
	content: "Q.";			/*このテキストを表示させます*/
	position: absolute;
	left: 0;
	top: 0;
	padding-left: 1rem;		/*テキストの左側に空ける余白*/
}

/*回答*/
.faq dd {
	margin-left: 3rem;		/*上の「質問」と数字部分を合わせる*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;				/*幅*/
	margin-bottom: 2rem;
}

.ta1, .ta1 td, .ta1 th {
	border: 1px solid var(--primary-inverse-color);	/*テーブルの枠線の幅、線種、varは色のことでcss冒頭で指定しているprimary-inverse-colorを読み込みます。*/
	padding: 1rem;			/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: red !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb5vw {margin-bottom: 5vw !important;}
.look {display: inline-block;padding: 0px 10px;background: #fff;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/



/*トップビュー*/
	.fv {
		background: linear-gradient(135deg, #a8edea, #fed6e3); /* ミント×やわらかピンク */
		padding: 15px 15px;
		text-align: center;
		font-family: "Helvetica Neue", sans-serif;
	  }
	  .fv-inner {
		max-width: 700px;
		margin: 0 auto;
	  }
	  
	  .catch1S{
	  font-size:20px;
	  color:#222;
	  display:block;
	  margin-bottom:10px;
	  }
	  
	  .catch1 {
		font-size: 13px;
		color: #333;
		margin-bottom: 12px;
	  }
	  
	  .catch2 {
		font-size: 18px;
		color: #555;
		margin-bottom: 16px;
	  }
	  .catch3 {
		font-size: 22px;
		font-weight: bold;
		color: #222;
		margin-bottom: 30px;
		line-height: 1.4;
	  }
	  .highlight {
		color: #2bb6a5; /* ミント色で強調 */
	  }
	  .btn {
		display: inline-block;
		padding: 12px 28px;
		background: #2bb6a5;
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		border-radius: 40px;
		text-decoration: none;
		transition: 0.3s;
	  }
	  .btn:hover {
		background: #249b8d;
	  }




/*トップビュー下ビュー*/
	  .clinic-hero {
		background-size: cover;
		background-position: center;
		position: relative;
		width: 100%;
		max-width: 900px; /* ✅ 最大幅600px */
		height: 300px;
		margin: 40px auto; /* ✅ ページ中央に配置 */
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 6px 18px rgba(0,0,0,0.15);
	  }
	  
	  /* 白オーバーレイで柔らかく */
	  .clinic-hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(255,255,255,0.65);
		backdrop-filter: blur(2px);
	  }
	  
	  .overlay {
		position: relative;
		text-align: center;
		color: #003366;
		z-index: 1;
		padding: 20px;
		width: 100%;
		box-sizing: border-box;
	  }
	  
	  .overlay h2 {
		font-size: 1.7rem;
		margin-bottom: 10px;
		line-height: 1.3;
	  }
	  
	  .overlay p {
		font-size: 1rem;
		margin-bottom: 20px;
		line-height: 1.6;
	  }
	  
	  .overlay .cta-btn {
		background-color: #FF8C42;
		color: #fff;
		padding: 12px 30px;
		text-decoration: none;
		border-radius: 40px;
		font-weight: bold;
		transition: 0.3s;
		display: inline-block;
		box-shadow: 0 4px 12px rgba(255,140,66,0.3);
	  }
	  
	  .overlay .cta-btn:hover {
		background-color: #FF6B00;
	  }
	  
	  /* スマホ対応 */
	  @media screen and (max-width: 600px) {
		.clinic-hero {
		  height: 230px; /* ✅ 高さを少し低めに */
		}
		.overlay h2 {
		  font-size: 1.3rem;
		}
		.overlay p {
		  font-size: 0.9rem;
		}
		.overlay .cta-btn {
		  padding: 10px 24px;
		  font-size: 0.9rem;
		}
	  }
	
	  

/*相談会バナー*/
	  .rhk-banner-mint-cute {
		font-family: "Hiragino Maru Gothic ProN", "Rounded Mplus 1c", "Noto Sans JP", sans-serif;
		background: linear-gradient(135deg, #e2fbea, #faf8f3);
		color: #6b4e2e; /* 優しいブラウン */
		font-size: 1.25rem;
		font-weight: 600;
		text-align: center;
		padding: 1.4em 1em;
		border-radius: 18px;
		box-shadow: 0 6px 14px rgba(160, 180, 160, 0.25);
		max-width: 820px;
		margin: 2.5em auto;
		letter-spacing: 0.04em;
		border: 2px solid #e8efe8;
		position: relative;
		overflow: hidden;
	  }
	
	  /* 装飾ライン（上下） */
	  .rhk-banner-mint-cute::before,
	  .rhk-banner-mint-cute::after {
		content: "";
		position: absolute;
		width: 60%;
		height: 2px;
		background: linear-gradient(90deg, transparent, #c5e8d2, transparent);
		left: 20%;
	  }
	
	  .rhk-banner-mint-cute::before {
		top: 0.8em;
	  }
	
	  .rhk-banner-mint-cute::after {
		bottom: 0.8em;
	  }
	
	  .rhk-banner-mint-cute .leaf {
		font-size: 1.3em;
		margin: 0 0.4em;
	  }
	
	  @media (max-width: 600px) {
		.rhk-banner-mint-cute {
		  font-size: 1rem;
		  padding: 1.1em;
		  border-radius: 14px;
		}
		.rhk-banner-mint-cute::before,
		.rhk-banner-mint-cute::after {
		  width: 70%;
		  left: 15%;
		}
	  }
	 


/*インスタリンクバナー*/
	  .insta-link-wrap {
		max-width: 820px;
		margin: 32px auto;
		padding: 0 16px;
	  }
	
	  .insta-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 14px 18px;
		border-radius: 999px;
		background: #f4f6f8;
		border: 1px solid #dde3ea;
		text-decoration: none;
		color: #222;
		transition: background 0.2s ease, transform 0.2s ease;
	  }
	
	  .insta-link:hover {
		background: #edf1f5;
		transform: translateY(-1px);
	  }
	
	  .insta-text {
		font-size: 15px;
		font-weight: 600;
		letter-spacing: 0.02em;
	  }
	
	  .insta-arrow {
		font-size: 18px;
		color: #4a7ebb;
		flex-shrink: 0;
	  }
	
	  @media (max-width: 600px) {
		.insta-link {
		  padding: 12px 16px;
		}
		.insta-text {
		  font-size: 14px;
		}
	  }



/*サービス紹介*/
	   .service-intro {
		text-align: center;
	  }
	  .service-intro p, .service-intro div {
		text-align: center;
		margin-bottom: 1em; /* 段落間隔 */
	  }
	  .service-intro div {
		line-height: 1.5; /* 箇条書きボックスの行間 */
	  }
  
	  /* スマホ対応 */
	  @media screen and (max-width:600px) {
		.service-intro {
		  padding: 20px 15px;
		  margin: 20px 10px;
		  text-align: left; /* 本文左揃え */
		}
		.service-intro p, .service-intro div {
		  text-align: left;
		  font-size: 1rem;
		  margin-bottom: 0.8em; /* スマホで少しコンパクトに */
		}
		.service-intro h2, .service-intro h3 {
		  font-size: 1.4rem;
		  margin-bottom: 0.8em;
		}
		.service-intro div {
		  padding: 10px 12px; /* 箇条書きボックスの余白調整 */
		  line-height: 1.4;   /* 箇条書き行間を少し詰める */
		}
	  }
	


/*サービス紹介の症状パネル*/
	  .panel-wrapper {
		max-width: 900px;
		margin: 20px auto 40px auto;
		display: grid;
		grid-template-columns: 1fr; /* デフォルト1列 */
		gap: 20px;
		font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	  }
	
	  @media screen and (min-width: 600px) {
		.panel-wrapper {
		  grid-template-columns: repeat(2, 1fr); /* 画面広ければ2列 */
		}
	  }
	
	  .panel-box {
		background: #e6f2ff; /* パネル背景色 */
		padding: 20px 20px 12px 20px;
		border-radius: 12px;
		border: 1px solid #cce0ff;
		box-shadow: 0 3px 10px rgba(0,0,0,0.08);
		position: relative;
	  }
	
	  .panel-box h3 {
		margin-top: 0;
		font-size: 18px;
		color: #007acc; /* 題名の文字色 */
		margin-bottom: 8px;
		text-align: center;
		border-bottom: 2px solid #007acc;
		padding-bottom: 6px;
	  }
	
	  .panel-box ul {
		padding-left: 0;
		margin: 10px 0 20px 0;
		font-weight: bold;
		list-style: none;
		color:#6b4e2e;
	  }
	
	  .panel-box ul li {
		margin-bottom: 8px;
		line-height: 1.5;
	  }
	
	
	  .panel-box2 {
		background: #EAF4FA; /* パネル背景色 */
		padding: 20px 20px 12px 20px;
		border-radius: 12px;
		border: 1px solid #cce0ff;
		box-shadow: 0 3px 10px rgba(0,0,0,0.08);
		position: relative;
	
	
	
	  }
	
	
	  .panel-box3 {
		background: #F7F3F0; /* パネル背景色 */
		padding: 20px 20px 12px 20px;
		border-radius: 12px;
		border: 1px solid #cce0ff;
		box-shadow: 0 3px 10px rgba(0,0,0,0.08);
		position: relative;
	  
	  }
	
	
	
	  /* ▼ 推奨メニュー（背景透明・太字・下部配置） */
	  .recommend {
		font-weight: bold;
		color: #6b4e2e; /* 説明文と同じ茶色で統一 */
		margin-top: 10px;
		padding-top: 10px;
		border-top: 1px dashed #000000; /* 軽く区切り線（背景透明） */
		text-align: center;
	  }



/*サービス紹介施術内容など*/
	  .rehakuru-service-section-simple {
		max-width: 800px;
		margin: 40px auto;
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		line-height: 1.6;
	  }
	  
	  .rehakuru-section-title-simple {
		color: #007acc;
		font-size: 2.0.rem; /* 少し大きめで読みやすく */
		font-weight: 700;
		margin-bottom: 12px;
	  }
	  
	  .rehakuru-cards-simple {
		display: flex;
		flex-direction: column;
		
		margin-bottom: 10px;
	  }
	  
	  .rehakuru-card-simple {
		background-color: #f0f8ff;
		border-radius: 8px;
		padding: 10px 14px;
		font-weight: 500;
		color: #222; /* 文字を濃くして読みやすく */
		font-size: 1.05rem; /* 少し大きめ */
	  }
	  
	  .rehakuru-service-list-simple {
		list-style: none; /* レ点なし */
		padding-left: 0;
	  }
	  
	  .rehakuru-service-list-simple li {
		margin-bottom: 10px;
		padding-left: 0; /* インデントなし */
		font-size: 1.03rem; /* 読みやすい文字サイズ */
		color: #222;
	  }





/*こんな方におすすめセクション*/
	  .recommend-wrap2 {
		padding: 28px 30px;
		border-radius: 14px;
		max-width: 900px;
		margin: 40px auto;
		text-align: left;
	  }
	  
	  .recommend-title {
		font-size: 1.5rem;
		margin-bottom: 16px;
		color: #1F3A4D;
	  }
	  
	  .recommend-list {
		list-style: none;
		padding-left: 0;
		margin: 0;
	  }
	  
	  .recommend-list li {
		position: relative;
		padding-left: 1.4em;
		margin-bottom: 12px;
		line-height: 1.6;
		font-weight: 500;
		color: #333;
	  }
	  
	  .recommend-list li::before {
		content: "✔";
		position: absolute;
		left: 0;
		color: #2C7BE5;
		font-size: 0.9em;
	  }
	  
	  .recommend-note {
		margin-top: 14px;
		font-size: 0.95rem;
		color: #555;
	  }



/*料金表セクション*/
	  /* カード用コンテナ */
  .price-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
   max-width: 700px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
  }

  
  /* カード内h2だけ緑 */
  .price-card h2 {
    color: #B14310; 
    margin-bottom: 10px;
  }

  .price-card h1 {
    font-size: 1.5em;
    line-height: 1.4;
    margin: 10px 0;
  }

  .price-card .highlight {
    font-weight: bold;
    color: #B14310;
  }

  .price-card .note {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
  }

  .price-card .image-center {
    text-align: center;
    margin: 20px 0;
  }

  .price-card .image-center img {
    max-width: 100%;
    height: auto;
  }

  .price-card .button {
    display: inline-block;
    background: B14310;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 5px 10px 0;
  }

  .price-card .section {
    margin-bottom: 20px;
    text-align: center;
  }

  /* レスポンシブ */
  @media screen and (max-width: 480px) {
    .price-card h1 {
      font-size: 1.2em;
    }

    .price-card .button {
      font-size: 14px;
      padding: 10px 15px;
    }
  }


/*施術ケース紹介*/
  .rehakuru-cases {
	font-family:'Yu Gothic','メイリオ',sans-serif;
	color:#5a4633;
	background:#f9fbfd;
	padding:40px 20px;
	border-radius:16px;
	max-width:900px;
	margin:60px auto;
  }
  
  /* Before After コンテナ */
  .rehakuru-cases .before-after-container {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:20px;
	margin:30px 0;
  }
  
  .rehakuru-cases .case-box {
	background:#fff;
	border:1px solid #ddd;
	border-radius:10px;
	width:45%;
	padding:15px;
	text-align:center;
	box-shadow:0 2px 8px rgba(0,0,0,0.05);
  }
  
  .rehakuru-cases .case-title {
	font-weight:bold;
	margin-bottom:10px;
	color:#5a4633;
  }
  
  .rehakuru-cases .case-box img {
	width:100%;
	height:auto;
	border-radius:6px;
	margin-bottom:10px;
  }
  
  /* 事例3用（画像＋動画） */
  .rehakuru-cases .case-media {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:6px;
  }
  
  .rehakuru-cases .case-media img {
	width:100%;
	border-radius:8px;
  }
  
  .rehakuru-cases .video-wrapper {
	position:relative;
	width:100%;
	padding-bottom:56.25%;
	margin-top:10px;
  }
  
  .rehakuru-cases .video-wrapper iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border-radius:8px;
  }
  
  /* 注意書き */
  .rehakuru-cases .note {
	font-size:0.9rem;
	color:#a44;
	text-align:center;
	margin-top:15px;
  }
  
  /* スマホ対応 */
  @media screen and (max-width:768px) {
	.rehakuru-cases .case-box {
	  width:90%;
	}
	.rehakuru-cases .case-media img {
	  width:100%;
	}
  }
  
  
  /* 解説テキストを左寄せ＆小さめに */
  .rehakuru-cases .kaisetu {
	text-align: left;
	font-size: 0.9rem;        /* 小さめ */
	line-height: 1.6;         /* 読みやすさ確保 */
	color: #555;              /* 少し柔らかい色 */
	margin-top: 8px;
  }
  
  /* スマホ時はさらに少しだけ小さく */
  @media screen and (max-width:768px) {
	.rehakuru-cases .kaisetu {
	  font-size: 0.85rem;
	}
  }





/*faqパート*/
  :root{
	--accent:#ff7a59; /* ボタン色（必要なら変更） */
	--bg:#ffffff;
	--text:#222;
	--muted:#666;
	--radius:8px;
	--shadow: 0 2px 6px rgba(0,0,0,0.06);
	font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  }
  #faq { max-width:800px; margin:20px auto; padding:0 16px; }
  #faq h2{ font-size:1.1rem; margin:0 0 12px; color:var(--text); }
  .faq-item {
	background:var(--bg);
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	margin:14px 0;
	overflow:hidden;
  }
  /* details/summary のスタイル */
  .faq-item summary{
	list-style:none;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:10px 16px;
	gap:12px;
	user-select:none;
  }
  .faq-item summary::-webkit-details-marker { display:none; }
  .faq-q {
	font-weight:700;
	color:var(--text);
	font-size:0.98rem;
  }
  .faq-a {
	color:var(--muted);
	font-size:0.95rem;
	padding:0 16px 16px 16px;
	line-height:1.6;
  }
  .chev {
	width:22px; height:22px; display:inline-block; transition:transform .22s ease;
	color:var(--accent);
  }
  /* open state */
  .faq-item[open] .chev { transform:rotate(180deg); }
  /* small screens */
  @media (max-width:480px){
	.faq-q{ font-size:0.92rem; }
	.faq-a{ font-size:0.92rem; }
  }



/*声リハfaqパート*/
  :root{
	--accent:#ff7a59; /* ボタン色（必要なら変更） */
	--bg:#ffffff;
	--text:#222;
	--muted:#666;
	--radius:8px;
	--shadow: 0 2px 6px rgba(0,0,0,0.06);
	font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  }
  #faq { max-width:800px; margin:20px auto; padding:0 16px; }
  #faq h2{ font-size:1.1rem; margin:0 0 12px; color:var(--text); }
  .faq-item {
	background:var(--bg);
	border-radius:var(--radius);
	box-shadow:var(--shadow);
	margin:14px 0;
	overflow:hidden;
  }
  /* details/summary のスタイル */
  .faq-item summary{
	list-style:none;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:10px 16px;
	gap:12px;
	user-select:none;
  }
  .faq-item summary::-webkit-details-marker { display:none; }
  .faq-q {
	font-weight:700;
	color:var(--text);
	font-size:0.98rem;
  }
  .faq-a {
	color:var(--muted);
	font-size:0.95rem;
	padding:0 16px 16px 16px;
	line-height:1.6;
  }
  .chev {
	width:22px; height:22px; display:inline-block; transition:transform .22s ease;
	color:var(--accent);
  }
  /* open state */
  .faq-item[open] .chev { transform:rotate(180deg); }
  /* small screens */
  @media (max-width:480px){
	.faq-q{ font-size:0.92rem; }
	.faq-a{ font-size:0.92rem; }
  }

/*声リハカード*/
    /* ホバーで少し浮き上がるアニメーション */
	#voice-rehab:hover {
		transform: translateY(-5px);
	  }
	  #voice-rehab a:hover {
		background-color: #d35400;
	  }


/*声リハFAQ*/
	  #voice-faq {
		max-width: 600px;
		margin: 0 auto;
		font-family: 'Helvetica Neue', Arial, sans-serif;
		padding: 20px;
	  }
	  #voice-faq h3 {
		text-align: center;
		font-size: 1.6em;
		margin-bottom: 20px;
		color: #333;
	  }
	
	  /* アコーディオン項目 */
	  .accordion-item {
		border-bottom: 1px solid #e0e0e0;
	  }
	
	  .accordion-button {
		width: 100%;
		text-align: left;
		padding: 16px 20px;
		font-size: 1em;
		font-weight: 500;
		border: none;
		background-color: #f9f9f9;
		cursor: pointer;
		outline: none;
		position: relative;
		transition: background-color 0.3s;
		border-radius: 6px;
		margin-bottom: 5px;
	  }
	
	  .accordion-button:hover {
		background-color: #f1f1f1;
	  }
	
	  .accordion-button::after {
		content: "▼";
		position: absolute;
		right: 20px;
		font-size: 0.9em;
		transition: transform 0.3s;
	  }
	
	  .accordion-button.active::after {
		transform: rotate(-180deg);
	  }
	
	  .accordion-content {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		padding: 0 20px;
		background-color: #fff;
		border-radius: 0 0 6px 6px;
	  }
	
	  .accordion-content p {
		margin: 12px 0;
		color: #555;
		line-height: 1.5em;
	  }
	
	  /* スマホ対応 */
	  @media screen and (max-width: 480px) {
		.accordion-button {
		  padding: 14px 16px;
		  font-size: 0.95em;
		}
		.accordion-content {
		  padding: 0 16px;
		}
	  }



/*代表挨拶*/
	  .representative-message {
		max-width: 800px;
		margin: 40px auto;
		padding: 30px 20px;
		font-family: 'Noto Sans JP', sans-serif;
		line-height: 1.8;
		color: #333;
		background-color: #ffffff; /* 背景を白に */
		border-radius: 10px;       /* 角を丸く */
		box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 軽い影で浮き上がる印象 */
	  }
	  
	  .representative-message h2 {
		font-size: 2em;
		font-weight: bold;
		text-align: center;
		margin-bottom: 30px;
		color: #2c3e50;
	  }
	  
	  .representative-message p {
		margin-bottom: 20px;
		font-size: 1.1em;
	  }
	  
	  .representative-message p:first-of-type {
		font-weight: 600;
	  }
	  
	  @media screen and (max-width: 600px) {
		.representative-message {
		  padding: 20px 15px;
		}
	  
		.representative-message h2 {
		  font-size: 1.5em;
		}
	  
		.representative-message p {
		  font-size: 1em;
		}
	  }


/*活動実績パート*/
	  .achievement {
		background: #f9f9f9;
		padding: 20px 20px;
		margin: 60px auto;
		max-width: 800px;
		border-radius: 8px;
	  }
	  .achievement h2 {
		text-align: center;
		font-size: 2rem;
		margin-bottom: 40px;
		color: #333;
	  }
	  .achievement-content {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 30px;
	  }
	  .achievement-text {
		flex: 1;
		min-width: 280px;
	  }
	  .achievement-text h3 {
		font-size: 1.4rem;
		margin-bottom: 15px;
		color: #444;
	  }
	  .achievement-text p {
		font-size: 1rem;
		line-height: 1.7;
		margin-bottom: 20px;
		color: #555;
	  }
	  .achievement-text .btn {
		display: inline-block;
		background: #007acc;
		color: #fff;
		padding: 10px 18px;
		text-decoration: none;
		border-radius: 5px;
		transition: background 0.3s;
	  }
	  .achievement-text .btn:hover {
		background: #005f99;
	  }
	  .achievement-image {
		flex: 1;
		min-width: 280px;
		text-align: center;
	  }
	  .achievement-image img {
		max-width: 100%;
		border-radius: 8px;
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	  }







/*リハくる注意書きパネル*/
	  .rehakuru-panel {
		background-color: #ffffff;
		border-radius: 20px;
		padding: 2px 2px;
		max-width: 900px;
		margin: 2px 2px 0;
		box-shadow: 0 4px 12px rgba(0,0,0,0.06);
	  }
	  
	  .rehakuru-panel-message p {
		margin: 0;
		text-align: center;
		font-size: 16px;
		line-height: 1.8;
		color: #333333;
	  }
	  
	  .rehakuru-panel-note {
		margin: 0px auto 40px;
		padding: 5px 0px;
	  }
	  
	  .rehakuru-panel-note p {
		margin: 0;
		font-size: 10px;
		color: #666666;
		text-align: center;
	  }
	  
	  @media screen and (max-width: 768px) {
		.rehakuru-panel {
		margin: 2px 2px 0;
		padding: 2px 2px;
		}
	  
		.rehakuru-panel-message p {
		font-size: 3px;
		}
	  }