@charset "UTF-8";
/* CSS Document */

/* ヘッダー　================================================== */
header{
	position: relative;
	width: 100%;
	z-index: 999;
	
}
.site-header{
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:flex-start;
    width: 100%;
	transition: .5s;
}
.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
	margin-left: 15px;
	margin-top: 10px;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.site-header h1 img{
	width: auto;
	height: 120px;
	vertical-align: middle;
	transition: .5s;
}
.site-header h1 a{
	color: #fff;
	transition: .5s;
}
.site-header.transform h1 img{
	height: 90px;
}

.site-header .top_nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: rgba(255,255,255,1);
	padding: 10px;
	margin-right: 15px;
	margin-top: 15px;
	box-shadow: 2px 2px 15px rgba(0,0,0,0.1);
	border-radius: 100px;
	transition: .5s;
}

.header_phone{
	display: flex;
	align-items:center;
	justify-content: flex-end;
	gap:15px;
}
.site-header .h_mail a{
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.25rem;
	white-space: nowrap;
	background-color: #81b350;
	color: #fff;
	padding: 14px 24px;
	border: solid 2px #81b350;
	border-radius: 50px;
	transition: .5s;
}
.site-header .h_mail a:hover{
	background-color: #fff;
	color: #81b350;
	border-color: #81b350;
}

.site-header .h_insta{
	margin-right: 15px;
}
.site-header .h_insta a{
	display: block;
	height: 46px;
	width: 46px;
	text-align: center;
	background:rgba(129,179,80,1);
	color: #fff;
	border:solid 2px #81b350;
	border-radius: 50%;
	transition: .5s;
}
.site-header .h_insta a i{
	line-height: 42px;
	font-size: 1.5rem;
	position: relative;
	left: 1px;
}
.site-header .h_insta a:hover{
	color: #81b350;
	background:rgba(255,255,255,1);
}

.site-header nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	margin-inline: 15px;
	column-gap: 20px;
}
.site-header nav ul li{
	margin: auto;
	font-size:0.95rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.12rem;
}
.site-header nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	padding-block: 15px;
	transition: 0.5s;
}

.site-header nav ul li::after{
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 3px;
	background:rgba(129,179,80,0.0);
	content: '';
	transition: transform 0.35s;
	transform: translate3d(-100%,0,0);
}
.site-header nav ul li:hover::after{
	background:rgba(129,179,80,1.0);
	transform: translate3d(0,0,0);
}
@media (max-width: 1250px){
	.site-header h1 img{
		height: 110px;
	}
}

@media (max-width: 1200px){
	.site-header .top_nav{
		display: none;
	}
}
@media (max-width: 960px){
	.site-header h1 img{
		height: 100px;
	}
	.site-header.transform h1 img{
		height: 80px;
	}
}
/* FV　================================================== */
.fv_wrap{
	width: 100%;
	height: 100vh;
	min-height: 760px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	background-color: #f7f7f7;
}

.mv {
	overflow: hidden;
	width: 100%;
}

.mv-track{
	width: max-content;
	height: 90vh;
	max-height: 980px;
	min-height: 760px;
	display: flex;
	align-items: center;
	animation: mv-scroll 40s linear infinite;
	gap: 30px;
}
.mv-item{
	position: relative;
	width: 30vw ;
	min-width: 450px;
}
.mv-item:nth-child(odd){
	transform: translateY(10vh);
}
.mv-item:nth-child(even){
	transform: translateY(-10vh);
}
.mv-item.small{
	width: 20vw;
	min-width: 300px;
}
.mv-item.large{
	width: 40vw ;
	min-width: 550px;
}
.mv-item img{
	width: 100%;
}

