/* ==================================================
  【案件ごとの調整パネル（ここだけ触る）】
  - セクション間の余白は section個別の margin-top で調整しない
    → 調整するなら :root の --hp-gap-section を変更する
  - 背景セクションの厚み（上下padding）を変えるなら --hp-pad-bg を変更する
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@600&display=swap');
:root {
	--primary: #26B6C6; /* メインカラー（濃いブルーグリーン） */
	--secondary: #52AAA0; /* サブカラー（ティールグリーン） */
	--third: #26B6C6; /* サブカラー（少し明るいブルーグリーン） */
	--4th: #28CFE2;/*アクセントカラー（ネオンライトブルー）*/
	--bg1: #FCE0AD; /* 背景（薄めのオレンジ） */
	--bg2: #F5F5F5; /* 背景（さらに薄めのオレンジ） */
	--bg3: #E4F2F0; /* 背景（薄めのブルー） */
	--bg4: #FAF7F4; /* 背景（クリーム） */
	--bg5: #DDF3FF;/*背景（お客様の声ブルー　１つめ*/
	--bg6: #F4FBFF;/*背景（お客様の声もっと薄いブルー　2つめ*/
	--bg7: #F8F8F8;/*背景（薄いグレー）*/
	--text: #6A5959; /* 本文テキスト（濃いブラウン） */
	--marker: #F9FF62; /* マーカー（イエロー） */
	--border: #26B6C6; /* 枠線 */
	--shadow: #c8c2be; /* シャドウ */
	--text_pink: #FF7891;/*ピンク*/
	--grad_pink: linear-gradient(360deg, rgb(255, 79, 112) 0.00%, rgb(255, 120, 145) 100.00%);/*グラデーション　ピンク*/
	--grad_pink02: radial-gradient(circle, #ff8fab 0%, #ff6b9d 40%, #f04e85 100%);/*グラデ　ピンク*/
	--gothic: 'Helvetica Neue', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, sans-serif;
	--mincho: '游明朝体', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;

  /* 単位辞書 */
	--hp-space__05: 0.5rem;
	--hp-space__10: 1rem;
	--hp-space__15: 1.5rem;
	--hp-space__20: 2rem;
	--hp-space__30: 3rem;
	--hp-space__40: 4rem;
	--hp-space__50: 5rem;
	--hp-space__60: 6rem;

  /* 用途 */
  --hp-gap__section: var(--hp-space__15);
  --hp-gap__stack: var(--hp-space__20);
  --hp-pad__section: var(--hp-space__30);

}

  /* 例）セクション間隔を詰める： 2.5rem / 広げる： 3.5rem など */
  /* --hp-gap-section: 3rem; */

  /* 例）背景セクションの上下padding */
  /* --hp-pad-bg: 3rem; */

.mt--01 {
	margin-top: -.1em!important;
}

/* ◆◆◆ 枠外背景 ◆◆◆ */
@media (min-width: 769px) {
	.l-wrapper {
		background: white;
	}
}
/* ◆◆◆ /枠外背景 ◆◆◆ */

/*body.home .l-main__body {
box-shadow: 0 0 4px #e6eae3;
}*/

img {
	display: block;
}


/* ◆◆◆ フォントサイズ ◆◆◆ */
/* このサイトに合う設定に調整 */
h2 {
	color: var(--text);
	font-size: clamp(1.6rem, 2.8vw, 2.3rem);
	min-height: 0;
	line-height: 1.6;
	padding: 0 0 1em;
}

h3 {
	color: var(--text);
	font-size: clamp(1.1rem, 2.2vw, 1.4rem);
	min-height: 0;
	margin-top: 3rem;
	padding: 0;
}

p, li, a {
	color: var(--text);
	font-size: clamp(1rem, 1.6vw, 1.3rem);
}

p {
	margin-bottom: 1rem;
}
/*文字少し小さく*/
.fs_s {
	font-size: .7em;
}
@media (max-width: 768px) {
.fs_s_sp {
	font-size: 1.2rem;
}

}
/*位置調整*/
.mb-1 {
	margin-bottom: 1em;
}
.mb-3 {
	margin-bottom: 3em;
}
.mt-1 {
	margin-top: 1em;
}
.mt-1r {
	margin-top: 1rem;
}
.mt--3 {
	margin-top: -3em;
}
/* ◆◆◆ /フォントサイズ ◆◆◆ */


/* ◆◆◆ 文字色 ◆◆◆ */
.text__orange {
	color: var(--primary);
	font-weight: 600;
}

.text__green {
	color: var(--secondary);
	font-weight: 600;
}

.text__light-orange {
	color: var(--third);
	font-weight: 600;
	margin-top: .5rem;
	display: inline-block;
}

.text__brown {
	color: var(--bold);
	font-weight: 600;
}

.text__yellow {
	color: var(--marker);
	font-weight: 600;
}
.text__pink {
	color: var(--text_pink);
	font-weight: 600;
}
.text__pink02 {
	color: var(--secondary);
	font-weight: bold;
}
/* ◆◆◆ /文字色 ◆◆◆ */


/* ◆◆◆ マーカー ◆◆◆ */
.marker {
	font-weight:bold;
	background: linear-gradient(transparent 60%, var(--marker) 60%);
}

.marker__blue {
	font-weight:bold;
	background: linear-gradient(transparent 60%, #C8E0DC 60%);
}
/* ◆◆◆ /マーカー ◆◆◆ */


/* ◆◆◆ 見出し ◆◆◆ */
h2.title__orange, h2.title__green, h2.title__light-orange {
	text-align: center;
	line-height: 1.4!important;
	padding-bottom: 0.5em;
}

/*両サイドにラインあり*/
h2.side_line_title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .2rem;
	color: var(--primary);
	text-align: center;
}

h2.side_line_title::before,
h2.side_line_title::after {
	content: "";
	flex: 1;
	height: 2px;
	background-color: var(--primary);
}

h2.side_line_title > span {
	display: inline-block;
	text-align: center;
	line-height: 1.5;
}

/*/両サイドにラインあり*/

h2.title__orange {
	border-bottom: solid 0.3rem var(--primary);
}

h2.title__green {
	color: #ffffff;
    background: linear-gradient(to bottom, #6FC1B8 0%, #52AAA0 100%);
    padding-block: 0.8em;
}

h2.title__light-orange {
	border-bottom: solid 0.3rem var(--third);
}

p.sub-title__orange {
	color: white;
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
	font-weight: 600;
	text-align: center;
	background: var(--third);
	padding: 0.5em;
	margin-top: 1em;
}

p.sub-title__orange span {
	color: #F9FF62;
}

/*ブルーグラデーション見出し*/
.title__blue_gradation {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, #00bcd4, #008c94);
  padding: 20px;
  color: white;
  margin: 0;
  font-size: 28px; 
}
.title__blue_gradation br {
  display: block;
  content: '';
}
  .title__blue_gradation--beauty .line2 {
	  font-size: 0.7em;
      }

/*美容整体ページのみ*/
@media (max-width: 768px) {
  .title__blue_gradation--beauty {
    flex-direction: column;
  }
  .title__blue_gradation--beauty .line2 {
    font-size: 0.7em;
  }
}
/* ◆◆◆ /見出し ◆◆◆ */


/* ◆◆◆ 背景 ◆◆◆ */
.section__inner-ivory {
	background: var(--bg4);
	border-radius: 2rem;
	box-shadow: 0 0 0.5rem var(--shadow);
	padding-block: 3em;
}

.section__inner-light-green {
	background: #FDFDF4;
	border-radius: 2rem;
	box-shadow: 0 0 0.5rem var(--shadow);
	padding-block: 3em;
}

.section__inner-light-gray {
	background: #F8F8F8;
	border-radius: 1rem;
	box-shadow: 0 0 0.5rem var(--shadow);
	padding-block: 1em;
}
/* ◆◆◆ /背景 ◆◆◆ */


/* ◆◆◆ ヘッダー ◆◆◆ */
.bo-header__right-box-info p { /*診療時間など文字数に合わせて調整*/
	color: var(--text);
	font-size: clamp(0.8rem, 1.4vw, 0.9rem);
}
/* ◆◆◆ /ヘッダー ◆◆◆ */


/* ◆◆◆ グロナビ ◆◆◆ */
.l-headerUnder {
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #FAFAFA 50%, #FAFAFA 100%);
	border-top: solid 1.5px #BFBFBF;
	border-bottom: solid 1.5px #BFBFBF;
}

.l-headerUnder .c-gnav a {
	font-size: clamp(1rem, 1.2vw, 1.2rem);
}

.c-gnav__li {
    border-right: solid 1px #BFBFBF;
}

.c-gnav__li:first-child {
    border-left: solid 1px #BFBFBF;
}

/*副項目のフォントカラー　*/
.sub-menu .__mainText {
	color: white;
}



/* ↓↓1列にする場合は削除↓↓ */
.c-gnavWrap ul.c-gnav li ul.sub-menu {
	width: 400px;
	display: flex;
	flex-wrap: wrap;
}

.c-gnavWrap ul.c-gnav li ul.sub-menu li {
	width: 50%;
}
/* ↑↑1列にする場合は削除↑↑ */

.menu-item-402 > a::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    position: relative;
    top: -10px;
    right: -63%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #26B6C6;
    vertical-align: middle;
}
.menu-item-432 > a::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    position: relative;
    top: -10px;
    right: -60%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #26B6C6;
    vertical-align: middle;
}
.c-gnav .sub-menu {
    background: var(--primary);
    color: #fff;
    text-align: left;
    visibility: hidden;
}
.c-gnav__depth1:before {
    background-color: var(--primary);
    bottom: 100%;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 50% 60%);
    clip-path: polygon(0 100%, 100% 100%, 50% 60%);
    content: "";
    height: 1em;
    left: calc(50% - .5em);
    position: absolute;
    width: 1em;
    z-index: 1;
}

