@charset "utf-8";


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

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.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("inview.css");
*/


/* 全体の設定 
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	font-size: 13px;	/*基準となるフォントサイズ。 */
}
/*-- 画面幅900px以上の追加指定 -------------------------------------*/
@media screen and (min-width:900px) {
	html, body {
		font-size: 16px;	/*基準となるフォントサイズの上書き*/
	}
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #666;		/*全体の文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

/*リセット*/
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;}

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

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #0000ff;	/*文字色*/
	transition: 0.3s;
	word-break: break-all;
}
a:hover {
	color: #ff3399;
	opacity: 0.7;	/*マウスオン時に70%の透明度にする*/
}
a:active  { color: #0000ff; }
a:visited { color: #0000ff; }


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}

.small {font-size: 0.6em;}
.large {font-size: 2.5em; letter-spacing: 0.1em;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.pt50 {padding-top: 50px;}

/* PC/SP */
.pcBox{
	display: none;
}
.spBox{
	margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;
}
.pc_br{
	display: none;
}
.sp_br{
	display: inline-block;
}
/*-- 画面幅600px以上の追加指定 --------------------------------------------*/
@media screen and (min-width:600px) {
	.pcBox{
		display: block;
		margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;
	}
	.spBox{
		display: none;
	}
	.pc_br{
		display: inline-block;
	}
	.sp_br{
		display: none;
	}
}

/*sectionタグ、詳細ページ、フッターメニューブロックの共通設定
---------------------------------------------------------------------------*/
section,
main > article,
#footermenu {
	padding: 3% 20px;		/*上下、左右へのボックス内の余白*/
}
/*-- 画面幅400px以下の追加指定 ----------------------------------------------------*/
/* ハンバーガーメニューがコンテンツが少し重なってしまいますが、画面が狭いのでコンテンツが見える範囲を優先しました。 */
@media screen and (max-width:400px) {
	/* sectionタグ、詳細ページ、フッターメニューブロックの共通設定 */
	section,
	main > article,
	#footermenu {
		padding: 3% 10px;		/*上下、左右へのボックス内の余白*/
	}
}
/*-- 画面幅900px以上の追加指定 -------------------------------------*/
@media screen and (min-width:900px) {
	/* sectionタグ、詳細ページ、フッターメニューブロックの共通設定 */
	section,
	main > article,
	#footermenu {
		padding: 3% 80px;		/*上下、左右へのボックス内の余白*/
	}
}


/* containerブロック ---------------------------------------------------------*/
#container {
	margin: 0 auto;
	max-width: 1800px;	/*最大幅。これ以上広がらない。*/
}


/* トップページのスライドショー（vegasを使用） -------------------------------------*/
#mainimg {
    width: 100vw;
    height: 50vh;	/*高さ。画面の60%。*/
}

/*スライドショー下部にある曲線の飾り*/
#mainimg #kazari {
	position: absolute;
	bottom: 0;
	width: 100%;
}


/*----header（ロゴなどが入った最上段のブロック）------------------*/
/*ヘッダーブロック*/
header {
	background: #4bc0ed;	/*背景色*/
	position: relative;
}

/*ロゴ画像*/
header #logo {margin: 0;}

/*トップページのロゴ*/
.home header #logo {
	width: 40%;				/*ロゴの幅*/
	background: #4bc0ed;	/*ロゴの背景色*/
	border-radius: 50%;		/*円形にする指定。30pxなどにすれば角が丸くなった四角形になります。*/
	position: absolute; z-index: 1;
	bottom: -5%;	/*ヘッダーに対して、下からの配置場所の指定*/
	left: 30%;		/*ヘッダーに対して、左からの配置場所の指定*/
	border: 10px solid #fff;	/*枠線の幅、線種、色*/
}
/*-- 画面幅600px以上の追加指定 --------------------------------------------*/
@media screen and (min-width:600px) {
	/*トップページのロゴ*/
	.home header #logo {
		width: 20%;		/*ロゴの幅*/
		bottom: -20%;	/*ヘッダーに対して、下からの配置場所の指定*/
		left: 40%;		/*ヘッダーに対して、左からの配置場所の指定*/
	}
}