@keyframes mv-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
.mask01{
	mask-image: url("../img/mask01.svg");
	mask-repeat: no-repeat;
	mask-size: 100%;
}
.mask02{
	mask-image: url("../img/mask02.svg");
	mask-repeat: no-repeat;
	mask-size: 100%;
}
.mask03{
	mask-image: url("../img/mask03.svg");
	mask-repeat: no-repeat;
	mask-size: 100%;
}
.mask04{
	mask-image: url("../img/mask04.svg");
	mask-repeat: no-repeat;
	mask-size: 100%;
}
.mask05{
	mask-image: url("../img/mask05.svg");
	mask-repeat: no-repeat;
	mask-size: 100%;
}
.mv-item .cut01{
	position: absolute;
	top: -80px;
	right: 0;
	width: 200px;
	z-index: 1;
}
.mv-item .cut02{
	position: absolute;
	bottom: 40px;
	right: -15px;
	width: 200px;
	z-index: 1;
}
.mv-item .cut02s{
	position: absolute;
	bottom: 40px;
	right: -15px;
	width: 100px;
	z-index: 1;
}

@media (max-width: 960px){
	.mv-track{
		max-height: 960px;
		min-height: 640px;
	}
	.mv-item,.mv-item.small,.mv-item.large{
		width: 35vw ;
		min-width: 350px;
	}
}
@media (max-width: 750px){
	.fv_wrap{
		height: 100vh;
		min-height: 600px;
	}
	.mv-track{
		gap: 20px;
	 }
}

/* FVキャッチコピー ================================================== */
.fv_wrap .copy{
	position: absolute;
	bottom: 16%;
	left: 50px;
	padding: 30px;
	width: fit-content;
	max-width: 570px;
	z-index: 11;
}
.fv_wrap .copy h2{
	color: #58b350;
	font-family: "Kosugi Maru", sans-serif;
	font-size: clamp(1.6rem, 1.24rem + 1.28vw, 2.4rem);
	margin-bottom: 30px;
	line-height: 1.5;
	letter-spacing: 0.15rem;
	-webkit-text-stroke: 5px #f7f7f7;
	paint-order: stroke;
}
.fv_wrap .copy h2 span{
	font-size: 80%;
}
.fv_wrap .copy p{
	font-family: "Kosugi Maru", sans-serif;
	font-size: clamp(0.9rem, 0.81rem + 0.32vw, 1.1rem);
	letter-spacing: 0.15rem;
	-webkit-text-stroke: 4px #f7f7f7;
	paint-order: stroke;
}
@media (max-width: 960px){
	.fv_wrap .copy{
		right: 15px;
		left: 15px;
		bottom: 70px;
		width: calc(100% - 30px);
		max-width: none;
	}
	.fv_wrap .copy h2{
		margin-bottom: 16px;
	}
}
@media (max-width: 750px){
	.fv_wrap .copy{
		bottom: 50px;
	}
}



/* コンテンツ
   ========================================================================== */
.card001{
	display: flex;
	align-content: flex-start;
	justify-content: flex-start;
	gap:30px;
	flex-wrap: wrap;
}
.card001 .inner{
	width: calc(100% / 2 - 15px);
	padding: 30px;
	position: relative;
	background-color: #fff;
	border-radius: 30px;
}
.card001 .inner img{
	width: auto;
	height: 120px;
}

@media (max-width: 750px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto 30px;
		max-width: 450px;
	}
	.card001 .inner{
		width: 100%;
	}
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.card002 .img {
	width: 100%;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
	align-self: center;
	position: relative;
}
.card002 .txt p{
	margin-bottom: 1em;
}

