@charset "utf-8";
/* CSS Document */

/*============
  Base Layout
============*/
body{
	width: 100%;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.8;
	color: #333;
	font-family: "MS Pゴシック",sans-serif;
}
h2{
	margin-top: 50px;
	width: 100%;
	font-family: 'Ranchers', cursive;
	font-size: 40px;
	color: #257b39;
	text-align: center;
}
/* for PC */
@media screen and (min-width:768px){
	body{
		font-size: 16px;
		line-height: 1.5;
	}
}

/*container*/
.container{
	width: 100%;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}
@media screen and (min-width:768px){
	.container{
		width: 960px;
		margin: 0 auto;
	}
}
/*===header=== */
header{
	height: 80px;
	background: #f2ef1d;
	position: relative;
	z-index: 100;
}
/* for PC */
@media screen and (min-width:768px){
	.header_wrapper{
			width: 960px;
			margin: 0 auto;
			display: flex;
			justify-content: space-between
		}
}
/*===logo===*/
h1 img{
	width: 70px;
	height: auto;
	margin-left: 20px;
	margin-top: 5px;
}

/* for PC */
@media screen and (min-width:768px){
	h1{
		display: inline-block;
	}
}
/*===humbuger===*/
.nav_pc{
	display: none;
}
.hum_wrapper{
    position: absolute;
    right: 20px;
    top: 18px;
    width: 50px;
    height: 60px;
    cursor: pointer;
}
/* toggle style */ 
.toggle span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #fff;
    left: 0;
}
/*各ボーダー少しずつずらす*/
.toggle span:nth-child(1) {
    top:5px;
}
 .toggle span:nth-child(2) {
    top: 18px;
}
 .toggle span:nth-child(3) {
    top: 32px;
}
/* humbuger inner */
nav ul li a{
	display: block;
	font-weight: bold;
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
	color: #333;
}
nav ul li a:hover{
	background: #81D674;
}
nav{
	width: 100%;
	text-align:center;
 	background-color:#fff;
	z-index: 9999;
}

/* css signature */
#home #nav_home,
#rental #nav_rental,
#touring #nav_touring,
#lesson #nav_lesson,
#reservation #nav_reservation{
	background: rgb(198,198,198);
}

/*===gloval menu===*/
@media screen and (min-width:768px){
	.hum_wrapper,
	.nav_sp{
		display: none;
	}
	.nav_pc{
		display: block;
		width: 500px;
		background: none;
	}
	.nav_pc ul{
		display: flex;
		justify-content: space-between;
		
	}
	.nav_pc ul li{
		width: 100px;
		align-self: center;
	}
	.nav_pc ul li a{
		height: 80px;
		font-size: 14px;
		padding: 20px 5px;
		border: none;
		line-height: 1.5;
	}
	#nav_rental_pc,
	#nav_touring_pc,
	#nav_lesson_pc,
	#nav_home_pc{
		line-height: 2.5;
	}
	.nav_pc ul li a:hover{
		background: url("../img/menu_bg.png") no-repeat;
		background-size: 50px 50px;
		background-position: 25px 15px;
	}
	/* css signature */
	#home #nav_home_pc,
	#rental #nav_rental_pc,
	#touring #nav_touring_pc,
	#lesson #nav_lesson_pc,
	#reservation #nav_reservation_pc{
		background: rgb(255,255,255,0.7);
	}
}

/*===footer===*/
footer{
	margin-top: 50px;
	background: #f2ef1d;
	text-align: center;
	padding-bottom: 10px;
}
.sns{
	width: 50%;
	margin: 0 auto;
	padding-top: 20px;
	display: flex;
	justify-content: space-between
}
.sns p{
	font-size: 45px;
}
.sub_nav{
	margin-bottom: 5px;
}
.sub_nav ul{
	padding-top: 10px;
	width: 80%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.sub_nav ul li a{
	font-size: 15px;
}
.sub_nav ul li a:hover{
	font-weight: bold;
}

@media screen and (min-width:768px){
	.sns{
		width: 20%;
		justify-content: space-around;
	}
	.sub_nav ul{
		width: 40%;
		justify-content: space-around;
	}
}

/*===go top===*/
#top_btn{
	width: 50px;
	height: 50px;
	background: rgb(172,31,35);
	border-radius: 50%;
	position: fixed;
	right: 3%;
	bottom: 10%;
	font-size: 0;
}
#top_btn .fas{
	color: #fff;
	margin-left: 11px;
	font-size: 33px;
	position: relative;
}
#top_btn p{
	color: #fff;
	margin-left: 11px;
	font-size: 12px;
	position: absolute;
	top: 25px;
	left: 3px;
}
#top_btn:hover{
	cursor: pointer;
	background: rgb(212,106,109);
}
@media screen and (min-width:768px){
	#top_btn{
		width: 70px;
		height: 70px;
		right: 5%;
		bottom: 10%;
	}
	#top_btn .fas{
		margin-left: 15px;
		font-size: 44px;
	}
	#top_btn p{
		margin-left: 15px;
		font-size: 18px;
		position: absolute;
		top: 35px;
		left: 2px;
	}
}
/*============
  index.html
============*/

