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

/* ヘッダー　================================================== */

header{
	position: relative;
	width: 100%;
	z-index: 999;
}

.site-header{
	background:rgba(255,255,255,0.0);
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:center;
    width: 100%;
	height: 120px;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 460px calc(100% - 30px), 430px 100%, 0 100%);
	transition: .5s;
}
.site-header.transform{
    background:rgba(255,255,255,1.0);
}
.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
	margin-left: 30px;
}
.site-header h1 img{
	width: auto;
	height: 65px;
	vertical-align: middle;
	filter: grayscale(100%) invert(100%) brightness(300%);
	transition: .5s;
	pointer-events: none;
}
.site-header h1 a{
	color: #fff;
	transition: .5s;
}
.site-header.transform h1 img{
	filter: none;
}

.site-header nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding:0 30px;
	gap:30px;
	margin-bottom: 10px;
}
.site-header nav ul li{
	margin: auto;
	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: #fff;
	transition: 0.5s;
}
.site-header.transform nav ul li a{
	color: #1a1a1a;
}
.site-header nav ul li a span{
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 80%;

}
.site-header.transform nav ul li a span{
	color:#2fa9ee;
}
.site-header nav ul li::after{
	position: absolute;
	bottom: 3px;
	left: 0;
	width: 100%;
	height: 3px;
	background:rgba(255,255,255,0.0);
	content: '';
	transition: 0.35s;
	transform: translate3d(-100%,0,0);
}
.site-header nav ul li:hover::after{
	background:rgba(255,255,255,1.0);
	transform: translate3d(0,0,0);
}
.site-header.transform nav ul li::after{
	background:rgba(47,169,238,0.0);
}
.site-header.transform nav ul li:hover::after{
	background:rgba(47,169,238,1.0);
}
@media (max-width: 1200px){
	.site-header{
		height: 90px;
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 360px calc(100% - 30px), 330px 100%, 0 100%);
	}
	.site-header h1 img{
		height: 50px;
	}
	.nav_wrap{
		display: none;
	}
}
@media (max-width: 960px){
	.site-header{
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 310px calc(100% - 30px), 280px 100%, 0 100%);
	}
	.site-header h1{
		margin-left: 10px;
	}
}
@media (max-width: 750px){
	.site-header{
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 280px calc(100% - 30px), 250px 100%, 0 100%);
	}
	.site-header h1 img{
		height: 45px;
	}
}
@media (max-width: 450px){
	.site-header{
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 230px calc(100% - 30px), 200px 100%, 0 100%);
	}
	.site-header h1 img{
		height: 35px;
	}
}
/* FV　================================================== */
.slide_wrap{
	width: 100%;
	height: 100vh;
	min-height: 650px;
	max-height: 1080px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: flex-end;
	background: linear-gradient(#2fa9ee , #00599c);
}
.slide_wrap::after{
	content: "";
	position: absolute;
	bottom: -10px;
	width: 100%;
	left: 0;
	right: 0;
	height: 50px;
	background-color: #fff;
	clip-path: polygon(
		100% 100%,
		0 100%,
		0 30px,
		calc(70% - 30px) 30px,
		70% 0,
		100% 0
	);
	z-index: 20;
}
.slider{
	overflow: clip;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 75%;
	clip-path: ellipse(110% 110% at 110% 50%);
}
.slider::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
	background: linear-gradient(rgba(0,0,0,0.05) 10%,rgba(0,0,0,0.05)) ;
}
.slider li{
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.slider li.top01{
	background:url("../img/img01.webp") no-repeat;
	background-size: cover;
	background-position: top right;
}
.slider li.top02{
	background:url("../img/img06.webp") no-repeat;
	background-size: cover;
	background-position: center left;
}
.slider li.top03{
	background:url("../img/img03.webp") no-repeat;
	background-size: cover;
	background-position: center;
}

@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: 10%;
	z-index: 10;
}

.slide_wrap .copy h2{
	margin: auto;
	color: #fff;
	font-weight: 500;
	font-size: clamp(1.6rem, 0.97rem + 2.24vw, 3rem);
	
}
.slide_wrap .copy h2 img{
	width: 100%;
	padding: 15px;
	vertical-align: middle;
}
@media (max-width: 768px){
	.slide_wrap{
		height: 90vh;
	}
	.slider{
		width: 100%;
		height: 80vh;
		min-height: 100vw;
		max-height: 800px;
		clip-path: ellipse(100% 60% at 50% 40%);
	}
	.slide_wrap .copy{
		top: auto;
		bottom: 80px;
		left: 15px;
	}

}
/* コンテンツ
   ========================================================================== */