/*ロゴ画像（※トップページ以外）*/
body:not(.home) header #logo img {
	display: block;
	height: 45px;	/*画像の高さ。ハンバーガーメニューとの配置バランスがあるのでここでは高さで指定*/
	margin: 0 auto;	/*左右中央に配置*/
}
/*-- 画面幅900px以上の追加指定 -------------------------------------*/
@media screen and (min-width:900px) {
	body:not(.home) header #logo img {
		height: 75px;	/*画像の高さ。ハンバーガーメニューとの配置バランスがあるのでここでは高さで指定*/
	}
}



/*---- ヘッダー下のメニュー ----------------------------------------*/
/*メニューブロック全体*/
#header-menu ul {
	padding: 0;
	margin: 0 10px;	/*上下、左右へのブロックの外にとるスペース*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	font-size: 0.8em;	/*文字サイズ。親要素の80%に。*/
}

/*メニュー１個あたりの設定*/
#header-menu ul li a {
	display: block; text-decoration: none;
	padding: 20px 0;	/*上下、左右へのメニュー内の余白*/
}
#header-menu ul li {
	flex: 1;
	text-align: center;	/*中身をセンタリング*/
	margin-right: 10px;	/*メニュー同士の左右間の余白*/
}
#header-menu ul li a.current {
	background: #b8e1f0;
}

/*最後のメニューへの追加指定*/
#header-menu ul li:last-child {
	margin-right: 0;	/*右側のマージンをなくす*/
}

/*１つ目メニュー*/
#header-menu ul li:nth-of-type(1) a {
	border-bottom: 5px solid #4bc0ed;	/*下線の幅、線種、色*/
	color: #000000;	/*文字色*/
	font-weight: bold;
}

/*２つ目メニュー*/
#header-menu ul li:nth-of-type(2) a {
	border-bottom: 5px solid #4bc0ed;	/*下線の幅、線種、色*/
	color: #000000;	/*文字色*/
	font-weight: bold;
}

/*３つ目メニュー*/
#header-menu ul li:nth-of-type(3) a {
	border-bottom: 5px solid #4bc0ed;	/*下線の幅、線種、色*/
	color: #000000;	/*文字色*/
	font-weight: bold;
}

/*４つ目メニュー*/
#header-menu ul li:nth-of-type(4) a {
	border-bottom: 5px solid #4bc0ed;	/*下線の幅、線種、色*/
	color: #000000;	/*文字色*/
	font-weight: bold;
}

/*-- 画面幅600px以上の追加指定 --------------------------------------------*/
@media screen and (min-width:600px) {
	/* ヘッダー下のメニュー  メニューブロック全体 */
	#header-menu ul {
		font-size: 1em;
	}

	/*トップページのみ。２つ目メニューの右側に余白を作る。ロゴとの横並びのバランスをここで調整して下さい。*/
	.home #header-menu ul li:nth-of-type(2) {
		margin-right: 20%;
	}
}
/*-- 画面幅900px以上の追加指定 -------------------------------------*/
@media screen and (min-width:900px) {
	/* ヘッダー下のメニュー  メニューブロック全体 */
	#header-menu ul {
		font-size: 1.2em;	/*文字サイズ。親要素の120%に。*/
	}
}


/*--- menubar 開閉ブロック初期設定 ------*/
#menubar ul {list-style: none; margin: 0; padding: 0;}

/*メニューを非表示にしておく*/
#menubar {display: none;}

/*開閉用のスタイル*/
#menubar.db {display: block;}
#menubar.dn {display: none;}


/*---- メニューブロック設定 ------------*/
#menubar {
	position: fixed; overflow: auto; z-index: 100;
	left: 0px; top: 0px;
	width: 90%;		/*ブロックの幅。100%にすれば画面いっぱいに広がります。*/
	height: 100%;	    /*ブロックの高さ*/
	padding: 50px 20px 20px;	/*上、左右、下へのブロック内の余白*/
	background: #fff;			/*背景色*/
	text-align: center;			/*テキストを中央に*/
	animation: animation1 0.2s both;	/*animation.cssの、animation1を実行する。0.2sは0.2秒の事。*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順番。0,0,0は黒の事で0.2は色が20%出た状態。*/
}
/*-- 画面幅600px以上の追加指定 --------------------------------------------*/
@media screen and (min-width:600px) {
	/* メニューブロック設定 */
	#menubar {
		width: 370px;		/*ブロックの幅。*/
	}
}
/*-- 画面幅900px以上の追加指定 -------------------------------------*/
@media screen and (min-width:900px) {
	/* メニューブロック設定 */
	#menubar {
		width: 370px;		/*ブロックの幅。*/
	}
}

