:root {
	--red: #b7282e;
	--pink: #BB757A;
	--blue: #007bbb;	
	--yellow: #ffd900;
	--black: #444444;
	--gothic: 'Helvetica Neue', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, sans-serif;
	--mincho: '游明朝体', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
}

/* ◆◆◆ 枠外背景 ◆◆◆
@media (min-width: 769px) {
	.l-wrapper {
		overflow: hidden;
		background-image:url(http://xs986046.xsrv.jp/arkhe_hp/wp-content/uploads/2025/07/bk.webp);
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-size: cover;
	}
} */
/* ◆◆◆ /枠外背景 ◆◆◆ */


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

h3 {
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	min-height: 0;
	margin-top: 3rem;
	padding: 0;
	border: none;
}

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

p {
	margin-bottom: 2rem;
}
/* ◆◆◆ /フォントサイズ ◆◆◆ */


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

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


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

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


/* ◆◆◆ ヘッダー ◆◆◆ */
.bo-header__right-box-info p { /*診療時間など文字数に合わせて調整*/
	font-size: 1.1rem;
}

.bo-header__right-box {
    width: 60%;
    padding-left: 0%;
}
.bo-header__right-box-contact {
  display: flex;
  justify-content: space-between;
  gap: 1.5em; 
}

.bo-header__right-box-contact-item img {
	transition: transform .6s;
}

.bo-header__right-box-contact-item img:hover {
    transform: scale(1.1);   /* 少し大きくする */
}


/* ◆◆◆ /ヘッダー ◆◆◆ */


/* ◆◆◆ グロナビ ◆◆◆ */
.l-headerUnder {
	background: ;
}
/* ◆◆◆ /グロナビ ◆◆◆ */



/* ===========================
   サイドバー
=========================== */
.side__box-name {
	color: brown;
	font-size: 1.4rem;
	margin-block: 0.5em;
}
h4.side__box-time {
	color: var(--pink);
	font-size: 1.2rem;
	margin-block: 0.5em;
}
h4.side__box-name {
	color: var(--pink);
	font-size: 1.5rem;
	margin-bottom: 0.3em;
}

.side__box-address {
	font-size: 1.1rem;
	margin-bottom: 0.5em;
	color: #BB757A;
}

.side__box-reserve {
	color: #BB757A;
	display: inline-block;
	font-size: 1.8rem;
	margin-bottom: 0;
}

.side__box dt,
.side__box dd {
		color: #BB757A;
	font-size: 1.1rem;
}

.side__box dt {
	font-weight: 600;
	color: #BB757A;
}

.side__contact__btn {
	margin-bottom: 0.2em;
	transition: 0.6s;
}

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

.side__contact__btn:hover {
	opacity: 0.6;
}


.side__box,
.widget_nav_menu {
	border: none !important;
	box-shadow: none !important;
	margin-bottom: 2em;
}

.side__box {
  background: transparent !important;
}

.side__box-inner {
  width: calc(100% - 2rem);
  margin: 1rem auto;
}

.c-widget__title.-side,
.c-widget h3,
.side__box h3 {
	font-size: 1.4rem;
	text-align: center;
	background: #BB757A !important;
	margin: 0 !important;
	padding: 0.6em 1em;
	color: #fff !important;
	font-weight: bold;
	letter-spacing: 0.05em;
}

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

.widget_nav_menu li {
	position: relative;
	border: none !important;
	border-bottom: 1px dotted #BB757A !important; /* ピンク点線 */
}

.widget_nav_menu li:last-child {
	border-bottom: none !important;
}

.widget_nav_menu li a {
	display: block;
	color: #BB757A;
	font-size: 1.1rem;
	text-decoration: none;
	padding: 0.9em 2.2em 0.9em 1em;
	transition: background 0.3s ease;
}

.widget_nav_menu li a:hover {
	background: #f9f5f5;
}

/* ===========================
   矢印マーク
=========================== */
.widget_nav_menu li::after {
	position: absolute;
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	border-top: 2px solid #BB757A;
	border-right: 2px solid #BB757A;
	transform: rotate(45deg);
	top: 50%;
	right: 1.2rem;
	translate: 0 -50%;
}

/* ===========================
   レスポンシブ対応
=========================== */
@media (max-width: 1024px) {
	.side__box,
	.widget_nav_menu {
		margin: 1.5em auto;
		width: 90%;
	}

	.widget_nav_menu li a {
		font-size: 1rem;
		padding: 1em;
	}

	.widget_nav_menu li::after {
		right: 0.8rem;
	}
}



/* ◆◆◆ FV ◆◆◆ */
/*下層P*/
.fv figure {
	margin: 0;
}
/* ◆◆◆ /FV ◆◆◆ */


/* ◆◆◆ オファー ◆◆◆ */
.offer {
	margin-top: 3em;
}

.offer figure {
	margin: 0;
}
.offer figure img {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}


/* ◆◆◆ /オファー ◆◆◆ */


/* ◆◆◆ 問合 ◆◆◆ */
/* 
.contact {
	margin-top: 0em;
  background-color: #fdf8ef;
  padding: 3em 0; 
}

.contact__btn {
	margin-bottom: 0em;
}

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



/* 強調テキスト（色違い） */
.text__red {
  color: #c87177;
  font-weight: 600;
}

.text__blue {
  color: #6c8db1;
  font-weight: 600;
}

