@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap"); */

/* ------------------------------
    reset
------------------------------ */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
figure,
div,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form {
	margin: 0;
	padding: 0;
	border: none;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	letter-spacing: 0.025em;
	font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
	text-align: left;
	color: #333333;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
}

p {
	font-size: clamp(14px, 3vw, 16px);
	line-height: 1.5;
}

#wrapper {
	width: 100%;
	max-width: 750px;
	margin: auto;
}

.p-inner {
	padding: 0 2.667%;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

iframe {
	padding: 0;
	border: 0;
	outline: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

figure {
	line-height: 1;
}

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

picture {
	display: block;
	line-height: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition-property: all;
	transition: 0.3s linear;
}

a,
a * {
	outline: 1px solid transparent;
}

#overlay {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 750px;
	height: 100vh;
	height: 100dvh;
	z-index: -1;
	background: rgba(0, 0, 0, .6);
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .25s;
	transition: all .25s;
}

#overlay.is-active {
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 750px) and (any-hover: hover) {
	a {
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}

	a:hover {
		opacity: 0.8;
	}
}

input,
textarea {
	-webkit-appearance: none;
	border: none;
	border-radius: 0;
}

input:focus {
	outline: 0;
}

section {
	scroll-margin-top: clamp(50px, 10vw, 80px);
}


/* ------------------------------
    調整
------------------------------ */

.taL {
	text-align: left;
}

.taC {
	text-align: center;
}

.taR {
	text-align: right;
}

.fL {
	float: left;
}

.fR {
	float: right;
}

.mT10 {
	margin-top: 1.458%;
}

.mT20 {
	margin-top: 2.67%;
}

.mT30 {
	margin-top: 4%;
}

.mT40 {
	margin-top: 5.33%;
}

.mT50 {
	margin-top: 6.67%;
}

.is-450 {
	display: none;
}

/* ------------------------------
    header
------------------------------ */
.p-header {
	width: 100%;
	height: clamp(50px, 10vw, 80px);
	max-width: 750px;
	position: fixed;
	z-index: 30;
	background: #fff;
}

.p-header__inner {
	height: inherit;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 9px;
}

.p-header__logo {
	width: 43.2%;
}

.p-header__logo img {
	display: block;
}

/* ------------------------------
    MV
------------------------------ */
.p-mv {
	position: relative;
	padding-top: 80px;
	padding-top: clamp(50px, 10vw, 80px);
}

.p-mv img {
	display: block;
}

.p-mv__catch {
	position: absolute;
	bottom: -12%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 82.8%;
	margin: 0 auto;
}

/* ------------------------------
    バーガー
------------------------------ */
.p-drawer__icon {
	position: absolute;
	top: 50%;
	top: clamp(40%, 45%, 50%);
	right: 28.5px;
	transform: translateY(-50%);
	z-index: 1000;
}

.p-drawer__icon.is-active {
	top: 35px;
}

.p-drawer__icon.is-active .p-drawer__icon-bar1 {
	width: 32px;
	top: 50%;
	right: 20px;
	transform: rotate(-45deg);
	background: #fff;
}

.p-drawer__icon.is-active .p-drawer__icon-bar2 {
	display: none;
}

.p-drawer__icon.is-active .p-drawer__icon-bar3 {
	width: 32px;
	top: 50%;
	right: 15px;
	transform: rotate(45deg);
	background: #fff;
}

.p-drawer__icon-bars {
	width: 32px;
	height: 24px;
	display: block;
	position: relative;
	z-index: 1000;
}

.p-drawer__icon-bar1,
.p-drawer__icon-bar2,
.p-drawer__icon-bar3 {
	position: absolute;
	width: 32px;
	height: 3px;
	background: #683A1B;
	top: 0;
	left: 0;
	transition: ease 0.5s;
	border-radius: 5px;
}

.p-drawer__icon-bar1 {
	top: 0px;
}

.p-drawer__icon-bar2 {
	top: 12px;
}

.p-drawer__icon-bar3 {
	top: 24px;
}

