@charset "UTF-8";
/* CSS Document */
/* -------------------------------------
Browser：IE11 over
-------------------------------------
01:共通
02:テンプレート
03:ページ
-------------------------------------*/

/** ================================================================================
  01.共通
================================================================================ **/
/* -------------------------------------
レイアウト
-------------------------------------*/
.w100vw{
	margin-left: calc( ( 100% - 100vw ) / 2 );
	margin-right: calc( ( 100% - 100vw ) / 2 );
}
.block{
	display: block;
}

@media screen and (max-width: 768px) {
	.sp90p{
		width: 90%;
		margin-left: auto;
		margin-right:auto;
	}
}


/* -------------------------------------
セクション
-------------------------------------*/
body main{
    background: #FBF7ED;
	overflow: hidden;
}
body section,
body aside{
	padding: 1px 0;
    position: relative;
/*  z-index: 1;*/
}

@media screen and (max-width: 768px) {
	body section,
	body aside{
		width:100%;
		padding-left: 5vw;
		padding-right: 5vw;
	}
    section.sp100vw{
        width:100vw;
        padding-left: 0;
        padding-right: 0;
    }
    section .sp100vw{
        margin-left: -5vw;
        margin-right: -5vw;
    }
}


/* -------------------------------------
背景
-------------------------------------*/
.bg-bk{
    background: #000;
}
.bg-wh{
	background: #fff;
}
.bg-be_l{
	background: #FBF7ED;
}
.bg-be{
    background: #F2E8CE;
}
.bg-y{
    background: #FFD200;
}
.bg-o{
    background: #ef5c2d;
}
.bg-g{
    background: #03B46D;
}
.bg-br{
	background: #3c170d;
}


/* -------------------------------------
文字
-------------------------------------*/
.not-sans-jp{
	font-family: 'Noto Sans JP', sans-serif; /*500/700*/
}
.century-gothic,
b{
	font-family: 'Century Gothic';
	font-weight: bold;
}

/*色*/
.white{
	color: #fff;
}
.yellow{
    color: #FFD200;
}
.orange{
    color: #ef5c2d;
}
.green{
    color: #03B46D;
}

/**黄色マーカー**/
mark{
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFEC98));
	background: linear-gradient(transparent 70%, #FFEC98 0%);
}

/*リッチテキスト*/

@media screen and (max-width: 768px) {
    .richtext *[style*="font-size: 16px"]{
        font-size: 1rem!important;
    }
	.richtext *[style*="font-size: 20px"],
    .richtext *[style*="font-size: 24px"]{
        font-size: 1.2rem!important;
    }
    .richtext *[style*="font-size: 28px"],
    .richtext *[style*="font-size: 32px"],
    .richtext *[style*="font-size: 36px"]{
        font-size: 1.1rem!important;
    }
    .richtext *[style*="font-size: 48px"],
    .richtext *[style*="font-size: 60px"],
    .richtext *[style*="font-size: 72px"],
    .richtext *[style*="font-size: 96px"]{
        font-size: 2.4rem!important;
    }
}


/* -------------------------------------
タイトル
-------------------------------------*/
/*titA*/
.titA{
	text-align: center;
	position: relative;
}
.titA::before{
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	margin-bottom: 16px;
	background: url(/common/images/ico-home.svg) no-repeat center / contain;
}

/*titB*/
.titB-wrap{
	height: 250px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: calc( ( 100% - 100vw ) / 2 );
	margin-right: calc( ( 100% - 100vw ) / 2 );
	padding: 35px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.titB-wrap.B-1{background-image: url(/common/images/reason-bg1.jpg)}
.titB-wrap.B-2{background-image: url(/common/images/reason-bg2.jpg)}
.titB-wrap.B-3{background-image: url(/common/images/reason-bg3.jpg)}
.titB-wrap.B-4{background-image: url(/common/images/reason-bg4.jpg)}
.titB-wrap.B-5{background-image: url(/common/images/reason-bg5.jpg)}

.titB{
	font-size: 45px;
	color: #ffd200;
}
.titB b{
	font-size: 0.95em;
	color: #fff;
}
.titB-wrap p{
	margin-top: 20px;
	color: #fff;
	font-weight: bold;
}



@media screen and (max-width: 768px) {
    /*titA*/
    .titA{
    }
    .titA::before{
        height: 30px;
        margin-bottom: 10px;
    }

    /*titB*/
    .titB-wrap{
        height: 200px;
        margin-left: calc( ( 100% - 100vw ) / 2 );
        margin-right: calc( ( 100% - 100vw ) / 2 );
        padding: 30px;
    }
    .titB{
        font-size: 7vw;
    }
    .titB b{
        font-size: 0.95em;
    }
    .titB-wrap p{
        margin-top: 20px;
    }
    
    
}


/* -------------------------------------
btn
-------------------------------------*/
.btn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding:16px;
    text-align: center;
    line-height: 1.2;
    cursor: pointer;
    background: #FFD200;
    border: 2px solid #FFD200;
    border-radius: 50px;
    text-decoration: none;
}.btn:hover{
    background: #fff;
}
/*白*/
.btn.btn-wh{
    color: #381c01;
    background: #fff;
}.btn.btn-wh:hover{
    color: #fff;
    background: #381c01;
}

