
@charset 'utf-8';

/*PC用CSS(ipad mini 7.9インチ対応)*/
@media only screen and (min-width: 768px) {
	.pc_none{
		display: none!important;
	}
}
/*SP用CSS(ipad mini 7.9インチ未対応)*/
@media only screen and (max-width: 767px) {
	.sp_none{
		display: none!important;
	}
}


/*リキッドの場合に使用*/
@media only screen and (min-width: 768px){
/*	76.8rem-128.0rem 画面幅128.0rem閲覧で.1rem=0.1rem可変*/
	html{
			font-size: 0.733vw;
		}
}
@media only screen and (max-width: 767px){
/*	-76.7rem 画面幅37.5rem閲覧で.1rem=0.1rem可変*/
	html{
			font-size: 2.67vw;
		}
}
@media only screen and (max-width: 374px){
/*	-37.4rem 画面幅37.4remで.1rem=0.1rem固定*/
	html{
/*			font-size: 62.5%;*/
		}
}
@media only screen and (min-width: 1400px){
/*	128.0rem- 画面幅128.0remで.1rem=0.1rem固定*/
	html{
		/*font-size: 63.62%;*/
	}
}

/*Googleフォントここから*/
body{
	-webkit-text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	text-size-adjust: 100%; /*ios横向き文字の拡大防止*/
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
	font-weight: 400;
	color: #E60012;
	letter-spacing: calc((0/1000)*1em);
	/*text-decoration-thickness: .1rem;
	text-decoration-line: underline;
	text-decoration-color: #000000;
	text-decoration-style: solid;
	text-underline-offset: .3rem;
	text-decoration-skip-ink: none;*/
}
html.active,
body.active{
	overflow: hidden;
}

