@charset "utf-8";
/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;}
ul li {list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: normal;font-size: 100%;margin: 0;}
p{margin: 0;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: url('../font/notosans-r.woff') format('woff'),
			url('../font/notosans-r.eot')  format('eot');
	font-display: swap;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: url('../font/notosans-m.woff') format('woff'),
			url('../font/notosans-m.eot')  format('eot');
	font-display: swap;
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: url('../font/notosans-b.woff') format('woff'),
			url('../font/notosans-b.eot')  format('eot');
	font-display: swap;
}
body {
	font-size: 15px;
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	height:100%;
	width:100%;
	line-height:1.7;
	color: #000;
	position:relative;
	z-index: 0;
}
/* body{
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	height:100%;
	width:100%;
	color: #000;
	position:relative;
	z-index: 0;
} */
a{
	text-decoration: none;
	outline: none;
	color: #000;
}
a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
section{background-color: var(--white01);}
/* フォントCSS */
.mincho{
	font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
.zen{
	font-family: 'Zen Maru Gothic', sans-serif;
}
/* img用クラス */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}
/* インナー設定 */
.inner,
.pc-inner,
.sp-inner{
	margin-left: auto;
	margin-right: auto;
}
/* フレックス */
.flex{
	display: flex;
}
.fxw{
	display: flex;
	flex-wrap: wrap;
}
.jcsb{
	display: flex;
	justify-content: space-between;
}
/* スライダー読み込みまで非表示 */
.slide{
	opacity: 0;
	transition: opacity .3s linear;
}
.slide.slick-initialized{
	opacity: 1;
}
/* スクロールバー消す */
.y-scroll,
.x-scroll{
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none; /* Firefox 対応 */
}
.y-scroll{
	overflow-y: scroll;
	overflow-x: auto;
}
.x-scroll{
	overflow-x: scroll;
	overflow-y: auto;
}
.y-scroll::-webkit-scrollbar,
.x-scroll::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display: none;
}
/* 縦書き */
.tategaki{
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
/* CSS関数設定 */
:root{
  --blue01:#046EA3;
  --blue02:#DAE4E4;
	--blue04:#E4EEEE;
	--blue05:#3C94C6;
	--blue06:#047CA3;

  --white01:#fff;
	--white02:#FAFAFA;
	--gray02:#EEEEEE;
}
@media screen and (min-width: 961px){
	.hamburger{
		display: none !important;
	}
	.sp960{display: none !important;}
	.spContents{display: contents;}
}
@media screen and (max-width: 960px){

	.pc960{display: none !important;}
	.pcContents{display: contents;}
}

@media screen and (min-width: 768px){
	body{
		font-size: 15px;
		line-height: 1.7;
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%;
	}
	a:hover{
		opacity: 0.7;
		text-decoration: none;
	}
	a:hover img{
		opacity:0.75 !important;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	.sp{
		display: none !important;
	}
	.generalsec{
		padding-bottom: 80px;
	}

}
@media screen and (max-width: 767px){
	body{
		font-size: 14px;
		line-height: 1.6;
	}
	.pc{
		display: none !important;
	}
	.generalsec{
		padding-bottom: 40px;
	}
}
/* --------------------header------------------- */
header{
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10000;
	width: 100%;
	margin-left: auto;
	background-color: transparent;
	transition: top .8s, background-color .8s;
	opacity: 0;
	animation: FADEIN forwards 1s ease 0.3s normal;
}

.h-wrapper{
	max-width: 1300px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: flex-end ;
	position: relative;
	z-index: 10;
	transition: all .8s;
}
.h-ttl{
	position: relative;
  display: flex;
	align-items: center;
	gap:clamp(5px, 1.2vw,10px);
}
.h-ttlThumb{
  width: 135px;
}
.h-ttlTxt{
	color: var(--red01);
	font-weight: bold;
}
:root{
	--red01:#AB2E23;
	--black01:#000;
	--gray01:#959595;
}

.h-navigation{
	display: flex;
	align-items: center;
}
.h-navigationList{
	display: flex;
	align-items: center;
}
.h-navigationList>li a{
	display: block;
	width: 100%;
	line-height: 1.2;
}
.h-navigationList>li:not(:last-child) a{
	border-right: .6px solid var(--gray01);
}

.h-entry__btn>a{
	display: flex;
	align-items: center;
	color: var(--white01);
	background-color: var(--blue01);
	height: 100%;
	padding: 18px 10px;
}
.h-spbtns{
	display: flex;
}

@media screen and (min-width: 1401px){
	.h-wrapper{
		gap: clamp(1em, 2.5vw,1.5em);
	}
	.h-navigationList>li a{
		padding-left: 1em;
	}
	.h-navigationList>li:not(:last-child) a{
		padding-right: 1em;
	}
}

@media screen and (min-width: 1291px) and (max-width: 1400px){
	.h-wrapper{
		gap: 0;
	}
	.h-navigationList>li a{
		padding-left: 10px;
	}
	.h-navigationList>li:not(:last-child) a{
		padding-right: 10px;
	}
}
@media screen and (max-width: 1290px){
	.h-navigationList>li a{
		font-size: 13px;
		padding-left: 5px;
	}
	.h-navigationList>li:not(:last-child) a{
		padding-right: 5px;
	}
}
@media screen and (max-width: 1080px){
	.h-ttlThumb{
		width: 90px;
	}
	.h-ttlTxt{
		font-size: 11px;
	}
}
@media screen and (min-width: 961px){
	.h-spbtns,
	.h-entry__btn{display: none;}
	header{	padding: 30px 0 40px;}
}
@media screen and (max-width: 960px){
	header{background-color: var(--white01);}
	.h-wrapper{
		justify-content: space-between;
	}
	.h-spbtns,
	.h-entry__btn{display: flex;}
	.h-navigation{
		display: none;
	}
}

/* --------------------footer------------------- */
footer{
	background-color: var(--black01);
}
.f-ttl>a{
  display: flex;
	align-items: center;
	justify-content: center;
	gap:10px;
	padding: 30px 0;
}
.f-ttlMin{
  width: 135px;
}
.f-ttlSub{
	color: var(--red01);
	font-weight: bold;
}

/* --------------------全ページ共通部分------------------- */
/* フォント */
.g-montserrat{
	font-family: 'Montserrat', sans-serif;
}
.g-TsukuBRdGothic{
	font-family: sans-serif;
}
/* ラッパー */
.g-wrapper:not(.__wide){
	width: 90%;
	max-width: 1300px;
	margin-right:auto;
	margin-left:auto;
}
.g-wrapper.__wide{
	max-width: 1440px;
	margin-right:auto;
	margin-left:auto;
}
/* その他 */
.g-btn>a:hover{
	transform: scale(.9);
}
.g-btn>a{
	position: relative;
	background-color: var(--blue01);
	color: var(--white01);
	padding: 1em 0;
	display: block;
	height: 100%;
	text-align: center;
	margin-right:auto;
	margin-left:auto;
	transition: transform .4s;
}
.g-btn>a:after{
	position:absolute;
	content:'';
	top: 50%;
	transform: translateY(-50%);
	right: 10%;
	background:url(../images/top/arrow.svg) no-repeat center center / contain;
	height: 10px;
}

.g-ttl:not(.rc-voice__ttl){
	text-align: center;
}
.g-ttl.rc-voice__ttl{
	text-align: center;
}
.g-ttl>span{
	display: inline-block;
}
.g-ttl>span>span{
	display: block;
}
.g-ttlMin{
	position: relative;
	font-weight: bold;
	width: fit-content;
	margin-right:auto;
	margin-left:auto;
	letter-spacing: 3px;
	padding: 0 .6em;
	z-index: 1;
}
.g-ttlMin:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	clip-path: polygon(100% 0%,calc(100% - 100px) 100%, 100% 100%);
	z-index: -1;
}
.g-ttlMin.__blue:after{background-color: var(--blue02);}
.g-ttlMin.__white:after{background-color: var(--white01);}
.g-ttlMin.__navy:after{background-color: var(--blue01);}

.g-ttlSub{
	font-size: 20px;
	color: var(--gray01);
}
@media screen and (min-width: 768px){
	.g-btn>a{
		width: 530px;
	}
	.g-btn>a{
		font-size: 29px;
	}
	.g-btn>a:after{
		width: 58px;
	}
	.g-ttlMin{
		font-size: 36px;
	}
	.g-ttl:not(.rc-voice__ttl){
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767px){
	.g-btn>a{
		width: 80%;
		max-width: 300px;
	}
	.g-btn>a{
		font-size: 16px;
	}
	.g-btn>a:after{
		width: 30px;
	}
	.g-ttlMin{
		font-size: 30px;
	}
	.g-ttl:not(.rc-voice__ttl){
		margin-bottom: 20px;
	}
}
/* -------------------- pagetop ------------------- */
#entrybtn{
  display: none;
  z-index: 1000;
  position: relative;
}
#entrybtn a::after{
  content: '';
  display: block;
  background-image: url(../images/top/arrow.svg);
  transform: rotate(90deg);
}

