/* CSS Document */

body {
	background-color: #efefef;
	margin: 0;
	padding:0;
	color: #333;
	font-family:sans-serif; "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
}

img {
	width:auto;
	max-width:100%;
	height: auto;
	vertical-align:top;
}

h1,h2,h3,h4 {
margin:0 0 0 0;
padding:0 0 0 0;
vertical-align:bottom;
}

a {color:#0066ff;}
a:hover {color:#3399ff;}
a:visited {color:#0066ff;}
a:hover img {transition:all 0.3s; opacity:0.5;}

.mb {display:none;}

.clearfix {
	*zoom: 1;
}
.clearfix:before,
.clearfix:after {
	display: table;
	line-height: 0;
	content: "";
}
.clearfix:after {
	clear: both;
}

section {margin-bottom:70px;}

header {
	width:100%;
	height:155px;
	position:sticky;
	top:0;
	z-index:99;
	background:#fff;
}

#header {
	max-width:1280px;
	margin:0 auto;
	padding:10px 0 0 0;
	position:sticky;
	top:0;
}

#logo {
	float:left;
	width:13%;
	margin:15px 2% 0 0;
	padding:0;
	line-height:0;
}

#hdr-nav {
	width:auto;
	margin:0;
	padding:0;
	display: -webkit-flex;
    display: flex;
	justify-content: right;
	align-items: center;
	text-align:right;
}

#hdr-nav li {
	padding:0;
	list-style:none;
	font-size:0.8rem;
}


#hdr-nav li a{
	display:block;
	padding:8px 0 8px 20px;
	color: #666;
	text-decoration:none;
}

#hdr-nav li a:visited {
	color: #666;
}
#hdr-nav li a:active {
	color: #666;
}
#hdr-nav li a:hover {
	color: #aaa;
}

.arrow {
	position: relative;
	display: inline-block;
	margin:0 5% 0 0;
	padding: 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.gr-ico::before{
	left: 3px;
	width: 4px;
	height: 4px;
	border-top: 2px solid #00704b;
	border-right: 2px solid #00704b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}





/*==================================================
共通　横並びのための設定
===================================*/

#gnavi{
	display: flex;
	margin:10px auto 0;
	padding:0;
    list-style: none;
	width:100;
}


#gnavi li{
	margin:0;
	padding:0;
	/*width:calc(100%/8);*/
	padding:0 0.5%;
	float:left;
	text-align:center;
	border-right:1px solid #333;
	box-sizing: border-box;
}

#gnavi li a{
    display: block;
	}

.brn{
	border-right:none !important;
}

/*==================================================
　5-3-1 中心から外に線が伸びる（下部）
===================================*/

#gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

#gnavi li.current a,
#gnavi li a:hover{
	color:#0b704c;
}

#gnavi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#e56c22;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
#gnavi li.current a::after,
#gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

#top-navi img {
margin:0px 16px;
}

#wrapper {
	margin:20px auto;
	padding:0px;
	max-width:1280px;
}


/*footer*/
footer {
	background: #00704b;
	margin:0;
}

.footer {
	width:90%;
	margin:0 auto;
	padding:2rem 5%;
	color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #ffff00;
}

footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #fff;
}

