@charset "UTF-8";
/* CSS Document */
@media (min-width: 960px){
	.sptb,.navToggle{
		display: none !important;}	
}
@media(min-width:749px){
	.sp{
		display: none !important;
	}	
}

body{
	color: #4d2800;
	background-color: #f8f4e6;
	font-family: 'Zen Maru Gothic', sans-serif;
}
p{
	line-height: 180%;
}

a{
	text-decoration: none;
}
a:link{
	text-decoration: none;
}
ul li{
	list-style-type: none;
}
/* スペース調整==================== */
.w1800{
	max-width: 1800px;
	margin: auto;
}
.w960{
	max-width: 960px;
	margin: auto;
}
.w1366{
	width: calc(100% - 200px);
	margin: auto;
	max-width: 1366px;
}
.h50{
	height: 50px;
}
.h30{
	height: 30px;
}

.wrap80{
	padding: 0 10%;
}
.wrap80 p{
	line-height: 180%;
	margin-bottom: 1rem;
}
/* 最大表示幅枠　==================== */
.wrapper{
	max-width: 1800px;
	margin: auto;
}
/* 背景==================== */
.bg_ivory{
	background:#f8f4e6;
}
.bg_wood{
	background: url("../img/bg_img01.jpg") repeat-y;
	background-size: 100%;
}

.bg_img_deko_c{
	background:url("../img/bg_line_vw.png") repeat-y;
	background-position: left 10px top;
}
.bg_inner_w{
	background: rgba(255,255,255,1.0);
	border-radius: 30px;
	padding: 50px 15px;
}
.bg_inner_ivory{
	background: #f8f4e6;;
	border-radius: 30px;
	padding: 50px 15px;
}
/* フレックスボックス==================== */
.card001 figure img,.card001_e figure img{
	width: 100%;
	border-radius: 15px;
}
.card001 figure figcaption,.card001_e figure figcaption{
	width: 100%;
}
.card001 figure figcaption h3,.card001_e figure figcaption h3{
	text-align: center;
	color: #e68a2e;
}
.card001 figure figcaption h3 span,.card001_e figure figcaption h3 span{
	font-size: 200%;
}
.card001 figure figcaption h4{
	font-weight: 700;
	font-size: 1.2em;
}

.card001_e{
	display: flex;
	align-content: flex-start;
	justify-content:space-between;
}
.card001_e figure.event{
	width: calc(100% / 4 - 20px);
	padding: 8px;
	align-self: stretch;
	background:rgba(255,255,255,0.55);
	border-radius: 20px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}
.card002{
	display: flex;
	justify-content: center;
	align-content: center;
}
.card002 > div{
	width: 100%;
	padding: 10px;
}
.card002 div img{
	width: 100%;
}
.align_end{
	align-items: flex-end
}
.card002 .img{
	max-width: 600px;
	margin: auto;
}
.img_4-3{
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 20px;
	object-fit: cover;
}
.img_16-9{
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	object-fit: cover;
}
/* 見出し　================================================== */
.txt_lv02{
	text-align: center;
	font-size: 1.5rem;
	line-height: 150%;
	margin-bottom: 30px;
	color: #fff;
}

.txt_lv02 span{
	font-size: 250%;
	color: #fff;
}

.greeting .txt_lv02{
	color: #804000;
}

.greeting .txt_lv02 span{
	font-size: 250%;
	color: #804000;
}

.txt_lv03{
	font-size: 1.2em;
	border-bottom: dashed 1px #ccc;
	margin-bottom: 30px;
}
.txt_lv03 span{
	color: #008000;
	font-size: 150%;
}

.txt_lv04{
	font-size: 1.2em;
	border-bottom: solid 3px #008000;
	margin-bottom: 30px;
}



.txt_catch01{
	text-align: center;
	font-size: 1.5em;
	margin-bottom: 30px;
}
.txt_catch01::first-letter{
	color: #008000;
	font-size: 150%;
}
.txt_catch01 span{
	display: inline-block;
}

.txt_point01{
	font-weight: 700;
	color: #008000;
}


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