/* クリック時に上向きに回転 */
.menu-item-402.is-open > a::after {
  transform: rotate(180deg);
}
/* ◆◆◆ /グロナビ ◆◆◆ */


/* ◆◆◆ サイドバー ◆◆◆ */
/*サイドバー　アクセス*/
h4.side__box-name {
	color: brown;
	font-size: 1.4rem;
	margin-block: 0.5em;
}

.side__box h4 {
	color: var(--black);
	font-size: 1.2rem;
	margin-bottom: 0.3em;
}

.side__box-address {
	font-size:1.1rem;
}

.side__phone {
	position: relative;
	color: var(--third);
	font-size: clamp(1.3rem, 2vw, 1.5rem)!important;
	font-weight: 800;
	padding-left: 1em;
	font-family: 'Lato', sans-serif;
}

.side__phone:before {
	position: absolute;
	content: "";
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/tel_icon-1.webp);
	background-size: cover;
	width: .9em;
	height: .9em;
	top: 0.25em;
	left: 0;
}

.side__box-reserve {
	color: white;
	display: inline-block;
	background: orange;
	border-radius: 0.4rem;
	padding-inline: 1em;
	margin-block: 0.5em;
}

.side__box dt, .side__box dd, .side__box p {
	font-size: 1rem;
}

.side__box dl:last-of-type dd {
	margin-bottom: 1.2em;
}

.side__contact__btn {
	margin-bottom: 0.2em;
}

.side__contact__btn:last-of-type {
	margin-bottom: 0;
}

.side__contact__btn img:hover {
	opacity: 0.6;
}
/* ◆◆◆ /サイドバー ◆◆◆ */


/* ◆◆◆ こんなにも根本改善 ◆◆◆ */
.fine {

}

.fine__inner {
	border: solid 0.2rem var(--secondary);
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2025/07/fine-bg.webp);
	background-size: cover;
}

p.fine__sub-title {
	color: var(--bold);
	text-align: center;
	font-size: clamp(1.1rem, 2.2vw, 1.9rem);font-weight: 600;
	margin-bottom: 0;
}

.home .p-fine__sub-title,
.front-page .p-fine__sub-title {
    padding-top: 1em;
}

h2.fine__title {
	position: relative;
	color: var(--secondary);
	text-align: center;
}

h2.fine__title:before, h2.fine__title:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	background: var(--secondary);
	height: 0.1rem;
	width: 12%;
	top: 30%;
}

h2.fine__title:before {
	left: -0.1rem;
}

h2.fine__title:after {
	right: -0.1rem;
}


p.fine__message {
	font-size: clamp(1.7rem, 2.9vw, 2.7rem);
	text-align: center;
	font-weight: 600;
	line-height: 1.3;
	background: rgba(255,255,255,0.6);
	padding: 0.8em;
}

.fine__message-small {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.fine__img-box {
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
  gap: 0.5em;
}

.fine__img-box figure {
	width: calc((100% - 1.5em) / 4);
	/* width: calc((100% - 1em) / 3);  ←3列の場合*/
	box-sizing: border-box;
	object-fit: cover;
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.fine__img-box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ◆◆◆ /こんなにも根本改善 ◆◆◆ */


/* ◆◆◆ 推薦 ◆◆◆ */
.recommend {
}

p.recommend_text_full {
    padding: 0 1.5em 1em;
    text-align: justify;
    clear: both;
}

.ricommend_ol_list {
    list-style-type: none;
    counter-reset: list-counter;
    padding-left: 0;
	overflow: hidden;
}
.ricommend_ol_list li {
    counter-increment: list-counter;
    padding-left: 2em;
    text-indent: -2em;
	font-size: 1.2rem;
}
.ricommend_ol_list li::before {
    content: "(" counter(list-counter) ") ";
}

.recommend__list {
    list-style: none;
    padding: 0;
    margin-top: 2em;
}
.recommend__list-item {
    border: solid var(--third);
    border-radius: 1em;
    margin-bottom: 1em;
}
.recommend__list .recommend__list-item:last-child {
    margin-bottom: 0;
}
.recommend__list-inner {
    padding: 1em 1.5em 0;
    overflow: hidden;
}
.recommend__list-title {
    color: var(--third);
    text-align: center;
    background: var(--bg2);
    padding-block: 1em;
    margin-top: 1em;
}
.recommend__list-img {
    float: left;
    width: 38%;
	min-width: 160px;
    margin: 0 1.2em 0.5em 0;
}
.recommend__list-img img {
    width: 100%;
    height: auto;
    display: block;
}
.recommend__list-name {
    background: var(--bg2);
    padding: 0.9em 1em;
    line-height: 1.4;
    overflow: hidden; /* ← 追加：float画像に被らず右側に収まる */
    display: block;
}
p.recommend__list-name {
    margin-bottom: 1rem;
}

/* ◆◆◆ スマホ：縦並び ◆◆◆ */
@media (max-width: 600px) {
    .recommend__list-img {
        float: none;
        width: 100%;
        margin: 0 0 1em 0;
    }
}
/* ◆◆◆ /推薦 ◆◆◆ */

/* ◆◆◆ こんな方におすすめ ◆◆◆ */
.nayami {
	margin-top: var(--hp-space__30);
}
ul.recommendation_list,
ul.nayami_list,
ul.nayami_list_atama,
ul.nayami_list_kata,
ul.nayami_list_zakotsu {
	margin: 0;
	padding: 1em 1em 1em 2em;
	background: var(--bg7);
	position: relative;
	box-shadow: 2px 2px 2px #c8c2be;
}

ul.recommendation_list::after {
	position: absolute;
    content: "";
    width: 170px;
    height: 200px;
    background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/03/osusume.webp);
    background-size: cover;
    bottom: -20px;
    right: -20px;
    z-index: 100;
}
ul.nayami_list::after {
	position: absolute;
    content: "";
    width: 170px;
    height: 200px;
    background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/diet_nayami_img.webp);
    background-size: cover;
    bottom: -20px;
    right: -20px;
    z-index: 100;
}

ul.recommendation_list li,
ul.nayami_list li,
ul.nayami_list_atama li,
ul.nayami_list_kata li,
ul.nayami_list_zakotsu li {
	list-style: none;
	position:relative;
	padding-left: 1.4em;
}
ul.recommendation_list li::before,
ul.nayami_list li::before,
ul.nayami_list_atama li::before,
ul.nayami_list_kata li::before,
ul.nayami_list_zakotsu li::before {
	position: absolute;
	content: "";
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2025/12/check.webp)no-repeat;
	background-size: cover;
	width: 25px;
	height: 25px;
	top: 5px;
	left: 0;
}
ul.recommendation_list span {
	font-size: 1rem;
}

/*悩み　頭痛 画像部分*/
ul.nayami_list_atama::after {
	position: absolute;
    content: "";
    width: 170px;
    height: 200px;
    background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/nayami_atama_img.webp);
    background-size: cover;
    bottom: -20px;
    right: -20px;
    z-index: 100;
}

/*悩み　四十肩五十肩 画像部分*/
ul.nayami_list_kata::after {
	position: absolute;
    content: "";
    width: 170px;
    height: 200px;
    background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/kata_nayami_img.webp);
    background-size: cover;
    bottom: -20px;
    right: -20px;
    z-index: 100;
}

/*悩み　坐骨神経痛 画像部分*/
ul.nayami_list_zakotsu::after {
	position: absolute;
    content: "";
    width: 170px;
    height: 200px;
    background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/zakotsu_nayami_img.webp);
    background-size: cover;
    bottom: -20px;
    right: -20px;
    z-index: 100;
}
/* ◆◆◆ /こんな方におすすめ ◆◆◆ */



/* ◆◆◆ 私たちも推薦します ◆◆◆ */


/* 基本は非表示、トップページのみ表示
.recommend-img {
    display: none;
}
.home .recommend-img {
    display: block;
}*/

.recommend-img {
	/*margin-top: 2.5em;*/
}

.recommend-img__inner {
	border: solid 0.2rem var(--secondary);
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2025/07/fine-bg.webp);
	background-size: cover;
	margin-bottom: 0.3em;
}

h2.recommend-img__title {
	text-align: center;
	line-height: 1.5;
	background: rgba(255,255,255,0.6);
	padding: 0.8em;
}

.recommend-img__title-small {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.recommend-img__img-box {
  display: flex;
  flex-wrap: wrap;
  padding: 1em;
  gap: 0.5em;
}

.recommend-img__img-box div {
	width: calc((100% - 1.5em) / 4);
	/* width: calc((100% - 1em) / 3);  ←3列の場合*/
	box-sizing: border-box;
	object-fit: cover;
	display: block;
}

.recommend-img__img-box div figure {
  aspect-ratio: 2 / 2.3;
  overflow: hidden;
}

.recommend-img__img-box div figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommend-img__img-box div p {
	font-size: clamp(0.5rem, 1.2vw, 1rem);
	color: white;
	text-align: center;
	line-height: 1.4;
	background: var(--secondary);
	padding: 0.4em 0.2em;
	margin-bottom: 0;
}

.recommend-img__img-box div p span {
	font-size: 85%;
}
/* ◆◆◆ /私たちも推薦します ◆◆◆ */


/* ◆◆◆ 喜びの声 ◆◆◆ */
.voice {
	background: white;
}

.c-postContent .voice:first-of-type {
	margin-top: 2em;
}

.voice__inner {
	margin-bottom: 3em;
}

p.voice__not-pro {
	position: relative;
	font-size: clamp(1.4rem, 2.8vw, 2.5rem);
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 3em;
}

p.voice__not-pro::after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	background: var(--secondary);
	width: 2em;
	height: 1.2em;
	bottom: -2em;
	left: 50%;
	transform: translatex(-50%);
}