#entrybtn a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  box-sizing: content-box;
  background-color: var(--blue01);
  color: var(--white01);
  top: 20%;
  right: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  overflow: hidden;
}
#entrybtn a::before{
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation: shiny 4s ease-in-out infinite;
}
#entrybtn::after {
  content: "";
  display: inline-block;
  background: rgba(222, 179, 126, 0.15);
  width: 100%;
  height: 100%;
  position: absolute;
  top: -4px;
  left: -5px;
  z-index: -1;
  transition: .5s all;
}

@media screen and (min-width: 768px){
  #entrybtn a {
    width: 60px;
    height: 200px;
    font-size: 24px; 
    padding: 40px 15px; 
  }
  #entrybtn a::after{
    height: 10px;
    width: 60px;
  }
  #entrybtn a span{
    margin-top: -25px;
  }
}
@media screen and (max-width: 767px){
  /* #entrybtn{display: none;} */
  #entrybtn a {
    width: 20px;
    height: 100px;
    font-size: 18px; 
    padding: 40px 15px; 
  }
  #entrybtn a::after{
    height: 5px;
    width: 30px;
  }
  #entrybtn a span{
    margin-top: -15px;
  }
}
/* -------------------- ------------------- */
.maskingTrigger{
	opacity: 0;
}
.maskingTrigger.__fit{
	width: fit-content; 
	margin-right:auto;
	margin-left:auto;
}
.maskingTrigger.__wide{
	width: fit-content; 
	margin-right:auto;
	margin-left:auto;
}
.masking>*{
	opacity: 0;
	-webkit-animation: masking_body forwards 1s ease 0.3s normal;
  animation: masking_body forwards 1s ease 0.3s normal;
}
.masking{
  position: relative;
  overflow: hidden;
  z-index: 1000;
	opacity: 1;
}
.masking::before{
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(0, 101%);
  transform: translate(0, 101%);
  z-index: 1000;
  -webkit-animation: masking 1000ms cubic-bezier(0.77, 0, 0.175, 1);
  animation: masking 1000ms cubic-bezier(0.77, 0, 0.175, 1);
}
.masking.__blue::before{
  background: var(--blue01);
}
.masking.__white::before{
	background: var(--white01);
}
@media screen and (min-width: 768px){
	.maskingTrigger.__wide{
		padding: 0 4em;
	}
}
@media screen and (max-width: 767px){
	.maskingTrigger.__wide{
		padding: 0 5%;
	}

}