@charset "utf-8";
html{
	-webkit-text-size-adjust: 100%;
}
html.close {
	overflow:hidden;
	height:100%;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size:16px;
	line-height:1.7;
	text-align:center;
	color:#60524C;
}

@media screen and (max-width:768px){
	body {
		line-height:1.6;
		font-size:3.4vw;
	}
}

.maru {
  font-family: "Zen Maru Gothic", sans-serif;
}


a {
	color:#60524C;
	transition : opacity 0.4s;
	-webkit-transition : opacity 0.4s;
	opacity:1;
	outline:none;
}
a:hover {
	opacity: 0.6;
}

img{
	max-width:100%;
}

.only_smart,
.only_smart_i,
.only_smart_f{
	display:none !important;
}

@media screen and (max-width:768px){
	.only_pc{
		display:none !important;
	}

	.only_smart{
		display:block !important;
	}
	.only_smart_i{
		display:inline-block !important;
	}
	.only_smart_f{
		display: -webkit-flex !important;
    display: flex !important;
	}
}

#wrapper{
	overflow:hidden;
}


/* 色関係 */
.white{
	color:#fff;
}
.bg_white{
	background-color:#fff;
}
.bg_pink{
	background-color:#ffe5d8;
}
.bg_pink2{
	background-color:#f9efe7;
}
.red{
	color:#ff8a89;
}
.bg_red{
	color:#fff;
	background-color:#ff8a89;
}
.bg_blue{
	color:#fff;
	background-color:#4c75cf;
}
.bg_yellow{
	background-color:#ffff81;
}




/* 書式 */
.text_left{
	text-align:left;
}
.text_right{
	text-align:right;
}
.bold{
	font-weight:bold;
}
.btn{
	display:inline-block;
	line-height:2.5;
	font-size:18px;
	font-weight:bold;
	color:#fff;
	border-radius:0.3em;
	position:relative;
}
.btn:after{
	content:'';
	display:block;
	width:0.8em;
	height:0.8em;
	border-top:1px solid;
	border-right:1px solid;
	position:absolute;
	right:1em;
	top:50%;
	transform:translateY(-50%) rotate(45deg);
}
.btn img{
	width:1.2em;
	margin-right:0.5em;
	vertical-align:-0.3em;
}

@media screen and (max-width:768px){
	.btn{
		font-size:3.8vw;
	}
}


/* .inner */
.inner{
	max-width:1024px;
	width:98%;
	margin:auto;
}

@media screen and (max-width:768px){
	.inner{
		width:90%;
	}
}


/* header */
header{
	width:100%;
	height:135px;
	padding-bottom:5px;
	position:fixed;
	top:0;
	left:0;
	z-index:100;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	transition : background 0.6s;
	-webkit-transition : background 0.6s;
}
header.bg,
header.scroll{
	background-color:rgba(255,255,255,0.8);
}
header.scroll{
	height:110px;
}

header .main{
	max-width:1240px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
header .main .pr{
	width:100%;
	line-height:1;
	font-size:12px;
	text-align:left;
	color:#aaa3a0;
}
header.scroll .main .pr{
	display:none;
}
header .main .head_logo{
	width:254px;
	line-height:0;
	position:relative;
	z-index:1;
}
header .main .tel ul{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
header .main .tel ul .only_pc{
	width:285px;
}

@media screen and (max-width:940px){
	header,
	header.scroll{
		height:90px;
		padding-bottom:0;
	}
	header .main{
		width:94%;
	}
	header .main .pr{
		display:none;
	}
	header .main .head_logo{
		width:200px;
	}
	header .main .tel ul .only_pc{
		width:240px;
	}
}

@media screen and (max-width:768px){
	header{
		height:60px;
	}
	header .main .head_logo{
		width:150px;
	}
	header .main .tel ul .only_smart{
		width:36px;
		margin-left:10px;
	}
}
@media screen and (max-width:350px){
	header .main .tel ul .only_smart{
		margin-left:5px;
	}
}


/* #menu */
#menu{
	width:100%;
	height:56px;
	background-color:rgba(255,255,255,0.8);
	position:fixed;
	top:135px;
	display:none;
}
header.scroll #menu{
	top:110px;
}
#menu .main_menu ul{
	max-width:1240px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
#menu .main_menu ul li:nth-child(n+2){
	border-left:1px dotted #7f7572;
}
#menu .main_menu ul li a{
	display:block;
	line-height:1.4;
	font-size:14px;
	font-weight:bold;
	letter-spacing:0.07em;
	padding:0 2.8em 0 2.87em;
}
#menu .smenu{
	display:none;
}

@media screen and (max-width:1180px){
	#menu .main_menu ul li a{
		padding:0 2vw 0 calc(2vw + 0.07em);
	}
}

