:root {
	--red: #b7282e;
	--brown: #9D8B6F;
	--light-brown: #BCAF9A;
	--beige: #E8E2D9;
	--ivory: #FFFDFA;
	--blue: #007bbb;
	--green: #5f9066;
	--yellow: #ffd900;
	--black: #585858;
	--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();
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-size: cover;
	}
}
/* ◆◆◆ /枠外背景 ◆◆◆ */


/* ◆◆◆ コンテンツ背景色、フォント ◆◆◆ */
.c-postContent {
	background: var(--ivory);
}

h2, h3, h4 {
	font-family: 'Sawarabi Mincho', serif;
	font-weight: 400;
}

p, li, a, dl, table {
	font-family: var(--mincho);
	color: var(--black);
}
/* ◆◆◆ /コンテンツ背景色、フォント ◆◆◆ */


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

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

h4 {
	font-size: clamp(1.2rem, 1.6vw, 1.4rem);
}

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

p {
	margin-bottom: 2rem;
}

img {
	display: block;
}


/* ◆◆◆ /フォントサイズ ◆◆◆ */


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

h2.defaults__title:after {
	position: absolute;
	content: "";
	background: url(https://itaminokaizen.com/wp-content/uploads/2025/11/title-deco.webp);
	background-size: 100%;
	background-repeat: no-repeat;
	width: 30%;
	height: 0.4em;
	bottom: 0;
	left: 50%;
	transform: translatex(-50%);
}

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

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


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

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


/* ◆◆◆ ヘッダー ◆◆◆ */
@media (max-width:768px) {
	.bo-header__right-box-info {
		padding: 2%;
	}
}
.bo-header__right-box-info p:first-child {
	font-size: 1.1rem;
	color: #777;
	margin-bottom: 0;
}

.bo-header__right-box-info p:last-child {
	font-size: 1.1rem;
	color: white;
	background: var(--brown);
	margin-bottom: 0;
}
/* ◆◆◆ /ヘッダー ◆◆◆ */


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

.c-gnav .__mainText, .c-gnav .__subText {
	font-size: clamp(1rem, 1.2vw, 1rem);
	color: var(--brown);
}

.sub-menu .__mainText{
	color: white;
}

/*グロナビ上のライン*/
.l-headerUnder__inner {
	position: relative;
}

.l-headerUnder__inner:before {
	position: absolute;
	content:"";
	clip-path: inset(5% 20% 15% 10%);
	width: 2500px;
	height: 1px;background: var(--brown);
	left: 50%;
	transform: translatex(-50%);
}

.c-gnav {
	display: flex;
	flex-wrap: wrap; /* 2行になる場合 */
  justify-content: center;
}

.l-headerUnder .c-gnav>.menu-item>a {
    padding: 16px 20px;
}
/* ◆◆◆ /グロナビ ◆◆◆ */


/* ◆◆◆ サイドバー ◆◆◆ */
.c-widget__title.-side {
	font-family: var(--mincho);
}

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

.side__box-address {
	font-size:1.1rem;
	margin-bottom: 1em;
}

.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 {
	font-size: 1.1rem;
}

.side__box dt {
	font-weight: 600;
}

.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;
}
/* ◆◆◆ /サイドバー ◆◆◆ */


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


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

.offer figure {
	margin: 0;
}

.offer__title {
	text-align: center;
	background: var(--brown);
}

.offer__title h2 {
	color: var(--yellow);
	font-size: clamp(1.6rem, 2.8vw, 2.3rem);
	font-weight: 400;
	line-height: 1.5;
	padding: 1em 0.3em;
}

.offer__title h2 span {
	color: white;
	position: relative;
}

.offer__title h2 span::before, .offer__title h2 span::after {
	position: absolute;
	top: 0;
	height: 2.5rem;
	content: '';
}

.offer__title h2 span::before {
	border-left: solid 1px;
	left: -15%;
	transform: rotate(-30deg);
}

.offer__title h2 span::after {
	border-right: solid 1px;
	right: -15%;
	transform: rotate(30deg);
}

/*TOPの最後のみ見出し非表示*/
.offer__no-title .offer__title {
  display: none;
}

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


