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


/* ボタン　================================================== */

.c-btn_normal a, .c-btn_normal > span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 260px;
	padding: 18px 30px;
	background: #008ad2;
	border-radius: 50px;
	color: #fff;
	font-size: 0.9rem;
	line-height: 1;
	letter-spacing: 0.07em;
	position: relative;
}
@media screen and (max-width: 760px) {
	.c-btn_normal a, .c-btn_normal > span {
		padding: 22px 38px;
	}
}
.c-btn_normal a .c-arrow, .c-btn_normal > span .c-arrow {
	width: 14px;
	height: 14px;
	position: relative;
	overflow: hidden;
}
.c-btn_normal a .c-arrow::before, .c-btn_normal > span .c-arrow::before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f061';
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}
.c-btn_normal a .c-arrow::after, .c-btn_normal > span .c-arrow::after {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f061';
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	left: -20px;
	transition: 0.5s;
}
.c-btn_normal a:hover .c-arrow::before, .c-btn_normal > span:hover .c-arrow::before {
	left: 20px;
}
.c-btn_normal a:hover .c-arrow::after, .c-btn_normal > span:hover .c-arrow::after {
	left: 0;
}
.btn_flex{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:15px;
	width: fit-content;
	margin: auto;
}
@media screen and (max-width: 960px){
	.btn_flex{
		flex-direction: column;
	}
}

/* テーブル　================================================== */
.triangle table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
	width:100%;
}

.triangle table tr{
    border-bottom: solid 2px #f5f5f5;
}

.triangle table tr:last-child{
    border-bottom: none;
}

.triangle table th{
    position: relative;
    width: 20%;
    background-color: #008ad2;
    color: white;
    text-align: center;
    padding: 1rem;
}

.triangle table th:after{
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top:calc(50% - 10px);
    right:-10px;
    border-left: 10px solid #008ad2;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.triangle table td{
    background-color: #fff;
    padding: 1rem 1rem 1rem 2rem;
}
@media (max-width: 750px){
	.triangle table tr{
		 border-bottom: none;
	}
	.triangle table th{
		border:none;
		padding: 1rem;
	}
	.triangle table th,.triangle table td{
		display: block;
		width: 100%;
	}
	.triangle table th:after{
		content:'';
		position:absolute;
		width: 0px;
		height: 0px;
		border-top: 10px solid #008ad2;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
		top:calc(100% - 1px);
		left:50%;
		right: auto;
		transform: translateX(-50%);
	}
	.triangle table td{
		padding: 2rem 1rem 1rem;
	}
}

.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: solid 1px #ccc;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	font-weight: 600;
	width: 20%;
	min-width: 6em;
}
.simple01 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	border-bottom: dashed 1px #ccc;
}
.simple01 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
	border-bottom: dashed 1px #ccc;
}
.simple01 dl dt{
	width: 8em;
}
.simple01 dl dd{
	flex: 1;
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}
@media (max-width: 750px){
	.simple01 dl{
		flex-direction: column;
		justify-content: flex-start;
	}
	.simple01 dl dd{
		margin-left: 1em;
	}
}

/* リスト　================================================== */

.border01 li{
	font-size: 1rem;
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 0.5em;
	padding-bottom: 0.1em;
	border-bottom: dashed 1px #008ad2;
}
.border01 li i{
	display: inline
}
.simple01 ul li{
	font-size: 0.9rem;
	font-size: 1rem;
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 0.5em;
	padding-bottom: 0.1em;
}
.simple01 ul li i{
	display: inline
}

.nb_list li{
	font-size: clamp(1rem, 0.865rem + 0.48vw, 1.3rem);
	border-bottom: solid 1px #008ad2;
	margin-bottom: 0.5rem;
}
.nb_list li .nb{
	font-size: 150%;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	color: #008ad2;
}
.nb_list li .nb_ja{
	font-size: 180%;
	font-weight: 700;
	color: #008ad2;
}
.nb_list li .ja_s{
	font-size: 1rem;
}

