@charset "utf-8";
.fbebas {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
  font-style: normal;
}
.fnoto{
	font-family: "Noto Sans JP", sans-serif;
	font-weight:normal;
}
.fRoboto{
    font-family: 'Roboto', sans-serif;
	font-weight:bold;
}
.Roboto{
    font-family: 'Roboto', sans-serif;
	font-weight:normal;
}

.f200 {
	font-weight: 200;
}
.f300 {
	font-weight: 300;
}
.f400 {
	font-weight: 400;
}
.f700 {
	font-weight: 700;
}
.fyellow {
	color:#fff347;
}
.white{
	color: #fff;
}

/*==============================
	基本設定
==============================*/


body {
	color: #4c4137;
	font-size: 17px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	margin: 0;
	padding: 0;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	position: relative;
	min-width: 1280px;
	font-weight: 500;
	letter-spacing: 0.13em;
	line-height: 1.6;
	background-color: #fcfaf6;
}
@media only screen and (max-width:767px) {
	body {
		min-width: 0;
	}
}
body *, body *::before, body *::after {
	box-sizing: border-box;
}
img {
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}
@media only screen and (max-width:767px) {
img {
	image-rendering: auto;
}
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}
th {
	font-weight: normal;
	text-align: left;
}
/*font layout*/
.fBold {
	font-weight: bold;
}
/*rollover*/
.ro a:hover, a.ro:hover, a .ro:hover {
	filter: alpha(opacity=80);
	opacity: 0.8;
}
.ro a, a.ro, a .ro {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
/*rollover(brightnessによる変化)*/
.brt a:hover, a.brt:hover, a .brt:hover {
	-webkit-filter: brightness(1.1);
	filter: brightness(1.1);
}
.brt a, a.brt, a .brt {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
/*ro無効化*/
.ro .no_ro a:hover, .ro a.no_ro:hover {
	filter: alpha(opacity=100);
	opacity: 1;
}
/*========================================
	レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly, .brSp, .imgSp {
	display: none;
}
@media only screen and (max-width:767px) {
	.spNone, .brPc, .imgPc {
		display: none;
	}
	.spOnly {
		display: block;
	}
	.brSp, .imgSp {
		display: inline;
	}
	.imgR {
		width: 100%;
		height: auto;
	}
}




/*-----------------------------------------------
	imgCover
-----------------------------------------------*/
/* imgCover */
.imgCover, .imgCover2 {
	position: relative;
}
.imgCover img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.imgCover2 img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	font-family: 'object-fit:cover;';
}

/* header */
.iconBox img {
	margin: 1.5% 0 0 2%;
}
.header {
	width: 100%;
	position: absolute;
	z-index: 30;
	height: auto;
}
.header .wrapper {
	max-width: 1980px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	padding-left: 0;
}
.header .wrapper_01 {
	max-width: 1980px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	padding-left: 6%;
	opacity: 0.6;
}
.header .txtTop {
	position: absolute;
	top: 10px;
    right: 455px;
	font-size: 12px;
	letter-spacing: 0px;
}
.header .back {
	position: absolute;
	top: 30px;
	right: 35px;
}
.header .links {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
}
.header a {
	display: block;
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 767px) {
	.header .iconBox {
		        width: 30%;
				margin: 3% 0px 0 3%;
	}der .wrapper {
}
	.header .txtTop {
		top: 12px;
		left: 40%;
		line-height: 1.8;
		font-size: 2.5vw;
	}
	.header .back {
		display: none;
	}
	.header .txtPc {
		display: none;
	}
	.header .links {
		position: fixed;
		bottom: 0;
		left: 0;
	}
}
@media only screen and (max-width: 600px) {
	.header .iconBox {
		 width: 40%;
	}
}

/*=================================================*/
/*ページの指定の高さを超えたら上からメニューボタンが出現 
/*=================================================*/

#menubtn{
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    width: 100%;
    height: 5vh;
    top: 0px;
	background: #137664;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(-100px);
}


/*　下に下がる動き　*/

#menubtn.DownMove{
	animation: DownAnime2 0.5s forwards;
}
@keyframes DownAnime2{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/*　上に上がる動き　*/

#menubtn.UpMove{
	animation: UpAnime2 0.5s forwards;
}
@keyframes UpAnime2{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 1;
	transform: translateY(-100px);
  }
}