.btn{
	display:block;
	text-align: center;
	width: 250px;
	margin: auto;
	height: 45px;
	position: relative;
	border-radius: 30px;
	font-weight: 500;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	transition: .5s;
}
.btn a{
	display:block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background:#008000;
	color: #fff;
	font-weight: 700;
	line-height: 45px;
	border-radius: 30px;
	vertical-align: middle;
	transition: .5s;
}
.btn::after{
	color: #fff;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.btn a:hover{
	background:#4d2800;
	
}
.btn:hover::after{
	right: 10px;
	transition: .5s;
}
.contact_btn_wrap{
	width: 100%;
	display: flex;
}
.btn02{
	font-size: 1.2em;
	font-weight: 700;
    position: relative;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
    width: 100%;
    background-color: #fff;
    padding: 8px 30px;
	border-radius: 30px;
    text-align: center;
	margin-bottom: 20px;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
	cursor: pointer;
}
/*ボタン内spanの形状*/
.btn02 span {
	position: relative;
	z-index: 3;
	color:#4d2800;
	transition: ease .2s;
}

.btn02:hover span{
	color:#fff;
}

/*== 背景が流れる*/
.bgleft02:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#008000;
 	width: 100%;
	height: 100%;
	border-radius: 30px;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
.bgleft02:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
.btn_wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.btn_wrap > div{
	margin: 10px;
}