@media screen and (max-width:940px){
	#menu{
		width:100%;
		height:100vh;
		padding:120px 0;
		background-color:#ffe5d8;
		overflow:auto;
		position:fixed;
		top:0;
	}
	header.scroll #menu{
		top:0;
	}
	#menu .main_menu ul{
		max-width:600px;
		width:80%;
		display: block;
	}
	#menu .main_menu ul li:nth-child(n+2){
		border-left:none;
		border-top:1px dotted #60524c;
	}
	#menu .main_menu ul li.only_pc{
		display:none !important;
	}
	#menu .main_menu ul li.only_smart{
		display:block !important;
	}
	#menu .main_menu ul li a{
		line-height:3;
		font-size:16px;
		letter-spacing:0.07em;
		padding:0;
		text-align:left;
		background:url(../images/arrow.png)no-repeat right center;
		background-size:1.5em auto;
	}
	#menu .main_menu ul li a .only_pc{
		display:none !important;
	}
	#menu .smenu{
		display:block;
	}
}

@media screen and (max-width:768px){
	#menu{
		padding-top:70px;
	}
}


/* .smenu */
.smenu{
	margin-top:min(9%,90px);
}
.smenu .tel{
	max-width:600px;
}
.smenu .tel dd{
	margin-top:0.3em;
	font-size:16px;
}
.smenu .contact{
	max-width:776px;
	margin-top:min(4%,40px);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.smenu .contact li{
	width:min(48.5%,380px);
}
.smenu .contact li a{
	line-height:3;
	display:block;
	font-size:24px;
	font-weight:bold;
	border-radius:100px;
	position:relative;
}
.smenu .contact li a:after{
	content:'';
	display:block;
	width:0.4em;
	height:0.4em;
	border-top:2px solid;
	border-right:2px solid;
	position:absolute;
	right:1em;
	top:50%;
	transform:translateY(-50%) rotate(45deg);
}
.smenu .contact li a img{
	width:1.5em;
	position:absolute;
	left:1.5em;
	top:50%;
	transform:translateY(-50%);
}
.smenu .sns{
	margin-top:min(4%,40px);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
}
.smenu .sns li{
	width:50px;
	margin:0 10px;
}

@media screen and (max-width:768px){
	.smenu .tel{
		width:80%;
	}
	.smenu .tel dd{
		font-size:3.4vw;
	}
	.smenu .contact{
		width:80%;
		margin-top:7%;
		display: block;
	}
	.smenu .contact li{
		width:auto;
		margin-top:3%;
	}
	.smenu .contact li a{
		line-height:2.5;
		display:block;
		font-size:5.2vw;
	}
	.smenu .sns{
		margin-top:9%;
	}
	.smenu .sns li{
		width:12%;
		margin:0 3%;
	}
}


/* #btnmenu */
#btnmenu{
	width:50px;
	height:50px;
	margin:0 0 0 10px;
	padding:0;
	position:relative;
	z-index:1;
	cursor:pointer;
	border-radius:0.5em;
}
#btnmenu span{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 2px;
	border-radius:2px;
	margin: -1px 0 0 -18px;
	background: #7f7572;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
#btnmenu span:before,
#btnmenu span:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 36px;
	height: 2px;
	background: #7f7572;
	border-radius:2px;
	-webkit-transition: .3s;
	transition: .3s;
}
#btnmenu span:before{
	margin-top: -11px;
}
#btnmenu span:after{
	margin-top: 9px;
}
#btnmenu.close span{
	width:36px;
	height:36px;
	box-shadow:none;
	background-color:transparent;
	border-radius:0;
}

#btnmenu.close span:before,
#btnmenu.close span:after{
	margin-top: 0;
	left:50%;
	background-color:#7f7572;
}

#btnmenu.close span:before{
	width: 36px;
	height: 2px;
	margin: -18px 0 0 0;
	border-radius:2px;
	-webkit-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
}
#btnmenu.close span:after{
	width: 36px;
	height: 2px;
	margin: -18px 0 0 0;
	border-radius:2px;
	-webkit-transform: translateX(-50%) rotate(-135deg);
	transform: translateX(-50%) rotate(-135deg);
}

@media screen and (max-width:768px){
	#btnmenu{
		margin:0 0 0 15px;
	}
}

@media screen and (max-width:350px){
	#btnmenu{
		margin:0 0 0 5px;
	}
}


/* article */
article{
	padding-top:90px;
}

@media screen and (max-width:940px){
	article{
		padding-top:70px;
	}
}

@media screen and (max-width:768px){
	article{
		padding-top:50px;
	}
}


/* #mv */
#mv{
	padding-bottom:20px;
	position:relative;
}
#mv .slick{
	background:linear-gradient(#fff 20%,#ffe5d8 80%);
}
#mv section{
	width:100%;
	padding-top:7%;
	position:absolute;
	top:0;
	left:0;
}

#mv section h1 span{
	width:24%;
	display:inline-block;
}
#mv section h1 > img{
	width:34%;
	display:block;
	margin:-12% auto 0;
}
#mv section figure{
	margin-top:13%;
	position:relative;
}
#mv section figure img{
	width:26%;
}
#mv section figure figcaption{
	width:100%;
	position:absolute;
	top:-25%;
}
#mv section figure figcaption img{
	width:38%;
}