/*メニュー１個あたりの設定*/
#menubar a {
	display: block; text-decoration: none;
	text-align: center;		/*テキストを中央に*/
	padding: 20px;			/*メニュー内の余白*/
	border-bottom: 1px solid #383838;
	color: #666;
}

#menubar .menutxt {
	padding: 20px 5px 10px 5px;
}

/*----- ３本バー（ハンバーガー）アイコン設定 ------*/
/*開閉用のスタイル*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

/*３本バーとMENUテキストを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	left: 0px;			/*左からの配置場所指定*/
	top: 0px;			/*上からの配置場所指定*/
	background: #4bc0ed;	/*背景色*/
	padding: 20px 0px;		/*上下、左右へのブロック内の余白*/
	width: 80px;			/*幅*/
	text-align: center;		/*中身をセンタリング*/
	color: #fff;			/*文字色*/
	transform: scale(0.6);	/*作ったサイズの60%のサイズにする*/
	transform-origin: left top;	/*上のtransformの起点*/
	transition: 0.3s;
}

/*マウスオン時*/
#menubar_hdr:hover {
	filter: brightness(1.1);	/*少し明るくする*/
}

/*３本バーを囲むブロック*/
#menubar_hdr div {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	width: 30px;		/*幅（３本バーが出ている場合の幅になります）*/
	height: 30px;		/*高さ*/
	margin: 0 auto;
}

/*「MENU」の文字*/
#menubar_hdr p {
	display: none;	/*場所をとるので小さい端末では非表示にしておく*/
}

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

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

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

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

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

/*-- 画面幅900px以上の追加指定 -------------------------------------*/
@media screen and (min-width:900px) {
	/*３本バー（ハンバーガー）アイコン設定--*/
	/*３本バーとMENUテキストを囲むブロック*/
	#menubar_hdr {
		transform: scale(1);	/*小さな端末用で60%にしているのを原寸大に戻す*/
	}

	/*「MENU」の文字*/
	#menubar_hdr p {
		display: block;		/*表示させる*/
		margin: 10px 0 0;	/*上、左右、下へのマージン*/
		font-size: 0.7em;	/*文字サイズ。親要素の70%に。*/
	}

	/*「MENU」の文字をトップページ以外は非表示にする*/
	body:not(.home) #menubar_hdr p {
		display: none;
	}
}



/* mainブロック設定 
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {	
	padding: 30px 0px 50px 0px;	/*上下、左右へのブロック内の余白*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px 20px;
}

main p + p {margin-top: -10px;}

/*-- 画面幅600px以上の追加指定 --------------------------------------------*/
@media screen and (min-width:600px) {
	/*mainブロックの設定*/
	main {	
		padding: 50px 0px 50px 0px;	/*上下、左右へのブロック内の余白*/
	}
}
/*-- 画面幅900px以上の追加指定 -------------------------------------*/
@media screen and (min-width:900px) {
	/*mainブロックの設定*/
	main {	
		padding: 50px 0px 50px 0px;	/*上下、左右へのブロック内の余白*/
	}
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定　★★*/
#footermenu {
	background: #333;	/*背景色*/
	color: #999;		/*文字色*/
	font-size: 0.7em;	/*文字サイズ*/
	display: flex;		/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
}

/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: #999;	/*文字色*/
}

/*リンクテキストのマウスオン時*/
#footermenu a:hover {
	color: #ccc;	/*文字色*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 2px;
	flex: 1;
	list-style: none;
}

