@charset "UTF-8";
/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
@media print, screen and (min-width:897px){
	/* iPad背景切れ対策 */
	body{
		min-width: 1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events: none;
	}
}
#wrapper > *{
	color: #000;
	font-family: YakuHanJPs, 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: var(--medium);
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
a:hover{
	text-decoration:none;
}
a{
	color: #000;
	text-decoration:none;
	transition: all 0.3s;
}
a:hover img{
	opacity: 1;
}
h1,h2,h3,h4,h5,p{
	line-height: 1;
	letter-spacing: 0.1rem;
}
/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}
@media screen and (max-width:897px){
	img{
		width:100%;
	}
	/* p{
		line-height: 150%;
		font-size: 1.6rem;
	} */
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}
/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--Emerald: #00AABE;
	--Emerald-10: #E5F6F8;
	--Emerald-50: #80D4DE;
	--Blue: #059BE1;
	--Blue-5: #F2FAFD;
	--Blue-10: #E5F8FF;
	--Blue-50: #82CDF0;
	--DeepBlue: #0564C8;
	--DeepBlue-15: #D9E8F7;
	--LightBlue: #EBEEF7;
	--Grey: #5D6569;
	--TxtGrey: #646464;
	--Purple: #B4BFE1;
	--Yellow: #FAD900;
	--EmeraldGD: linear-gradient(90deg, rgba(0, 200, 200, 1)0%,rgba(5, 155, 225, 1)100%);
	--YellowGD: linear-gradient(90deg, rgba(255, 235, 0, 1)0%,rgba(255, 210, 0, 1)100%);
	/* border-radius */
	--border-radius-5: 5px;
    --border-radius-10: 10px;
	/* width */
	--width: 1280px;
	--w960: 960px;
	--w500: 500px;
	/* font-family */
	--ffOs: "Oswald";
	--noto-serif: "Noto Serif JP", serif;
	/* font-weight
	============================== */
	--light: 300;
	--regular: 400;
	--medium: 500;
	--bold: 700;
	--black: 900;
}
#wrapper > *{
	font-family: 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: var(--regular);
}
#wrapper a{
	transition: all 0.3s;
}
#wrapper a:hover{
	text-decoration:none;
}
a.txtLink{
	text-decoration: underline!important;
}
a.txtLink:hover{
	text-decoration: none!important;
}

