@charset "utf-8";
/**
/* CSS RESET START
----------------------------------------------- */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;vertical-align: baseline;box-sizing: border-box;-webkit-box-sizing: border-box;}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
input, textarea{margin: 0;padding: 0;outline: none;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;width:100%;}
caption, th{text-align: left;}
img {vertical-align: middle;max-width:100%;height: auto;}
.clearfix {min-height: 1px;}
.clearfix:after {content: "."; display: block;clear: both;height: 0;visibility: hidden;}
.both{clear:both;}
/**
/* CSS START
----------------------------------------------- */
@font-face {
	font-family: "times-new-roman";
	src: url("../font/times-new-roman.ttf") format("truetype");
}
html,body {
	background: url(../img/bg.png) no-repeat bottom center;
	background-size: cover;
	background-attachment: fixed;
	width: 100%;
	font-family: "Noto Serif JP", serif;
	color: #34241F;
	font-size: 4.1vw;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0;
	margin: 0;
	padding: 0;
	overflow: unset!important;
}
.pc{
	display: none;
}
@media only screen and (min-width: 576px){
	html,body {
		font-size: 14px;
	}
}
@media only screen and (min-width: 1025px){
	html,body {
		font-size: 16px;
	}
	.sp{
		display: none;
	}
	.pc{
		display: block;
	}
}
*:focus {
	outline: none!important;
}
*, *:before, *:after{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
a{
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	color: #534741;
}
iframe{
	width: 100%;
}
/**
/* flex CSS
----------------------------------------------- */
.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex_row{
	webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex_between{
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex_column{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
		flex-direction: column;
}
.flex_center{
	-webkit-justify-content: center;
	justify-content: center;
}
.flex_wrap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
}
.items_start{
	align-items: flex-start;
}
.items_center{
	align-items: center;
}
.items_end{
	align-items: flex-end;
}
.center{
	text-align: center;
}
/**
/* ヘッダー CSS
----------------------------------------------- */
.global-header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	padding: 1rem;
}
.global-header .global-nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.global-nav .drawer-hamburger,
.drawer--right .global-nav .drawer-nav{
	display: none;
}
@media only screen and (max-width: 1024px) {
	.global-nav .drawer-hamburger{
		display: block;
		width: 1.875rem;
		top: 0;
		z-index: 99999;
		padding: 0.9375rem 1.0625rem 0.5625rem 1.0625rem;
	}
	.drawer--right.drawer-open .global-nav .drawer-hamburger{
		right: 0;
	}
	.global-nav .drawer-hamburger-icon{
		margin-top: 1rem;
	}
	.global-nav .drawer-hamburger-icon,
	.global-nav .drawer-hamburger-icon::after,
	.global-nav .drawer-hamburger-icon::before{
		background: #ffffff;
		height: 3px;
		box-shadow: 5px 5px 10px rgba(6, 0, 1, 0.3);
	}
	.drawer-open .global-nav .drawer-hamburger-icon {
	    box-shadow: none;
	}
	.drawer-open .global-nav .drawer-hamburger-icon::after,
	.drawer-open .global-nav .drawer-hamburger-icon::before{
		background: #ffffff;
	}
	.global-nav .drawer-hamburger-icon::after{
		top: 0.5rem;
	}
	.global-nav .drawer-hamburger-icon::before{
		top: -0.5rem;
	}
	.drawer--right .global-nav .drawer-nav{
		position: fixed;
		display: block;
		background: url(../img/bg_g.png) no-repeat top center;
		background-size: cover;
		width: 100%;
		height: 100%;
		right: -100%;
		top: 0;
		left: auto;
		z-index: 9999;
		padding: 4rem 2rem 6rem 2rem;
	}
	.drawer--right .global-nav .drawer-nav{
		overflow-x: hidden;
		overflow-y: auto;
	}
	.global-nav .drawer-nav .nav{
		display: block;
	}
	.global-nav .drawer-nav .nav li{
		display: block;
		width: 100%;
	}
	.global-nav .drawer-nav .nav li a{
		position: relative;
		display: block;
		color: #ffffff;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.5;
		text-align: left;
		border-bottom: 1px dashed #ffffff;
		border-right: none;
		padding: 1rem 0;
	}
	.global-nav .drawer-nav .application_btn{
		display: block;
		text-align: center;
		margin-top: 3rem;
	}
	.global-nav .drawer-nav .application_btn li{
		display: inline-block;
		width: 100%;
		max-width: 30rem;
	}
}
@media only screen and (max-width: 767px) {
	.drawer--right .global-nav .drawer-nav{
		padding: 5rem 1.5rem 4rem 1.5rem;
	}
	.global-nav .drawer-nav .nav li a{
		font-size: 1.25rem;
		padding: 1rem 0;
	}
}
/**
/* フレーム CSS
----------------------------------------------- */
.view{
	position: relative;
	display: grid;
	transition: grid-template-columns .4s ease-out;
}
.view-spacer{
	position: relative;
	display: none;
	min-height: 100vh;
}
.view-side-content{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 100vh;
	position: sticky;
	top: 0;
}
.view-side-content .view-side-img img{
	width: 26rem;
}
.view-space{
	position: relative;
	display: none;
	min-height: 100vh;
}
.view-space-content{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
	min-height: 100vh;
	position: sticky;
	top: 0;
}
.view-side,
.view-space-inner{
	display: none;
}
.view-main{
	overflow: hidden;
}
.page-content{
	background: #ffffff;
}
.section-content{
	padding: 0 1.25rem;
}
@media only screen and (min-width: 576px){
	.view{
		grid-template-columns: 1fr 560px 1fr;
	}
	.view-spacer,
	.view-space{
		display: block;
	}
	.view-spacer,
	.view-space{
		min-height: 100vh;
	}
	.view-side-content,
	.view-space-content{
		top: 0;
		min-height: 100vh;
	}
	.section-content{
		padding: 0 2.5rem;
	}
}
@media only screen and (min-width: 1025px){
	.view{
		grid-template-columns: 4fr 580px 0.5fr;
		padding-top: 6rem;
	}
	.view-side .section-content{
		padding: 0 1.5rem;
	}
	.view-spacer,
	.view-space{
		min-height: calc(100vh - 6rem);
	}
	.view-side-content,
	.view-space-content{
		top: 6rem;
		min-height: calc(100vh - 6rem);
	}
	.view-side{
		display: block;
		width: 100%;
		max-width: 32rem;
	}
	.view-side .logo{
		margin-bottom: 1.5rem;
	}
	.view-side .logo img{
		width: 100%;
		max-width: 27rem;
	}
	.view-side .side-nav{
		background: url(../img/bg_g.png) no-repeat top center;
		background-size: cover;
		padding: 1.5rem;
	}
	.view-side .side-nav .nav li a{
		display: block;
		color: #ffffff;
		font-size: 1.25rem;
		font-weight: 500;
		line-height: 1.5;
		text-align: left;
		border-bottom: 1px dashed #ffffff;
		padding: 0.5rem 0;
	}
}
@media only screen and (min-width: 1340px){
	.view{
		grid-template-columns: 1fr 580px 1fr;
	}
	.view-space-inner{
		display: block;
		max-width: 32rem;
		padding-bottom: 9rem;
	}
	.view-space-content .section-content{
		padding: 0 1.5rem;
	}
	.view-space-content .box{
		background: url(../img/view-space_bg.png) no-repeat center;
		background-size: cover;
		max-width: 418px;
		margin: auto;
		padding: 1.5rem 1.125rem 2rem 1.125rem;
	}
	.view-space-content .box h2{
		position: relative;
		background: url(../img/ttl_bg.png) no-repeat center;
		background-size: cover;
		color: #ffffff;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.35;
		letter-spacing: 0.1em;
		text-align: center;
		padding: 2rem 1rem 0.75rem 1rem;
		margin-bottom: 1rem;
	}
	.view-space-content .box .text{
		color: #ffffff;
		font-size: 1rem;
		font-weight: 500;
		line-height: 1.35;
		letter-spacing: 0.1em;
		text-align: center;
		margin-bottom: 0.75rem;
	}
	.view-space-content .box h3{
		position: relative;
		color: #ffffff;
		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1.25;
		letter-spacing: 0.1em;
		text-align: center;
		margin-bottom: 1rem;
	}
	.view-space-content .box h3 a{
		color: #ffffff;
	}
	.view-space-content .box h3::before,
	.view-space-content .box h3::after{
		content: '';
		position: absolute;
		width: 4.5rem;
		height: 0.75rem;
		bottom: 0.5rem;
	}
	.view-space-content .box h3::before{
		background: url(../img/ttl_l_w.png) no-repeat top center;
		background-size: cover;
		left: -0.5rem;
	}
	.view-space-content .box h3::after{
		background: url(../img/ttl_r_w.png) no-repeat top center;
		background-size: cover;
		right: -0.5rem;
	}
}
@media only screen and (min-width: 1560px){
	.view-space-content .box{
		padding: 1.5rem 1.25rem 2rem 1.25rem;
	}
	.view-space-content .box h2{
		font-size: 1.75rem;
	}
	.view-space-content .box .text{
		font-size: 1.25rem;
	}
	.view-space-content .box h3{
		font-size: 1.875rem;
	}
}
/**
/* Btn CSS
----------------------------------------------- */
.block_btn{
    margin-top: 3rem;
}
.block_btn li{
	display: inline-block;
	width: 100%;
	max-width: 20rem;
}
.block_btn li a{
	position: relative;
	display: block;
	background: #6d8ed2;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.1em;
	text-align: center;
	border-radius: 3rem;
	padding: 1rem;
}
@media only screen and (min-width: 576px){
    .block_btn{
	    margin-top: 5rem;
	}
	.block_btn li a{
		font-size: 1.5rem;
	}
}
/**
/* パンくず CSS
----------------------------------------------- */
.breadcrumbs{
    text-align: right;
    padding: 0 0 1.875rem 0;
}
.breadcrumbs span{
    color: #534741;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.45;
}
.breadcrumbs a span{
    color: #6E6E6E;
}
.breadcrumbs span.separator{
    margin: 0 0.3125rem;
    text-decoration: none;
}
.breadcrumbs span br{
    display: none;
}
@media only screen and (min-width: 576px){
    .breadcrumbs{
        padding: 0 0 1.875rem 0;
    }
}
/**
/* トップへ戻る CSS
----------------------------------------------- */
.btn_page_top {
	background: url(../img/th_bg.png) no-repeat top center;
	background-size: cover;
	display: block;
	position: fixed;
	right: 0;
	bottom: 5.8rem;
	z-index: 20;
	width: 3.5rem;
	height: 3.5rem;
	color: #ffffff;
}
.btn_page_top:before {
	display: block;
	position: absolute;
	top: 1rem;
	left: 1.375rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: solid 2px #ffffff;
	border-left: solid 2px #ffffff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
}
.btn_page_top span{
	width: 100%;
	position: absolute;
	bottom: 0.625rem;
	text-align: center;
	font-size: 0.875rem;
	line-height: 1.2;
}
@media only screen and (min-width: 576px){
	.btn_page_top {
		right: 0;
		bottom: 0;
		width: 4rem;
		height: 4rem;
	}
	.btn_page_top:before {
		top: 1.375rem;
		left: 1.55rem;
		width: 0.625rem;
		height: 0.625rem;
	}
	.btn_page_top span{
		bottom: 0.6254rem;
		font-size: 1rem;
	}
}
/**
/* フッター CSS
----------------------------------------------- */
footer{
	background: #FFFFFF;
}
footer .price-container{
	padding: 2.5rem 0 2.5rem 0;
}
footer .present-container{
	padding: 2.5rem 0 2rem 0;
}
footer .present-container .box{
	padding: 1.25rem 1.25rem 2.5rem 1.25rem;
}
footer .present-container .box h3{
	margin-bottom: 1.5rem;
}
footer .present-container .box .application_btn{
	margin-top: 1.5rem;
}
footer .footer-bottom{
	padding: 1rem 0 6rem 0;
}
footer .sub-nav li{
	display: inline-block;
}
footer .sub-nav li + li{
	border-left: 1px solid #725424;
}
footer .sub-nav li a{
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25;
	padding: 0 0.5rem 0 0.625rem;
}
footer .copy{
	font-size: 0.5rem;
	font-weight: 500;
	line-height: 1.25;
	margin-top: 0.5rem;
}
.footer-bar{
	background: #FFFFFF;
	position: fixed;
	display: flex;
	bottom: 0;
	width: 100%;
	z-index: 9998;
	padding: 0.5rem 2.5rem;
}
.footer-bar .footer-bar-item{
	width: 100%;
}
@media only screen and (min-width: 576px){
	footer .price-container{
		padding: 3.5rem 0 3.5rem 0;
	}
	footer .present-container{
		padding: 3.5rem 0 3rem 0;
	}
	footer .present-container .box{
		padding: 1.5rem 1.5rem 3rem 1.5rem;
	}
	footer .present-container .box h3{
		margin-bottom: 2.5rem;
	}
	footer .present-container .box .application_btn{
		margin-top: 2.5rem;
	}
	footer .footer-bottom{
		padding: 1.5rem 0 1rem 0;
	}
	footer .sub-nav li a{
		font-size: 0.875rem;
		padding: 0 0.5rem 0 0.875rem;
	}
	footer .copy{
		font-size: 0.75rem;
		margin-top: 0.5rem;
	}
	.footer-bar{
		display: none;
	}
}