/* マーカー風の強調 */
.marker__yellow {
  background: linear-gradient(transparent 60%, #fff6b2 60%);
  font-weight: 600;
}

.marker__pink {
  background: linear-gradient(transparent 60%, #fde0e0 60%);
  font-weight: 600;
}


/* ◆◆◆ /お悩み ◆◆◆ */


/* ◆◆◆ 喜びの声 ◆◆◆ */
/*
.voice {
	background: #F5EBE8;
	padding-block: 3em;
	margin-top: 4em;
}

.voice__inner {}

h2.voice__title {
	text-align: center;
}

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

li.voice__item {
	background: #eaf4fc;
	padding: 2.6rem 2.6rem 0.6rem 2.6rem;
	margin-bottom: 2rem;
}

li.voice__item: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 {
	margin: 0!important;
}

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

p.voice__item-text {
	line-height: 1.6;
	text-align: justify;
}
*/
/* ◆◆◆ /喜びの声 ◆◆◆ */


/* ◆◆◆ BA ◆◆◆ */
.ba {
	background: linear-gradient(to bottom, #f8f4e6, #f2f2c2);
	padding-block: 3rem;
	margin-top: 4rem;
}

.ba__inner {}

h2.ba__title {
	text-align: center;
}

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

.ba__item:before {
	content: "CASE " counter(ba, decimal-leading-zero);
	counter-increment: ba;
	color: #89c3eb;
	font-size: clamp(1.6rem, 2.4vw, 2rem);
}

li.ba__item {
	background: white;
	padding: 1.5em 1.5em 0.1em;
	margin-bottom: 2em;
}

.ba__item-img {
	display: flex;
	justify-content: space-between;
}

figure.ba__img {
	width: 49%;
	margin: 0;
}

h3.ba__item-title {
	text-align: center;
	margin: 0.3em 1em 0.2em;
}

p.ba__item-meta {
	color: gray;
	text-align: center;
	font-size: clamp(0.9rem, 1.5vw, 1.2rem);
	margin-bottom: 0.5em;
}

p.ba__item-text {
	text-align: justify;
	margin-bottom: 2em;
}
/* ◆◆◆ /BA ◆◆◆ */


/* ◆◆◆ 理由 ◆◆◆ */
/*
.reason {
	background: linear-gradient(to bottom, #f8f4e6, #f2f2c2);
	padding-block: 3em;
	margin-top: 4em;
}

.reason__inner {}

h2.reason__title {
	text-align: center;
}

ul.reason__items {
	counter-reset: reason;
	list-style: none;
	padding: 0;
	margin: 0;
}

li.reason__item {
	background: white;
	padding: 3em 2em 0.1em;
	margin-bottom: 2em;
}

li.reason__item h3{ 
	margin-top: 0;
}

li.reason__item h3:before {
	content: "理由" counter(reason, decimal-leading-zero);
	counter-increment: reason;
	color: #89c3eb;
	font-size: clamp(1.6rem, 2.4vw, 2rem);
}

li.reason__item figure {
	padding-block: 1.2em;
}

.reason__item p {
	margin-bottom: 2em;
}*/
/* ◆◆◆ /理由 ◆◆◆ */


/* ◆◆◆ 流れ-01 文章あり縦並び ◆◆◆ */
/*
.flow__01 {
	background: linear-gradient(to bottom, #f8f4e6, #f2f2c2);
	padding-block: 3em;
	margin-top: 4em;
}

.flow__01 h2.flow-title {
	text-align: center;
}

.flow__01 .flow__inner {}

.flow__01 ul.flow__items {
	counter-reset: flow;
	list-style: none;
	padding: 0;
	margin: 0;
}

.flow__01 li.flow__item {
	background: white;
	padding: 2em 2em 0.5em;
	margin-bottom: 2em;
}

.flow__01 li.flow__item:last-of-type {
	margin-bottom: 0;
}

.flow__01 li.flow__item:after {
	content:'';
    display: block; 
	clear: both;
}

.flow__01 li.flow__item h3 {
		margin-top: 0;
}

.flow__01 li.flow__item h3:before {
	content: "流れ" counter(flow, decimal-leading-zero);
	counter-increment: flow;
	color: #89c3eb;
	font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.flow__01 li.flow__item figure {
	width: 40%;
	float: right;
	padding-left: 3em;
	margin-top: 0.4em;
}
 */
/* ◆◆◆ /流れ-01 文章あり縦並び ◆◆◆ */


/* ◆◆◆ 流れ-02 文章あり縦並び ◆◆◆ */
/* 
.flow__02 {
	background: linear-gradient(to bottom, #f8f4e6, #f2f2c2);
	padding-top: 3em;
	padding-bottom: 0.4em;
	margin-top: 4em;
}

.flow__02 h2.flow-title {
	text-align: center;
}

.flow__02 .flow__inner {}

.flow__02 ul.flow__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	counter-reset: flow;
	list-style: none;
	padding: 0;
	margin: 0;
}

.flow__02 li.flow__item {
	width: 33.3%;
	padding-inline: 1%;
	margin-bottom: 2.6em;
}

.flow__02 li.flow__item h3 {
	position: relative;
	font-size: clamp(0.8rem,1.5vw,1.2rem);
	text-align: center;
	line-height: 1.5;
	margin: 0;
}

.flow__02 li.flow__item h3:before {
	position: absolute;
	content: counter(flow, decimal-leading-zero);
	counter-increment: flow;
	color: #89c3eb;
	font-size: clamp(1.6rem, 2.4vw, 2rem);
	top: -1.3em;
	left: 50%;
	transform: translateX(-50%);
}

.flow__02 li.flow__item figure {
	width: 100%;
	margin: 0;
}

.flow__02 li.flow__item p {}
 */
/* ◆◆◆ /流れ-02 文章あり縦並び ◆◆◆ */




/* ◆◆◆ フッターボタン ◆◆◆ */
.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 {
	transition: 0.6s;
	margin-bottom: 1.6em;
}

.footer__btn2-item:hover {
	transform: scale(1.05,1.05);
}

.bo-footer__tap img {
    transition: transform .3s;
}

.bo-footer__tap img:hover {
    transform: scale(1.1);
}
/* ◆◆◆ /フッターボタン ◆◆◆ */


/* ◆◆◆ フッター ◆◆◆ */
.bo-footer {
	background: white;
}

.bo-footer__title h2 {
	color: #848484;	
}

.bo-footer__list li a {
	color: #BB757A;
}

.l-footer__foot {
	background: #BB757A;
}

p.c-copyright {
	color: white;
}
/* ◆◆◆ /フッター ◆◆◆ */


/* ◆◆◆ 下層ページ ◆◆◆ */
body.page:not(.home) .l-content__body {
	margin-top: 1em;
}
/*
.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 brown;
}

p.bo-page-title {
	margin-inline: 5%;
}

.p-archive__title p.c-pageTitle__main:first-letter, p.bo-page-title:first-letter {
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	color: brown;
}
*/

.p-archive__title p.c-pageTitle__main, p.bo-page-title { 
    font-size: clamp(2rem, 3.2vw, 2.6rem) !important;
    background: var(--pink);
    color: white;
}

/* ◆◆◆ /下層ページ ◆◆◆ */

 


/* ◆◆◆ 執筆者情報 ◆◆◆ */
.writer {
background-color: white;
    border: 1px solid var(--pink);
    padding-bottom: 2em;
    width: 90%;
    padding: 2em 6%;
margin: 3em auto;
}

figure.writer__img {
    margin: 17px;
}

@media (max-width: 900px) {
.writer {
      width: 90%;
   margin: 4em 1em;
}
}
/* ◆◆◆ /執筆者情報 ◆◆◆ */


/* ◆◆◆ 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 ◆◆◆ */


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

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

.qa-list dd {
	padding: 0 0 3rem 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.4rem;
	padding-block; 1em;
	vertical-align: middle;
	text-align: center;
}

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

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


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

.post__cta .inner {
	padding: 0;
}

.post__cta .reason {
	margin-bottom: 3em;
}
/* ◆◆◆ /投稿記事下CTA ◆◆◆ */


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


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


/*リニューアル記事*/

.bo-credit p {
	margin-top:60px;
	font-size:85%!important;
	color:gray;
}
.bo-credit {
	font-size:85%!important;
}
.bo-credit p a:hover {
opacity: 0.7;
}

.bo-credit a {
	color:gray;
	text-decoration:none;
	font-size: 1.3em;
}

.news-col {
	float: right;
	margin-left: 25px;
	width: 40%;
}

@media (max-width: 768px) {
	.blog-after {
		flex-wrap:wrap;
	}
	.blog-after-content {
		width:100%;
	}
	.news-col {
		width: 50%;
	}
}
/*　/リニューアル記事*/


/* ◆◆◆ TOPページお知らせリスト3件 ◆◆◆ */
.news {
	margin-top: 5em;
}

.news .heading-announce {
	padding-bottom: 0;
}

.custom-news-list-wrapper {}

.custom-news-item {
    display: flex; 
    align-items: flex-start;
    padding: 2em;
    margin: 0;
    list-style: none;
}

.custom-news-item:nth-child(2) {
    background: #F9F5EC;
}

.item-thumbnail {
    flex: 0 0 33%;
    width: 33%; 
    margin-right: 2%;
}
.item-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.item-text-content {
	flex-grow: 1; 
	width: 65%; 
	padding: 0 0 0 10px; 
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.item-title {
    order: 1;
    margin-top: 0;
    margin-bottom: 5px;
    line-height: 1.4;
}

h3.item-title a {
    font-size: clamp(1.2rem, 1.6vw,1.4rem);
}

.item-title a {
	color: var(--black);
	text-decoration: none;
}

.item-meta-wrapper {
    order: 2;
    display: flex;
    align-items: center; 
    font-size: clamp(1rem, 1.3vw,1rem);
}

.item-meta-date {
    color: #888;
    margin-right: 15px;
}

.item-meta-category {

    white-space: nowrap;
}
.item-meta-category a {
	  font-size: clamp(0.8rem, 1.1vw,1rem);
    display: block;
    padding: 0 5px;
    background: var(--pink);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* 抜粋 */
.item-excerpt {
    order: 3;
    margin: 10px 0;
    line-height: 1.5;
	font-size: clamp(1rem, 1.4vw,1.2rem);
}

a.item-readmore-btn {
	order: 4;
	align-self: flex-end;
	padding: 0.6em 2em;
	background-color:#fef4f4; 
	border: solid 1px var(--pink);
	color: var(--pink);
	text-decoration: none;
	font-size: clamp(0.8rem, 1.2vw,1rem);
	border-radius: 0.8em;
	transition: background-color 0.3s;
}

.item-readmore-btn:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
	


}





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



@media (max-width: 1024px) {
	/* ◆◆◆ ハンバーガーメニュー ◆◆◆ */
	/*ボタン背景色*/
	.l-header__drawerBtn {
		background: #BB757A;
		border-radius: 3px;
		/*border: 1px solid #fff;*/
	}

	
	/*ボタン３本線*/
	.c-iconBtn__icon {
		color: white;
	}
	
	/*メニュー背景色*/
	.p-drawer{ 
		background: #fef4f4;
	}
	
	ul.c-drawerNav {color: #666;}

	/* ◆◆◆ ハンバーガーメニュー ◆◆◆ */
}



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

@media (max-width: 768px) {
	
	/* ◆◆◆ 問い合わせボタン ◆◆◆ */
	.contact__btn {
		margin-bottom: 0.5em;
	}
	/* ◆◆◆ /問い合わせボタン ◆◆◆ */
	
	

	

	
	/* ◆◆◆ BA ◆◆◆ */
	.ba {
		margin-top: 3em;
	}
	
	li.ba__item {
		margin-bottom: 2em;
	}
	/* ◆◆◆ /BA ◆◆◆ */
	
	
	/* ◆◆◆ 理由 ◆◆◆ */
	.reason {
		margin-top: 3em;
	}
	
	li.reason__item {
		padding: 0;
	}
	/* ◆◆◆ /理由 ◆◆◆ */

	
	
	/* ◆◆◆ 流れ-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 文章あり縦並び ◆◆◆ */

	
	/* ◆◆◆ 流れ-02 文章あり縦並び ◆◆◆ */
	/*	.flow__02 {
		margin-top: 3em;
	}

	.flow__02 li.flow__item {
		width: 50%;
		padding-inline: 2%;
		margin-bottom: 2em;
	}*/
	/* ◆◆◆ /流れ-02 文章あり縦並び ◆◆◆ */

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

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

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

	.footer__btn2-item {
		width: 50%;
		padding: 0.1em;
		margin-bottom: 0;
	}
	/* ◆◆◆ フッターボタン ◆◆◆ */
	
	.entry_title {
		padding-inline: 5%;
	}
	
	/* ◆◆◆ パンくずリスト ◆◆◆ */
	.p-breadcrumb__list {
		padding-left: 5% !important;
	}
	/* ◆◆◆ /パンくずリスト ◆◆◆ */
	
	
	/* ◆◆◆ TOPページお知らせリスト3件 ◆◆◆ */
	.custom-news-list-wrapper {}

	.custom-news-item {
		display: block; 
	}

	.item-thumbnail {
		width: 100%; 
		margin-right: 0;
	}

	.item-text-content {
		width: 100%; 
		padding: 1em 0 0 0; 
	}
	/* ◆◆◆ /TOPページお知らせリスト3件 ◆◆◆ */

	
	/* ◆◆◆ 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 ◆◆◆ */
	
}





	/* ◆◆◆ 以下追加CSS ◆◆◆ */
body {
  font-family: var(--mincho);
}

figure, .inner {
  text-align: center;
}



/* ◆◆◆ 問合 ◆◆◆ */

.contact {
	margin-top: 0em;
  background-color: #fdf8ef;
  padding: 3em 0; 
}

.contact__btn {
	margin-bottom: 0em;
	display: flex;
    justify-content: space-between;
}
.contact__btn-item a {
    display: block;
    transition: transform .6s;
}
.contact__btn-item{
	width: 49%;
}
.contact__btn-item a:hover {
    transform: scale(1.05);
}
/* ◆◆◆ /問合 ◆◆◆ */


/* --- * ◆◆◆ 問合 ◆◆◆ * --- */
@media screen and (max-width: 768px) {
  .contact__btn-item {
    width: 100%;
    margin-bottom: 1rem; /* ボタン間の隙間 */
  }

  .contact__btn-item:last-child {
    margin-bottom: 0;
  }
  .contact__btn {
	flex-wrap: wrap; /* 折り返し許可 */
  }
}
/* ◆◆◆ /問合 ◆◆◆ */



/* ◆◆◆ /h2 ◆◆◆ */
.heading-announce {
  text-align: center; /* 中央寄せ */
font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  color: #b57b7b; /* 落ち着いた赤みブラウン系 */
  letter-spacing: 0.1em; /* 文字の間を少し広げて上品に */
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

/* 下にフェードするグラデーションライン */
.heading-announce::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.5em auto 0;
  background: linear-gradient(to right, transparent, #b57b7b, transparent);
}

@media (max-width: 768px) {
  .heading-announce {
    font-size: 2rem;
	margin-bottom: 0.8em;
  }
}



/* ==============================
   推薦者
============================== */

.recommend {
  font-family: 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', '游明朝体', YuMincho, serif;
  background-color: #fff;
  color: #5c4a3b;
  padding: 80px 20px;
}

.recommend .inner {
  max-width: 900px;
  margin: 0 auto;
}

/* タイトル */
.recommend .heading-announce {
  text-align: center;
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  color: #c8a86b;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  position: relative;
  font-weight: normal;
}
.selector {
  font-feature-settings: "palt";
}
.recommend .heading-announce::after {
    text-align: center;
    font-family: '游明朝体', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
	  background: linear-gradient(to right, transparent, #c8a86b, transparent) !important;
}

/* リスト */
.recommend__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.recommend__list-item {
  text-align: center;
  position: relative;
}

/* voice番号画像を表示 */
.recommend__list-item::before {
  content: "";
  position: absolute;
  top: -70px; /* 画像の位置（調整可） */
  left: 0;
  width: 120px; /* 画像の横幅 */
  height: 60px; /* 画像の高さ */
  background-image: url("https://relief33.com/wp-content/uploads/2025/11/voice01-title-img.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
}

/* 2つ目以降の画像を変更 */
.recommend__list-item:nth-child(2)::before {
  background-image: url("https://relief33.com/wp-content/uploads/2025/11/voice02-title-img.webp");
}

.recommend__list-item:nth-child(3)::before {
  background-image: url("https://relief33.com/wp-content/uploads/2025/11/voice03-title-img.webp");
}

/* 画像部分 */
.recommend__list-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 35px;
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  border-radius: 4px;
}

.recommend__list-img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* 名前 */
.recommend__list-name {
  font-size: 1.2rem;
  color: #c8a86b;
  margin-bottom: 1em;
}

/* 役職 */
.bo-small__80 {
  display: block;
  background-color: #fdf8f1;
  padding: 0.7em 0;
  font-size: 1rem;
  color: #c8a86b;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2em;
}

/* コメント本文 */
.recommend__list-text p {
  font-size: 0.95rem;
  line-height: 2;
  text-align: justify;
  margin: 0 auto 2em;
  color: #555;
  max-width: 600px;
}

/* 下線 */
.recommend__list-item::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8a86b, transparent);
  margin: 2em auto 0;
}

/* 最後のカードは下線を非表示 */
.recommend__list-item:last-child::after {
  display: none;
}

/* スマホ対応 */
@media (max-width: 1024px) {
  .recommend {
    padding: 10px 10px;
  }
  .recommend__list-item::before {
    left: 10px;
  }
  .recommend__list-img {
    height: 200px;
  }
}
/* ◆◆◆  推薦のお声 ◆◆◆ */


/* ==============================
   喜びの声
============================== */
.voice {
  background-color: #F6F2F2;
  padding: 6rem 0;
}

.voice__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.voice__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0rem 0 0;
}

/* --- 各カード --- */
.voice__item {
  background-color: #fff;
  border: 1px solid #BB757A;
  padding: 2rem 1.5rem;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- 画像部分 --- */
.voice__item-img {
  width: 100%;
}

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

/* --- タイトル（例: 喜びの声1） --- */
.voice__item-title {
  font-size: 1.4rem;
  color: #555;
  font-weight: 600;
  margin: 0.5rem 0;
  text-align: center;
}

.voice__item-meta {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* --- 本文（感想） --- */
.voice__item-text {
  font-size: 1.0625rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}
.voice__item-text br + br {
  margin-bottom: 1em;
  display: block;
  content: "";
}
/* --- 見出し --- */
.heading-announce {
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  color: #bb757a;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: "Noto Serif JP", serif;
}


/* スマホ対応 */
@media (max-width: 1024px) {
	.voice {
		margin-top: 3em;
		padding: 3rem 0;
	}
	
	li.voice__item {
		padding: 1.5em 1.5em 1.6em 1.5em;
	}

	figure.voice__item-img {
		float: left;
		width: 100%;
		padding: 0;
	}

	p.voice__item-text {}
}	



/* ==============================
   お悩み
============================== */
/* =======================================
   ■ お悩みセクション（PC基準）
======================================= */
.problem {
  margin-top: 0;
  padding-top: 0;
}

.problem__inner {
  padding: 0 0em 4em;
}

h2.problem__title {
  text-align: center;
  padding:0px!important;
}

ul.problem__items {
  padding: 0 3em;
  margin-top: 1em;
}

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

.problem__items li {
  position: relative;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  padding-left: 2.4em; /* ← アイコン分の余白を確保 */
  margin-bottom: 1em;
  color: #555;
  text-align: left;
  display: block; /* ← flex を解除！ */
  word-break: break-all; /* ← 長い文も折り返し可能に */
}


/* チェックアイコン */
.problem__items li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.4em;
  height: 1.4em;
  background: url("https://relief33.com/wp-content/uploads/2025/10/check-img.webp")
    no-repeat center / contain;
  top: 0.2em;
}

/* ピンク文字 */
.problem__items .pink {
  color: #bb757a;
  font-weight: 600;
  white-space: nowrap; /* ← ピンク部分の改行防止 */
}

/* =======================================
   ■ レスポンシブ対応（スマホ・タブレット）
======================================= */
@media screen and (max-width: 768px) {
  .problem__inner {
    padding: 0 0 1em;
  }

  h2.problem__title img {
    width: 100%;
    height: auto;
  }

  ul.problem__items {
    padding: 0 1em;
  }

  .problem__items li {
    font-size: 0.95rem;
    margin-bottom: 0.8em;
    line-height: 1.7;
	letter-spacing:1px;
  }

  .problem__items li::before {
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.7em;
    top: 0.1em;
  }
}

	
/* ◆◆◆ お悩み ◆◆◆ */





/* ==============================
   施術（症状）メニュー
============================== */
.shojo  {
  background: url('https://relief33.com/wp-content/uploads/2025/11/menu-bg-1.webp') no-repeat center/cover;
  padding: 80px 20px;
}

.heading-announce-s {
  text-align: center; /* 中央寄せ */
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  color: #D0AA43; /* 落ち着いた赤みブラウン系 */
  letter-spacing: 0.1em; /* 文字の間を少し広げて上品に */
  margin-bottom: 0.8em;
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
}

/* 下にフェードするグラデーションライン */
.heading-announce-s::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.5em auto 0;
  background: linear-gradient(to right, transparent, #D0AA43, transparent);
}

ul.shojo__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	list-style: none;
	gap: 1.5em;
	width: 100%;
	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 {
	background-color: #ffff;
	font-size: clamp(1rem, 2vw, 1.6rem);
	text-decoration: none;
	display: block;
	transition: 0.6s;
}

ul.shojo__list li a img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom; /* 保険的に */
}

ul.shojo__list li a:hover {
	opacity: 0.6;
} 


/* ホバー効果 */
.shojo__list li a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* * ◆◆◆ /施術メニュー ◆◆◆ * */
@media (max-width: 1024px) {
  .shojo__list {
    grid-template-columns: 1fr;
  }
	
	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: 0em;
	} 	
}

/* ◆◆◆ /施術メニュー ◆◆◆ */




/* ==============================
   特徴
============================== */
.reason {
    background: url('https://relief33.com/wp-content/uploads/2025/11/reason-bgimg-scaled.webp') no-repeat center/cover;
  padding: 40px 20px;
  margin-top: 3em;
}

.reason__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出し（セクションタイトル） */
.reason .heading-announce {
  text-align: center;
  font-size: clamp(1.7rem, 2vw + 1rem, 2.5rem);
  font-weight: 600;
  color: #a25b5b;
  margin-bottom: 2rem;
  margin-top: 5rem;
  letter-spacing: 0.05em;
}

.reason__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* Reason全体 */
.reason__item {
 position: relative;	
  text-align: center;
  margin-bottom: 60px;
}

/* Reason番号部分を画像に変更 */
.reason__num {
  position: relative;
  width: 150px; /* 画像サイズに合わせて調整 */
  height: 60px;
  margin: 0 auto 1rem;
  text-indent: -9999px; /* テキストを非表示に */
  overflow: hidden;
}

/* 各番号画像を指定 */
.reason__item:nth-child(1) .reason__num {
  background: url("https://relief33.com/wp-content/uploads/2025/11/Reason01-title-img.webp")
    no-repeat center / contain;
}

.reason__item:nth-child(2) .reason__num {
  background: url("https://relief33.com/wp-content/uploads/2025/11/Reason02-title-img.webp")
    no-repeat center / contain;
}

.reason__item:nth-child(3) .reason__num {
  background: url("https://relief33.com/wp-content/uploads/2025/11/Reason03-title-img.webp")
    no-repeat center / contain;
}

.reason__item:nth-child(4) .reason__num {
  background: url("https://relief33.com/wp-content/uploads/2025/12/Reason04-title-img.webp")
    no-repeat center / contain;
}


.reason__item h3 {
  font-size: 1.6rem;
  color: #b57b7b;
  font-weight: 600;
  margin: 0.5rem 0 3rem;
  position: relative;
}

.reason__item h3 span {
  width: 100%;
  background-color: #F5EBE8;
  padding: 1rem 2rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}
/* マーカー削除 */
ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.reason__img {
  flex: 0 0 40%;
}
.reason__img img {
	float: right;
    margin-left: 25px;
    width: 50%;
}

/* テキスト部分 */
.reason__item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
	text-align: justify;
}

/* スマホ対応 */
@media (max-width: 1024px) {

  .reason {
    padding: 40px 10px;
  }

  .reason .heading-announce {
    margin-bottom: 1em;
   margin-top: 1rem;
  }

  .reason__item {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px; /* ← 10pxだと少し詰まりすぎるので20px推奨 */
  }

  .reason__items {
    gap: 0 !important;
  }
	
  .reason__item:nth-child(even) {
    flex-direction: column;
  }

  .reason__img img {
    width: 100%;
    float: none;        /* ← float解除しないとずれる */
    margin: 0 0 10px 0; /* ← 下だけ余白 */
  }

  .reason__item h3 {
    font-size: 1.3rem;
    margin: 0.5rem 0 1.5rem;
  }

  .reason__item p {
	 padding-inline: 1em;
    margin-bottom: 1em;
  }
}

/* ==============================
   流れ
============================== */
.flow__01 .heading-announce-s {
    text-align: center;
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
    color: #D0AA43;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.flow__01 {
  padding: 4em 0 0;
}

.flow__01 .flow__inner.inner {
  padding: 0 0em;
}

.flow__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.flow__items {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: flow;
}

.flow__item {
  background: #fff;
  padding: 2em 2em;
  margin-bottom: 5em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  display: flex;
  flex-wrap: wrap; /* ← wrapを追加！これでテキストが下に回る */
  align-items: flex-start; /* ← 上端を揃える */
　align-items: center;
  gap: 1em;
  border: 1px solid #f1e8d9;
  position: relative; /* ← これが必須！ */
  overflow: visible;  /* ← 念のため矢印がはみ出ても見えるように */
}

.flow__item-text h3 {
  display: flex;
  align-items: baseline;
  gap: 0.8em;
  font-weight: 600;
  font-size: 1.4rem;
  color: #D0AA43; 
  letter-spacing: 0.05em;
  position: relative;
  margin-top: 0rem;
}

/* 番号を自動で付与 */
.flow__items {
  counter-reset: flownum;
}

.flow__item-text h3::before {
  counter-increment: flownum;
  content: counter(flownum, decimal-leading-zero);
  font-family: "Madelinette Grande", serif;
  font-style: italic;
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 400;
  color: rgba(214, 178, 138, 0.35); /* 淡い金色 */
  line-height: 1;
}

.flow__item h3 {
  font-size: 1.7rem;
  color: #D0AA43;
  font-weight: 600;
  margin-bottom: 0.8em;
  position: relative;
  z-index: 1;
}

.flow__item p {
  font-size: 0.8em;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.flow__item .flow__img {
  flex: 0 0 35%;
  min-width: 250px;
  flex-shrink: 0;
}

.flow__item .flow__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* テキスト部分 */
.flow__item-text {
  flex: 1;		
}

/* 偶数番目は画像とテキスト反転 */
.flow__item:nth-child(even) {
  flex-direction: row-reverse;
}

/* 区切り矢印 */
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -66px; /* ボックスとの間隔 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;  /* 左辺を透明に */
  border-right: 28px solid transparent; /* 右辺を透明に */
  border-top: 25px solid #D0AA43;       /* 上辺だけ金色にして矢印を作る */
}



/* スマホ対応 */
@media (max-width: 1024px) {

  /* セクション全体の上下余白を半分に */
  .flow__01 {
    padding: 0em 0;
  }

  /* 各アイテムの余白を詰める */
  .flow__item {
    flex-direction: column;
    text-align: left;
    padding: 1.5em 1.2em; /* ← 内側の余白を小さく */
    margin-bottom: 3.5em; /* ← 下の余白を減らす（5em→2.5em） */
  }

  /* 偶数番目も同様に縦並び */
  .flow__item:nth-child(even) {
    flex-direction: column;
  }
.flow__item:last-child {
  margin-bottom: 0;
}
	
  /* 画像サイズを全幅に */
  .flow__item .flow__img {
    width: 100%;
    padding: 0;
    margin-bottom: 1.2em; /* ← 画像下に少しだけ余白を残す */
  }

  /* 見出しを小さく調整 */
  .flow__item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5em;
  }

  /* 段落間の行間も少し詰める */
  .flow__item p {
    line-height: 1.6;
    font-size: 0.9rem;
  }

  /* 区切り矢印の位置を調整（余白が詰まった分） */
  .flow__item:not(:last-child)::after {
    bottom: -35px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 16px solid #D0AA43;
  }
}



/* ==============================
   院長メッセージ
============================== */
.message {
  background: linear-gradient(to bottom, #fffaf8, #fde9e4);
  padding: 100px 20px;
  margin-top: 0;
}

.message h2 {
}
.massage .inner{
	padding: 0 2em;
}
figure.message__img {
  float: left;
  width: 45%;
  margin: 0 2.5rem 1.5rem 0; 
  position: relative;
  aspect-ratio: 2 / 2.6;
  overflow: hidden;
}

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

figure.message__img figcaption {
  position: absolute;
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  width: 100%;
  background: rgba(255,255,255,0.6);
  bottom: 0;
  padding: 0.4em;
  margin-top: 0;
}

.message p {
  line-height: 1.9;
  text-align: justify;
  padding-top: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.05rem);
}

.message p:last-child {
  margin-bottom: 0;
}
.section__inner-ivory .inner{
	padding: 0 2rem;
}
/* ◆◆◆ /院長メッセージ ◆◆◆ */
/* スマホ対応 */
@media (max-width: 1024px) {

  .section__inner-ivory.inner {
    padding: 0;
  }

  .message {
    padding: 50px 15px; /* ← 上下の余白を詰める */
  }
	.message h2{
		font-size:1.8rem;
	}
  figure.message__img {
    float: none; /* ← スマホでは縦並びに */
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0; /* 下に余白だけ残す */
  }

  .message p {
    padding-top: 0; /* 画像下に余白があるので詰める */
  }
}




/* ==============================
   アクセス
============================== */
/* --- アクセスセクション全体 --- */
.access {
  background: url(https://relief33.com/wp-content/uploads/2025/11/acces-bg.webp) no-repeat center / cover;
  padding: 6em 0;
  font-family: "Noto Serif JP", serif;
  margin-top: 0;
}

/* 見出し */
.access__title {
  text-align: center;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  color: #a67b7b;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  font-weight: 600;
}

/* --- 全体レイアウト --- */
.access__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.3em;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

/* --- 地図 --- */
.access__map iframe {
  width: 360px;
  height: 360px;
  border: none;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* --- 右側の情報 --- */
.access__info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

/* --- 表全体 --- */
.access__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1.2em;
  border: none;
  line-height: 1.8;
}

/* --- 左側リボン見出し --- */
.access__table th {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  width: 110px;
  background: transparent;
  border: none;
  padding: 0;
  vertical-align: middle;
}

.access__table th::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.6em;
  background: #b77b7b;
  transform: translateY(-50%) skew(-20deg);
  z-index: -1;
  border-radius: 2px;
}

/* テキストの見た目補正 */
.access__table th span {
  line-height: 1.8;
}

/* --- 右側（テキスト） --- */
.access__table td {
  color: #6b4747;
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1em;
  vertical-align: middle;
  border: none;
}


.page-id-124 .access__title {
    display: none !important;
}

/* --- スマホ対応（縦並び） --- */
@media screen and (max-width: 1024px) {
  .access {
    padding: 3em 0;
  }
.access__title {
   margin-bottom: 1.5em		
	}
  .access__inner {
    flex-direction: column-reverse; /* 地図を下に */
    gap: 2em;
    padding: 0 1em;
  }

  /* 地図を全幅に */
  .access__map iframe {
    width: 100%;
    height: 300px;
    border-radius: 6px;
  }

  /* アクセス情報を整列 */
  .access__info {
    height: auto;
    justify-content: flex-start;
  }

  /* 表の構造をスマホ用に変更 */
  .access__table,
  .access__table tr,
  .access__table th,
  .access__table td {
    display: block;
    width: 100%;
  }

  .access__table {
	width: 100%;
    border-spacing: 0;
  }

  /* thとtdを縦に並べる */
  .access__table th {
    width: 140%;
    text-align: left;
    font-size: 1rem;
    padding: 0.4em 0.8em;
    margin-bottom: 0.3em;
  }

  .access__table th::before {
    transform: skew(-15deg);
    height: 1.8em;
	top: 20%;
  }

  .access__table td {
    padding: 0 0 1em 0.8em;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b4747;
  }
}

}