p.voice__sub-title {
	color: var(--bold);
	text-align: center;
	font-weight: 600;
	font-size: clamp(1.2rem, 2.2vw, 1.9rem);
	margin-block: 2em 0;
}

h2.voice__title {
	position: relative;
	color: var(--third);
	text-align: center;
}

h2.voice__title:before, h2.voice__title:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	background: var(--third);
	height: 0.1rem;
	width: 25%;
	top: 25%;
}

h2.voice__title:before {
	left: -3rem;
}

h2.voice__title:after {
	right: -3rem;
}

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

li.voice__item,
li.voice__item02 {
	background: var(--bg5);
	border-radius: 1.2em;
	box-shadow: 0 0 4px #c8c2be;
	padding: 2.6rem 2.6rem 2.6rem 2.6rem;
	margin-top: 2em;
	margin-bottom: 2rem;
}
li.voice__item02 {
	background: var(--bg6);
}

li.voice__item:after,
li.voice__item02:after {
   content: "";
   display: block;
   clear: both;
}

figure.voice__item-img {
	float: left;
	width: 45%;
	padding: 0.4em 2em 0 0;
	margin: 0;
}

li.voice__item h3.voice__item-title {
	color: var(--third);
	margin: 0!important;
}
li.voice__item02 h3.voice__item-title {
	color: var(--third);
	margin: 0!important;
}

p.voice__item-meta {
	color: var(--third);
	font-size: clamp(0.9rem, 1.4vw, 1.1rem);
	margin: 0;
}

p.voice__item-text {
	line-height: 1.6;
	text-align: justify;
}

p.voice-note { 
	font-size: clamp(0.8rem, 1.1vw, 1rem);
	text-align: right;
	margin: 0;
}

.voice__more-btn {
	text-align: center;
}

.voice__more-btn a {
	position: relative;
	color: var(--primary);
	text-decoration: none;
	display: inline-block;
	background: white;
	border: solid 1px;
	border-radius: 0.6rem;
	padding: 0.5em 2em 0.5em 1.2em;
	margin-bottom: 0.3rem;
	box-shadow: 0 0.3rem var(--primary);
	transition: 0.6s;
}

.voice__more-btn a:hover {
	margin-top: 0.3rem;
	margin-bottom: 0;
	box-shadow: 0 0 var(--primary);
}

.voice__more-btn a:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: var(--primary);
	width: 0.8rem;
	height: 1.3rem;
	top: 50%;
	right: 1em;
	transform: translatey(-50%);
}

.is-lp .voice__item-text-box.lp-stack{
	gap: 0.8rem;
}
.black_line {
	color: black!important;
    padding: .5rem 0;
    margin-bottom: 1rem;
    margin-left: 45%;
}

.black_line_full {
	color: black!important;
    padding: .5rem 0;
    margin-bottom: 1rem;
}
/* ◆◆◆ /喜びの声 ◆◆◆ */


/*◆◆◆ 特徴 ◆◆◆ */
ol.features_list {
	margin-top: 2em;;
	padding: 1em 1em 1em 3em;
	background: var(--bg7);
	position: relative;
	box-shadow: 2px 2px 2px #c8c2be;
	position: relative;
}
ol.features_list::after {
	position: absolute;
    content: "";
    width: 250px;
    height: 250px;
    background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/03/tokucho.webp);
    background-size: cover;
    top: -20px;
    right: -20px;
    z-index: 100;
}
ol.features_list li {
	margin-bottom: 1.3em;
}
ol.features_list li:last-child{
	margin-bottom: 0;
}
/*◆◆◆ /特徴 ◆◆◆ */


/*◆◆◆ 当院との違い ◆◆◆ */
.difference {
}

.difference__title {
	display: flex;
	align-items: center;
	border-bottom: solid 4px var(--primary)
}

.difference__title figure, .difference__title-box {
	width: 50%;
}

.difference__title-box {
	text-align: center;
	padding-right: 7%;
}

.difference__title-box p {
	color: white;
	display: inline-block;
	background: var(--primary);
	border-radius: 2em;
	padding: 0.2em 1.5em;
	margin-block: 3em 1.6em;
}

.difference__title-box h2 {
	font-size: clamp(2rem, 4.2vw, 3.8rem);
	color: var(--primary);
	line-height: 1.2;
	padding-bottom: 0.5em;
}

.difference__title-box h2 span {
	color: var(--text);font-size: 80%;
}

/*比較表*/
ul.difference__items {
	list-style: none;
	padding: 0;
}

li.difference__item {
	text-align: center;
}

li.difference__item h3 {
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	color: var(--primary);
}

.difference__item-box {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-block: 0.5em;
}

.difference__item-box-item {
	flex: 0 0 calc((100% - 0.5em) / 2);
	background: #DDDDDD;
}

.difference__item-box-item:nth-of-type(2) {
	background: #FAF7F4;
}

.difference__item-box-item h4 {
	font-size: clamp(0.9rem, 1.8vw, 1.4rem);
	color: white;
	background: #6F6F6F;
	padding: 0.4em;
}

.difference__item-box-item:nth-of-type(2) h4 {
	background: var(--primary);
}

.difference__item-box-item p {
	font-weight: 600;
	padding: 1.5em 0.5em;
	margin-bottom: 0;
}

.difference__item-box-item:nth-of-type(2) p {
	color: var(--primary);
}
/*◆◆◆ /当院との違い ◆◆◆ */


/* ◆◆◆ メリット ◆◆◆ */
h2.merit__title {
	font-size: clamp(1.6rem, 4vw, 3.6rem);
	line-height: 1.3;
	padding-bottom: 0.6em;
}

.merit__title {
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2025/12/merit-img.webp);
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right;
	padding-top: 2.6em;
}

.merit__title span {
	color: var(--secondary);
	font-size: 120%;
	padding-right: 0.1em;
}

.merit__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8em;
}

.merit__list p {
	color: white;
	font-weight: 600;
	text-align: center;
	background: var(--secondary);
	flex: 0 0 calc((100% - 0.8em) / 2);
	padding: 0.3em;
	margin-bottom: 0;
}

.merit__list p:nth-of-type(1), .merit__list p:nth-of-type(4) {
	background: #688D88;
}
/* ◆◆◆ /メリット ◆◆◆ */


/* ◆◆◆ BA ◆◆◆ */
.ba {
	/*padding-block: 3rem 0.5em;
	margin-top: 1rem;*/
}

.ba__inner {}

p.ba__sub-title {
	color: var(--bold);
	text-align: center;
	font-weight: 600;
	font-size: clamp(1.2rem, 2.2vw, 1.9rem);
	margin-bottom: 0;
}

h2.ba__title {
	position: relative;
	color: var(--third);
	text-align: center;
}

h2.ba__title:before, h2.ba__title:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	background: var(--third);
	height: 0.1rem;
	width: 15%;
	top: 30%;
}

h2.ba__title:before {
	left: -3rem;
}

h2.ba__title:after {
	right: -3rem;
}

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

li.ba__item {
	background: white;
	padding: 1.5em 1.5em 0.1em;
}

.ba__item-img {
	position: relative;
	display: flex;
	gap: 1.5em;
}

.ba__item-img::before {
	position: absolute;
	content: "";
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2025/12/ba-arrow.webp);
	background-size: cover;
	width: 4em;
	height: 3em;
	top: 40%;
	left: 50%;
	transform: translatex(-50%);
	z-index: 1;
}

figure.ba__img {
	position: relative;
	flex: 0 0 calc((100% - 1.5em) / 2);
	margin: 0;
}

figure.ba__img:before {
	position: absolute;
	content: "BEFORE";
	font-size: clamp(1.6rem, 2.6vw, 2.4rem);
	color: white;
	text-align: center;
	background: var(--text);
	width: 100%;
	padding: 0.2em;
	bottom: 0;
}

figure.ba__img:last-of-type::before {
	position: absolute;
	content: "AFTER";
	background: var(--third);
}

p.ba__item-text {
	font-size: clamp(1.3rem, 1.8vw, 2.4rem);
	color: white;
	text-align: center;
	font-weight: 600;
	background: var(--text);
	padding: 1em;
	margin-block: 1em 0.2em;
}

p.ba__item-text span {
	color: #FFEB00;
}

.ba__item-note {
	text-align: right;
	font-size: 70%;
}

/* ◆◆◆ /BA ◆◆◆ */


/* ◆◆◆ オファー ◆◆◆ */
.offer {
	background: white;
	/*padding-bottom: 2em;
	margin: 4em 0 2em;*/
}

.offer p {
	font-weight: 600;
	display:block;
}

.offer {
	text-align: center;
	display:block;
}

h2.offer__title {
	color: white;
	background: var(--grad_pink);
	padding-block: .5em;
	margin-bottom: 1em;
	margin: 0 1em;
	display: block;
}

