@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Slackside+One&display=swap');
:root {
	/*------▼基本設定▼------*/
	--color-background: #FFF;
	--color-font: #111;
	--color-primary: #F1A581;
	--color-primary-shade: #F4D73F;
	--color-primary-tint: #167C80;
	--color-secondary: #F1A581;
	--color-table-border: #F1A581;
	--color-table-th: #FFF2E7;
	--body-font-family: 'Zen Maru Gothic', sans-serif;
	--content-max-width: 1240px;
	/*------▼ヘッダー設定▼------*/
	--header-background: #FFF;
	--header-color-font: #444;
	--header-color-primary: #F1A581;
	--header-color-primary-shade: #FFF2E7;
	--header-color-primary-tint: #167C80;
	/*------▼フッター設定▼------*/
	--footer-background: #EEE1D6;
	--footer-color-font: #444;
	--footer-color-primary: #444;
	/*------▼フォント設定▼------*/
	--font-family01: 'Zen Maru Gothic', sans-serif;
	--font-family02: 'Slackside One', 'Zen Maru Gothic', sans-serif;
}
/*--------------------------------------------------
	親CSS調整
--------------------------------------------------*/
.post {
	background: none;
}
.post p {
	line-height: 1.8;
}
.post table th {
	background: var(--color-table-th);
	font-weight: 500;
}
@media print, screen and (min-width: 1024px) {
	.sticky-header #header > .inner {
		background: var(--header-background);
	}
}
@media print, screen and (max-width: 1023px) {
	.spmenu #menu p {
		white-space: nowrap;
	}
	nav#mainNav ul li a {
		background-color: var(--header-background) !important;
	}
	nav#mainNav ul li li a {
		color: var(--header-color-font) !important;
	}
}

/*--flow01--------------------------------------------*/
	
.flowlist01 {
	padding-left: 13rem;
	position: relative;
}
.flowlist01::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #FFF2E7;
	margin-left: -8px;
	display: block;
	position: absolute;
	top: 0;
	left: 13rem;
}
.flowlist01 > li {
	position: relative;
}
.flowlist01 > li:not(:last-child) {
	margin-bottom: 8vh;
}
.flowlist01 > li .icon {
	font-size:1.6rem;
	color: #fff;
	background: var(--color-primary-tint);
	padding: 0.8rem 2rem;
	border-radius: 5px;
	display: block;
	position: absolute;
	top: 0;
	left: -13rem;
	z-index: 100;
	font-style: italic;
	width: 10rem;
	text-align: center;
}
.flowlist01 > li .icon::after {
	content: "";
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent var(--color-primary-tint);
	position: absolute;
	top: 50%;
	left: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.flowlist01 > li dl {
	padding-left: 7rem;
	position: relative;
	padding-top: 0.7rem;
}
.flowlist01 > li dl::before,
.flowlist01 > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 2rem;
}
.flowlist01 > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: 0;
	background: var(--color-primary-shade);
	border-radius: 50%;
	left: -4px;
}
.flowlist01 > li dl::after {
	width: 50px;
	border-bottom: 1px dashed var(--color-primary-shade);
	position: absolute;
	left: 5px;
	top: 2.3rem;
}
.flowlist01 > li dl dt {
	margin-bottom: 0.5rem;
	color: var(--color-primary);
	font-weight: 600;
	font-size: var(--rem24w);
	line-height: 1.4;
}
.flowlist01 > li dl dd+dd {
	margin-top: 15px;
}
.flowlist01 > li dl dd img {
	display: block;
	width: 500px;
	margin: 0 !important;
}
@media (max-width: 768px) {
	.flowlist01 > li .icon {
		font-size: 1.2rem;
		width: 8rem;
	}
	.flowlist01 {
		padding-left: 10rem;
	}
	.flowlist01 > li .icon {
		left: -11rem;
	}
	.flowlist01::before {
		left: 10rem;
	}
	.flowlist01 > li dl {
		padding-left: 4.5rem;
	}
	.flowlist01 > li dl::after {
		width: 30px;
	}
}