@media screen and (max-width:768px){
	#mv{
		padding-bottom:14%;
	}
	#mv section{
		padding-top:18%;
	}

	#mv section h1 span{
		width:90%;
	}
	#mv section h1 > img{
		width:90%;
		margin:-40% auto 0;
	}
	#mv section figure{
		margin-top:48%;
	}
	#mv section figure img{
		width:80%;
	}
	#mv section figure figcaption{
		width:100%;
		position:absolute;
		top:-40%;
	}
	#mv section figure figcaption img{
		width:100%;
	}
}


/* .cont */
.cont{
	margin-top:-1px;
	padding:30px 0 180px;
}
.cont .tit1{
	width:min(49%,490px);
	aspect-ratio:490 / 140;
	margin:auto;
	font-size:min(2.2vw,22px);
	background-color:#fff;
	border-radius:1000px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	position:relative;
}
.cont .tit1 span{
	display:block;
	width:75%;
	letter-spacing:0.025em;
	text-indent:0.025em;
	position:relative;
	z-index:1;
}
.cont .tit1 span:before{
	content:'';
	display:block;
	width:1px;
	height:1.5em;
	border-left:1px solid;
	position:absolute;
	left:0;
	top:50%;
	transform:translateY(-50%) rotate(-40deg);
}
.cont .tit1 span:after{
	content:'';
	display:block;
	width:1px;
	height:1.5em;
	border-right:1px solid;
	position:absolute;
	right:0;
	top:50%;
	transform:translateY(-50%) rotate(40deg);
}
.cont .tit1 img{
	width:5em;
	position:absolute;
	right:0;
	bottom:0;
	transform:translate(47%,47%);
}
.cont .tit1_sub{
	line-height:1.3;
	margin-top:min(7%,70px);
	font-size:min(3.4vw,34px);
	letter-spacing:0.025em;
	padding-left:0.025em;
}

.cont .tit2 .small{
	display:inline-block;
	padding:0 1em;
	font-size:min(1.8vw,18px);
	letter-spacing:0.025em;
	text-indent:0.25em;
	border-radius:0.3em;
}
.cont .tit2 .large{
	display:block;
	margin-top:0.3em;
	font-size:min(3.4vw,34px);
	letter-spacing:0.025em;
}
.cont .tit2 .xlarge{
	line-height:0.8;
	font-size:min(7.2vw,72px);
}

@media screen and (max-width:1024px){
	.cont{
		padding:3% 0 20%;
	}
}

@media screen and (max-width:768px){
	.cont{
		padding:9% 0 20%;
	}
	.cont .tit1{
		width:90%;
		height:auto;
		aspect-ratio:678 / 192;
		font-size:4.1vw;
	}
	.cont .tit1 img{
		transform:translate(0,47%);
	}
	.cont .tit1_sub{
		margin-top:12%;
		font-size:7.5vw;
	}
	
	.cont .tit2 .small{
		padding:0 0.5em;
		font-size:4vw;
		letter-spacing:0.025em;
		text-indent:0.25em;
		border-radius:0.3em;
	}
	.cont .tit2 .large{
		margin-top:0.3em;
		font-size:7.4vw;
		letter-spacing:0.025em;
	}
	.cont .tit2 .xlarge{
		font-size:13vw;
	}
}


/* #cont1 */
#cont1{
	padding-top:0;
	background:#ffe5d8 url(../images/cont2_bg.png)no-repeat center bottom;
	background-size:1920px auto;
}
#cont1 p{
	margin-top:1.7em;
	letter-spacing:0.075em;
	padding-left:0.075em;
}
#cont1 .graph img{
	width:min(42%,426px);
	margin-top:min(5%,50px);
}
#cont1 .family img{
	width:min(83%,832px);
	margin-top:max(-25%,-250px);
}

@media screen and (max-width:1024px){
	#cont1{
		background-size:200% auto;
	}
	
	#cont1 p{
		padding:0 5%;
		text-align:left;
	}
	#cont1 p br{
		display:none;
	}
}

@media screen and (max-width:768px){
	#cont1{
		padding-bottom:38%;
		background:#ffe5d8 url(../images/cont2_bg_s.png)no-repeat center bottom;
		background-size:100% auto;
	}
	
	#cont1 .graph img{
		width:80%;
	}
	#cont1 .family img{
		width:94%;
		margin-top:-15%;
	}
}