#menubtn p{
    color: #FFF;
    letter-spacing: 0.1em;
    font-size: 14px;
}


	#menubtn span {
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		display: inline-block;
		vertical-align: middle;
		transform: rotate(45deg);
		width: 10px;
		height: 10px;
		position: relative;
		top: -4px;
		left: 5px;
		transition: all .3s;
	}
	#menubtn.active span {
		transform: rotate(225deg);
		top: 1px;
	}
	
	
	
/*===========================================================*/
/*  クリックしたらナビが上から下に出現*/
/*===========================================================*/

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

#gnavi{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top:-100%;
    left: 0%;
    width:100%;
    height: auto;/*ナビの高さ*/
    background: #1376648a;/*背景色と透過*/
    /*動き*/
    transition: all 0.4s;
}

/*アクティブクラスがついた上からの位置*/
#gnavi.panelactive{
    top: 4vh;
}

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

/*ナビゲーション*/
#gnavi ul {
    z-index: 999;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 35px;
}

#gnavi ul::after {
    display: block;
    content:"";
    width: 160px;
    order: 10;
}

/*リストのレイアウト設定*/

#gnavi li{
	list-style: none;
    text-align: center;
	width: 160px;
}

#gnavi li a{
	color: #fff;
	text-decoration: none;
	padding-top: 30px;
	display: block;
	letter-spacing: 0.2em;
	font-size: 14px;
}

#gnavi li a:hover{
    color:#ccc;
}

#gnavi .gnavi_s{
    color: #fff;
    text-decoration: none;
    padding-top: 30px;
    display: block;
    letter-spacing: 0.1em;
    line-height: 13px;
    font-size: 11px;
}

.navicon{
	width: 30px;
    margin-bottom: 4px;
   
}

.navicon_s{
    width: 26px;
    margin-bottom: 2px;
}

/* バーガーメニュー */
#spOpen,
#spMenu{
  display: none;
}
@media only screen and (max-width: 767px) {
	#page-top {
		text-shadow: 0.2vw 0.2vw 0.2vw #fff, -0.2vw -0.2vw 0.2vw #fff, -0.2vw 0.2vw 0.2vw #fff, 0.2vw -0.2vw 0.2vw #fff, 0.2vw 0px 0.2vw #fff, -0.2vw 0px 0.2vw #fff, 0px 0.2vw 0.2vw #fff, 0px -0.2vw 0.2vw #fff;	
	}
	
    #spOpen,
    #spMenu{
		display: block;
		width: 15%;
		height: auto;
		top: 0;
		right: 0;
		position: absolute;
    }
    #spMenu{
      opacity: 0;
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
      width: 100%;
      height: 100%;
      color: #fff;
      background-color: rgba(131,191,89,.95);
      transition: all 0.2s;
    }
    body.naviOpen #spMenu{
      opacity: 1;
      z-index: 50000;
	}
	#spClose {
		right: 16px;
		position: absolute;
		top: 20px;
	}
	#spMenu ul {
		padding-top: 60px;
	}
	#spMenu li {
		border-top: solid 1px #c7e0b5;
		padding: 14px;
	}
	#spMenu a {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.5;
    text-decoration: none;
	margin-left:10px;
}
}



/* footer */
.footer {
	background: #f9fafb;
	height: 150px;
	width: 100%;
	position: relative;
}
.footer .txt {
	text-align: center;
	font-size: 11px;
	letter-spacing: 0.8px;
}
.footer .inner {
	padding-top: 70px;
	max-width: 1980px;
	width: 100%;
	margin: 0 auto;
}
.footer .backTop {
	position: absolute;
	top: -45px;
	right: 20px;
	z-index: 200;
}
@media only screen and (max-width: 767px) {
	.footer {
		padding: 40px 0;
	}
	.footer .inner {
		padding: 0;
	}
	.footer .backTop {
		display: none;
	}
}
#footer .inner {
	max-width: 1280px;
	margin: 0 auto;
	background: #fff;
}
#footer .links {
	display: -webkit-box;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	margin: 0 auto;
}
#footer .link {
	margin-left: 5px;
	padding-right: 5px;
	border-right: 1px solid #3a80a9;
}
#footer .link:last-child {
	border: none;
}
#footer .link a {
	font-size: 13px;
	letter-spacing: 0.8px;
	color: #3a80a9;
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	.footer {
		height: auto;
	}
	#footer .links {
		flex-wrap: wrap;
		margin-bottom: 30px;
	}
	#footer .link {
		text-align: center;
		font-size: 13px;
		margin: 8px 5px;
	}
}