/*--flow02--------------------------------------------*/

ul.flowlist02 {
	counter-reset: flow_list;
}
ul.flowlist02 > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	gap: min(calc(40px + (1vw - 19.2px) * 1.6181), 40px);
	width: 100%;
	padding: 40px;
	border-radius: 30px;
	background: #FFF2E7;
	position: relative;
}
.flowlist02 > li:not(:last-child) {
	margin-bottom: 60px;
}
.flowlist02 .flow_img {
	width: 35%;
}
.flowlist02 .flow_img img {
	border-radius: 30px;
}
.post .flowlist02 > li > dl {
	width: calc(65% - min(calc(40px + (1vw - 19.2px) * 1.6181), 40px));
	line-height: 1.8;
}
.flowlist02 > li:not(:last-child) dl::before,
.flowlist02 > li:not(:last-child) dl::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flowlist02 > li:not(:last-child) dl::before {
	border-width: 22px;
	border-top-color: var(--color-primary-shade);
}
.flowlist02 > li:not(:last-child) dl::after {
	border-width: 20px;
}
.post .flowlist02 > li > dl dt {
	position: relative;
	display: flex;
	align-items: center;
	font-size: min(calc(2.4rem + (1vw - 19.2px) * 0.4531), 2.4rem); /* 2.4-1.7rem (1920-375) */
	font-weight: 600;
	padding: 0 0 1.2rem 0;
	margin-bottom: min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
	border-bottom: 1px dotted var(--color-primary);
}
.flowlist02 > li dl dt .icon:before {
	content: counter(flow_list, decimal-leading-zero);
	counter-increment: flow_list;
	line-height: 1;
	color: #fff;
	background: var(--color-primary);
	padding: 5px 10px;
	border-radius: 3px;
	margin-right: 10px;
	position: relative;
	z-index: 100;
}
.post .flowlist02 > li > dl dd {
	padding: 0;
}
@media print, screen and (max-width: 768px) {
	.post .flowlist02 > li > dl, .flowlist02 .flow_img {
		width: 100%;
	}
	.flow_img::before {
		padding-top: calc(360px + (1vw - 7.68px) * 35.6234);
	}
	ul.flowlist02 > li {
		padding: 20px;
	}
	.flowlist02 .flow_img img {
		border-radius: 20px;
	}
}

/*--FAQ-------------------------------------------*/

.qa_list {
	cursor: pointer;
}
.qa_list .qa_list_inner dt {
	position: relative;
	font-weight: normal;
	margin: 1rem 0 0 0;
	display: flex;
	align-items: stretch;
	padding: 0rem 1rem 0rem 0rem;
	background: #ffffff;
	border: 1px solid #cccccc;
}
.qa_list .qa_list_inner dd .ans_flex {
	position: relative;
	font-weight: normal;
	margin: 0;
	display: flex;
	align-items: stretch;
	padding: 0;
	background: #ffffff;
}
.qa_list .qa_list_inner .a_ico {
	color: var(--color-primary-tint);
	background: #FFF2E7;
	line-height: 1.0;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 2.2rem;
	border-right: 1px solid #cccccc;
	width: 100%;
	text-align: center;
	max-width: 90px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--body-font-family);
}
.qa_list .qa_list_inner .q_ico {
	color: #ffffff;
	background: var(--color-primary);
	line-height: 1.0;
	padding: 1rem 1rem 1rem 1rem;
	font-size: 2.2rem;
	font-weight: bold;
	width: 100%;
	text-align: center;
	max-width: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--body-font-family);
	border-right: 1px solid #cccccc;
}
.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
	padding: 1.5rem 1.5rem 1.5rem 2rem;
	line-height: 1.7;
}
.qa_list .qa_list_inner .a_desc {
  line-height: 1.8;
  width: 100%;
}
.qa_list .qa_list_inner dt:after {
  content: '';
  position: absolute;
  top: 46%;
  right: 3rem;
  width: 12px;
  height: 12px;
  border-right: 1px solid #494949;
  border-bottom: 1px solid #494949;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.qa_list .qa_list_inner .active:after {
  top: 43%;
  right: 2rem;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}
