@charset "utf-8";
/* CSS Document */



html {
    overflow-y: scroll;
	overflow-x: hidden;
	/*font-size: 62.5%;*/
	font-size:92.5%;
}

@media print{
   /*アニメーションOFF*/
	
	.fadeUpTrigger{
        opacity: 1.0 !important;
	}

	.fadeUp{
        opacity: 1.0 !important;
	}

    
   /*印刷用CSSで適用させる定義を記述*/
    html {
        transform: scale(0.8);
        transform-origin: left top;
        width: calc(100% / 0.8);
        height: calc(100% / 0.8);
        overflow-y: auto;
    }  
}

@media screen and (max-width: 1700px) {
  html {
	font-size:90%;
	}
}

@media (orientation: portrait){
  html {
	font-size: 100%;
	}
}

@media screen and (max-width: 1400px) {
  html {
	font-size:87.5%;
	}
}

@media screen and (max-width: 1300px) {
  html {
	font-size:85%;
	}
}

@media screen and (max-width: 1200px) {
  html {
	/*font-size:72.5%;*/
	font-size:82.5%;
	}
}

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.08rem;
	-webkit-text-size-adjust: 100%;
	/*-webkit-text-size-adjust: none;*/
	line-height: 1.5;
	color: #000000;
	overflow: hidden;
}

html.is-open {
	overflow: hidden;
}


.reem-kufi-fun-400 {
  font-family: "Reem Kufi Fun", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.noto-sans-jp-500 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.yu-gothic{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

*{
	margin: 0;
	padding: 0;
    word-break: break-all;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}
.pc_hide {
	display: none !important;
}

.sp_hide {
}

a {
	outline: none;
	color: #000000;
	text-decoration:none;	
	opacity: 1;
    transition: all 0.5s;
}

a:hover {
	opacity: 0.6;
}

a.disabled{
    pointer-events: none;
}

h1,
h2,
h3,
h4{
	font-size: 100%;
	font-weight: 500;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}


select::-ms-expand {
    display: none;
}

a.tel-link{
	pointer-events: none;
}


/*===================================
	仕様
=====================================*/

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 10000;
	width: 100%;
	height: 100%;
	background-color: #fff;
	text-align:center;
	color:#333;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	bottom: 21.7777%;
	left: 50%;
    z-index: 999;
	width: 100%;
	transform: translateX(-50%);
	color: #333;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
	height: 1px;
}

#splash .load_logo{
	width: 25.00rem;/*370*/
	line-height: 0;
	position: absolute;
	top: 20.2777%;/*187*/
	left: 50%;
	transform: translateX(-50%);
}

#splash .load_logo img{
	width: 100%;
	height: auto;
}

/*フェードアニメーション*/


/**/

.down-to-top02 {
	opacity: 0;
	transform: translateY(100px);
	transition: all 1s;
}

.down-to-top02.scrollin {
	opacity: 1;
	transform: translateY(0);
}

/**/

/* 上から */

.anim-head{
	opacity: 0;
}

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
	  opacity: 0;
	  transform: translateY(-100px);
  }

  to {
	  opacity: 1;
	  transform: translateY(0);
  }
}

/**/


/* 下から */

.fadeUpTrigger{
	opacity: 0;
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/**/

.ex-fade:not(.ex-active) .fukidashi01,
.ex-fade:not(.ex-active) .fukidashi02,
.ex-fade:not(.ex-active) .fukidashi03{
	opacity: 0;
}

.ex-fade.ex-active .fukidashi01{
    animation: fadeUpAnime02 1s both;
}

.ex-fade.ex-active .fukidashi02{
    animation: fadeUpAnime02 1s both;
    animation-delay: .4s;
}

.ex-fade.ex-active .fukidashi03{
    animation: fadeUpAnime02 1s both;
    animation-delay: .8s;
}


@keyframes fadeUpAnime02{
  from {
	  opacity: 0;
	  transform: translateY(100px);
  }

  to {
	  opacity: 1;
	  transform: translateY(0);
  }
}

/*===================================
	#g-nav
=====================================*/

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
	/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
	/*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(255,255,255,0.9);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
	list-style: none;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
	padding: 2.03rem 0;/*30*/
}

#g-nav li a{
	text-transform: uppercase;
	font-size: 2.03rem;/*30*/
	letter-spacing: 0.2em;
	color: #000;
	font-weight: bold;
	position: relative;
}

#g-nav li a:hover{
	opacity: 1;
}

#g-nav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 50%;
    /*線の形状*/
    width: calc( 100% + 1.89rem );/*28*/
    height: 0.95rem;/*14*/
    background: #f7e921;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: translateX(-50%) scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: left top;/*左上基点*/
	z-index: -1;
}

/*現在地とhoverの設定*/
#g-nav li.current a::after,
#g-nav li a:hover::after {
    transform: translateX(-50%) scale(1, 1);/*X方向にスケール拡大*/
}