/* ◆◆◆ /背景色 ◆◆◆ */
body {
  background-color: #FEFDF9;
  background-image: none;
}

/* ◆◆◆ /グロナビフォントサイズ ◆◆◆ */
.c-gnav a {
  font-size: 0.5rem!important;
}

/* ◆◆◆ テキストカラー ◆◆◆ */
.pink {
  color: #BB757A; 
  font-weight: 600;
}


/* スマホでのみ改行を表示 */
.sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}


/* ==============================
   下層ページ/about
============================== */
.about-section {
  background: #fff;
  padding: 40px 20px  30px;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text-01{
	padding: 1.5em 2em;
	margin-bottom: 0.5em;
}

.about-image-01 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin-bottom: 40px;
}

.about-text-01 p {
line-height: 1.9;
    text-align: justify;
    padding-top: 1rem;
    font-size: clamp(1rem, 1.6vw, 1.05rem);
}
.about-section .heading-announce-s {
    font-size: clamp(1.6rem, 2vw + 1rem, 2.5rem);
  }

@media screen and (max-width: 768px) {
  .about-section {
    padding: 0;
  }
.about-inner {
	padding: 0 2em;
}
  .about-text-01 p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
	.about-text-01{
	padding: 0;
}

}

.heading-announce-bridal {
  text-align: center; /* 中央寄せ */
  font-size: clamp(1rem, 2vw + 1rem, 2rem);
  color: #D0AA43; 
  letter-spacing: 0.1em; /* 文字の間を少し広げて上品に */
  margin-bottom: 0.8em;
  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
}