p.offer__price {
	position: relative;
	font-size: clamp(3.8rem, 9vw, 8.6rem);
	color: var(--text_pink);
	text-align: center;
	display: inline;
	padding-left: 1em;
	margin-bottom: 0;
	top: -50px;
}

p.offer__price span {
	font-size: 40%;
	padding-left: 0.3em;
}

p.offer__price:before {
	position: absolute;
	content: "";
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2026/03/1st.webp) no-repeat left top / cover;
	width: 1em;
	height:1em;
	top: 0.2em;
	left: -.2em;
}

p.offer__usually {
	font-weight: 700;
    margin-top: 1em;
    font-size: 1.7em;
}

p.offer__first-come {
	font-size: clamp(1.4rem, 2.8vw, 2.4rem);
}

p.offer__rest {
	font-size: clamp(2rem, 3.4vw, 3rem);
	color: var(--primary);
}
.offer_arrow {
	text-align: center;
}
.offer_arrow img {
	width: 10%;
	display: inline-block;
	height: auto;
}
p.offer__note {
    text-align: right;
    padding-right: 8em;
    font-size: .9rem;
    margin-bottom: 0;
    margin-top: -3em;
}
/* ◆◆◆ /オファー ◆◆◆ */


/* ◆◆◆ 支払い方法 ◆◆◆ */
p.payment__sub-title {
	color: var(--bold);
	text-align: center;
	font-size: clamp(1.2rem, 2.2vw, 1.9rem);font-weight: 600;
	margin-bottom: 0;
}

h2.payment__title {
	position: relative;
	color: var(--secondary);
	text-align: center;
}

h2.payment__title:before, h2.payment__title:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	background: var(--secondary);
	height: 0.1rem;
	width: 8%;
	top: 30%;
}

h2.payment__title:before {
	left: -0.1rem;
}

h2.payment__title:after {
	right: -0.1rem;
}

.payment__type p {
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	color: white;
	font-weight: 600;
	text-align: center;
	background: #AFA9A9;
	margin-bottom: 0;
}

.payment__type img {
	padding: 2em 4em;
}
/* ◆◆◆ /支払い方法 ◆◆◆ */


/* ◆◆◆ 問合 ◆◆◆ */
.is-hp .c-postContent > .hp-contact{
	margin-top: 0;
}

.hp-contact__btn {
	transition-duration: 0.6S;
	margin-bottom: 1rem;
}

/*基本：上下余白あり*/
.is-hp .hp-contact{
	padding-block: var(--hp-contact-pad);
}
/*上だけ詰める*/
.is-hp .hp-contact.is-top-tight{
	padding-top: var(--hp-contact-tight);
}
/*下だけ詰める*/
.is-hp .hp-contact.is-bottom-tight{
	padding-bottom: var(--hp-contact-tight);
}

.hp-contact__btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	transition-property: all;
	transition-duration: 0.6S;
}
/* ◆◆◆ /問合 ◆◆◆ */


/* ◆◆◆ アクセス ◆◆◆ */
.mt--no {
	margin-top: -5em;
}
.access {
	margin-top: var(--hp-space__50);
}
.access__inner {}

h2.access__title {
	text-align: center;
}

.access figure {
	margin: 2em 0 1.5em;
}

table.access__table {
	margin-bottom: 2em;
}

table.access__table th {
	color: var(--4th)!important;
	background: var(--bg5)!important;
	text-align: center;
	vertical-align:middle;
}

table.access__table th, table.access__table td {
	color: var(--text);
	font-size: clamp(1rem, 1.8vw, 1.4rem);
	border: solid 1px var(--4th);
}

/*アクセスページだけh2を非表示*/
/*.page-id-124 h2.access__title {
  display: none!important;
}*/

/*アクセスページだけh2を配置調整*/
.mt--01 {
  margin-top: -.1em;
}
/* ◆◆◆ /アクセス ◆◆◆ */


/* ◆◆◆ メディア掲載<追加用> ◆◆◆ */
.media {
	/*margin-top: 4em;*/
}

.media__img {
  display: flex;
  flex-wrap: no-wrap;
  gap: 0.5em;
}
/* ◆◆◆ /メディア掲載<追加用> ◆◆◆ */


/* ◆◆◆ 当院について<追加用> ◆◆◆ */
.about {
	/*margin-top: 2em;*/
}

.about figure, .about .iframe-wrapper {
	margin-top: 2em;
}
/* ◆◆◆ 当院について<追加用> ◆◆◆ */


/* ◆◆◆ 流れ ◆◆◆ */
ul.flow__items {
    list-style: none;
	border-left: solid 1.5px var(--4th);
    padding-left: 2.5em;
}

li.flow__item .flow__content {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    margin-top: 0.5em;
}

li.flow__item h3 {
    font-size: clamp(0.8rem, 2vw, 3rem);
    color: var(--4th);
    position: relative;
}

li.flow__item figure {
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
}

li.flow__item figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

li.flow__item h3::before {
    position: absolute;
    content: "";
    width: 2.2em;
    height: 2.2em;
    left: -2.5em;
    top: 50%;
    transform: translatey(-50%);
	background-size: contain;
    background-repeat: no-repeat;
	background-image: var(--step-img);
}

li.flow__item:nth-child(1) {
	--step-img:url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/STEP01.webp); 
}

li.flow__item:nth-child(2) {
	--step-img:url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/STEP02.webp); 
}

li.flow__item:nth-child(3) {
	--step-img:url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/STEP03.webp); 
}

li.flow__item:nth-child(4) {
	--step-img:url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/STEP04.webp); 
}

li.flow__item:nth-child(5) {
	--step-img:url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/STEP05.webp); 
}

li.flow__item:nth-child(6) {
	--step-img:url(https://nao-sekkotsuin.com/wp-content/uploads/2026/04/STEP06.webp); 
}


li.flow__item figure.flow__img {
    width: 40%;
    flex-shrink: 1;
}

li.flow__item p {
    width: 60%;
    text-align: justify;
    line-height: 1.6;
    color: var(--text);
}
/* ◆◆◆ /流れ ◆◆◆ */


/* ◆◆◆ 先生の紹介<追加用> ◆◆◆ */
.message h2 {
	margin: 0 0 1.5em;
}

figure.message__img {
	width: 40%;
	position: relative;
}

figure.message__img {
	display: block;
	margin: 0 auto;
	margin-bottom: 1em;
}
figure.message__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

p.message__img_name {
	display: block;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.5;
    opacity: 1;
    text-align: center;
    margin-bottom: .5em;
	text-align: center;
}

.message p:last-child {
	margin-bottom: 0;
}
/* ◆◆◆ /先生の紹介<追加用> ◆◆◆ */


/* ◆◆◆ cf7（必要な場合は使用） ◆◆◆ */
.contact__form {
	background: ivory;
	padding: 3em 5em;
	width: 100%;
}

.contact__form p {
	margin-bottom: 0!important;
}

.contact__form-item {
	margin-bottom: 2em;
}

.contact__label-required, .contact__label-any  {
	font-size: 75%;
	color: white;
	padding: 3px 6px 2px;
	border-radius: 1rem;
	margin-right: 0.5em;
}

/*必須ラベル*/
.contact__label-required {
	background: brown;
}

/*任意ラベル*/
.contact__label-any {
	background:gray;
}

.contact__consent {
	margin: 3em 0;
}

.contact__consent ul {
	line-height: 1.6;
}

.contact__consent ul li {
	font-size: clamp(0.7rem, 1.2vw, 1rem);
}

.contact__consent p {
	font-size: 94%;
}

.contact__personal-info {
	margin: 0;
	padding: 0;
	border: solid 2px #e9e9e9;
	border-radius: 0.5rem;
	padding: 1em;
	line-height: 1.3;
	overflow: auto;
	text-align: left;
	height: 10rem;
}

.wpcf7-submit {
	background: orange;
	border-radius: 0.5rem;
	padding: 1em 2em;
	margin-top: 3em;
	transition: 0.6s;
}

.wpcf7-submit:hover {
	opacity: 0.7;
	box-shadow: 2px 2px 2px gray;
}

textarea, input {
	background: white;
	width: 100%;
	box-shadow: 0 0 2px #c8c2c6;
}

span.wpcf7-list-item-label {
	font-size: clamp(0.9rem, 1.4vw, 1.2rem);
}

.contact__consent-check input {
	width: 2rem;
}
/* ◆◆◆ /cf7（必要な場合は使用） ◆◆◆ */


/* ◆◆◆ フッターボタン ◆◆◆ */

/*PCでも表示させる場合は下記を削除*/
.footer__contact .pc {
	display: none;
}
/*PCでも表示させる場合は上記を削除*/

.footer__contact {
	position: fixed;
	bottom: 0.5em;
	right: 1em;
	width: 400px;
	z-index: 10;
}

/*1つの場合*/
.footer__contact-btn1 {
	transition: 0.6s;
}

.footer__contact-btn1:hover {
	transform: scale(1.05,1.05);
}

/*2つの場合*/
.footer__contact-btn2 {}
.footer__btn2-item img {
	display:block; 
}

.footer__btn2-item {
	transition: 0.6s;
	margin-bottom: 1.6em;
}

.footer__btn2-item:hover {
	transform: scale(1.05,1.05);
}
/* ◆◆◆ /フッターボタン ◆◆◆ */


/* ◆◆◆ フッター ◆◆◆ */
.c-postContent {
    padding-bottom: 4em;
}

.bo-footer {
	background: var(--bg5);
}

.bo-footer__title h2 {
	color: var(--bold);	
}

.bo-footer__list li a {
	color: var(--text);
}

.l-footer__foot {
	background: var(--bg5);
}

p.c-copyright {
	color: var(--text);
}
/* ◆◆◆ /フッター ◆◆◆ */


/* ◆◆◆ 下層ページ ◆◆◆ */
body.page:not(.home) .l-content__body {
	margin-top: 0em;
}

/* FV */
.fv figure {
	margin: 0;
}

/* ページタイトル */
.p-archive__title p.c-pageTitle__main, p.bo-page-title {
	font-size: clamp(1.8rem, 2.8vw, 2.3rem);
	font-weight: 600;
	padding: 0.7em 0 0!important;
	border-bottom: solid 3px var(--third);
}

p.bo-page-title {
	margin-bottom: 2em;
}

.p-archive__title p.c-pageTitle__main:first-letter, p.bo-page-title:first-letter {
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	color: var(--third);
}
/* ◆◆◆ /下層ページ ◆◆◆ */


/* ◆◆◆ 症状ページ ◆◆◆ */
/* ◆◆◆ なぜこんなにも ◆◆◆ */
.shojo-why {
	/*margin-top: 4em;*/
}

/* ◆◆◆ お悩み ◆◆◆ */
.problem {
	position:relative;
}

.problem__inner {
	position:relative;
	margin-bottom:3em;
}

h2.problem__title {
	position: relative;
	color: var(--text);
	text-align: center;
}

h2.problem__title span {
	color: var(--secondary);
}

h2.problem__title:before, h2.problem__title:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	background: var(--secondary);
	height: 0.1rem;
	width: 17%;
	top: 30%;
}