/* ◆◆◆ 問合 ◆◆◆ */
.contact {
	margin-top: 2em;
}

.contact__btns {
	display: flex;
	gap: 2em;
}

.contact__btn {
	flex: 0 0 calc((100% - 2em) / 2);
	box-sizing: border-box;
	margin-bottom: 2em;
	transition-duration: 0.6S;
}

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

figure.line__qr {
	width: 200px;
	margin: 0 auto;
}
/* ◆◆◆ /問合 ◆◆◆ */


/* ◆◆◆ お悩み ◆◆◆ */
.problem {
	padding: 3em 0 1rem;
	margin-top: 3em;
}

.problem__inner {}

ul.problem__items {
	background: white;
	box-shadow: 2px 2px 6px #c8c2be;
	padding: 1.5em 2em;
	margin-block: 1.5em;
}

.problem__items li {
	position: relative;
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	list-style: none;
	border-bottom: dashed 1px #DED9D1;
	padding-left: 2.4em;
}

.problem__items li:before {
	position: absolute;
	top: 5px;
	left: 0;
	content: "";
	background: url(https://itaminokaizen.com/wp-content/uploads/2025/11/check.webp);
	background-size: cover;
	width: 2rem;
	height: 2rem;
}
/* ◆◆◆ /お悩み ◆◆◆ */


/* ◆◆◆ TOP-対応症状 ◆◆◆ */
.top-shojo {}
h2.brown-bg__title {
	color: white;
	text-align: center;
	background: var(--brown);
	padding: 1em;
}

ul.top-shojo__list {
	display: flex;
	flex-wrap: wrap;justify-content: center;
	list-style: none;
	gap: 1.5em;
	padding: 2em;
	margin-block: 2em;
}

ul.top-shojo__list li {
	position: relative;
	flex: 0 0 calc((100% - 1.5em) / 2);
	box-sizing: border-box;
	text-align: center;
	background: var(--beige);
	border-radius: 1em;
	padding: 1em;
	transition: 0.6s;
}

ul.top-shojo__list li:before {
	position: absolute;
	content: "";
	clip-path: circle(50% at 50% 50%);
	background: white;
	width: 2em;
	height: 2em;
	bottom: 0.5em;
	right: 0.5em;
}

ul.top-shojo__list li:hover {
	opacity: 0.6;
}

ul.top-shojo__list li a {
	text-decoration: none;
	color: var(--broun);
}

ul.top-shojo__list li h3 {
	margin-top: 0;
}

ul.top-shojo__list li figure {
	padding: 1em 1em 0 1em;
}


ul.top-shojo__list li:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: var(--beige);
	width: 0.7em;
	height: 1em;
	bottom: 1em;
	right: 1em;
}

.brown__btn {
	text-align: center;
}

.brown__btn a {
	position: relative;
	color: white;
	text-decoration: none;
	background: var(--light-brown);
	border-radius: 3em;
	display: inline-block;
	padding: 1em 3em;
	text-shadow: 0 0 2px var(--brown);
	transition: 0.6s;
}

.brown__btn a:after {
	position: absolute;
	content: "";
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	background: white;
	width: 0.5em;
	height: 1em;
	top: 50%;
	right: 1em;
	transform: translatey(-50%);
}