@media screen and (max-width: 768px) {
	.btn{
		width: 80%;
		padding:14px;
	}
}



/* -------------------------------------
af-arrow
-------------------------------------*/
.af-arrow{
	position: relative;
	margin-bottom: 120px;
}
.af-arrow::after{
	content: "";
	display: block;
	width: 100%;
	height: 120px;
	background: url(/common/images/arrow.svg) no-repeat center / auto 80px;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}


@media screen and (max-width: 768px) {
	.af-arrow{
		margin-bottom: 80px;
	}
	.af-arrow::after{
		height: 80px;
		background-size: auto 50px;
	}
}



/* -------------------------------------
枠
-------------------------------------*/
/*flameA*/
.flameA{
	position: relative;
}
.flameA::before{
	content: "";
	width: 88%;
	height: 94%;
	background: url(/common/images/bg-stripe.svg) repeat left top / 74px auto;
	position: absolute;
	left: -10px;
	bottom: -10px;
}
.flameA::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 70px 70px;
	border-color: transparent transparent #FBF7ED transparent;
	position: absolute;
	right: 0;
	bottom: 0;
}
.flameA .inner{
	padding: 50px;
	position: relative;
}
.flameA h3{
	position: relative;
}
.flameA h3 span{
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 2px solid #221E1F;
	position: relative;
}
.flameA h3 span::after{
	content: "";
	display: block;
	width: 100%;
	height: 15px;
	background: url(/common/images/balloon.svg) no-repeat center top / contain;
	position: absolute;
	left: 0;
	bottom: -15px;
}

/*flameB*/
.flameB{
	padding: 40px;
	border: 1px solid #221E1F;
	background: #fff;
	border-radius: 20px;
}

/*flameC*/
.flameC{
	padding: 30px;
	border:20px solid #EBE27C;
	background: #fff;
	border-radius: 10px;
}

/*flameD*/
.flameD{
	padding: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #3c170d;
}
.flameD span{
	color: #ffd200;
}


@media screen and (max-width: 768px) {
	/*flameA*/
	.flameA::before{
		width: 80%;
		height: 96%;
		background-size: 60px auto;
		left: -8px;
		bottom: -8px;
	}
	.flameA::after{
		border-width: 0 0 50px 50px;
	}
	.flameA .inner{
		padding: 26px;
	}

	/*flameB*/
	.flameB{
		padding: 26px;
		border-radius: 20px;
	}

	/*flameC*/
	.flameC{
		padding: 20px;
		border-width: 10px;
	}

	/*flameD*/
	.flameD{
		padding: 20px;
	}

}

/* -------------------------------------
連番
-------------------------------------*/
.count li{
	counter-increment: li;
}
.count li::before{
    content: counter(li) !important;
/*	content: counter(li, decimal-leading-zero); ←各連番に0が付く（例）01、02、03･･･*/
}



/* -------------------------------------
gmap
-------------------------------------*/
.gmap{
  position: relative;
  padding-bottom: 320px;/** ←%でも可。%指定だと幅によって高さが変わるが、vhなら幅が変わっても高さは変わらない！**/
  height: 0;
  overflow: hidden;
}
.gmap iframe, .gmap object, .gmap embed{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .gmap{
    padding-bottom: 35vh;/** ←%でも可。%指定だと幅によって高さが変わるが、vhなら幅が変わっても高さは変わらない！**/
  }
}



/* -------------------------------------
objedt-fit
-------------------------------------*/
.of img {
	width: 100%;
	height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';  /*IE対策*/
}


/* -------------------------------------
その他
-------------------------------------*/
.lh2{
	line-height: 2.0;
}
h2,h3,h4{
	font-weight: bold;
}
strong{
	font-weight: bold;
}


/* -------------------------------------
ヘッダー
-------------------------------------*/
header{
	width: 100%;
	max-width: 980px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 10px auto 20px;
    font-size: 14px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
    header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        margin-bottom: 0;
    }
    header .logo {
		margin: 0 0 10px 5%;
		width: 68%;
		max-width: 300px;
    }
    header .logo img{
    }
    header .tel{
		display: none;
    }
}