/*===top===*/
.top_bg{
	background: url(../img/hero_bg.jpg) no-repeat;
	background-size: cover;
	height: 520px;
	position: relative;
	z-index: -2;
}
.top p img{
	display: block;
	z-index: 1;
	max-width: 100%;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.top h2{
	width: 100%;
	font-family: 'Faster One', cursive;
	font-size: 40px;
	color: #ac1f23;
	text-align: center;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translate(-50%,-5%);
	text-shadow: 2px 2px 5px #333;
	z-index: 2;
	animation-name: fadein;
    animation-duration: 1s;
}
@keyframes fadein {
	from {
		opacity: 0;
		transform: translateX(-100%);
		}
	to {
		opacity: 1;
		transform: translateX(-50%);
		}
}

/* for PC */
@media screen and (min-width:768px){
	.top_bg{
		height: calc(100vh - 80px);
	}
	.top p img{
		top: 60%;
	}
	.top h2{
		z-index: 2;
		font-size: 70px;
	}
}

/*===main_contents===*/
.flexbox div{
	width: 100%;
	border-radius: 5px;
	box-shadow: 2px 2px 7px rgba(59,57,58,0.5);
	padding: 30px;
	margin-top: 50px;
}
.flexbox div p{
	text-align: center;
}
.flexbox div img{
	display: block;
	max-width: 40%;
	height: auto;
	padding-top: 30px;
	margin: 0px auto;
}

/* 各アイコンの微調整 */
.flexbox div.covid19 img{
	max-width: 80%;
}
.flexbox div.lecture img,
.flexbox div.time img{
	max-width: 30%;
}

/* for PC */
@media screen and (min-width:768px){
	.main_contents div.flexbox{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.main_contents div{
		display: inline-block;
		width: 45%;
	}
}
/*===access===*/
.access div{
	width: 100%;
	margin-top: 30px;
}
.access_map{
	position: relative;
	padding-top: 50%;
}
.access_map iframe{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.address p:first-child{
	font-size: 18px;
	font-weight: bold;
}

/* for PC */
@media screen and (min-width:768px){
	.flexbox2{
		width: 100%;
		display: flex;
		justify-content: space-between;
		position: relative;
	}
	.access div.access_map{
		width: 50%;
		display: inline-block;
	}
	.access div.access_text{
		width: 40%;
		position: absolute;
		right: 0;
		bottom: 0;
	}
}


/*============
  rental.html
============*/
#rental section{
	width: 100%;
	margin: 0 auto;
}
#rental h2{
	font-family: 'Ranchers', cursive;
	font-size: 40px;
	color: #257b39;
	text-align: center;
	margin-bottom: 30px;
}

/* for PC */
@media screen and (min-width:768px){
	#rental section{
		width: 960px;
	}
}

/*===explanation===*/
.explanation{
	padding-right: 20px;
	padding-left: 20px;
}
.explanation_inner{
	width: 100%;
	margin: 0 auto;
}
#rental .explanation h2{
	margin-bottom: 80px;
}
.order{
	margin-bottom: 80px;
	border: 3px solid #3261AB;
	border-radius: 5px;
	padding: 40px 20px 20px 20px;
	position: relative;
}
.mg0{
	margin-bottom: 0;
}
.order_title{
	width: 70px;
	height: 70px;
	color: #fff;
	background: #3261AB;
	border: 1px solid #3261AB;
	border-radius: 50%;
	text-align: center;
	line-height: 4;
	position: absolute;
	top: -40%;
	left: 40%;
}
.order_text a{
	font-weight: bold;
	color: #004C6A;
}