h2.problem__title:before {
	left: 0;
}

h2.problem__title:after {
	right: 0;
}

ul.problem__items {
	padding: 1.5em 3em 1.5em 3.5em;
	background:#F8F8F8;
	box-shadow: 2px 2px 4px #c8c2be;
	position:relative;
}

.problem__img {
	position: absolute;
	width: 22%;
	height: auto; 
	aspect-ratio: 3 / 4; 
	bottom: -1em;
	right: 2em;
	z-index: 1;
}

.problem__img::before {
    content: "";
    position: absolute;
    /* top/left/right/bottomをすべて0にすると、親のサイズにピッタリ重なります */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #00acc1;
    /* translateで「自分のサイズの数％分」ずらす指定がズレにくくてオススメ */
    translate: -0.5em 0.5em; 
    z-index: -1;
}

.problem__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* 下の隙間防止 */
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
}


@media (max-width: 1280px){
	
.problem__img {
    position: absolute;
		width: 20%;
		right: 2%;
	}
	
	ul.problem__items {
		padding: 1.5em 2em 1.5em 2.5em;
	}
}

@media (max-width: 1150px){
	.problem__img {
		position: absolute;
		width: 18%;
		right: 1.5%;
	}
}


@media (max-width: 1120px){
	.problem__img {
		display: none;
	}
}
	


.problem__items li {
	position: relative;
	font-size: clamp(1.1rem, 1.8vw, 1.2rem);
	list-style: none;
	padding-left: 2em;
	margin: 0.5em 0;
}

.problem__items li span {
	font-size:1rem;
}

.problem__items li:before {
	position: absolute;
	top: 5px;
	left: 0;
	content: "";
	background: url(https://nao-sekkotsuin.com/wp-content/uploads/2025/12/check.webp);
	background-size: cover;
	width: 1.5rem;
	height: 1.5rem;
}

p.problem__message {
	position: relative;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	text-align: center;
	font-weight: 600;
	line-height: 1.6;
	margin-top: 2em;
}

p.problem__message::after {
    position: absolute;
    content: "";
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: var(--secondary);
    width: 2em;
    height: 1.2em;
    bottom: -2em;
    left: 50%;
    transform: translatex(-50%);
}

p.problem__message span {
	color: var(--secondary);
}
/* ◆◆◆ /お悩み ◆◆◆ */


/*症状の説明*/
.shojo-contents {
	/*margin-block: 5em 6em;*/
	counter-reset: shojocontent;
}

p.shojo-contents__sub-title {
	color: var(--bold);
	text-align: center;
	font-weight: 600;
	font-size: clamp(1.2rem, 2.2vw, 1.9rem);
	margin-block: 0;
}

h2.shojo-contents__title {
	position: relative;
	color: var(--third);
	text-align: center;
	padding-bottom: 0;
}

h2.shojo-contents__title::before, h2.shojo-contents__title::after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	background: var(--third);
	height: 0.1rem;
	width: 20%;
	top: 20%;
}

h2.shojo-contents__title::before {
	left: -3rem;
}

h2.shojo-contents__title::after {
	right: -3rem;
}

.shojo-contents__item {}

h3.shojo-contents__item-title {
	position: relative;
	color: white;
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
	background: var(--third);
	padding: 0.8em 1em 0.8em 3em;
	margin-top: 1.6em;
}

.shojo-contents__item h3.shojo-contents__item-title::before {
	position: absolute;
	content:counter(shojocontent, decimal-leading-zero);
	counter-increment:shojocontent;
	top: 50%;
	left: 1.2em;
	transform: translatey(-50%);
}

figure.shojo-contents__item-img {
	aspect-ratio: 2 / 1;
	overflow: hidden;
	margin-top: 1.6em;
}

figure.shojo-contents__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shojo-contents__item-text {
	text-align: justify;
	margin-top: 1em;
}



/* ◆◆◆ /症状ページ ◆◆◆ */