/* -------------------------------------
フッター
-------------------------------------*/
footer{
    padding: 20px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    background: #ef5c2d;
	position: relative;
}
footer .logo{
    margin: 16px auto;
}


footer nav ul{
	display: flex;
	flex-wrap: wrap;
	width: 980px;
	margin: 20px auto;
	justify-content: center;
	font-size: 14px;
}
footer nav ul li{
	padding: 1px 10px;
	margin: 5px 0;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	margin-left: -1px;
}


/*コピーライト*/
footer .copyright{
}
footer .copyright small{
	font-size: 14px;
    line-height: 1.0;
}



@media screen and (max-width: 768px) {
    footer{
        padding: 20px;
        font-size: 12px;
    }
    footer .logo{
        max-width: 280px;
        margin: 16px auto;
    }

    /*コピーライト*/
    footer .copyright small{
        font-size: 10px;
    }
}

/* -------------------------------------
pagetop
-------------------------------------*/
#pagetop{
	display: inline-block;
    position: absolute;
    left: 50%;
    top: -45px;
    top: 0;
    -webkit-transform: translate(-50%, -80%);
    transform: translate(-50%, -80%);
}

@media screen and (max-width: 768px) {
    #pagetop{
        width: 40px;
    }
}

/* -------------------------------------
hero
-------------------------------------*/
.hero{
    height: 970px;
    text-align: center;
    border-top: 10px solid #ef5c2d;
    border-bottom: 10px solid #ef5c2d;
    background: url(/common/images/hero-bg.jpg) no-repeat center / cover;
	position: relative;
}
.hero img{
    padding: 30px 0 0 58px;
}

@media screen and (max-width: 768px) {
    .hero{
/*
        height: 70vh;
        border-top-width: 6px;
        border-bottom-width: 6px;
*/
		height: auto;
		border:none;background: none;
    }
    .hero img{
        padding: 0;
    }
}


/* -------------------------------------
sec1
-------------------------------------*/
#sec1 {
    margin-top: -63px;
}
#sec1 h2{
    padding: 20px;
    font-size: 17px;
    color: #fff;
    text-align: center;
    background: #ef5c2d;
    border-radius: 6px 6px 0 0;
}
#sec1 h2::after{
    content: "▼";
    margin-left: 0.5em;
}
#sec1 h2.on::after{
    content: "▲";
}
#sec1 dl{
    display: none;
    font-size: 15px;
    text-align: center;
    background: #fff;
}
#sec1 dl dt{
    font-size: 1.1em;
    color: #ef5c2d;
    line-height: 40px;
    background: #FFF1B2;
}
#sec1 dl dd{
    padding: 15px;
}

@media screen and (max-width: 768px) {
    #sec1 {
        width: 90%;
        margin: -42px auto 0;
        margin: 0 auto 0;
    }
	#sec1 .w980{
		width: 100vw;
		margin-left: -10vw;
	}
    #sec1 h2{
        padding: 10px;
        font-size: 16px;
		border-radius: 0;
    }
    #sec1 dl{
        font-size: 14px;
    }
    #sec1 dl dt{
        line-height: 30px;
    }
    #sec1 dl dd{
        padding: 10px;
    }
}