/* box
============================== */
#wrapper{
	z-index: 1;
}
.cts__base{
	max-width: var(--maw);
	margin: 0 auto;
	padding: 100px 30px;
	text-align: center;
	position: relative;
}
.w1200{
	max-width: var(--w1200);
}
@media screen and (max-width:897px){
	.cts__base{
		max-width: 660px;
		padding: 50px 30px;
	}
}
/* btn
============================== */
.base__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: var(--YellowGD);
    background-position: 1% 50%;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: var(--bold);
    height: 64px;
    padding: 0 20px;
    position: relative;
    width: 400px;
    box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
	border: 3px solid #fff;
}
.base__btn::before, 
.base__btn::after {
    background: #000;
    content: '';
    height: 1px;
    position: absolute;
    right: 20px;
    transition: right 0.3s;
}
.base__btn::before {
    top: 50%;
    width: 14px;
    transform: translateY(-50%);
    right: 18px;
}
.base__btn::after {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    background: none;
    width: 7px;
    height: 7px;
    top: 50%;
    margin: -1px 0 0 0;
    transform: rotate(45deg) translateY(-50%);
}
.base__btn:hover::before {
    right: 12px;
}
.base__btn:hover::after {
    right: 15px;
}
@media screen and (max-width:897px){
	.base__btn {
        font-size: 1.4rem;
        height: 50px;
        padding: 0 20px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}
/* btn お問い合わせ
============================== */
.btn__inquiry-security.show{
	opacity: 1;
}
.btn__inquiry-security{
	display: inline-block;
	padding: 65px 13px;
	width: auto;
	height: auto;
	color: #000;
	font-size: 2rem;
	font-weight: var(--bold);
	writing-mode: vertical-lr;
	font-feature-settings: normal;
	background: var(--YellowGD);
	border-radius: 15px 0 0 15px;
	border: 3px solid #fff;
	border-right: none;
	position: fixed;
	transform: translateY(-50%);
	top: 50%;
	right: 0;
	z-index: 99;
	transition: 0.3s;
	opacity: 0;
	letter-spacing: 0.1rem;
	box-shadow: -3px 3px 0px 0px rgba(0, 0, 0, 0.1);
}
.btn__inquiry-security:hover{
	text-decoration: none;
	opacity: 0.7;
}
@media screen and (max-width:897px){
	.btn__inquiry-security{
		padding: 40px 8px;
		font-size: 1.2rem;
	}

}
@media (max-width: 991px){
	.header-fixed{
		position: absolute;
		top: 100px;
	}
	.l-wrapper{
		padding-top: 0px!important;
	}
}
@media (max-width: 991px) and (min-width: 898px){
	.l-wrapper{
		padding-top: 102px!important;
	}
}
/*
	header
-----------------------------------------------------------------------------------------------*/
.header{
	width: 100%;
	height: 80px;
	position: relative;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #e3e3e3;
}
.header__container{
	border-top: 1px solid #e3e3e3;
}
/* menuArea */
.header__list{
	display: flex;
	justify-content: center;
	max-width: 1280px;
	margin: 0 auto;
}
.header__item{
	position: relative;
	width: calc((100% - 5px) / 6);
}
.header__item:last-child::after{
	content: none;
}
.header__item::after{
	content: "";
	width: 1px;
	height: 70%;
	background: #f3f3f3;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.header__link{
	align-items: center;
	color: #464646;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	/* width: calc(1200px / 5); */
	font-size: 1.6rem;
	font-weight: var(--medium);
	height: 80px;
	justify-content: center;
	padding: 0 15px;
	transition: .3s;
}
.header__link:hover{
	background: var(--Emerald);
	color: #fff;
}
.header__link:hover .header__txt--sub,
.l-header a:hover{
    color: #fff;
}
.header__txt{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	line-height: 120%;
	margin-bottom: 2px;
}
.header__txt--sub {
    color: var(--LogoBlue);
    font-size: 1.1rem;
    font-family: var(--ffOs);
	letter-spacing: 0.1rem;
}
/*
	全サイト共通部分
-----------------------------------------------------------------------------------------------*/
.l-wrapper{
	padding-top: 142px!important;
}
/* .l-header-gnav ul li{
	font-size: min(1.5rem, 1.04vw);
} */

@media (min-width: 992px){
	.l-header.headroom--not-top{
		transform: translateY(-142px);
	}
	.l-header__block{
		height: 70px;
	}
}
@media (max-width: 991px){
	.header-fixed{
		position: absolute;
		top: 100px;
	}
	.l-wrapper{
		padding-top: 0px!important;
	}
}
@media (max-width: 991px) and (min-width: 898px){
	.l-wrapper{
		padding-top: 102px!important;
	}
}
@media screen and (max-width:897px) {
	.header{
		width: 100%;
		height: auto;
		z-index: 0;
	}
	/* menuArea */
	.header__container{
		display: none;
		width: 100%;
	}
	/* listMenu */
	.header__list{
		border-top: 1px solid #bad1dc;
		display: block;
		overflow: scroll;
	}
	.header__item{
		width: 100%;
		background: #fff;
	}
	.header__link{
		border-bottom: 1px solid #bad1dc;
		border-right: none;
		font-size: 1.5rem;
		height: 65px;
		justify-content: center;
		line-height: 1.4;
		padding: 15px;
		position: relative;
		width: 100%;
	}
	.header__item[class ^= "toggle"] > span::before,/* + */
	.header__item[class ^= "toggle"] > span::after{
		content: " ";
		display: block;
		width: 10px;
		height: 2px;
		transition: all 0.3s;
	}
	.jsMenuIn{
		display: block!important;
	}
	.jsMenuIn::before{
		content: none;
	}
	/* listIn */
	.listIn__item{
		border-bottom: 1px solid rgba(105,86,69,0.2);
		margin: 0 15px;
	}
	.listIn__item--button{
		color: #000;
		display: block;
		font-size: 1.3rem;
		padding: 12px 15px;
		position: relative;
	}
	.listIn__item--button::before{
		border-right: 1px solid #000;
		border-top: 1px solid #000;
		content: '';
		height: 5px;
		position: absolute;
		right: 15px;
		top: 18px;
		transform: rotate(45deg);
		width: 5px;
	}
	/* btnHbg */
	.btnHbg{
		align-items: center;
		display: flex;
		width: 100%;
		height: 50px;
		background-color: #fff;
		font-weight: var(--bold);
		padding: 0 15px;
		position: relative;
		transition: all 0.3s;
		z-index: 9000;
	}
	.btnHbg::before,
	.btnHbg::after{
		background: #000;
		content: '';
		height: 1px;
		position: absolute;
		right: 20px;
		width: 18px;
	}
	.btnHbg::after{
		transform: rotate(90deg);
		transition: transform .3s;
	}
	.jsActive.btnHbg::after{
		transform: rotate(180deg);
		transition: transform .3s;
	}
	/* btnHbg jsActive */
	body.jsActive{
		overflow: hidden;
	}
	.header__txt{
		width: 100%;
	}
	.header__txt::after{
		top: 60%;
	}
	/*
		全サイト共通部分
	-----------------------------------------------------------------------------------------------*/
	.l-wrapper{
		padding-top: 105px!important;
	}
	.l-header.headroom--not-top{
		transform: translateY(-100px);
	}
}
/* modal
=========================================================================================== */
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	height: 100%;
	z-index: 5000;
}
[class^="modalOpen__box"]{
    min-width: 800px;
}
.modalOpen__box--lineup{
	padding: 60px 30px 30px 30px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	max-width: 1200px;
}
.modal__picture{
	display: flex;
}
[class^="js-movie-modal-open"],
[class^="js-modal-open"] {
    position: relative;
	z-index: 1;
}
[class^="js-modal-open"]::before {
	content: "";
    background: url(../img/ico_zoom_01.svg) no-repeat center center / 17px var(--LightBlue);
    bottom: 0;
    content: '';
    height: 25px;
    position: absolute;
    right: 0;
    width: 25px;
	z-index: 2;
}
.modal__bg{
    background: rgba(0,0,0,0.7);
    /* height: 100vh; */
    position: absolute;
    width: 100%;
	height: 100%;
}
[class^="modalOpen__box"]{
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}
[class^="modalOpen__picture"]{
	position: relative;
	display: flex;
	width: 100%;
    justify-content: center;
    margin: 0 auto;
}
[class^="modalOpen__picture"] img{
	width: 100%;
}
[class^="close"]{
    background: #000;
    cursor: pointer;
    height: 40px;
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
}
.close__scroll{
	right: 10px;
    top: 40px;
	z-index: 100;
}
[class^="close"]::before, 
[class^="close"]::after {
    background: #fff;
    content: ' ';
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 20px;
}
[class^="close"]::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
[class^="close"]::after {
    transform: translate(-50%, -50%) rotate(135deg);
}
.scroll__box {
	overflow-x: auto;
	padding-bottom: 10px;
	-webkit-overflow-scrolling: touch;
}
@media screen and (max-width:897px){
	[class^="js-modal-open"] {
		width: 100%;
	}
	[class^="modalOpen__box"] {
		width: 100%;
		min-width: auto;
	}
	.modalOpen__box--lineup{
		padding: 60px 30px 30px 30px;
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	[class^="modalOpen__picture"]{
		width: 80%;
		max-width: 550px;
	}
	.close__scroll{
		top: 50px;
		right: 20px;
	}
	.modalOpen__picture--lineup{
		width: 1140px;
		max-width: 1140px;
	}
}