.brown__btn a:hover {
-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
/* ◆◆◆ /TOP-対応症状 ◆◆◆ */


/* ◆◆◆ 理由 ◆◆◆ */
.reason {
	padding-block: 3em;
	margin-top: 1em;
}

.reason__inner {}

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

li.reason__item {
	position: relative;
	background: white;
	padding: 3.5em 2em 0.1em;
	margin-bottom: 2em;
	box-shadow: 2px 2px 2px #c8c2be;
}

li.reason__item:before {
	position: absolute;
	content: "";
	width: 9em;
	height: 3.5em;
	top: 0;
	left: 1em;
}

li.reason__item:nth-of-type(1):before {
	background: url(https://itaminokaizen.com/wp-content/uploads/2025/11/point01.webp);
	background-size: cover;
}

li.reason__item:nth-of-type(2):before {
	background: url(https://itaminokaizen.com/wp-content/uploads/2025/11/point02.webp);
	background-size: cover;
}

li.reason__item:nth-of-type(3):before {
	background: url(https://itaminokaizen.com/wp-content/uploads/2025/11/point03.webp);
	background-size: cover;
}

li.reason__item:nth-of-type(4):before {
	background: url(https://itaminokaizen.com/wp-content/uploads/2026/01/point04.webp);
	background-size: cover;
}

li.reason__item:nth-of-type(5):before {
	background: url(https://itaminokaizen.com/wp-content/uploads/2026/01/point05.webp);
	background-size: cover;
}



li.reason__item h3{
	color: var(--brown);
	text-align: center;
	margin-top: 0;
}

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

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


/* ◆◆◆ BA ◆◆◆ */
.ba {
	padding-block: 0;
	margin-top: 0;
}

.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 {
	text-align: center;
	background: white;
	padding: 1.5em;
	margin: 1.5em 0 2em;
	box-shadow: 0 0 4px #c8c2be;
}

h3.ba__item-title {
	color: white;
	font-size: clamp(1.3rem, 1.9vw, 1.6rem);
	font-weight: 400;
	text-align: center;
	background: var(--brown);
	display: inline-block;
	padding: 0.3em 1em;
	margin: 0 0 1.5em;
}

.ba__item {
	box-shadow: 0 0 4px #c8c2be;
}

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

.ba__item-img:after {
	position: absolute;
	content: "";
	background: url(https://itaminokaizen.com/wp-content/uploads/2025/11/arrow.webp);
	background-size: cover;
	background-repeat: no-repeat;
	width: 2.4em;
	height: 2.4em;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

figure.ba__img {
	flex: 0 0 calc((100% -4em) / 2);
	box-sizing: border-box;
	margin: 1em 0;
}

.ba__img:first-child, .ba__img:last-child{
	position: relative;
}

.ba__img:before {
	position: absolute;
	color: var(--brown);
	font-size: clamp(1em, 2.4vw, 2em);
	font-family: 'Sawarabi Mincho', serif;
	top: -2em;
	left: 50%;
	transform: translatex(-50%);
}

.ba__img:first-child::before {
	content: "Before";
	}

.ba__img:last-child::before {
	content: "After";
	}

p.ba__item-text {
	text-align: justify;
	margin-bottom: 0;
}

p.ba__item-note {
	color: gray;
	text-align: right;
	font-size: clamp(0.7rem, 1.2vw, 1rem);
	margin: 0.5em 0 0;
}

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


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

.voice__inner {}

h2.voice__title {
	text-align: center;
}

ul.voice__items {
	list-style: none;
	background: white;
	box-shadow: 0 0 4px #c8c2be;
	padding: 2.6rem 2.6rem 0.6rem 2.6rem;
	margin-block: 2.5em;
}

li.voice__item {
	margin-bottom: 2rem;
}

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

figure.voice__item-img {
	width: 45%;
	margin: 0;
}

.voice__item:nth-child(odd) .voice__item-img {
  float: left;
  padding: 0.4em 1em 0 0;
}

.voice__item:nth-child(even) .voice__item-img {
  float: right;
  padding: 0.4em 0 0 1em;
}

li.voice__item h3.voice__item-title {
	color: var(--light-brown);
	font-weight: 400;
	border-bottom: solid 1px;
	margin: 0 0 0.5em;
}

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;
	margin-bottom: 0.7em;
}

li.voice__item p.voice__item-text:last-of-type {
	margin-bottom: 0;
}

/* ◆◆◆ /喜びの声 ◆◆◆ */



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

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

.flow__02 .flow__inner {}

.flow__02 ul.flow__items {
	display: flex;
	flex-wrap: wrap;justify-content: center;
	gap: 2.5em;
	counter-reset: flow;
	list-style: none;
	padding: 0;
	margin: 2em 0 0;
}

.flow__02 li.flow__item {
	flex: 0 0 calc((100% - 2.5em) / 2);
	background: var(--brown);
	padding: 0.3em 1em 1em;
	margin: 0;
}

.flow__02 li.flow__item h3 {
	position: relative;
	color: white;
	font-size: clamp(0.8rem,1.9vw,1.7rem);
	font-weight: 400;
	text-align: center;
	line-height: 1.5;padding: 0.3em;
	margin: 0;
}

.flow__02 li.flow__item h3:before {
	position: absolute;
	content: counter(flow, decimal-leading-zero);
	counter-increment: flow;
	font-size: clamp(0.9rem, 1.8vw, 1.6rem);
	top: 0.1em;
	left: 0.5em;
}

.flow__02 li.flow__item figure {
	width: 100%;
	margin: 0;
}
/* ◆◆◆ /流れ-02 文章あり縦並び ◆◆◆ */


/* ◆◆◆ 院長紹介 ◆◆◆ */
.top-message {
	margin-top: 4em;
}

.top-message__box {
	padding: 2em;
	background: white;
	box-shadow: 0 0 6px #c8c2be;
	margin-top: 2em;
}

.top-message__box figure {
	float: left;
	width: 45%;
	margin: 0 1.6em 1em 0;
}

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

.top-message__achievements-title {
	text-align: center;
}

.top-message__achievements-title h3 {
	color: white;
	font-family: var(--mincho);/*績と紹のカーニングが崩れるため*/
	background: var(--brown);
	display: inline-block;
	padding: 0.1em 0.6em;
	margin-bottom: 0.5em;
}

p.top-message__achievements-sub-title {
	color: var(--brown);
	text-align: center;
	border-bottom: solid 1.5px;
	padding-bottom: 0.5em;
}

.top-message__achievements h4 {
	color: var(--black);
}

.top-message__achievements ul {
	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 文章あり縦並び ◆◆◆ */



/* ◆◆◆ アクセス ◆◆◆ */
.access {
	padding-block: 3em;
	margin: 2em 0 4em;
}

.access__inner {}

.access figure {
	margin-block: 2em;
}

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

table.access__table th {
	color: var(--brown);
	text-align: left;
	background: none;
}

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

table.access__table td {
	color: var(--black);
}



/*アクセスページだけh2を非表示*/
.access-page .access h2.brown-bg__title {
	display: none;
}

.access-page .access {
	padding-top: 0;
}

.access-page__inner {
	padding-inline: 3em;
}
/* ◆◆◆ /アクセス ◆◆◆ */


/* ◆◆◆ フッターボタン ◆◆◆ */
.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 {
	background: var(--ivory);
}

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

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

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

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


/* ◆◆◆ 下層ページ ◆◆◆ */
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!important;
	border-bottom: solid 3px var(--brown);
}

.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(--brown);
}
/* ◆◆◆ /下層ページ ◆◆◆ */


/* ◆◆◆ 症状ページ ◆◆◆ */
/* ◆◆◆ 原因について ◆◆◆ */
.cause {
	margin-top: 0;
}

ul.cause__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	gap: 1.5em;padding-left: 0;
	margin-block: 3em;
}

li.cause__item {
	flex: 0 0 calc((100% - 1.5em) / 2);
	box-sizing: border-box;
	background:var(--beige);
	padding: 0.5em 1em;margin-bottom: 0;
}

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

h3.cause__item-title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	font-weight:400;
	text-align: center;
	line-height: 1.2;
	height: 3em;
	margin: 0;
}

figure.cause__item-img {
	padding-bottom: 0.5em;
}

p.cause__item-text {
	text-align: justify;
	margin-bottom: 0;
}
/* ◆◆◆ /原因について ◆◆◆ */


/* ◆◆◆ 放っておくと ◆◆◆ */
.leave-alone {
    margin-top: 5.5em;
}

.leave-alone__inner{}

ul.leave-alone__items {
	list-style: none;
	text-align: center;
	counter-reset: leave;
	padding: 0;
	margin-top: 2.5em;
}

li.leave-alone__item {
	position: relative;
	box-shadow: 2px 2px 6px #c8c2be;
	margin-bottom: 1.5em;
	
}

li.leave-alone__item:before {
	position: absolute;
	content:counter(leave, decimal-leading-zero);
	counter-increment:leave;
	font-size: 1.8em;
	left: 0.5em;
}

h3.leave-alone__item-title {
	color: var(--brown);
	border-bottom: solid 1px var(--light-brown);
	font-weight: 400;
	padding: 0.3em;
	margin: 0;
}

li.leave-alone__item:nth-of-type(odd) {
	background: white;
}

li.leave-alone__item:nth-of-type(even) {
	background: #F5F5F5;
}

p.leave-alone__item-text {
	padding: 0.5em;
	margin: 0;
}

/* ◆◆◆ 改善方法 ◆◆◆ */
.methods {
	margin-top: 5.5em;
}

ul.methods__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	gap: 1.5em;padding-left: 0;
	margin-block: 2em;
}

li.methods__item {
	flex: 0 0 calc((100% - 1.5em) / 2);
	box-sizing: border-box;
	border:solid 1px var(--brown);
	background: white;
	box-shadow: 2px 2px 6px #c8c2be;
	padding: 0.5em 1em;
	margin-bottom: 0;
}

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

h3.methods__item-title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
	color: var(--brown);
	font-weight:400;
	text-align: center;
	line-height: 1.2;
	height: 3em;
	margin: 0;
}

figure.methods__item-img {
	padding-bottom: 0.5em;
}

p.methods__item-text {
	margin-bottom: 0;
	text-align: justify;
}

p.methods__message {
	background: white;
	box-shadow: 2px 2px 6px #c8c2be;
	padding: 1em;
}
/* ◆◆◆ /改善方法 ◆◆◆ */

/* ◆◆◆ その他の痛み ◆◆◆ */
.other-pain {
	margin-block: 5em;
	text-align: center;
}

.other-pain h2 {
	font-size: clamp(1.3rem, 2.4vw, 2rem);
	padding-bottom: 0.5em;
}

.other-pain ul {
	list-style: none;
	max-width:600px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-inline: 3em;
	margin: 0 auto;
}

ul.other-pain__hiza {
	justify-content: center;
}

ul.other-pain__hiza li {
	width: 35%;
}

.other-pain a {
	color: var(--brown);
	text-decoration: none;
	border-bottom: solid 1px;
	padding-bottom: 0.2em;
}
/* ◆◆◆ /その他の痛み ◆◆◆ */

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


/* ◆◆◆ インソールページ ◆◆◆ */
/* インソールのメリット*/
.insole-merit {
	margin-top: 2em;
}

.insole-merit h2 {
	margin-bottom: 1em;
}

.insole-merit p {
	margin-bottom: 1em;
}

/*インソールの特徴*/
.insole-features {}

.insole-features h2 span {
	font-size: 85%;
	color: gray;
	line-height: 1.5;
}

/*インソールで楽に*/
.insole-improvement dl {
	font-weight: 600;
	margin-top: 2em;
}

.insole-improvement dt {
	color: white;
	display:inline;
	background: var(--brown);
	border-radius: 1em;
	padding: 0.3em 1em;
}

.insole-improvement dd {
	padding: 0.3em 0 1em;
	}

/*インソール工程*/
.insole-flow {
	margin-top: 3.6em;
}

ul.insole-flow__items {
	list-style: none;
	counter-reset: insole;
	padding: 0;margin-top: 2em;
}

li.insole-flow__item {
	background: var(--beige);
	padding: 1.5em 2em;
	margin-bottom: 1.4em;
}

li.insole-flow__item::after {
    content: ""; 
    display: block; 
    clear: both; 
}

li.insole-flow__item h3:before {
	content: counter(insole);
	counter-increment: insole;
	color: white;
	background: var(--green);
	border-radius: 2em;
	padding: 0 0.5em;
	margin-right: 0.2em;
}

li.insole-flow__item h3{
	margin-block: 0 0.4em;
}

li.insole-flow__item figure {
	float: right;
	width: 40%;
	padding: 0 0 0.5em 1em;
}

li.insole-flow__item p {
	margin-bottom: 0;
}

li.insole-flow__item dt {
	font-weight: 600;
}

li.insole-flow__item dd {
	margin-bottom: 0.4em;
}

li.insole-flow__item dd:last-child {
	margin-bottom: 0;
}

.price .defaults__title {
	margin-block: 2.5em 1.2em;
}
/* ◆◆◆ /インソールページ ◆◆◆ */


/* ◆◆◆ 初めての方へP ◆◆◆ */
.info-page .offer {
	margin-top: 0;
}

.info-page .flow__02 {
	margin-top: 3em;
}

.info-page .ba {
	margin-top: 3em;
}

.info-page .voice {
	padding-block: 1em 6em;
}
/* ◆◆◆ /初めての方へP ◆◆◆ */
@media (max-width: 768px) {

}


/* ◆◆◆ 料金ページ ◆◆◆ */
.price__item {
	text-align: center;
	background: white;
	padding: 1.5em 2em;
	box-shadow: 0 0 6px #d3cbc6;
	margin-bottom: 2em;
}

.price__items {
	margin-top: 3em;
}

h2.price__item-title {
	color: var(--brown);
	font-size:clamp(1.2rem, 2.4vw, 2rem);
	letter-spacing: 1px;
	padding-bottom: 0;
	margin: 0;
}

.price__item-table {
	margin-block: 1em;
}

.price__item-table th, .price__item-table td {
	text-align: center;
	border: solid 1px var(--brown);
}

.price__item-table th {
	background: var(--beige);
}

.price__item-table td span {
	font-size: 80%;
}

p.price__item-text {
	text-align: left;
	margin: 0;
}
/* ◆◆◆ /料金ページ ◆◆◆ */


/* ◆◆◆ 院長紹介ページ ◆◆◆ */
.staff {
	padding: 0 3em 2em;
}

.staff-achievements h2.defaults__title {
	font-family: var(--mincho);/*績と紹のカーニングが崩れるため*/
}

.staff-message__img {
	float: left;
	width: 40%;
	padding: 0 1.5em 1em 0;
}

.staff-message__text p {
	margin-bottom: 1em;
}

.staff-achievements {
	padding-block: 3em 2em;
}

.staff-message__text p span {
	font-weight: 600;
}

p.staff-achievements__sub-title {
	color: var(--green);
	text-align: center;
	padding-top: 0.8em;
}

.staff-achievements h3 {
	font-size: clamp(1.2rem, 1.6vw, 1.4rem);
	color: var(--green);
	margin-block: 1.4em 0.8em;
}

.staff-achievements__message {
	padding-top: 2em;
}
/* ◆◆◆ /院長紹介ページ ◆◆◆ */


/* ◆◆◆ 対応症状リスト ◆◆◆ */
.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.4rem);
	text-decoration: none;
	border-radius: 0.5rem;
	background: var(--light-brown);
	display: block;
	padding: 0.6em;
	transition: 0.6s;
}

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


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