.qa_list .qa_list_inner dd {
	display: none;
	position: relative;
	padding: 0;
	margin: 0 0 1rem 0;
	border: 1px solid #cccccc;
	border-top: 0;
}
@media only screen and (max-width: 959px) {
	.qa_list .qa_list_inner {
		margin-bottom: 8rem;
	}
}
@media only screen and (max-width: 768px) {
	.qa_list .qa_list_inner .q_desc, .qa_list .qa_list_inner .a_desc {
		padding: 0.5rem 1rem 0.5rem 1rem;
	}
	.qa_list .qa_list_inner dt {
		padding: 0rem 1rem 0rem 0rem;
	}
	.qa_list .qa_list_inner .a_ico, .qa_list .qa_list_inner .q_ico {
		max-width: 50px;
		padding: 1.2rem 1.0rem;
	}
	.qa_list .qa_list_inner dt:after {
		right: 1.5rem;
		width: 6px;
		height: 6px;
	}
	.qa_list .qa_list_inner .active:after {
		right: 1.0rem;
	}
}
@media only screen and (max-width: 559px) {
	.qa_list .qa_list_inner dd {
		font-size: 1.4rem;
	}
	.qa_list .qa_list_inner {
		margin-bottom: 6rem;
	}
	.qa_list .qa_list_inner dt {
		font-size: 1.4rem;
	}
}