.card001{
	display: flex;
	align-content: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}
.card001 .inner{
	width: calc(100% / 3 - 30px);
	aspect-ratio: 3 / 2;
	padding: 30px;
	margin: 15px;
	position: relative;
}
.card001 .inner img{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	filter: brightness(70%);
}
.card001 .inner p{
	font-size: 1.1rem;
	font-weight: 500;
	position: absolute;
	bottom: 10%;
	left: 0;
	right: 0;
	text-align: center;
	text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

@media (max-width: 960px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto 30px;
		max-width: 450px;
	}
	.card001 .inner{
		width: 100%;
		margin: 0;
		aspect-ratio: 6 / 5;
	}
	.card001 .inner p{
		bottom: 20%;
	}
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
}
.card002 .txt p{
	margin-bottom: 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_w2{
	width: 100%;
	aspect-ratio: 5 / 4;
	position: relative;
}
.card002 .img_w2 .in01{
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
}
.card002 .img_w2 .in02{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60%;
}
.card002 .img_w2 .in01 img,
.card002 .img_w2 .in02 img{
	width: 100%;
}
@media (max-width: 960px){
	.card002{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.card002 .img{
		text-align: center;
	}
	.card002 .img img{
		max-width: 600px;
	}
	.card002 .txt{
		padding: 15px;
	}
	.card002 .img_w2{
		max-width: 800px;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}

.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{
	flex: 1;
	padding: 10px 5%;
	align-self: center;
}
@media (max-width: 960px){
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
	}
	.card003 .txt{
		width: 100%;
	}
	.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(to right ,rgba(47,196,238,0.6) , rgba(0,72,128,0.6),rgba(0,29,51,0.6) ),
		url("../img/img02.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 100px 15px 120px;
	transform: translateY(30px);
}
.bg_contact .card003{
	max-width: 960px;
	margin-inline: auto;
	gap: 30px;
}
.card003 .title{
	width: 320px;
	align-self: flex-start;
}

.footer_contact{
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 1200px;
	flex: 1;
	margin-inline: auto;
	gap:30px;
}
.footer_contact .phone{
	color: #fff;
	display: block;
	width: 100%;
	padding: 30px 30px 36px;
	border: solid 1px #fff;
	background: rgba(0,0,0,0.0);
	transition: .5s;
}
.footer_contact .phone.comme{
	position: relative;
}
.footer_contact .phone .txt{
	font-size: 1rem;
	display: block;
	font-weight: 500;
}
.footer_contact .phone .txt2{
	font-size:0.7rem;
	display: block;
	margin-left: 2rem;
}
.footer_contact .phone.comme .txt2{
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.footer_contact .phone .nb{
	font-size: clamp(1.3rem, 1.165rem + 0.48vw, 1.6rem);
	line-height: 120%;
	margin-left: 2rem;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	letter-spacing: 0.15em;
}
.footer_contact .phone:hover{
	background: rgba(0,0,0,0.5);
	color: #fff;
}
.footer_contact .txt_lv02 .en::before{
	color: #fff;
}
@media (max-width: 960px){
	.bg_contact .card003{
		align-items: center;
		justify-content: center;
		max-width: 600px;
	}
	.card003 .title{
		width: 100%;
		text-align: left;
	}
	.footer_contact{
		width: calc(100% - 30px);
		max-width: 600px;
	}
	.footer_contact .phone .txt{
		text-align: center;
	}
	.footer_contact .phone .nb{
		display: block;
		margin: auto;
		text-align: center;
	}
}

/* フッター部分　================================================== */
footer h2 img{
	width: 350px;
	margin-bottom: 30px;
	filter: grayscale(100%) invert(100%) brightness(300%);
}
.footer_wrap{
	width: 100%;
	padding: 100px 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.footer_in{
	width: 100%;
	max-width: 960px;
	text-align: center;
}

.footer_in p{
	text-align: center;
}

footer p.copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: 15px;
	margin-top: 30px;
	color: #fff;
}
@media (max-width: 960px){
	.footer_wrap{
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
}
@media (max-width: 750px){
	footer h2{
		text-align: center;
	}
	footer h2 img{
		width: 320px;
		max-width: 100%;
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 400px;
	background-size: cover;
	position: relative;
}
.subtitle h2{
	color:#fff;
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	font-size:1.2em;
	text-transform: uppercase;
	padding-bottom: 5px;
	text-align: center;
}
.subtitle h2 span{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-size: clamp(2.5rem, 1.1446rem + 4.8193vw, 5rem);
}

.sub_bg{
	background: linear-gradient( rgba(0,89,156,0.7), rgba(0,89,156,0.7)),url("../img/img03.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ccc;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(70% + 30px) calc(100% - 30px), 70% 100%, 0 100%);
}
@media (max-width: 960px){
	.subtitle{
		height: 350px;
	}
	.subtitle h2{
		width: 100%;
	}
}


/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	bottom: 1em;
	left:1rem;
	padding: 3px 5px;
	font-size: 0.9em;
	max-width: 70%;
}

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

.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: 450px){
	.breadcrumb{
		font-size: 0.8em;
	}
}

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

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

.map_wrap{
	position: relative;
}
.map_img{
	width: 100%;
	height: 650px;
	background:url("../img/bg_map.webp") no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: center top;
	-webkit-mask-image: url(../img/map.svg);
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-position:center;
	-webkit-mask-size: auto 100%;
	mask-image: url(../img/map.svg);
	mask-repeat:no-repeat;
	mask-position:center;
	mask-size: auto 100%;
	position: relative;
}
/*Safariのみ*/
::-webkit-full-page-media, :future, :root .map_img{
	background-attachment: scroll;
	background-position: center;
}
.map_wrap .txt{
	position: absolute;
	top: 60%;
	left: 10%;
}
@media (max-width: 1200px){
	.map_img{
		height: 600px;
	}
}
@media (max-width: 960px){
	.map_wrap .txt{
		left: 15px;
	}
}
@media (max-width: 750px){
	.map_img{
		height: 500px;
	}
	.map_wrap .txt{
		left: 15px;
	}
}
@media (max-width: 550px){
	.map_img{
		height: 450px;
		-webkit-mask-size:100% ;
		mask-size: 100%;
	}
	.map_wrap .txt{
		left: 15px;
		top: auto;
		bottom: -30px;
	}
}


/* 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 #8a9898;
    border-right: 2px solid #8a9898;
}
.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:#8a9898;
}
.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;
	}
}
/* Contact============================================================  */
/* TEL FAX */
.phone_flex{
	display: flex;
	margin-inline:auto;
	flex-direction: column;
	gap: 30px

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

}
.phone_flex .phone .inner{
	position: relative;
	color: #00599c;
	display: block;
	padding: 1.5rem;
	z-index: 2;
	border-bottom: dashed 1px rgba(48,51,46,0.5);
	transition: .5s;
}

.phone_flex .phone .nb{
	font-weight: 700;
	font-size: clamp(1.6rem, 1.195rem + 1.44vw, 2.5rem);
	line-height: 52px;
	display: block;
	color:#00599c;
	white-space: nowrap;
	transition: .5s;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color: #fff;
	background:#00599c;
	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: #2fa9ee;
}
.phone_flex .phone .nb:hover i{
	background: #2fa9ee;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 500;
	display: block;
	padding: 10px;
}
.phone_flex .phone .txt02{
	font-size: 1rem;
	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: flex-start;
	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{
	color: #2fa9ee;
}
.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;
}
@media (max-width: 750px){
	.phone_flex .phone ul{
		flex-direction: column;
	}
	.phone_flex .phone ul li{
		border-bottom: dashed 1px #ccc;
		width: 100%;
	}
}

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

#mailformpro{
	width: 100%;
	padding: 20px;
}
#mailformpro table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailformpro table tr{
	border-bottom: solid 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 .form_input.mini{
	width: 150px !important;
}
#mailformpro textarea{
	min-height: 250px;
}
#mailformpro span.form_required{
	display: inline-block;
	font-size: 60%;
	line-height: 1.4;
	font-weight: 500;
	font-weight: normal;
	color: #fff;
	background:#2fa9ee;
	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:#00599c;
	color: #fff;
}
input[type='radio']{
	accent-color: #00599c;
	cursor:pointer
}

input[type='checkbox']{
	accent-color: #00599c;
	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: 500;
	margin-top: 1em;
}
.infobox h5 i{
	color: #00599c;
}
.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;
	}
}
@media (max-width: 960px){

}