/* #cont2 */
#cont2{
	padding-top:0;
	background:#f9efe7 url(../images/cont3_bg.png)no-repeat center bottom;
	background-size:1920px auto;
}
#cont2 .lead{
	margin-top:1.7em;
	padding-left:0.075em;
	letter-spacing:0.075em;
}
#cont2 .voice{
	margin-top:min(5%,50px);
}
#cont2 .voice figcaption{
	line-height:1.4;
	display:inline-block;
	margin-bottom:0.5em;
	padding:0.5em 1em 0.5em calc(1.025em);
	font-size:min(2.4vw,24px);
	font-weight:bold;
	letter-spacing:0.025em;
	position:relative;
}
#cont2 .voice figcaption:before{
	content:'';
	display:block;
	width:1px;
	height:100%;
	border-left:2px dotted;
	position:absolute;
	left:0;
	bottom:0;
	transform:rotate(-30deg);
}
#cont2 .voice figcaption:after{
	content:'';
	display:block;
	width:1px;
	height:100%;
	border-left:2px dotted;
	position:absolute;
	right:0;
	bottom:0;
	transform:rotate(30deg);
}

#cont2 .voice .fuki{
	width:min(70%,700px);
	display:block;
	margin:auto;
}
#cont2 .voice .woman{
	width:min(42%,426px);
	display:block;
	margin:max(-12%,-120px) auto 0;
}

#cont2 .spec{
	margin-top:max(-16%,-160px);
}

#cont2 .sec{
	margin-top:min(5%,50px);
}
#cont2 .sec h3{
	width:min(67%,673px);
	margin:auto;
	padding:1.5em 0 1.5em 0.025em;
	font-size:min(2.2vw,22px);
	letter-spacing:0.025em;
	border-radius:1000px;
}
#cont2 .sec .cont_wrapper{
	max-width:820px;
	margin-top:min(3%,30px);
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
#cont2 .sec .cont_wrapper figure{
	width:min(28%,226px);
}
#cont2 .sec .cont_wrapper .cont_right{
	width:min(73%,600px);
	margin-left:-1%;
}
#cont2 .sec .cont_wrapper .cont_right p{
	text-align:left;
}
#cont2 .sec .cont_wrapper .cont_right a{
	display:inline-block;
	width:73%;
	margin-top:5%;
}


@media screen and (max-width:1024px){
	#cont2{
		background-size:200% auto;
	}
}

@media screen and (max-width:768px){
	#cont2{
		background:#f9efe7 url(../images/cont3_bg_s.png)no-repeat center bottom;
		background-size:100% auto;
	}
	#cont2 .lead{
		padding:0 5%;
		text-align:left;
	}
	#cont2 .voice{
		margin-top:7%;
	}
	#cont2 .voice figcaption{
		margin-bottom:1em;
		padding:0 1.2em 0 calc(1.225em);
		font-size:4.8vw;
	}
	#cont2 .voice figcaption:before{
		height:80%;
		border-left:2px dotted;
	}
	#cont2 .voice figcaption:after{
		height:80%;
		border-left:2px dotted;
	}

	#cont2 .voice .fuki{
		width:90%;
	}
	#cont2 .voice .woman{
		width:80%;
		margin:-3% auto 0;
	}

	#cont2 .spec{
		margin-top:-5%;
	}

	#cont2 .sec h3{
		width:90%;
		line-height:1.4;
		padding:0.5em 0 0.5em 0.025em;
		font-size:4.8vw;
	}
	#cont2 .sec .cont_wrapper{
		margin-top:5%;
		display: block;
	}
	#cont2 .sec .cont_wrapper .cont_right{
		width:auto;
		margin-left:0;
	}
	#cont2 .sec .cont_wrapper .cont_right p{
		padding-right:1em;
		text-align:left;
		overflow:hidden;
	}
	#cont2 .sec .cont_wrapper .cont_right p img{
		width:34%;
		margin-right:1em;
		float:left;
	}
	#cont2 .sec .cont_wrapper .cont_right a{
		width:100%;
		margin-top:7%;
	}
}


/* #cont3 */
#cont3{
	padding-top:0;
	background:#ffe5d8 url(../images/cont4_bg.png)no-repeat center bottom;
	background-size:1920px auto;
}
#cont3 .cont_wrapper{
	margin-top:max(-3%,-30px);
}
#cont3 .cont_wrapper .num{
	display:inline-block;
	width:min(15%,148px);
	transform:translateY(45%);
}
#cont3 .cont_wrapper .sec{
	padding:5%;
	background-color:#fff;
	border-radius:3em;
}
#cont3 .cont_wrapper .sec h3{
	position:relative;
}
#cont3 .cont_wrapper .sec h3 .wrapper{
	display:inline-block;
	width:min(40%,380px);
	line-height:1.2;
	padding:0.5em 0;
	border-radius:1000px;
	font-size:32px;
}
#cont3 .cont_wrapper .sec h3 .wrapper .large{
	display:block;
}
#cont3 .cont_wrapper .sec h3 .wrapper .small{
	display:block;
	font-size:22px;
}
#cont3 .cont_wrapper .sec h3 img{
	width:min(57%,575px);
	position:absolute;
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
}

