@charset "UTF-8";
/* CSS Document */
/* ヘッダー　================================================== */
header{
	position: relative;
	width: 100%;
	z-index: 999;
}
.site-header{
	background:rgba(255,255,255,1);
    position: fixed;
    width: 100%;
	height: 90px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
	transition: .5s;
}
.site-header .top_wrap{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-header .header_title{
	margin-left: 15px;
	margin-top: 10px;
	width: fit-content;
}
.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
	font-size: clamp(1.1rem, 1.01rem + 0.32vw, 1.3rem);
}
.site-header h1 img{
	width: auto;
	height: 70px;
	vertical-align: middle;
	transition: .5s;
}
.site-header h1 a{
	color: #333;
	transition: .5s;
}
.site-header.transform h1 a{
	color: #333;
}

.header_contact{
	position: absolute;
	width: fit-content;
	top: 85px;
	right: 0;
	background-color: #fff;
	padding: 0 10px 5px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-bottom-left-radius: 50px;
	box-shadow: 1px -1px 3px #fff, -1px 1px 3px rgba(0,0,0,0.05);
}

.header_phone{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: fit-content;
	gap:15px;
}
.site-header .h_phone a{
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	padding: 0.25rem;
	color: #e086b3;
	transition: .3s;
}
.site-header .h_phone a:hover{
	opacity: 0.5;
}
.site-header .h_mail a{
	display: block;
	font-size: 0.9rem;
	font-weight: 500;
	text-align: center;
	background:#e086b3;
	border: solid 1px #e086b3;
	background-size: 200%;
	background-position: left;
	color: #fff;
	border-radius: 50px;
	padding:0.5rem 1rem;
	transition: .5s;
}
.site-header .h_mail a:hover{
	background:#fff;
	color: #e086b3;
}
.header_link{
	width: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding-top: 5px;
}
.header_link a{
	display: block;
	transition: .3s;
}
.header_link a img{
	width: auto;
	height: 30px;
}
.header_link a:hover{
	opacity: 0.5;
}