/* ◆◆◆ 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 dt, .qa-list dd {
	position: relative;
	font-size: clamp(1.1rem, 1.8vw, 1.6rem);
	text-align: justify;
}

.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.6vw, 1.4rem);
	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(--green);
	border-radius: 0.5rem;
}

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


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


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


/* ◆◆◆ 投稿記事 ◆◆◆ */
.blog__container {
	padding: 2em;
}

p.blog__meta {
	color: white;
	background: var(--brown);
	border-radius: 2em;
	display: inline-block;
	padding: 0.2em 1em;
}

.blog__bo {
	color: #c0c6c9;
	font-size: 80%;
}

.blog__bo a {
	color: #c0c6c9;
	font-size: 100%;
}
/* ◆◆◆ /投稿記事 ◆◆◆ */

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








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



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

	
	/*ボタン３本線*/
	.c-iconBtn__icon {
		color: white;
	}
	
	/*メニュー背景色*/
	.p-drawer{ 
		background: var(--brown);
	}
	
	a.c-drawerNav__a, .p-drawer__close {
		color: white;
	}

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



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

@media (max-width: 768px) {
	h2 {
		letter-spacing: 1px;
	}
	
	/* ◆◆◆ ヘッダー ◆◆◆ */
	.bo-header__right-box-info p:first-child {
		font-size: 1rem;
	}

	.bo-header__right-box-info p:last-child {
		font-size: 0.8rem;
	}
	/* ◆◆◆ /ヘッダー ◆◆◆ */
	
	/* ◆◆◆ オファー ◆◆◆ */
	.offer__title h2 {
		letter-spacing: 1px;
		padding: 0.5em;
	}
	
	.offer__no-title .offer {
		margin-bottom: 1.5em;
	}
	/* ◆◆◆ /オファー ◆◆◆ */
	
	/* ◆◆◆ 問い合わせボタン ◆◆◆ */.contact {margin-top: 0.5em;}
	.contact {
		margin-top: 0.5em;
	}
	
		.contact__btn {
		margin-bottom: 1em;
	}
	
	.contact__btns {
		display: block;
	}
	
	figure.line__qr {
		display: none;
	}
	/* ◆◆◆ /問い合わせボタン ◆◆◆ */
	
	
	/* ◆◆◆ お悩み ◆◆◆ */
	.problem {
		margin-top: 3em;
	}
	
	body.page:not(.home) .problem {
		margin-top: 1em;
		padding-top: 2em;
	}
	
	ul.problem__items {
		padding: 1em;
	}
	
	.problem__items li:before {
		width: 1.4rem;
		height: 1.4rem;
		top: 0.3rem;
		left: 0.5rem;
	}
	/* ◆◆◆ /お悩み ◆◆◆ */
	
	
	/* ◆◆◆ TOP-対応症状 ◆◆◆ */
	.top-shojo {
		margin-top: 0;
	}
	
	ul.top-shojo__list {
		padding: 0;
	}
	/* ◆◆◆ /TOP-対応症状 ◆◆◆ */	
	
	
	/* ◆◆◆ 理由 ◆◆◆ */
	.reason {
		margin-top: 4em;
		padding-top: 0;
	}
	
	li.reason__item {
		padding: 2.5em 1em 0.1em;
	}
	
	li.reason__item:before {
		width: 6em;
		height: 2.5em;
	}
	/* ◆◆◆ /理由 ◆◆◆ */

	
	/* ◆◆◆ BA ◆◆◆ */
	.ba {
		margin-top: 0;
	}
	
	.ba__item-img {
		gap: 2em;
	}
	
	figure.ba__img {
		flex: 0 0 calc((100% -2em) / 2);
	}
	
	li.ba__item {
		margin-bottom: 2em;
	}
	
	.ba__item-img:after {
		width: 1.8em;
		height: 1.8em;
	}

	.ba__img:before {
		top: -1.7em;
		}
	/* ◆◆◆ /BA ◆◆◆ */
	
	
	/* ◆◆◆ 喜びの声 ◆◆◆ */
	.voice {
		margin-top: 0;
	}
	
	body:not(.home) .voice {
	padding-top: 1em;
	}
	
	ul.voice__items {
		padding: 0.5rem;
		margin-top: 1.6em;
	}

	li.voice__item {
		padding: 1.5em 1.5em 0.6em 1.5em;
		margin-bottom: 0;
	}

	figure.voice__item-img {
		float: none;
		width: 100%;	
	}

	.voice__item:nth-child(odd) .voice__item-img, .voice__item:nth-child(even) .voice__item-img {
	  padding: 0 0 0.5em 0;
	}

	li.voice__item h3.voice__item-title {
		text-align: center;
		padding-bottom: 0.4em;
	}

	p.voice__item-meta {
		text-align: center;
	}

	p.voice__item-text {
		line-height: 1.6;
		text-align: justify;
		margin-bottom: 0.7em;
	}

	li.voice__item p.voice__item-text:last-of-type {
		margin-bottom: 0;
	}

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

	.flow__02 ul.flow__items {
		gap: 0.5em;
		margin: 1em 0 0;
	}

	.flow__02 li.flow__item {
		padding: 0.3em 0.5em 0.5em;
	}

	.flow__02 li.flow__item h3:before {
		top: 0.1em;
		left: 0.5em;
	}

	.flow__02 li.flow__item figure {
		width: 100%;
		margin: 0;
	}
	/* ◆◆◆ /流れ-02 文章あり縦並び ◆◆◆ */



	
	
	/* ◆◆◆ 流れ-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;
	}
	
	.flow__02 ul.flow__items li {
		flex-basis: calc(50% - 0.25rem); 
	  }
	/* ◆◆◆ /流れ-01 文章あり縦並び ◆◆◆ */

	
	/* ◆◆◆ TOP院長紹介 ◆◆◆ */
	.top-message {
		margin-top: 2em;
	}

	.top-message__box {
		padding: 1em;
	}

	.top-message__box figure {
		width: 100%;
		margin: 0 0 1.5em 0;
	}

	/* ◆◆◆ /TOP院長紹介 ◆◆◆ */

	
	/* ◆◆◆ アクセス ◆◆◆ */
	.access {
		margin-block: 0 3em;
	}

	.access figure {
		margin-bottom: 2em;
	}
	
	table.access__table th, table.access__table td {
		text-align: center;
		display: block;
		width: 100%;
		border: none;
	}
	
	table.access__table {
		border: solid 1px var(--brown);
	}
	
	table.access__table th {
		color: white;
		background: var(--light-brown);
	}
	
	.access-page__inner {
		padding-inline: 5%;
	}
	
	/* ◆◆◆ /アクセス ◆◆◆ */
	
	
	/* ◆◆◆ フッターボタン ◆◆◆ */
	.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;
	}
	/* ◆◆◆ /パンくずリスト ◆◆◆ */
	
	/* ◆◆◆ 症状ページ ◆◆◆ */
	/* ◆◆◆ 原因について ◆◆◆ */
	.cause {
		margin-top: 3em;
	}
	
	ul.cause__items {
		display: block;
	}
	
	body.page:not(.home) ul.cause__items {
		margin-top: 2em;
	}
	
	li.cause__item {
		width: 100%;
		margin-bottom: 1em;
	}
	
	/* ◆◆◆ 改善方法 ◆◆◆ */
	.methods {
		margin-top: 4em;
	}
	
	ul.methods__items {
		display: block;
		margin-block: 1.6em 2em;
	}
	
	li.methods__item {
		width: 100%;
		margin-bottom: 1em;
	}
	
	p.methods__message {
		margin-bottom: 4em;
	}
	
	/*放っておくと*/
	.leave-alone {
		margin-top: 4em;
	}
	
	li.leave-alone__item:before {
		top: -0.15em;
	}
	
	ul.leave-alone__items {
		margin-top: 1.8em;
	}
	
	p.leave-alone__item-text {
		text-align: justify;
	}
	
	/* ◆◆◆ その他の痛み ◆◆◆ */
	.other-pain {
		margin-block: 3em;
	}

	.other-pain ul {justify-content: center;
			padding-inline: 5%;
	}
	
	.other-pain ul li {
		width: 45%;
	}
	/* ◆◆◆ /症状ページ ◆◆◆ */
	
	/* ◆◆◆ インソールページ ◆◆◆ */
	.insole-merit h2 {
		margin-top: 2em;
	}
	.insole-improvement dl {
		margin-top: 1.5em;
	}
	li.insole-flow__item {
		padding: 1em 1.3em;
		margin-bottom: 1.4em;
	}
	li.insole-flow__item figure {
		float: none;
		width: 100%;
		padding-left: 0;
	}
	/* ◆◆◆ /インソールページ ◆◆◆ */
	
	
	/* ◆◆◆ 初めての方へP ◆◆◆ */
	.info-page .reason {
		padding-bottom: 0;
	}

	.info-page .flow__02 {
		margin-top: 1em;
	}

	.info-page .ba {
		margin-top: 1em;
	}

	.info-page .voice {
		padding-block: 0 4em;
	}
	/* ◆◆◆ /初めての方へP ◆◆◆ */
	
	
	/* ◆◆◆ 料金ページ ◆◆◆ */
	.price__item {
		padding: 1.5em;
	}
		p.price__item-text {
		line-height: 1.5;
	}
	/* ◆◆◆ /料金ページ ◆◆◆ */
	
	
	/* ◆◆◆ 院長紹介ページ ◆◆◆ */
	.staff {
		padding: 5%;
	}

	.staff-message__img {
		float: none;
		width: 100%;
		padding: 0 15% 1em ;
	}
	/* ◆◆◆ /院長紹介ページ ◆◆◆ */
	
	
	/* ◆◆◆ 対応症状リスト ◆◆◆ */
	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;
	}
	/* ◆◆◆ /対応症状リスト ◆◆◆ */
	
	
	/* ◆◆◆ 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 ◆◆◆ */
	
}