#cont3 .cont_wrapper .sec h4{
	width:min(58%,580px);
	display:inline-block;
	margin-top:3%;
	line-height:1.4;
	font-size:min(2.4vw,24px);
	letter-spacing:0.025em;
	padding-left:0.025em;
	position:relative;
}
#cont3 .cont_wrapper .sec h4:before{
	content:'';
	display:block;
	width:1px;
	height:100%;
	border-left:2px dotted;
	position:absolute;
	left:0;
	bottom:0;
	transform:rotate(-30deg);
}
#cont3 .cont_wrapper .sec h4:after{
	content:'';
	display:block;
	width:1px;
	height:100%;
	border-right:2px dotted;
	position:absolute;
	right:0;
	bottom:0;
	transform:rotate(30deg);
}

@media screen and (max-width:1024px){
	#cont3{
		background-size:200% auto;
	}
}

@media screen and (max-width:768px){
	#cont3{
		background:#ffe5d8 url(../images/cont4_bg_s.png)no-repeat center bottom;
		background-size:100% auto;
	}
	#cont3 .top_fig{
		width:80%;
		margin:auto;
	}
	#cont3 .cont_wrapper{
		margin-top:7%;
	}
	#cont3 .cont_wrapper .num{
		display:block;
		width:100%;
		transform:none;
	}
	#cont3 .cont_wrapper .sec{
		margin-top:-1px;
		padding:3% 4% 5%;
		border-radius:0 0 2em 2em;
	}
	#cont3 .cont_wrapper .sec h3{
		position:static;
	}
	#cont3 .cont_wrapper .sec h3 .wrapper{
		display:block;
		width:auto;
		padding:0.3em 0;
		font-size:7.4vw;
	}
	#cont3 .cont_wrapper .sec h3 .wrapper .small{
		font-size:4.8vw;
	}

	#cont3 .cont_wrapper .sec h4{
		width:85%;
		margin-top:5%;
		font-size:4.8vw;
	}
	#cont3 .cont_wrapper .sec h4:before{
		height:80%;
	}
	#cont3 .cont_wrapper .sec h4:after{
		height:80%;
	}
}


/* #cont3_1 */
#cont3_1 .sec{
	position:relative;
}
#cont3_1 .sec .top_fig{
	width:min(25%,250px);
	position:absolute;
	bottom:100%;
	right:0;
}

#cont3_1 .fig1{
	margin-top:5%;
}
#cont3_1 .fig2{
	margin-top:3%;
}
#cont3_1 .fig2 figcaption{
	margin-top:3%;
	text-align:left;
	letter-spacing:0.075em;
}
#cont3_1 .comparison{
	margin-top:5%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
#cont3_1 .comparison li{
	width:46%;
}
#cont3_1 .flex{
	margin-top:5%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
		align-items: center;
}
#cont3_1 .flex p{
	width:58%;
	text-align:left;
	letter-spacing:0.075em;
}
#cont3_1 .flex figure{
	width:38%;
}

@media screen and (max-width:768px){
	#cont3_1 .fig1{
		margin-top:5%;
	}
	#cont3_1 .fig2{
		margin-top:3%;
	}
	#cont3_1 .fig2 figcaption{
		margin-top:5%;
		padding:0 1.5%;
	}
	#cont3_1 .comparison{
		margin-top:7%;
		display: block;
	}
	#cont3_1 .comparison li{
		width:auto;
		margin-top:5%;
	}
	#cont3_1 .flex{
		margin-top:7%;
		display: block;
	}
	#cont3_1 .flex p{
		width:auto;
	}
	#cont3_1 .flex figure{
		width:auto;
		margin-top:3%;
	}
}


/* #cont3_2 */
#cont3_2{
}
#cont3_2 .flex{
	margin-top:5%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#cont3_2 .flex > figure{
	width:48%;
}
#cont3_2 .flex .cont_right{
	width:48%;
}
#cont3_2 .flex .cont_right p{
	text-align:left;
	letter-spacing:0.075em;
}
#cont3_2 .flex .cont_right figure{
	margin-top:1.5%;
}

@media screen and (max-width:768px){
	#cont3_2 .flex{
		display: block;
	}
	#cont3_2 .flex > figure{
		width:auto;
	}
	#cont3_2 .flex .cont_right{
		width:auto;
		margin-top:5%;
	}
}


/* #cont3_3 */
#cont3_3{
}
#cont3_3 figure{
	margin-top:1.5%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
#cont3_3 figure img:first-child{
	width:57%;
}
#cont3_3 figure img:last-child{
	width:46%;
	margin-left:-3%;
}
#cont3_3 p{
	margin-top:3%;
	text-align:left;
	letter-spacing:0.075em;
}

@media screen and (max-width:768px){
	#cont3_3 figure{
		margin-top:5%;
	}
	#cont3_3 figure img:first-child{
		width:auto;
	}
	#cont3_3 figure img:last-child{
		width:auto;
		margin:-20% 0 0;
	}
	#cont3_3 p{
		margin-top:5%;
	}
}