/* -------------------------------------
見学会
-------------------------------------*/
.kengakukai ul.kengaku-list li{
	min-height: 200px;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.kengakukai ul.kengaku-list li:first-child{background: #fff;}
.kengakukai ul.kengaku-list li:nth-child(2){background: #ffd200;}
.kengakukai ul.kengaku-list li:nth-child(3){background: #03B46D;}
.kengakukai ul.kengaku-list li:last-child{background: #ef5c2d;}


.kengakukai ul.kengaku-list li.richtext{
	font-size: 2.0rem;
	font-weight: bold;
	font-weight: bold;
	color: #fff;
	padding:15px 0;
}
.kengakukai ul.kengaku-list li.day{
    font-size: 36px;
    font-weight: bold;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

.kengakukai .bg-bk{
    padding: 16px;
    color: #fff;
    text-align: center;
}
.kengakukai dl{
    text-align: center;
}
.kengakukai dl.place>*,
.kengakukai dl.day>*{
    display: inline;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

.kengakukai dl.place dt,
.kengakukai dl.day dt{
	font-weight: inherit;
}
.kengakukai dl.day dt::after{
    content: ":";
    margin: 0 14px;
}
/*
.kengakukai dl.place{
    margin: 30px auto 20px;
}
*/

/***************************☆　ただ今 作業中　☆****************************/
.kengakukai dl.place{
	margin:40px 5% 15px 13%;
	text-align: left;
}.kengakukai dl.place+.place{
	margin:15px 5% 40px 13%;
}
.kengakukai dl.place dt{
	display: inline-block;
	margin-right:15px;
	padding:5px 0;
	width: 8em;
	border-radius: 50px;
	background: #03b46d;
	color: #fff;
	text-align: center;
}
.kengakukai dl.place+.place dt{
	background: #ef5c2d;
}
.kengakukai dl.place a{
	display: inline-block;
	margin-left:15px;
	padding:3px 15px;
	border:1px solid #646464;
	border-radius: 5px;
	background: #646464;
	color: #fff;
	font-size: 0.8em;
}.kengakukai dl.place a:hover{
	background: #fff;
	color: #646464;
}
/***************************☆　ただ今 作業中　☆****************************/


.kengakukai .gmap{
    width: 900px;
    margin: 0 auto;
}
.kengakukai .maping{
    width: 900px;
    margin: 0 auto;
}

.kengakukai dl.toiawase{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border: 1px solid #231F20;
}
.kengakukai dl.toiawase dt{
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    background: #231F20;
}
.kengakukai dl.toiawase dd{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px 30px;
}
.kengakukai dl.toiawase dd:first-of-type{
    margin-top: 30px;
}
.kengakukai dl.toiawase dd a.map{
    margin-left: 20px;
    padding:4px 30px;
    color: #fff;
    line-height: 1.0;
    background: #231f20;
    border-radius: 40px;
}
.kengakukai dl.toiawase dd a[href^="tel"]{
    margin-left: 20px;
    font-family: 'Century Gothic';
    font-size: 20px;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    .kengakukai ul.kengaku-list li{
        min-height: 160px;
        width: 100%;
		padding: 14px;
    }
	.kengakukai ul.kengaku-list li:first-child{
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.kengakukai ul.kengaku-list li:nth-child(2){
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.kengakukai ul.kengaku-list li:nth-child(3){
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.kengakukai ul.kengaku-list li:nth-child(4){
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.kengakukai ul.kengaku-list li:nth-child(5){
		-webkit-box-ordinal-group:6;
		-ms-flex-order:5;
		order:5;
	}
	.kengakukai ul.kengaku-list li:last-child{
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.kengakukai ul.kengaku-list li:first-child img{
		width: 80%;
		max-width: 300px;
	}
	.kengakukai ul.kengaku-list li:nth-child(2) img{
		width: 100%;
		max-width: 340px;
	}
    .kengakukai ul.kengaku-list li.richtext{
        font-size: 1.4rem;
    }
    .kengakukai ul.kengaku-list li.day{
        font-size: 25px;
    }
    .kengakukai .bg-bk{
/*        padding: 16px;*/
    }
    .kengakukai dl.day dt::after{
        margin: 0 10px;
    }
	
	/***************************☆　ただ今 作業中　☆****************************/
	.kengakukai dl.place{
		margin:20px 5% 0;
		text-align: left;
	}.kengakukai dl.place+.place{
		margin:15px 5% 20px;
	}
	.kengakukai dl.place dd{
		display: block;
		margin: 5px 0 0;
	}
	.kengakukai ul.kengaku-list02 li.day{
    font-size: 25px;
	}
	.kengakukai dl.place a{
		display: inline-block;
		margin:0;
	}
	/***************************☆　ただ今 作業中　☆****************************/
	
	
	
    .kengakukai .gmap{
        width: 100%;
    }
    .kengakukai .maping{
	width: 100%;
	}
    .kengakukai dl.toiawase{
        margin-bottom: 30px;
        padding-bottom: 0;
    }
    .kengakukai dl.toiawase dt{
        font-size: 16px;
    }
    .kengakukai dl.toiawase dd{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
        margin: 10px 14px;
    }
    .kengakukai dl.toiawase dd:first-of-type{
        margin-top: 18px;
    }
    .kengakukai dl.toiawase dd a.map{
		display: block;
		width: 200px;
        margin: 16px auto 0;
        padding:6px 30px;
    }
    .kengakukai dl.toiawase dd a[href^="tel"]{
        margin: 10px auto;
    }
}



/* -------------------------------------
スライド
-------------------------------------*/
.gallary_slide{
    height: 300px;
}
.gallary_slide img{
    width: auto;
    height: 300px; /* ← 100%は不可 */
}

@media screen and (max-width: 768px) {
    .gallary_slide{
        height: 180px;
    }
    .gallary_slide img{
        height: 180px; /* ← 100%は不可 */
    }
}


/* -------------------------------------
sec3
-------------------------------------*/
#sec3 {
	background: url(/common/images/nayami-bg.jpg) no-repeat center / cover;
}
#sec3 h2{
	margin-top: -2px;
	padding: 10px;
	color: #fff;
	text-align: center;
	background: #03b46d;
	position: relative;
}
#sec3 h2::after{
	content: "▼";
	font-size: 50px;
	line-height: 1.0;
	position: absolute;
	left: 50%;
	bottom: -0.7em;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	color: #03b46d;
}
#sec3 ul.nayami-list{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	margin: 50px auto 40px;
}
#sec3 ul.nayami-list li{
	margin: 12px;
}

@media screen and (max-width: 768px) {
	#sec3 h2{
		padding: 10px 10%;
	}
	#sec3 h2::after{
		font-size: 40px;
	}
	#sec3 ul.nayami-list{
		margin: 30px auto;
	}
	#sec3 ul.nayami-list li{
		width: 40%;
		margin: 0 12px;
	}
}


/* -------------------------------------
sec4
-------------------------------------*/
#sec4 .box1{
	padding: 25px;
	color: #fff;
	font-weight: bold;
	background: #bba366;
}

#sec4 dl{
	padding: 16px;
	text-align: center;
	background: #ef5c2d;
}
#sec4 dl dt{
	padding: 16px ;
	color: #fff;
	font-weight: bold;
}
#sec4 dl dd{
	padding: 24px;
	background: #ffd200;
}
#sec4 dl dd strong{
	display: block;
	color: #ef5c2d;
}

