@charset "utf-8";

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
/* @import url("slide.css"); */


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
	height: 100%;
}

body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
background-color: #000;
	background-size: cover;
	background-position: center center;
	background-repeat: repeat-x;
	background-attachment: fixed;
	color: #333;		/*	全体の文字色*/
background-color: #000;
	line-height: 2;		/*	background-image: url(../images/bg1.png) ;行間*/
}


/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;
}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #56597a;	/*文字色*/
	transition: 0.2s;
}

a:hover {
	opacity: 0.8;	/*マウスオン時に60%の透明度にする*/
}


/*containerブロック
---------------------------------------------------------------------------*/
#container {

	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin:0 auto;
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;			/*flexボックスを使う指定*/
	align-items: flex-end;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content:center;
	padding: 5px 10px 5px 10px;
		/*	上下、左右へのヘッダー内の余白*/
		/*background-image: url("../images/head.png");背景色*/
	background: rgba(0,0,0,0.6);
	color: #333;			/*文字色*/
}


/*ヘッダーのリンクテキストの文字色*/
header a {
	color: #fff;

}

/*ロゴ画像*/
header #logo img {display: block;  }
header #logo {
	margin: 0 10px 0 30px;	/*上、右、下、左へ空けるスペース*/
	order: 1;		/*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
	 width: 780px;	/*画像の幅*/
	 padding: 3px ;

}

h1{font-size:22px;  }

/*header内の右側に並んでいるアイコン類。FontAwesomeを使用しています。
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック*/
#header-icon {
	order: 2;			/*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
		/*font-size: 18px;アイコンのサイズ。文字サイズで指定します。*/
		margin-left:30px;/*margin-left: auto;右側に寄せる為*/
	margin-top: 10px;
	width: 360px;
}

/*１個あたりのアイコン設定*/
#header-icon i {
	padding: 5px;	/*余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	left: 10px;			/*左からの配置場所指定*/
	top: 3px;			/*上からの配置場所指定*/
	padding: 10px 8px;	/*ブロック内の余白*/
	width: 40px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 40px;		/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	order: 0;			/*表示させる順番。「#menubar_hdr」「#logo」「#header-icon」それぞれに指定しており、数字の「小さな順」に左から並びます。*/
	background: #9b824b;	/*背景色 hamberger*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 26px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 7px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(6px, -7px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}


/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar {height: 0px;overflow: hidden;}
#menubar ul {list-style: none;margin:0 0 0 20px;padding: 0;}
#menubar ul li a{line-height: 1.0;}


/*小さな端末用の開閉ブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
#menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 250px;		/*メニューブロックの幅*/
	height: 100%;
	padding: 70px 0 0;	/*上、左右、下へのブロック内の余白*/
	background: rgba(0,0,0,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態の事。*/
	color: #fff;						/*文字色*/
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
#menubar.db a {
	color: #fff;	/*文字色*/
}

/*現在表示中のメニュー設定（current）*/
#menubar.db li.current a {
	background: #9b824b;	/*背景色*/
	color: #000;
}


/*メインメニュー（小さな端末、大きな端末共通設定）
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	margin-bottom: 10px;	/*下に空けるスペース。メニュー同士の上下間の余白です。*/
	font-size: 0.9em;		/*文字サイズを80%に。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
}
#menubar a {
	display: block;text-decoration: none;
	padding: 15px 10px;	/*上下、左右への余白*/
	text-align: center;	/*テキストを中央に*/
}

.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/* 点滅 */
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
.uln_wavy{text-decoration: underline wavy #666; font-weight: 600;}
.uln{text-decoration: underline; margin: 7px 0;}
.uln_b{text-decoration: underline; font-weight: bold;;margin: 0 8px;}
.uln_double{text-decoration: underline double; }
.ml_20{margin: 35px 20px; line-height: 1.4;}

/*mainブロック設定
---------------------------------------------------------------------------*/
.mainimg{ margin-bottom: 30px;
text-align: center;}
/*mainブロックの設定*/
main {
	flex: 1;
	margin: 0 30px 20px;
	}	/*ボックスの外側へ空けるスペース*/

.contents{
	max-width:1200px;
	    width: 100%;   /* スマホなど狭い時は画面いっぱい */
  margin: 0 auto;    /* 中央寄せ */
  padding: 0;   /* 画面が狭い時に端に余白を作る */
  box-sizing: border-box;
}


/*mainブロック内のh2タグmargin:0 15px 20px; rgba(255, 255, 255, 0.7);*/
main h2 {
	margin: 0;
	padding:8px 17px;
	color:#fff;
	font-weight: 600;
	background-color:#cca337;
		/*border-bottom: 4px solid #fff;下線の幅、線種、色。ベースカラーです。下のspanのborder-bottomと数字を合わせておく。*/
	font-size: 1.5em;
}

main h2::before {content: '■';
padding-right: 7px;}

.sub h2 {
	margin: 0;
	padding:3px 17px;
	color:#fff;
	font-weight: 600;
	background-color:#cca337;
	border-radius:4px;
		/*border-bottom: 4px solid #fff;下線の幅、線種、色。ベースカラーです。下のspanのborder-bottomと数字を合わせておく。*/
	font-size: 1.4em;
}

.sub h2::before {content: '■';
padding-right: 7px;}



/*mainブロック内のh2タグに下線を引くための指定。main h2 span.uline {
	display: inline-block;position: relative;
		/*border-bottom: 4px solid #9b824b;下線の幅、線種、色。アクセントカラーです。上のmain h2と数字を合わせておく。*/
	bottom: -4px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 5px 20px;	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
}*/