.p-drawer__content {
	width: 100%;
	max-width: 90%;
	height: 100vh;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 250;
	transform: translateY(-105%);
	transition: all 0.5s;
	overflow-y: scroll;
	background: linear-gradient(#7E6762 0%, #7E6762 50%, #7B7270 100%);
	border-left: 10% solid rgba(0, 0, 9, 0.6);
}

.p-drawer__content.is-active {
	transform: translateY(0);
}

.p-drawer__content-items {
	text-align: center;
	padding-top: 112px;
	padding-bottom: 133px;
}

.p-drawer__content-item {
	text-align: center;
}

.p-drawer__content-item:not(:first-child) {
	margin-top: 5.33%;
}

.p-drawer__content-item a {
	font-size: clamp(12px, 3.5vw, 24px);
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
}

/* ------------------------------
    バナー
------------------------------ */
.p-banner {
	background: #A76D84;
	padding: 18.67% 0 5.38%;
}

/* ------------------------------
    知らないと大変
------------------------------ */
.p-note {
	background: #887F7E;
	padding-top: 5.33%;
}

.p-note__main-head {
	position: relative;
	font-size: clamp(18px, 3.5vw, 24px);
	font-weight: bold;
	color: #fff;
	background: #383838;
	padding: 1.458% 0 1%;
	text-align: center;
}

.p-note__main-head .note-decoration01,
.p-note__main-head .note-decoration02 {
	display: inline-block;
	width: 4.8%;
	height: 4.23%;
	vertical-align: middle;
}

.p-note__main-head .note-decoration01 {
	margin-right: 4%;
}

.p-note__main-head .note-decoration02 {
	margin-left: 4%;
}

.blinking {
	animation: blink 1s infinite;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

.p-note__head {
	font-size: clamp(20px, 3.5vw, 28px);
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
	text-align: center;
	margin-top: 4.13%;
}

.p-note__head .accent {
	color: #FFE201;
}

.p-note__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 3%;
	margin-top: 4%;
}

.p-note__left {
	width: 64.23%;
	padding: 0 0 4% 6%;
}

.p-note__left p {
	color: #fff;
	font-weight: 500;
	font-size: clamp(14px, 3vw, 16px);
}

.p-note__left .p-note__title {
	font-size: clamp(14px, 3vw, 20px);
	font-weight: bold;
	color: #fff;
	line-height: 1.6;
	border-bottom: 3px solid #FFE201;
	padding-bottom: 1.53%;
}

.p-note__text {
	padding-top: 1.53%;
}

.p-note__right {
	width: 36.73%;
	padding-right: 1%;
}

.p-note__right img {
	height: 100%;
	aspect-ratio: 268 / 211;
}

.p-note__sub-body {
	background: #383838;
}

.p-note__sub-title,
.p-note__sub-body .p-note__title {
	font-size: clamp(16px, 3vw, 20px);
	font-weight: bold;
	color: #fff;
	line-height: 1.6;
}

.p-note__sub-title .accent,
.p-note__sub-body .p-note__title .accent {
	color: #FFE201;
}

.p-note__sub-body .p-note__title .big {
	font-size: clamp(20px, 4vw, 30px);
}

.p-note__sub-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 6.8%;
}

.p-note__sub-body-image {
	width: 45.5%;
	margin-top: -3.5%;
}

.p-note__sub-body-image img {
	height: 100%;
}

.p-note__sub-body-contents {
	width: 63.8%;
	position: relative;
	top: 0;
	left: -8.5%;
	z-index: 1;
	padding: 3.2% 0 3.73%;
}

/* ------------------------------
    こんなお悩みの方に
------------------------------ */
.p-worries {
	position: relative;
	background: #F3F0EF;
	padding: 10.66% 0 3%;
	overflow-x: clip;
}

.p-worries::before {
	content: "";
	position: absolute;
	bottom: -8%;
	height: 8%;
	width: 100%;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	background: #F3F0EF;
	z-index: 1;
	scale: 1.1;
}

.p-worries::after {
	content: "";
	position: absolute;
	bottom: -9%;
	height: 8%;
	width: 100%;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	background: #A76D84;
	scale: 1.2;
}

.p-worries__title img {
	max-width: 62.26%;
}

.p-worries__body {
	padding-top: 4.94%;
}

.p-worries__lists {
	width: 70%;
	max-width: 442px;
	margin: 0 auto;
	margin-top: 1.86%;
}

.p-worries__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.p-worries__list:not(:first-of-type) {
	margin-top: 3.5%;
}