.site-header nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
	padding:0 30px;
	width: 100%;
	max-width: 900px;
	gap: 30px;
	margin-inline: auto;
}
.site-header nav ul li{
	padding-bottom: 10px;
	font-size:1rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.site-header nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #333;
	font-weight: 500;
	transition: 0.5s;
}
.site-header nav ul li a span{
	font-family: "Inter", sans-serif;
	font-weight: 700;
	color:#e086b3;
	font-size: 80%;
}
.site-header nav ul li::after{
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 3px;
	background:rgba(224,134,179,0.0);
	content: '';
	transition: transform 0.35s;
	transform: translate3d(-100%,0,0);
	border-radius: 10px;
}
.site-header nav ul li:hover::after{
	background:rgba(224,134,179,1.0);
	transform: translate3d(0,0,0);
}
@media (max-width: 1200px){
	.site-header{
		height: 90px;
	}
	.site-header h1 img{
		height: 70px;
	}
}
@media (max-width: 960px){
	.site-header .header_title{
		margin-top: 10px;
	}
	.site-header h1{
		margin-left: 0;
	}
}
@media (max-width: 750px){
	.site-header .header_title{
		margin-top: 10px;
		margin-left: 10px;
	}
	.site-header h1 img{
		height: 60px;
	}
}
/* FV　================================================== */
.slide_wrap{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.slider{
	overflow: hidden;
	clip-path: ellipse(100% 100% at top);
}
.slider::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background: linear-gradient(rgba(0,0,0,0.1) 10%,rgba(0,0,0,0.1)) ;
}
.slider li{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	min-height: 650px;
	max-height: 1080px;
	z-index: 2;
	overflow: hidden;
}
.slider li.top01{
	background:url("../img/img01.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.slider li.top02{
	background:url("../img/img02.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.slider li.top03{
	background:url("../img/img03.webp") no-repeat;
	background-size: cover;
	background-position: left;
}

@keyframes fadezoom{
	0%{
		transform: scale(1);
	}
	100%{
		transform: scale(1.1);
	}
}
.add-animation{
	animation: fadezoom 10s 0s forwards;
}
.slide_wrap .copy{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	width: fit-content;
}

.slide_wrap .copy h2{
	margin: auto;
	text-align: center;
	color: #e086b3;
	font-size: clamp(1.7rem, 1.205rem + 1.76vw, 2.8rem);
	font-weight: 700;
	text-shadow: 2px 2px 15px rgba(255,255,255,0.5),-2px -2px 15px rgba(255,255,255,0.5),
	1px 1px #fff;
	white-space: nowrap;
	line-height: 1.5;
}
.slide_wrap .copy h2 span{
	display: block;
	font-size: 60%;
	margin-top: 8px;
}
.slide_wrap .copy .frame_tl{
	position: absolute;
	top: -100px;
	left: -100px;
	width: 300px;
	 opacity: 0.5;
}
.slide_wrap .copy .frame_br{
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 300px;
	 opacity: 0.5;
}
.slide_wrap .copy .frame_tl img,
.slide_wrap .copy .frame_br img{
	width: 100%;
	mix-blend-mode: overlay;
}
.slide_wrap .cut01{
	position: absolute;
	z-index: 6;
	bottom: 0;
	right: 8%;
	width: auto;
	height: 300px;
}
.slide_wrap .cut02{
	position: absolute;
	z-index: 6;
	bottom: 0;
	left: 5%;
	width: auto;
	height: 300px;
}
.slide_wrap .cut01 img,
.slide_wrap .cut02 img{
	width: auto;
	height: 100%;
}
@media (max-width: 1280px){
	.slide_wrap .copy .frame_tl{
		top: -70px;
		left: -70px;
		width: 250px;
	}
	.slide_wrap .copy .frame_br{
		bottom: -70px;
		right: -70px;
		width: 250px;
	}
	.slide_wrap .cut01,
	.slide_wrap .cut02{
		height: 250px;
	}

}
@media (max-width: 750px){

	.slider{
		height: 90vh;
		min-height: 600px;
		max-height: 900px;
		clip-path: ellipse(120% 100% at top);
	}
	.slide_wrap .copy{
		top: 30%;
		transform: translateX(-50%);
		width: 100%;
	}
	.slide_wrap .copy .frame_tl{
		top: -70px;
		left: 10px;
		width: 40%;
	}
	.slide_wrap .copy .frame_br{
		bottom: -70px;
		right: 10px;
		width: 40%;
	}
	.slide_wrap .cut01,
	.slide_wrap .cut02{
		height: 180px;
	}
	.slide_wrap .cut01{
		right: 50px;
	}
}
@media (max-width: 450px){
	.slide_wrap .copy h2 span{
		text-shadow: 2px 2px 15px rgba(255,255,255,0.5),-2px -2px 15px rgba(255,255,255,0.5),2px -2px 15px rgba(255,255,255,0.5),-2px 2px 15px rgba(255,255,255,0.5),
		1px 1px #fff;
		font-size: 70%;

	}
}
/* コンテンツ
   ========================================================================== */

.cut_w150{
	width: 150px;
}
@media (max-width: 450px){
	.cut_w150{
		width: 120px;
	}
}
.card001{
	display: flex;
	align-content: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap:30px;
}
.card001 .inner{
	width: calc(100% / 3 - 20px);
	aspect-ratio: 4 / 3;
	padding: 3em 0;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	z-index: 2;
}
.card001 .inner .icon{
	position: relative;
	width: 100%;
	text-align: center;
}
.card001 .inner .icon img{
	width: 150px;
}
.card001 .inner h3{
	font-size: clamp(1rem, 0.775rem + 0.8vw, 1.5rem);
	text-align: center;
	text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff
	, 2px 0 #fff, 0 2px #fff, 0 -2px #fff,-2px 0 #fff;
	color: #e086b3;
}
.card001 .inner::after{
	position: absolute;
	z-index: -1;
	content: "";
	top: 50%;
	left: 50%;
	width: 80%;
	max-width: 420px;
	min-width: 350px;
	aspect-ratio: 1 / 1;
	background: #f4e4e4;
	border-radius: 50%;
	transform:translate(-50% , -50%);
	transition: 1.5s;
}
.card001 .inner.bg01::after{
	background: url(../img/trouble01.webp) no-repeat;
	background-position: left;
	background-size: cover;
}
.card001 .inner.bg02::after{
	background: url(../img/trouble02.webp) no-repeat;
	background-position: left;
	background-size: cover;
}
.card001 .inner.bg03::after{
	background: url(../img/trouble03.webp) no-repeat;
	background-position: center;
	background-size: cover;
}
.card001 .inner.bg04::after{
	background: url(../img/trouble04.webp) no-repeat;
	background-position: center;
	background-size: cover;
}
.card001 .inner.bg05::after{
	background: url(../img/trouble05.webp) no-repeat;
	background-position: center;
	background-size: cover;
}
@media (max-width: 1200px){
	.card001{
		gap:0 30px;
	}
	.card001 .inner{
		width: calc(100% / 2 - 20px);
		padding: 2em 0;
	}
	.card001 .inner:nth-child(3){
		margin-inline:30px;
	}
	.card001 .inner::after{
		min-width: 310px;
	}
}

@media (max-width: 750px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 30px auto;
		max-width: 450px;
		gap:30px;
	}
	.card001 .inner{
		width: calc(100% - 20px);
		margin-inline:10px;
	}
	.card001 .inner:nth-child(3){
		margin: auto;
	}
	.card001 .inner::after{
		min-width: 280px;
	}
	
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
	padding: 15px;
	align-self: center;
}
.card002 .txt p{
	margin-bottom: 1em;
}
.card002 .rec p{
	text-indent: 1em;
}
.card002 .video{
	width: 100%;
}
.card002 .video video{
	width: 100%;
	aspect-ratio: 16 / 9;
}
.card002 .video iframe{
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 15px;
}
.card002 .img_f{
	display: flex;
	justify-content: space-between;
}
.img_f_in{
	width: 50%;
	padding: 15px;
}
.img_f_in img{
	width: 100%;
	aspect-ratio: 9 / 16;
	object-fit: cover;
}

.card003{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}
.card003 .img{
	width: 300px;
	padding: 15px;
	align-self: center;
}
.card003 .img img{
	width: 100%;
}
.card003 .txt{
	width: 100%;
	flex: 1;
	padding: 10px 5%;
	align-self: center;
}
@media (max-width: 960px){
	.card002,
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}
	.card002 .img{
		text-align: center;
	}
	.card002 .img img{
		max-width: 600px;
	}
	.card002 .txt{
		padding: 15px;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}


@media (max-width: 450px){
	.card003 .txt{
		padding: 10px;
	}
}
/* 写真横並び基本　*/
.photo_flex{
	display: flex;
	align-items:flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:15px;
}
.photo_flex .img{
	width: calc(50% - 8px);
	padding: 0;
}
.photo_flex img{
	width: 100%;
}


/* フッターコンタクト　================================================== */
.bg_contact{
	background: linear-gradient(rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 100%),
		url("../img/img01.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff
}

/*Safariのみ*/
::-webkit-full-page-media, :future, :root .bg_contact{
	background-attachment: scroll;
}

.footer_contact{
	display: flex;
	justify-content: center;
	text-align: center;
	width: calc(100% - 30px);
	max-width: 1200px;
	margin-inline: auto;
	margin-top: 30px;
	gap:30px;
}
.footer_contact .phone{
	color: #fff;
	font-weight: 400;
	display: block;
	width: 100%;
	padding: 1.5rem ;
	border: solid 1px #fff;
	line-height: 100%;
	background: rgba(255,255,255,0.0);
	border-radius: 100px;
	transition: .3s;
}
.footer_contact .phone .txt{
	font-size: 1rem;
	text-align: center;
	display: block;
	line-height: 120%;
}
.footer_contact .phone .nb{
	font-size: clamp(1.2rem, 1.0714rem + 0.5714vw, 1.5rem);
	line-height: 120%;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	transition: .3s;
}
.footer_contact .phone:hover{
	background: rgba(255,255,255,1);
	color: #333;
}
.footer_contact .phone:hover .nb{
	color: #e086b3;
}
@media (max-width: 1200px){
	.footer_contact{
		gap:15px;
	}
}
@media (max-width: 960px){
	.footer_contact{
		flex-direction: column;
		width: calc(100% - 30px);
		margin-inline: auto;
		max-width: 600px;
		gap:30px;
	}
}

/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	padding: 70px 10px 0;
	background: #fff;
	color: #1a1a1a;
}
footer h2{
	text-align: center;
	font-size: clamp(1.1rem, 0.92rem + 0.64vw, 1.5rem);
	font-weight: 600;
	vertical-align: middle;
	margin-bottom: 30px;
}
footer h2 img{
	width: 100px;
	vertical-align: middle;
	padding-right: 15px;
}
.footer_wrap{
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	max-width: 960px;
	padding: 0 10px;
	margin:auto;
}
.footer_in{
	width: 100%;
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
}

.footer_in p{
	text-align: center;
}
footer p.copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: 15px;
	border-top: solid 1px #ccc ;
}
@media (max-width: 960px){
	.footer_wrap{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
}
@media (max-width: 750px){
	footer h2 img{
		width: 80px;
	}
}
/* 固定ボタン　================================================== */
.fixed_btn{
	position: fixed;
	top:50%;
	right: 0;
	z-index: 100;
	transform: translateY(-50%);
	writing-mode: vertical-rl;
	text-align: center;
	vertical-align: middle;
}
.fixed_btn a{
	display: block;
	width: auto;
	height: inherit;
	background-color: #06c755;
	color: #fff;
	width: 46px;
	border-radius: 15px 0 0 15px;
	padding: 5px 5px 15px;
	font-size: clamp(0.8rem, 0.71rem + 0.32vw, 1rem);
	font-weight: 600;
}
.fixed_btn a img{
	width: 100%;
}
@media (max-width: 750px){
	.fixed_btn{
		transform: none;
	}
}

/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 450px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
	clip-path: ellipse(100% 100% at top);
}
.subtitle h2{
	color:#fff;
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	font-size:1.2em;
	text-transform: uppercase;
	padding: 30px;
	text-align: center;
	white-space: nowrap;
	width: fit-content;
}
.subtitle h2 span{
	display: block;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	color: #fff;
	font-size: clamp(2.5rem, 1.1446rem + 4.8193vw, 5rem);
}
.subtitle h2::after{
	position: absolute;
	content:"" ;
	left: -40px;
	bottom: -30px;
	width: 200px;
	height: 200px;
	background: url(../img/frame_img_bl.webp) no-repeat;
	background-size: contain;
	opacity: 0.5;
}

