@charset "utf-8";
/* CSS Document */
/* CSSリセット */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,
pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,
strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,
caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,
figure,footer,header,hgroup,menu,nav,section,summary,time,mark,
audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;
vertical-align:baseline;background:transparent;font-weight:normal;}
body{line-height:1}article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section{display:block}
ul{list-style:none}blockquote,q{quotes:none}blockquote:before,
blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;
font-size:100%;vertical-align:baseline;background:transparent}
del{text-decoration:line-through}abbr[title],dfn[title]
{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;
margin:1em 0;padding:0}input,select{vertical-align:middle}


/*　共通CSS　*/

body{
	background-color: #ffffff;
	font: 14px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color: #222222;
	margin: 0 auto;
}

a{ 
	color: #000;
	text-decoration: none;
}
a:hover{
	color:#D4D4D4;
}
* {
    box-sizing: border-box;
}

p{
	line-height: 1.3;
}


/*header*/

#header{
	
}
.head_top{
	width: 980px;
	height: 70px;
	margin: 0 auto;
}
.head_top ul{
	display: flex;
}

.head_top li{
	width: 320px;
}

.logo{
	float: left;
	margin: 5px 0;
}
.logo img{
	width: 320px;
}
.sab{
	padding: 5px;
	font-size: 12px;
	text-align: center;
}
span.red{
	color: crimson;
}

.tel{
	padding: 5px;
	float: right;
}

.tel a{
	font-size: 1.5rem;
}

.access{
	padding: 5px;
}
.menu{
	background-color: #5ea86e;
	max-width: 100%;
    min-width: 1000px;
	height: 50px;
	clear: both;
}

.head_menu{
	width: 980px;
	margin: 0 auto;
}

.head_menu ul{
	display: flex;

}

.head_menu ul li{
	padding: 17px 7.6%;
	border-left: 1px solid #FFFFFF;
}

.head_menu ul li:nth-child(4){
	border-right: 1px solid #FFFFFF;

}


.head_menu ul li a{
	display: block;
}

/*グローバルナビゲーション*/
.spheader{
  padding:15px 10px;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 35px;
  height: 30px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

.logo_sp{
	width: 250px;
	top: -10px;
    left: 30px;
    position: absolute;
}
.logo_sp img{
	width: 100%;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background: #5ea86e;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

ul.sp_menu{
	margin: 0 auto;
	padding: 5%;
}

ul.sp_menu li{
	padding: 10px 0;
	border-bottom: dotted 1px #222222;
}


@media screen and (min-width:480px) {
  #nav-open,
	.logo_sp{
    display:none;
  }
}




#top-main {
  width: 980px;
  margin: 0 auto;
  padding: 30px 0 50px;
}

.container {
  display: flex;
}

.img-c{
	text-align: center;
	margin: 5% 0 5%;
	clear: both;
}

.img-l{
	float: left;
	margin: 0 5% 0 0;
}

.img-r{
	float: right;
	margin: 0 0 0 5%;
}

.text{
	margin: 2% 0;
}
p.name{
	padding: 5% 0 0;
}

#top-main h1{
	font-size: 1.2rem;
	font-weight: bold;
	background-color: #5ea86e;
	padding: 15px;
}
.top-main h2{
	font-size: 1.1rem;
	font-weight: bold;
	border-bottom: dotted 1px #222222;
	padding: 10px 0;
}
.main h3{
	font-size: 1.1rem;
	font-weight: bold;
	border-left: solid 10px #222222;
	padding: 10px 0 10px 5px;
	margin: 10px 0;
}

p{
	line-height: 1.5;
}

.policy{
	clear: both;
	padding: 5% 0 0;
	
}

.policy_img{
	text-align: center;
	margin-top: 5%;
}

.btn_link{
	text-align: center;
	margin: 10% 0 5%;
	clear: both;
}


/*footer*/


#footer{
	max-width: 100%;
	min-width: 980px;
	border-top: 5px solid #006a44;
	background-color: #5ea86e;
}
#footer .footer-info{
	width: 980px;
	margin: 0 auto;
	padding: 1% 0;

}

.footlogo img{
	width: 30%;
	float: left;
}

.footerinfo{
	float: right;
}
.copyright{
	font-size: 10px;
	clear: both;
	text-align: center;
}