/* ◆◆◆ 当院のダイエット施術について ◆◆◆ */
:root {
	--about-bg: var(--white, #fff);
	--about-text: var(--text, #555);
	--about-accent: var(--pink, #ff7f9f);
	--about-title-bg: var(--light-blue, #dff1ff);
	--about-marker: var(--yellow, #ffe44d);
}
.about_sejyutsu_diet {
	margin-top: var(--hp-space__20);
}
.about_sejyutsu__inner {
	padding-top: 3em;
}
.about_sejyutsu {
	background: var(--about-bg);
}

.about_sejyutsu__items {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.about_sejyutsu__item {
	margin: 0;
	padding: 0;
}

/* 見出し */
.about_sejyutsu__title {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .2em .4em;
	margin: 0 0 1rem;
	padding: .45em 1em;
	border-radius: 999px;
	background: var(--about-title-bg);
	color: var(--text);
	font-size: clamp(1.5rem, 1.6vw, 2.3rem);
	font-weight: 700;
	line-height: 1.4;
}

.about_sejyutsu__num {
	color: var(--text);
	font-weight: 700;
	line-height: 1;
}

.about_sejyutsu__title-text {
	line-height: 1.4;
}

.text__pink {
	color: var(--about-accent);
}

/* 本文 */
.about_sejyutsu__text {
	margin: 0;
	color: var(--about-text);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	font-weight: 500;
	line-height: 1.9;
	letter-spacing: .02em;
}

/* マーカー */
.about_sejyutsu__text .marker {
	background: linear-gradient(transparent 60%, var(--about-marker) 60%);
}

/* SP */
@media (max-width: 767px) {
	.about_sejyutsu__items {
		gap: 1.5rem;
	}

	.about_sejyutsu__title {
		display: inline-flex;
		padding: .5em .8em;
		font-size: 1.25rem;
		border-radius: 1.5em;
	}

	.about_sejyutsu__text {
		font-size: 1rem;
		line-height: 1.8;
	}
}
/* ◆◆◆ /当院のダイエット施術について ◆◆◆ */


/* ◆◆◆ 対応症状リスト ◆◆◆ */
.shojo {}

ul.shojo__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	list-style: none;
	gap: 1.5em;
	width: 100%;
	padding: 0 0 3em 0;
	margin: 0;
}

ul.shojo__list li{
	text-align: center;
	flex: 1 1 calc(33.333% - 1.5em);
	max-width: calc(33.333% - 1em);
	margin-bottom: 0;
}

ul.shojo__list li a {
	color: white;
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	text-decoration: none;
	border-radius: 0.5rem;
	background: -moz-linear-gradient(bottom, #00bcd3, #008d96);
	background: -webkit-linear-gradient(bottom, #00bcd3, #008d96);
	background: linear-gradient(to top, #00bcd3, #008d96);
	display: block;
	padding: 0.6em;
	transition: 0.6s;
}

ul.shojo__list li a:hover {
	opacity: 0.6;
}
/* ◆◆◆ /対応症状リスト ◆◆◆ */


/* ◆◆◆　はじめての方へ ◆◆◆ */
/*院内紹介*/
.clinic-img {
}
.clinic-img__box {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin-top: 2em;
}

.clinic-img__box > figure {
	flex: 0 0 calc((100% - 1em) / 3);
	box-sizing: border-box;
}

.clinic-img__box img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover; 
	display: block;
}

/*推薦画像のみ*/
.first_incho_img {
  padding: 2rem 1rem;
}

.incho_img_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.incho_img_item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

@media (max-width: 600px) {
  .incho_img_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
	
}
/* ◆◆◆　/はじめての方へ ◆◆◆ */


/* ◆◆◆ 料金ページ ◆◆◆ */
table.price__list {
	margin-block: 2em;	
}

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

ul.price__items li.price__item {
	margin: 3em 0 5em;
}

ul.price__items li.price__item:last-child {
	margin: 3em 0 0;
}

table.price__list th, table.price__list td {
	border: solid 1px var(--secondary)!important;
	text-align: center;
	vertical-align:middle;
}

table.price__list th {
	background: var(--bg3);
	font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.price__list td {
	font-size: clamp(1.3rem, 2vw, 1.5rem);
}
/* ◆◆◆ /料金ページ ◆◆◆ */


/* ◆◆◆ 執筆者情報 ◆◆◆ */
.writer {
	background-color: var(--bg6);
	border: 1px solid var(--4th);
}

/* ◆◆◆ /執筆者情報 ◆◆◆ */


/* ◆◆◆ よくある質問 ◆◆◆ */
.qa-list {
	padding: 2em 0;
}
.qa-list dt, .qa-list dd {
	position: relative;
	font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.qa-list dt {
	margin-bottom: 1rem;
	padding: 0 0 1rem 4rem;
}

.qa-list dd {
	padding: 0 0 0 4rem;
}

.qa-list dt:before, .qa-list dd:before {
	position: absolute;
	font-size: clamp(1.1rem, 1.8vw, 1.6rem);
	color: white;
	top: 0;
	left: 0;
	width: 2.9rem;
	vertical-align: middle;
	text-align: center;
}

.qa-list dt:before {
	content: "Q";
	background: var(--primary);
	border-radius: 0.5rem;
}

.qa-list dd:before {
	content: "A";
	border: solid 1px var(--primary);
	background-color: #ffffff;
	color: var(--primary);
	border-radius: 0.5rem;
}
/* ◆◆◆ よくある質問 ◆◆◆ */

/*◆◆◆ 初めての方へ ◆◆◆*/
.intro-wrap {
    overflow: hidden; /* floatの高さ崩れ防止 */
    line-height: 1.8;
    font-size: 15px;
    padding: 2em 0;
  }
  .intro-img {
    float: right;
    width: 340px;
    margin-left: 2rem;
    margin-bottom: 1rem;
  }
  .intro-img img {
    width: 100%;
    border-radius: 8px;
    display: block;
  }
  .intro-text p {
    margin: 0 0 1rem;
	  text-align: justify;
  }
  .intro-text ul {
    margin: 0 0 1rem 1.2rem;
    padding: 0;
  }
  .intro-text ul li {
    margin-bottom: 0.4rem;
  }
.first__genin_text {
	
}
.first__genin_text figure {
	margin-top: 2em;
}
.first__genin_text p {
    padding-top: 1em;
    text-align: justify;
}
.first_text {
	padding-block: 3em;

}
.first_text p {
	font-size: clamp(1.1rem, 1.8vw, 2rem);
	font-weight: bold;
}

  /* スマホ：float解除して縦並び */
  @media (max-width: 600px) {
    .intro-img {
      float: none;
      width: 100%;
      margin-left: 0;
    }
  }

/*施術リストボタン*/
.sejyutu_list {
  text-align: center;
  padding: 3rem 2rem;
  background: #f0f0f0;
}

.sejyutu_title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #333;
  margin: 0;
}

.sejyutu_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sejyutu_btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #FF7891;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none!important;
  background: transparent!important;
}

.sejyutu_btn:hover {
  background: #FF7891!important;
  color: #fff!important;
}

@media (max-width: 768px) {
  .sejyutu_btn_wrap {
    flex-direction: column;
    align-items: center;
  }

  .sejyutu_btn {
    width: 80%;
    text-align: center;
	border-radius: 2rem; 
  }
}
/*◆◆◆ /初めての方へ ◆◆◆*/

/* ◆◆◆ 投稿 ◆◆◆ */
body.single .c-postContent p {
    margin-bottom: 1.3rem;
}

.news-col figure {
	margin-block: 2em;
}

.bo-credit {
	margin-top: 6em;
}

.bo-credit p, .bo-credit a {
	font-size: 0.7rem;
	color: #d4dcda;
}

.post__cta .inner {
	padding: 0;
}
/* ◆◆◆ 投稿 ◆◆◆ */


/* ◆◆◆ 投稿記事下CTA ◆◆◆ */
.post__cta {
	padding-bottom: 2em;
	margin: 0 0 2em;
}
/* ◆◆◆ /投稿記事下CTA ◆◆◆ */


/* ◆◆◆ パンくず ◆◆◆ */
li.p-breadcrumb__item {
	margin-bottom: 0;
}
/* ◆◆◆ /パンくず ◆◆◆ */


/* ◆◆◆ アーカイブ ◆◆◆ */
/* ◆◆◆ /アーカイブ ◆◆◆ */







/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */
/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ TB ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */
/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

@media (max-width: 1024px) {
	/* ◆◆◆ ハンバーガーメニュー ◆◆◆ */
	/*ボタン背景色*/
	.l-header__drawerBtn {
		background: var(--primary);
		border-radius: 3px;
	}
	
	/*ボタン３本線*/
	.c-iconBtn__icon {
		color: white;
	}
	/* ◆◆◆ ハンバーガーメニュー ◆◆◆ */
	
	/* ◆◆◆ ドロワーメニュー ◆◆◆ */	
	.p-drawer {
        background: var(--bg5);
    }
	/*メニューの文字*/
	.c-drawerNav__a {
		color: #444;
	}
	.p-drawer__close {
		margin: 1rem auto .5em;
		color: #444;
	}
	/*メニュードロップダウンの文字*/
	.c-drawerNav__a .__mainText {
        color: #444;
    }
	/*お悩み*/
	ul.problem__items {
    padding: 1.5em 3em 1.5em 2.5em;
   }
	
ul.problem__items:after {
	background:none;
}
}


/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */
/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ SP ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */
/* ◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆◆ */

@media (max-width: 768px) {
	body.home .l-main__body {
		margin-top: 0!important;
	}
	
	.c-postContent {
		padding-bottom: 0;
	}
	
	h2 {
		line-height: 1.4;
	}
	
	/* ◆◆◆ 背景 ◆◆◆ */
	.section__inner-ivory {
		padding-block: 1.5em;
	}
	
	.section__inner-light-green {
		padding-block: 1.5em;
	}
	/* ◆◆◆ /背景 ◆◆◆ */
	
	/* ◆◆◆ 見出し ◆◆◆ */
	h2.side_line_title {
		font-size: clamp(1.3rem, 2.8vw, 2.3rem);
	}
	/* ◆◆◆ /見出し ◆◆◆ */
	
	/* ◆◆◆ こんな方におすすめ ◆◆◆ */
	ul.recommendation_list {
		padding: 1em;
	}
	ul.recommendation_list li::before {
		width: 20px;
		height: 20px;
		top: 2px;
		left: -2px;
	}
	.recommendation__inner {
		margin-bottom: 2em;
	}
	ul.recommendation_list::after {
		width: 150px;
		height: 160px;
		bottom: -120px;
		right: -20px;
		display: none;

	}
	/* ◆◆◆ /こんな方におすすめ ◆◆◆ */

	
	/* ◆◆◆ こんなにも根本改善 ◆◆◆ */
	.fine {}
	
	h2.fine__title {
		line-height: 1.3;
		padding: 0.6em;
		padding-top: 0;
	}

	h2.fine__title:before, h2.fine__title:after {
		display: none;
	}

	.fine__img-box {
		padding: 0.5em;
	}

	.fine__img-box figure {
		margin-bottom: 0.2em;
	}
	/* ◆◆◆ /こんなにも根本改善 ◆◆◆ */


	/* ◆◆◆ 喜びの声 ◆◆◆ */
	.voice {
		/*padding-bottom: 0;
		margin-top: 1em;*/
	}
	
	.voice__inner {
		margin-bottom: 1.5em;
	}
	
	p.voice__sub-title {
		margin-block: 3em 0;
	}
	
	h2.voice__title:before, h2.voice__title:after {
		display: none;
	}
	
	li.voice__item {
		padding: 1.5em 1.5em 0.6em 1.5em;
		margin-bottom: 1em;
	}
		li.voice__item02 {
		padding: 1.5em 1.5em 0.6em 1.5em;
		margin-bottom: 1em;
	}

	figure.voice__item-img {
		width: 100%;
		padding: 0 0 0.5em 0;
	}
	
	p.voice-note { 
		text-align: left;
	}
	.black_line {
    	margin-left: 0;
	}
	/* ◆◆◆ /喜びの声 ◆◆◆ */
	
	
	/*推薦*/
	.ricommend_ol_list {
    	list-style-type: none;
		margin-bottom: 1em;
	}
	.ricommend_ol_list li {
		font-size: .9rem;
	}
	p.recommend__list-name {
		margin-bottom: 1rem;
		text-align: center;
	}
	
	/* ◆◆◆ 特徴 ◆◆◆ */
	ol.features_list::after {
    width: 150px;
    height: 150px;
	}
	/* ◆◆◆ /特徴 ◆◆◆ */
	
	
	/*◆◆◆ 当院との違い ◆◆◆ */
	.difference {
	/*margin-block: 1em 2em;*/
	}
	
	.difference__title-box {
		text-align: center;
		padding-right: 4%;
	}

	.difference__title-box p {
		padding: 0.2em 1.5em;
		margin-block: 1em 1em;font-size: 80%;
	}

	/*比較表*/
	li.difference__item h3 {
		margin-top: 1em;
	}

	.difference__item-box {
		display: block;
	}

	.difference__item-box-item {
	margin-bottom: 0.5em;
	}

	.difference__item-box-item p {
		padding: 1em 0.5em;
	}
	/*◆◆◆ /当院との違い ◆◆◆ */
	
	
	/* ◆◆◆ メリット ◆◆◆ */
	.merit__list {
		gap: 0.4em;
	}

	.merit__list p {
		flex: 0 0 calc((100% - 0.4em) / 2);
	}
	/* ◆◆◆ /メリット ◆◆◆ */
	
	
	/* ◆◆◆ BA ◆◆◆ */
	.ba {
	/*padding-block: 0rem 0.5em;*/
	}
	
	li.ba__item {
		padding: 0;
		margin-bottom: 1em;
	}
	
	h2.ba__title:before, h2.ba__title:after {
		width: 25%;
	}
	
	.ba__item-img {
		gap: 0.8em;margin-bottom: 1em;
	}
	
	figure.ba__img {
		flex: 0 0 calc((100% - 0.8em) / 2);
	}
	
	p.ba__item-text {
		margin-block: 0.5em 0.2em;
	}
	/* ◆◆◆ /BA ◆◆◆ */
	
	
	/* ◆◆◆ オファー ◆◆◆ */
	.offer {
		/*padding-bottom: 1em;
		margin: 1em 0 0;*/
	}
	
	.offer figure {
		margin-top: 1em;
	}

	.offer__text {
		margin-top: 0.6em;
	}
	h2.offer__title {
		color: white;
		background: var(--grad_pink);
		padding-block: .5em;
		margin-bottom: 1em;
		display:inline-block;
		margin: 0 1em;
		padding: .5em 2em;
	}
    p.offer__note {
        text-align: center;
        padding-right: 5em;
        font-size: .9rem;
        margin-bottom: 0;
        margin-top: -4em;
    }
	.offer_arrow {
		text-align: center;
		top: -18px;
		position: relative;
	}
	/* ◆◆◆ /オファー ◆◆◆ */
	
	
	/* ◆◆◆ 支払い方法 ◆◆◆ */
	.payment__type img {
		padding: 1em;	
	}
	/* ◆◆◆ /支払い方法 ◆◆◆ */
	
	
	/* ◆◆◆ 問合 ◆◆◆ */
	.contact {
		/*margin-top: 1em;*/
	}
	
	.contact__btn {
		display: block;
		padding-inline: 10%;
		margin-bottom: 0.3em;
	}

	.contact__btn-item {
		width: 100%;
	}
	/* ◆◆◆ /問合 ◆◆◆ */

	
	/* ◆◆◆ アクセス ◆◆◆ */
	body.home .access,　body.front-page .access {
		margin-block: 1em;
	}
	
	.access figure {
		margin: 1.3em 0 0;
	}
	
	table.access__table {
		margin: 0.5em 0 1em;
	}
	
	table.access__table th {
		border: none;
	}
		
	table.access__table td {
		border: none;
		border-bottom: solid 1px var(--4th);
	}
		
	table.access__table tr:last-child td {
		border-bottom: none;
	}
	
	table.access__table th, table.access__table td {
		text-align: center;
		display: block;
		width: 100%;
	}

	table.access__table {
		border: none;
		border: solid 1px var(--4th);
	} 
	/* ◆◆◆ /アクセス ◆◆◆ */
	
	
	/* ◆◆◆ お悩み ◆◆◆ */
	.problem {
		/*margin-block: 3em 5em;*/
	}
	
	.problem img {
		width: 75%;
        margin: 0 auto 2rem auto;
	}
	
	.problem__inner {
		padding-block: 0;
		margin-bottom:0;
	}
	h2.problem__title:before, h2.problem__title:after {
		display: none;
	}
	ul.problem__items {
		padding: 1.5em;
	}
	ul.problem__items li {
		padding-left: 2em;
	}
	.problem__items li:before {
		width: 1.2rem;
		height: 1.2rem;
		top: 0.3rem;
		left: 0.2rem;
	}
	/* ◆◆◆ /お悩み ◆◆◆ */
	
	/* ◆◆◆ 当院について<追加用> ◆◆◆ */
	.about figure, .about .iframe-wrapper {
		margin-top: 1em;
	}
	/* ◆◆◆ 当院について<追加用> ◆◆◆ */
	
	/* ◆◆◆ 流れ ◆◆◆ */
    ul.flow__items {
        padding-left: 1.5em;
		margin-left: 0.5em;
    }	
	
	li.flow__item {
		padding-right: 0.5em;
	}
	
	li.flow__item .flow__content {
        flex-direction: column;
        gap: 1em;
        margin-top: 0.5em;
    }
	
	li.flow__item h3 {
        font-size: clamp(1.4rem, 2vw, 3rem);
        padding-left: 1em;
		margin-top: 1em;
    }
	
	 li.flow__item h3::before {
        width: 2em;
        height: 2em;
        left: -2em;
    }
	
    li.flow__item figure.flow__img {
        width: 100%;
        margin-top: 0.5em;
    }
	
    li.flow__item p {
        width: 100%;
        text-align: justify;
        line-height: 1.6;
        color: var(--text);
    }
	/* ◆◆◆ /流れ ◆◆◆ */
	
	
	/* ◆◆◆ 院長メッセージ<追加用> ◆◆◆ */
	.message h2 {
		margin: 0 0 1em;
	}
		figure.message__img {
		width: 70%;
		position: relative;
	}
	/* ◆◆◆ /院長メッセージ<追加用> ◆◆◆ */
	

	/* ◆◆◆ フッターボタン ◆◆◆ */
	.footer__contact {
		bottom: 0;
		right: 0;
		width: 100%;
	}

	/*1つの場合*/
	.footer__contact-btn1 {
		transition: 0.6s;
	}

	/*2つの場合*/
	.footer__contact-btn2 {
		display: flex;
		align-items: flex-end;
		}

	.footer__btn2-item {
		width: 50%;
		padding: 0.1em;
		margin-bottom: 0;
	}
	/* ◆◆◆ フッターボタン ◆◆◆ */
	
	.entry_title {
		padding-inline: 5%;
	}
	

	/* ◆◆◆ 下層ページタイトル ◆◆◆ */
	p.bo-page-title {
		margin-bottom: 1em;
	}
	
	.p-archive__title p.c-pageTitle__main, p.bo-page-title {
		padding: 0!important;
	}
	/* ◆◆◆ /下層ページタイトル ◆◆◆ */

	
	/* ◆◆◆ 対応症状リスト ◆◆◆ */
	ul.shojo__list {
		gap: 1em;
	}

	ul.shojo__list li{
		text-align: center;
		flex: 1 1 calc(50% - 0.5em);
		max-width: calc(50% - 0.5em);
	}

	ul.shojo__list li a {
		padding: 0.5em;
	}
	/* ◆◆◆ /対応症状リスト ◆◆◆ */
	
	
	/* ◆◆◆　はじめての方へ ◆◆◆ */
	.clinic-img__box > figure {
		flex: 0 0 calc((100% - 0.5em) / 2);
	}
	/* ◆◆◆　/はじめての方へ ◆◆◆ */
	

	/* ◆◆◆　料金P ◆◆◆ */	
	ul.price__items li.price__item {
		margin: 3em 0;
	}
	/* ◆◆◆　/料金P ◆◆◆ */
	
	
	/* ◆◆◆ 症状ページ ◆◆◆ */
	.why {
		/*margin-top: 1.2em;*/
	}
	
	.why__sub-title {
		line-height: 1.4;
		padding: 0.5em;
	}

	h3.why__title {
		line-height: 1.2;
		padding: 0.6em 1em;
	}
	

	.why__text p {
		text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF,  0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
	}
	
	.shojo-why {
		margin-top: 2em;
	}
	
	.shojo-contents {
		/*margin-block: 3em 4em;*/
	}
	
	p.shojo-contents__sub-title {
		margin-block: 0;
	}
	/* ◆◆◆ /症状ページ ◆◆◆ */
	
	
	/* ◆◆◆ Q&A ◆◆◆ */
	.qa-list dt:before, .qa-list dd:before {
		width: 2rem;
	}
	/* ◆◆◆ /Q&A ◆◆◆ */
	
	/* ◆◆◆ cf7（必要な場合は使用） ◆◆◆ */
	.contact__form {
		padding: 2em 5%;
	}

	.contact__form-item {
		margin-bottom: 1em;
	}

	.contact__consent {
		margin: 2em 0;
	}

	.wpcf7-submit {
		margin-top: 2em;
	}

	.contact__consent-check input {
		width: 1.2em;
	}
	/* ◆◆◆ /cf7（必要な場合は使用） ◆◆◆ */
	
	
	/* ◆◆◆ BA（必要な場合は使用）◆◆◆ */
	.ba {
		/*margin-top: 3em;*/
	}
	
	li.ba__item {
		margin-bottom: 2em;
	}
	/* ◆◆◆ /BA（必要な場合は使用） ◆◆◆ */
	
	
	/* ◆◆◆ 流れ-01 文章あり縦並び（必要な場合は使用）◆◆◆ */
	.flow__01 {
		/*margin-top: 3em;*/
	}

	.flow__01 li.flow__item {
		padding: 1.5em 1.5em 0.4em;
		margin-bottom: 2em;
	}

	.flow__01 li.flow__item figure {
		width: 100%;
		float: none;
		padding-left: 0;
		margin-top: 0.9em;
	}
	/* ◆◆◆ /流れ-01 文章あり縦並び（必要な場合は使用） ◆◆◆ */
	
	/* ◆◆◆ お悩みリスト ◆◆◆ */
		ul.nayami_list::after,
	ul.nayami_list_atama::after,
	ul.nayami_list_kata::after,
	ul.nayami_list_zakotsu::after {
			display: none;
	}
	ul.recommendation_list li::before, ul.nayami_list li::before,
	ul.nayami_list_atama li::before,
	ul.nayami_list_kata li::before,
	ul.nayami_list_zakotsu li::before{
		width: 20px;
		height: 20px;
		top: 3px;
		left: -1px;
	}
	/* ◆◆◆ /お悩みリスト ◆◆◆ */
	
	/*執筆者情報　画像*/
	.writer__img img {
		padding-bottom: 1rem;
	}
	/*spでのハンバーガーメニューで擬似要素の三角形やじるし（グリーン）非表示*/
	.menu-item-402 > a::after {
		display: none;
	}
	.menu-item-432 > a::after {
		display: none;
	}
	
}

/*料金ページここから*/
/* =========================
   PRICE PAGE ONLY
   scope: .price
========================= */

.price {
  --price-c-text: #26B6C6;
  --price-c-muted: #666;
  --price-c-line: #e7e7e7;
  --price-c-bg: #f8f7f4;
  --price-c-white: #fff;

  --price-c-primary: #3c6e71;
  --price-c-primary-light: #edf6f6;

  --price-c-secondary: #7c5c3b;
  --price-c-secondary-light: #f8f1ea;

  --price-c-accent: #c78b7a;
  --price-c-accent-light: #fcf1ee;

  --price-c-highlight: #556b8d;
  --price-c-highlight-light: #eef3fb;

  --price-c-banner-start: #28CFE2;
  --price-c-banner-end: #26B6C6;

  --price-shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
  --price-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --price-radius-sm: 12px;
  --price-radius-md: 18px;
  --price-radius-lg: 24px;
  --price-max-width: 1120px;
	
	--primary: #26B6C6; /* メインカラー（濃いブルーグリーン） */
	--secondary: #52AAA0; /* サブカラー（ティールグリーン） */
	--third: #26B6C6; /* サブカラー（少し明るいブルーグリーン） */
	--4th: #28CFE2;/*アクセントカラー（ネオンライトブルー）*/
	--bg1: #FCE0AD; /* 背景（薄めのオレンジ） */
	--bg2: #F5F5F5; /* 背景（さらに薄めのオレンジ） */
	--bg3: #E4F2F0; /* 背景（薄めのブルー） */
	--bg4: #FAF7F4; /* 背景（クリーム） */
	--bg5: #DDF3FF;/*背景（お客様の声ブルー　１つめ*/
	--bg6: #F4FBFF;/*背景（お客様の声もっと薄いブルー　2つめ*/
	--bg7: #F8F8F8;/*背景（薄いグレー）*/
	--text: #6A5959; /* 本文テキスト（濃いブラウン） */
	--marker: #F9FF62; /* マーカー（イエロー） */
	--border: #26B6C6; /* 枠線 */
	--shadow: #c8c2be; /* シャドウ */
	--text_pink: #FF7891;/*ピンク*/
	--grad_pink: linear-gradient(360deg, rgb(255, 79, 112) 0.00%, rgb(255, 120, 145) 100.00%);/*グラデーション　ピンク*/

	--gothic: 'Helvetica Neue', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, sans-serif;
	--mincho: '游明朝体', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
}

.price *,
.price *::before,
.price *::after {
  box-sizing: border-box;
}

.price img,
.price svg {
  max-width: 100%;
  height: auto;
}
.price {
	padding-bottom: 1em!important;
}

.price .page-wrapper {
  width: min(100% - 32px, var(--price-max-width));
  margin-inline: auto;
  padding: 1em 0 0;
  color: var(--price-c-text);
}

.price .page-header {
  text-align: center;
  margin-bottom: 0px;
}

.price .page-header__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--price-c-primary-light);
  color: var(--price-c-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.price .page-header__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--price-c-text);
	padding: 0;
}

.price .page-header__title strong {
  font-weight: 700;
}

.price .page-header__note {
  margin: 14px 0 0;
  color: var(--price-c-muted);
  font-size: 14px;
  line-height: 1.8;
}

.price .first-banner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
  padding: 28px;
	background: linear-gradient(135deg, var(--price-c-banner-start), var(--price-c-banner-end));
  color: #fff;
  box-shadow: var(--price-shadow-md);
}

.price .first-banner__text {
  font-size: 15px;
  line-height: 1.9;
}

.price .first-banner__text strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.5;
}

.price .first-banner__prices {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.price .first-banner__price-item {
  min-width: 160px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--price-radius-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  text-align: center;
}

.price .first-banner__price-item .label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.price .first-banner__price-item .amount {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.price .section {
  margin-bottom: 56px;
}

.price .section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.price .section-head__icon {
  width: 18px;
  height: 56px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.price .section-head__icon--primary {
  background: linear-gradient(180deg, #26B6C6, var(--price-c-primary));
}

.price .section-head__icon--secondary {
  background: linear-gradient(180deg, #28CFE2, var(--bg3));
}

.price .section-head__icon--highlight {
  background: linear-gradient(180deg, #DDF3FF, var(--price-c-highlight));
}

.price .section-head__body {
  flex: 1 1 auto;
  min-width: 180px;
}

.price .section-head__category {
  margin-bottom: 4px;
  color: var(--price-c-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price .section-head__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  font-weight: 700;
}

.price .section-head__badge {
  margin-left: auto;
}

.price .card-grid-4,
.price .card-grid-2 {
  display: grid;
  gap: 24px;
}

.price .card-grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price .card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price .price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--price-c-line);
  border-radius: var(--price-radius-md);
  background: var(--price-c-white);
  box-shadow: var(--price-shadow-sm);
}

.price .price-card--secondary {
  background: linear-gradient(180deg, #fff 0%, var(--price-c-secondary-light) 100%);
  border-color: #eadcca;
}

.price .price-card--accent {
  background: linear-gradient(180deg, #fff 0%, var(--price-c-accent-light) 100%);
  border-color: #f0d7d0;
}

.price .price-card--highlight {
  background: linear-gradient(180deg, #fff 0%, var(--price-c-highlight-light) 100%);
  border-color: #d9e3f3;
}

.price .price-card--featured {
  position: relative;
  overflow: hidden;
}

.price .card-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.price .card-tag--primary {
  background: var(--price-c-primary-light);
  color: var(--price-c-primary);
}

.price .card-tag--secondary {
  background: var(--price-c-secondary-light);
  color: var(--price-c-secondary);
}

.price .card-tag--accent {
  background: var(--price-c-accent-light);
  color: var(--price-c-accent);
}

.price .card-tag--highlight {
  background: var(--price-c-highlight-light);
  color: var(--price-c-highlight);
}

.price .card-title {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--price-c-text);
}

.price .card-desc {
  margin: 0 0 20px;
  color: var(--price-c-muted);
  font-size: 14px;
  line-height: 1.9;
}

.price .card-desc ul {
  margin: 0;
  padding-left: 1.2em;
}

.price .card-desc li {
  margin-top: 8px;
  font-size: clamp(1rem, 1.6vw, 1.1rem) !important;
}

.price .card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.price .badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 92, 59, 0.12);
  color: var(--price-c-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.price .price-box {
  margin-top: auto;
  padding: 18px 18px 16px;
  border-radius: var(--price-radius-sm);
  background: #f7f7f7;
  border: 1px solid #ececec;
}

.price .price-box__label {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--price-c-muted);
  letter-spacing: 0.04em;
}

.price .price-box__amount {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--price-c-text);
}

.price .price-box__amount .yen {
  font-size: 0.7em;
  margin-right: 2px;
}

.price .price-box__amount--contact {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.price .summary-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--price-radius-lg);
  background: var(--price-c-bg);
  border: 1px solid var(--price-c-line);
}

.price .summary-footer__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--price-shadow-sm);
}

.price .summary-footer__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--4th);
}

.price .summary-footer__title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.4;
}

.price .summary-footer__text {
  margin: 0;
  color: var(--price-c-muted);
  font-size: 14px;
  line-height: 1.9;
}

.price .summary-footer__prices {
  min-width: 220px;
}

.price .summary-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--price-c-line);
}