/*title*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #ccc;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	font-size: 1.0em;		/*文字サイズ*/
	background: #4bc0ed;	/*背景色*/
	color: #ffffff;			/*文字色*/
	text-align: left;		/*内容をセンタリング*/
	padding: 10px 40px 10px 40px;			/*ボックス内の余白*/
}

footer .foot_title {
	font-size: 1.4em;
	font-weight: bold;
}
footer .foot_copy {
	text-align: right;
}

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

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


/* 見出しの設定
---------------------------------------------------------------------------*/
h2#news {
	margin: 0;
	position: relative; 
	padding: 0px 10px 20px 50px;
	color: #000000; font-size: 2.0em;
	text-align: left; 
	background: url("../images/bg_icon01.png") no-repeat 0px 10px;
}

h2#sinryo {
	margin: 0;
	position: relative; 
	padding: 0px 10px 20px 50px;
	color: #000000; font-size: 2.0em;
	text-align: left; 
	background: url("../images/bg_icon02.png") no-repeat 0px 10px;
}

h2.type1 {
	position: relative;  /*相対位置*/
	padding: 0.5em 0.5em 0.5em 1.5em;  /*アイコン分のスペース*/
	text-align: left;	
	line-height: 1.4;  /*行高*/
	color: #1e90ff;  /*文字色*/
	border-top: dotted 1px gray;
	border-bottom: dotted 1px gray;
	background: #fffff4;
	font-size: 2.0em;
}
h2.type1:before {
	font-family: "Font Awesome 5 Free";  /*忘れずに*/
	content: "\f138";  /*アイコンのユニコード*/
	font-weight: 900;
	position: absolute;  /*絶対位置*/
	font-size: 1em;  /*サイズ*/
	left: 0.25em;  /*アイコンの位置*/
	top: 0.5em;  /*アイコンの位置*/
	color: #1e90ff; /*アイコン色*/
}


/* 各BOX 設定
---------------------------------------------------------------------------*/
/* 角丸四角枠 */
.box_kadomaru {
	margin: 0 auto 0 auto;
    border-radius: 20px;
    background-color: #9dd5ea;
    width: 90%;
    padding: 20px;
}
/*-- 画面幅600px以上の追加指定 --*/
@media screen and (min-width:600px) {
	.box_kadomaru {
		margin: 0 auto 0 auto;
		border-radius: 30px;
		background-color: #9dd5ea;
		width: 90%;
		padding: 30px;
	}
}
.kadomaru_text_box {
	margin: 0 auto 0 auto;
    padding: 10px 5px 5px 10px;
    width: 100%;
	font-size: 1.2em;
}
/*-- 画面幅600px以上の追加指定 --*/
@media screen and (min-width:600px) {
	.kadomaru_text_box {
		margin: 0 auto 0 auto;
		padding: 10px 5px 30px 5px;
		width: 95%;
		font-size: 1.2em;
	}
}

/* テキストBox枠 */
.text_box {
	margin: 0 auto 0 auto;
    padding: 10px 10px 30px 10px;
    width: 95%;
	font-size: 1.2em;
}
/*-- 画面幅600px以上の追加指定 --*/
@media screen and (min-width:600px) {
	.text_box {
		margin: 0 auto 0 auto;
		padding: 10px 10px 30px 10px;
		width: 90%;
		font-size: 1.2em;
	}
}

/* 画像表示枠 */
.img_box {
	margin: 0 auto 0 auto;
    padding: 0px 0px 10px 0px;
    width: 90%;
	text-align: center;
}

/* 地図表示Box枠 */
.GmapBox {
	margin: 0 auto 0 auto;
    padding: 0px 0px 10px 0px;
    width: 90%;
}
.GmapBox iframe {
    width: 100%; height: 450px;
}


/* Flexbox 設定
---------------------------------------------------------------------------*/
.flex_container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
}
.flex_item_400 {
	padding: 0px 0px 30px 0px;
	width: 400px;
	text-align: center;
}
.flex_item_half {
	flex-basis: 50%;
}
.flex_item_three {
	flex-basis: 33%;
}