@media screen and (min-width:768px){
	.explanation_inner{
		margin-top: 80px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: flex-start;
	}
	.order{
		width: 30%;
		height: auto;
	}
	.order_title{
		top: -30%;
		left: 35%;
	}
	.explanation_inner::after{
		content: "";
		display: block;
		width: 30%;
	}
}


/*===rental plans===*/
.plans_inner div{
	width: 80%;
	margin: 0 auto;
	border: 1px solid #333;
	border-radius: 5px;
	margin-bottom: 20px;
	text-align: center;
}
.plans_inner div p{
	line-height: 2.5;
	padding: 10px 0;
}
.plans_inner div p:first-child{
	background: rgba(202,231,242,0.8);
	border-radius: 5px 5px 0 0;
	font-weight: bold;
	font-size: 18px;
}
.caution{
	font-size: 14px;
	color: #f00;
	width: 80%;
	margin: 0 auto;
}
@media screen and (min-width:768px){
	.plans_inner{
		display: flex;
		justify-content: space-between;
	}
	.plans_inner div{
		width: 30%;
		height: auto;
	}
	.caution{
	width: auto;
	float: right;
	}
	.plans{
		overflow: hidden;
	}
	#rental section.plans{
		margin-top: 0;
	}
}


/*===lineup===*/
.lineup{
	padding: 0 20px;
}
.lineup_item_wrapper{
	width: 100%;
	margin: 0 auto;
	margin-top: 40px;
	padding: 20px;
	font-size: 12px;
	border-radius: 5px;
	background: repeating-linear-gradient(135deg,#fff,#fff 15px,rgba(202,231,242,0.7) 15px,rgba(202,231,242,0.7) 25px);
	position: relative;
}
.lineup_item_wrapper h3{
	font-family: 'Ranchers', cursive;
	font-size: 24px;
	font-weight: bold;

}
.lineup_item_wrapper img{
	max-width: 70%;
	height: auto;
	margin: 10px;
}
.cs{
	text-align: center;
	position: relative;
	z-index: -1;
}
.lineup table{
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border: 1px solid #333;
	margin-top: 20px;
}
.lineup table th,
.lineup table td{
	padding: 10px;
	border-collapse: collapse;
	border: 1px solid #333;
	text-align: center;
	vertical-align: middle;
}
.lineup table thead th:nth-child(1),
.lineup table thead th:nth-child(2){
	width: 30%;
}

/* modal */
.modal_click{
	display: inline-block;
	font-family: 'Potta One', cursive;
	font-size: 45px;
	color: #C080FF;
	position: absolute;
	top: 40%;
	right: 5%;
}
.modal{
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
	height: auto;
}
.modal__bg{
    background: rgba(0,0,0,0.5);
    height: 100vh;
	width: 100%;
	margin: 0 -500%;
	padding: 0 500%;
   }
.modal__content{
    background: #fff;
    padding: 40px 20px;
    position: absolute;
    top: 50%;
	left: -50%;
    transform: translate(50%,-50%);
    width: 90%;
}
.js_modal_close{
	display: block;
	font-size: 15px;
	border: 1px solid #333;
	border-radius: 3px;
	background: #ccc;
	width: 100px;
	text-align: center;
	padding: 10px 0;
	margin-top: 10px;
	float: right;
}
.js_modal_close:hover{
	font-weight: bold;
}

/* for PC */
@media screen and (min-width:768px){
	.lineup_wrapper{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}
	.lineup_item{
		width: 40%;
	}
	.lineup_item_wrapper{
		width: 100%;
		height: 200px;
	}
	#rental section .cs h3{
		font-size: 35px;
		line-height: 4.5;
	}
	
	/* modal */
	.modal__content{
	padding: 50px;
    position: absolute;
    top: 50%;
	left: -150%;
    transform: translate(150%,-50%);
	}
}


/*===rule===*/
.rules{
	padding: 0 20px;
}
.rules_inner{
	width: 100%;
}
.rules_inner h3{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	border-bottom: 4px solid rgba(202,231,242);
}
.rules_inner div{
	width: 100%;
	margin: 0 auto;
	margin-top: 40px;

}
.rules_inner ol{
	padding-left: 20px;
	list-style: square;
}


/* for PC */
@media screen and (min-width:768px){
	.rules_inner{
		display: flex;
		justify-content: space-between;
	}
	.rules_inner div{
		width: 40%;
	}
}

