@charset "UTF-8";
/*
Theme Name: ISO ver2.0
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho+B1:wght@400;700&display=swap');

:root {
	--main-color: #59C2B8;
	--primary-btn: #3faca3;
	--sub-color: #084A43; /* #084A43 */
	--placeholder: #AEDAD6;
}
a{
	color: #359189;
}

html {
	font-size: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	color: #202020;
	font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1;
	background-image: url("img/background.jpg");
	background-repeat: repeat;
	background-color: rgba(255, 255, 255, 0.7);
    background-blend-mode: lighten;
}
#title {
	transition : all 1000ms;
}
#wrapper{
	width:100%;
	overflow-x: hidden !important;
}

.linkarea {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height: 100%;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.effect-fade {
	opacity : 0;
	transform : translate(0, 60px);
	transition : all 1000ms;
}

.effect-fade.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}

.load{
	width:100%;
	min-height:100%;
	z-index:999;
	background:white;
	opacity:1;
	transition:1s;
	overflow: hidden;
}

.wrapper{display:none;} .on{display:block;}
.off{
	opacity:0;
	transition:1s;
	animation: 0.1s linear 1s out-area forwards;
}
@keyframes out-area {
	0%{transform:translateX(0px);}
	100%{transform:translateX(10000px);}
}


.lh-240 {
	line-height: 240%;
}

/*-------------------------------------------------*/
/*
/*　ヘッダー（header.php）
/*
/*-------------------------------------------------*/