.sub_bg{
	background: linear-gradient( rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url("../img/img06.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ccc;
}
@media (max-width: 960px){
	.subtitle{
		height: 400px;
	}
	.subtitle h2{
		bottom: 90px;
	}
}
@media (max-width: 750px){
	.subtitle h2::after{
		left: -20px;
		bottom: -20px;
		width: 150px;
		height: 150px;
	}
}

/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	bottom: 1.5em;
	left: 50%;
	transform: translateX(-50%);
	padding: 3px 5px;
	font-size: 0.9em;
}

.breadcrumb li {
	display: inline;
	list-style: none;
	line-height: 100%;
	color: #fff;
}

.breadcrumb li:after {
	content: '|';
	padding-left: 0.5rem;
	color: #fff;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}


/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
}
.carousel {
	width:100%;
	margin: 50px auto;
}
.carousel .inner {
	overflow: hidden;
	padding: 15px;
}
.carousel .inner img {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: 15px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Map ============================================================ */
.map{
	width: 100%;
	border-radius: 50px;
	overflow: hidden;
}
.map iframe{
	width: 100%;
	vertical-align: middle;
}


/* sticky ============================================================ */
/* 箱 */
.list_wrap{
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 20px 0;
	position: relative;
}
.list_main{
	padding: 10px;
	flex: 1;
}
.list_main .scroll-point{
	width: 100%;
	margin: auto;
	margin-bottom: 50px;
}
.list_side .scrollwrap{
	position: sticky;
	top: 140px;
	width: 100%;
	max-width: 200px;
	height: auto;
	z-index: 10;
	
}
.list_side .scrollwrap::-webkit-scrollbar{
	background: #ccc;
	width: 2px;
	height: 2px;
}
.scrollwrap.wide{
	display: block;
}
.scrollwrap.mb{
	display: none;
}
@media (max-width: 960px){
	.list_wrap{
		flex-direction: column;
		
	}
	.scrollwrap.wide{
		display: none;
	}
	.scrollwrap.mb{
		display: block;
		position: sticky;
		top: 90px;
		width: 100%;
		z-index: 10;
		background: #000;
	}
}
@media (max-width: 960px){
	.list_wrap{
		padding: 0;
	}
	.list_main{
		padding: 0;
	}
}

/* 中身　サイドメニュー */
.scrollwrap h3{
	color: #438540;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 1.2rem;
}
.scrollwrap ul li{
	margin-bottom: 1em;
	border-bottom: dashed 1px #5cb758;
}
.scrollwrap ul{
	margin-inline: 10px;
}
.scrollwrap ul li a{
	color: #fff;
	font-size: 0.9rem;
}
.scrollwrap ul li a i{
	color: #5cb758;
}

@media (max-width: 1200px){
	.scrollwrap ul li a{
		font-size: 0.8rem;
	}
}
@media (max-width: 960px){
	.scrollwrap.mb ul{
		display: flex;
		justify-content: flex-start;
		gap:15px;
	}
	.scrollwrap ul{
		margin-inline: 0;
	}
}

.link_banner a{
	display: block;
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
	margin-block: 15px;
	border-radius: 50px;
	overflow: hidden;
}
.link_banner a img{
	width: 100%;
	transform: scale(1);
	transition: .5s;
}
.link_banner a:hover img{
	width: 100%;
	transform: scale(1.05);
}
@media (max-width: 750px){
	.link_banner a{
		border-radius: 30px;
	}
}

/* ビフォーアフター ================================================== */
.before_after{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto
}
.before_after .ba_img{
	width: calc(100% / 2 - 30px);
	aspect-ratio: 1 / 1;
	position: relative;
	background: #faf6f4;
	border-radius: 15px;
	padding: 15px;
}
.before_after .ba_img:first-child{
	width: calc(45% - 30px);
}
.before_after .ba_img:last-child{
	width: calc(55% - 30px);
}
.before_after .ba_img img{
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	vertical-align: middle;
	object-fit:contain;
	object-position: center;
}

.before_after .ba_img h3.before{
	position: absolute;
	top: -10px;
	left: -15px;
	font-size: clamp(2rem, 0.65rem + 4.8vw, 5rem);
	color: #e086b3;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
	font-family: "Caveat", cursive;
	font-weight: 500;
	font-style: normal;
}
.before_after .ba_img h3.after{
	position: absolute;
	bottom: -10px;
	right: -15px;
	font-size: clamp(2rem, 0.65rem + 4.8vw, 5rem);
	color: #e086b3;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
	font-family: "Caveat", cursive;
	font-weight: 500;
	font-style: normal;
}
.ba_arrow{
	padding: 5px;
	align-self: center;
}
.ba_arrow i{
	color: #1a1a1a;
	font-size: 2em;
}
@media (max-width: 960px){
	.before_after{
		flex-direction: column;
		justify-content: center;
		max-width: 600px;
		margin-inline: auto;
	}
	.before_after .ba_img {
		width: calc(100% - 30px);
		margin: auto;
		padding: 20px;
	}
	.before_after .ba_img:first-child{
		width: calc(80% - 30px);
	}
	.before_after .ba_img:last-child{
		width: calc(100% - 30px);
	}
	.before_after .ba_img img{
		border-radius: 10px;
	}
	.ba_arrow{
		transform: rotate(90deg);
		margin: 10px;
	}
}
@media (max-width: 750px){
	.before_after .ba_img{
		width: 100%;
	}

	.before_after .ba_img h3.before{
		left: 15px;
	}
	.before_after .ba_img h3.after{
		right: 15px;
	}
}

.flow_contact{
	display: flex;
	gap: 15px;
	width: 100%;
	margin-top: 15px;
}
.flow_contact li{
	width: 100%;
}
.flow_contact li a{
	display: block;
	width: 100%;
	background-color: #e086b3;
	color: #fff;
	text-align: center;
	line-height: 2;
	opacity: 1;
	transition: .5s;
	font-size: 0.9rem;
}
.flow_contact li a:hover{
	opacity: 0.6;
}
@media (max-width: 1200px){
	.flow_contact{
		flex-direction: column;
		max-width: 300px;
		margin-inline: auto;
	}
}

/* QA ============================================================ */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: solid 5px #e086b3;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.qa-list dl:first-child {
    border-top: solid 5px #e086b3;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin-inline: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #e086b3;
    border-right: 2px solid #e086b3;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: 500;
    font-size: 1.2rem;
}
.qa-list dl dt::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: 'Q.';
    color:#22aa13;
	font-weight: 700;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    color: #e086b3;
	font-weight: 700;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
@media (max-width: 750px){
	.qa-list dl{
		 padding: 28px 30px 28px 15px;
	}
	.qa-list dl::before{
		right: 15px;
	}
	.qa-list dl dt{
		padding: 0 0 0 40px;
	}
}

/* レビュー　================================================== */
.reviews_wrap{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:15px;
}
.reviews_wrap  .inner{
	width: calc(100% / 3 - 20px);
	padding: 30px;
	margin-top: 70px;
	border: solid 1px #ccc;
	border-radius: 15px;
	background-color: #fff;
	position: relative;
	
}
.reviews_wrap .inner img{
	position: absolute;
	top: -70px;
	right: 0;
	width: 150px;
	padding: 3px;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
}
.reviews_wrap h3{
	font-size: clamp(1.2rem, 1.065rem + 0.48vw, 1.5rem);
	border-bottom: solid 1px #e086b3;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 0.25em;
}

.reviews_wrap h3 span.en{
	display: block;
	font-size: 80%;
	line-height: 100%;
}
.reviews_wrap h4{
	display: inline;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 600;
	background:linear-gradient(transparent 60%, rgba(179,164,124,0.3) 60%);
}
.reviews_wrap p{
	margin-top: 15px;
}

@media (max-width: 1200px){
	.reviews_wrap{
		max-width: 700px;
		margin-inline: auto;
	}
	.reviews_wrap .inner{
		width: 100%;
		padding: 1.5em;
		margin-top: 70px;
	}
	.reviews_wrap .inner:first-child{
		margin-top: 0;
	}
}
@media (max-width: 750px){
	.reviews_wrap{
		flex-direction: column;
		max-width: 600px;
		margin-inline: auto;
	}
	.reviews_wrap .inner img{
		right: 0;
		width: 120px;
	}
	.reviews_wrap .inner:first-child{
		margin-top: 70px;
	}
}

/* Contact ================================================== */
/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: auto;
}
.phone_flex .phone{
	text-align: center;
	color: #333;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 1px #ccc;
	background: #fff;
	border-radius: 30px;
	opacity: 1;
	transition: .5s;
}
.phone_flex .phone:hover{
	opacity: 0.5;
}
.phone_flex .phone .nb{
	font-weight: 600;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #e086b3;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color:  #fff;
	background:#e086b3;
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
	display: block;
	padding: 10px;
	margin-bottom: 1rem;
}
.phone_flex .phone .txt02{
	font-size: 1rem;
	text-align: center;
	display: block;
	margin-top: 1em;
	font-weight: 400;
	
}
.phone_flex .phone .txt03{
	font-size: 0.75rem;
	text-align: left;
	display: block;
	margin-top: 1em;
}
.phone_flex .illust img{
	width: 150px;
	display: block;
	margin: 15px 0 0 auto;
}
.phone_flex .phone ul{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.phone_flex .phone ul li{
	font-size: 0.9em;
	font-weight: 600;
	padding: 1em 0.5em 0;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color:#22aa13;
}

.phone_flex .phone dl{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.phone_flex .phone dl dt{
	width: 5em;
	text-align: left;
	font-size: 0.9rem;
}
.phone_flex .phone dl dd{
	flex: 1;
	font-size: 0.9rem;
	text-align: left;
	text-indent: -1rem;
	margin-left: 1rem;
}
.phone_flex .phone dl dd::before{
	content: '｜'
}

@media (max-width: 960px){
	.phone_flex{
		flex-direction: column;
	}
	.phone_flex .phone .inner{
		padding: 1rem 1rem 2rem;
	}
	.phone_flex .phone .nb{
		text-align: center;
	}
	.phone_flex .phone ul{
		justify-content: center;
	}
}
@media (max-width: 450px){
	.phone_flex .phone ul{
		flex-direction: column;
		align-items: flex-start;
	}
	.phone_flex .phone ul li{
		border-bottom: dashed 1px #666;
	}
}

/* メールフォーム==================== */

#mailformpro{
	width: 100%;
	padding: 20px;
}
#mailformpro table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailformpro table tr{
	border-bottom: dashed 1px #ccc;
}
#mailformpro table tr:last-child{
	border-bottom:none;
}
#mailformpro table th{
	width: 250px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 400;
}
#mailformpro table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailformpro .radio{
	padding: 0 2rem 0 0;
}
#mailformpro .checkbox{
	margin-right: 2em;
	margin-bottom: 0.5rem;
	border-bottom: dashed 1px #ccc;
}
#mailformpro .form_input,#mailformpro textarea{
	background:#faf6f4;
	color: #666;
	width: 100% !important;
	padding: 15px 10px;
	border: none;
}
#mailformpro .form_input.mini{
	width: 150px !important;
}
#mailformpro span.form_required{
	display: inline-block;
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#e086b3;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 1em;
	font-weight: 400;
	background: #fff;
	border:solid 1px #ccc;
	color:#1a1a1a;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background:#e086b3;
	color: #fff;
}
input[type='radio']{
	accent-color: #e086b3;
}

input[type='checkbox']{
	accent-color: #e086b3;
}
input[type='file']{
	width: 100%;
	margin-bottom: 0.6em;
}
::placeholder{
	color: #999;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	font-weight: 500;
	margin-top: 1em;
}
.infobox h5 i{
	color: #e086b3;
}
.infobox p{
	font-size: 0.8em !important;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 1em;
	background:#fff;
	border-radius: 5px;
	border: none;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 700;
	border-radius: 30px;
	background:#666;
	padding: 0.25em 1em;
	color: #fff;
}
summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
details::before{
	display: none;
}
details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
details[open] summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f068';
	padding-right: 15px;
}

@media (max-width: 960px){
	#mailformpro{
		padding: 10px 0;
	}
	#mailformpro table th,
	#mailformpro table td{
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}
	#mailformpro table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
}