/* ヘッダー　==================== */
#header{
	width: 100%;
    height:auto;
    background: url("../img/bg_img01.jpg") repeat-y;
	background-size: 100%;
}
#header .header_in{
	max-width: 1800px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: auto;
	padding: 10px;
}
#header h1{
	line-height: 100%;
}
#header h1 img{
	width: 200px;
	vertical-align: middle;
	filter: grayscale(100%) invert(100%) brightness(200%);
}
.button_wrap{
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.button_wrap .phone{
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 100%;
}
.button_wrap .phone a{
	color: #fff;
	transition: .5s;
}
.button_wrap .phone a:hover{
	color: #008000;
}
.button_wrap .line{
	width: 70px;
	margin-left: 20px;
}
.button_wrap .line img{
	width: 60px;
	display: block;
	margin: auto;
	border-radius: 50%;
	transition: .5s;
}
.button_wrap .line img:hover{
	transform: translateY(-5px);
}

/*global_nav ==================*/
.global_nav{
	width: 100%;
	max-width: 1366px;
	margin: auto;
	padding: 10px;
}
.global_nav ul{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.global_nav ul li{
	width: calc(100% / 6);
	border-left: 1px dashed #e6ac73;
	position: relative;
	font-weight: 700;
	line-height: 150%;
}

.global_nav ul li:last-child{
	border-right: 1px dashed #e6ac73;
}
.global_nav ul li a{
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	transition: 0.2s all ease-in;
}
.global_nav ul li a:hover{
	transform: translateY(-5px);
	
}
.global_nav ul li a .img{
	width: 28%;
	margin: 0 auto;
}
.global_nav ul li a .img img{
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	filter: grayscale(100%) invert(100%) brightness(200%);
}

/* コンタクト　==================== */
.top_contact{
	background-image:url("../img/bg_img03.jpg");
	background-repeat:no-repeat;
	background-size: cover;
	background-position: center;
	padding: 50px 0 ;
	color: #fff;
}

.top_contact .txt p{
	padding: 1em;
	font-size: 1.1em;
	font-weight: 700;
}
.top_contact .map p{
	font-size: 1.1em;
	font-weight: 700;
	background: #f7c0cf;
	color: #333;
	padding-left: 1em;
}



/* フッター部分　==================== */
footer{
	padding: 50px 0 0;
}

footer h2 {
	text-align: center;
}
footer h2 img {
	width: 300px;
}
footer p{
	text-align: center;
}

footer small p{
	text-align: center;
	padding: 15px;
	background: #008000;
	color: #fff;
}

footer nav{
	max-width: 700px;
	margin: auto;
}
footer nav ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
footer nav ul li{
	font-size: 1em;
	padding: 1.5em 1em;
	text-align: center;
	transition:all .5s ease-in;
}
footer nav ul li i{
	font-size: 1.1em;
}
footer nav ul li a{
	color: #4d2800;
	padding-bottom: 10px;
	transition:all .5s ease-in;
}
footer nav ul li a::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f0da';
	padding: 5px;
}
footer nav ul li a:hover{
	color:#008000;
}
.line_footer{
	display: none;
}

/* スライダー　==================== */
.slide_wrap{
	width: 100%;
	height: 600px;
	position: relative;
}
.slide_wrap::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("../img/bg_line_vw.png") repeat-y;
	background-position: left 10px top;
	opacity: 0.8;
	
}
.top_slider{
	overflow: hidden;
	position: relative;
}
.top_slider .slider li{
	position: relative;
	width: 100%;
	height: 600px;
	background:#fff;
	background-size: cover;
	background-position: center center;
}
.top_slider .slider li.top01{
	background:url("../img/slide01.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}
.top_slider .slider li.top02{
	background:url("../img/slide04.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}
.top_slider .slider li.top03{
	background:url("../img/slide05.jpg") no-repeat;
	background-size: cover;
	background-position: right;
}
.top_slider .slider li.top04{
	background:url("../img/slide03.jpg") no-repeat;
	background-size: cover;
	background-position: right;
}

.slide_catch{
	position: absolute;
	top: 5%;
	right: 5%;
	z-index: 20;
}
.slide_catch img{
	width: 70px;
}
.slide_catch .c01{
	position: absolute;
	right: 0;
	top: 0;
}
.slide_catch .c02{
	position: absolute;
	right: 100px;
	top: 50px;
}
.slide_catch .c03{
	position: absolute;
	right: 200px;
	top:100px;
}




/* 各コンテンツ枠　======================================== */
section.contents{
	padding: 50px 0;
}


.btm_img{
	width: 100%;
	max-width: 1200px;
	text-align: right;
	margin: auto;
}
.btm_img img{
	vertical-align: middle;
	width: 200px;
}

/* ご挨拶 ======================================== */
.greeting{
	width: calc(100% - 135px);
	margin: 0 0 0 auto;
	border-radius: 50px 0 0 50px;
	padding: 70px 15px 100px;
	background-image: url("../img/bg_g01.png"),url("../img/bg_g02.png"),url("../img/bg_g03.png");
	background-position: top right,bottom right,bottom left;
	background-color: #f8f4e6;
}

/* リンクコンテンツ================================================== */
.grid {
	display: flex;
	justify-content:flex-start;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 1rem;
	width: 100%;
	list-style: none;
	text-align: center;
}

.grid figure {
	position: relative;
	overflow: hidden;
	margin: 10px;
	width: calc(100% / 3 - 20px);
	min-width: 280px;
	max-width: 450px;
	max-height: 300px;
	border-radius: 30px;
	height: auto;
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	opacity: 1.0;
	transition: .5s;
}

.grid figure figcaption {
	padding: 2rem;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

figure.effect-goliath {
	background-repeat: no-repeat;
	background-size: auto 140px;
	background-color: #f8f4e6;
}
.chara01{
	background-image: url("../img/chara06.png") ;
	background-position: bottom 0px right;
}
.chara02{
	background-image: url("../img/chara02.png") ;
	background-position: bottom -50px right;
}
.chara03{
	background-image: url("../img/chara05.png") ;
	background-position: bottom -50px right;
}

figure.effect-goliath img,
figure.effect-goliath h3 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	cursor: pointer;
}

figure.effect-goliath img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-goliath h3{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
	font-size: 1.2em;
	font-weight: 700;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

figure.effect-goliath p {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #804000;
	padding: 10px 30px;
	text-transform: none;
	font-size: 1rem;
	text-align: right;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,50px,0);
	transform: translate3d(0,50px,0);
}

figure.effect-goliath:hover img {
	-webkit-transform: translate3d(0,-80px,0);
	transform: translate3d(0,-80px,0);
}

figure.effect-goliath:hover h3 {
	-webkit-transform: translate3d(0,-80px,0);
	transform: translate3d(0,-80px,0);
}

figure.effect-goliath:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

/* TOPへ戻るボタン==================== */
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 15px;
	bottom: 0;
	z-index: 999;
}
#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f077';
	font-size: 50px;
	color:#fff;
	position: absolute;
	width: 50px;
	height: 50px;
	top: -5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}


/* サブページタイトル==================== */

.subtitle{
	display: block;
	width: 100%;
	padding: 20px 0 50px;
	position: relative;
	background: url("../img/bg_img01.jpg") repeat;
	overflow: hidden;
	
}
.subtitle .inner{
	width: calc(100% - 50px);
	height: 200px;
	margin-right: 0;
	margin-left: auto;
	background-color: #f8f4e6;
	background-image:url("../img/bg_g02.png");
	background-position: bottom right;
	background-size: 300px;
	background-repeat: no-repeat;
	border-radius: 30px 0 0 30px;
}

.subtitle h2{
	color:#4d2800;
	text-align: center;
	width: fit-content;
	font-size:1.5rem;
	line-height: 150%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	text-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}
.subtitle h2 span{
	font-size: 200%;
	color:#008000;
}

.sub_chara img{
	position: absolute;
	bottom: 50px;
	left: 8%;
	width: auto;
	height: calc(100% - 75px);
}

/* パンくずナビ　==================== */
.breadcrumb {
	margin: 0;
	padding: 2px 5px;
	list-style: none;
	position: absolute;
	bottom:15px;
	left: 50px;
	font-size: 1em;
}

.breadcrumb li {
	display: inline;/*横に並ぶように*/
	list-style: none;
	font-size: 0.9rem;
}

.breadcrumb li:after {/* >を表示*/
	content: '>';
	padding: 0 0.2em;
	color: #fff;
}

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

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

.breadcrumb li a:hover {
	color: #fff;
}
/* table================================================== */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 2px #008000;
	padding: 1em;
	width: 30%;
}
.line02 table td{
	border-bottom: solid 2px #ccc;
	padding: 1em;
}

.line02 ul li{
	margin-bottom: 0.5em;
	text-indent: -1em;
	padding-left: 1em;
}
.line02 dl{
	display: flex;
	font-size: 0.9rem;
	margin-left: 1em;
	margin-bottom: 1em;
}
.line02 dl dt{
	width: 9em;
}

.map iframe{
	vertical-align: middle;
	border-radius: 30px;
}

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

ul.type02{
	margin-left: 1em;
	padding: 1em;
}
ul.type02 li{
	font-size: 1rem;
	border-bottom: dashed 1px #f3981d;
	margin-bottom: 1em;
	text-indent: -1em;
	padding-left: 1em;
	line-height: 180%;
}
ul.type02 li i{
	color: #008000;
}
ul.type02 a{
	color: #804000;
	transition: .5s;
}
ul.type02 a:hover{
	color: #008000;
}

dl.type02{
	margin-left: 1em;
	margin-bottom: 0.5em;
	border-bottom: dashed 1px #ccc;
}
dl.type02 dt{
	font-size: 1em;
}
dl.type02 dd{
	font-size: 1em;
	font-weight: 500;
}

.border01 li{
	font-size: 1.1rem;
	padding: 0.5em 0.5em 0.5em 1em;
	text-indent: -1em;
	border-bottom: dashed 1px #ccc;
}
.border01 li i{
	color: #008000;
}

/* 採用============================================================ */
.wrap_blur{
	width: 100%;
	position: relative;
}
.wrap_blur::after{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(248, 244, 230, 0.7);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	pointer-events: none;
	z-index: 1;
}
p.disabled_text{
	position: absolute;
	top: 30%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 1.8rem;
	color: #333;
}

/* タイムライン1============================================================ */
.timeline{
	position: relative;
	width: calc(100% - 30px);
	margin: auto;
}
.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: 36px;
    background: #f2dec2;
}
.timeline .timeline_inner:last-child::before{
	height: 5%;
	background-color: transparent;
}
.timeline .timeline_inner dt{
	width: 80px;
    height: 80px;
    line-height: 80px;
    background:#008000;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 4;
    letter-spacing: 0.05em;
}
.timeline .timeline_inner dd{
	flex: 1;
    position: relative;
    left: 20px;
    margin-top: 10px;
    padding: 15px 10px 15px 30px;
    z-index: 2;
    background: #fff;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
	border-left: solid 5px #804000;
}
.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:#804000;
    right:100%;
    top:2rem;
}
.timeline .timeline_inner dd span{
	font-size: 80%;
}
.timeline_inner h4{
	border-bottom: dashed 1px #ccc;
	margin-bottom: 1rem;
}
.timeline_inner p{
	color: #e68a2e;
}