/*--------------------------------------------------
	オリジナル設定
--------------------------------------------------*/
.fs { font-size: 85%; }
.fm { font-size: 115%; }
.fm2 { font-size: 130%; }
.red { color: #FC0000; }
.b { font-weight: bold; }
.pick { color: var(--color-primary); }
.pick2 { color: var(--color-primary-tint); }
p.txt_ind { text-indent: -1em; margin-left: 1em; }
p.nm { padding-bottom: 0; }
/**/
.cen { text-align: center; }
.lft { text-align: left; }
.rit { text-align: right; }
.pad_anchor { margin-top: -115px; padding-top: 115px; }
/* 非表示用 */
@media print, screen and (min-width: 641px){ /* PC用 */
	.dsp_smt { display: none; }
	.cen_pc { text-align: center; }
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	.dsp_hp { display: none; }
}
/*--------------------------------------------------
	ヘッダ
--------------------------------------------------*/
@media only screen and (min-width: 1024px) {
	#header a.head_btn.tel_btn::before {
		display: none;
	}
	#header a.head_btn.tel_btn {
		text-align: center;
	}
	#header a.head_btn.tel_btn:not(:hover) {
		color: var(--header-color-primary-tint);
	}
	#header a.head_btn.tel_btn span:not(.note) {
		font-size: 22px;
	}
	#header a.head_btn.tel_btn span:not(.note)::before {
		margin-right: 8px;
		font-size: 80%;
		font-weight: 400;
		font-family: 'FontAwesome';
		content: '\f095';
	}
	#header a.head_btn.tel_btn .note {
		font-size: 11px;
	}
	#header a.head_btn.mail_btn {
		flex-direction: row;
	}
	#header a.head_btn.mail_btn::before {
		margin: 0 8px 0 0;
		font-size: 95%;
	}
	/**/
	nav#mainNav {
		height: auto;
	}
	nav#mainNav ul li a b {
		font-weight: 500;
	}
	nav#mainNav ul li a span {
		color: var(--header-color-primary) !important;
		font-weight: normal;
	}
	nav#mainNav ul li.current-menu-item a, nav#mainNav ul li a:hover, nav#mainNav ul li a:active, nav#mainNav ul li.current-menu-parent a, nav#mainNav ul li.current-menu-ancestor a {
		background: none;
	}
	nav#mainNav ul li li a:hover, nav#mainNav ul li li.current-menu-item a, nav#mainNav ul li li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-item li a:hover, nav#mainNav ul li.current-menu-ancestor li.current-menu-item a, nav#mainNav ul li.current-menu-ancestor li a:hover {
		background: #f6f6f6;
	}
}
@media only screen and (max-width: 1300px) and (min-width: 1024px){
	#header .logo {
		width: 20%;
	}
	#header .logo img {
		width: auto;
		height: auto;
		max-width: 100%;
	}
	nav#mainNav ul li a {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media only screen and (max-width: 1023px) {
	body.mobile { margin-top: 60px; }
	body.mobile #breadcrumb { margin-top: 0; }
}
/*--------------------------------------------------
	フッタ
--------------------------------------------------*/
#footer .footer__logo img {
	max-height: var(--px100);
}
#copyright {
	background: none;
}
/*--------------------------------------------------
	共通
--------------------------------------------------*/
.bg_wide { position: relative; }
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
.box_w2_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_w2_sp.rev { flex-direction: row-reverse; }
.box_w2_sp.vtop { align-items: flex-start; }
.box_w2_sp.vcen { align-items: center; }
.box_w2_sp.vbtm { align-items: flex-end; }
.box_pad { padding: 20px; box-sizing: border-box; }
.box_w2 .column2_50:not(.cen) { text-align: left; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.bg_fix::before { background-attachment: fixed !important; }
	.box_w2 {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_w2.rev { flex-direction: row-reverse; }
	.box_w2.vtop { align-items: flex-start; }
	.box_w2.vcen { align-items: center; }
	.box_w2.vbtm { align-items: flex-end; }
	.box_w2.hcen { justify-content: center; column-gap: 2%; }
	.box_w2.htop { justify-content: flex-start; column-gap: 2%; }
	.box_pad { padding: 30px; }
	.box_w2 .column3_33 { width: 32%; }
	.box_w2 .column2_50 { width: 48.5%; }
	.box_w2 .column2_60 { width: 57%; }
	.box_w2 .column2_70 { width: 67%; }
	.box_w2 .column2_80 { width: 77%; }
	.box_w2 .w45 { width: 45%; }
	.box_w2 .w50 { width: 50%; }
}
@media print, screen and (min-width:769px){ /* PCのみ */
	.box_pad { padding: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	/* tableにスクロールバーを追加 */
	.tbl_scroll { overflow: auto; margin-bottom: 15px; white-space: nowrap; }
	.tbl_scroll table { margin-bottom: 0; }
	.tbl_scroll::-webkit-scrollbar{ height: 5px; }
	.tbl_scroll::-webkit-scrollbar-track{ background: #F1F1F1; }
	.tbl_scroll::-webkit-scrollbar-thumb { ackground: #BCBCBC; }
	.box_w2 .w45+.w50 { margin-top: 20px; }
}
/**/
.box_w2 .column3_33 img, .box_w2 .column2_30 img,
.box_w2 .column2_40 img, .box_w2 .column2_50 img {
	max-width: 100%;
}
/**/
#content .linkBtn {
	width: auto;
	max-width: none;
	border-radius: 999px;
	padding: 15px 60px;
	line-height: 1.4;
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#content .linkBtn {
		padding: 15px 30px;
	}
}
/**/
.txt_link {
	color: var(--color-primary);
	text-decoration: underline;
}
.txt_link:hover {
	text-decoration: none;
}
/**/
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1) !important;
	margin-right: calc(((100vw - 100%) / 2) * -1) !important;
}
.w600, .w800, .w900, .w1000 {
	width: 600px;
	max-width: 100%;
	margin: auto;
}
.w800 { width: 800px; }
.w900 { width: 900px; }
.w1000 { width: 1000px; }
/**/
.kadomaru img {
	border-radius: 40px;
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	.kadomaru img {
		border-radius: 30px;
	}
}
/*--------------------------------------------------
	トップページ
--------------------------------------------------*/
.home .post h1,
#contact_box h1,
#front-sectionPost h1 {
	color: var(--color-primary);
}
.home .post h1 b,
#contact_box h1 b,
#front-sectionPost h1 span span:first-child {
	display: block;
	color: var(--color-primary-shade);
	font-size: 85%;
	font-weight: normal;
	font-family: var(--font-family02);
	letter-spacing: 0;
}
.home .post h1.lft {
	text-align: left;
}
/**/
#top_about::before {
	background: url(/wp-content/uploads/top-about-img-bg.jpg.webp) no-repeat center center / cover;
}
#top_about h1 img {
	width: 120px;
	margin: 0 auto 10px;
}
#top_about .ttl {
	color: var(--color-primary-tint);
	font-size: 130%;
	font-weight: bold;
}
/**/
#top_contents::before {
	top: 200px;
	left: auto;
	right: 0;
	width: 70vw;
	height: calc(100% - 200px);
	margin-left: 0;
	background: url(/wp-content/uploads/top-content-bg2.jpg.webp) no-repeat center center / cover;
}
/**/
#top_flow_faq::before {
	height: 70%;
	background: url(/wp-content/uploads/top-content-bg.png.webp) no-repeat center center / cover;
}
#top_flow_faq .box {
	overflow: hidden;
	position: relative;
	padding: 15px;
	border-radius: 30px;
}
#top_flow_faq .txt {
	height: 100%;
	background: rgba(255,255,255,0.8);
	border-radius: 30px;
}
#top_flow_faq .txt h1 b {
	color: var(--color-primary-tint);
}
#top_flow_faq .txt h1 b+span {
	font-size: 80%;
}
#top_flow_faq .photo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
#top_flow_faq .photo img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: none;
}
#top_flow_faq .linkBtn {
	display: inline-block;
	padding: 15px 5px;
	padding-right: 60px;
	background: none;
	border-bottom: 1px solid var(--color-font);
	border-radius: 0;
	color: var(--color-font);
}
#top_flow_faq .linkBtn::before {
	position: absolute;
	top: 50%;
	right: 5px;
	display: block;
	width: 34px;
	height: 34px;
	background: var(--color-primary);
	border-radius: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	content: "";
}
#top_flow_faq .linkBtn::after {
	right: 19px;
	transition: all 0.3s ease-in-out;
}
#top_flow_faq .linkBtn:hover::before {
	right: 0;
}
#top_flow_faq .linkBtn:hover::after {
	right: 14px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	#top_flow_faq .box {
		width: 48%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#top_flow_faq .box+.box {
		margin-top: 20px;
	}
}
/**/
body:not(.home) #content:has(#contact_box) {
	padding-bottom: 0 !important;
}
#contact_box::before {
	background: url(/wp-content/uploads/top-contact-img-bg.jpg.webp) no-repeat center center / cover;
}
#contact_box h1 b {
	color: var(--color-primary);
}
#contact_box .in {
	background: rgba(255,255,255,0.9);
}
#contact_box .btn {
	width: 800px;
	max-width: 100%;
	margin: auto;
}
#contact_box .btn a {
	height: 100%;
	min-height: 90px;
	padding: 14px;
	background: var(--color-primary);
	border: 2px solid var(--color-primary);
	border-radius: 999px;
	color: #fff;
	line-height: 1.4;
	transition: all 0.3s ease-in-out;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#contact_box .btn a i {
	margin-right: 8px;
}
#contact_box .btn .tel a b {
	font-size: 150%;
}
#contact_box .btn a:hover,
#contact_box .btn .mail a {
	background: #fff;
	color: var(--color-primary);
}
#contact_box .btn .mail a:hover {
	background: var(--color-primary);
	color: #fff;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	#contact_box .btn li {
		width: 48.5%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#contact_box .btn li+li {
		margin-top: 15px;
	}
}
/**/
#front_top_content,
#front_bottom_content {
	position: relative;
	background: none;
}
#front_bottom_content::before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	background: #FBFBFB;
	content: "";
	z-index: -1;
}
/*--------------------------------------------------
	見出し
--------------------------------------------------*/
header#h1Header h1.title {
	color: var(--color-primary-tint);
}
#thumbImg::before, header#h1Header::before {
	background: #fff;
}
h1.title, .post h1, .post h2, .post h3, .post h4 {
	color: var(--color-font);
	line-height: 1.4;
}
/**/
.post h2.sub::after,
.post h2.noline::after {
	display: none;
}
.post h2 {
	color: var(--color-primary);
}
.post h2.sub b {
	display: block;
	color: var(--color-primary-shade);
	font-size: 85%;
	font-weight: normal;
	font-family: var(--font-family02);
	letter-spacing: 0;
}
/**/
.post h3.noline {
	padding: 0;
	border: none;
}
.post h3 {
	padding-left: 0;
	font-weight: 500;
}
/*--------------------------------------------------
	会社概要
--------------------------------------------------*/
#company_tbl th {
	width: 20%;
	white-space: nowrap;
}
.greeting{
	max-width: 900px;
    margin: 0 15rem;
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	.greeting{
    margin: 0 1rem;
}
}