/*mainブロック内のh3タグmain h3{
	padding:10px 0;
	font-size: 20px;
}
*/

.endai h3{background-color: rgba(255, 255, 255, 0.5);
padding:7px 15px;
font-weight: bold;
margin:10px 10px 15px 10px;}

.endai h3::before {content: '■';
padding-right: 7px;}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}
.mg20{ margin:20px; line-height: 1.4;}
/*box1padding:20px;*/

.box1{border: 1px solid #666;

	margin:0 0 30px 0px;
background-color:#fff;
line-height: 1.2;}

.box2{
	padding:30px 10px;
	margin:0 0px 30px 0px;
background-color: #fff;
line-height: 1.2;}

.box3{border: 1px solid #666;
	padding:20px;
	margin:0 0 30px 0px;
background-color:#fff;
line-height: 1.2;}

.greet p{line-height: 1.3; font-size: 1.2rem;
}
.greet h3{font-size:1.4rem; font-weight: bold; text-align: center; color:#564621;}

.zacho{border: 1px solid #9b824b;
	padding:20px;
	margin:0 10px 30px 10px;
background-color:rgba(255,255,255,0.7);
line-height: 1.2;}

.zacho h2{
		margin: 30px 10px 20px 20px;
	font-size:18px;
	font-weight: 600;
	color:#666;
	border-bottom: 2px solid #fff;}

	.zacho h2 span.uline {
		display: inline-block;position: relative;
		border-bottom: 2px solid #9b824b;	/*下線の幅、線種、色。アクセントカラーです。上のmain h2と数字を合わせておく。*/
		bottom: -2px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
		padding: 0 20px;	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
	}
	.zacho h3{margin: 15px;
		font-size:18px;
		font-weight: 600;
		text-align: center;
		background-color:#56597a;
		color:#fff;}

		.zacho h5{margin: 15px 25px;
			font-size:14px;
			padding:5px;
			text-align: center;
			font-weight: normal;
			background-color:#ccc;
			}

		.zacho p{margin:0 30px 10px;}

		.box1 .ope{margin:0 35px 20px; color: #c00;line-height: 1.4;}

.txt_center{text-align: center; margin: 30px;}

.bg_gray{background-color: #f6e7d0; padding:3px 5px;}
.bg_cc{background-color: #ccc; padding:3px 5px; margin-right: 5px;}
 .mg10{margin: 5px 10px 5px 25px;}

 .btn-square {
   display: inline-block;
   padding: 0.5em 1em;
   text-decoration: none;
   background: #9b824b;/*ボタン色*/
   color: #FFF;
   border-bottom: solid 4px #513e31;
   border-radius: 3px;
	 max-width:600px;
 }
 .btn-square:active {
   /*ボタンを押したとき*/
   -webkit-transform: translateY(4px);
   transform: translateY(4px);/*下に動く*/
   border-bottom: none;/*線を消す*/
 }

 .p_right{text-align: right; margin-bottom: 30px; padding-right: 10px; color:#333; font-weight: bold;}

.box1 h3 {
	margin: 0;
	margin: 20px 15px 5px 15px;
color: #517354;
	font-weight: 550;
		/*ボックス内の余白*/
	/*角丸のサイズ*/

}

.box1 h3::before {content: '■';
color: #517354;
padding-right: 7px;}

.box1 h4{
	margin: 0;
	margin: 20px 10px 10px 0;
	font-weight: 550;
		/*ボックス内の余白*/
	/*角丸のサイズ*/
	color:#472c26;
	text-align: right;
	font-size:19px;
}


.box1 p{line-height: 1.8;
}

.box1 ul li{line-height: 1.4; margin-bottom: 10px;}
/* credit */

.about_contents{border:1px solid; border-radius:8px; margin:10px; padding:10px; line-height: 1.4;}
.small_08{font-size: 0.8rem; text-decoration: underline double; text-align: center;}
.small_09{font-size: 0.9rem; }
.u_double{text-decoration: underline double; color: #333;}

.credit h3{font-size: 1.2rem; font-weight: 700; text-align: center; color: #333; line-height: 1.4;}
.marker_yellow{  background-color: #ff9; padding: 2px 4px;}
.credit h3::before{content: '';}
 .credit_txt{line-height: 1.4; margin:15px 10px 20px 5px;}
.mb_10{margin-bottom: 10px;}
/*student*/
.strg{font-weight: 900;
font-family:sans-serif; }

.student{border: 1px solid #9cd3db;
	padding:10px 20px 20px;
	margin:0 10px 30px 10px;
background-color:rgba(255,255,255,0.8);
line-height: 1.2;}

.redb{color:#cc0033; font-weight: bolder; line-height: 1.4;}
.u_l_bold{color:#56597a; font-weight: bolder; line-height: 1.4; margin-bottom: 10px;  border-bottom: 1.5px solid #56597a;
      display: inline-block; font-size: 1.4rem;  margin:15px 0 10px;}
			.u_l_bold_n{color:#56597a; line-height: 1.2;  border-bottom: 1px solid #56597a;
			      display: inline-block; font-size: 1.2rem;  margin:5px 0;}
.redb2{color:#cc0033; font-weight: bolder; line-height: 1.4; font-size: 1.4rem; text-align: center; margin-bottom: 10px;}

.student ul{margin:0 40px 30px 0;
}
.student ul li{margin-bottom: 10px;
	line-height: 1.2;}

.student h3{margin: 0;
margin: 0 0 5px;
font-weight: 600;
font-family:sans-serif;
	/*ボックス内の余白*/
/*角丸のサイズ*/
font-size:20px;
color:#56597a;}

.student h4{
	margin: 0;
	margin: 15px 10px 10px 15px;
	font-weight: 550;
		/*ボックス内の余白*/
	/*角丸のサイズ*/
	color:#198797;
	font-size:19px;
}
.student h4::before {content: '■';
color: #198797;
padding-right: 7px;}

.student h5{
	font-family:sans-serif;
margin: 30px 15px 5px;
text-align: right;
font-weight: bold;
font-size:18px;
color:#56597a;}

.txtbg{font-size: 1.2rem;}

/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*１個あたりのボックス設定*/
.list {
	width: 48%;				/*幅。２列になります。*/
	margin-bottom: 10px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 5px;			/*ボックス内の余白*/
		/*背景色background: rgba(255,255,255,0.5);	*/
	color: #777;			/*文字色*/
	box-shadow: 5px 5px 7px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のh4タグ*/
.list h4 {
	margin: 10px 0;	/*上下、左右への余白*/
	color: #666;	/*文字色*/
	text-align: left;
}
.list h4 a {
	color: #666;	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}

.google-maps {
position: relative;
padding-bottom: 75%; /* これが縦横比 */
height: 0;
margin: 15px;
overflow: hidden;
border: solid 1px #aaa;
}

.google-maps iframe {
position: absolute;
width: 100% !important;
height: 100% !important;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.8rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #9b824b;		/*背景色*/
	color: #fff;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 10px;			/*ボックス内の余白*/
}

/*リンクテキスト*/
footer a {color: #fff;text-decoration: none;}

/*リンクテキストのマウスオン時*/
footer a:hover {color: #fff;}

/*著作部分*/
footer .pr {display: block;}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {

	display: flex;		/*flexボックスを使う指定margin: 10px;*/
	flex-wrap: wrap;	/*折り返す指定*/
	margin:0;
	padding: 0 20px;	/*上下、左右へのボックス内の余白 */
	background-color: #fff;

}

#new dl{}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 15px 0;		/*上下、左右へのボックス内の余白*/
	border-bottom:solid 1px #56597a;
	color: #56597a;
}

#new dt:last-of-type {
	border-bottom: none;
}
#new dd:last-of-type {
	border-bottom: none;
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}

#new dd a{color: #56597a;}

/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	border-radius: 3px;		/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 10px 40px;	/*上下、左右への余白。*/

	-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	font-size: 1rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #9cd3db;	/*背景色*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする指定*/
	color: #fff;			/*文字色*/
	transition: 0.3s;
}

/*ボタンのマウスオン時（inputタグ使用時）*/
.btn input:hover {
	cursor: pointer;
	opacity: 0.6;	/*冒頭のリンクテキストのhoverと合わせました*/
}

/*テーブル（ta-card1-parts）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta-card1-parts caption {
	font-weight: bold;		/*キャプション太字*/
	padding: 0.5rem 1rem;		/*ボックス内の余白。上下に0.5文字分、左右に1文字分。*/
	background: var(--bg-inverse-color);
	color: var(--bg-color);
	margin-bottom: 1rem;
}

/*テーブルブロック設定*/
.ta-card1-parts {
	width: 90%;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	margin: 0.5rem auto 2rem;
}

/*th（左側）、td（右側）の共通設定*/
.ta-card1-parts th,
.ta-card1-parts td {
	border: 1px solid #aaa;	/*枠線の幅、線種、var以降は色の指定でtheme.cssのborder-colorを読み込みます。*/
	text-align: left;	/*左寄せ*/
	padding: 1rem;		/*ボックス内の余白。１文字分。*/
}

/*th（左側）のみの設定*/
.ta-card1-parts th {
	background: #eee;		/*背景色。theme.cssのlight-colorを読み込みます。*/
	width: 3rem;			/*幅。13文字分。*/

}

	/*画面幅600px以下の追加指定（カード型に変更）*/
	@media (max-width:600px) {

	.ta-card1-parts,
	.ta-card1-parts caption,
	.ta-card1-parts tbody,
	.ta-card1-parts tr,
	.ta-card1-parts th,
	.ta-card1-parts td {
		display: block;
		width: 100%;
	}
	.ta-card1-parts tr {
		margin-bottom: 1rem;	/*ブロック同士の間に空けるスペース。1文字分。*/
	}
	.ta-card1-parts th {
		border-bottom: none;	/*下の線を消す。入れた方がいいならこの設定を削除。*/
	}
	.ta-card1-parts td {
		border-top: none;	/*上の線を消す。*/
	}

	}/*追加指定ここまで*/


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/


.ta1 caption {
	font-weight: bold;			/*太字に*/
	padding: 10px 5px;			/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #cca337;			/*背景色*/
	color: #fff;
			/*文字色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
		/*テーブルの一番上の線。幅、線種、色*/
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 5px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	}/*テーブルの下線。幅、線種、色*/


/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 15px 10px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/

	color:#56597a;

}

/*th（左側）のみの設定*/
.ta1 th {
background-color:#fff;
font-weight: 600;
}
.ta1 td {
background-color:#fff;
border:none;
line-height: 1.4;
}
.ta1 td span {
display: inline-block;

}

/*テーブル ta2
---------------------------------------------------------------------------*/
.sub table {border-collapse:collapse;
border:1px solid #aaa;
}

.ta2 caption {
	font-weight: bold;			/*太字に*/
	padding: 10px 5px;			/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #cca337;			/*背景色*/
	color: #fff;
			/*文字色*/
}

/*ta2テーブルブロック設定*/
.ta2 {
		border: 1px solid #56597a;	 /*テーブルの一番上の線。幅、線種、色*/
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 5px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta2 tr {
border-bottom: 1px solid #56597a;	}/*テーブルの下線。幅、線種、色*/


/*th（左側）、td（右側）の共通設定*/
.ta2 th, .ta2 td {
	padding: 15px 10px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	border: 1px solid #56597a;
	color:#56597a;

}

/*th（左側）のみの設定*/
.ta2 th {
background-color:#eee;
font-weight: 600;
}
.ta2 td {
background-color:#fff;

line-height: 1.4;
}
.ta2 td span {
display: inline-block;

}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.3);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	width: 2em;			/*幅*/
	line-height: 2em;	/*高さ*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒の事で0.8は色が80%出た状態。*/
}

.google-maps {
position: relative;
padding-bottom: 75%; /* これが縦横比 */
height: 0;
margin: 15px;
overflow: hidden;
border: solid 1px #aaa;
}

.google-maps iframe {
position: absolute;
width: 100% !important;
height: 100% !important;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #560ea0 !important;}
.color-check, .color-check a {color: #ff5151 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}
.f_small{font-size:0.8rem;}
.f_big{font-size: 1.2rem;line-height: 1.4;}
.f_bigbold{font-size: 1.2rem; font-weight: bold; line-height: 1.4;}
.f_big2{font-size: 1.3rem; font-weight: bold; line-height: 1.4;}
.f_big1{font-size: 1.1rem; font-weight: bold; line-height: 1.4;}
.inline{display:inline-block;}
.h100{height:100vh;}
.h90{height: 90vh;}


@media screen and (min-width:641px) {
.br_pc{display:none;}
}

/*---------------------------------------------------------------------------
ここから下は画面幅640px以下スマホの追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:640px) {

body{
	background-size: cover;
	.h90{height:auto;}
}

@media screen and (min-width:641px) {
.br_pc{display:block;}
}
/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	margin-left: 40px;	/*左に空けるスペース*/
	width: 300px;
			/*画像の幅*/
}
header {padding: 0 10px 5px 20px;}

h1{size:18px;}

#header-icon{display: none;}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	margin:10px;	/*ボックスの外側へ空けるスペース*/
}

/* .last td:last-child {
	border-bottom: solid 1px #9cd3db;
	width: 100%;
} */

.list{padding:0; margin:0;
}

.ta1 {
	width: 100%;

}
.ta1 th,
.ta1 td {
	border-bottom: none;
	display: block;
	width: 100%;
}

.ta2 {
	width: 100%;

}
.ta2 th,
.ta2 td {
	border-bottom: none;
	display: block;
	width: 100%;
}


.list {
	width: 100%;		/*幅。1列になります。*/
}

.box3{padding: 20px 0;}
/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------640px以下ここまで------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 15px;	/*基準となるフォントサイズの上書き*/
}
.ml_75{margin-left: 75px; line-height: 1.8;}
.ml_120{margin-left: 135px; line-height: 1.8;}
.ml_90{margin-left: 100px; line-height: 1.8;}
.ml_70{margin-left: 70px; line-height: 1.8;}
.ml_65{margin-left: 65px; line-height: 1.8;}
.ml_60{margin-left: 60px; line-height: 1.8;}
.ml_60md{margin-left: 60px; line-height: 1.4;}
.ml_90thin{margin-left: 110px;}
.ml_60thin{margin-left: 60px;}
.ml_65thin{margin-left: 65px;}
.ml_55{margin-left: 55px; line-height: 1.8;}
.ml_55thin{margin-left: 55px;}
.ml_50{margin-left: 50px; line-height: 1.8;}
.ml_50thin{margin-left: 50px;}
.ml_45{margin-left: 45px; line-height: 1.8;  font-size: 16px;}
.ml_45n{margin-left: 45px; line-height: 1.8;}
.ml_45thin{margin-left: 45px;}
.ml_40{margin-left: 40px; line-height: 1.8;}
.ml_40md{margin-left: 40px; line-height: 1.4;}
.ml_40thin{margin-left: 40px; }
.ml_35{margin-left: 35px; line-height: 1.8;}
.ml_25{margin-left: 25px; line-height: 1.8; margin-bottom: 30px;}
.ml_20l{margin-left: 20px; line-height: 1.8;}
.ml_15{margin-left: 15px; line-height: 1.8;}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
header #logo {
	margin: 0;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*ハンバーガーメニューを非表示にする*/
#menubar_hdr {display: none;}


/*menubarブロック設定PC
---------------------------------------------------------------------------*/
#menubar {
	width: 240px;				/*メニューブロックの幅*/
	top: 100px;		/*左から、上からの配置場所指定*/
	height: calc(100vh - 100px);	/*メニューブロックの高さ。上の行のtopの数値(116px)を引いた高さになります。*/
	position:absolute;		/*	スクロールしても固定表示させる設定*/
}

/*マウスオン時*/
#menubar:hover {
	overflow: auto;	/*高さ以上のコンテンツ量の場合に自動でスクロールバーを出します*/
}

#menubar li a {
	background: #9b824b;	/*背景色*/
	color: #eee;
}

/*現在表示中のメニュー設定（current）*/
#menubar li.current a {
	background: #cca337;	/*背景色*/
	color: #333;		/*文字色*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	margin: 20px 30px 100px 260px;	/*上、右、下、左へのブロックの外にとるスペース*/
}


/*「お知らせ」ブロック
--------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 10em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}



/*記事(dd)設定*/
#new dd {
	width: calc(100% - 10em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}


.ta2 th {
	width: 20%;		/*幅*/
}



/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
.list {
	width: 48%;				/*幅。２列になります。*/
	margin-bottom: 10px;	/*ボックス同士の上下間に空けるスペース*/
	padding: 5px;			/*ボックス内の余白*/
		/*背景色background: rgba(255,255,255,0.3);	*/
	color: #777;			/*文字色*/
	box-shadow: 5px 5px 7px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

}

/*　900以上ここまで　*/


/*---------------------------------------------------------------------------
ここから下は画面幅1200px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1200px) {


/*listブロック
---------------------------------------------------------------------------*/
/*１個あたりのボックス設定*/
/* .list {
	width: 45%;	} 	/*幅。４列になります。*/



/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}