/* QA ================================================== */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #4d2800;
}
.qa-list dl:first-child {
    border-top: 1px solid #4d2800;
}
.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 #4d2800;
    border-right: 2px solid #4d2800;
}
.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: 20px;
}
.qa-list dl dt::before {
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #008000;
}
.qa-list dl dd::before {
    font-size: 1.5rem;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #e68a2e;
}
.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 a{
	color: #e68a2e;
	transition: .5s;
}
.qa-list dl dd p a:hover{
	text-decoration: underline;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

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

.tel_button{
    position: relative;
	overflow: hidden;
	text-decoration: none;
	display: block;
    width: 100%;
	max-width: 500px;
    background:#008000;
	color:#fff;
	border-radius: 50px;
    padding: 10px;
    text-align: center;
	margin: 16px auto;
    outline: none;
    transition: ease .2s;
	cursor: pointer;
	font-size: 1.3em;
}
/*ボタン内spanの形状*/
.contents_mail .bgleft span {
	position: relative;
	z-index: 3;
	color:#fff;
	transition: .5s;
}

/*== 背景が流れる*/
.contents_mail .bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#4d2800;
 	width: 100%;
	height: 100%;
	border-radius: 50px;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
.contents_mail .bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}

.contents_mail ul.border01{
	width: 90%;
	max-width: 500px;
	margin: 30px auto ;
}