/*========= ぼかしのためのCSS ===============*/

.mainblur{
  filter: blur(8px);
}

/*===================================
	共通パーツ
=====================================*/

.midashi_wrap{
	width: 67.57rem;/*1000*/
	margin: 0 auto;
	padding-bottom: 1.82rem;/*27*/
	border-bottom: 2px solid #FFF102;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.midashi_wrap h2.midashi_img{
	/*width: 33.7%;/*337*/
	line-height: 0;
}

.midashi_wrap h2.midashi_img img{
	/*
	width: 100%;
	height: auto;
	*/
}

.komidashi_img.underline span{
	display: block;
	position: relative;
	width: fit-content;
}
.komidashi_img.underline span::before{
	content: '';
	display: block;
	width: calc( 100% + 1.62rem );/*24*/
	height: 1.49rem;/*22*/
	background-color: #f7e921;
	position: absolute;
	bottom: -0.68rem;/*10*/
	left: -0.61rem;/*9*/
	right: 0;
	margin: auto;
	z-index: -1;
}

/*===================================
	.teaser_tit_wrap
=====================================*/


.teaser_tit_wrap{
	width: 100%;
}

body:not(.top-page) .teaser_tit_wrap{
	position: relative;
}

.teaser_tit_wrap::before{
	content: '';
	display: inline-block;
	width: 100%;
	height: calc(100% + 6.76rem);/*+100*/
	background-color: #fffba9;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.teaser_tit_wrap.no-bg::before{
	content: none;
}

.teaser_tit_wrap .teaser_header{
	width: 88.78%;/*1314*/
	max-width: 88.78rem;/*1314*/
	height: 3.11rem;/*46*/
	background-color: #f7f7f7;
	position: absolute;
	top: 2.03rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99999;
}

.teaser_tit_wrap .teaser_header.fixed{
	position: fixed;
	top: 0;
}


.teaser_tit_wrap .tit_inner{
	width: 81.08rem;/*1200*/
	margin: 0 auto;
	/*padding: 5.20rem 0 1.01rem;*//*77 15*/
	padding: 10.34rem 0 1.01rem;/*77+46+30 15*/
}

.teaser_tit_wrap .tit_inner h1.page_tit{
	font-size: 2.57rem;/*38*/
	color: #4a7a82;
	letter-spacing: 0.2em;
	text-align: center;
}

.teaser_tit_wrap .tit_inner h1.page_tit.tit_txt_img{
	margin: 0 auto;
}
.teaser_tit_wrap .tit_inner h1.page_tit.tit_txt_img img{
}
.teaser_tit_wrap .tit_inner h1.page_tit.tit_txt_img span{
	display: block;
	position: relative;
	width: fit-content;
	margin: 0 auto;
}
.teaser_tit_wrap .tit_inner h1.page_tit.tit_txt_img span::before{
	content: '';
	display: block;
	width: calc( 100% + 1.62rem );/*24*/
	height: 1.49rem;/*22*/
	background-color: #f7e921;
	position: absolute;
	bottom: -0.68rem;/*10*/
	left: -0.61rem;/*9*/
	right: 0;
	margin: auto;
	z-index: -1;
}

.teaser_tit_wrap .tit_inner .bread_crumb{
	margin-top: 3.24rem;/*48*/
}

.teaser_tit_wrap .tit_inner .bread_crumb p{
	display: flex;
	align-items: center;
	font-size: 0.88rem;/*13*/
	letter-spacing: 0.25em;
	color: #448aa5;
}

.teaser_tit_wrap .tit_inner .bread_crumb p a{
	color: #448aa5;
}

.teaser_tit_wrap .tit_inner .bread_crumb p span{
	padding: 0 0.68rem;/*10*/
}

h1.floating_logo {
  position: absolute;
	top: 0px;
	left: 30px;
  /*width: 13.11rem;*/
  width: 7.91rem;/*117*/
  line-height: 0;
  z-index: 9999;
  transform: translate(0, 0) scale(1);
  transform-origin: top left;
  transition: transform 0.05s linear; /* 高速だがなめらか */
	translate: none;
    rotate: none;
    scale: none;
}

h1.floating_logo img {
  width: 100%;
  height: auto;
}

/*===================================
	.anchor_nav
=====================================*/

.anchor_nav{
	width: 100%;
}

.anchor_nav ul.anchor_list{
	list-style: none;
	width: 81.08rem;/*1200*/
	height: 8.11rem;/*120*/
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-left-radius: 1.35rem;/*20*/
	border-top-right-radius: 1.35rem;/*20*/
	background: #fff;
}

.anchor_nav ul.anchor_list li{
	margin: 0 1.01rem;/*15*/
}

.anchor_nav ul.anchor_list li a{
	font-size: 1.01rem;/*15*/
	letter-spacing: 0.05em;
	color: #333;
}