.nb_list02 li{
	font-size: 1.1rem;
	margin-bottom: 1rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 15px 0;
	border-bottom: solid 1px #ccc;
	width: calc(100% - 200px);
}
.nb_list02 li .nb{
	display: block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	background:#008ad2;
	margin-right: 0.5em;
	color: #fff;
	text-align: center;
	font-size: 1.5rem;
}
.bg_b .nb_list02 li .nb{
	background:#fff;
	color:#008ad2;
}
.nb_list02 li .txt{
	line-height: 150%;
}

.nb_list02 li:nth-child(2){
	margin-left: 50px;
}
.nb_list02 li:nth-child(3){
	margin-left: 100px;
}
.nb_list02 li:nth-child(4){
	margin-left: 150px;
}
.nb_list02 li:nth-child(5){
	margin-left: 200px;
}
@media (max-width: 960px){
	.nb_list02 li{
		width: 100%;
	}
	.nb_list02 li:nth-child(2),
	.nb_list02 li:nth-child(3),
	.nb_list02 li:nth-child(4),
	.nb_list02 li:nth-child(5){
		margin-left:0;
	}
}

@media (max-width: 750px){
	.nb_list02 li{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	}
}

@media screen and (max-width: 750px){
	.nb_list li .nb{
		display: block;
	}
}
/* 事業紹介　================================================== */
.services_img{
	aspect-ratio: 5 / 6;
	object-fit: cover;
	border-radius: 15px;
}
@media (max-width: 960px){
	.services_img{
		aspect-ratio: 5 / 4;
		object-fit: cover;
	}
}

.services_list ul li{
	font-size: 0.9rem;
	margin-bottom: 1rem;
	width: 100%;
	font-weight: 600;
	color: #008ad2;
	border-bottom: dashed 1px #008ad2;
}

.services_list dl{
	display:  flex;
	justify-content:space-between;
	flex-wrap: wrap;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	width: 100%;
	border-bottom: dashed 1px #008ad2;
}
.services_list dl dt{
	font-weight: 600;
	color: #008ad2;
	padding-right: 1rem;
}
.services_list dl dd{
	flex: 1;
	text-align: right;
}
.services_list.column dl{
	flex-direction: column;
}
.services_list.column dl dd{
	text-align: left;
}

@media (max-width: 1200px){
	.services_list dl{
		flex-direction: column;
	}
	.services_list dl dd{
		text-align: left;
		padding-left: 1em;
	}
}

/* SDGs　================================================== */
.icon_wrap img{
	width: 150px;
	max-width: calc(100% / 3);
	padding: 8px;
	vertical-align: middle;
}
.icon_wrap p{
	white-space: nowrap;
}
@media screen and (max-width: 750px){
	.icon_wrap img{
		padding: 6px;
	}
}

/* リンクコンテンツ　================================================== */

.contents_link {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin: auto;
	padding: 50px 0;
}
.contents_link .service_wrap{
	width:calc(100% / 3 - 30px);
	margin: 15px;
	padding: 3rem;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
	background: rgba(255,255,255,0.9);
	border-radius: 15px;
}
.contents_link .service_wrap:first-child{
	transform: translateY(-50px);
}
.contents_link .service_wrap:last-child{
	transform: translateY(50px);
}

