﻿@charset "utf-8";
/***** デフォルトはスマートフォン *****/
html{
	font-family: 'New Tegomin', serif;
	font-family: "Hannari", serif;
	font-weight: normal;
	color: white;
}

body{
	background-color: black;
}

header{
	text-align: center;
	padding-top: 20px;
}
.header_title{
	text-align: center;
}
.header_title_img{
	width: 100%;
}
nav{
	text-align: center;
}
.nav_ul{
	display: flex;
	flex-flow: column;
	margin: 1rem 0;
}
.nav_li{
	 flex-grow: 1;
}
.nav_li a{
	display: block;
	width: 100%;
	padding: 10px 20px;
	text-align: center;
	color: yellow;
	font-size: 1.5rem;
}
.nav_li a:hover{
	background-image: url("./img/h2bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom: 1px solid red;
}
.current_nav{
	text-decoration: none;
	border-bottom: 1px solid red;
	background-image: url("./img/h2bg.png");
	background-repeat: no-repeat;
	background-size: cover;
}
main{
	width: calc(100% - 10px);
	margin: 50px auto 0 auto;
	display: flex;
	flex-flow: column;
	text-align: center;
}
.common_h1{
	text-align: left;
	font-size: 1rem;
	padding-left: 1rem;
}
section{
	padding: 5px;
}
.sub_title{
	font-size: 1.5rem;
	margin: 20px;
	padding: 10px 0;
	border-radius: 20px;
	color: white;
	background: rgba(0, 0, 0, 0.8);
	background-image: url("./img/h2bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}
.cont_text_base{
	text-align: left;
	padding: 1rem;
	background-color: black;
}
.cont_text_hscrool{
	text-align: left;
	background-color: black;
	height: 30rem;
	overflow-y: scroll;
}
.h3{
	margin: 1.2rem 0 0.5rem 0;
	color: lemonchiffon;
}
.mini_title{
	display: inline-block;
	line-height: 1;
	clip-path: polygon(70% 0, 0 20%, 0 80%, 70% 100%, 100% 50%);
	background: linear-gradient(white, lightslategray, silver);
	padding: 15px 40px 15px 10px;
	margin: 0 0 10px 0;
}
.mini_text{
	margin: 0 0 40px 0;
	color: white;
}
.mini_text{
	padding: 10px 5px;
}
.common_flex{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 1rem 0;
}
.img_border{
	border: 1px solid white;
}
.youtube_div{
	margin: 1.5rem 0;
	color: white;
	background: black;
}
.youtube_div a{
	display: inline-block;
	color: white;
	margin-bottom: 1rem;
}
.common_flex_item{
	width: 49%;
	border: 1px white solid;
}
.common_flex_item2{
	border: 1px white solid;
}
.img_border{
	border: 1px white solid;
	margin-top: 1rem;
}
aside{
	margin: 30px 0;
}
.aside_banner{
	width: 100%;
	display: block;
	margin: 0 0 10px 0
}
.aside_banner img{
	width: 100%;
}
.img_figcaption{
	text-align: center;
	margin: 1.5rem 0 0.5rem 0;
}
.yoyaku_form{
	text-align: center;
	margin: 0 0 2rem 0;
}
.yoyaku_text{
	padding: 0 0 1rem 0;
	color: yellow;
}
footer{
	padding: 30px 0 30px 0;
	text-align: center;
	background-color: #004d25;
}
.footer_h2{
	font-size: 2.5rem;
	color: #ff0000;
}
.address{
	color: white;
}
.tel{
	text-decoration:underline;
	text-decoration-color: white;
	color: white;
}
.tel:hover {
	color: red;
}
.copyright{
	margin-top: 0.5rem;
	font-size: 0.8rem;
	color: white;
}
.map{
	filter: grayscale(1);
}
/* ============= お問い合わせ    ===============*/
.cntactus_border{
	margin: 5rem auto;
	width: 98%;
}
.cntactus_horizontal_th{
	position: relative;
	text-align: center;
	padding: 10px;
	background: #004d25;
	line-height: 1;
}
.cntactus_horizontal_td{
	border-top: none;
	line-height: 1.5;
	margin-bottom: 10px;
	background: white;
	text-align: center;
	padding: 8px 0;
}
.type{
	margin-top: 0.5rem;
	font-size: 0.8rem;
}
.err_msg{
	color: red;
	font-size: 2rem;
}
/* ==========　送信ボタン =================*/
	.send-button-div{
		 margin: 20px 0px 10px 150px;
	}
	.send-button{
		background-color: green;
		color: #fff;
		font-size: 1rem;
		padding: 3px 15px 3px 15px;
	}
	.send-button:hover {
		background-color: #59b1eb;
	}
/**==================================================**/
/**=          画面サイズ768px以上の指定              **/
/**==================================================**/
@media screen and (min-width:768px){
	.header_title_img{
		width: 768px;
	}
	.nav_ul{
		justify-content: flex-start;
		flex-flow: row;
	}
	main{
		width: calc(100% - 20px);
		display: flex;
		flex-flow: row;
		justify-content:space-between;
	}
	article	{
		width: calc(100% - 200px);
	}
	section	{
		width: calc(100% - 20px);
		padding: 10px 0;
	}
	aside{
		width: 200px;
		margin: 0;
	}
	.sub_title{
		width: calc(100% - 20px);
		margin: 20px auto;
	}
	.nav{
		font-size: 2rem;
	}
	.tel{
		pointer-events: none;
		text-decoration: none;
	}
/* ============= お問い合わせ    ===============*/
.cntactus_border{
	width: 50%;
}
}
/**==================================================**/
/**=          画面サイズ1024px以上の指定              **/
/**==================================================**/
@media screen and (min-width:1024px){
	.header_title_img{
		width: 1024px;
	}
	main{
		width: 1024px;
	}
	article{
		width: 824px;
	}
	aside{
		width: 200px;
	}
	.sub_title{
		width: calc(100% - 20px);
		margin: 20px auto;
	}
}