.p-worries__list p {
	font-size: clamp(16px, 3.5vw, 25px);
	font-weight: bold;
	border-bottom: 1px dotted #7E6762;
	border-bottom-width: 2px;
	border-spacing: 2px;
}

.p-worries__list .check {
	display: inline-block;
	width: 20.75px;
	height: 20.75px;
	margin-right: 3.5%;
}

.p-worries__list .accent {
	color: #A76D84;
}

/* ------------------------------
    医療HIFUとは
------------------------------ */
.p-medical {
	background: #FFF8EB;
	padding: 22% 0 6.6%;
}

.p-medical__title {
	display: inline-block;
	font-size: clamp(25px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-medical__text {
	margin-top: 4.4%;
	line-height: 2;
}

.p-medical__YouTube {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.p-medical__YouTube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.p-medical__YouTube-text {
	font-size: clamp(10px, 3vw, 14px);
	text-align: center;
}

.p-medical__item {
	background: #fff;
	padding: 4%;
}

.p-medical__item:not(:first-of-type) {
	margin-top: 4%;
}

.p-medical__item:nth-of-type(even) .p-medical__contents {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.p-medical__item:nth-of-type(even) .p-medical__left {
	margin-left: auto;
	margin-right: 7.2%;
}

.p-medical__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 3%;
}

.p-medical__left {
	width: 39.8%;
	margin-left: 7.2%;
}

.p-medical__right {
	width: 46.5%;
}

.p-medical__item-text {
	margin-top: 3.2%;
	line-height: 1.75;
}

/* ------------------------------
    医療HIFUを専門医が詳しく解説
------------------------------ */
.p-explanation {
	padding: 8% 0 6.6%;
}

.p-explanation__title {
	display: inline-block;
	font-size: clamp(25px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-explanation__sub-title {
	margin-top: 4.8%;
}

.p-explanation__sub-title img {
	max-width: 59.46%;
}

.p-explanation__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 4.26%;
	gap: 3.73%;
}

.p-explanation__greeting {
	width: 37.7%;
	background: #F3F0EF;
	padding: 1.458%;
}

.p-explanation__name {
	font-size: clamp(14px, 3.5vw, 18px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	line-height: 1.66;
	margin-top: 7.3%;
}

.p-explanation__text {
	width: 53.7%;
	line-height: 2;
}

/* ------------------------------
    cta
------------------------------ */
.c-cta {
	background: #DBC6D0;
	padding: 6.29% 0 6.6%;
}

.c-cta__title img {
	max-width: 71.6%;
}

.c-cta__banner {
	margin-top: 3.38%;
}

.c-cta__btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(10px, 1.5vw, 15px);
	padding: 0 3.2%;
	margin-top: 5.6%;
}

.c-cta__btns--gap {
	gap: clamp(14px, 1.5vw, 19px) clamp(10px, 1.5vw, 15px);
	margin-top: 3.6%;
}

/* ------------------------------
    医療HIFUが選ばれる理由
------------------------------ */
.p-reason {
	background: #F3F0EF;
	padding: 7.4% 0 6.6%;
}

.p-reason__title {
	display: inline-block;
	font-size: clamp(24px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-reason__sub-title {
	font-size: clamp(18px, 4vw, 24px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	text-align: center;
}

.p-reason__item {
	background: #fff;
	padding: 4%;
	padding-left: 0;
}

.p-reason__item:not(:first-of-type) {
	margin-top: 4%;
}

.p-reason__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: space-between;
	gap: 3%;
}

.p-reason__item:nth-of-type(even) {
	padding: 4%;
	padding-right: 0;
}

.p-reason__item:nth-of-type(even) .p-reason__contents {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.p-reason__item:nth-of-type(even) .p-reason__item-text {
	padding-left: 0;
	padding-right: 4%;
}

.p-reason__left {
	width: 50%;
}

.p-reason__right {
	width: 44.5%;
}

.p-reason__item-text {
	margin-top: 3.2%;
	line-height: 1.75;
	padding-left: 4%;
}

.p-reason__item-text .dot {
	border-bottom: 1px dotted #A76D84;
	border-bottom-width: 2px;
	border-spacing: 2px;
}

/* ------------------------------
      種類と料金
------------------------------ */
.p-price {
	padding: 6.6% 0;
}

.p-price__title {
	display: inline-block;
	font-size: clamp(24px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-price__sub-title {
	font-size: clamp(16px, 4vw, 24px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	text-align: center;
}

.p-price__text {
	margin-top: 4.6%;
}

.p-price__anchors {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4%;
	padding: 0 1%;
	margin-top: 4.26%;
}

.p-price__items {
	margin-top: 3.8%;
}

#price-anchor01 {
	background: #F8F7F6;
	border: 1px solid #7E6762;
}

#price-anchor02 {
	background: #FAF7F8;
	border: 1px solid #A76D84;
	margin-top: 6.6%;
}

#price-anchor02 h4 {
	border-bottom: 3px solid #A76D84;
}

.p-price__item {
	padding: 0 0 7.4%;
}

.p-price__contents {
	padding: 0 2%;
}

.p-price__body {
	margin-top: 7.4%;
}

.p-price__image img {
	max-width: 397px;
}

.p-price__item h4 {
	font-size: clamp(18px, 4vw, 24px);
	font-weight: bold;
	padding-bottom: 0.9%;
	border-bottom: 3px solid #7E6762;
	text-align: center;
}

.p-price__item h4:not(:first-of-type) {
	margin-top: 5%;
}

.p-price__item-text {
	margin-top: 3.2%;
	line-height: 1.75;
}

.p-price__table {
	padding: 1.458% 3.2% 0;
}

.p-price__table dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px dotted #7E6762;
	border-bottom-width: 2px;
	border-spacing: 2px;
	padding: 1.5% 0;
}

.p-price__table dt {
	width: 46%;
	font-size: clamp(14px, 3.5vw, 18px);
	font-weight: 500;
}

.p-price__table dd {
	width: 54%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: flex-end;
	gap: 5.3%;
}

.p-price__table .supplement {
	font-weight: 500;
	text-align: right;
}

.p-price__table .price {
	min-width: 150px;
	font-size: clamp(20px, 4vw, 26px);
	font-family: "Libre Caslon Display", serif;
	color: #361907;
	text-align: right;
	line-height: 1;
}

.p-price__table .price span {
	font-size: clamp(10px, 3vw, 12px);
	font-weight: 500;
}

.p-price__table .price span {
	font-size: clamp(10px, 3vw, 12px);
	font-weight: 600;
}

.p-price__item .big {
	font-size: clamp(18px, 4vw, 24px);
	text-align: center;
}

/* ------------------------------
    治療の流れ
------------------------------ */
.p-flow {
	padding: 8.2% 0 6.6%;
	background: #887F7E;
}

.p-flow__title {
	display: inline-block;
	font-size: clamp(24px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #fff;
	background: linear-gradient(transparent 70%, #A76D84 70%);
}

.p-flow__items {
	margin-top: 4.16%;
	padding: 6.6% 3.3% 8.4%;
	background: #fff;
	border-radius: 10px;
}

.p-flow__item:last-of-type .arrow {
	display: none;
}

.p-flow__body {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 5.3%;
}

.p-flow__item .arrow {
	display: inline-block;
	width: 42px;
	height: 20px;
	margin-top: 4.53%;
}

.p-flow__item:not(:first-of-type) {
	margin-top: 5.46%;
}

.p-flow__image {
	width: 33.8%;
}

.p-flow__contents {
	width: 60%;
}

.p-flow__item h3 {
	font-size: clamp(20px, 4.5vw, 28px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	text-align: center;
}

.p-flow__item p {
	line-height: 1.75;
	margin-top: 2%;
}

/* ------------------------------
    よくある質問
------------------------------ */
.p-faq {
	padding: 8.2% 0 5.3%;
	background: #F3F0EF;
}

.p-faq__title {
	display: inline-block;
	font-size: clamp(24px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-faq__items {
	margin-top: 4%;
}

.p-faq__item:not(:first-of-type) {
	margin-top: 2.6%;
}

.p-faq__q {
	position: relative;
	padding: 3.6% 5.8% 3% 12.3%;
	background: #fff;
	border: 1px solid #361907;
}

.p-faq__q::before,
.p-faq__q::after {
	content: '';
	position: absolute;
	background-color: #361907;
}

.p-faq__q::before {
	top: 50%;
	right: 5.8%;
	width: 26px;
	font-size: clamp(20px, 2.3vw, 30px);
	height: 4px;
	transform: translateY(-50%);
}

.p-faq__q::after {
	top: 50%;
	right: calc(5.8% + 11px);
	width: 4px;
	height: 26px;
	transform: translateY(-50%);
	transition: .2s;
}

.p-faq__q.open::after {
	transform: translateY(-50%) rotate(90deg);
}

.p-faq__q p {
	position: relative;
	font-size: clamp(14px, 3.5vw, 18px);
	font-weight: bold;
	padding-right: 30px;
}

.p-faq__q p::before {
	content: "Q";
	position: absolute;
	top: 0;
	left: -10%;
	display: inline-block;
	font-size: clamp(20px, 5vw, 30px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	line-height: 1;
	color: #361907;
}

.p-faq__q p span {
	color: #ED7082;
}

.p-faq__a {
	position: relative;
	line-height: 1.75;
	background: #F2EAED;
	padding: 3% 5%;
	padding-left: 12.3%;
	border: 1px solid #A76D84;
	display: none;
}

.p-faq__a::before {
	content: "A";
	position: absolute;
	top: 10%;
	left: 4.2%;
	display: inline-block;
	font-size: clamp(20px, 5vw, 30px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #A76D84;
}

.p-faq__a.open {
	display: block;
}

/* ------------------------------
    ダウンタイム・術後の過ごし方
------------------------------ */
.p-how-to {
	padding: 6.6% 0;
}

.p-how-to__title {
	display: inline-block;
	font-size: clamp(20px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-how-to__sub-title {
	font-size: clamp(18px, 4vw, 24px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	text-align: center;
}

.p-how-to__table-wrap {
	margin-top: 4%;
}

.c-table,
.c-table__th,
.c-table__td {
	border: 1px solid #7E6762;
	border-collapse: collapse;
}

.c-table__th,
.c-table__td {
	padding: 2.6% 3.3% 3.8%;
	vertical-align: middle;
}

.c-table__th {
	width: 27.1%;
	font-size: clamp(14px, 3.5vw, 18px);
	line-height: 1.5;
	font-weight: bold;
	color: #fff;
	background: #887F7E;
}

.c-table__td {
	line-height: 2;
	padding: 2.6% 4% 3.8%;
}

/* ------------------------------
    当院の特徴
------------------------------ */
.p-features {
	background: #FFF8EB;
	padding: 8.2% 0 6.6%;
}

.p-features__title {
	display: inline-block;
	font-size: clamp(24px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-features__item {
	background: #fff;
	padding: 4%;
}

.p-features__item:not(:first-of-type) {
	margin-top: 4%;
}

.p-features__item:nth-of-type(even) .p-features__contents {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.p-features__item:nth-of-type(even) .p-features__left {
	margin-left: auto;
	margin-right: 7.2%;
	text-align: center;
}

.p-features__item:nth-of-type(even) .p-features__left img {
	width: 70%;
	max-width: 196px;
}

.p-features__contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 3%;
}

.p-features__left {
	width: 39.8%;
	margin-left: 7.2%;
}

.p-features__right {
	width: 46.5%;
}

.p-features__item-text {
	margin-top: 3.2%;
	line-height: 1.75;
}

/* ------------------------------
    max-width: 730px
------------------------------ */
.p-monitor {
	background: url(../img/monitor-bg.jpg);
	padding: 5.4% 0 3%;
	background-size: cover;
	background-repeat: no-repeat;
}

.p-monitor__title {
	display: inline-block;
	font-size: clamp(24px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #A76D84;
}

.p-monitor__contents {
	width: 67%;
	margin-left: auto;
	margin-right: 0;
}

.p-monitor__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4%;
	margin-top: 5%;
}

.p-monitor__text {
	font-weight: 500;
	line-height: 1.75;
	text-align: center;
	margin-top: 2.4%;
}

.p-monitor__text .accent {
	color: #BC396D;
}

.p-monitor__item {
	font-weight: 500;
}

.p-monitor__item .check {
	display: inline-block;
	width: 15.75px;
	height: 15.75px;
}

.p-monitor__catch {
	max-width: 250px;
	margin: 0 auto;
	margin-top: 5%;
}

.p-monitor__btn {
	max-width: 366px;
	margin: 0 auto;
}

/* ------------------------------
    max-width: 730px
------------------------------ */
@media screen and (max-width: 730px) {
	.p-note__contents {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
}


/* ------------------------------
    max-width: 600px
------------------------------ */
@media screen and (max-width: 600px) {
	.p-price__table dl {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		padding: 3% 0;
	}

	.p-price__table dt {
		width: 100%;
	}

	.p-price__table dd {
		width: 100%;
		margin-top: 1%;
	}

	.p-price__table .price {
		min-width: 120px;
	}

	.p-monitor {
		background-size: cover;
		background-position: left 36% top 10%;
	}
}

/* ------------------------------
    クリニック案内
------------------------------ */
.p-clinic {
	padding: 8.2% 0 6.6%;
	background: #F3F0EF;
	margin-top: 6.6%;
}

.p-clinic__title {
	display: inline-block;
	font-size: clamp(24px, 5.5vw, 45px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	color: #564234;
	background: linear-gradient(transparent 70%, #D3B6C2 70%);
}

.p-clinic__text {
	margin-top: 4.6%;
	text-align: center;
}

.p-clinic__items {
	margin-top: 4.26%;
}

.p-clinic__item {
	display: flex;
}

.p-clinic__item:not(:first-of-type) {
	margin-top: 4%;
}

.p-clinic__item h3 {
	position: relative;
	font-size: clamp(20px, 4vw, 28px);
	font-family: "Noto Serif JP";
	font-weight: bold;
	text-align: center;
}

.p-clinic__item h3::before {
	content: "";
	position: absolute;
	bottom: -40%;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 15.65%;
	height: 5px;
	background: #A76D84;
}

.p-clinic__image {
	width: 47%;
}

.p-clinic__image img {
	height: 100%;
}

.p-clinic__contents {
	width: 53%;
	background: #fff;
	padding: 6.2% 3.9% 5.6%;
}

.p-clinic__address {
	margin-top: 14.2%;
}

.p-clinic__btn {
	margin-top: 13.1%;
}

/* ------------------------------
    sns
------------------------------ */
.p-sns {
	padding: 7.6% 0 6.6%;
}

.p-sns__title {
	font-size: clamp(16px, 3vw, 22px);
	font-weight: bold;
	text-align: center;
}

.p-sns__icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6.53%;
	margin-top: 4.2%;
}

.p-sns__icon img {
	width: clamp(40px, 5vw, 60px);
}

/* ------------------------------
    footer
------------------------------ */
.l-footer {
	background: linear-gradient(#7E6762 0%, #7E6762 50%, #7B7270 100%);
	padding: 9.8% 0 20%;
}

.p-footer__content-items {
	padding-bottom: 7.33%;
	border-bottom: 1px solid #fff;
}

.p-footer__content-item {
	text-align: center;
}

.p-footer__content-item:not(:first-child) {
			margin-top: 6.2%;
}

.p-footer__content-item a {
	font-size: clamp(12px, 3.5vw, 18px);
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
}

.p-footer__copyright {
	font-size: clamp(10px, 3vw, 14px);
	font-weight: bold;
	line-height: 1.428;
	color: #fff;
	text-align: center;
	padding-top: 2.53%;
}

/* ------------------------------
    フッター追従
------------------------------ */
.p-fix-btn {
	width: 100%;
	max-width: 750px;
	position: fixed;
	bottom: 0;
	z-index: 30;
	background: #F3F0EF;
}

.p-fix-btn__top img {
	position: absolute;
	top: -55px;
	right: 19px;
	width: 39px;
	height: 39px;
}

.p-fix-contents {
	width: 100%;
	max-width: 96%;
	margin: 0 auto;
	padding: 1.34% 0;
}

.p-fix-btn__items {
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 2.3%;
}

.p-fix-btn__sub {
	display: none;
	position: absolute;
	top: -100%;
	left: 50%;
	transform: translateX(-50%);
	width: 80.6%;
	margin: 0 auto;
	background: #F3F0EF;
	padding: 2.8% 2.268%;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
}

#shpo__links:hover .p-fix-btn__sub-btns {
	display: block;
}

.p-fix-btn__sub-btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(5px, 1.5vw, 20px);
}


/* ------------------------------
    max-width: 450px
------------------------------ */
@media screen and (max-width: 450px) {
	.is-pc {
		display: none;
	}

	.is-450 {
		display: block;
	}

	.p-drawer__icon {
		top: calc(50% - 3px);
		right: 20px;
	}

	.p-drawer__icon.is-active {
		top: 30px;
	}

	.p-drawer__icon-bars {
		height: 21px;
	}

	.p-drawer__icon-bar1,
	.p-drawer__icon-bar2,
	.p-drawer__icon-bar3 {
		height: 2px;
	}

	.p-drawer__icon-bar1 {
		top: 3px;
	}

	.p-drawer__icon-bar3 {
		top: 21px;
	}

	.p-note__contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.p-note__left {
		width: 100%;
		padding: 0 0 4% 0;
	}

	.p-note__right {
		width: 100%;
		padding-right: 0;
	}

	.p-note__right img {
		height: auto;
		max-height: 180px;
		aspect-ratio: 268 / 211;
		object-fit: contain;
	}

	.p-note__sub-body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding-left: 0;
	}

	.p-note__sub-body-image {
		width: 100%;
	}

	.p-note__sub-body-contents {
		width: 100%;
	}

	.p-note__sub-body-contents {
		width: 100%;
		left: 0;
		padding-top: 3.2%;
		padding-bottom: 3.73%;
	}

	.p-note__sub-title,
	.p-note__sub-body .p-note__title {
		text-align: center;
	}

	.p-note__sub-body-image img {
		height: auto;
		max-height: 180px;
		aspect-ratio: 318 / 210;
		object-fit: contain;
	}

	.p-worries__lists {
		width: 100%;
		max-width: 320px;
	}

	.p-medical__contents,
	.p-medical__item:nth-of-type(even) .p-medical__contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.p-medical__left {
		width: 100%;
		max-width: 70%;
		margin-left: 0;
	}

	.p-medical__item:nth-of-type(even) .p-medical__left {
		margin-left: auto;
		margin-right: auto;
	}

	.p-medical__right {
		width: 100%;
		margin-top: 5%;
	}

	.p-explanation__title {
		font-size: clamp(19px, 5vw, 25px);
	}

	.p-explanation__sub-title img {
		max-width: 80%;
	}

	.p-explanation__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.p-explanation__greeting {
		width: 100%;
	}

	.p-explanation__name {
		margin-top: 1.458%;
		text-align: center;
	}

	.p-explanation__text {
		width: 100%;
		margin-top: 3%;
	}

	.p-explanation__greeting {
		width: 100%;
		max-width: 250px;
		margin: 0 auto;
	}

	.p-reason__item {
		padding-left: 0;
	}

	.p-reason__right {
		padding-left: 4%;
	}

	.p-reason__item-text {
		padding-left: 4%;
	}

	.p-reason__item:nth-of-type(even) {
		padding-right: 0;
	}

	.p-reason__item:nth-of-type(even) .p-reason__right {
		padding-left: 0;
		padding-right: 4%;
	}

	.p-reason__contents,
	.p-reason__item:nth-of-type(even) .p-reason__contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.p-reason__right {
		width: 100%;
		margin-top: 5%;
	}

	.p-reason__left {
		width: 100%;
	}

	.p-price__image img {
		max-width: 250px;
	}

	.p-flow__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.p-flow__image,
	.p-flow__contents {
		width: 100%;
		max-width: 300px;
	}

	.p-flow__contents {
		margin-top: 2.6%;
	}

	.p-faq__q p {
		padding-right: 22px;
	}

	.p-faq__q::before {
		right: 5.8%;
		width: 20px;
		height: 3px;
	}

	.p-faq__q::after {
		right: calc(5.8% + 9px);
		width: 3px;
		height: 20px;
	}

	.p-features__contents,
	.p-features__item:nth-of-type(even) .p-features__contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.p-features__left {
		width: 100%;
		max-width: 70%;
		margin-left: 0;
	}

	.p-features__item:nth-of-type(even) .p-features__left {
		margin-left: auto;
		margin-right: auto;
	}

	.p-features__right {
		width: 100%;
		margin-top: 5%;
	}

	.p-monitor__text {
		text-align: left;
	}

	.p-monitor__items {
		grid-template-columns: 1fr;
		gap: 10%;
	}

	.p-monitor__catch {
		margin-top: 10%;
	}

	.p-fix-btn__top img {
		top: -45px;
		width: 29px;
		height: 29px;
	}
}