/* fNavi */
#fNavi {
	display: none;
}
@media only screen and (max-width: 767px) {
	#fNavi {
		position: fixed !important;
		left: 0;
		bottom: -100px;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		z-index: 200;
		-webkit-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}
	#fNavi.active {
		bottom: 0;
	}
	.fnavi a {
		width: 50%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: 8vh;
		font-size: 17px;
		letter-spacing: 0.8px;
		text-decoration: none;
	}
	.fnavi .icon {
		margin-right: 5px;
		margin-bottom: 6px;
	}
	.fnavi .fnavi01 {
		background: #e58c6c;
		color: #fcfaf6;
	    border-right: #fcfaf6 2px dotted;
	}
	.fnavi .fnavi02 {
		background: #137664;
		color: #fcfaf6;
	}
	#fNavi .active {
		bottom: 0;
	}
}

/* secPhone */
.secPhone {
	text-align: center;
    padding-top: 40px;
    padding-bottom: 25px;
		color: #4c4137;
}
.secPhone .txtBig {
	margin-top: 20px;
	font-size: 20px;
	letter-spacing: 1.2px;
}
.secPhone .btnPhone {
	display: block;
	margin-top: -10px;
	font-size: 85px;
    letter-spacing: 0.03em;
	letter-spacing: 3px;
	text-decoration: none;
	color: #4c4137;
}
.secPhone .txtSm {
	margin-top: -15px;
	font-size: 16px;
	letter-spacing: 1.2px;
}
.secPhone .btnPhone0 {
	display: block;
	margin-top: -30px;
	font-size: 85px;
    letter-spacing: 0.03em;
	letter-spacing: 3px;
	text-decoration: none;
	color: #fcfaf6;
	font-weight: 700;
}
.secPhone .txtSm0 {
	margin-top: -15px;
	font-size: 16px;
	letter-spacing: 1.2px;
}

@media only screen and (max-width: 767px) {
	.secPhone {
		padding: 6% 0 2%;
	}
	.secPhone .imgBox {
		width: 11.5%;
		margin: 0 auto;
	}
	.secPhone .txtBig {
		font-size: 4.5vw;
		margin-top: 2%;
	}
	.secPhone .btnPhone {
		font-size: 15vw;
        letter-spacing: 0.03em;
		margin-top: -2%;
	}
	.secPhone .btnPhone2 {
		font-size: 11vw;
		letter-spacing: 0.03em;
		margin-top: 3%;
	}
	.secPhone .txtSm {
		font-size: 3.4vw;
		line-height: 1.4;
		margin-top: -4%;
		letter-spacing: 0.08em;
	}
	.secPhone .btnPhone0 {
	    font-size: 13vw;
        letter-spacing: 0.05em;
        margin-top: -4%;
	}
		.secPhone .txtSm0 {
		font-size: 3.4vw;
		line-height: 1.4;
		margin-top: -2%;
		letter-spacing: 0.08em;
	}
}






/*==================================================================*/
/*  ページの指定の高さを超えたら下からページトップへのボタンが出現  */
/*==================================================================*/

#page-top{
  width: 60px;
  height: 80px;
  position: fixed;
  right: 17px;
  bottom: 10px;
  opacity: 0;
  font-family: "Noto Sans JP" ,serif;
  text-shadow: 1px 1px 1px #fff, -1px -1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff, 1px 0px 1px #fff, -1px 0px 1px #fff, 0px 1px 1px #fff, 0px -1px 1px #fff;
}

#page-top a{
  position: relative;
  display: block;
  width: 60px;
  height: 50px;
  text-decoration: none;
}
#page-top a::before{
    content: '▲';
    font-size: 20px;
    color: #137664;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
#page-top a::after{
  content: 'PAGE TOP';
  font-size: 12px;
  position: absolute;
  top: 37px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #137664;
}



/*横幅が767px以下になった際の指定*/
@media only screen and (max-width: 767px) {
#page-top {
    right: 5px;
    bottom: 9.5vh;	
}
}


/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(200px);
  }
}