#sec4 .reason-list li{
	min-height: 52px;
	margin-top: 18px;
	padding-left: 70px;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}
#sec4 .reason-list li::before{
	content: "";
	display: block;
	width: 52px;
	height: 52px;
	font-family: 'Century Gothic';
	font-size: 42px;
	font-weight: bold;
	color: #ef5c2d;
	background: #ffd200;
	border-radius: 50%;
	text-align: center;
	line-height: 52px;
	position: absolute;
	left: 0;
	top: -6px;
}
#sec4 .reason-list li strong{
	font-size: 1.3em;
	color: #ef5c2d;
}

@media screen and (max-width: 768px) {
	#sec4 >.w980{
		margin-top:0;
	}
	#sec4 dl{
		padding: 16px;
	}
	#sec4 dl dt{
		font-size: 24px;
	}
	#sec4 dl dd{
		padding: 24px;
	}
	
	#sec4 .reason-list li{
		min-height: auto;
		margin-top: 18px;
		padding-left: 46px;
		font-size: 16px;
	}
	#sec4 .reason-list li::before{
		width: 36px;
		height: 36px;
		font-size: 30px;
		line-height: 36px;
		top: 0;
	}
	#sec4 .reason-list li strong{
		font-size: 1.1em;
		padding-right: 4px;
		padding-left: 4px;
	}
}


/* -------------------------------------
sec5
-------------------------------------*/
#sec5 .block1 h3{
	padding: 10px;
	color: #fff;
	text-align: center;
	background: #3C170D;
}
#sec5 .block1 .box2C{
	padding: 30px;
}
#sec5 .block1 .box2C .inner{
	padding: 20px;
	background: #fff;
}

#sec5 .block2 .sugi-list li{
	margin-top: 18px;
	padding-left: 1.5em;
	position: relative;
}
#sec5 .block2 .sugi-list li::before{
	content: "";
	font-family: 'Century Gothic';
	font-size: 1.3em;
	font-weight: bold;
	color: #03b46d;
	line-height: 52px;
	position: absolute;
	left: 0;
	top: 0;
}

#sec5 .block3{
}
#sec5 .block3 .box2C>*{
	width: 46.5%;
}
#sec5 .block3 figure{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#sec5 .block4{
	padding: 40px;
	background: #FFF1B2;
	border-radius: 20px;
}
#sec5 .block4 .tree{
	padding-left: 100px;
	color: #3C170D;
	line-height: 1.5;
	position: relative;
}
#sec5 .block4 .tree::before{
	content: "";
	display: inline-block;
	width: 80px;
	height: 80px;
	background: url(/common/images/ico-tree.svg) no-repeat center / contain;
	position: absolute;
	left: 0;
	top: 0;
}
#sec5 .block4 .bln>*{
	width: 50%;
}
#sec5 .block4 .bln .inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	position: relative;
}
#sec5 .block4 .bln .inner::before{
	content: "◀";
	font-size: 40px;
	color: #ef5c2d;
	position: absolute;
	left: -25px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#sec5 .block4 .explain{
	position: relative;
}
#sec5 .block4 .explain::after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	border-left: 2px dotted #646464;
}
#sec5 .block4 .box2C dl{
	width: 45%;
}
#sec5 .block4 .box2C dl dt{
	margin-bottom: 10px;
}
#sec5 .block4 .box2C dl dt b{
	display: inline-block;
	margin-right: 10px;
	font-size:1.1em;
	color: #ef5c2d;
}
#sec5 .block5>*{
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#sec5 .block5 figure{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#sec5 .block5 .inner{
	padding: 20px 40px;
}


