@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: "hightower-reg";
	src: url("../font/high-tower-text-regular.ttf") format("truetype");
}
@font-face {
	font-family: "Bahagia";
	src: url("../font/Bahagia.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: #534741;
	font-size: 4vw;
	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: 991px){
	html,body {
		font-size: 16px;
	}
}
@media only screen and (min-width: 1025px){
	.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{
	background: rgba(83, 71, 65, 0.67);
	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-header .header_logo{
	position: absolute;
	width: 12rem;
	top:  0.625rem;
	left: 0.625rem;
}
.global-header .header-deta{
	margin-right: 1rem;
}
.global-header .header-deta .sns_btn li{
	display: inline-block;
	width: 2.5rem;
}
.global-header .header-deta .deta{
	margin-left: 0.625rem;
}
.global-header .header-deta .category span{
	display: inline-block;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.1em;
	border: 1px solid #ffffff;
	padding: 0.125rem 0.5rem 0 0.5rem;
}
.global-header .header-deta .hour{
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.25;
}
.global-header .header-right{
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.global-header .header-add{
	margin-right: 2rem;
}
.global-header .header-add dt{
	width: 1.75rem;
}
.global-header .header-add dd{
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1em;
	margin-left: 0.5rem;
}
.global-nav .drawer-hamburger{
	display: none;
}
.drawer--right .global-nav .drawer-nav{
	position: relative;
	display: flex;
	right: auto;
	overflow: visible;
	width: calc(100% - 16rem);
	height: auto;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	background-color: transparent;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.global-nav .drawer-nav .nav{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	row-gap: 0.3125rem;
}
.global-nav .drawer-nav .nav li{
	width: 20%;
}
.global-nav .drawer-nav .nav li a{
	display: block;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	border-right: 1px solid #ffffff;
}
.global-nav .drawer-nav .nav li:nth-child(1) a,
.global-nav .drawer-nav .nav li:nth-child(6) a{
	border-left: 1px solid #ffffff;
}
.global-nav .line_btn{
	display: none;
}
@media only screen and (max-width: 1700px) {
	.global-header .header_logo{
		width: 10rem;
		top: 0.5rem;
		left: 0.5rem;
	}
	.global-header .header-deta{
		margin-right: 0;
	}
	.global-header .header-deta .sns_btn li{
		display: inline-block;
		width: 2.5rem;
	}
	.global-header .header-deta .deta{
		margin-left: 0.625rem;
	}
	.global-header .header-deta .category span{
		font-size: 0.75rem;
		padding: 0.125rem 0.5rem;
	}
	.global-header .header-deta .hour{
		font-size: 0.8125rem;
	}
	.global-header .header-right{
		max-width: calc(100% - 27rem);
	}
	.global-header .header-add{
		margin-right: 0.625rem;
	}
	.global-header .header-add dt{
		width: 1.5rem;
	}
	.global-header .header-add dd{
		font-size: 0.8125rem;
		margin-left: 0.625rem;
	}
	.drawer--right .global-nav .drawer-nav{
		width: calc(100% - 13rem);
	}
}
@media only screen and (max-width: 1420px) {
	.global-header .header-deta{
		display: none;
	}
	.global-header .header-right{
		max-width: inherit;
		padding-left: 12rem;
	}
	.drawer--right .global-nav .drawer-nav{
		width: calc(100% - 15rem);
	}
}
@media only screen and (max-width: 1200px) {
	.global-header .header_logo{
		width: 7rem;
		top: 0.625rem;
		left: 0.625rem;
	}
	.global-header .header-right{
		-webkit-justify-content: flex-end;
    	justify-content: flex-end;
		padding-left: 7.5rem;
	}
	.global-header .header-add{
		margin-right: 0.625rem;
	}
	.global-header .header-add dt{
		width: 1.5rem;
	}
	.global-header .header-add dd{
		font-size: 0.8125rem;
		margin-left: 0.625rem;
	}
	.global-nav .drawer-nav .nav li{
		width: 25%;
	}
	.global-nav .drawer-nav .nav li:nth-child(1) a,
	.global-nav .drawer-nav .nav li:nth-child(5) a,
	.global-nav .drawer-nav .nav li:nth-child(9) a{
		border-left: 1px solid #ffffff;
	}
	.global-nav .drawer-nav .nav li:nth-child(6) a{
		border-left: none;
	}
	.drawer--right .global-nav .drawer-nav{
		width: calc(100% - 15rem);
	}
}
@media only screen and (max-width: 1024px) {
	.global-header{
		background: #ffffff;
	}
	.global-header .header_logo{
		z-index: 99999;
	}
	.global-header .header-right{
		padding-left: 0;
	}
	.global-header .header-deta{
		display: none;
	}
	.global-header .header-add{
		margin-right: 3.625rem;
	}
	.global-header .header-add dd{
		color: #534741;
	}
	.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: #534741;
		height: 3px;
	}
	.drawer-open .global-nav .drawer-hamburger-icon::after,
	.drawer-open .global-nav .drawer-hamburger-icon::before{
		background: #534741;
	}
	.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: rgb(83,71,65,0.9);
		width: 100%;
		height: 100%;
		right: -100%;
		top: 4.125rem;
		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;
		font-size: 1.25rem;
		line-height: 1.5;
		text-align: left;
		border-bottom: 2px solid #ffffff;
		border-right: none;
		padding: 1rem 0;
	}
	.global-nav .drawer-nav .nav li:nth-child(1) a,
	.global-nav .drawer-nav .nav li:nth-child(5) a,
	.global-nav .drawer-nav .nav li:nth-child(9) a{
		border-left: none;
	}
	.global-nav .line_btn{
		display: block;
		text-align: center;
		margin-top: 1.5rem;
	}
	.global-nav .line_btn li{
		display: inline-block;
		width: 100%;
		max-width: 30rem;
	}
	.global-nav .line_btn li img{
		filter: drop-shadow(5px 5px 5px rgba(14, 8, 4, 0.8));
	}
}
@media only screen and (max-width: 767px) {
	.global-header .header_logo{
		width: 5.625rem;
		top: 0.375rem;
		left: 0.375rem;
	}
	.global-header .header-add{
		margin-right: 3rem;
	}
	.global-header .header-add dt{
		width: 1.375rem;
	}
	.global-header .header-add dd{
		color: #534741;
		font-size: 0.75rem;
		margin-left: 0.5rem;
	}
	.drawer--right .global-nav .drawer-nav{
		top: 3.85rem;
		padding: 3rem 2rem 6rem 2rem;
	}
	.global-nav .drawer-nav .nav li a{
		font-size: 1.25rem;
		padding: 0.75rem 0;
	}
}
/**
/* フレーム CSS
----------------------------------------------- */
.view{
	display: grid;
	transition: grid-template-columns .4s ease-out;
	padding-top: 3.85rem;
}
.view-spacer{
	position: relative;
	display: none;
	min-height: 100vh;
}
.view-side-content{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	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-sticky{
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	overflow: hidden;
	min-height: 100vh;
	position: sticky;
	top: 0;
}
.view-side,
.view-sticky-img{
	display: none;
}
.view-main{
	overflow: hidden;
}
.page-content{
	background: #ffffff;
}
.section-content{
	padding: 0 1rem;
}
@media only screen and (min-width: 576px){
	.view{
		grid-template-columns: 1fr 520px 1fr;
		padding-top: 4rem;
	}
	.view-spacer,
	.view-space{
		display: block;
	}
	.view-spacer{
		min-height: calc(100vh - 4rem);
	}
	.view-side-content{
		top: 8rem;
		min-height: calc(100vh - 4rem);
	}
	.section-content{
		padding: 0 1.5rem;
	}
}
@media only screen and (min-width: 1025px){
	.view{
		position: relative;
		grid-template-columns: 10fr 520px 1fr;
		padding-top: 8rem;
	}
	.view-spacer{
		min-height: calc(100vh - 8rem);
	}
	.view-side-content{
		top: 8rem;
		min-height: calc(100vh - 8rem);
	}
	.view-side{
		display: block;
		max-width: 32rem;
	}
	.view-side .caption{
		font-size: 1.125rem;
		font-weight: 600;
		line-height: 1.65;
		letter-spacing: 0.1em;
	}
	.view-side .ttl{
		font-size: 2.875rem;
		font-weight: 500;
		line-height: 1.35;
		letter-spacing: 0.3em;
	}
	.view-side .ttl span{
		display: block;
		font-size: 1.375rem;
	}
	.view-side .line_btn{
		margin-top: 1rem;
	}
	.view-side .line_btn li img{
		filter: drop-shadow(5px 5px 5px rgba(14, 8, 4, 0.8));
	}
	.side-benefit{
		margin-top: 1rem;
	}
	.side-benefit .box{
		background: #ffffff;
		padding: 1rem 0.625rem;
	}
	.side-benefit .box dl{
		display: flex;
		align-items: center;
	}
	.side-benefit .box dl:not(:last-child){
		border-bottom: 1px solid #534741;
		padding-bottom: 0.625rem;
		margin-bottom: 0.625rem;
	}
	.side-benefit .box dl dt{
		width: 5rem;
	}
	.side-benefit .box dl dd{
		width: calc(100% - 5rem);
		font-size: 1.5rem;
		font-weight: 600;
		line-height: 1.35;
		padding-left: 0.625rem;
	}
	.side-benefit .box dl:nth-child(2) dd,
	.side-benefit .box dl:nth-child(3) dd{
		font-size: 1.125rem;
	}
	.side-benefit .box dl dd span{
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 400;
		font-feature-settings: "palt";
	}
	.side-benefit .benefit_btn{
		margin-top: 1rem;
	}
	.side-benefit .benefit_btn li img{
		filter: drop-shadow(5px 5px 5px rgba(14, 8, 4, 0.8));
	}
}
/**
/* トップへ戻る CSS
----------------------------------------------- */
.btn_page_top {
	background: #3c0f10;
	display: block;
	position: fixed;
	right: 0;
	bottom: 4rem;
	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: #0e0804;
}
footer .footer-container{
	background: url(../img/footer_bg.png) no-repeat top center;
	background-size: cover;
	padding-top: 2.5rem;
}
footer .logo{
	margin-bottom: 1.5rem;
}
footer .logo img{
	width: 8.125rem;
}
footer .caption{
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
footer .ttl{
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.3em;
	margin-bottom: 1.5rem;
}
footer .ttl span{
	display: block;
	font-size: 1.125rem;
}
footer .category{
	margin-bottom: 0.625rem;
}
footer .category span{
	display: inline-block;
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.1em;
	border: 1px solid #ffffff;
	padding: 0.125rem 1rem;
	margin: 0 0.125rem;
}
footer .hour{
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.1em;
}
footer .line_btn{
	margin-top: 2.5rem;
}
footer .line_btn li img{
	filter: drop-shadow(5px 5px 5px rgba(14, 8, 4, 0.8));
}
footer .footer-bottom{
	padding: 2rem 1.5rem 5rem 1.5rem;
}
footer .sns_btn{
	margin-bottom: 1.5rem;
}
footer .sns_btn li{
	display: inline-block;
	width: 2.75rem;
}
footer .copy{
	font-size: 0.5rem;
	font-weight: 500;
	line-height: 1.25;
}
.footer-bar{
	position: fixed;
	display: flex;
	bottom: 0;
	width: 100%;
	z-index: 9998;
	padding: 0 1rem;
}
.footer-bar .footer-bar-item{
	width: 100%;
}
@media only screen and (min-width: 576px){
	footer .footer-container{
		padding-top: 3rem;
	}
	footer .logo{
		margin-bottom: 2rem;
	}
	footer .logo img{
		width: 11.25rem;
	}
	footer .caption{
		font-size: 1.25rem;
	}
	footer .ttl{
		font-size: 2.6875rem;
		margin-bottom: 2rem;
	}
	footer .ttl span{
		font-size: 1.375rem;
	}
	footer .category{
		margin-bottom: 0.625rem;
	}
	footer .category span{
		font-size: 1.375rem;
		border: 2px solid #ffffff;
		padding: 0.125rem 1rem;
		margin: 0 0.125rem;
	}
	footer .hour{
		font-size: 1.4375rem;
	}
	footer .line_btn{
		margin-top: 3rem;
	}
	footer .footer-bottom{
		padding: 3rem 2rem 1rem 2rem;
	}
	footer .sns_btn{
		margin-bottom: 2rem;
	}
	footer .sns_btn li{
		width: 3.75rem;
	}
	footer .copy{
		font-size: 0.75rem;
	}
	.footer-bar{
		display: none;
	}
}