.service_wrap h3{
    font-size: clamp(1.2rem, 1.02rem + 0.64vw, 1.5rem);
    border-bottom: solid 1px;
	margin-bottom: 30px;
}
.service_wrap h3 .en{
	color: #008ad2;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
}
.service_wrap img{
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.service_wrap p{
	padding: 1rem 0;
	font-size: 0.9rem;
}
@media (max-width: 1200px){
	.contents_link{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 800px;
	}
	.contents_link .service_wrap{
		width:calc(100% - 30px) ;
	}
	.service_wrap img{
		aspect-ratio: 16 / 9;
	}
	.contents_link .service_wrap:first-child,
	.contents_link .service_wrap:last-child{
		transform: none;
	}
}
@media (max-width: 960px){
	.contents_link .service_wrap{
		padding: 2rem;
	}
}
@media (max-width: 750px){
	.contents_link .service_wrap{
		padding: 2rem 1rem;
		margin: 15px 0;
	}
}
/* 施工実績　================================================== */
.work_wrap{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}
.work_wrap .title{
	width: 350px;
	padding: 15px;
	align-self: stretch;
}
.work_wrap .title .txt_wrap{
	position: sticky;
	top: 150px;
}
.work_wrap .wrap{
	width: 100%;
	flex: 1;
	display: flex;
	flex-wrap: wrap;
}
.work_wrap .wrap .inner{
	width: calc(100% / 2 - 30px);
	padding: 3em 2em 2em;
	margin: 15px;
	background: #edf5fc;
	border-radius: 15px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	
}
.work_wrap .wrap .inner img{
	width: 100%;
	margin-bottom: 15px;
}
.work_wrap dl{
	display: flex;
	justify-content: flex-start;
	width: 100%;
	border-bottom: solid 1px #ccc;
	margin-bottom: 10px;
	font-size: 0.9rem;
}
.work_wrap dl dt{
	font-weight: 600;
	width: 6em;
}
@media (max-width: 1200px){
	.work_wrap .title{
		width: 260px;
		padding: 15px 0;
	}
	.work_wrap .title .txt_wrap{
		top:120px;
	}
	.work_wrap .wrap .inner{
		padding: 2em 1.5em 1.5em;
	}
}
@media (max-width: 960px){
	.work_wrap .title{
		width: 250px;
		padding: 15px 0;
	}
	.work_wrap .wrap .inner{
		width: calc(100% - 30px);
		padding: 2em 1.5em 1.5em;
	}
}
@media (max-width: 750px){
	.work_wrap{
		flex-direction: column;
		max-width: 600px;
		margin: auto;
	}
	.work_wrap .title{
		width: 100%;
		padding: 15px;
	}
}

.flow_wrap{
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap:16px;
}
.flow_wrap .inner{
	width: 100%;
	padding: 30px;
	border-radius: 15px;
	background: #edf5fc;
	position: relative;
	z-index: 1;
}
.flow_wrap .inner::after{
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f061';
	top: calc(50% - 1.5rem);
	left: -32px;
	font-size: 2rem;
	text-align: center;
	background: #008ad2;
	color: #fff;
	width: 3rem;
	height: 3rem;
	line-height: 3rem;
	border-radius: 50%;
	z-index: 2;
}
.flow_wrap .inner:first-child::after{
	content: none;
}
.flow_wrap h3{
	text-align: center;
	position: relative;
	margin-bottom: 50px;
	font-weight: 600;
}
.flow_wrap h3::after{
	content: attr(data-text);
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.7rem;
	text-align: center;
	width: 100%;
	color: #008ad2;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
}
.flow_wrap img{
	width: 250px;
	padding: 15px;
	display: block;
	margin-inline: auto;
}
@media (max-width: 960px){
	.flow_wrap{
		flex-direction: column;
	}
	.flow_wrap .inner::after{
		top: -32px;
		left: calc(50% - 1.5rem);
		z-index: 2;
		transform: rotate(90deg);
		
	}
}

/* ビフォーアフター ================================================== */
.ba_wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	margin-bottom: 50px;
}
.ba_wrap .ba_b,.ba_wrap .ba_a{
	width: calc(100% / 2 - 30px);
	padding: 5px;
	position: relative;
}
.ba_wrap .ba_b img,.ba_wrap .ba_a img{
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
	padding: 10px;
	background: rgba(0,0,0,0.05);
}
.arrow{
	margin: 0;
	display: block;
	font-size: clamp(1.2rem, 0.84rem + 1.28vw, 2rem);
}
.ba_wrap .ba_b::before{
	content: 'Before';
	top: 0;
	left: 0;
	color: #008ad2;
	position: absolute;
	z-index: 2;
	font-size: clamp(1.5rem, 0.15rem + 4.8vw, 4.5rem);
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	text-shadow: 2px 2px #fff,-2px -2px #fff,-2px 2px #fff,2px -2px #fff;
	
}
.ba_wrap .ba_a::before{
	content: 'After';
	bottom: 0;
	right: 0;
	color: #008ad2;
	position: absolute;
	z-index: 2;
	font-size: clamp(1.5rem, 0.15rem + 4.8vw, 4.5rem);
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	text-shadow: 2px 2px #fff,-2px -2px #fff,-2px 2px #fff,2px -2px #fff;
	
}
@media (max-width: 750px){
	.ba_wrap .ba_b,.ba_wrap .ba_a{
		width: calc(100% / 2);
	}
}
@media (max-width: 450px){
	.ba_wrap{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.ba_wrap .ba_b,.ba_wrap .ba_a{
		width: calc(100% - 30px);
	}
	.arrow{
		transform: rotate(90deg);
	}
}

.works_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.works_list dl{
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	width: calc(100% / 2);
	border-bottom: solid 1px #ccc;
	font-size: 0.9rem;
}
.works_list dl dt{
	width: 20%;
	min-width: 8em;
	padding: 15px;
	background: #008ad2;
	color: #fff;
}
.works_list dl dd{
	padding: 15px;
	flex:1;
	background: #fff;
}
@media (max-width: 1200px){
	.works_list{
		flex-direction: column;
	}
	.works_list dl{
		width: calc(100%);
	}
}
@media (max-width: 750px){
	.works_list dl{
		font-size: 0.8rem;
	}
	.works_list dl dt{
		min-width: 110px;
	}
}
@media (max-width: 450px){
	.works_list{
		gap:10px;
	}
	.works_list dl{
		flex-direction: column;
	}
	.works_list dl dt,
	.works_list dl dd{
		width: 100%;
	}
}

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

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

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

}
.phone_flex .phone .inner{
	position: relative;
	color: #1a1a1a;
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	z-index: 2;
	transition: .5s;
}