@media screen and (max-width: 768px) {
	#sec5 .block1 .box2C{
		padding: 20px;
	}
	#sec5 .block2 .sugi-list li::before{
		line-height: 1.4;
	}
	#sec5 .block3 .box2C>*{
		width: 100%;
	}
	#sec5 .block3 figure.bg-y{
		margin-bottom: 20px;
		padding: 30px;
	}

	#sec5 .block4{
		padding: 26px;
	}
	#sec5 .block4 .tree{
		padding-left: 0;
	}
	#sec5 .block4 .tree::before{
		display: block;
		width: 100%;
		height: 60px;
		position: static;
		margin: -40px auto 10px;
	}
	#sec5 .block4 .bln>*{
		width: 100%;
	}
	#sec5 .block4 .bln figure img{
		width: 100%;
	}
	#sec5 .block4 .bln .inner{
		padding: 10px;
	}
	#sec5 .block4 .bln .inner::before{
		content: "▲";
		font-size: 30px;
		left: 50%;
		top: -0.8em;
		-webkit-transform: translate(-50%,0);
		transform: translate(-50%,0);
		line-height: 1.0;
	}

	#sec5 .block4 .explain::after{
		display: none;
	}
	#sec5 .block4 .box2C dl{
		width: 100%;
		padding: 0 0 16px;
	}
	#sec5 .block4 .box2C dl+dl{
		padding-top: 16px;
		border-top: 2px dotted #646464;
	}
	#sec5 .block4 .box2C dl dt{
		margin-bottom: 10px;
	}
	#sec5 .block5>*{
		width: 100%;
	}
	#sec5 .block5 .inner{
		padding: 10px 26px 26px;
	}
}


/* -------------------------------------
sec6
-------------------------------------*/
#sec6 .block2 h3{
	padding: 15px;
}
#sec6 .block2 .box2C figure{
	width: 100%;
	max-width: 580px;
}
#sec6 .block2 .box2C .inner{
	width: 340px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-top: 1px solid #646464;
	border-bottom: 1px solid #646464;
}
#sec6 .block3 h3 img{
	margin-left: auto;
	margin-right: auto;
}
#sec6 .merrit-list li{
	margin-bottom: 14px;
	padding-left: 110px;
	position: relative;
}
#sec6 .merrit-list li img{
	position: absolute;
	left: 0;
	top: 0;
}

@media screen and (max-width: 768px) {

	#sec6 .block2 .box2C figure{
		margin:0 auto 20px;
	}
	#sec6 .block2 .box2C .inner{
		width: 100%;
		border:none;
	}
	#sec6 .block3 h3 img{
		width: 100%;
		max-width: 500px;
	}
	#sec6 .merrit-list li{
		margin-bottom: 18px;
		padding-left: 0;
		font-size: 1rem;
	}
	#sec6 .merrit-list li img{
		display: block;
		margin: 0 auto 8px;
		position: static;
		width: 70px;
	}
}


/* -------------------------------------
sec7
-------------------------------------*/
#sec7 .block1 figure{
	width: 520px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
}
#sec7 .block1 .inner{
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 20px;
	color: #fff;
	font-weight:bold;
	background: #BBA366;
}
#sec7 .block1 .point-list li{
	margin-bottom: 4px;
	line-height: 1.6;
}
#sec7 .block1 .point-list li::before{
	content: "●";
	color: #ffd200;
}

@media screen and (max-width: 768px) {
	#sec7 .block1 figure{
		width: 100%;
	}
}


/* -------------------------------------
sec8
-------------------------------------*/
#sec8 .block1 {
	padding-top: 60px;
	background: #F2E7CD;
}

#sec8 .block1 h3{
	width: 50%;
	max-width: 300px;
	margin: 0 auto;
	line-height: 60px;
	text-align: center;
}

.facility-list dt{
	margin: 20px auto 0;
	font-weight: bold;
	text-align: center;
}
.facility-list dt::after{
	content: "";
	display: block;
	margin: 10px auto 14px;
	width: 40px;
	height: 4px;
	background: #ffd200;
}
.facility-list dd{
	max-width: 360px;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.8;
}
.facility-list.box3C li{
	width: 30%;
}