/* #cont4 */
#cont4{
	background:#fff url(../images/cont3_bg.png)no-repeat center bottom;
	background-size:1920px auto;
}
#cont4 .lead{
	margin-top:min(3%,30px);
	padding-left:0.075em;
	letter-spacing:0.075em;
}
#cont4 .flex{
	margin-top:min(3%,30px);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
#cont4 .flex figure{
	width:50%;
}
#cont4 .flex p{
	width:48%;
	text-align:left;
	letter-spacing:0.075em;
}
#cont4 .tbl figcaption{
	margin-top:1em;
	text-align:right;
	letter-spacing:0.075em;
}

@media screen and (max-width:1024px){
	#cont4{
		background-size:200% auto;
	}
}

@media screen and (max-width:768px){
	#cont4{
		background:#fff url(../images/cont3_bg_s.png)no-repeat center bottom;
		background-size:100% auto;
	}
	
	#cont4 .lead{
		margin-top:min(3%,30px);
		padding:0 5% 0 calc(5% + 0.075em);
		text-align:left;
	}
	#cont4 .flex{
		margin-top:3%;
		display: block;
	}
	#cont4 .flex figure{
		width:auto;
	}
	#cont4 .flex figure figcaption{
		margin-top:3%;
	}
	#cont4 .flex p{
		width:auto;
		margin-top:5%;
	}
}


/* #cont5 */
#cont5{
	background:#ffe5d8 url(../images/cont2_bg.png)no-repeat center bottom;
	background-size:1920px auto;
}
#cont5 .flex{
	margin-top:min(5%,50px);
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#cont5 .flex figure{
	width:min(30%,300px);
	padding-left:3%;
}
#cont5 .flex section{
	width:min(66%,680px);
	padding-top:3%;
	text-align:left;
}
#cont5 .flex section h4{
	line-height:1.3;
	font-size:min(2.2vw,22px);
	letter-spacing:0.075em;
}
#cont5 .flex section p{
	margin-top:1.7em;
	letter-spacing:0.075em;
}

#cont5 .sec{
	margin-top:min(3%,30px);
	background-color:#fff;
	border-radius:1em;
}
#cont5 .sec h4{
	display:inline-block;
	width:min(50%,500px);
	line-height:2.2;
	font-size:min(2.1vw,21px);
	color:#fff;
	background-color:#60524c;
	letter-spacing:0.075em;
	text-indent:0.075em;
	border-radius:100px;
	position:relative;
	transform:translateY(-50%);
}
#cont5 .sec h4:after{
	content:'';
	display:block;
	width:1.2em;
	height:1em;
	background-color:#60524c;
	clip-path:polygon(0 0, 95% 0, 100% 100%);
	position:absolute;
	top:calc(100% - 1px);
	left:18%;
}
#cont5 .sec .cont_wrapper{
	padding:3% 44% 7% 5%;
	text-align:left;
	position:relative;
}
#cont5 .sec .cont_wrapper p{
	line-height:1.9;
	letter-spacing:0.075em;
}
#cont5 .sec .cont_wrapper p.mt{
	margin-top:min(9%,90px);
}
#cont5 .sec .cont_wrapper figure{
	width:35%;
	text-align:center;
	position:absolute;
	right:5%;
	top:50%;
	transform:translateY(-50%);
}
#cont5 .sec .cont_wrapper figure figcaption{
	display:inline-block;
	line-height:1.5;
	margin-bottom:1em;
	padding:0 2.5em;
	font-size:min(2vw,20px);
	font-weight:bold;
	position:relative;
}
#cont5 .sec .cont_wrapper figure figcaption:before{
	content:'';
	display:block;
	width:1px;
	height:80%;
	border-left:2px dotted;
	position:absolute;
	left:0;
	bottom:0;
	transform:rotate(-30deg);
}
#cont5 .sec .cont_wrapper figure figcaption:after{
	content:'';
	display:block;
	width:1px;
	height:80%;
	border-right:2px dotted;
	position:absolute;
	right:0;
	bottom:0;
	transform:rotate(30deg);
}



@media screen and (max-width:1024px){
	#cont5{
		background-size:200% auto;
	}
}

@media screen and (max-width:768px){
	#cont5 .flex{
		margin-top:min(5%,50px);
		display: block;
	}
	#cont5 .flex figure{
		width:auto;
		padding:0 15% 0 12%;
	}
	#cont5 .flex section{
		width:auto;
		padding-top:5%;
	}
	#cont5 .flex section h4{
		font-size:4.5vw;
	}
	#cont5 .flex section p{
		margin-top:1.5em;
	}

	#cont5 .sec{
		margin-top:5%;
		padding-top:3%;
	}
	#cont5 .sec h4{
		display:inline-block;
		width:94%;
		line-height:2.2;
		font-size:4.5vw;
		position:relative;
		transform:none;
	}
	#cont5 .sec .cont_wrapper{
		padding:3% 5% 7%;
		position:static;
	}
	#cont5 .sec .cont_wrapper p{
		line-height:1.6;
		margin-top:1.6em;
	}
	#cont5 .sec .cont_wrapper p.mt{
		margin-top:1.6em;
	}
	#cont5 .sec .cont_wrapper figure{
		width:auto;
		position:static;
		right:auto;
		top:auto;
		transform:none;
		margin-top:1.6em;
	}
	#cont5 .sec .cont_wrapper figure figcaption{
		display:inline-block;
		line-height:1.5;
		margin-bottom:1em;
		padding:0 2.5em;
		font-size:4.8vw;
	}
}