#mailform{
	width: 100%;
	padding: 20px;
	margin: 30px 0;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table tr{
	border-bottom: solid 1px #ccc;
}
#mailform table th{
	width: 220px;
	text-align: left;
	padding: 1em;
	vertical-align: middle;
	line-height: 120%;
	color: #4d2800;
}

#mailform table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
#mailform .radio{
	padding: 0 1rem;
	margin-bottom: 0.5rem;
}
#mailform .form_input,#mailform textarea{
	background-color:#fff;
	width: 100% !important;
	padding: 5px 10px;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #4d2800;
	background:#f3981d;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 5px;
	font-weight: 400;
	background:#008000;
	color:#fff;
	border-radius: 30px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background: #4d2800;
}
::placeholder{
	color: #a0a0a0;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #4d2800 !important;
	font-size: 1em !important;
	padding: 1em 0;
}
.infobox h5{
	color: #4d2800;
	border-bottom: solid 1px #ccc;
	margin-top: 1rem;
}
.infobox p{
	font-size: 0.8em !important;
	color: #4d2800;
	padding: 0.5rem 1rem;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 5px 10px;
	background:#fff;
	border-radius: 5px;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 700;
	border-radius: 30px;
	background:#65ab31;
	padding: 0.25em 1em;
	color: #fff;
	transition: .5s;
}
.postcord_btn:hover{
	background:#4d2800;
}
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: #f3981d;
	opacity: 0;
	height: 12px;
	width: 12px;
	left: 9px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
  opacity: 1;
}
label.check-label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	margin-right: 30px;
}

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

label.check-label:after {
  content: "";
  position: absolute;
  top: 10px;
  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: #f3981d;
  border-color: #f3981d;
}

input:checked + label.check-label:after {
  transform: rotate(-45deg) scaleX(1);
}

/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	transform : translate(0, 80px);
	transition : all 500ms;
	}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