.card003{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.card003 .img{
	width: 40%;
	min-width: 450px;
	align-self: center;
	display: flex;
	flex-direction: column;
	position: relative;
}
.card003 .img img{
	width: 100%;
}
.card003 .img img.s350{
	max-width: 350px;
	margin: auto;
}
.card003 .img_s{
	width: 250px;
}
.card003 .img_s img{
	width: 100%;
	padding: 10px;
}

.card003 .txt{
	flex: 1;
	align-self: center;
	position: relative;
}
.card003 .txt p{
	margin-bottom: 1rem;
}
.cut_bl{
	position: absolute;
	bottom: -30px;
	left: 15px;
	width: 120px;
}
.cut_br{
	position: absolute;
	bottom: -30px;
	right:15px;
	width: 120px;
}
.cut_br.large{
	width: 180px;
}
.cut_tl{
	position: absolute;
	top: -50px;
	left: 15px;
	width: 120px;
}
.cut_tr{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 120px;
}
.cut_bl img,
.cut_br img,
.cut_tr img,
.cut_tl img{
	width: 100%;
}
@media (max-width: 960px){
	.card002,
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.card002 .img{
		width: 100%;
		text-align: center;
		max-width: 600px;
		margin-inline: auto;
	}
	.card002 .txt{
		width: 100%;
	}
	.card003 .img{
		width: 100%;
		max-width: 600px;
	}
	.card003 .txt{
		width: 100%;
	}
	.card003 .img img.s350{
		max-width: 300px;
		margin: auto;
	}
	.cut_bl,.cut_br,.cut_tl,.cut_tr{
		width: 100px;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}


@media (max-width: 450px){
	.card003 .img{
		min-width: 300px;
	}
	.card003 .txt{
		padding: 10px;
	}
	.card003 .img img.s350{
		max-width: 250px;
		margin: auto;
	}
}
/* 写真横並び基本　*/
.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%;
}

/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	padding: 30px 15px 150px;
	background: #f7f7f7;
	color: #333;
	position: relative;
	z-index: 3;
}
footer h2 img{
	width: 300px;
}

.footer_wrap{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	width: calc(100% - 60px);
	max-width: 960px;
	padding:10px;
	margin:auto;
}
.footer_l{
	width: calc(100% - 400px);
	flex: 1;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content:space-between;
	align-items: flex-start;
	text-align: left;
	padding-right: 30px;
}
.footer_r{
	width: 100%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-left: 30px;
}
.footer_wrap .btn_wrap{
	width: 350px;
}


.copyright{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	font-size: 0.9rem;
	text-align: center;
	padding: 15px;
	z-index: 30;
	color: #fff;
	-webkit-text-stroke: 5px #81b350;
	paint-order: stroke;
}
@media (max-width: 1280px){
	footer{
		padding: 30px 15px 100px;
	}
}

@media (max-width: 960px){
	.footer_wrap{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.footer_wrap{
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.footer_l{
		width: 100%;
		min-width:auto;
		text-align: center;
		padding: 10px 0;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		border-top: dashed 1px #fff;
		padding-top: 50px;
	}
	.footer_l .inner{
		width: fit-content;
		margin: 0 auto;
	}
	.footer_r{
		width: 100%;
		min-width:auto;
		text-align: center;
		padding: 0;
		border-left: none;
	}
	.copyright{
		font-size: 0.8rem;
	}
	
}
@media (max-width: 750px){
	footer h2{
		text-align: center;
	}
	footer h2 img{
		width: calc(100% - 60px);
	}
}
@media (max-width: 450px){
	.footer_wrap .btn_wrap{
		width: 100%;
		max-width: 300px;
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 550px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
}
.subtitle h2{
	width: 100%;
	color:#fff;
	position: absolute;
	top:180px;
	left: 0;
	font-size:1.2em;
	line-height: 1.3;
	padding-bottom: 5px;
	text-align: center;
	text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
	
}
.subtitle h2 span.en{
	font-size: clamp(2.5rem, 1.1446rem + 4.8193vw, 5rem);
	font-family: "Kosugi Maru", sans-serif;
	text-transform: uppercase;
}
.subtitle h2 span.ja{
	font-size: clamp(1.2rem, 1.02rem + 0.64vw, 1.6rem);
	font-family: "Kosugi Maru", sans-serif;
}

.sub_bg{
	background: url("../img/bg_img02.webp");
	background-repeat: no-repeat;
	background-position: 80% 80%;
	background-size: cover;
	background-color: #f5f5f5;
}
@media (max-width: 960px){
	.subtitle{
		height: 450px;
	}
	.subtitle h2{
		width: 100%;
		top: 160px;
	}
}

/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	bottom: 130px;
	left:50%;
	transform: translateX(-50%);
	padding: 3px 5px;
	font-size: 0.9em;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5));
}

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

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

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

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

.breadcrumb li a:hover {
	text-decoration: underline;
}
@media (max-width: 960px){
	.breadcrumb {
		bottom: 100px;
	}
}
@media (max-width: 750px){
	.breadcrumb {
		bottom: 80px;
	}
}


/* カルーセル============================================================ */
.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;
}