.flex_item_profile_img {
	padding: 0px 0px 30px 0px;
	width: 90%;
	text-align: left;
}
.flex_item_profile_txt {
	padding: 0px 0px 30px 0px;
	width: 90%;
	text-align: left;
	font-size: 1.2em;
}
/*-- 画面幅600px以上の追加指定 --------------------------------------------*/
@media screen and (min-width:600px) {
	.flex_item_profile_img {
		padding: 0px 0px 30px 0px;
		width: 400px;
		text-align: left;
	}
	.flex_item_profile_txt {
		padding: 0px 0px 30px 0px;
		width: calc(90% - 400px);
		text-align: left;
		font-size: 1.2em;
	}
}


/* table 設定
---------------------------------------------------------------------------*/
table.noline {
    margin: 0 auto 20px auto; border-collapse: collapse; 
    width: 90%;
}
table.noline td.col2_type1_l{
    padding: 2px 0px 2px 5px; 
	text-align: right; vertical-align: top; 
	width: 130px;
	font-size: 1.2em;
}
table.noline td.col2_type1_r{
    padding: 2px 0px 2px 5px; 
	text-align: left; vertical-align: top; 
	width: calc(100% - 130px);
	font-size: 1.2em;
}
/* （SP用） */
@media screen and (max-width: 600px) {
	table.noline {
		margin: 0 auto 20px auto; border-collapse: collapse; 
		width: 95%;
	}
	table.noline td.col2_type1_l{
		padding: 2px 0px 2px 5px; 
		text-align: right; vertical-align: top; 
		width: 90px;
		font-size: 1.2em;
	}
	table.noline td.col2_type1_r{
		padding: 2px 0px 2px 5px; 
		text-align: left; vertical-align: top; 
		width: calc(100% - 90px);
		font-size: 1.2em;
	}
}

table.topsinryo {
	margin: 0 auto 10px auto; border-collapse: collapse; 
    border: 1px solid #4f59ff; background-color: #ffffff; 
    width: 90%;
}
table.topsinryo th.w1 {
	padding: 2px 0px 2px 5px; 
	text-align: center; vertical-align: middle; 
	border: 1px solid #4f59ff;
	font-weight: bold; background-color: #afeeee; 
	width: 30%;
}
table.topsinryo th.w2 {
	padding: 2px 0px 2px 5px; 
	text-align: center; vertical-align: middle; 
	border: 1px solid #4f59ff;
	font-weight: bold; background-color: #afeeee; 
	width: 10%;
}
table.topsinryo td{
	padding: 2px 0px 2px 5px; text-align: center; vertical-align: middle; border: 1px solid #4f59ff; 
}

table.tiryo {
    margin: 0 auto 30px auto; border-collapse: collapse; 
    width: 90%; 
    background-color: #ffffff; 
}
table.tiryo td.typeA{
	padding: 4px 0px 4px 5px; text-align: left; vertical-align: top; 
    width: 70%;
}
table.tiryo td.typeAL{
	padding: 4px 0px 4px 5px; text-align: left; vertical-align: top; 
    width: 70%;
}
table.tiryo td.typeAR{
	padding: 4px 0px 4px 5px; text-align: left; vertical-align: top; 
    width: 30%;
}
table.tiryo td.typeBL{
	padding: 4px 0px 4px 5px; text-align: left; vertical-align: top; 
	border-bottom: 1px solid #000000; 
}
table.tiryo td.typeBR{
	padding: 4px 0px 4px 5px; text-align: left; vertical-align: top; 
	border-bottom: 1px solid #000000; 
}
/* （SP用） */
@media screen and (max-width: 600px) {
	table.tiryo {
		margin: 0 auto 30px auto; 
		border-collapse: collapse; 
		width: 95%;; 
		background-color: #ffffff; 
	}
	table.tiryo td.typeA{
		display: block;
		padding: 4px 0px 4px 5px; text-align: left; 
		width: 100%;
	}
	table.tiryo td.typeAL{
		display: block;
		padding: 4px 0px 4px 5px; text-align: left; 
		width: 100%;
	}
	table.tiryo td.typeAR{
		display: block;
		padding: 4px 0px 4px 5px; text-align: left;  
		width: 100%;
	}
	table.tiryo td.typeBL{
		display: block;
		padding: 4px 0px 4px 5px; text-align: left;  
		width: 100%;
	}
	table.tiryo td.typeBR{
		display: block;
		padding: 4px 0px 4px 5px; text-align: left;  
		border-bottom: 1px solid #000000; 
		width: 100%;
	}
}