@media screen and (max-width: 768px) {
	#sec8 .block1 {
		padding-top: 20px;
	}
	#sec8 .block1 h3{
		line-height: 46px;
	}
	.facility-list li{
		margin-bottom: 26px;
	}
	.facility-list dt{
		margin-top: 10px;
	}
	.facility-list dt::after{
		margin: 6px auto 10px;
	}
	.facility-list dd{
/*		font-size: 15px;*/
	}
	.facility-list.box3C{
		margin-top: 0;
	}
	.facility-list.box3C li{
		width: 100%;
	}
}



/* -------------------------------------
sec9
-------------------------------------*/
#sec9 h3.block1{
	padding: 10px;
	text-align: center;
	background: #fff;
	border: 2px dotted #221E1F;
}
#sec9 .hikaku>*{
	margin-top: 20px;
}
#sec9 .hikaku dd p{
	margin-top: 10px;
}

#sec9 .block2 h3{
	padding: 16px;
	text-align: center;
	background: #fff;
	border: 1px solid #221E1F;
}
#sec9 .service-list li{
	width: 300px;
	padding-bottom: 20px;
	text-align: center;
	line-height: 1.8;
	background: #fff;
	border: 1px solid #EF5C2D;
}
#sec9 .service-list li strong{
	margin-bottom: 20px;
	padding: 10px;
	display: block;
	color: #ffd200;
	line-height: 1.2;
	background: #EF5C2D;
}
#sec9 .block3 .box2C>*{
	width: 47%;
}
#sec9 .block3 .box2C h3{
	text-align: center;
}

@media screen and (max-width: 768px) {
	#sec9 .hikaku>*{
		margin-top: 16px;
	}
	#sec9 .hikaku dd p.fs15{
		font-size: 14px;
	}

	#sec9 .service-list li{
		width: 100%;
		margin-bottom: 10px;
		padding-bottom: 10px;
		line-height: 1.8;
	}
	#sec9 .service-list li strong{
		margin-bottom: 10px;
	}

	#sec9 .block3 .box2C{
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-flow: column-reverse;
		flex-flow: column-reverse;
	}
	#sec9 .block3 .box2C>*{
		width: 100%;
	}
	#sec9 .block3 .box2C figure{
		width: 100vw;
		margin-left: -5vw;
		margin-right: -5vw;
	}
	#sec9 .block3 .box2C h3{
		margin: 20px auto 0;
	}
	#sec9 .block3 .box2C h3 img{
		margin-bottom: 16px;
	}
}


/* -------------------------------------
youtube
-------------------------------------*/
.youtube{
	width:47%;
	position: relative;
	padding-bottom: 340px;
	/** ←%でも可。%指定だと幅によって高さが変わるが、vhなら幅が変わっても高さは変わらない！**/
	height: 0;
	overflow: hidden;
}
.youtube iframe, .youtube object, .youtube embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
  .youtube{
      width:100%;
      margin-bottom: 40px;
    padding-bottom: 50vw;/** ←%でも可。%指定だと幅によって高さが変わるが、vhなら幅が変わっても高さは変わらない！**/
  }
}




/* -------------------------------------
sec10
-------------------------------------*/
#sec10 h2{
	margin-left: calc( ( 100% - 100vw ) / 2 );
	margin-right: calc( ( 100% - 100vw ) / 2 );
	padding: 10px;
	color: #ef5c2d;
	text-align: center;
	background: #ffd200;
}
#sec10 h2::after{
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(/common/images/ico-arrow.svg) no-repeat center / contain;
	vertical-align: bottom;
}#sec10 h2.on::after{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
#sec10 .voice-list{
	display: none;
}
#sec10 .voice-list figure{
	margin: 0 auto 60px;
	text-align: center;
}
#sec10 .voice-list figure img{
	border:1px solid #221E1F;
}

@media screen and (max-width: 768px) {
	#sec10 h2{
		margin-left: calc( ( 100% - 100vw ) / 2 );
		margin-right: calc( ( 100% - 100vw ) / 2 );
		padding: 10px;
		color: #ef5c2d;
		text-align: center;
		background: #ffd200;
	}
	#sec10 h2::after{
		width: 26px;
		height: 26px;
		margin-top: 4px;
	}
	#sec10 .voice-list figure{
		margin-bottom: 30px;
	}
}



/* -------------------------------------
entry
-------------------------------------*/
#entry .tit-wrap>*{
	color: #fff;
	text-align: center;
}
#entry .tit-wrap a{
	display: block;
	margin-top: 10px;
	font-family: 'Century Gothic';
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	#entry .w900{
		width: 100vw;
		margin-left: -5vw;
		margin-right: -5vw;
	}
	#entry .tit-wrap a{
		font-size: 28px;
	}
}