.carousel02 {
	width: calc(100% - 100px);
	margin-inline: auto;
	margin-top: 50px;
}
.carousel02 .inner {
	height: 100%;
	overflow: hidden;
	padding: 30px;
	border-radius: 30px;
	
}
.carousel02 img {
	display: block;
	aspect-ratio: 3 / 2;
	width: 100%;
	margin-bottom: 15px;
	object-fit: cover;
}
.carousel02 p{
	font-size: 1rem;
	padding: 1rem 0.5rem;
}

.carousel02 .slide-arrow {
	background-color: #58b350;
	background-size: 200%;
	background-position: left;
	border-radius: 50%;
	border: solid 2px #fff;
	bottom: 0;
	height: 0;
	margin: auto;
	position: absolute;
	top: 0;
	width: 0;
	z-index: 10;
	transition: .5s;
}
.carousel02 .prev-arrow {
	width: 50px;
	height: 50px;
	left: -50px;
	position: absolute;
}
.carousel02 .next-arrow {
	width: 50px;
	height: 50px;
	right: -50px;
	position: absolute;
}
.carousel02 .prev-arrow::after{
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f060';
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.carousel02 .next-arrow::after{
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f061';
	color: #fff;
	top: 50%;
	right: 25%;
	transform: translate(-50%,-50%);
}
.carousel02 .slide-arrow:hover{
	background-position: right;
}
.carousel02 .slick-track{
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap:15px;
}
.carousel02 .slick-slide{
	height: auto !important; 
	align-self: stretch;
	background:#fff;
	border-radius: 30px;
}
@media (max-width: 750px){
	.carousel02{
		width: 100%;
		margin-top: 70px;
	}
	.carousel02 .inner .in_flex{
		flex-direction: column;
		justify-content: center;
	}
	.carousel02 .prev-arrow{
		width: 50px;
		height: 50px;
		left: calc(50% - 55px);
		top: -30px;
		bottom: auto;
	}
	.carousel02 .next-arrow{
		width: 50px;
		height: 50px;
		right: calc(50% - 55px);
		top: -30px;
		bottom: auto;
	}
}

/* Map ============================================================ */
.map{
	width: 100%;
	margin-top: 15px;
}
.map iframe{
	width: 100%;
	vertical-align: middle;
}


/* QA ============================================================ */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}
.qa-list dl:first-child {
    border-top: 1px solid #ccc;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #81b350;
    border-right: 2px solid #81b350;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    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:#81b350;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    color: #e65912;
}
.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;
	}
}
/* 流れ ============================================================ */
.flow_wrap{
	background-color: #fff;
	padding: 30px;
	border-radius: 30px;
}
@media (max-width: 750px){
	.flow_wrap{
		padding: 30px 15px;
	}
}

/* タイムライン1============================================================ */
.timeline_wrap{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}
.timeline_wrap .inner{
	width: 100%;
	align-self: stretch;
}
.timeline{
	position: relative;
	width: calc(100% - 30px);
	margin-inline: auto;
	padding-right: 15px;
}
.timeline .timeline_inner{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 30px;
	position: relative;
}
.timeline .timeline_inner::before{
	position: absolute;
    content: "";
    height: 125%;
    width: 8px;
    top: 25px;
    left: 41px;
    background: #ccc;
}
.timeline .timeline_inner:last-child::before{
	height: 5%;
	background-color: transparent;
}
.timeline .timeline_inner dt{
	width: 90px;
    height: 90px;
	white-space: nowrap;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
    z-index: 4;
    letter-spacing: 0.05em;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
}
.timeline .timeline_inner dt span{
	display: block;
	
}
.timeline .timeline_inner dd{
	flex: 1;
    position: relative;
    left: 20px;
    margin-top: 10px;
    padding: 15px 30px;
    z-index: 2;
    background: #fff;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
	border-radius: 0 50px 50px 0;
}
.timeline .timeline_inner dd::after{
	border: solid transparent;
	content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:20px;
    border-right-width:20px;
    margin-top: -8px;
    border-right-color:#fff;
    right:100%;
    top:2rem;
}
.timeline .timeline_inner dd span{
	font-size: 80%;
}
.timeline_inner h4{
	font-size: 1.1rem;
	font-weight: 700;
}
.timeline_inner p{
	font-size: 1rem;
}
.timeline_inner ul li{
	font-size: 1rem;
	border-bottom: dashed 1px #ccc;
	margin-bottom: 0.5rem;
}
@media (max-width: 960px){
	.timeline_wrap{
		flex-direction: column;
		justify-content: center;
		gap:50px;
	}
}
@media (max-width: 750px){
	.timeline{
		width: 100%;
	}
	.timeline .timeline_inner dt{
		width: 80px;
    	height: 80px;
	}
}