/* 下にフェードするグラデーションライン */
.heading-announce-bridal::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin: 0.5em auto 0;
  background: linear-gradient(to right, transparent, #D0AA43, transparent);
}



/* スマホ改行クラス */
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}

/* FV前margin */
.fv {
    margin-top: 0;
}



/* ==============================
   下層ページ/ダイエット/ダイエットの施術の流れ
============================== */
.diet-method__title {
  background: #faf5e7;      /* 背景の薄いクリーム色 */
  padding: 40px 0;          /* 上下の余白 */
  text-align: center;       /* 中央寄せ */
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);          /* 文字サイズ */
  font-weight: 700;
  color: #c9a86e;           /* 金色の文字 */
  margin: 0;                /* 上下の余白を消す（帯を途切れさせない） */
  letter-spacing: 0.05em;
}


/* ★ method-list で 1 回だけカウンターをリセットする */
.method-list {
	margin: 6em 0em 0em;
    counter-reset: dietstep;
}

/* method-item の配置（左右交互） */
.method-item {
    display: flex;
    gap: 30px;
    margin-bottom: 100px;
	align-items: flex-start;
}

.method-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* 写真 */
.method-photo {
    width: 200px;
    height: 200px;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 1.2rem;
}

/* h3 の番号（01, 02, 03…） */
.method-content h3::before {
    counter-increment: dietstep;
    content: counter(dietstep, decimal-leading-zero);

    font-family: "Madelinette Grande", serif;
    font-style: italic;
    font-size: clamp(3rem, 6vw, 4.5rem);
	color: rgba(214, 178, 138, 0.35);

    position: absolute;
    left: -4px;
    top: -57px;
    line-height: 1;
    white-space: nowrap;
}