header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 80px;
	z-index: 9999;
	border-radius: 0px 0px 8px 8px;
	overflow: hidden;
}
header::after {
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: var(--main-color);
	opacity: 0.8;
	z-index: -1;
}
.header_width {
	position: relative;
	width: 1050px;
	height: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 1130px) {
	header {
		border-radius: 0px 0px 8px 8px;
	}
	.header_width {
		width: 90%;
	}
}
.menu_icon {
	position: absolute;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	cursor: pointer;
	transition: 0.3s;
}
.menu_icon::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("img/menu_icon_wh.svg");
}
.menu_icon.open::after {
	transition: 0.3s;
	transform: rotate(-360deg);
	background-image: url("img/menu_cl_icon_wh.svg");
}
.menu_icon img {
	width: 100%;
	height: 100%;
}
.menu_icon .off {
	display: none;
}
.header_logo {
	position: absolute;
	height: 50px;
	width: auto;
	top: 50%;
	transform: translateY(-50%);
	left: 46px;
}
@media screen and (max-width: 500px) {
	.header_logo {
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
.header_logo img {
	height: 100%;
}
.header_sns {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 170px;
	width: 26px;
	height: 26px;
}
@media screen and (max-width: 500px) {
	.header_sns {
		left: auto;
		right: 0px;
	}
}
.header_p1 {
	position: absolute;
	font-size: 12px;
	color: white;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
}
@media screen and (max-width: 500px) {
	.header_p1 {
		opacity: 0;
		pointer-events: none;
	}
}
.open_menu {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 30vw;
	height: 100vh;
	background: white;
	transform: translateX(-30vw);
	z-index: -1;
	padding: 100px 50px;
	opacity: 0;
	overflow: auto;
	filter: drop-shadow(0px 0px 6px rgba(0,0,0,0.2));
	transition: 0.5s;
}
.open_menu a {
	text-decoration: none;
}
.open_menu .title_sub {
	text-align: center;
	font-size: 14px;
	color: var(--primary-btn);
	margin-bottom: 30px;
}
.open_menu.open {
	transform: translateX(0px);
	opacity: 1;
	transition: 0.5s;
}
.open_menu ul {
	list-style: none;
}
.open_menu ul li {
	position: relative;
	border-radius: 4px;
	margin-bottom: 20px;
	overflow: hidden;
	padding: 27px;
}
.open_menu ul li::before {
	position: absolute;
	content: "";
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: var(--main-color);
	opacity: 0.84;
	z-index: -1;
	transition: 0.3s;
}
.open_menu ul li:hover::before {
	opacity: 0.5;
	transition: 0.3s;
}
.open_menu ul li::after {
	position: absolute;
	content: "";
	top: 50%;
	right: 20px;
	width: 26px;
	height: 26px;
	transform: translateY(-50%);
	background-image: url("img/arrow_wh_right.svg");
}
.open_menu ul li img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}
.open_menu ul li p {
	font-size: 20px;
	font-weight: bold;
	color: white;
}
.open_menu .line_add {
	width: 100%;
	margin-top: 20px;
}
@media screen and (max-width: 1130px) {
	.open_menu {
		width: 80vw;
		transform: translateX(-80vw);
	}
}
@media screen and (max-width: 500px) {
	.open_menu {
		width: 100vw;
		transform: translateX(-100vw);
	}
	.open_menu {
		padding: 100px 20px;
	}
	.open_menu ul li p {
		font-size: 16px;
		letter-spacing: 1.4px;
	}
}

.floating-btn {
	position: fixed;
	display: block;
	gap: 8px;
	z-index: 99999;
	left: 0px;
	bottom: 0px;
	width: 100%;
	max-height: 120px;
	padding: 16px 12px;
	background: rgba(0,0,0,0.7);
	text-align: center;
	transition: .3s;
}
.floating-btn.hidden {
	opacity: 0;
	transition: .3s;
	pointer-events: none;
}
.floating-btn img {
	width: 90%;
	max-width: 400px;
}
.floating-btn img.finger {
	display: none;
	position: absolute;
    bottom: 12px;
    left: 10%;
    width: 54px;
}
@media screen and (max-width: 600px) {
	.floating-btn img.finger {
		display: block;
	}
}

/*-------------------------------------------------*/
/*
/*　フッター（footer.php）
/*
/*-------------------------------------------------*/

footer {
	padding: 40px 0px;
	background: #07544D;
}
.footer_width {
	width: 900px;
	margin: auto;
}
.footer_logo {
	text-align: center;
	margin: 60px auto;
}
.footer_logo img {
	width: 50vw;
	max-width: 320px;
	height: auto;
	object-fit: contain;
}
footer .title {
	font-size: 20px;
	color: white;
	margin-bottom: 16px;
}
footer .description {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1.4;
	margin-bottom: 30px;
	color: white;
}
.sns_list {
	display: flex;
	column-gap: 10px;
	list-style: none;
}
.sns_list li {
	position: relative;
	width: 39px;
	height: 39px;
}
.sns_list li img {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1130px) {
	.footer_width {
		width: 90%;
	}
}

.footer_bunner li {
    list-style: none;
    position: relative;
    margin: auto auto 14px auto;
    width: 100%;
    max-width: 260px;
    height: auto;
}
.footer_bunner li img {
    width: 100%;
    height: auto;
}

/*-------------------------------------------------*/
/*
/*　トップ（~/）
/*
/*-------------------------------------------------*/
/*


.firstView {
	position: relative;
	width: 100vw;
	height: 60vh;
	margin: auto auto 80px auto;
}
.firstView::before {
	content: "";
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
}
.firstView img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.firstView .fv_wave_shape {
	position: absolute;
	width: 100%;
	height: auto;
	object-fit: cover;
	left: 50%;
	transform: translateX(-50%) scale(1.1);
	bottom: -1px;
}
@media screen and (max-width: 730px) {
	.firstView .fv_wave_shape {
		height: 40px;
		left: 0;
		transform: none;
	}
}
.main_copy_text {
	font-family: "Shippori Mincho B1", serif;
	position: absolute;
	width: 90%;
	max-width: 1050px;
	bottom: 120px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 48px;
	letter-spacing: 0.16em;
	line-height: 160%;
}
@media screen and (max-width: 730px) {
	.main_copy_text {
		font-size: 24px;
	}
}
*/

.firstView{
  position: relative;
  width: 100vw;
  height: 60vh;
  overflow: hidden;

  /* 画像 + 薄い黒オーバーレイを多重背景で */
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.2)),
    var(--hero) center / cover no-repeat;

  /* ▼ “完全エンコード済み”のマスクを bottom に敷く（白=表示 / 黒=透明） */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 240' preserveAspectRatio='none'%3E%3Crect width='1440' height='240' fill='white'/%3E%3Cpath d='M0,206 C360,222 1080,190 1440,206 L1440,240 L0,240 Z' fill='black'/%3E%3C/svg%3E")
               bottom / 100% 100% no-repeat;
