@charset "utf-8";
/* CSS Document */
/*　■■■■■■■■■ ヘッダ ■■■■■■■■■　*/
header {
	position:fixed;
	z-index:10;
	top:0px;
	left:0px;
	margin: 0 auto;
	width: 100%;
	height:60px;
	background: #FFFFFF;

}
/* タイトル */
#title {
	display: flex;
	height: auto;
}
#title > div:nth-of-type(1) {
	width: 15%;
}
#title > div:nth-of-type(2) {
	width: 85%;
	padding-left: 10px;
}
#title > div:nth-of-type(3) {
	display: none;
}
#title .jsod {
	margin: 5px 0;
	padding: 5px 0 3px;
	font-size: 120%;
	transform: scale(1,1.5);/*（ X軸 , Y軸 ）の並びで、「1」を100％として指定*/
}
#title h1 {
	margin: 5px 0 0;
	font-size: 120%;
}
#title .ttl_en {
	font-weight: bold;
	font-size: 60%;
}
/*■■■■ハンバーガーメニュー（ナビゲーションドロワー）■■■■*/
#nav-drawer {
	display: block;
	position: absolute;
	top: 10px;
	right: 20px;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  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;
}
#nav-open p {
	margin: 17px 0 0 -3px;
	font-size: 80%;
}
/*閉じる用の薄黒カバー*/
#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: 70px;
	left: 0;
	z-index: 9999;/*最前面に*/
	padding: 10px;
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 300px;/*最大幅（調整してください）*/
	height: 80%;
	background: #1e496f;/*背景色*/
	color: #FFFFFF;
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(210%);
	transform: translateX(210%);/*右に隠しておく*/
	}
#nav-content_temp {
  overflow: auto;
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 300px;/*最大幅（調整してください）*/
  height: 80%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(210%);
  transform: translateX(210%);/*右に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}
#nav-input:checked ~ #nav-content, #nav-input:checked ~ #nav-content_temp {
  -webkit-transform: translateX(0%);
  transform: translateX(50%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
/*メニューの中身*/
#nav-content a {
	color: #FFFFFF;
}
#nav-content ul.jpen {
	display: none;
}
#nav-content ul.jpen li {
	float: left;
	margin: 0 10px 0 0;
}
#nav-content ul.jpen:after {
	content: "";
	clear: both;
	display: block;
}
#nav-content ul.nv_nav img {
	margin-top: 10px;
	width: 30px;
	height: 30px;
}
#nav-content ul.nv_nav li p {
}
#nav-content ul.nv_nav li li {
	margin: 0 0 0 20px;
	font-size: 85%;
}
#nav-content ul.nv_top {
	margin: 50px 0 0;
}
/*　■■■■■■■■■ コンテンツ（スライド） ■■■■■■■■■　*/
/* トップイメージ */
/* 全体のスタイル */
.swiper-container_pre {
}
.swiper-container {
	width: 100%;
	height: 150px;
/*	display: none;*/
}
.swiper-wrapper {
/*	margin-top:20px;
	width: 100%;
	height:200px;
	background: #DDDDDD;*/
}
/* 全スライド共通スタイル */
.swiper-slide {
	height: auto;
}
/* 6枚1-6 */
.swiper-slide:nth-child {
	background-size: contain;
	background-repeat: no-repeat;
}
/*新着情報*/
#news {
	display: block;
	position: relative;
	top: 0px;
	left: 0;
	margin: auto;
	z-index: 5;
	padding: 10px;
	width: 90%;
	height: 400px;
}
#news .timeline {
	margin-bottom: 40px;
	width: 100%;
	overflow:auto;
}
#news .timeline dl {
	min-width: 100%;
}
#news div:nth-of-type(2) {
	width: 100%;
	text-align: center;
}
#news div:nth-of-type(2) img {
	margin-top: 10px;
	width: 200px;
	height: auto;
}
/*バナー広告*/
ul.br_ad {
	width: 100%;
	margin: 0px 0 0 20px;
}
/*　■■■■■■■■■ フッタ ■■■■■■■■■　*/
/*フッター*/
footer {
	margin: 350px auto 0;
	padding: 10px 0;
	width: 100%;
}
footer .kensaku_mb {
	display: block;
}
footer nav {
	display: none;
}
#toi {
	display: block;
	margin: 0 0 30px;
}
footer .copy {
	text-align: center;
	font-size: 90%;
	line-height: 110%;
}
/*　■■■■■■■■■ コンテンツ（テンプレート） ■■■■■■■■■　*/
#con_temp {
	margin: 0;
	width: 100%;
	overflow: hidden;
}
#con_temp h2 {
	width:75%;
	margin: 0;
	padding:50px;
	font-size:250%;
	font-weight:bold;
	background:#DDDDDD;
	text-align: center;
	color: #555555;
}
/*　■■■■■■■■■ 役員一覧 ■■■■■■■■■　*/
#yakuin {
	margin: 0 0 0px 0px;
	padding: 0 0 0 0px;
	width: 100%;
/*	background: #EDC8C9;*/
}
/*　■■■■■■■■■ 会則 ■■■■■■■■■　*/
#kaisoku {
	margin: 0 0 0px 0px;
	padding: 0 0 0 0px;
	width: 100%;
/*	background: #EDC8C9;*/
}
/*　■■■■■■■■■ 問い合わせ ■■■■■■■■■　*/
#contact {
	margin: 0 auto;
	width: 100%;
/*	background: #E7F4B7;*/
}
#contact .box {
	margin: 20px 0;
	padding: 10px;
	border: solid 1px;
}
#contact dl {
	margin: 30px 0;
}
#contact dl dt {
	float: none;
}
#contact dl dd {
	margin: 0 0 10px 0em;
}
#contact .susumu {
	text-align: center;
}
#contact .susumu > input {
	margin-right: 20px;
}