/*フォーム*/
/**================================================================================
エントリー
================================================================================**/
#entry .form{
}
/**テーブル**/
.form {
	width: 700px;
	margin: 0 auto;
	padding-bottom: 50px;
}
.form table{
	width: 100%;
	margin: 30px auto;
}
.form table th,
.form table td{
	padding: 10px 0;
	text-align: left;
	line-height: 1.4;
	vertical-align: top;
}
.form table th{
	width: 220px;
	font-size: 18px;
	position: relative;
}
.form table td{
}
/**必須・任意**/
.form table th span {
	width: 50px;
	display: inline-block;
	margin:  auto 5px;
	padding: 6px;
	font-size: 0.9em;
	color: #fff;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	background: #646464;
	position: absolute;
	top: 10px;
	right: 10px;
}
.form table th span.require{
	background: #E70022;
}

.privacy{
	font-size: 0.9em;
	text-align: center;
	line-height: 1.8;
}
.privacy strong{
	display: block;
	margin-bottom: 10px;
}
.privacy a{
	color: #e70022;
}
.privacy .doui{
	text-align: center;
}

/*入力タグ*/
.form input[type="text"],
.form textarea,
.form select {
	width: 100%;
	height:30px;
	padding: 5px 4px;
	font-size: 15px;
	line-height: 1.2;
	border:1px solid #aaa;
	background: #FFF1B2;
	outline: none;
}
.form textarea {
	padding: 2px;
	min-height: 150px;
}
.form select{
	max-width: 300px;
	padding: 0 10px;
	font-size: 14px;
	line-height: 1.0;
}
/*ラジオボタンにスタイルあてる場合*/
.form label input[type="radio"] {}
/*チェックボックスにスタイルあてる場合*/
.form label input[type="check"] {}

/*送信ボタン*/
.form button{
	width: 80%;
	max-width: 420px;
	display: block;
	margin: 20px auto 0;
	padding: 12px;
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	background: #EF5D2E;
	border: 2px solid #EF5D2E;
	border-radius: 50px;
	position: relative;
	outline: none;
	cursor: pointer;
}.form button:hover{
	color: #ef5d2e;
	background: #fff;
}


@media screen and (max-width: 768px) {
	/**テーブル**/
	.form {
		width: 90%;
		max-width: 700px;
		padding-bottom: 50px;
	}
	.form table{
		margin-bottom: 10px;
	}
	.form table th,
	.form table td{
		display: block;
		padding: 0 0 20px;
	}
	.form table th{
		width: 100%;
		padding-bottom: 10px;
		font-size: 16px;
	}
	/**必須・任意**/
	.form table th span {
		margin: 0;
		padding: 4px;
		font-size: 0.7em;
		top: 0;
		right: 0;
	}
	.form table th span.require{
		background: #E70022;
	}

	.privacy{
		text-align: left;
	}

	/*入力タグ*/
	.form select{
		max-width: 300px;
		padding: 0 10px;
		font-size: 14px;
		line-height: 1.0;
	}
	/*ラジオボタンにスタイルあてる場合*/
	.form label input[type="radio"] {}
	/*チェックボックスにスタイルあてる場合*/
	.form label input[type="check"] {}

	/*送信ボタン*/
	.form button{
		margin: 20px auto 0;
		padding: 10px;
		font-size: 16px;
	}
}


/**================================================================================
確認画面
================================================================================**/
#formWrap {
	margin-top: 80px;
}
#formWrap p{
	margin-bottom: 20px;
}
#formWrap p em{
	display: inline-block;
	font-size: 1.2rem;
	color: #ef5c2d;
}
#formWrap p.error_messe{
	margin-bottom: 4px;
	color: #ef5c2d;
	font-size: 1.1rem;
	font-weight: bold;
}
#formWrap table{
	background: #fff;
}
input.btnA{
    display: inline-block;
    width: 40%;
    max-width: 250px;
    margin: 50px 10px 0;
	padding: 15px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	background: #1e1e1e;
	border: none;
	outline: none;
	position: relative;
}
input.btnA:hover{
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
    input.btnA{
        display: block;
        width: 80%;
        max-width: 200px;
        margin: 20px auto;
    }
}



/**-------------------------------------
thank
-------------------------------------**/
#thanks header,
/*#thanks footer,*/
#thanks #pagetop{
	display: none;
}
#thanks .titlogo{
    width: 350px;
	max-width: 350px;
}

@media screen and (max-width: 768px) {
	#thanks .titlogo{
        width: 70%;
	}
}





