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



/* Header
----------------------------------------------------------------------------------------------------------------------*/
.header{
	width: 100%;
}

.head-logo{
	position: relative;
	z-index: 65;
	width: 250px;
	height: auto;
	margin: 0 auto;
}
.head-logo img{
	width: 100%;
	height: auto;
}
.head-logo a:hover img{
	opacity: 0.9;
}

.sky-area{
	position: relative;
	width: 100%;
	height: 185px;
	background: #99ccff;
	background: -moz-linear-gradient(top,  #99ccff 0%, #ffffff 75%);
	background: -webkit-linear-gradient(top,  #99ccff 0%,#ffffff 75%);
	background: linear-gradient(to bottom,  #99ccff 0%,#ffffff 75%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ccff', endColorstr='#ffffff',GradientType=0 );
	margin-top: -250px;
	overflow: hidden;
}
.sky-area .pc-view{
	position: absolute;
	bottom: -35px;
	width: 9999%;
	height: 200px;
	background-image: url(../images/title-pc-illust.png);
	/*background-position: center 17.5px;*/
}

.marquee{
	padding-left: 100%;
	display:inline-block;
	white-space:nowrap;
	animation-name:marquee;
	animation-timing-function:linear;
	animation-duration: 50000s;/*スピード*/
	animation-iteration-count:infinite;
	background-repeat: repeat-x;
}

@keyframes marquee {
	from{
	transform: translate(0%);
	} 
	99%,to{
	transform: translate(-100%);
	}
}


.company-nav{
	width: 100%;
}
.company-nav ul li{
	float: left;
	text-align: center;
	width: 50%;
	height: 70px;
}
.company-nav ul li a{
	display: block;
	background: #95c056;
	color: #fff;
	line-height: 70px;
	font-size: 20px;
}
.company-nav ul li a:hover{

}

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

.company-nav{
	display: none;
}

}

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

.head-logo{
	width: 200px;
}

.sky-area{
	height: 175px;/*235*/
	margin-top: -200px;
}

.sky-area .pc-view{
	display: none;
}

.sky-area .sp-view{
	display: block;
	position: absolute;
	bottom: -5%;
	width: 100%;
	height: 125px;
	background-image: url(../images/title-sp-illust.png);
	background-size: 100% auto;
	background-position: center top;
}

}

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

.sky-area .sp-view{
	bottom: -10%;
}

}

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

.sky-area .sp-view{
	bottom: -15%;
}

}

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

.sky-area .sp-view{
	bottom: -20%;
}

}

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

.head-logo{
	width: 185px;
}

}

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

.sky-area .sp-view{
	bottom: -25%;
}

}

@media screen and (max-width:400px) {
	
.sky-area .sp-view{
	bottom: -30%;
}

}

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

.head-logo{
	width: 165px;
}

}

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

.head-logo{
	width: 125px;
}

.sky-area .sp-view{
	display: none;
}

}





/* Header G-nav
----------------------------------------------------------------------------------------------------------------------*/
.g-nav{
	width: 100%;
}

.g-nav ul{
	display: flex;
	border-left: 3px solid #95c056;
	border-bottom: 3px solid #95c056;
	filter:drop-shadow(3px 3px 3px rgba(0,0,0,0.2));
	position: relative;
	z-index:50;/*-----------z-index:50------------*/
}

.g-nav ul li{
	border-right: 3px solid #95c056;
	width: 12.5%;/*12.5%*/
}

.g-nav ul li a{
	display: block;
	padding: 15px 0;
	background: #ffffe0;
	color: #660;
	font-size: clamp(12px, 1vw, 16px);
	line-height: 1.25;
	font-weight: bold;
	text-align: center;
	font-family: 'Kosugi Maru', sans-serif;
}
.g-nav ul li a span i{
	font-size: clamp(20px, 2vw, 30px);
	color: #660;
}

.g-nav ul li a:hover{
	background: #FF6;
}

.fixed {/*navバーをある一定の場所で固定する*/
	position: fixed;
	top: 0;
	width: 100%;
	z-index:50;/*-----------z-index:50------------*/
}

@media screen and (max-width:1000px) {
	
.g-nav{
	display: none;
}
	
}





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

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

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

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

.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 ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 100px;
    left:4%;
    /*transform: translate(-50%,-50%);*/
	width: 92%;
	height: 500px;
}

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

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#sp-nav.panelactive ul{
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 li{
	text-align: center;
	font-weight: bold;
	line-height: 1.25;
	font-size: clamp(14px, 2vw, 18px);
	width: 49%;
	margin-bottom: 2%;
}
#sp-nav li a{
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	background: #fff;
	padding: 3px 2% 6px 2%;
	border-radius: 5px;
}

#sp-nav li .fas,#sp-nav li .far,#sp-nav li .fab{
	font-size: clamp(24px, 2vw, 36px);
	line-height: 1.25;
}

#sp-nav .green-nav a .fas,#sp-nav .green-nav a .far,#sp-nav .green-nav a .fab{/*グリーンテキスト*/
	color: #95c056;
}
#sp-nav .green-nav a{/*グリーンボーダー*/
	border: 2px solid #95c056;
}

#sp-nav .blue-nav a .fas,#sp-nav .blue-nav a .far,#sp-nav .blue-nav a .fab{/*ブルーテキスト*/
	color: #37addc;
}
#sp-nav .blue-nav a{/*ブルーボーダー*/
	border: 2px solid #37addc;
}

#sp-nav .left-nav{
	float: left;
}
#sp-nav .right-nav{
	float: right;
}


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

#sp-nav .sns-nav ul .line-nav{
	float: left;
	width: 50%;
}
#sp-nav .sns-nav ul .insta-nav{
	float: right;
	width: 50%;
}

#sp-nav .sns-nav .fab{
	font-size: clamp(48px, 2vw, 60px);
	line-height: 1;
}

#sp-nav .sns-nav ul li a{
	display: block;
	background: #ffffe0;
}
#sp-nav .sns-nav ul .line-nav a .fab{
	color: #00B900;
}
#sp-nav .sns-nav ul .insta-nav a .fab{
	color: #CF2E92;
}

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

#sp-nav .sns-nav ul{
    top: 675px;
}

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

#sp-nav .sns-nav ul{
    top: 625px;
}

}


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

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

}

/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #95c056;
  	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;
}





