mask:         url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 240' preserveAspectRatio='none'%3E%3Crect width='1440' height='240' fill='white'/%3E%3Cpath d='M0,206 C360,222 1080,190 1440,206 L1440,240 L0,240 Z' fill='black'/%3E%3C/svg%3E")
               bottom / 100% 100% no-repeat;
mask-mode: luminance;
}

/* テキストは最前面 */
.firstView .main_copy_text{
  font-family: "Shippori Mincho B1", serif;
  position: absolute;
  z-index: 1;
  width: 90%;
  max-width: 1050px;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 48px;
  letter-spacing: .16em;
  line-height: 160%;
}

@media (max-width: 730px){
  .firstView{ height: 55vh; }
  .firstView .main_copy_text{ font-size: 24px; }
}



.main_block {
	position: relative;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	gap: 80px;
	width: 90%;
	max-width: 1050px;
	margin: auto;
	padding: 120px 0px;
}
@media screen and (max-width: 730px) {
	.main_block {
		gap: 60px;
	}
}
.dark_bg {
	position: relative;
	padding: 120px 0px;
	background-image: url("img/fv_background.jpeg");
	background-size: cover;
	background-position: center;
}
.dark_bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--sub-color);
	opacity: 0.9;
}
.dark_bg .wrapper {
	position: relative;
	width: 90%;
	max-width: 1050px;
	margin: auto;
}
.back_img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.price_list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 60px;
}
.price_list li {
	display: flex;
	gap: 60px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--main-color);
	color: white;
	align-items: center;
}
.price_list li p:nth-child(1){
	width: 200px;
	flex-shrink: 0;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0em;
}
.price_list li p:nth-child(2){
	width: 100%;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0em;
}
.price_notes {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	color: white;
	list-style: none;
}
.price_notes li {
	position: relative;
	padding-left: 24px;
	line-height: 140%;
	letter-spacing: 0.03em;
}
.price_notes li::before {
	content: "※";
	position: absolute;
	top: 0px;
	left: 0px;
	font-family: "Noto Sans";
}
@media screen and (max-width: 730px) {
	.price_list li p:nth-child(1){
		width: 160px;
		font-size: 16px;
	}
	.price_list li p:nth-child(2){
		text-align: right;
		line-height: 120%;
	}
	.price_notes {
		font-size: 12px;
	}
}
.side_block {
	width: 335px;
}

.therapist_top {
	display: flex;
	justify-content: center;
	column-gap: 40px;
}
.top_therapist_img {
	width: 402px;
	height: 339px;
}
.therapist_pr_block {
	display: none;
	position: relative;
	width: 263px;
	height: auto;
	background: white;
	transition: 0.3s;
}
.therapist_pr_block.on {
	display: block;
}
@media screen and (max-width: 730px) {
    .therapist_pr_block.on {
        display: none;
    }
}
.therapist_pr_block:hover {
	filter: drop-shadow(0px 2px 6px rgba(0,0,0,0.2));
	transition: 0.3s;
}
.therapist_pr_block .thumbnail {
	position: relative;
	width: 263px;
	height: 263px;
}
.therapist_pr_block .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.therapist_pr_block .thumbnail .plan_badge {
	position: absolute;
	top: 0px;
	right: 10px;
	font-size: 23px;
	font-weight: bold;
	color: white;
	background: var(--primary-btn);
	padding: 7px 10px;
	border-radius: 0px 0px 2px 2px;
}
.therapist_pr_block .name {
	font-size: 20px;
	font-weight: bold;
	color: #5D5D5D;
	margin-bottom: 8px;
}
.therapist_pr_block .profile {
	font-size: 16px;
	color: #5D5D5D;
}