/* h3 の帯デザイン */
.method-content h3 {
    position: relative;
	background: #fdf8f1;
    display: inline-block;
    padding: 1rem 2rem;
    margin-left: 0px; /* 数字とのバランス */
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 400;
    margin-top: 0;
	width: 100%;
}

/* 本文 */
.method-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}
.method-content{
  width: 69%;
	text-align: left;
  
}

/* ==============================
   下層ページ/ダイエット/ダイエットの施術の流れ
============================== */
.diet-method__title {
  background: #faf5e7;
  padding: 40px 0;
  text-align: center;
  font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  font-weight: 700;
  color: #c9a86e;
  margin: 0;
  letter-spacing: 0.05em;
}

/* カウンターリセット */
.method-list {
  margin: 6em 0 0;
  counter-reset: dietstep;
}

/* method-item：PCでは左右交互レイアウト */
.method-item {
  display: flex;
  gap: 30px;
  margin-bottom: 100px;
  align-items: flex-start;
}

.method-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* 写真 */
.method-photo {
  width: 200px;
  height: 200px;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 1.2rem;
}

/* 番号 01 02 03... */
.method-content h3::before {
  counter-increment: dietstep;
  content: counter(dietstep, decimal-leading-zero);
  font-family: "Madelinette Grande", serif;
  font-style: italic;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: rgba(214, 178, 138, 0.35);

  position: absolute;
  left: -4px;
  top: -57px;
  line-height: 1;
  white-space: nowrap;
}