/*===================================
	.dammy_header
=====================================*/

/*========= ボタンのためのCSS ===============*/

.dammy_header{
	width: 94.5945%;/*1400*/
	max-width: 94.59rem;/*1400*/
	height: 5.41rem;/*80*/
	border-radius: 1.35rem;/*20*/
	position: absolute;
	top: 2.03rem;/*30*/
	left: 50%;
	transform: translateX(-50%);
	z-index: 100000;
	pointer-events: none;
}

.dammy_header.fixed{
	position: fixed;
	top: 0;
}


.dammy_header .openbtn1{
	position: absolute;
	top: 30%;
	right: 5.88rem;/*87*/
	transform: translateY(-50%);
	cursor: pointer;
    width: 4.73rem;/*70*/
    height: 0.61rem;/*9*/
	pointer-events: auto;
	transition: filter 0.3s ease;
	filter: brightness(1);
}
.dammy_header .openbtn1:hover{
	filter: brightness(2.0);
}
  
/*×に変化*/  
.dammy_header .openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
	right: 0;
	margin: auto;
    height: 1px;
    border-radius: 2px;
	background-color: #000;
    width: 100%;
}
.dammy_header .openbtn1 span:nth-of-type(1) {
	top: 0; 
}
.dammy_header .openbtn1 span:nth-of-type(2) {
	bottom: 0;
}
.dammy_header .openbtn1.active span:nth-of-type(1) {
    top: 0;
    transform: translateY(0.47rem) rotate(-25deg);
    width: 2.03rem;/*30*/
}
.dammy_header .openbtn1.active span:nth-of-type(2){
    bottom: 0;
    transform: translateY(0) rotate(25deg);
    width: 2.03rem;/*30*/
}

/*===================================
	.teaser_footer
=====================================*/

.teaser_footer{
	padding: 2.50rem 0 3.38rem;/*37 50*/
	background: #fff000;
}

.teaser_footer .foot_logo{
	width: 8.11rem;/*120*/
	line-height: 0;
	margin: 0 auto 2.70rem;/*40*/
}

.teaser_footer .foot_logo img{
	width: 100%;
	height: auto;
}

.teaser_footer .copylight{
	font-size: 0.88rem;/*13*/
	font-weight: bold;
	letter-spacing: 0.3em;
	color: #000;
	text-align: center;
	margin-top: 3.38rem;/*50*/
}

.teaser_footer .foot_add{
	text-align: center;
}

.teaser_footer .foot_add p{
	font-size: 1.01rem;/*15*/
	line-height: 1.75;
	color: #333;
}

.teaser_footer .foot_add p span{
	display: inline-block;
	font-size: 1.15rem;/*17*/
	color: #000;
	padding-bottom: 0.34rem;/*5*/
}

.teaser_footer .foot_add p a{
	color: #333;
}

/*===================================
	.totop
=====================================*/

.totop{
	display: none;
	width: 3.24rem;/*48*/
	position: fixed;
	bottom: 1.35rem;/*20*/
	right: 1.15rem;/*17*/
	z-index: 9999;
}

.totop img{
	width: 100%;
	height: auto;
}


/*===================================
	.error-block01
=====================================*/

.error-block01{
	padding: 7.77rem 0 13.51rem;/*115 200*/
}

.error-block01 .block_inner{
	width: 67.57rem;/*1000*/
	margin: 0 auto;
}

.error-block01 .block_inner .en_txt{
	width: 46.2%;/*462*/
	margin: 0 auto;
}

.error-block01 .block_inner .en_txt img{
	width: 100%;
	height: auto;
}

.error-block01 .block_inner h2.err_midashi{
	padding-bottom: 3.38rem;/*50*/
	border-bottom: 2px solid #fff102;
	font-size: 1.55rem;/*23*/
	letter-spacing: 0.15em;
	color: #333333;
	text-align: center;
	margin-top: 2.03rem;/*30*/
}

.error-block01 .block_inner .err-txt_area{
	margin-top: 4.19rem;/*62*/
}

.error-block01 .block_inner .err-txt_area p.err_txt{
	font-size: 1.08rem;/*16*/
	line-height: 1.875;
	letter-spacing: 0.15em;
	color: #4d4d4d;
	text-align: center;
}

.error-block01 .block_inner .err-txt_area p.err_txt + p.err_txt{
	margin-top: 2.36rem;/*35*/
}

.error-block01 .block_inner .bak_btn{
	width: 32.3%;/*323*/
	margin: 4.59rem auto 0;/*68*/
}

.error-block01 .block_inner .bak_btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 5.41rem;/*80*/
	border-radius: 2.70rem;/*40*/
	background: url("images/news/bak_ico.svg")no-repeat #cd000e right 1.49rem center;/*22*/
	background-size: 2.97rem auto;/*44*/
	font-size: 1.28rem;/*19*/
	letter-spacing: 0.1em;
	color: #fff;
}