.therapist_list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.therapist_list_sec {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 0px;
	overflow: hidden;
	transition: 0.3s;
}
.therapist_list_sec.open {
	height: auto;
	transition: 0.3s;
}
.therapist_list li {
	position: relative;
	width: Calc( (100% - 80px) / 3 );
	margin-bottom: 32px;
	transition: 0.3s;
}
.therapist_list li .thumbnail {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 10px;
	filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.14));
	transform: .3s;
}
.therapist_list li:hover .thumbnail {
	transform: .3s;
	filter: drop-shadow(0px 4px 10px rgba(0,0,0,0));
}
.therapist_list li:hover .more_button {
	transition: .1s;
	color: var(--main-color);
	background: #EFEFEF;
}
.therapist_list li .thumbnail img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.therapist_list li .thumbnail::before {
	content: "";
	display: block;
	padding-top: 100%;
}
.therapist_list li .plan_badge {
	position: absolute;
	top: 0px;
	right: 10px;
	font-size: 14px;
	font-weight: bold;
	padding: 7px 10px;
	color: white;
	background: var(--primary-btn);
	border-radius: 0px 0px 4px 4px;
}
.therapist_text {
	padding: 16px 4px;
}
.therapist_list li .name {
	font-size: 16px;
	font-weight: bold;
	color: #5D5D5D;
	margin-bottom: 6px;
}
.therapist_list li .profile {
	font-size: 15px;
	color: #5D5D5D;
	letter-spacing: 0.06em;
}
.more_therapist {
	text-align: center;
	padding: 18px 0px;
	width: 100%;
	background: #D0DCE6;
	margin-bottom: 50px;
}
.more_therapist div {
	display: inline-block;
	position: relative;
	font-size: 18px;
	color: #9FB1BF;
	padding-right: 38px;
}
.more_therapist div::after {
	position: absolute;
	content: "";
	width: 26px;
	height: 26px;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	background-image: url("img/under_arrow.svg");
}
.news_title {
	font-size: 18px;
	font-weight: bold;
	color: var(--primary-btn);
	margin-bottom: 30px;
	padding-left: 20px;
	border-left: 4px solid var(--primary-btn);
}
.news_list {
	width: 100%;
	list-style: none;
}
.news_list li {
	position: relative;
	padding: 20px;
	border-bottom: 1px solid #D0DCE6;
}
.news_list li .date {
	font-size: 12px;
	color: #5D5D5D;
	margin-bottom: 10px;
}
.news_list li .title {
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.news_more {
	position: relative;
	text-align: right;
	font-size: 14px;
	color: #9FB1BF;
	padding-right: 24px;
	margin-top: 30px;
}
.news_more::after {
	position: absolute;
	content: "";
	right: 0px;
	top: 50%;
	width: 14px;
	height: 14px;
	transform: translateY(-50%) rotate(-90deg);
	background-image: url("img/under_arrow.svg");
	background-size: contain;
	transition: 0.3s;
}
.news_more:hover::after {
	transform: translateX(10px) translateY(-50%) rotate(-90deg);
	transition: 0.3s;
}
.twitter_block {
	margin: 50px auto;
}

.contact_btn {
	position: relative;
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	color: white;
	text-align: center;
	padding: 27px 0px;
	border-radius: 100vh;
	background: var(--primary-btn);
}

@media screen and (max-width: 1130px) {
	main {
		display: block;
	}
	.main_block {
		width: 90%;
	}
	.side_block {
		margin-top: 50px;
		width: 100%;
	}
}
@media screen and (max-width: 730px) {
	.therapist_top {
		display: block;
	}
	.top_therapist_img {
		margin: auto auto 40px auto;
	}
	.therapist_pr_block {
		margin: auto auto 50px auto;
	}
	.therapist_list li {
		width: 48%;
	}
	.top_therapist_img {
		width: 100%;
		height: auto;
	}
	.more_therapist div {
		font-size: 14px;
	}
}

/*-------------------------------------------------*/
/*
/*　シングル（~/single.php）
/*
/*-------------------------------------------------*/

.therapist_flex {
	display: flex;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 40px;
}
.therapist_thumbnail {
	position: relative;
	width: 200px;
	height: auto;
	flex-shrink: 0;
	margin-right: 40px;
	overflow: hidden;
}
.therapist_thumbnail::before {
	content: "";
	display: block;
	padding-top: 100%;
}
.therapist_thumbnail img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.therapist_description {
	width: 100%;
	margin: auto;
}
.therapist_description .name {
	font-size: 24px;
	font-weight: bold;
	color: #3B3B3B;
	margin-bottom: 16px;
}
.therapist_description .profile {
	font-size: 16px;
	color: #3B3B3B;
	letter-spacing: 1.4px;
	line-height: 28px;
}
.therapist_description .plan {
	display: inline-block;
	margin-top: 14px;
	font-size: 16px;
	font-weight: bold;
	color: white;
	background: #6395BF;
	padding: 12px 28px;
	border-radius: 4px;
}
.single_contents {
	padding-bottom: 100px;
/*	border-bottom: 1px dashed var(--main-color);*/
	margin-bottom: 100px;
}
.single_contents p {
	margin: 20px auto;
	line-height: 1.4;
}
.single_contents h2 {
	padding: 16px 0px;
	border-bottom: 1px solid var(--main-color);
	margin-bottom: 30px;
}
.single_contents ul {
	margin-left: 30px;
}
.single_contents ol {
	margin-left: 30px;
	line-height: 2;
}
.single_date {
	font-size: 14px;
	margin-bottom: 20px;
}
.single_title {
	font-size: 24px;
	margin-bottom: 40px;
	font-weight: bold;
	letter-spacing: 1.4px;
	line-height: 1.4;
}
@media screen and (max-width: 500px) {
	.therapist_flex {
		display: block;
	}
	.therapist_thumbnail {
		width: 100%;
		margin-bottom: 30px;
	}
	.therapist_description .plan {
		text-align: center;
		width: 100%;
	}
}
.single_mail {
	position: relative;
	width: 100%;
	font-size: 20px;
	padding: 12px;
	text-align: center;
	color: white;
	background: var(--main-color);
	margin-bottom: 60px;
}

/*-------------------------------------------------*/
/*
/*　お知らせ（~/news）
/*
/*-------------------------------------------------*/


.news_block {
	width:900px;
	margin: auto;
}
.news_block ul {
	list-style: none;
}
.news_block ul li {
	position: relative;
	padding: 16px 0px;
	border-bottom: 1px solid #D0DCE6;
}
.news_block ul li .date {
	font-size: 14px;
	margin-bottom: 12px;
}
.news_block ul li .title {
	font-size: 18px;
	line-height: 28px;
}

@media screen and (max-width: 980px) {
	.news_block {
		width: 90%;
	}
}

/*-------------------------------------------------*/
/*
/*　セラピスト（~/therapist）
/*
/*-------------------------------------------------*/

.therapist {
	width: 1050px;
	margin: auto;
}
@media screen and (max-width: 1130px) {
	.therapist {
		width: 90%;
	}
}
.therapist .main_block {
	width: 100%;
}


/*-------------------------------------------------*/
/*
/*　ページ（~/page.php）
/*
/*-------------------------------------------------*/

.page_title {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
	line-height: 1.4;
}


/*-------------------------------------------------*/
/*
/*　フォーム（~/page.php）
/*
/*-------------------------------------------------*/


.input_text {
	font-size: 16px;
	padding: 12px;
	border: 1px solid var(--main-color);
	margin-top: -18px;
	color: #3B3B3B;
	width: 100%;
	background: white;
}
.input_textarea {
	font-size: 16px;
	padding: 12px;
	border: 1px solid var(--main-color);
	width: 100%;
	margin-top: -18px;
	color: #3B3B3B;
	min-height: 120px;
	max-height: 300px;
	background: white;
}

.input_text::placeholder,
.input_textarea::placeholder {
	color: var(--placeholder);
}
.single_contents .label_p {
	font-size: 16px;
	margin: 0px;
}
.input_submit {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	padding: 12px 24px;
	background: var(--primary-btn);
	text-align: center;
	border-radius: 100vh;
	width: 200px;
}
.form-profile-group {
	display: flex;
	gap: 8px;
}
.form-profile-group div {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.top_therapist_block {
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}
.top_therapist_block .image {
	position: relative;
	max-width: 540px;
	width: 90%;
	filter: drop-shadow(0px 4px 20px rgba(0,0,0,0.14));
}
.top_therapist_block .image::before {
	display: block;
	content: "";
	padding-top: 100%;
}
.top_therapist_block .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.top_therapist_block .top_therapist_info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.top_therapist_block .top_therapist_info a {
	text-align: center;
}
.top_therapist_block .top_therapist_info .sub_en_text {
	font-family: "Shippori Mincho B1", serif;
	font-size: 16px;
	letter-spacing: 0.06em;
	color: var(--main-color);
}
.top_therapist_block .top_therapist_info .name {
	font-size: 24px;
}
.top_therapist_block .top_therapist_info .profile {
	font-size: 18px;
}
.top_therapist_block .top_therapist_info .description {
	font-size: 15px;
	letter-spacing: 0.06em;
	line-height: 160%;
}
.more_button {
	display: inline-block;
	padding: 12px 24px;
	line-height: 100%;
	border-radius: 100vh;
	background: var(--primary-btn);
	color: white;
	transition: .3s;
}
.more_button:hover {
	transition: .1s;
	color: var(--primary-btn);
	background: #EFEFEF;
}

.h2_text_set {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 60px;
}
.h2_text_set .en {
	font-family: "Shippori Mincho B1", serif;
	font-size: 32px;
	line-height: 100%;
	letter-spacing: 0.06em;
	color: var(--main-color);
}
.h2_text_set .ja {
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;
	line-height: 100%;
}
.h2_text_set.wh .ja {
	color: white;
}
@media screen and (max-width: 800px) {
	.h2_text_set {
		gap: 12px;
		margin-bottom: 40px;
	}
	.h2_text_set .en {
		font-size: 24px;
	}
	.h2_text_set .ja {
		font-size: 16px;
	}
}

.salon_image {
	width: 100%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	margin-top: 60px;
}
.salon_image::before {
	content: "";
	display: block;
	padding-top: 40%;
}
.salon_image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single_contents .form_note_p {
	font-size: 14px;
	line-height: 1.6;
	margin: -20px auto 20px auto;
}
.input_message {
	width: 100%;
	max-width: 500px;
	min-height: 120px;
	max-height: 200px;
	border: 1px solid var(--main-color);
	padding: 12px;
	font-size: 16px;
	color: #3B3B3B;
	line-height: 1.6;
	background: white;
}
.input_message::placeholder {
	color: var(--placeholder);
}
.single_contents .label_p span {
	color: #FF0004;
	padding-left: 4px;
	background: none;
}
.single_contents .label_p span.sub {
	margin-right: 10px;
	padding: 4px 6px;
	font-size: 14px;
	color: white;
	background: gray;
	border-radius: 2px;
}
.input_time {
	display: inline-block;
	padding: 12px 26px;
	font-size: 16px;
	border: 1px solid var(--main-color);
	margin: auto 8px 10px auto;
}
.form_time_p {
	display: inline-block;
	font-size: 16px;
	margin: auto 8px 10px auto;
}
.form_title {
	font-size: 24px;
	font-weight: bold;
	padding: 6px 12px;
	border-left: 6px solid var(--primary-btn);
	margin: 40px auto 30px;
}


/*スマホサイズのCSS
---------------------------------------------*/
@media screen and (max-width: 800px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}
