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



.head-copy{
	padding: 5px 2%;
	font-size: clamp(11px, 2vw, 14px);
	background: url("../images/old_map.png") repeat 0 0;
    filter:drop-shadow(1px 1px 2px rgba(0,0,0,0.9));
}

.head-wrap{
	width: 100%;
	height: 80px;
	padding: 5px 2%;
    background: #fbfaf5;
    position: relative;
	z-index: 50;/*-----z-index: 100;------*/
}

header .head-logo img{
	width: auto;
	height: 60px;
	position:absolute;
	top: 10px;
	left: 25px;
}





/* お電話はこちら
-----------------------------------------------------------*/
#head-entry{
	width: 200px;
	position: absolute;
	top: 15px;
	right: 25px;
	text-align: center;
}

#head-entry .text-14{
	line-height: 1.25 !important;
}

#head-entry .text-14 span{
	font-size: 22px;
	font-family: 'Urbanist', sans-serif;
}

@media screen and (max-width:1350px) {
	
header{
	height:70px;
}
    
.head-wrap{
	height: 70px;
}
	
header .head-logo img{
	height: 50px;
}

#head-entry{
	display: none;
}
	
}

@media screen and (max-width:700px) {
	
header .head-logo img{
	left: 10px;
}

}

@media screen and (max-width:375px) {
	
header .head-logo img{
	top: 12px;
	height: 45px;
}

}
@media screen and (max-width:350px) {
	
header .head-logo img{
	top: 15px;
	height: 40px;
}

}





/*Pc-menu
-----------------------------------------------------------------------------------------------------------*/
#g-nav{
	margin: 0 auto;
	width: 750px;
	height: 70px;
}

#g-nav li{
	position: relative;
	float: left;
	width: 125px;
	height: 70px;
	text-align: center;
	line-height:1 !important;
}

#g-nav li a{
	display: block;
	width: 100%;
	height: 100%;
	font-size: 14px;
	color: #333;
	padding-top: 5px;
	font-weight: bold;
}

#g-nav li a span {
	font-size: 18px;
	color: #f66;
	font-weight: bold;
	font-family: 'Manrope', sans-serif;
    letter-spacing: 0.05em;
}

#g-nav li a:hover{
	background: #ffe4e1;
}


/* ドロップダウンメニュー
-----------------------------------------------------------*/
#g-nav li ul{
	position: absolute;
	top: 100%;
	left: 0;
}

#g-nav li:last-child ul{
	left: -100%;
	width: 100%;
}

#g-nav li ul li{
  overflow: hidden;
  width: 100%;
  height: 0;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
	background: #ffe4e1;
}

#g-nav li ul li a{
	padding: 17.5px 0 22.5px 0;
	line-height: 1;
}

#g-nav li:hover ul li{
	overflow: visible;
	height: 50px;
	border-bottom: 1px solid #fff;
}

#g-nav li:hover ul li:first-child{
	border-top: 0;
}
#g-nav li:hover ul li:last-child{
	border-bottom: 0;
}

@media screen and (max-width:1350px) {

#g-nav{
	display: none;
}

}





/*Sp-menu
-----------------------------------------------------------------------------------------------------------*/

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

/*アクティブになったエリア*/
#sp-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 25px;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index: 75;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fbfaf5;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .9s;/*0.9秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#sp-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#sp-nav.panelactive #sp-nav-list{
     display: block; /*クラスが付与されたら出現*/
}


/*ナビゲーション*/
#sp-nav .sp-nav-wrap {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 100px;
    left: 4%;
	width: 92%;
    height: auto;
}

/*背景が出現後にナビゲーションを表示*/
#sp-nav.panelactive {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#sp-nav.panelactive .sp-nav-wrap{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


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

.sp-nav-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 150px;
}

.nav-single {
	display: flex;
	justify-content: center; /*text-align*/
    padding: 15px;
    line-height: 1;
    /*background: #40aca5;*/
    color: #fff;
    margin-bottom: 2%;
	font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    border-radius: 5px;
}
.nav-single:hover {
    opacity: 0.75;
}

.nav100{
    width: 100%;
}
.nav49{
    width: 49%;
}

.sp-nav-heading{
    width: 100%;
	font-size: clamp(20px, 2vw, 30px);
    font-family: 'Noto Serif JP', serif;
    border-bottom: 1px solid #ccc;
    margin-bottom: 2%;
}
.fa-angle-double-down{
    color: #40aca5;
}




/*========= naviボタンのためのCSS ===============*/
.openbtn1{
	position:fixed;
	top: 12px;
	right: 12px;
	z-index: 9000;/*ボタンを最前面に*/
	cursor: pointer;
    width: 80px;
    height: 80px;
	background: #fff;
	border: 3px solid #40aca5;
	border-radius: 10px;
	display: none;
}

@media screen and (max-width:1350px) {
	
.openbtn1{
	display: block;
}

}

/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #40aca5;
  	width: 65%;
  }

.openbtn1 span:nth-of-type(1) {
	top:25.5px;	
}

.openbtn1 span:nth-of-type(2) {
	top:35.5px;
}

.openbtn1 span:nth-of-type(3) {
	top:45.5px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 30px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 65%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 42px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 65%;
}



/*========= チケットボタンのためのCSS ===============*/
/*.ticket-btn{
	position:fixed;
	top: 10px;
	left: 10px;
	z-index: 9000;
    width: 80px;
    height: 80px;
	background: #fffacd;
	border: 3px dotted #edaf23;
	font-weight: bold;
	border-radius: 10px;
	padding: 5px;
	text-align: center;
	display: none;
}

@media screen and (max-width:1000px) {
	
.ticket-btn{
	display: block;
}

.ticket-btn a{
	display: block;
	color: #663300;
	font-size: 15px;
	line-height: 1.15;
}
.ticket-btn a .fas{
	font-size: 24px;
	color: #663300;
	line-height: 1.15;
}*/

/*========= phoneボタンのためのCSS ===============*/
.phone-btn{
	position:fixed;
	top: 10px;
	left: 10px;
	z-index: 9000;/*ボタンを最前面に*/
    width: 80px;
    height: 80px;
	background: #ffffe0;
	border: 3px dotted #edaf23;
	font-weight: bold;
	border-radius: 10px;
	padding: 5px;
	text-align: center;
	display: none;
}

@media screen and (max-width:1000px) {
	
.phone-btn{
	display: block;
}

.phone-btn a{
	display: block;
	color: #663300;
	font-size: 15px;
	line-height: 1.15;
}
.phone-btn a .fas{
	font-size: 24px;
	color: #663300;
	line-height: 1.15;
}
    
}
    
    
    