.light{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 300;
}
.regular{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
.mid{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 500;
}
.sbold{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 600;
}
.bold{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 700;
}
.ebold{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 800;
}
.black{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 900;
}

.young{
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.inter{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.inter_mid{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

/*Googleフォントここまで*/
*{
	box-sizing: border-box;
}

svg{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
iframe{
	width: 100%;
	min-width: initial;
	height: 100%;
	min-height: initial;
	display: block;
	position: absolute;
	top: 0;
	bottom: auto;
	left: 0;
	right: auto;
	margin: auto;
}
::-webkit-scrollbar{
	display: none;
}
::scrollbar{
	display: none;
}
::before,
::after{
	box-sizing: border-box;
}

body,
main,
header,
footer{
	min-width: 128.0rem;
}
@media only screen and (max-width: 767px){
	body,
	main,
	header,
	footer{
		min-width: 32.0rem;
	}
}

body{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	position: relative;
	background-color: #F6C53E;
}

html.no-scroll {
  overflow: hidden;
  height: 100%;
}

main{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}

/*headerここから*/
header{
	width: 100%;
	height: 6.0rem;
	display: block;
	background-color: #835F48;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
@media only screen and (max-width: 767px){
	header{
		height: 4.0rem;
	}
}
header .header01{
	width: 100%;
	height: 100%;
	padding: 0 1.3rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px){
	header .header01{
		padding: 0 0 0 5%;
		background-color: transparent;
		transition: all .5s;
	}
}
header .header01 h1{
	width: 13.0rem;
	height: auto;
	margin: 0 .5rem 0 0;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	header .header01 h1{
		width: 6.4rem;
		position: relative;
		z-index: 0;
		transition: all 0s;
	}
	header .header01 h1.active{
		z-index: 100;
		transition: all 0s .5s;
	}
}
header .header01 h1 a{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
header .header01 h1 a img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
/*headerここまで*/

/*footerここから*/
footer{
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #835F48;
	display: block;
	padding: 6.0rem 0 4.4rem;
}
@media only screen and (max-width: 767px){
	footer{
		padding: 6.0rem 4.0rem 3.0rem;
	}
}
footer .footer01{
	width: 116.6rem;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
@media only screen and (max-width: 767px) {
	footer .footer01{
		width: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}
}
footer .footer01 .footer01_01{
	width: 69.0rem;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_01{
		width: 100%;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}
footer .footer01 .footer01_01 .logo{
	width: 23.4rem;
	height: auto;
	margin: 0 0 4.0rem;
	display: block;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_01 .logo{
		width: 27.6rem;
		margin: 0 0 3.2rem;
	}
}
footer .footer01 .footer01_01 .logo img{
	width: 100%;
	height: auto;
	margin: 0;
	display: block;
}
footer .footer01 .footer01_01 .footer01_01_01{
	width: 39.0rem;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_01 .footer01_01_01{
		width: 100%;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .f_text01{
	color: #fff;
	font-size: 1.6rem;
	line-height: 2.6rem;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_01 .footer01_01_01 .f_text01{
		text-align: center;
	}
}
footer .footer01 .footer01_01 .footer01_01_01 .f_text02{
	color: #fff;
	font-size: 1.3rem;
	line-height: 2.0rem;
	margin-top: 1.2rem;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_01 .footer01_01_01 .f_text02{
		color: #fff;
		font-size: 1.2rem;
		line-height: 2.2rem;
		margin-top: 1.0rem;
	}
}
footer .footer01 .footer01_02{
	width: 27.6rem;
	height: auto;
	display: block;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_02{
		width: 100%;
		margin-top: 6.0rem;
	}
}
footer .footer01 .footer01_02 li{
	width: 100%;
	height: auto;
}
footer .footer01 .footer01_02 li a{
	margin-bottom: 1.0rem;
	padding-bottom: 1.0rem;
	border-bottom: .1rem solid #fff;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.6rem;
	line-height: 1.6rem;
	color: #fff;
	position: relative;
}
@media only screen and (max-width: 767px){
	footer .footer01 .footer01_02 li a{
		margin-bottom: 2.0rem;
		padding-bottom: 2.0rem;
	}
}
footer .footer01 .footer01_02 li:last-of-type a{
	border-bottom: initial;
	margin-bottom: 0;
	padding-bottom: 0;
}
footer .footer01 .footer01_02 li a img{
	width: 1.8rem;
	height: auto;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	margin: auto;
	transition: all .5s;
}
footer .footer01 .footer01_02 li a:hover img.arrow01{
	opacity: 0;
}
footer .footer01 .footer01_02 li a img.arrow02{
	opacity: 0;
}
footer .footer01 .footer01_02 li a:hover img.arrow02{
	opacity: 1;
}
footer .copy{
	width: 116.6rem;
	height: auto;
	display: block;
	margin: 0 auto;
	font-size: 1.3rem;
	line-height: 2.7rem;
	letter-spacing: calc((55/1000)*1em);
	color: #fff;
}
@media only screen and (max-width: 767px){
	footer .copy{
		width: 100%;
		font-size: 1.1rem;
		line-height: 1.5rem;
		margin-top: 8.0rem;
	}
}
/*footerここまで*/

/*btn-topここから*/
.btn-top{
	width: 5.0rem;
	height: 5.0rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: auto;
	bottom: 0;
	left: auto;
	right: 2.0rem;
	margin: auto;
	z-index: 10;
	cursor: pointer;
}
.btn-top::before{
	content: '';
	width: 50%;
	height: 40%;
	margin: 0;
	clip-path: polygon(0 100%, 50% 0, 100% 100%);
	background-color: #104EA3;
	display: block;
}
@media only screen and (max-width: 767px) {
	.btn-top {
		right: 0;
	}
}



/*btn-topここまで*/

/*includeここから*/

/*.eyecatch_incここから*/
./*eyecatch_inc.top{
	width: 100%;
	min-width: 128.0rem;
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top{
		min-width: 32.0rem;
	}
}
.eyecatch_inc.top .eyecatch_inc01{
	width: 118.0rem;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc01{
		width: 90%;
		max-width: 32.0rem;
	}
}
.eyecatch_inc.top .eyecatch_inc01 .text01{
	width: auto;
	height: auto;
	margin: 0;
	font-size: 2.0rem;
	line-height: 3.0rem;
}
.eyecatch_inc.top .eyecatch_inc02{
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-list{
	width: 100%;
	height: auto;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img{
	width: 100%;
	height: calc(100vh - 7.4rem);
	height: calc(var(--vh_2, 1vh) * 100 - 7.4rem);
	min-height: 50.0rem;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc02 .eye_img{
		min-height: initial;
	}
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img01{
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img02{
	background-color:#104EA3;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img03{
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc02 .eye_img04{
	background-color:#104EA3;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.top .eyecatch_inc02 .eye_img01{
	}
	.eyecatch_inc.top .eyecatch_inc02 .eye_img02{
	}
	.eyecatch_inc.top .eyecatch_inc02 .eye_img03{
	}
	.eyecatch_inc.top .eyecatch_inc02 .eye_img04{
	}
}
.eyecatch_inc.top .eyecatch_inc02 .slick-prev,
.eyecatch_inc.top .eyecatch_inc02 .slick-next{
	width: 3.3rem;
	height: 3.3rem;
	top: 0;
	bottom: 0;
	z-index: 10;
	transition: all .5s;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc02 .slick-prev,
	.eyecatch_inc.top .eyecatch_inc02 .slick-next{
		width: 2.5rem;
		height: 2.5rem;
	}
}
.eyecatch_inc.top .eyecatch_inc02 .slick-prev:hover,
.eyecatch_inc.top .eyecatch_inc02 .slick-next:hover{
	opacity: .8;
	transition: all .5s;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-prev{
	left: 0;
	right: auto;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-next{
	left: auto;
	right: 0;
	margin: auto;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-prev::before{
	width: 3.3rem;
	height: 3.3rem;
	background-image: url(../img/slick/arrow01.png);
	background-repeat: no-repeat;
	background-size: 1.5rem auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc02 .slick-prev::before{
		width: 2.5rem;
		height: 2.5rem;
		background-size: .9rem auto;
		/*background-color: #19496f;*/
	}
}
/*.eyecatch_inc.top .eyecatch_inc02 .slick-next::before{
	width: 3.3rem;
	height: 3.3rem;
	background-image: url(../img/slick/arrow02.png);
	background-repeat: no-repeat;
	background-size: 1.5rem auto;
	background-position: center;
	opacity: 1;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc02 .slick-next::before{
		width: 2.5rem;
		height: 2.5rem;
		background-size: .9rem auto;
	}
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots{
	width: 20.0rem;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: absolute;
	top: auto;
	bottom: 3.0rem;
	left: 0;
	right: 0;
	z-index: 10;
	margin: auto;
}
@media only screen and (max-width: 767px){
	.eyecatch_inc.top .eyecatch_inc02 .slick-dots{
	}
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots li{
	width: .8rem;
	height: .8rem;
	margin: .4rem .4rem 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots li:nth-of-type(-n+12){
	margin-top: 0;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots li button{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots li button::before{
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	display: block;
	font-family: none;
	font-size: 0;
	line-height: 0;
	position: static;
	background: none;
	background-color: #abbcca;
}
.eyecatch_inc.top .eyecatch_inc02 .slick-dots .slick-active button::before{
	background-color: #19496f;
}
.eyecatch_inc.short{
	width: 100%;
	height: 42.2rem;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short{
		height: 20.5rem;
	}
}
.eyecatch_inc.short .eyecatch_inc01{
	width: 98.0rem;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.eyecatch_inc.short .eyecatch_inc01{
		width: 90%;
		max-width: 32.0rem;
	}
}
.eyecatch_inc.short .eyecatch_inc01 h2{
	font-size: 2.0rem;
	line-height: 3.0rem;
}
.eyecatch_inc.short .eyecatch_inc02{
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
.eyecatch_inc.short .eyecatch_inc02 .eye_img{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
}
.eyecatch_inc.short .eyecatch_inc02 .eye_img{
	background-color:#104EA3;
}*/*/
/*.eyecatch_incここまで*/


/*includeここまで*/