/* #cont6 */
#cont6{
	background:#f9efe7 url(../images/cont3_bg.png)no-repeat center bottom;
	background-size:1920px auto;
}
#cont6 .cont_wrapper{
	margin-top:min(3%,30px);
}
#cont6 .cont_wrapper .lead{
	text-align:left;
	letter-spacing:0.075em;
}
#cont6 .cont_wrapper .lead .indent{
	display:block;
	padding-left:1.075em;
	text-indent:-1.075em;
}
#cont6 .cont_wrapper .guarantee{
	margin-top:min(3%,30px);
	aspect-ratio:1024 / 202;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#cont6 .cont_wrapper .guarantee li img{
	width:auto;
	height:100%;
}
#cont6 .cont_wrapper .caution{
	margin-top:0.5em;
	padding-left:1em;
	text-indent:-1em;
	text-align:left;
	letter-spacing:0.075em;
}
#cont6 .cont_wrapper .tbl{
	margin-top:min(5%,50px);
}
#cont6 .cont_wrapper .caution_list{
	margin-top:min(3%,30px);
}
#cont6 .cont_wrapper .caution_list li{
	padding-left:1em;
	text-indent:-1em;
	font-size:14px;
	text-align:left;
}
#cont6 .cont_wrapper .caution_list li.indent3{
	padding-left:2.5em;
	text-indent:-2.5em;
}

@media screen and (max-width:1024px){
	#cont6{
		background-size:200% auto;
	}
}

@media screen and (max-width:768px){
	#cont6{
		background:#f9efe7 url(../images/cont3_bg_s.png)no-repeat center bottom;
		background-size:100% auto;
	}
	#cont6 .cont_wrapper .lead .indent{
		font-size:3.2vw;
	}
	#cont6 .cont_wrapper .guarantee{
		margin-top:0;
		aspect-ratio:auto;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#cont6 .cont_wrapper .guarantee li{
		width:48%;
		margin-top:3%;
	}
	#cont6 .cont_wrapper .guarantee li:first-child{
		width:100%;
	}
	#cont6 .cont_wrapper .guarantee li img{
		width:100%;
		height:auto;
	}
	#cont6 .cont_wrapper .tbl{
		margin-top:7%;
	}
	#cont6 .cont_wrapper .caution_list li{
		font-size:3vw;
	}
}


/* #contact */
#contact{
	padding-bottom:min(5%,50px);
}
#contact .cont_wrapper{
	max-width:750px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
#contact .cont_wrapper figure{
	width:min(53%,400px);
}
#contact .cont_wrapper ul{
	width:min(40%,285px);
}
#contact .cont_wrapper ul li{
	margin-bottom:0.8em;
	padding-left:2em;
	text-align:left;
	background:url(../images/arrow.png)no-repeat left center;
	background-size:1.5em auto;
}
#contact .cont_wrapper ul li a{
	font-weight:bold;
	letter-spacing:0.075em;
	text-decoration:underline;
	text-decoration-color:rgba(96,82,76,0.3);
}
#contact h2{
	margin-top:1em;
	font-size:min(3.4vw,34px);
	letter-spacing:0.025em;
	text-ident:0.025em;
}
#contact .lead{
	letter-spacing:0.075em;
	text-ident:0.075em;
}
#contact .address{
	line-height:3;
	margin-top:1.7em;
	letter-spacing:0.075em;
	padding-left:0.075em;
}
#contact .address .line{
	border-bottom:1px dotted;
	display:inline-block;
}
#contact .smenu{
	margin-top:min(3%,30px);
}

@media screen and (max-width:768px){
	#contact .cont_wrapper{
		max-width:auto;
		width:80%;
		display: block;
	}
	#contact .cont_wrapper figure{
		width:auto;
		margin-top:5%;
	}
	#contact .cont_wrapper ul{
		width:auto;
	}
	#contact .cont_wrapper ul li{
		font-size:3.7vw;
	}
	#contact h2{
		margin-top:0.5em;
		font-size:7.4vw;
	}
	#contact .address{
		display:inline-block;
		line-height:1.7;
		text-align:left;
	}
	#contact .address .blc{
		display:block;
		border-bottom:1px dotted;
	}
	#contact .smenu{
		margin-top:min(3%,30px);
	}
}


