@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 */
	--Blue: #194b73;
	--LightBlue: #e8edf1;
	--DeepBlue: #3278aa;
	--Yellow: #fffa00;
	--Green: #005532;
	--LightGreen: #e5eeea;
	--TxtGreen: #008769;
	--Red: #ac393d;
	--LightRed: #f7ebec;
	--Purple: #645082;
	--LightPurple: #efedf2;
	--BlueGD: linear-gradient(90deg, rgba(50, 120, 170, 1), rgba(25, 75, 115, 1));
	--GreenGD: linear-gradient(90deg, rgba(0, 85, 50, 1), rgba(0, 153, 105, 1));
	--LogoColorLightGD: linear-gradient(90deg, rgba(50, 120, 170, 1), rgba(0, 135, 105, 1));
	--LogoColorDeepGD: linear-gradient(90deg, rgba(25, 75, 115, 1), rgba(0, 85, 50, 1));
	--btnGD: linear-gradient(90deg, rgba(255, 250, 60, 1), rgba(255, 220, 30, 1));
	/* border-radius */
	--border-radius-5: 5px;
    --border-radius-10: 10px;
	/* width */
	--width: 1280px;
	--w990: 990px;
	--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{
	text-decoration:none;
	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(--btnGD);
    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;
}
.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: 20px 15px;
	width: auto;
	height: auto;
	color: #000;
	font-size: 2rem;
	font-weight: var(--bold);
	writing-mode: vertical-lr;
	font-feature-settings: normal;
	background-image: linear-gradient(90deg, rgba(255, 250, 60, 1), rgba(255, 220, 30, 1));
	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;
}
.btn__inquiry-security:hover{
	text-decoration: none;
	opacity: 0.7;
}
@media screen and (max-width:897px){
	.btn__inquiry-security{
		padding: 20px 8px;
	}

}
@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;
}
.header-fixed{
	border-top: 1px solid #e3e3e3;
}
/* menuArea */
.header__list{
	background: #fff;
	display: flex;
	justify-content: center;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.header__item{
	position: relative;
}
.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: #000;
	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: #e0ebf2;
}
.header__txt{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	line-height: 120%;
}
.header__txt--sub{
	color: var(--Blue);
	font-size: 1.2rem;
	font-family: var(--ffOs);
}
/*
	全サイト共通部分
-----------------------------------------------------------------------------------------------*/
.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__link{
		border-bottom: 1px solid #bad1dc;
		border-right: none;
		font-size: 1.5rem;
		height: 65px;
		justify-content: space-between;
		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);
	}
}
/*一旦非表示*/
#modalWindow{
display: none;
}
/* modal
============================== */
/* [id^="modalOpen"]{
	position: relative;
}
[id^="modalOpen"]::before{
	background: url(../img/ico_zoom_01.svg) no-repeat center center;
	bottom: 0;
	content: '';
	height: 30px;
	position: absolute;
	right: 0;
	width: 30px;
}
.modalOpen__picture{
	display: flex;
} */
/* 展開時 */
/* .modal{
	display: none;
	position: relative;
}
.modalBox{
	position: relative;
	text-align: center;
	box-shadow: 7px 7px 30px rgb(0 0 0 / 25%);
} */
/* 閉じるボタン */
/* .close{
	background: #000;
	cursor: pointer;
	height: 40px;
	position: absolute;
	right: -20px;
	top: -20px;
	width: 40px;
} */
/* .close::before,
.close::after{
	background: #fff;
	content: ' ';
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 20px;
}
.close::before{
	transform: translate(-50%, -50%) rotate(45deg);
}
.close::after{
	transform: translate(-50%, -50%) rotate(135deg);
} */
/* @media print, screen and (min-width:813px){
	.modal{
		width: fit-content;
		max-width: 900px;
	}
		.lb_overlay{
		cursor: zoom-out;
		min-width: 1200px;
	}
} */
/* @media (hover: hover){
	[id^="modalOpen"]{
		transition: .5s;
	}
	[id^="modalOpen"]:hover{
		position: relative;
	}
	[id^="modalOpen"]::after,
	[id^="modalOpen"]:hover::after{
		background: rgb(var(--color-blue-rgb) / 0%);
		content: '';
		height: 100%;
		left: 50%;
		position: absolute;
		top: 50%;
		transform: translate(-50%, -50%);
		transition: .5s;
		width: 100%;
	}
	[id^="modalOpen"]:hover::after{
		background: rgb(var(--color-blue-rgb) / 10%);
	} */
	/* 閉じるボタン */
	/* .close,
	.close::before,
	.close::after{
		transition: transform 0.5s;
	}
	.close:hover::before{
		transform: translate(-50%, -50%) rotate(135deg);
	}
	.close:hover::after{
		transform: translate(-50%, -50%) rotate(225deg);
	}
} */
/* @media screen and (max-width:897px){
	.modal{
		width: calc(100% - 20px);
	}
	[id^="modalOpen"]::before{
		background: url(/eye-bousai/assets/img/ico_zoom_01.svg) no-repeat center center / 13px var(--color-blue);
		height: 20px;
		width: 20px;
	} */
		/* 閉じるボタン */
	/* .close{
		height: 30px;
		right: 0;
		top: -30px;
		width: 30px;
	}
	.close::before,
	.close::after{
		top: 16px;
		right: 0;
		width: 15px;
	}
} */