.price .summary-price-row:last-child {
  border-bottom: 0;
}

.price .summary-price-row .label {
  font-size: 14px;
  color: var(--price-c-muted);
}

.price .summary-price-row .amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--price-c-text);
}

/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .price .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price .first-banner {
    grid-template-columns: 1fr;
  }

  .price .summary-footer {
    grid-template-columns: 1fr;
  }

  .price .summary-footer__prices {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .price .page-wrapper {
    width: min(100% - 24px, var(--price-max-width));
    padding-top: 40px;
  }

  .price .section {
    margin-bottom: 44px;
  }

  .price .section-head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }

  .price .section-head__icon {
    width: 12px;
    height: 44px;
  }

  .price .section-head__badge {
    margin-left: 0;
  }

  .price .card-grid-4,
  .price .card-grid-2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .price .price-card {
    padding: 20px;
  }

  .price .first-banner {
    padding: 20px;
    margin-bottom: 44px;
  }

  .price .first-banner__prices {
    flex-direction: column;
    align-items: stretch;
  }

  .price .summary-footer {
    padding: 20px;
    gap: 18px;
  }

  .price .summary-footer__icon {
    width: 56px;
    height: 56px;
  }

  .price .summary-footer__title {
    font-size: 20px;
  }
}

/*料金ページここまで*/

/* ◆◆◆ 改行 ◆◆◆ */
br.sp {
  display: none !important;
}
br.pc {
  display: inline !important;
}

@media (max-width: 768px) {
  br.sp {
    display: inline !important;
  }
  br.pc {
    display: none !important;
  }
}
/* ◆◆◆ /改行 ◆◆◆ */