/* h3 帯 */
.method-content h3 {
  position: relative;
  background: #fdf8f1;
  display: inline-block;
  padding: 1rem 2rem;
  margin-left: 0;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
}

/* 本文 */
.method-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.method-content {
  width: 69%;
  text-align: left;
}


/* ==============================
       ▼ スマホ レスポンシブ ▼
============================== */
@media screen and (max-width: 768px) {

  .method-item {
    flex-direction: column;        /* 写真 → テキストの縦並び */
    gap: 20px;
    margin-bottom: 5rem;
  }

  .method-item:nth-child(even) {
    flex-direction: column;        /* 偶数行の反転を解除 */
  }

  .method-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;           /* 正方形を維持：画像がキレイに見える */
    font-size: 1rem;
  }

  .method-content {
    width: 100%;
  }

  /* 番号位置をスマホ用に調整 */
  .method-content h3::before {
    left: 0;
    top: -45px;
    font-size: 3.2rem;
  }

  .method-content h3 {
    padding: 0.8rem 1rem;
    font-size: 16px;
	margin-bottom: 14px;
  }
  .method-item {
    flex-direction: column;
  }

  /* 必ずテキストが上、写真が下になるように順番固定 */
  .method-content {
    order: 1;
    width: 100%;
  }

  .method-photo {
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  /* h3 番号位置も微調整 */
  .method-content h3::before {
    left: 0;
    top: -45px;
    font-size: 3.2rem;
  }
	.method-content p {
		margin-bottom: 15px;
}
}

/* ==============================
   喜びの声ページ
============================== */
.p-entry__thumb{
	text-align: center;
    width: 50%;
    margin: 2em auto;
}
@media screen and (max-width: 768px) {
.p-entry__thumb{
    width: 100%;
}
	    .p-postList.-type-list .p-postList__link {
        gap: 2rem;
		flex-direction: column
    }

    .p-postList.-type-list .p-postList__thumb {
        width: 100%;
        text-align: center;
		max-width: none;
    }

    .p-postList .p-postList__title {
        font-size: 1.5rem;
    }

}

/* グロナビの1項目だけ小さくする */
.l-header .l-header__inner .c-gnav li.nav-small a.c-gnav__a .__mainText {
  font-size: 0.85em!important;
}
@media (min-width: 769px) {
  .l-header .nav-small > a {
    font-size: 0.85em;
  }
}