table.maproad {
	margin: 0 auto 30px auto; border-collapse: collapse;  
	width: 90%; 
}
table.maproad td.map_img{
	padding: 0px 0px 10px 0px; text-align: center; vertical-align: top; 
	font-weight: bold; width: 30%;
}
table.maproad td.map_arrow{
	padding: 0px 0px 10px 0px; text-align: center; vertical-align: middle; 
	width: 5%;
}
table.maproad td.map_img img{ 
	max-width: 100%; height: auto;
	width : auto;
	text-align: center; 
	margin: 0px auto 0px auto;
}
table.maproad td.map_arrow img{ 
	max-width: 90%; height: auto;
	width : auto;
	text-align: center; 
	margin: 0px auto 0px auto;
}
/* （SP用） */
@media screen and (max-width: 600px) {
	table.maproad {
		margin: 0 auto 30px auto;
		border-collapse: collapse;  
		margin-bottom: 10px; width: 95%;
	}
	table.maproad td.map_img{
		display: block;
		padding: 0px 0px 10px 0px; text-align: center;
		font-weight: bold; width: 100%;
	}
	table.maproad td.map_arrow{
		display: block;
		padding: 0px 0px 0px 0px; text-align: center; 
		width: 100%; height: 60px;
	}
	table.maproad td.map_img img{ 
		max-width: 100%; height: auto;
		width : auto;
		text-align: center; 
		margin: 0px auto 0px auto;
	}
	table.maproad td.map_arrow img{ 
		max-width: 100%; height: 60px;
		width : auto;
		text-align: center; 
		margin: 0px auto 0px auto;
	}
}

table.linkBox {
    margin: 0 auto 20px auto; border-collapse: collapse; 
    width: 90%;
}
table.linkBox td.col2_type2_l{
    padding: 2px 0px 2px 5px; 
	text-align: left; vertical-align: top; 
	width: 210px;
	font-size: 1.2em;
}
table.linkBox td.col2_type2_r{
    padding: 2px 0px 2px 5px; 
	text-align: left; vertical-align: top; 
	width: calc(100% - 210px);
	font-size: 1.2em;
}
/* （SP用） */
@media screen and (max-width: 600px) {
	table.linkBox td.col2_type2_l{
		display: block;
		padding: 2px 0px 2px 5px; 
		text-align: left;  
		width: 100%;
		font-size: 1.2em;
	}
	table.linkBox td.col2_type2_r{
		display: block;
		padding: 2px 0px 2px 5px; 
		text-align: left; 
		width: 100%;
		font-size: 1.2em;
	}
}

/*btnの設定  ★これは未使用
---------------------------------------------------------------------------*/
p.btn {margin: 0;}

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

/*ボタン*/
.btn a,
.btn input {
	text-decoration: none;border: none;
	display: block;
	font-size: 1em;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	background: #679ff2;	/*背景色*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする指定*/
	color: #fff;			/*文字色*/
	transition: 0.3s;		/*hoverまでにかける時間。0.3秒。*/
	padding: 0.7em 1em;		/*上下、左右へのボタン内の余白*/
	margin-top: 2em;		/*ボタンの上に１文字分のスペースを空ける*/
}

/*ボタンのマウスオン時*/
.btn a:hover,
.btn input:hover {
	cursor: pointer;			/*inputタグを使う場合に「手」のマークになるように。リンクと同じ表示になるようにという事です。*/
	opacity: 1;					/*一番上のリンク設定でhoverにopacityを指定しているので、適用されないようにする。*/
	filter: brightness(1.2);	/*少しだけ明るくする。*/
	transform: scale(1.02);		/*実寸の102%に拡大*/
}

/*ボタン内にiタグを使った場合*/
.btn i {
	margin-left: 15px;		/*テキストとの間に空ける余白*/
	opacity: 0.5;			/*透明度。色が50%でた状態。*/
	transform: scale(1.4);	/*サイズを1.4倍にする*/
}