/*--------------------------------------------------
	施設情報
--------------------------------------------------*/
#facility_list li {
	margin-bottom: 20px;
}
#facility_list li a {
	display: block;
	padding: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#facility_list h2 {
	text-align: left;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	#facility_list li {
		margin-bottom: 50px;
	}
	#facility_list li a {
		padding: 30px;
		/* フレックス */
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#facility_list .photo {
		width: 40%;
	}
	#facility_list .txt {
		width: 56%;
	}
}
/**/
#facility_detail .photo ul {
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
#facility_detail .photo ul li {
	width: calc((100% / 4) - 9px);
}
#facility_detail .box {
	padding: 20px;
	background: #FFF2E7;
	border-radius: 30px;
}
#facility_detail .box dt {
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px dotted var(--color-primary);
	font-size: var(--rem24w);
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
}
#facility_detail .box dd {
	padding: 0;
}
#facility_detail .btn li .linkBtn {
	display: block;
	padding: 15px 30px !important;
}
#facility_detail .map iframe {
	width: 100%;
	height: 300px;
}
#facility_detail .equipment_tbl th,
#facility_detail .price_tbl th {
	width: auto;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	#facility_detail .box {
		padding: 30px;
	}
	#facility_detail .btn li {
		width: 32%;
	}
	#photo_main,
	#photo_thumb {
		width: 48.5%;
	}
	#facility_detail .equipment_tbl ,
	#facility_detail .price_tbl {
		table-layout: fixed;
	}
	#facility_detail .equipment_tbl thead th:first-child,
	#facility_detail .price_tbl thead th:first-child {
		width: 18%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ用 */
	#facility_detail .btn li+li {
		margin-top: 15px;
	}
	#photo_main {
		margin-bottom: 15px;
	}
}
/*--------------------------------------------------
	プライバシーポリシー その他
--------------------------------------------------*/
#breadcrumb ul li b,
#sitemap_list li a b {
	display: none;
}
.post ul#sitemap_list.sitemap_disp_level_0 > li a {
	font-weight: normal;
	font-family: var(--font-family01);
}
/*--------------------------------------------------
	お問い合わせ
--------------------------------------------------*/
.wpcf7-form select {
	width: auto;
}
.wpcf7-form .must_fn {
	float: none;
}
/* ボタン */
.post form.wpcf7-form .linkBtn {
	width: 200px !important;
	padding: 0 !important;
}
.post form.wpcf7-form .linkBtn .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 0;
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.post form.wpcf7-form .linkBtn input[type="submit"] {
	padding: 15px 35px;
}