@charset "utf-8";

/* base ------------------------*/
.bg_white { background: #fff; }

.zenM{
font-family: "zen-maru-gothic", sans-serif;
font-weight: 400;
font-style: normal; }

.zenMM{font-family: "zen-maru-gothic", sans-serif;
font-weight: 500;
font-style: normal;}

.zenMB{
font-family: "zen-maru-gothic", sans-serif;
font-weight: 700;
font-style: normal; }

.notoS{
font-family: "noto-sans", sans-serif;
font-weight: 700;
font-style: normal; }

.poppins {
font-family: "poppins", sans-serif;
font-weight: 400;
font-style: normal; }

#wrapper { position:relative; }
.inner { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.inner.large { max-width: 2400px; padding: 0; }
.narrow { width: 100%; max-width: 1100px; margin: 0 auto; }
.sec { padding: 100px 5%; }
.secTop { padding: 60px 0 100px; }

.btn { display: block; text-align: center; vertical-align: middle; text-decoration: none; min-width: 210px; margin: auto; padding: .2rem 4rem; border: 1px solid #222222; color: #222222; cursor: pointer; position: relative; overflow: hidden; z-index: 1; border-radius: 100px; font-family: "zen-maru-gothic", sans-serif; letter-spacing: 3px; }
.btn::before { content: ""; position: absolute; left: 0;top: 0; width: 100%;height: 100%; background-color: #222222; transform: translateX(-100%); transition: all .5s; z-index: -1;}
.btn:hover::before {transform: translateX(0);}
.btn:hover {color: #fff;}


/*header---------------------------------------------------------*/
#header { position: fixed; z-index: 101; width: 100%; height: 80px; padding: 15px 0; /*background: linear-gradient(to bottom, #fff, #ffffff00);*/ }
#header .sitename { position: fixed; top: 30px; left: 5%; width: 50%; }
#header .sitename .logo { width: 30%; max-width: 170px; }
#header .sitename .siteDes { margin: 0; padding-left: 1rem; font-size: .85rem; line-height:1.4; }

#header .hReserve { position: fixed; top: 30px; right: 18%; }
#header .hReserve .btn { background: #fff; }

#gnav { padding-top: 70px; }
#gnav li.line_none a { background: none; }

/*gnav*/
#gnav { position: fixed; z-index: -1; opacity: 0; top: 0; left: 0; right: 0; width: 100%; height: 100VH; margin: 0; padding: 8vh 4% 5vh; background: #222; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; transition: all 0.3s; }
#gnav ul { display: none; font-size: 14px; width: 100%; padding: 0; }
#gnav li { -webkit-writing-mode: horizontal-tb; -ms-writing-mode: lr-tb; writing-mode: horizontal-tb; }
#gnav li a { position:relative; width: 100%; display: block; padding: 2vh 0; margin-left: 0; color: #fff; font-size: 1.5rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,.1); }
#gnav li a:before { content: none; }
#gnav ul li a::after { position: absolute; bottom: -1px; left: 0; content: ''; width: 100%; height: 1px; background: rgba(255,255,255,0.4); opacity: 0; visibility: hidden; transition: .3s; }
#gnav ul li a:hover::after { opacity: 1; visibility: visible;}

/* Toggle Button */
#nav-toggle { display:block; position: fixed; right: 5%; top: 40px; width: 120px; height: 24px; cursor: pointer; z-index: 10000; }
#nav-toggle div { position: relative; }
#nav-toggle span { display: block; position: absolute; height: 1px; background: #222222; left: 60px; -webkit-transition: .35s ease-in-out; -moz-transition: .35s ease-in-out; transition: .35s ease-in-out; }
#nav-toggle span:nth-child(2) { top: 6px; width: 60px; }
#nav-toggle span:nth-child(3) { top: 16px; width: 40px; }
#nav-toggle p { padding-left: 0.5rem; -webkit-transform: rotate( 90deg ); transform: rotate( 90deg ); -webkit-transition: .35s ease-in-out; -moz-transition: .35s ease-in-out; transition: .35s ease-in-out; }

/*#nav-toggle 切り替えアニメーション */
/*#nav-toggle.active span { background: #fff; }*/
#nav-toggle.active span:nth-child(2) { top: 11px; -webkit-transform: rotate(135deg); -moz-transform: rotate(135deg); transform: rotate(135deg); }
#nav-toggle.active span:nth-child(3) {top: 11px; -webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); transform: rotate(-135deg);}
#nav-toggle.active span:nth-child(2),
#nav-toggle.active span:nth-child(3) { width: 35px; background: #fff!important; }
#nav-toggle.active p { color: #fff; }
	
/*#gnav スライドアニメーション */
#gnav.open  { opacity: 1; z-index:9999; }
#gnav.open  ul { display: block; }




	
a.arrow { position: relative; }
a.arrow::before,
a.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 20px;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #2c8fce;
  transform-origin: calc(100% - 0.5px) 50%;
}

a.arrow::before {
  transform: rotate(45deg);
}

a.arrow::after {
  transform: rotate(-45deg);
}


/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    margin:0 auto;
}

.accordion-area > li{
    margin: 10px 0;
}

/*.accordion-area section {
  border-bottom: 1px solid #88d3ff;
}*/

/*アコーディオンタイトル*/
.accordion-area .title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 1.2em 3em 1.7em 0;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.accordion-area .title::before,
.accordion-area .title::after{
    position: absolute;
    content:'';
    width: 18px;
    height: 3px;
	border-radius: 5px;
    background-color: #519ee2;
	-webkit-transition: all .3s;
	transition: all .3s;
    
}
.accordion-area .title::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
    
}
.accordion-area .title::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.accordion-area .title.close::before{
  display: none;
}

.accordion-area .title.close::after{
  transform: rotate(0deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    padding: 1em 0 2em;
}
.box p { margin: 0; }


/* contents ------------------------*/
#contents { position: relative; }

.txt_wave { display: inline-block; padding: 0 .5rem 1rem; letter-spacing: 3px; background: url("../img/line_wave.png") repeat-x 0 100%; }
.square { margin-right: .5rem; padding: 0 5px; border: 1px solid #222;  }


/*title*/
.secTtl { margin-bottom: 4rem; text-align: center; font-size: 1.8rem; letter-spacing: 9px; line-height: 2.3; }
.secTtl span { display: block; font-size: .9rem; font-family: poppins; }

/*共通*/
#flow ul { margin-bottom: 5rem; }
#flow li { position: relative; width: 16%; margin: 0 2%; text-align: center; }
#flow li:not(:last-child):after { position: absolute; top: 125px; right: -30px; margin-top: -6px; content: ""; width: 0; height: 0; border-style: solid; border-top: 15px solid transparent; border-bottom: 15px solid transparent; border-left: 12px solid #222222; border-right: 0; }
#flow li .num { width: 25px; font-size: 1.8rem; line-height: 1.4; border-bottom: 1px solid #222; }
#flow li img { width: 50%; margin: 0 auto; }
#flow li .ttl { width: 90%; margin: 2rem auto 0; border-radius: 30px; border: 1px solid #222; }
#flow li .txt { font-size: .95rem; }

.priceArea { padding: 5rem 4%; border-top: 1px solid #222; border-bottom: 1px solid #222;  }
.priceArea .ttl { font-size: 2rem; }
.priceArea .big { font-size: 2rem; }
.priceArea .price { margin: 0 0 3rem; }
.priceArea .txtArea { width: 70%; }
.priceArea .txt.small { margin-bottom: 0; }
.priceArea .reserve { width: 30%; margin-top: auto; }
.btn_reserve { padding: 1rem 0!important; font-size: 1.2rem; }
#price .notice { font-size: .95rem; }
.ill_price { position: absolute; top: -43px; right: 0; width: 30%; max-width: 280px; }

#info,#access { width: 48%; padding: 3rem 5%; background: #fff; }
#info .secTtl,
#access .secTtl { margin-bottom: 3rem; }


/*footer---------------------------------------------------------*/
#pagetop { position: absolute; bottom: 122px; right: 20px; z-index: 50; width: 124px; margin: 0; }

#footer { padding: 70px 0 50px; background: #fff; }
#footer .sitename .logo { width: 50%; max-width: 170px; margin: 0 0 9rem; }
#footer .sitename .siteDes { margin: 0; padding-left: 1rem; font-size: .85rem; line-height:1.4; }
.fcon1 { width: 80%; }
.fcon2 { width: 20%; margin-top: auto; }
.fnav { margin-top: auto; }
.fnav li { font-size: .85rem; margin-right: 2rem; }
#fukurikoseiclub img { width: 100%; max-width: 210px; border: 1px solid #ccc; }

#copyright { margin: 0; font-size: .8em;  }





/* ================================================================
  レスポンシブ
=================================================================== */
/* 600以上(PC・タブレット) */
@media screen and (min-width: 600px) {
	


}

/* 1024以上(PC) */
@media screen and (min-width: 1024px) {


}


/* ================================================================
  タブレット
=================================================================== */
@media screen and (max-width: 1024px) {
	body { font-size:15px; }
	.inner { max-width: 100%; }
	.sec { padding: 60px 5%; }
	.secTop { padding: 20px 0 60px; }
	.secTtl { margin-bottom: 2rem; font-size: 1.5rem; letter-spacing: 4px; }

	.btn { min-width: 150px; padding: .2rem 2rem; }
		
/* header ------------------------ */
	#header { height: 75px; }

	#nav-toggle { top: 36px; right: 3%; }
	#header .hReserve { right: 160px; }
	
	
	/* contents ------------------------*/

	#flow ul { margin-bottom: 2rem; }
	#flow li:nth-child(3):after { display: none; }
	.priceArea { padding: 3rem 4%; }

	
/* footer ------------------------*/
	#footer .sitename .logo { margin-bottom: 3rem; }
	.fcon1 { width: 100%; }
	.fcon2 { width: 100%; margin-top: 1rem; }

}


	
/* ================================================================
  スマホ
=================================================================== */
@media screen and (max-width: 599px){
	.sec { padding: 50px 5%; }

/* header------------------------*/
	#header .sitename { top: 10px; width: 70%; }
	#header .sitename .logo { width: 38%; }
	#header .sitename .siteDes { margin-top: .5rem; padding-left: 0; }
	#header .hReserve { display: none; }
	#nav-toggle { right: 20px; top: 15px; }
	#gnav { padding-top: 50px; }
	#gnav li a { font-size: 1.1rem; }
	
	#flow li { width: 40%; margin: 0 5%; }
	#flow li .num { margin-bottom: 0; }
	#flow li img { width: 40%; margin: 0 5%; }
	#flow li .ttl { margin-top: 1.5rem; }
	#flow li:after { display: none; }
	
	.priceArea .txtArea { width: 100%; margin-bottom: 2rem; }
	.priceArea .reserve { width: 100%; }
	
	.priceArea .ttl,
	.priceArea .big { font-size: 1.2rem; }
	
		
	#info, #access { width: 100%; margin-bottom: 2rem; }

	#footer .sitename .logo { max-width: 100px; }
	.fnav { display: none; }
	
	
}


@media screen and (max-width: 399px) {
/*    .serviceBtn.btnL li,
	.serviceBtn.btnR li { width: 100%; }*/
}