/* メールフォーム==================== */
/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-inline:auto;
	max-width: 960px;

}
.phone_flex .phone{
	position: relative;
	width: 100%;

}
.phone_flex .phone .inner{
	position: relative;
	color: #30332e;
	display: block;
	padding: 1.5rem;
	z-index: 2;
	border-bottom: dashed 1px #ccc;
	transition: .5s;
}

.phone_flex .phone .nb{
	font-weight: 700;
	font-family: "Inter", sans-serif;
	font-size: clamp(1.6rem, 1.195rem + 1.44vw, 2.5rem);
	line-height: 52px;
	display: block;
	color:#81b350;
	white-space: nowrap;
	transition: .5s;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color: #fff;
	background:#81b350;
	vertical-align: bottom;
	line-height: 52px;
	width: 52px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .nb:hover{
	color: #999;
}
.phone_flex .phone .nb:hover i{
	background: #999;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 500;
	text-align: center;
	display: block;
	padding: 10px;
}
.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 .phone ul{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.phone_flex .phone ul li{
	font-size: 0.9em;
	font-weight: 500;
	padding: 1em 0.5em 0;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color: #40e6b9;
}
.phone_flex .phone dl{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.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: '｜'
}
.dl_wrap{
	margin-top: 15px;
	margin-left: 15px;
}


#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 th{
	width: 250px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 700;
}
#mailformpro table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailformpro .radio{
	margin-right: 2em;
	margin-bottom: 0.5rem;
	border-bottom: dashed 1px #ccc;
}
#mailformpro .checkbox{
	margin-right: 2em;
	margin-bottom: 0.5rem;
	border-bottom: dashed 1px #ccc;
}
#mailformpro .form_input,#mailformpro textarea{
	background:#f5f5f5;
	color: #666;
	width: 100% !important;
	padding: 15px 10px;
	border: none;
}
#mailformpro textarea{
	min-height: 200px;
}
#mailformpro .form_input.mini{
	width: 150px !important;
}
#mailformpro span.form_required{
	display: inline-block;
	font-size: 70%;
	font-weight: 700;
	font-weight: normal;
	color: #fff;
	background:#f38586;
	padding: 3px 8px;
	line-height: 1.2rem;
	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:#333;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background:#81b350;
	color: #fff;
}
input[type='radio']{
	accent-color: #81b350;
	cursor:pointer
}

input[type='checkbox']{
	accent-color: #81b350;
	cursor:pointer
}
input[type='file']{
	width: 100%;
	margin-bottom: 0.6em;
}
label {
  cursor: pointer;
}
::placeholder{
	color: #999;
}
.cp_ipselect {
	overflow: hidden;
	width: 100%;
}
.cp_ipselect select {
	color: #666;
	width: 100%;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.cp_ipselect.cp_sl01 {
	background-color: #f5f5f5;
	position: relative;
	padding: 0.5rem;
}
.cp_ipselect.cp_sl01::before {
	position: absolute;
	top: 50%;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
	padding: 8px 38px 8px 8px;
	color: #666666;
}
.cp_ipselect select option{
	padding: 0.5rem;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	font-weight: 700;
	margin-top: 1em;
}
.infobox h5 i{
	color: #81b350;
}
.infobox p{
	font-size: 0.8em !important;
	padding: 0.5em 0;
}
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: 1rem 0 0.5rem;
	}
	#mailformpro table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
	#mailformpro .radio,#mailformpro .checkbox{
		margin: 0 0 0.5rem 1rem;
	}
}