.phone_flex .phone .nb{
	font-weight: 700;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #008ad2;
	white-space: nowrap;
	transition: .5s;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color: #fff;
	background:#008ad2;
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .nb:hover{
	color:#204483;
}
.phone_flex .phone .nb:hover i{
	background:#204483;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 400;
	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: 600;
	padding: 1em 0.5em 0;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color: #0160ae;
}
.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: '｜'
}
.dl_wrap{
	margin-top: 15px;
	margin-left: 15px;
}
@media (max-width: 450px){
	
}

#mailform{
	width: 100%;
	padding: 20px;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table tr{
	border-bottom: solid 1px #ccc;
}
#mailform table tr:last-child{
	border-bottom:none;
}
#mailform table th{
	width: 230px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 400;
}
#mailform table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailform .radio{
	padding: 0 2rem 0 0;
}
#mailform .checkbox{
	padding: 0 2rem 0 0;
}
#mailform .form_input,#mailform textarea{
	background:#fff;
	width: 100% !important;
	padding: 15px 10px;
	border: none;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#008ad2;
	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 2px #008ad2;
	color:#1a1a1a;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background: #008ad2;
	color: #fff;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #1f1f1f !important;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	color: #1f1f1f;
	margin-top: 1em;
}
.infobox h5 i{
	color: #008ad2;
}
.infobox p{
	font-size: 0.8em !important;
	color: #1f1f1f;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 1em;
	background:#fff;
	border-radius: 5px;
}
.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;
}
.visually-hidden { /* 元のボタンを非表示にする*/
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%); 
	margin: -1px;
}
label.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

label.radio-label::before,
label.radio-label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

label.radio-label::before {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 20px;
	width: 20px;
	left: 5px;
}

label.radio-label::after {
	background-color: #666;
	opacity: 0;
	height: 14px;
	width: 14px;
	left: 8px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
	opacity: 1;
}


label.check-label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}

label.check-label:before {
	content: "";
	display: block;
	position: absolute;
	left: 5px;
	width: 20px;
	height: 20px;
	top: 3px;
	border: solid 1px #ccc;
	background: #fff;
	border-radius: 3px;
	transition: all ease-in-out.5s;
}

label.check-label:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 11px;
	transform: rotate(-45deg) scaleX(0);
	transform-origin: left;
	width: 12px;
	height: 6px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transition: transform 0.125s ease-in-out;
}

input:checked + label.check-label:before {
	background-color: #008ad2;
	border-color: #008ad2;
}

input:checked + label.check-label:after {
	transform: rotate(-45deg) scaleX(1);
}
@media (max-width: 960px){
	#mailform{
		padding: 10px 0;
	}
	#mailform table th,
	#mailform table td{
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}
	#mailform table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
	#mailform .radio,#mailform .checkbox{
	padding: 0 2rem 0.5rem 0;
	}
}