address {
	font-style: normal;
	font-size:0.8rem;
	line-height:1.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.footer__navi-heading {
  font-weight: 600;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer__navi {
  padding: 0;
  list-style: none;
}

.footer__navi li {
  margin-bottom: 0.75rem;
	font-size:0.8rem;
}

.footer__address {
  margin-bottom: 2rem;
}

.footer__address a {
  text-decoration: underline;
}

.flex {
  display: flex;
}

.grid {
 grid-template-columns: repeat(3, minmax(0, 1fr));
}

  .md-justify-between {
    justify-content: space-between;
  }

  .footer__address a {
    text-decoration: none;
    pointer-events: none;
  }

.footer__social a {
  display: inline-block;
  width: 30px;
}

.footer__social a:not(:last-child) {
  margin-right: 16px;
}

.copyright {
	text-align:center;
	font-size:0.8rem;
	padding:30px 0 0 0;
}

@media screen and ( min-width:1024px )
{
/*フッターを折り返す*/
  .lg-flex {
    display: flex;
	}
}


/*========= ページ内リンク ===============*/
.page_navi {
	width:auto;
	margin:30px 0;
	padding:0;
	display: -webkit-flex;
    display: flex;
	justify-content: center;
	align-items: center;
	text-align:left;
}

.page_navi li {
	width:calc(96%/4);
	margin:0 1% 0 0;
	padding:0;
	list-style:none;
	font-size:1rem;
}


.page_navi li a{
	display:block;
	padding:8px 0 8px 20px;
	color: #0066ff;
	text-decoration:none;
}

.page_navi li a:visited {
	color: #0066ff;
}
.page_navi li a:active {
	color: #0066ff;
}
.page_navi li a:hover {
	color: #3399ff;
}

.arrow {
	position: relative;
	display: inline-block;
	padding: 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
}
.arrow::before,
.arrow::after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.gr-ico::before{
	left: 3px;
	width: 4px;
	height: 4px;
	border-top: 3px solid #00704b;
	border-right: 3px solid #00704b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#80b252;
  border-radius: 4px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #bdddb3;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#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(100px);
  }
}

.mainimg {max-width:1920px;margin:0 auto;position:relative;}
.mainimg h1 {margin:0;padding:0;}
.mainimg p {position:absolute;width:100%;top:0;left:0;margin:0;padding:0;}


.info_box {
	/*background:#fafafa;*/
	/*box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);*/
	margin:0 0 20px 0;
	padding:16px 30px;
	font-size:1rem;
	line-height:1.8;
	background:#fff;
	border:3px solid #bdddb3;
	border-radius:8px;
	}

.info_box p {
	font-size:1.1rem;
	margin:10px 0 0 0;
	}

.info_box strong {
	font-size:1.1rem;
	margin:10px 0 0 0;
	}

.info_tit {text-align:center;font-size:1.6rem;font-weight:bold;line-height:1.4;color:#555;margin:20px 0 25px 0;padding:0;}
.infotop_tit {font-size:1.2rem;font-weight:bold;line-height:1.4;color:#555;margin:20px 0;padding:0;border-bottom:1px solid #999;}
.infotop_lead {font-size:1rem !important;margin:10px 0 30px 0;padding:0 0 20px 0;/*border-bottom:1px solid #999;*/}
.info_box h4 {margin:30px 0 -20px;}

.info_box ul {
	margin:0;
	padding:0;
	}

.info_box li {
	margin:10px;
	}

.info_box li span{
	color:#39a854;
}

.info_box li a {
	color:#3399ff !important;
}


/*当施設の特徴*/
.feature {
	background: url(../images/feature_back.png) no-repeat left top;
	background-size: cover;
	padding:20px 1% 40px;
	}

.feature ul {
	margin:0;
	padding:0;
}

.feature li {
	width:calc(96%/2);
	margin:10px 1%;
	padding:0;
	list-style:none;
	float:left;
	}

.tit_img {

	text-align:center;
	margin:0 0 10px 0;
	/*color:#fff;
	font-size:2rem;
	font-weight:normal;
	text-shadow: 0 0 0.2em rgba(15,115,15,1);*/
}

/*機能説明*/
.spec {
	background: #bdddb3;
	/*background: #92b869;*/
	padding:20px 2%;
	}

.spec_box {
	background: #fff;
	border:3px solid #b28247;
	margin:0 0 30px 0;
	}

.spec_txt {
	width:68%;float:left;margin-left:2%;padding:1%;
}

.spec_txt h3 {
margin:20px 0;font-size:1.8rem;color:#00704b;line-height:1.4;
}

.spec_txt p {
	font-size:1.3rem;
}

.spec_txt span {
	font-size:70%;
}


.spec_img {
	width:28%;float:left;
}


/*========= 料金表 =========*/
/*.plan_select {
	margin:20px 0;
}

.plan_select div{
	margin:0 1%;
	width:calc(94%/3);
	float:left;
}*/

.opcampaign {
	padding:30px 0;
}

.tax {
	text-align:right;
	font-size:0.8rem;
	margin:0 0 20px 0;
}

.plan_tit {margin:0 0 20px 0;text-align:center;line-height:1.4;}


.timetbl_tit {margin:0;font-size:2rem;color:#00704b;}

.plan_note {
	font-size:0.9rem;
	margin:10px 0;
}

.plan_note span {
	font-size:60%;
	color:#c8161d;
}

.note_txt-red {
	color:#c8161d;
}

.note {
	color:#c8161d;
	font-size:70%;
	margin:0 4px;
	vertical-align: top;
}

.weekday {
	padding:6px 8px;
	background:#328363;
	color:#fff;
	font-size:90%;
	}

.holyday {
	padding:6px 8px;
	background:#e56486;
	color:#fff;
	font-size:90%;
	}

.busyseason {
	padding:6px 8px;
	background:#fff462;
	color:#111;
	font-size:90%;
	}


.price-tbl {
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
	}

.spot{
	/*width:80% !important;*/
	}

.price-tbl td,.price-tbl th {
	border: 1px solid #666;
	text-align:center;
	}

.price-tbl th {
	padding:8px 0;
	font-size:1.1rem;
	background:#d5c89c;
	width:16%;

	}

.price-tbl td {
	padding:12px 6px;
	font-size:1rem;
	background:#fff;
	width:42%;
	}

.price-tbl p {
		font-size:90%;
		line-height:1;
		margin:0;
	}

.out_opt {
		padding:8px;
		background:#333;
		color:#fff;
		margin:10px 20% !important;
	}


.price-tbl strong {
	font-size:160%;
	}

.price-tbl .plan{
	background:#f1ecd2;
	font-weight:bold;
	font-size:160%;
	}

.price-tbl .opp{
	background:#fff9b1;
	padding:20px;
	}

.ticket-tbl {
	width:100%;
	margin:0px auto;
	border-collapse:collapse;
	}
	
.ticket-tbl td,.ticket-tbl th {
	border: 1px solid #666;
	text-align:center;
	}

.ticket-tbl th {
	padding:10px 0;
	font-size:1.3rem;
	}

.ticket-tbl td {
	padding:18px 6px;
	background:#fff;
	font-size:1.3rem;
	}

.ticket-tbl strong {
	font-size:170%;
	}

.ticket-tbl .weekday {
	background:#a3c999;
	}

.ticket-tbl .holyday {
	background:#f8c19b;
	}

.ticket-tbl .mnt {
	background:#dfebf8;
	font-weight:bold;
	}

.ticket-tbl .maa {
	background:#e1edbc;
	font-weight:bold;
	}

.ticket-tbl .pop {
	background:#fff7d2;
	font-weight:bold;
	}

.bg-gray td{background:#ededed;} 

.calc2 td {width:calc(100%/2);}
.calc3 td {width:calc(100%/3);}
.calc4 td {width:calc(100%/4);}
.calc5 td {width:calc(100%/5);}
.calc6 td {width:calc(100%/6);}

#outdoor {margin-bottom:200px;}

@media (max-width: 640px){
#outdoor {margin-bottom:0px;}
}


/*シミュレーター機*/
.rc_box {
	background:#fff;
	padding:20px 1.5%;
	margin:20px 0 50px;
	border-radius:8px;
}

.rc_box p {
	font-size:1.1rem;
	line-height:2.0;
}

.rc_box strong {
		color:#027bc7;
		font-size:110%;
	}	

.l_img {
	float:left;
	text-align:center;
	width:38%;
	margin:0 2% 0 0;
	padding:0;
}

.r_img {
	float:left;
	width:38%;
	margin:0 0 0 2%;
	padding:0;
	font-size:0.9rem;
	text-align:center;
}

.rc_txt {
	float:left;
	width:60%;
	margin:0
	padding:0;
}

.rc_video {
	float:left;
	width:calc(96%/2);
	margin:0 1%;
	padding:0;
	font-size:1rem;
	text-align:center;
}

.rc_video2 {
	float:left;
	width:calc(97%/3);
	margin:0 0.5%;
	padding:0;
	font-size:1rem;
	text-align:center;
}

.col2 {
	float:left;
	width:calc(98%/2);
	margin:0 0.5% 10px;
	padding:0;
	font-size:0.9rem;
	text-align:center;
}

.col3 {
	float:left;
	width:calc(97%/3);
	margin:0 0.5% 10px;
	padding:0;
	font-size:0.9rem;
	text-align:center;
}

.col4 {
	float:left;
	width:calc(96%/4);
	margin:0 0.5% 10px;
	padding:0;
	font-size:0.9rem;
	text-align:center;
}


/*LINE友達登録*/
/*.line_back {
	background:#39a854;
	padding:20px;
}*/

.line_box {
	background:#fff;
	padding:12px 1%;
	margin:10px 0 30px;
	border-radius:8px;
}

.line_img {
	float:left;
	text-align:center;
	width:27%;
	margin:0 1% 0 0;
	padding:0;
}

.line_txt {
	float:left;
	width:70%;
	margin:0
	padding:0;
}

.rc_box h3 {
	position: relative;
	padding: 0.1em 0.5em;
	margin:0 0 20px 0;
	/*background: -webkit-linear-gradient(to right, rgb(15, 118, 40), #7eca90);
	background: linear-gradient(to right, rgb(15, 118, 40), #7eca90);*/
	background: -webkit-linear-gradient(to right, rgb(25, 102, 196), #6fabdf);
	background: linear-gradient(to right, rgb(25, 102, 196), #6fabdf);
	color: #fff;
	font-size:1.8rem;
	font-weight:bold;
	line-height:1.6;
}

.rc_box h4 {
	color:#027bc7;
	font-size:1.6rem;
	line-height:1.6;
	font-weight:bold;
	margin:0 0 20px 0;
}

.rc_box h4:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(25, 102, 196), transparent);
  background: linear-gradient(to right, rgb(25, 102, 196), transparent);
}

.rc_box h5 {
		color:#027bc7;
		font-size:1.2rem;
		line-height:1.8;
		margin:0 0 20px 0;
	}

.line_txt strong,.lead strong {
	background: linear-gradient(transparent 60%, #ffff7f 60%);
	color:#111 !important;
}

.blue_box {
	color:#fff !important;
	background:#027bc7;
	padding:8px;
	font-size:110%;
}

.rc_box ul,.line_txt ul{
	background:#f3f3f3;
	border-radius:8px;
	color:#111;
	padding:16px 8px 8px 30px;
	margin:0 0 20px 0;
	line-height:1.8;
	word-wrap: break-word;
}

.rc_box li,.line_txt li{
	margin:0 0 16px 0;
	padding:0;
}


.rc_box-col3 {
	float:left;
	/*background:#fff;*/
	width:calc(91%/3);
	margin:20px 0.5% 0;
	padding:10px 1%;
	text-align:center;
	border-radius:8px;
	box-shadow: 0 0 5px rgba(6, 6, 6, 0.3);
}


.btn {
	font-size:1rem;
	color: #fff;
	text-align:center;
	padding:16px 0;
	/*background-color: #ff6f61;*/
	background-color: #80b252;
	transition:all .3s;
	border-radius:10px;
}

.btn-line {
	width:60%;
	margin:10px auto;
	font-size:1rem;
	color: #fff;
	text-align:center;
	padding:16px 0;
	/*background-color: #06c755;*/
	background-color: #80b252;
	transition:all .3s;
	border-radius:10px;
}
.btn,.btn-line{
	color: #fff;
	text-decoration:none;
	display:block;
}
.btn:hover,.btn-line:hover {
	color: #fff;
	text-decoration:none;
	opacity:0.6;
}

.btn:visited,.btn-line:visited {
	color: #fff;
}

.rows {width:60%;margin:20px auto;}
.two_rows {width:45%;margin:20px 2.5%;float:left;}


/*------会社概要------*/
#company-box {
	width:80%;
	margin:50px auto;
	border-collapse:collapse;
	}
	
#company-box td,#company-box th {
	padding:18px;
	border-bottom: 1px solid #CCCCCC;
	font-size:0.9rem;
	}

#company-box th {
	width:15%;
	text-align:right;
	padding-right:2%;
	}


/*------交通案内-----*/
.bus-name {
    padding: 0 0 15px 140px;
    font-size: 0.9rem important;
}

.under_line{
	border-bottom: 1px solid #666;
}


.bus-name span {
    color: #fff;
    padding:4px 8px;
}
.bus-name img {
    padding: 3px 0 0 0;
}

.hanabus {
background: #33aaff;
color:#fff;
}
.seibubus {
background: #ff6600;
color:#fff;
}
.kantoubus {
background: #52b229;
color:#fff;
}

.hanabus_txt {
color:#33aaff;
}
.seibubus_txt {
color:#ff6600;
}
.kantoubus_txt {
color:#52b229;
}


/*------イベント------*/
.oc_list {
	width: calc(88%/3);
	min-height:340px;
	box-shadow: 0 0 5px rgba(6, 6, 6, 0.5);
	margin:10px 2%;
	padding-top:8px;
	border-radius:8px;
	float:left;
	}

.oc_tit {
	font-size:1.1rem;
	margin:20px 4%;
	padding:0;
	color:#00704b;
	}

.oc_list p,.oc_list a {
	margin:10px 2% 30px;
	font-size:0.8rem;
	}

.oc_end {
	border:1px solid;
	margin:10px 4%;
	padding:10px;
	text-align:center;
	color:#00704b;
	}
.oc_list .btn {
	margin-bottom:8px !important;
}


/*レッスン*/
.lesson_select {
	width: calc(100%/2);
	float:left;
	}

/*-------▼ページタイトル------*/
.tit {
	display: flex;
	align-items: center; /* 垂直中心 */
	justify-content: center; /* 水平中心 */
	margin:0px;
	padding:20px 0;
	font-size:1.8rem;
	color:#fff;
	background:#00704b;
}
.tit:before, .tit:after {
  border-top: 1px solid #fff;
  content: "";
  width: 10%; /* 線の長さ */
}
.tit:before {
  margin-right: 1em; /* 文字の右隣 */
}
.tit:after {
  margin-left: 1em; /* 文字の左隣 */
}


.subtit {
	display: flex;
	align-items: center; /* 垂直中心 */
	justify-content: center; /* 水平中心 */
	margin:0 0 20px 0;
	padding:20px 0;
	font-size:1.5rem;
	line-height:1;
	color:#333;
}
.subtit:before, .subtit:after {
  border-top: 1px solid #333;
  content: "";
  width: 10%; /* 線の長さ */
}
.subtit:before {
  margin-right: 1em; /* 文字の右隣 */
}
.subtit:after {
  margin-left: 1em; /* 文字の左隣 */
}

.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  color: #999;
  text-decoration: none;
}
.arrow_u:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #999;
  border-right: solid 2px #999;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  transform: rotate(45deg);
}

.container {
	width:94%;
	padding:16px 3%;
	background:#fff;
}

/*.privacy_lead {
	font-size:0.9rem;
	color:#111;
	margin:10px 0;
	line-height:1.8;
	word-wrap: break-word;
	}
*/

.date {
	font-size:0.8rem !important;
	color:#333 !important;
	margin:10px 0 !important;
	}

.lead {
	font-size:1rem;
	color:#111;
	padding:0 0 20px 0;
	line-height:2;
	word-wrap: break-word;
	}

.lead li {margin:0 0 16px 20px;}

.lead a {color:#0066ff;}
.lead a:hover {color:#3399ff;}

.graybox_ol  {
	background:#efefef;
	border-radius:8px;
	font-size:0.9rem;
	color:#111;
	padding:20px 0 10px 0;
	margin:20px 0;
	line-height:1.8;
	word-wrap: break-word;
}
.graybox_ol li  {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}


li .graybox_ol  {
	padding:30px 0 10px 0;
	margin:0;
}

.nav_tos {display:flex;margin:0;padding:0;list-style:none;}
.nav_tos li {margin:16px 1%;}

/*よくある質問*/
.faq_list {margin:0;padding:0;list-style:none;}
.faq_list li {float:left;width:calc(68%/4);margin:16px 4%;font-weight:bold;}
.faq_list li a {color: #333;}
.faq_list li a:hover {transition:all .3s;opacity:0.5;}
.faq_list li a::before {
  content: 'Q. ';
  color: #39a854;
}

.faq__q,.faq__a  {
  position: relative;
  padding-left: 28px;
}


.faq__q::before,
.faq__a::before {
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* 質問文 */
.faq__q {
	font-size:1.2rem;
	font-weight:bold;
	line-height:1.8;
	color:#555;
	border-bottom:1px solid #ccc;
}

/* 回答文 */
.faq__a {
  margin-bottom: 16px; 
}

.faq__q::before {
  content: 'Q.';
  color: #39a854; /* 「Q」の文字色 */
	font-size:1.2rem;
}

.faq__a::before {
  content: 'A.';
  color: #0085C8; /* 「A」の文字色 */
	font-size:1.2rem;
	margin-top:-6px;
}

.txtal_l {text-align:left !important;}



.w20 {width:20% !important;}
.mt10 {margin-top:10px !important;}
.mt20 {margin-top:20px !important;}
.mt30 {margin-top:30px !important;}
.mt40 {margin-top:40px !important;}
.mt50 {margin-top:50px !important;}
.mb10 {margin-bottom:10px !important;}
.mb20 {margin-bottom:20px !important;}
.mb30 {margin-bottom:30px !important;}
.mb40 {margin-bottom:40px !important;}
.mb50 {margin-bottom:50px !important;}
.mb60 {margin-bottom:60px !important;}
.mb80 {margin-bottom:80px !important;}
.mb100 {margin-bottom:100px !important;}
.ml4 {margin-left:4px !important;}
.ml16 {margin-left:19px !important;}
.ml30 {margin-left:33px !important;}

.fixed_banner {
position: fixed; /* 追従させる為にfixedの値を記述します */
z-index: 999; /* 他の要素の下に隠れないように全面配置させます */
top: 150px; /* 上から150pxのところにバナーを配置します */
right: 0px; /* 右から40pxのところにバナーを配置します */
width:10%;
}

/*Youtube*/
.yt {
	width: 100%;
	margin:0;
	aspect-ratio: 16 / 9;
}

.yt_v {
	width: 40%;
	margin:30px 30% 0;
	aspect-ratio: 9 / 16;
}

.yt_thb {
	width:calc(97%/3);
	margin:10px 0.5%;
	float:left;
}

@media (max-width: 640px){
.yt_thb {width:calc(96%/2);margin:10px 1%;float:left;}
}

/*イベント*/
.tbl,.tbl_eve {
	border-collapse: collapse;
	margin: 0 0 2em 0;
	width:100%;
}
.tbl th,.tbl td {
	border: 1px solid #333;
	padding: 8px;
	text-align:center;
}

.tbl_eve th,.tbl_eve td {
	border: 1px solid #333;
	padding: 8px;
}

.tbl th,.tbl_eve th {
	font-weight:normal;
	background:#669933;
	color:#fff;
	width:18%;
}

.tbl td p,.tbl_eve td p {
	margin:10px 0;
}

.tbl td strong,.tbl_eve td strong,.info_box strong {
	color:#00704b;
	font-size:120%;
}

.tbl_eve td ul {
	padding-left:20px;
}

.tbl_eve td li {
	font-size:80%;
}

.tbl_eve .eve_stit {
	color:#009933;
	margin-bottom:10px;
}

.tbl_eve .eve_stit span{
	background:#009933;
	color:#fff;
	padding:8px;
}


.tbl_sch {
	width:48% !important;
	margin:0 1%;
	float:left;
}

.tbl_sch tr:nth-child(odd) {
  background-color: #f5faed; /* 奇数行 */
}

.tbl_sch tr:nth-child(even) {
  background-color: #ffffff; /* 偶数行 */
}

.winner{
	background:#fff48a !important;}

.tbl div,.cb {font-size:70%;margin-left:8px;padding:4px 8px;background:#339966;border-radius:8px;color:#fff;}

.totalling {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;  /* 明るいオレンジ色で視覚的に強調 */
    background-color: #fff3e6;  /* 薄いオレンジ色の背景 */
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid #ff6600;  /* オレンジ色のボーダー */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);  /* 軽いシャドウ */
    margin: 20px auto 50px;
    width:50%;
    line-height: 1.5;
}

.totalling br {
    margin-top: 10px;
    margin-bottom: 10px;
}

.sc_tit {
	padding-bottom:18px;
	margin:10px 0;
	border-bottom:1px solid #ccc;
	color:#00704b
	}

/*Googleplay*/
.googleplay {width:20%;margin:20px 5% 20px 25%;float:left;}
/*AppStore*/
.appstore {width:20%;margin:20px 25% 20px 5%;float:left;}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger{
    opacity: 0;
}

/*------タブレット　ブレイクポイント------*/
@media screen and ( max-width:1024px )
{
	.tryal {display:none;}
	header {height:auto;position:static;}
	#header {position:static;}


	#logo {
		width:16%;
		margin:10px 2% 5px 2%;
		padding:0;
		line-height:0;
	}

#hdr-nav {
	width:auto;
	margin:0 8px 0 0;
	padding:0;
}

	#gnavi {float:none;width:100%;padding-bottom:4px;}

	#gnavi li{
		margin:0;
		padding:0;
		text-align:center;
		float:left;
	}

	#gnavi li a {padding:2px 0 0 0;}
	#wrapper {margin:20px 2%;}

	.tit {
		margin:0px;
		padding:14px 0;
		font-size:1.2rem;
	}
	.tit:before, .tit:after {
	border-top: 1px solid #fff;
	content: "";
	width: 8%; /* 線の長さ */
	}
	.tit:before {
	margin-right: 0.8em; /* 文字の右隣 */
	}
	.tit:after {
	margin-left: 0.8em; /* 文字の左隣 */
	}

	.lead {
		font-size:0.9rem !important;
		padding:0 0 14px 0;
		}

	section {margin-bottom:40px;}

	.faq_list li {float:left;width:calc(82%/3);margin:16px 3%;font-size:1rem;}

	.rc_box-col3 {
		float:left;
		width:calc(94%/2);
		margin:20px 0.5% 0;
		padding:10px 1%;
		text-align:center;
		border-radius:8px;
		box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
	}

	.lesson_select {
		width: calc(100%/1);
		float:none;
		}

	.oc_list {
		width: calc(68%/1);
		margin:10px 16% 40px;
		padding:8px 0 4px 0;
		border-radius:8px;
		float:none;
		}
	
	.oc_tit {
		font-size:1rem;
		margin:20px 4%;
		padding:0;
		color:#00704b;
		}
	
	.oc_list p,.oc_list a {
		margin:10px 4% 15px;
		font-size:0.8rem;
		}

	.rc_box {
		padding:8px 1%;
		margin:10px 0 30px;		
	}
	.rc_box p {
		font-size:0.9rem;
		line-height:1.8;
	}
	.rc_box h3 {

		padding: 0.4em;
		margin:0 0 16px 0;
		color: #fff;
		font-size:1.3rem;
		font-weight:bold;
		line-height:1.6;
	}
	.rc_txt h5 {
			font-size:1rem;
			line-height:1.6;
			margin:0 0 16px 0;
	}

/*シミュレーター機・LINEともだち登録*/
	.l_img,.r_img,.rc_video,.rc_video2,.line_img {
		float:none;
		text-align:center;
		width:80%;
		height:auto;
		margin:10px auto;
		padding:0;
	}
	
	.rc_txt,.line_txt {
		float:none;
		width:96%;
		margin:10px 2%;
		padding:0;
	}

.tbl_sch {
	width:48% !important;
	margin:0 1%;
	float:left;
}

/*Googleplay*/
.googleplay {width:30%;margin:20px 5% 20px 15%;float:left;}
/*AppStore*/
.appstore {width:30%;margin:20px 15% 20px 5%;float:left;}
}

/*------モバイル　ブレイクポイント------*/
@media screen and ( max-width:640px )
{
	.mb {display:block;}
	.pc,#page-top/*,#hdr-nav*/.arrow, .gr-ico {display:none;}
	
	#logo {
		width:28%;
		margin:6px 0 2px 6%;
	}

#hdr-nav li a {
	padding:4px 4px 2px 14px;
}

#hdr-nav li img {
	width:36px;
}

	#gnavi {display: block;}
	#gnavi li {
		width:calc(100%/3);
		float:left;
		padding:3px 6%;
		border:none;
	}


.footer {
	width:96%;
	padding:1rem 2%;
}

	.footer__logo {
		width:35%;
		margin-bottom: 0.5rem;
	}

.footer__navi li {
	margin-bottom: 0.75rem;
	font-size:0.7rem;
	}

.copyright {
	text-align:center;
	font-size:0.7rem;
	padding:15px 0 0 0;
}

	#wrapper {margin:20px 1%;}
	section {margin-bottom:30px;}

	.tit {font-size:1rem;padding:10px 4px;}
	.tit:before, .tit:after {width: 3%; /* 線の長さ */}
	.tit:before {margin-right: 0.5em; /* 文字の右隣 */}
	.tit:after {margin-left: 0.5em; /* 文字の左隣 */}

	.subtit {padding:0;margin:10px 0 20px 0;font-size:1rem;}
	.subtit:before, .subtit:after {
	width: 0%; /* 線の長さ */
	}
	.subtit:before {
	margin-right: 0em; /* 文字の右隣 */
	}
	.subtit:after {
	margin-left: 0em; /* 文字の左隣 */
	}
	.subtit img {width:8%;margin-right:10px}

	.info_box {padding:12px 4px;}
	.info_tit {font-size:0.8rem;margin:5px 0 15px 0;text-align:left;}
	.info_box h4 {font-size:0.9rem;margin:30px 0 20px 0;}
	.info_box p {font-size:0.7rem;}
	.date {font-size:0.6rem !important;}
	.infotop_tit {font-size:0.9rem;margin:10px 0;}
	.infotop_lead {font-size:0.7rem !important;}
	.info_box li {font-size:0.8rem;margin:10px 10px 10px 20px;}

	.btn {font-size:0.9rem;padding:8px 0;}
	
	.container h3 {font-size:1rem;}
	
	.lead {
		font-size:0.8rem !important;
		padding-bottom:10px;
		line-height:1.8;
	}

.fixed_banner {
	/*position: absolute; 追従をやめる場合*/
	top: 200px; /* 上から〜pxのところにバナーを配置します */
	width:14%;
	}



/*当施設の特徴*/
	.feature {padding:5px 1%;}
	.tit_img {padding:20px 0x;}
	.tit_img img {width:80%;}

/*2列版*/
	.feature li {
		width:calc(98%/2);
		margin:5px 0.5%;
		}
	
	.feature li {
		width:calc(90%/1);
		margin:8px auto;
		float:none;
		}


/*機能説明*/
	.spec_txt {width:72%;margin:30px 0 0 0;}
	.spec_img {width:24%;margin:0;padding:1%;}
	.spec_img img {margin-top:50px;}
	.spec_txt h3 {margin:5px 0;font-size:1rem;}
	.spec_txt p {font-size:0.8rem;}


/*料金案内*/
	.opcampaign {
		padding:15px 0 0 0;
	}

	.price-tbl th {
		font-size:0.7rem;
		padding:8px 0;
		width:22%;
	}
	.price-tbl td {
		height:auto;
		font-size:0.7rem;
		padding:10px 0.5%;
		width:38%;
	}

	.price-tbl strong {
		font-size:120%;
		}

	.price-tbl .plan {
		font-size:100%;
		}

	.plan_note {font-size:0.8rem;margin:20px 2%;}
	
	.ticket-tbl th {
		padding:6px 0;
		font-size:0.9rem;
	}
	
	.ticket-tbl td {
		padding:10px 3px;
		font-size:0.7rem !important;
	}

	.ticket-tbl strong {
		font-size:120%;
		}

	.weekday,.busyseason,.holyday {
		padding:3px 4px;
		font-size:90%;
		}

		.out_opt {
		margin:10px 8px !important;
	}

/*シミュレーター機*/
.rc_box-col3 {
	float:left;
	width:calc(97%/1);
	margin:20px 0.5% 0;
	padding:10px 1%;
	text-align:center;
	border-radius:8px;
	box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}

	.rc_box {padding:4px 1%;}
	.rc_box p,.line_txt p {font-size:0.8rem !important;}
	.rc_box ul,.line_txt ul {padding:10px 4px 4px 25px;}
	.rc_box li,.line_txt li {font-size:0.8rem;margin:0 0 12px 0;}	
	.rc_box h3 {font-size:1rem;}
	.rc_box h4 {font-size:1rem;margin:10px 0 15px 0;}
	.rc_txt h5 {font-size:1rem;margin:0 0 15px 0;}
	.rc_txt p,.line_txt p {font-size:0.9rem;}

	.btn-line {
		font-size:0.9rem;
		padding:15px 10px;
		width:90%;
	}

	.btn-line:hover {
		color: #fff;
		text-decoration:none;
		opacity:0.6;
	}

	.col2 {
	width:calc(98%/1);
	margin:0 1% 10px;
}

	.col3,.col4 {
	width:calc(98%/2);
	margin:0 0.5% 5px;
}

/*よくある質問*/
	.faq_list li {width:calc(84%/2);margin:10px 4%;font-size:0.8rem;}
	.faq__q {font-size:1rem;}

/*交通案内*/
	.bus-name {font-size:0.7rem;padding:0 0 8px 0;}
	.under_line {padding-bottom:16px;}
	#company-box th {width:20%;}
	#company-box td,#company-box th {font-size:0.7rem;}
	.arrow_u {font-size:0.8rem;}


/*------イベント------*/
	.oc_list {width: calc(96%/1);margin:10px 2% 30px;}
	.tbl,.tbl_eve {margin: 0 0 1em 0;}
	.tbl th,.tbl td {padding: 8px;font-size:0.8rem;}
	.tbl td p,.tbl_eve p {margin:10px 0;}
	.tbl td strong,.tbl_eve td strong {font-size:110%;}	
	.tbl_eve th,.tbl_eve td {
    display: block;
    width: 96%;
	border-bottom: none;
	}
	.tbl_eve {border-bottom: 1px solid #333;}
	/*.tbl_eve th {border-bottom: none;}*/

.tbl_sch {
	width:48% !important;
	margin:0 1%;
	float:left;
}

.mt10 {margin-top:5px !important;}
.mt20 {margin-top:10px !important;}
.mt30 {margin-top:15px !important;}
.mt40 {margin-top:20px !important;}
.mt50 {margin-top:25px !important;}
.mb10 {margin-bottom:5px !important;}
.mb20 {margin-bottom:10px !important;}
.mb30 {margin-bottom:15px !important;}
.mb40 {margin-bottom:20px !important;}
.mb50 {margin-bottom:25px !important;}
.mb60 {margin-bottom:30px !important;}
.mb80 {margin-bottom:40px !important;}
.mb100 {margin-bottom:50px !important;}
.ml4 {margin-left:4px !important;}
.ml16 {margin-left:19px !important;}
.ml30 {margin-left:33px !important;}
}


/* fadeUp */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}