@charset "utf-8";
/* CSS Document */
a{
text-decoration: none;	
}
h3{
	font-size: 1em;
}
h2{
padding: 5px 50px;
font-size: 1.1em;	
}
h2:before, h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
h2:before {
  left:0;
}
h2:after {
  right: 0;
}

.logo img{
width: 50%;
margin: 0 auto;}
.logo{
margin: 0 auto;	
width: 95%;
}
.logo p{
font-size: 2.5vw;
padding-top: 7px;	
}	
.top img{
z-index: 3;
text-align: center;	
width: 100%;	
}	
/*========= ナビゲーションのためのCSS ===============*/
/*topnav*/
#t-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

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

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

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

#t-nav.panelactive #t-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

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

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

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#t-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
logo{
		width: 30%;
		margin: auto;
	}	
/*リストのレイアウト設定*/
#t-nav li{
	text-align: center; 
	list-style: none;
}

#t-nav li a{
	color: #000;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
	background-color: #ffd700;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background-color: #000;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:19px;
}

.openbtn span:nth-of-type(3) {
	top:25px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-2px;
	color: #000;
	font-size: 0.6rem;
	text-transform: uppercase;
}	
	
.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
	
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
	
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:4px;
}		
	
	
/*-----------下層ナビ-----------*/
	
/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
	background-color: #ffd700;
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
	background-color: #ffd700;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	background-color: #ffd700;
    padding: 0;
}

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

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	color: #000;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	background-color: #ffd700;
}
section{
	width: 100%;	
	margin: auto;	
	padding-bottom: 30px;}
.item{
	text-align: center;
	width: 90%;
	margin: auto
	}
.item p{
	text-align: left;
}
.item img{
	width: 100%;
	margin: 0;
	padding: 0;
	}
.item video{
margin: auto;
text-align: center;
 width:95%;	
	}
.rakku video{
margin: auto;
text-align: center;
width:100%;	
	}
.rakku{
margin: auto;
width: 95%;
text-align: center;
	
}
.rakku img{
width: 60%;	
margin: auto;	
}
.button{
	display: block;
	width: 70%;
    color:#fff;
	background-color: orangered;
	padding: 1% 20px;
	margin:10% auto;
	border-radius: 50px;
    outline: none;
	text-align: center;
	font-size: 1em;
	font-weight: bold;
	}
.button_pay{
	display: block;
	width: 50%;
    color:#fff;
	background-color: orangered;
	padding: 2% 0;
	margin:10% auto;
	border-radius: 50px;
    outline: none;
	text-align: center;
	font-size: 1em;
	font-weight: bold;
	}
.kari{
display: block;	
width: 95%;
text-align: center;
margin: auto;
	}
.kari2{
display: block;	
width: 95%;
text-align: center;
margin: auto;
	}
.topsetumei{
	width: 90%;
	margin: auto;
	font-weight: bold;
	line-height: 1.8;
}
.inq{
padding: 0 15% ;	
}
.img-frame{
margin-top: 20px;
width: 95%;
height: 40vh;
}
.msg1{
   font-size: 1.2em;
   color: #fff;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50% , -50%);
}
.msg2{
   font-size: 1.2em;
   color: #fff;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50% , -50%);
}
.msg3{
   font-size: 1.2em;
   color: #fff;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50% , -50%);
}
table td{
padding: 10px 30px 10px 30px;
}
table{
  width: 90%;
  border-collapse: collapse;
  margin: 50px 0;
	
}

table tr{
}

table tr *:nth-child(2){
  background: #fff;
}

table th{
  color:darkslategray;
  border:solid 1px 000;
  text-align: left;
  padding: 10px;
}
table td{
  color:#333;
  border:solid 1px 000;
  text-align: left;
  padding: 10px;
}
.inq{
	width:  60%;
	margin: auto
}