/* footer */
footer{
	margin-top:-1px;
	padding:10% 0 50px;
	position:relative;
}
footer:before{
	content:'';
	display:block;
	width:100%;
	aspect-ratio:1920 / 105;
	background-color:#ffe5d8;
	clip-path:polygon(0 0, 100% 0, 50% 100%);
	position:absolute;
	left:0;
	top:0;
}
footer dl div{
	padding:20px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
footer dl div:nth-child(n+2){
	border-top:1px dotted;
}
footer dl div dt{
	width:384px;
}
footer dl div dd{
	width:calc(100% - 400px);
	font-size:12px;
	text-align:left;
	line-height:1.5;
}
footer dl div dd .address{
	margin-bottom:0.5em;
	font-size:14px;
}
footer p{
	margin-top:min(9%,90px);
	font-size:12px;
	color:#808080;
}

@media screen and (max-width:768px){
	footer{
		padding:20% 0 22%;
	}
	footer:before{
		aspect-ratio:750 / 100;
	}
	footer dl div{
		padding:5% 0;
		display: block;
	}
	footer dl div dt{
		width:auto;
		margin:0 auto 0.5em;
		padding-right:12%;
	}
	footer dl div dd{
		width:auto;
		font-size:2vw;
	}
	footer dl div dd .address{
		font-size:2.3vw;
		text-align:center;
	}
	footer p{
		font-size:3vw;
	}
}


/* #side_nav */
#side_nav{
	width:146px;
	position:fixed;
	bottom:90px;
	right:-200px;
	z-index:99;
	-webkit-transition: right 0.8s;
	transition: right 0.8s;
}
#side_nav ul li a{
	display:block;
	font-size:16px;
	font-weight:bold;
	border-radius:0.5em 0 0 0.5em;
	position:relative;
	box-shadow:0 0 5px rgba(0,0,0,0.2);
}
#side_nav ul li a:after{
	content:'';
	display:block;
	width:0.6em;
	height:0.6em;
	border-top:2px solid;
	border-right:2px solid;
	position:absolute;
	right:0.5em;
	top:50%;
	transform:translateY(-50%) rotate(45deg);
}
#side_nav ul li a img{
	width:2.2em;
}
#side_nav ul li:first-child a{
	margin-bottom:0.8em;
	padding:0.7em 1.5em 0.5em 0;
}
#side_nav ul li:first-child a img{
	display:block;
	margin:auto;
}
#side_nav ul li:last-child a{
	line-height:3.2;
	margin-bottom:0.5em;
	padding-left:0.5em;
	text-align:left;
}
#side_nav ul li:last-child a img{
	margin-right:0.1em;
	vertical-align:-0.7em;
}

#side_nav.open{
	right:0;
}
#side_nav dl div dd a:hover{
/*	opacity:1;*/
}

@media screen and (max-width:768px){
	#side_nav{
		width:100%;
		top:auto;
		bottom:0;
		right:0;
		-webkit-transition: bottom 0.8s;
		transition: bottom 0.8s;
	}
	#side_nav.open{
		bottom:0;
	}
	#side_nav ul{
		display: -webkit-flex;
		display: flex;
	}
	#side_nav ul li{
		width:100%;
		margin-top:0;
		display: -webkit-flex;
		display: flex;
	}
	#side_nav  ul li:first-child a{
		width:50%;
		line-height:2.8;
		margin-bottom:0;
		padding:0;
		font-size:4.8vw;
		border-radius:0;
	}
	#side_nav  ul li a:after{
		content:none;
	}
	#side_nav ul li a:hover{
		opacity:1;
	}
	#side_nav ul li:first-child a img{
		display:inline;
		width:1.2em;
		margin-right:0.5em;
		vertical-align:-0.27em;
	}
}


/* #topbtn */
#topbtn{
	width:46px;
	position:fixed;
	z-index:102;
	right:60px;
	bottom:-150px;
	-webkit-transition: bottom 0.8s;
	transition: bottom 0.8s;
}
@media screen and (max-width:768px){
	#topbtn{
		width:40px;
		line-height:40px;
		right:15px;
	}
}


/* fadein */
.fadein {
	opacity : 0;
	-webkit-transform : translate(0, 70px);
	transform : translate(0, 70px);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_0 {
	opacity : 0;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_l {
	opacity : 0;
	-webkit-transform : translate(-100px, 0);
	transform : translate(-100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_r {
	opacity : 0;
	-webkit-transform : translate(100px, 0);
	transform : translate(100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.delay1 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.2s;
	transition-delay : 0.2s;
}
.delay2 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.4s;
	transition-delay : 0.4s;
}
.delay3 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.6s;
	transition-delay : 0.6s;
}
.delay4 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.8s;
	transition-delay : 0.8s;
}
.delay5 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 1.0s;
	transition-delay : 1.0s;
}
.delay6 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 1.2s;
	transition-delay : 1.2s;
}

.fadein.scrollin,
.fadein_0.scrollin,
.fadein_l.scrollin,
.fadein_r.scrollin{
	opacity : 1;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
}