/*============
  touring
============*/
.touring_text{
	font-size: 16px;
	margin-top: 30px;
}
.touring_plan{
	padding: 0 20px;
}
.example{
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
}
.example h3{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	display: inline-block;
}
.star{
	display: inline-block;
	margin-left: 10px;
	font-size: 15px;
}
.frame{
	position: relative;
	margin-bottom: 15px;
}
.frame img{
	max-width: 100%;
	height: auto;
	border-radius: 5px;
}
.frame::before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 8px rgba(255,255,255,0.6);
	
	}
.example table,
.example table th,
.example table td{
	border-collapse: collapse;
	border: 1px solid #333;
	padding: 10px;
}
.example table th{
	width: 20%;
	text-align: center;
	vertical-align: middle;
	background: rgba(202,231,242,0.8);
}

/* for PC */
@media screen and (min-width:768px){
	#touring main{
		width: 960px;
		margin: 0 auto;
	}
	.touring_text{
		text-align: center;
	}
	.example{
		margin-bottom: 70px;
	}
	.example_inner{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.frame{
		max-width: 40%;
		height: auto;
		margin-bottom: 0;
	}
	.example table{
		width: 50%;
	}
	
}


/*============
  lesson.html
============*/
.lesson{
	padding: 0 20px;
}
.lesson_text{
	font-size: 16px;
	margin-top: 30px;
}
.course{
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
	border: 1px solid #333;
	border-radius: 5px;
}
.course h3{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 5;
	height: 100px;
	background: rgba(202,231,242,0.8);
	border-bottom: 1px solid #333;
	border-radius: 5px 5px 0 0;
}
.course div{
	padding: 10px;
}
.course_text{
	border-bottom: 1px solid #333;
}
.course_detail dl{
	overflow: hidden;
}
.course_detaile dt{
	float: left;

}
.course_detail dd{
	float: right;
}
.lesson_caution{
		display: block;
		width: 90%;
		margin: 0 auto;
		margin-top: 30px;
	}
/* for PC */
@media screen and (min-width:768px){
	#lesson main{
		width: 960px;
		margin: 0 auto;
	}
	.lesson_text{
		text-align: center;
	}
	.lesson_inner{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.course{
		width: 30%;
		height: auto;
	}
	.lesson_caution{
		float: right;
	}
	.lesson{
		overflow: hidden;
	}
}


/*============
  resarvation.html
============*/
#reservation section{
	padding: 0 20px;
	width: 100%;
}
.contact{
	margin-top: 80px;
}
input[type="submit"],
input[type="reset"],
input[type="email"],
input[type="date"],
input[type="text"],
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
	width: 100%;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="email"]:hover,
input[type="date"]:hover,
input[type="text"]:hover,
textarea:hover,
button:hover{
	cursor: pointer;
}
#reservation table{
	width: 100%;
	margin: 0 auto;
	margin-top: 30px;
}
#reservation table th,
#reservation table td{
	width: 100%;
	display: block;
	padding: 10px;
}
#reservation table tr th{
	height: 50px;
	background: rgba(202,231,242,0.8);
	line-height: 2;
}
#reservation table tr td{
	line-height: 3;
}
select{
	width: 30%;
}
input[type="radio"]{
	margin-right: 5px;
}
textarea{
	width: 100%;
	resize: none;
	overflow: hidden;
	line-height: 1.5;
	padding: 10px;
	position: relative;
}
.btns{
	width: 100%;
	margin-top: 20px;
	text-align: center;
}
.btns input{
	width: 30%;
	height: 50px;
	display: inline-block;
	padding: 5px 10px;
	border-radius: 3px;
	text-align: center;
	font-weight: bold;
}
.btns input[type="reset"]{
	margin-right: 30px;
	background: #F3C0AB;
}
.btns input[type="submit"]{
	background: rgba(242,239,29,0.7);
}

/* for PC */
@media screen and (min-width:768px){
	#reservation main{
		width: 960px;
		margin: 0 auto;
	}
	.btns input{
		width: 150px;
		box-shadow: 3px 3px 0 rgba(51,51,51,0.4);
		margin-bottom: 3px;
	}
	.btns input:active{
		margin-top: 3px;
		margin-left: 3px;
		box-shadow: none;
		margin-bottom: 0;
		margin-right: 20px;
	}
}