@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");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*画面幅900px以上の追加指定ここまで*/


body {
	font-family: "Roboto", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif!important;
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #232323;		/*文字色*/
	line-height: 2;		/*行間*/
	animation: opa1 0.3s 0.5s both;	/*0.5秒の間だけ非表示にし、その後0.3秒かけてフェードイン表示。上部のメインメニューのデフォルトが一瞬見えてしまうのを回避する為の応急措置です。*/
}

/*リセット*/
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: 800px;
    width: 100%;
    margin: 30px auto;
    display: block;
}
/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 3rem;
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #00173d;		/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	color: #00173d;	/*文字色*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 2200px;				/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: inherit;
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	padding: 0 30px;				/*ヘッダー内の余白。上下、左右への順番。*/
	height: 120px;					/*ヘッダーの高さ*/
	position: fixed;				/*スクロールしても動かないようにする指定。*/
	z-index: 1;						/*スクロール中、コンテンツの上になるように*/
	width: 100%;
	background: #FFF;
}

/*トップページ以外のヘッダーブロック*/
body:not(.home) header {
	background: linear-gradient(#333, rgba(0,0,0,0.7));	/*背景グラデーション。0,0,0は黒ことで0.7は色が70%出た状態。*/
}

	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:600px) {

	/*ヘッダーブロック*/
	header {
		padding: 0 20px 0 3px;	/*ヘッダー内の余白。上下、左右への順番。*/
		height: 60px;		/*ヘッダーの高さ*/
		width: 100%;
	}

	}/*画面幅600px以下の追加指定ここまで*/


/*ロゴ*/
#logo img {display: block;width:auto;max-width: 20%;}
#logo {
	max-width: 50%;
	width: 399px;	/*ロゴ画像の幅*/
}
	@media screen and (max-width:600px) {
#logo {
    max-width: 90%;
    margin: 0;
    }
}
/*スライドショー（vegasを使用）
ここでは、3:2の画像比率（2÷3=0.6666）を読み込む指定を行なっています。
異なる画像比率にしたい場合、#mainimg-boxのpadding-topの数字を変更します。2:1にするなら50%です。*/
#logo a{
	display: flex;
	justify-items: center;
    align-items: center;
    text-decoration: none;
}
#logo p{
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 0.8;
}
#logo p span{
	font-size: 0.5em;
	font-weight: normal;
}
@media screen and (max-width:600px) {
#logo p{
    font-size: 1em;
}
}
/*---------------------------------------------------------------------------*/
#mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 57.66%;
	position: relative;z-index: -1;
}
#mainimg {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.catch{
    position: absolute;
    z-index: 1;
    top: 55%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.catch .text02{
	margin-left: 10%;
}
@media screen and (min-width:1700px) {
#mainimg-box {
	padding-top: 52%;
}
}
@media screen and (max-width:1000px) {
.catch{
    position: absolute;
    z-index: 1;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
}
}
@media screen and (max-width:560px) {
#mainimg-box {
    padding-top: 105.66%;
}
#mainimg {
	height: 100%;
}
.catch {
    position: absolute;
    z-index: 1;
    top: 60%;
    left: 20%;
    transform: translate(-12%,-50%);
}
}
/*メニューブロック設定
---------------------------------------------------------------------------*/
#menubar a {
display: block;
text-decoration: none;
color: #222;
}
#menubar ul{
list-style: none;
margin: 0;
padding: 0;
font-family: inherit;
}
/*#menubar ul li::before{
	content: "\200B";
    float: left;
	font-family: "Font Awesome 5 Free" !important;
}*/
#menubar.d-n, #menubar_hdr.d-n, #menubar .ddmenu_parent ul {display: none;}
#menubar.d-b {display: block;}
#menubar_hdr.d-b {display: flex;}
#menubar {
	position: relative;z-index: 1;	/*スライドショーがある場合に下に隠れないようにするため*/
	font-size: 18px;	/*文字サイズ。端末サイズで文字サイズが変わると不具合が出る場合があるので、ここで統一しています。*/
}

/*ドロップダウンメニューのリンクタグ*/
#menubar .ddmenu {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	content: "\f078";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
	display: inline-block;
	transform: scale(0.7);	/*元々のサイズの70%に。*/
	font-family: "Font Awesome 5 Free"; 
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
.p #menubar > nav > ul {
	display: flex;		/*flexボックスを使う指定*/
	margin-left: 30px;	/*左側にとるスペース。ロゴとの間の間隔を調整します。*/
	margin-right: 35px;
	font-size: 0.9rem;	/*文字サイズ。85%。*/
	/*letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
    justify-content: end;
}

/*メニュー１個あたりの設定*/
.p #menubar a {
	padding: 10px;	/*メニュー同士の余白*/
	color: #222;
}

/*現在表示中（current）のメニュー*/
.p #menubar li.current > a {
	color: #222;	/*文字色*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.p #menubar ul ul {
	position: absolute;z-index: 100;
	border-radius: 10px;	/*角を丸くする指定*/
	overflow: hidden;
	text-align: center;		/*文字をセンタリング*/
	color:#222;			/*文字色*/
}

/*メニュー１個あたり*/
.p #menubar ul ul a {
	color: #222;
	background:#fff;/* rgba(227,254,255,1.0);	/*背景色。255,255,255は白のことで0.8は色が80%出た状態*/
	padding: 10px 20px;/*上下、左右へのメニュー内の余白*/
}


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

/*メニュー１個あたりの設定*/
.s #menubar a {
	color: #222;
	padding: 10px;		/*メニュー内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 40px;			/*右からの配置場所指定*/
	top: 40px;				/*上からの配置場所指定*/
	padding: 14px 10px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:800px) {
	
	/*３本バーを囲むブロック*/
	#menubar_hdr {
		right: 10px;		/*右からの配置場所指定*/
		top: 6px;			/*上からの配置場所指定*/
	}
	
	}/*画面幅600px以下の追加指定ここまで*/
	
	
/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;			/*アニメーションにかける時間。0.3秒。*/
	border-top: 2px solid #232323;	/*バーの色。線の幅、線種、色*/
}

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

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

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

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}
@media screen and (max-width:900px) {
	#menubar nav{
	  display: flex;
	  flex-direction: column; /* 縦並び */
	}
	#menubar nav .menu1 {
    order: 2;
  }
  	#menubar nav .menu2 {
    order: 1;
}
}

/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
.contents {
	flex: 1;
	padding: 30px;	/*コンテンツ内の余白*/
}

/*トップページ以外のコンテンツブロック*/
body:not(.home) .contents {
	padding-top: 150px;	/*上にとる余白。headerがfixedなので、ここの設定がないとheaderに重なってしまいます。*/
}
.sp{
	display: none;
}
	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:600px) {
	
	/*コンテンツブロック*/
	.contents {
		padding: 10px;	/*コンテンツ内の余白*/
	}
	
	/*トップページ以外のコンテンツブロック*/
	body:not(.home) .contents {
		padding-top: 100px;	/*上にとる余白*/
	}
	.sp{
		display: inherit;
	}
	.pc{
		display: none;
	}
	}/*画面幅600px以下の追加指定ここまで*/


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	margin: 0 3%;	/*ブロックの外側に空けるスペース*/
}

/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
.main {
	margin-bottom: 30px;		/*ボックスの下に空けるスペース。subとの間の余白です。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*カラムで使う為の指定*/
	/*main.column {
		/*display: flex;	/*flexボックスを使う指定*/
		/*justify-content: space-between;	/*並びかたの種類の指定*/
	/*}
	
	/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
	.main {
		margin: 0 auto;
		order: 2;					/*並び順。数字の小さい順番に表示されます。*/
		width: 100%;/*calc(100% - 260px);	/*幅。ここの280pxの数字は下の.subの幅(230px)と、左右ブロックの間の余白(30px)を追加したものです。*/
		max-width: 1400px;
	}
	
	/*2カラムの中にある.sub要素*/
	.sub {
		order: 1;		/*並び順。数字の小さい順番に表示されます。*/
		width: 230px;	/*幅*/
	}

	}/*画面幅900px以上の追加指定ここまで*/


/*h2タグ
---------------------------------------------------------------------------*/
/*h2タグ全体*/
.contents h2 {
	padding: 10px 1rem;
	align-items: center;
	margin: 0 0 1rem;		/*h2の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.3rem;		/*文字サイズ*/
	position: relative;		/*ulineを配置する為に必要な指定*/
	font-weight: bold;	/*デフォルトの太字を標準に*/
	border-bottom: 2px solid #555;	/*薄い色の線の幅、線種、色*/
	color: #00173d;
	font-family: 'Noto Sans Japanese', sans-serif;
}

/*アクセントラインの設定*/
.contents h2 .uline {
	display: inline-block;position: relative;
	padding: 10px 1rem;	/*h2内の余白。上下、左右への順番。*/
	bottom: -2px;		/*濃い線を薄い線に重ねる為の指定。枠線の幅と合わせます。*/
	border-bottom: 2px solid #49bbfe;	/*濃い色の線の幅、線種、色*/
}

/*右側の装飾文字の設定*/
.contents h2 .small {
	font-size: 0.6em;
	opacity: 0.7;
	margin-right: 1rem;
}
.contents .ttl{
    margin: 0 auto;
    margin-bottom: 2em;
    text-align: center;
    display: flex;
}
.contents .ttl h2 {
    /*font-family: "vdl-v7mincho", sans-serif;*/
    font-weight:bold;
    font-style: normal;
    letter-spacing: 2px;
    position: relative;
    line-height: 0.6em;
    color: #00173d;
    padding: 0 55px;
    display: block;
    border-bottom:none;
    margin: auto;
}
.contents .ttl h2 span {
    font-size: 0.4em;
}
.contents .ttl h2:before, .contents .ttl h2:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 2px;
    border-top: solid 1px #00173d;
}
.contents .ttl h2:after {
    right: 0;
}
.contents .ttl h2:before {
    left: 0;
}
	@media screen and (min-width: 1025px){
	.contents .ttl h2 {
	    font-size: 2.3em;
	}
	}
	@media screen and (max-width:600px) {
	.contents .ttl h2 {
		font-size: 2em;
	}
	}
/*h3タグ
---------------------------------------------------------------------------*/
.contents h3 {
	margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.2rem;	/*文字サイズ*/
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
	border-bottom: 2px solid #555;	/*薄い色の線の幅、線種、色*/
	color: #00173d;
	font-family: 'Noto Sans Japanese', sans-serif;
}


/*pタグ
---------------------------------------------------------------------------*/
.contents p {
	margin: 0 1rem 2rem;	/*pの外側にとるスペース。上、左右、下への順番。*/
}

/*微調整*/
.contents p + p {
	margin-top: -1rem;	/*段落が続いた場合に、少し上に詰める。*/
}


/*sub,sideブロック設定
---------------------------------------------------------------------------*/
.contents .sub h3::before, .contents .side h3::before {border: none;padding: 0;}
/*ブロック内のh3タグ*/
.contents .sub h3, .contents .side h3 {
	margin: 0;border: none;
	font-weight: normal;
	font-size: 1.1rem;
	background: #49bbfe;	/*背景色*/
	color: #fff;		/*文字色*/
	text-align: center;	/*内容をセンタリング*/
	padding: 0.5em;		/*タグ内の余白*/
}
.contents .sub h3 a, .contents .side h3 a {color: inherit;}


/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}

/*メニュー１個あたり*/
.submenu li {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、色。0,0,0は黒の事で0.1は色が10%出た状態。*/
}
.submenu a {
	display: block;text-decoration: none;
	background: #222;		/*背景色*/
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
}

/*アイコン（Font Awesome）*/
.submenu a::before {
	transition: 0.3s;
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0da";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #ABABAB;			/*アイコンの色*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
}

/*マウスオン時のアイコン設定*/
.submenu a:hover::before {
	color: #666;			/*アイコンの色*/
}


/*box1設定（このテンプレートでは、2カラム時のsubブロックでのみ使用しています）
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.box1 {
	background: rgba(255,255,255,0.2);	/*背景色。255,255,255は白の事で0.2は色が20%出た状態。*/
	padding: 10px;					/*ボックス内の余白*/
	border-radius: 5px;				/*角を丸くする指定*/
	margin-bottom: 1rem;			/*ボックスの下に空けるスペース*/
}

/*box1内で使った場合、下のマージンをなくす*/
.sub .box1 .submenu {
	margin-bottom: 0;
}


/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footermenu {
	margin: 0;
	padding:2em 20px;		/*ブロック内の余白*/
	text-align: center;	/*テキストを中央に*/
	font-size: 0.9rem;	/*文字サイズ。bodyのfont-sizeの80%です。*/
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;	/*簡易的に横並びにする*/
}
#footermenu li a{
	text-decoration: none;
	border-left: 1px solid #aaa;
	padding: 0 0.5em;
	color: #222;
}
#footermenu li:first-child a {
    border-left: none;
}
	@media screen and (max-width: 1024px){
	#footermenu {
	    padding: 1em 0;
	    display: flex;
	    flex-wrap: wrap;
	    text-align: left;
	    font-size: 1em;
	}
	#footermenu li {
	    width: 44%;
	    margin: 0 3%;
	    border-bottom: 1px solid #ccc;
	}
	#footermenu li a {
	    display: block;
	    padding: 0.7em 0.5em;
	    border-left: none;
	}
	}
	@media screen and (max-width: 600px){
	#footermenu {
	    display: none;
	}
}
/*フッター設定
---------------------------------------------------------------------------*/
footer .main{
	display: flex;
	justify-content: space-between;
}
footer address {
    font-size: 1.2em;
    margin-left: 1em;
    font-style: normal;
    text-align: left;
}
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	color: #fff;
    background: #00173d;
}

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

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


@media only screen and (min-width: 1025px){
	footer .foot-address {
	    width: 60%;
	    display: flex;
	    align-items: flex-start;
	}
	footer .foot-address img{
		display: block;
		width: 20%;
		max-width: 71px;
		height: auto;
	}
	footer .foot-address .foot_logo{
		font-weight: bold;
	    font-size: 1.5em;
	    margin: 0 30px 0 0;
        text-align: left;
        line-height: 0.8;
        padding-top: 0.5em;
	}
	footer .foot-address .foot_logo span{
		font-weight: normal;
	    font-size: 0.5em;
	}
}
@media only screen and (max-width: 1024px){
	footer address {
		margin: 2em 0;
	}
}
@media only screen and (max-width: 800px){
	footer .main{
		display: block;
		margin-bottom: 0;
	}
	footer .foot-address img{
		margin: auto;
		display: block;
	}
	footer .foot-address .foot_logo{
		font-weight: bold;
	    font-size: 1.8em;
        line-height: 1;
        margin-top: 10px;
	}
	footer .foot-address .foot_logo span{
		font-weight: normal;
	    font-size: 0.5em;
	}
	footer address{
	    margin: 2em 0 3em;
	    text-align: center;
	}
}
/*.listブロック共通
---------------------------------------------------------------------------*/
.list {
	position: relative;
}

/*figure画像*/
.list figure {
	margin-bottom: 2rem;
}


/*３列タイプのボックス
---------------------------------------------------------------------------*/
.content{
	padding-top: 5em;
}
/*ボックス１個あたり*/
.list-grid .list {
	margin-bottom: 1rem;	/*ボックス同士の上下間に空けるスペース*/
	/*padding: 20px;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*リンクテキストの文字色*/
.list-grid .list a {
	color: inherit;	/*親要素の文字色を使う*/
	display: block;
    text-decoration: none;
}
.list-grid .list:hover{
    background: #ADC9D8;
    color: #000;
}
.list-grid .list .fas:hover{
    color: #000;
}

/*ボックス内のh4タグ*/
.list-grid .list h4 {
	margin: 0;
	/*font-family: "vdl-v7mincho", sans-serif;*/
}

/*ボックス内のpタグ*/
.list-grid .list p {
	margin: 0 !important;
	font-size: 0.8em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/*ボックス内のfigure画像*/
.list-grid .list figure {
	margin-bottom: 1rem;	/*下に空けるスペース*/
}
.list-grid .list .fas{
	color: #627799;
	padding-right: 0.5em;
	font-size: 1.8em;
    vertical-align: middle;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*listブロック全体を囲むブロック*/
	.list-grid {
		display: flex;		/*flexボックスを使う指定*/
		flex-wrap: wrap;	/*折り返す指定*/
	}
	.list-grid .list h4 {
	    font-size: 1.4em;
	    text-align: center;
	}
	/*１個あたりのボックス設定*/
	.list-grid .list {
		width: 32%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
		height: 100px;
	    line-height: 100px;
	}
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid .list:nth-of-type(3n) {
		margin-right: 0;
	}
	.list-grid .list_50 {
		width: 49%;			/*幅。2列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid .list_50:nth-of-type(2n) {
		margin-right: 0;
	}
	
	/*ボックス内のtextブロック*/
	.list-grid .list .text {
		flex: 1;
	}

	}/*画面幅900px以上の追加指定ここまで*/
	@media screen and (max-width:1050px) {
	.list-grid .list h4 {
	    font-size: 0.8em;
	}
	}
	@media screen and (max-width:900px) {
	.list-grid .list{
	height: 63px;
	line-height: 63px;
	}
	.list-grid .list h4 {
	    font-size: 1em;
	}
	.list-grid .list .fas{
	padding:0 1em;
	}
	}
	@media screen and (max-width:600px) {
	.list-grid .list h4 {
    font-size: 1.2em;
	}
	}
	@media screen and (max-width:560px) {
	.content{
	padding: 3em 3% 0;
	}	
	}
	/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.back_gray{
	background: #f0f0f0;
	margin-top: 3em;
}
.news_events{
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}
.news_events section{
	width: 48%;
}
.news{
	padding: 3em 0;
}
.new {
	margin: 0 auto;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding:1rem;	/*上下、左右へのボックス内の余白*/
    background: #fff;
    font-size: 0.9em;
    font-family: "Font Awesome 5 Free";
    width: 100%;
    max-width: 1200px;
}

/*日付(dt)、記事(dd)共通設定*/
.new dt,
.new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
	border-bottom: 1px dotted #c9c9c9;
}
.new dt:nth-last-child(2){
	border-bottom: none;
}
.new dd:last-child{
	border-bottom: none;
}

/*日付(dt)設定*/
.new dt {
	width: 8em;	/*幅。8文字(em)分*/
}

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

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

.btn_hist a{
	border: 1px solid #273b5b;
    color: #273b5b;
    text-decoration: none;
    padding: 0.2em 1.2em;
    margin-top: 20px;
    display: block;
    width: 50%;
    max-width: 160px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9em
}


	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	/*日付(dt)設定*/
	.new dt {
		width: 8em;	/*幅。14文字(em)分。アイコン分も含んだ幅にします。*/
		display: flex;	/*flexボックスを使う指定*/
		justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
	}
	/*日付の横のマーク（共通設定）*/
	.new dt span {
		display: inline-block;	/*表示させる*/
		width: 7em;				/*幅。7文字(em)分。*/
		background: #999;		/*背景色*/
		color: #fff;			/*文字色*/
		font-size: 0.8em;		/*文字サイズを80%に。*/
		text-align: center;		/*文字をセンタリング*/
		margin-right: 1em;		/*アイコンの右側に空けるスペース*/
		align-self: flex-start;	/*高さを間延びさせない指定*/
		line-height: 1.8;		/*行間を少し狭く*/
		position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
		border-radius: 2px;		/*角を丸くする指定*/
	}
	/*icon-bg1設定。サンプルテンプレートでは「●●●重要」と書いてあるマーク*/
	.new dt span.icon-bg1 {
		background: #2e3092;	/*背景色*/
	}
	/*icon-bg2設定。サンプルテンプレートでは「●●●サービス」と書いてあるマーク*/
	.new dt span.icon-bg2 {
		background: #555;	/*背景色*/
	}
	}/*画面幅900px以上の追加指定ここまで*/
	@media screen and (max-width:650px) {
	.news_events{
		display:block;
	}
	.news_events section{
		width:96%;
		margin: auto;
	}
	.news_events .events{
    margin-top: 0;
    padding-top: 0;
	}
	}
	@media screen and (max-width:560px) {
	.back_gray {
	    margin-top: 0;
	}
	}
/*トピックスブロック
---------------------------------------------------------------------------*/
/*トピックスブロック*/
.back_blue{
    background: #d8e6ef;
}
.topics ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    padding: 0
}
.topics ul li {
	width: 32%;
	position: relative;
    list-style: none;
    margin-bottom: 20px;
}
.topics ul li a {
	display: block;
	padding:0 10px;
}
.topics ul li a:hover {
    opacity: 0.8;
}
.topics ul li p {
	position: absolute;
    line-height: 1.3;
    top: 33%;
    left: 10%;
    font-weight: bold;
    font-size: 1.8em;
    /*font-family: "vdl-v7mincho", sans-serif;*/
    color: #00173d;
    text-shadow: 2px 2px 20px white, 2px 2px 20px white, -2px 2px 20px white, -2px 2px 20px white, 2px -2px 20px white, 2px -2px 20px white, -2px -2px 20px white;
}
.topics ul li a:hover p {
	background-size: 30px;
	transition: all .2s;
}
@media screen and (max-width: 1287px){
.topics ul li p {
    font-size: 1em;
    text-shadow: 2px 2px 20px white, 2px 2px 20px white, -2px 2px 20px white, -2px 2px 20px white;
}
}
@media screen and (max-width: 890px){
	.back_blue .content{
		padding: 3em 0 0;
	}
	.topics ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    .topics ul li a {
    padding: 0 ;
	}
	.topics ul li {
	    width: 48%;
	}
	.topics ul li a:hover {
		opacity: 1.0;
	}
	.topics ul li p {
		margin: 0;
		left: 10%;
    	font-size: 18px;
	}
	.topics ul .kokogasugoi p {
		top:16%;
	}
}
@media screen and (max-width: 600px){
	.topics ul li p {
    	font-size: 1em;
	}
}
/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 1rem;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	background: #000;		/*背景色*/
	border: 1px solid #555;	/*枠線の幅、線種、色*/
	text-indent: -2rem;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
    content: "\f059";	/*アイコンのコード*/
	color: #49bbfe;		/*アイコンの色*/
	padding-right: 1rem;	/*アイコンとテキストとの間のスペース*/
}

/*回答*/
.faq dd {
	padding: 5px 1rem 30px 3rem;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #666;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #555;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 2rem;		/*最後の「2rem」がテーブルの下に空けるスペースです。２文字分。*/
}

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

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

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #222;	/*背景色*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

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

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

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

	}/*画面幅900px以上の追加指定ここまで*/


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

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


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #333;border: 1px solid #777; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
p.img {margin: 0 0 1rem !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/
	
/*パンくず
---------------------------------------------------------------------------*/
.Breadcrumb-ListGroup {
  display: flex;
  background: #ddd;
  width: 100%;
  margin: 0;
  white-space:nowrap;
}
.Breadcrumb-ListGroup-Item {
  display: flex;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.5em;
  padding-right: 3em;
  position: relative;
  top: 0;
  left: 0;
  /*background: #f5f5f5;*/
  line-height: 1;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup-Item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3em;
  height: 3em;
  border-left: 1.5em solid transparent;
  transform: translateX(-50%);
}
.Breadcrumb-ListGroup-Item:nth-child(1) {
  background: #f5f5f5;
}
.Breadcrumb-ListGroup-Item:nth-child(1)::before {
  border-top: 1.5em solid #f5f5f5;
  border-bottom: 1.5em solid #f5f5f5;
  border-right: 1.5em solid #f5f5f5;
}
.Breadcrumb-ListGroup-Item:nth-child(2) {
  background: #ddd;
}
.Breadcrumb-ListGroup-Item:nth-child(2)::before {
  border-top: 1.5em solid #ddd;
  border-bottom: 1.5em solid #ddd;
  border-right: 1.5em solid #ddd;
}
.Breadcrumb-ListGroup-Item:nth-child(3) {
  background: #ccc;
}
.Breadcrumb-ListGroup-Item:nth-child(3)::before {
  border-top: 1.5em solid #ccc;
  border-bottom: 1.5em solid #ccc;
  border-right: 1.5em solid #ccc;
}
.Breadcrumb-ListGroup-Item:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 3em;
  height: 3em;
  transform: translateX(50%);
  border-top: 1.5em solid #ddd;
  border-bottom: 1.5em solid #ddd;
  border-left: 1.5em solid #ccc;
  border-right: 1.5em solid #ddd;
}
@media screen and (max-width:900px) {
.Breadcrumb-ListGroup {
  display: flex;
  background: #ddd;
  width: 100%;
  margin: 0;
  overflow: scroll;
  white-space:nowrap;
}
}
/*各ページヘッダー画像
---------------------------------------------------------------------------*/
#professor_top{
	background: url(../images/classroom/main.jpg);/*教授挨拶*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#to_students_top{
	background: url(../images/classroom/main.jpg);/*医学生・研修医の方へ*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#classroom_top{
	background: url(../images/classroom/main.jpg);/*教室紹介*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#history_top{
	background: url(../images/classroom/main.jpg);/*沿革*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#doctor_top{
	background: url(../images/classroom/main.jpg);/*ドクターの紹介*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#work_hospital_top{
	background: url(../images/classroom/main.jpg);/*教室員の勤務病院*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#research_top{
	background: url(../images/classroom/main.jpg);/*研究実績紹介*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#hospital_visit_top{
	background: url(../images/classroom/main.jpg);/*来院される方へ*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#to_doctor_top{
	background: url(../images/classroom/main.jpg);/*先生方へ*/
	background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -1;
    padding-top: 25.66%;
    background-position-y: 13%;
}
#professor_top:before,
#to_students_top:before,
#classroom_top:before,
#history_top:before,
#doctor_top:before,
#work_hospital_top:before,
#research_top:before,
#hospital_visit_top:before,
#to_doctor_top:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,34,53,.6);
}

#professor_top .catch,
#to_students_top .catch,
#classroom_top .catch,
#history_top .catch,
#doctor_top .catch,
#work_hospital_top .catch,
#research_top .catch,
#hospital_visit_top .catch,
#to_doctor_top .catch{
	position: absolute;
    z-index: 1;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 3em;
    font-weight: normal;
    color: #fff;
    font-family: "Roboto", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "游ゴシック体", "Yu Gothic", YuGothic, sans-serif!important;
	/*text-shadow: 2px  2px 9px #00173d,
	            -2px  2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	             2px -2px 9px #00173d,
	            -2px -2px 9px #00173d;*/
}
@media screen and (max-width: 1250px){
	#professor_top,#to_students_top,#classroom_top,#history_top,#doctor_top,#work_hospital_top,#professor_top,
	#hospital_visit_top,#to_doctor_top,#research_top {
		padding-top:39.66%;
	}
}
@media screen and (max-width: 650px){
	#professor_top,
	#to_students_top,
	#classroom_top,
	#history_top,
	#doctor_top,
	#work_hospital_top,
	#professor_top,
	#hospital_visit_top,
	#to_doctor_top,
	#research_top{
	    padding-top: 216px;
	}
	#classroom_top .catch,
	#professor_top .catch,
	#history_top .catch,
	#to_doctor_top .catch{
		font-size: 2.5em;
		top:55%;
		width: 100%;
    	text-align: center;
	}
	#hospital_visit_top .catch,
	#doctor_top .catch{
		font-size: 2em;
		top:55%;
		width: 100%;
    	text-align: center;
	}
	#to_students_top .catch,
	#to_doctor_top .catch,
	#work_hospital_top .catch,
	#professor_top .catch,
	#research_top .catch{
		font-size: 1.8em;
		top:55%;
	    width: 100%;
    	text-align: center;
	}
}

/*教授挨拶
---------------------------------------------------------------------------*/
.professor-box {
    background: #f0f0f0;
    padding: 3em 0;
}

@media screen and (min-width: 1025px){
.professor-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.professor-box .professor-text {
    width: 65%;
    margin-left: 5%;
}
}
@media screen and (max-width: 1024px){
.professor-ph {
	margin-bottom: 30px;
}
.professor-ph img{
	margin: auto;
	display: block;
}
.professor-ph dd{
	text-align: center;
}
}

.professor-box .professor-ph dd span {
    font-size: 1.8em;
}
.pacs{
	color: #00173d;
	font-weight: bold;
}
.right_text{
	text-align: right;
	margin-top: 5em !important;
}
/*教室紹介
---------------------------------------------------------------------------*/
/*沿革
---------------------------------------------------------------------------*/
.history-box .flex {
	display: flex;
    justify-content: space-between;
}
.sp_img {
    display: none;
}
.history-box{
    background: #f0f0f0;
    padding: 3em;
}
.history-text h3 span {
    font-size: 16px;
}
.history-box .flex .aisatu_text{
	width: 85%;
}
.history-box .flex .img_box{
	width: 15%;
    padding-top: 20px;
}

@media screen and (max-width: 1150px){
.history-box .flex .img_box {
    padding-left: 30px;
}
}
@media screen and (max-width: 760px){
.contents .history-box h2{
	padding: 0;
	margin: 10px 1rem;
}
.contents .history-box h3{
	padding: 0;
	margin: 3rem 1rem 10px;
}
.sp_img {
    display: inherit;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}
.history-box{
    padding: 2em 0;
}
.history-box .flex .img_box {
    display: none;
}
.history-text h3 span {
    display: block;
    font-size: 13px;
}
.history-box .flex .aisatu_text{
	width: 100%;
}
.history-box .flex .img_box{
	width: 100%;
}
}

/*---------------------------------------------------------------------------*/
/*ドクター紹介
---------------------------------------------------------------------------*/
.cp_container p{
	margin-bottom: 0;
}
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
	border:3px double #ccc;
	background: #f9f9f9;
	width: 90%;
	margin: 0px auto 80px;
}
.cp_box .flex{
	display: flex;
}
.doctor .sp_img{
	display: none;
}
.cp_box .flex .img_box{
    margin-right: 30px;
    width: 20%;
    max-width: 166px;
}
.cp_box h2{
	font-size: 18px;
	letter-spacing: normal;
	font-weight: 600;
	margin-bottom: 20px;
	border-bottom: 1px #d9d9d9 solid;
    display: block;
    padding: 0;
}
.cp_box h2 span{
	font-size: 14px;
}
.cp_box h3{
	font-size: 16px;
	letter-spacing: normal;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 20px;
	background: #eee;
	padding-left: 10px;
	line-height: 2;
    border-bottom: none;
}
.cp_box label {
	position: absolute;
	bottom: 0;
	width: 100%;
	height:98px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(252, 252, 252, 0) 0%, rgba(252, 252, 252, 0.95) 90%) !important;
	font-size: 14px;
}
.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
    line-height: 3.5em;
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    width: 16rem;
    content: "\f0ab　詳細を見る"; 
    font-family: "Font Awesome 5 Free"; /* 確認済み */
    font-weight: 900; /* ソリッドアイコンの場合 */
    transform: translate(-50%, 0);
    letter-spacing: 0.05em;
    color: #ffffff;
    border-radius: 36px;
    background-color: #253e71;
    font-size: 1.2em;
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 290px; /* 開く前に見えている部分の高さ */
	transition:  height 0.5s ease-out;/*all 0.5s;*/
	padding: 20px;
}
.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
	font-family:"Font Awesome 5 Free";
	content: "\f0aa　閉じる";
	font-weight: 900;
}
.cp_box .text_box{
	width: 90%;
}
.cp_box .text_box a{
	text-decoration: underline;
}
.flex_doctor{
	display: flex;
	justify-content: space-between;
	width: 90%;
    margin: auto;
}
.flex_doctor .cp_box {
    width: 48%;
    margin: 0 0 30px;
}
.flex_doctor .cp_box h2{
    padding: 10px;
    margin-bottom: 0;
    background: #253e71;
    color: #fff;
    font-family: inherit;
}
.flex_doctor .cp_box p{
	padding: 16px;
    margin: 0;
}

@media screen and (max-width: 760px){
.doctor .img_box{
	width: 20%;
}
.doctor .img_box img{
	width: 100%;
}
.cp_box {
	margin-top: 0;
	margin-bottom: 30px;
	width: 100%;
	background: #fff;
	padding: 0 5px;
}
.cp_box .text_box{
	width: auto;
}
.flex_doctor{
	display:block;
	width: 100%;
}
.flex_doctor .cp_box{
	width: 100%;
	padding: 0;
}
.cp_container .img_box{
	display: none;
}
.cp_box label:after{
	width: 69%;
	font-size: 1em;
    line-height: 3;
}
.cp_box .cp_container{
	padding: 0 0 0 0;
	margin-bottom: 20px;
}
.cp_box .flex{
	display: block;
}
.cp_box h2 {
	margin-top: 13px;
}
.cp_box h2 span{
	font-size: 12px;
    line-height: 1.5;
    font-weight: normal;
}
.cp_box .sp_img{
	display:inherit;
	float: left;
	vertical-align: top;
	height: 180px;
	width: 105px;
	margin:0 10px 0 0;
}
.cp_box .sp_img img{	
	width: auto;
}
.cp_box h2{
	border: none;
	line-height: 1.5;
}
.flex_doctor .cp_box h2{
	padding: 10px;
	margin: 0;
}
.flex_doctor .cp_box p{
	padding: 6px;
}
.cp_box label {
    position: absolute;
    width: 100%;
    height: 140px;
    font-size: 14px;
    bottom: -55px;
    left: 50%;
    transform: translate(-50%,-50%);
}
}
/*---------------------------------------------------------------------------*/
/*教室員の勤務病院
---------------------------------------------------------------------------*/
.red {
    color: #FF0004;
}
.kinmu table{
	border: 1px solid #ccc;
	border-bottom: none;
	border-right: none;
	margin: 30px auto 30px auto;
	width: 96%;
}
.kinmu table th{
	width: 20%;
	padding: 10px;
	border-bottom: 1px solid #ccc;
	background: #003f75;
	color: #FFF;
}
.kinmu table td{
	padding: 10px;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc; 
	line-height: 2;
	width: 20%;
}
.kinmu table td a{
	text-decoration: none;
	display: block;
}
.kinmu table td a:before{
	content:
}
@media screen and (max-width: 640px) {
	.kinmu table {
		width: 100%;
	}
	.kinmu table td {
		border-top: 1px solid #ccc;
		border-bottom: none;
		display: block;
		width:auto;
	}
	.kinmu td:first-child {
		border-top: none;
	}
	.kinmu td:last-child {
		border-bottom: solid 1px #ccc;
	}
	.sp_border {
    border-bottom: 1px solid #ccc !important;
	}
	.sp_none {
    display: none !important;
	}
}

/*---------------------------------------------------------------------------*/
/*研究実績紹介
---------------------------------------------------------------------------*/
.flex_btn{
	display: flex;
    justify-content: space-between;
}
/* デフォルトではa2のみ表示 */
.a2 {
    display: block;
    border: solid #00173d 13px;
    padding: 1em;
}

.b2, .c2, .d2 {
    display: none;
    border: solid #00173d 13px;
    padding: 1em;
}

/* アクティブなボタンのスタイル */
.active {
    background-color: #0f3368; 
    color: white;
    border: none !important;
}

/* ボタンの基本スタイル */
.a, .b, .c, .d {
    cursor: pointer;
    padding: 10px;
    border: 2px solid #ddd;
    text-align: center;
    width: 33%;
}

/* ホバー時のスタイル */
.a:hover, .b:hover, .c:hover, .d:hover {
    background-color: #5b7ba8;
    color: #fff;
}

@media screen and (max-width: 640px) {
	.flex_btn{
		display: block;
	}
	.a, .b, .c, .d {
	    width: 100%;
	    margin: 10px auto;
	}
	.a2 {
	    border: solid #00173d 3px;
	    padding: 1em;
	}

	.b2, .c2, .d2 {
	    border: solid #00173d 3px;
	}
	.area ol{
	    padding-left: 1.5em;
	}
	.area ol li{
	    margin-bottom: 10px;
	}

}


/*---------------------------------------------------------------------------*/
/*研究実績
---------------------------------------------------------------------------*/
.book,.academic{
	max-width: 1000px;
}
.academic .content{
	background: #f0f0f0;
	margin-top: 2em;
	padding: 3em;
}
.academic .content:first-child{
	margin-top: 5em;
}
.history {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}
.history .list{
    box-shadow: none;
    border: 2px solid;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 1.5em;
    width: 18%;
    line-height: 2.5;
    margin: 6px;
    font-weight: bold;
    background: #00173d;
    color: #fff;
    margin: 5px;
}
.catch span{
    display: block;
    text-align: center;
    font-size: 0.5em;
    line-height: 1;
}
.name {
    display: block;
    text-align: right;
    padding: 2em 0 0;
}
@media screen and (max-width: 650px){
.history .list {
    box-shadow: none;
    border: 2px solid;
    border-radius: 9px;
    text-decoration: none;
    text-align: center;
    font-size: 1.5em;
    width: 30%;
    margin: 5px;
}
.academic .content:first-child{
	margin-top: 1em;
}
.academic .content {
    background: #f0f0f0;
    margin-top: 1em;
    padding: 1em;
}
.academic .content h2{
	padding: 10px 0;
}
.academic .content p{
	margin: 0;
}
}

/*---------------------------------------------------------------------------*/
/*神戸大学眼科専門研修プログラム
---------------------------------------------------------------------------*/
.program{
	background: #eee;
}
.program .content{
	padding: 5em;
	background: #fff;
}
.program table {
    border: 1px solid #232323;
    border-bottom: none;
    border-right: none;
    margin: 30px auto 30px auto;
    width: 100%;
}
.program table th,
.program table td {
    padding: 6px;
    border-bottom: 1px solid #232323;
    border-right: 1px solid #232323;
    line-height: 1.5;
    width: 6.6%;
    text-align: center;
}
.program .institution{
	max-width: 1200px;
}
.program .institution td{
	text-align: left;
	width: 70%;
	padding: 1em;
}
.program .institution th{
	width: 30%;
    text-align: center;
    background: #eee;
}
.program .flex{
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}
.program .flex img{
	margin: 5px;
	width: 32%;
}
.b_orang{
	background: #fce4d6;
}
.b_green{
	background: #e2efda;
}
.b_blue{
	background: #d9e1f2;
}
.f-size{
	font-size: 0.5em;
}
.program img{
	display: block;
	margin: 30px auto;
	width: 100%;
	max-width: 500px;
}
.program .text_box{
    position: relative;
    border: 3px double #ccc;
    background: #f9f9f9;
    width: 90%;
    margin: 30px auto;
    max-width: 800px;
    padding: 1em;
    box-sizing: border-box;
}
.program .btn{
    width: 100%;
    display: block;
    max-width: 300px;
    background-color: #00173d;
    border: 1px solid #00173d;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    padding: 10px 0;
    border-radius: 47px;
    margin: auto;
    color: #fff;
}

@media screen and (max-width: 650px){
.program .content {
    padding: 1em;
    background: #fff;
    margin-top: 2em;
}
.program table{
	margin-top: 0;
}
.program .institution{
	margin-top: 30px;
}
.program .sp{
	margin-bottom: 0;
}
.table-wrap {
  overflow-x: scroll;
      width: 100%;
}
.program .Breadcrumb-ListGroup-Item{
	font-size: 0.8em;
}
.program .text_box {
    width: 100%;
}
}
/*---------------------------------------------------------------------------*/
/*神戸大学眼科の特色
---------------------------------------------------------------------------*/
.feature{
	background: #eee;
}
.feature .content{
	padding: 5em;
	background: #fff;
}
.feature h2{
	color: #fff;
	background: #00173d;
	border: none;
}
.feature .flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}
.feature .flex a{
	width: 50%;
    display: contents;
	max-width: 510px;
}
.feature .flex img{
    border: 2px solid #1A309D;
    width: auto;
    margin: 10px;
}
.feature .list {
    margin: 30px auto 60px;
    width: 100%;
    max-width: 800px;
    border: 1px solid #ccc;
    padding: 10px 16px;
}
.feature .list li {
    border-bottom: dashed 1px #ccc;
    list-style: none;
    line-height: 2.5;
}
.feature .list li:last-child {
	border-bottom: none;
}

.feature .list li a{
	text-decoration: none;
	display: block;
}
.feature table {
    border: 1px solid #232323;
    border-bottom: none;
    border-right: none;
    margin: 30px auto;
    width: 100%;
    max-width: 800px;
}
.feature table th,
.feature table td {
    padding: 6px;
    border-bottom: 1px solid #232323;
    border-right: 1px solid #232323;
    line-height: 1.5;
    text-align: center;
}
.feature table th{
	background: #eee;
}
.feature table td{
	text-align: left;
    line-height: 2.5;
}
.no04_flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}
.no04_flex img{
    width: 32%;
    margin: 6px;
    border: 2px solid #1A309D;
    align-self: flex-start;
}
@media screen and (max-width: 650px){
.feature .content {
    padding: 1em;
    background: #fff;
    margin-top: 2em;
}
.feature .Breadcrumb-ListGroup-Item{
	font-size: 0.8em;
}
.feature .flex a{
    width: 47%;
    margin: 3px;
}
.feature .flex {
    margin-bottom: 25px;
}
.feature .list {
    margin: 30px auto 30px;
}
.feature table th{
	width: 24%;
}
.no04_flex {
    display: block;
    margin-bottom: 26px;
}
.no04_flex img {
    width: 98%;
    margin: 6px auto;
    display: block;
}
}
/*---------------------------------------------------------------------------*/
/*よくある質問
---------------------------------------------------------------------------*/
.Qa-Box {
  width: 90%;
  margin: 30px auto 0;.
}

.Qa-Box .Qa {
  padding: 20px 0;
  border-bottom: 1px solid #c8c8c8;
}

.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: baseline;
  margin: 15px 0;
  align-items: self-start;
}

.Qa-Box .Qa dt p {
  margin: 0;
  padding-left: 15px;
  font-weight: bold;
  width: 100%;
}

.Qa-Box .Qa dd p {
  margin: 0;
  padding-left: 15px;
  width: 100%;
  font-weight: 500;
}

.Qa-Box .Qa:last-of-type {
  border-bottom: none;
}

.Qa-Box .Qa dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #6699b7;
  width: 1.5em;
  height: 1.5em;
  font-size: 1.5em;
}

.Qa-Box .Qa dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #d65556;
  width: 1.5em;
  height: 1.5em;
  font-size: 1.5em;
}
.daigaku .tbl-r02{
	margin-top: 0;
}
.daigaku{
padding-top: 0;
}
.daigaku table th {
    background: #eee;
    color: #000;
}
@media screen and (max-width: 650px) {
  .Qa-Box {
    width: 100%;
  }
}

/*---------------------------------------------------------------------------*/
/*医学生・研修医の方へのお知らせ
---------------------------------------------------------------------------*/
.notification .flex,
.flex_contact{
	display: flex;
	align-items: flex-start;
	margin: 30px auto;
}
.notification .flex .text_area{
	width: 70%;
}
.notification .flex img{
	width: 20%;
}
.flex_contact img{
	width: 40%;
}
.flex_contact .text_area{
	width: 55%;
	margin-left: 30px;
}
.contact{
	font-size: 1.5em;
	color: #2e3092;
}
.contact a{
	text-decoration: none;
}
.flex_contact .flex {
	justify-content: start;
}
.flex_contact .flex .list{
    border: 2px solid;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 1.5em;
    width: 40%;
    display: block;
    line-height: 2.5;
    font-weight: bold;
    background: #00173d;
    color: #fff;
    margin: 5px;
}
@media screen and (max-width: 900px) {
.feature .Breadcrumb-ListGroup-Item {
    font-size: 0.8em;
}
.notification .flex,
.flex_contact {
    display: block;
    margin: 0;
}
.notification .flex img {
    width: 80%;
    margin: auto;
    display: block;
}
.notification .flex .text_area {
    width: 100%;
    margin-top: 23px;
}
.flex_contact img {
    width: 100%;
}
.flex_contact .text_area {
    width: 100%;
    margin: 30px auto;
}
.flex_contact .flex .list {
    width: 100%;
    margin: 0 auto 10px auto;
}
}
/*---------------------------------------------------------------------------*/
/*先輩からのメッセージ
---------------------------------------------------------------------------*/
.flex_box{
    display: flex;
    align-items: flex-start;
    margin: 30px auto;
    justify-content: start;
}
.message .flex_box .btn{
    border: 2px solid;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 1.5em;
    width: 30%;
    display: block;
    line-height: 2.5;
    font-weight: bold;
    background: #00173d;
    color: #fff;
    margin: 5px;
}
.message .flex{
    display: flex;
    align-items: flex-start;
    margin: 30px auto;
}
.message .flex img{
    width: 40%;
    border: none;
}
.message .flex figure {
	margin:30px 10px;
    width: 40%;
}
.message .flex figure img{
	width: 100%;
	max-width: 600px;
	display: block;
	margin: 0;
}
.message  figure img{
	margin: 0 auto;
}
figcaption{
	text-align: center;
}
.message img{
	width: 100%;
	max-width: 600px;
	display: block;
	margin:30px auto;
}
.more_btn {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 300px;
    text-align: center;
	text-decoration: none;
	border: 2px solid #ccc;
    line-height: 3;
}
.feature .message .list {
    margin: 30px auto 60px;
    width: 100%;
    max-width: 800px;
    border: 1px solid #ccc;
    padding: 10px 16px;
    text-align: left;
}
@media screen and (max-width: 650px) {
.flex_box {
    justify-content: center;
    margin: 10px auto;
}
.message .flex_box .btn{
    width: 45%;
}
.message .flex img {
    width: 45%;
    margin: 0 5px;
}
figcaption {
    font-size: 0.5em;
}
.message .flex figure {
    margin: 0 5px;
    width: 45%;
}
.feature  .message .list li{
	line-height: 1.5;
    padding: 10px 0;
}
}

/*---------------------------------------------------------------------------*/
/*見学申し込み
---------------------------------------------------------------------------*/
.student_step {
    width: 23%;
    margin: 1%;
    border: 1px solid #CCC;
    padding: 6px;
    padding-bottom: 10px;
}
.student_step .step {
    background: #304E94;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    line-height: 2.6;
    width: 100%;
    margin: 0;
}
.student_step h3 {
    border: none;
    font-weight:bold;
    text-align: center;
    color: #304E94;
    margin-bottom: 0;
}
.student_step img {
    width: 100%;
}
.student_step p{
    margin: 10px 0 0;
}
#formWrap {
	margin:0 auto;
	color:#555;
	line-height:120%;
}
table.formTable{
	width:100%;
	max-width: 850px;
	margin:20px auto;
	border-collapse:collapse;
	border: none;
}
table.formTable input{
height: 90%;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
	height: 39px;
	vertical-align: middle;
}
table.formTable th{
	width:45%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
@media screen and (max-width: 650px) {
.request .flex_box {
    display: block;
}
.student_step {
    width: 100%;
    margin: 3% auto;
}

}
@media screen and (max-width:572px) {
#formWrap {
	width:100%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
	height: auto;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
}
input[type="select"]{
	height: 34px;
	width: 50%;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

/*---------------------------------------------------------------------------*/
/*留学紹介
---------------------------------------------------------------------------*/
.kako {
    display: block;
    text-align: right;
}

/*---------------------------------------------------------------------------*/
/*専門外来について
---------------------------------------------------------------------------*/
.shousai {
    display: block;
    text-align: right;
}
.soc h2 {
    color: #fff;
    background: #00173d;
    border: none;
    margin: 3em auto 2em;
}
.soc h2:first-child{
	margin: inherit;
}
.soc table {
    border: 1px solid #ccc;
    border-bottom: none;
    border-right: none;
    margin: 30px auto 30px auto;
    width: 96%;
}
.soc table th,
.soc table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    line-height: 2;
    width: 14%;
    text-align: center;
}
.soc .back-blue {
    background: #e9f6fb;
    vertical-align: middle;
}
.soc .back-gray {
    background: #f4f4f4;
    vertical-align: middle;
}
.soc .flex {
    display: flex;
    align-items: flex-start;
    margin: 30px auto;
    flex-wrap: wrap;
    justify-content: center;
}
.soc .flex figure {
    margin: 30px 10px;
    width: 40%;
}
.soc .flex figure img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0;
}
.soc .cp_box h3{
	margin-top: 0;
}
.left_img {
    float: right;
    margin: 0 0 15px 25px;
    width: 39%;
}
.left_img img{
	margin: 0;
}
@media screen and (max-width: 650px){
.soc .flex figure {
    margin: 0 5px;
    width: 45%;
}
.left_img {
    float: none;
    width: 100%;
    margin: 20px auto;
}
.left_img img{
	width: 100%;
}
}

/*---------------------------------------------------------------------------*/
/*アクセス
---------------------------------------------------------------------------*/
.access h2,.access h3{
	margin: 2em 0 1em;
}
.access .btn{
    width: 100%;
    display: block;
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #2e3092;
    text-align: center;
    text-decoration: none;
    line-height: 3;
    border-radius: 47px;
}
.access table{
	max-width: 900px;
}
.flex_link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #f7faff;
    border: 1px solid #a7c9ff;
    overflow: hidden;
   border-radius: 9px;
    margin-bottom: 3em;
}
.flex_link li{
    width: 25%;
    position: relative;
    list-style: none;
    line-height: 4;
}
.flex_link li a{
	text-decoration: none;
}
.flex_link li::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 2em;
    border: none;
    background-image: url(../images/access/icon.svg);
    vertical-align: middle;
    margin-right: 1em;
    margin-bottom: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.flex_link li:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #a7c9ff;
}
.flex_link li:last-child::after{
	display: none;
}
.accessMap01__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.accessMap01 {
    width: 70%;
}
.accessMap01Navi {
    counter-reset: my-counter;
}
.accessMap01Navi__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 2.5;
}
.accessMap01Navi__item:before {
    content: counter(my-counter);
    counter-increment: my-counter;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #1252bd;
    color: #fff;
    width: 2em;
    height: 2em;
    margin-right: 0.5em;
}
.accessMap01__wrap img{
	margin: inherit;
}
.access__googlemap {
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.access dl{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    background-color: #f7faff;
    padding: 10px 0;
}
.access dl dt{
    width: 20%;
    text-align: center;
}
.access dl dd{
    width: 80%;
    padding: 0 10px;
    box-sizing: border-box;
}

@media screen and (min-width: 650px){
.accessMap01__wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: center;
}
.accessMap01Navi {
    margin-left: 0.21rem;
    padding-top: 0.34rem;
}
}
@media screen and (max-width: 650px){
.access .btn {
    margin: auto;
}
.flex_link {
   padding: 0;
}
.flex_link li {
    width: 50%;
}
.flex_link li:nth-child(2)::after{
	display: none;
} 
.flex_link li:nth-child(-n+2) {
	border-bottom: 1px solid #a7c9ff;
}
.accessMap01__wrap {
	display: block;

}
.accessMap01Navi {
    padding-left: 6%;
}
}

/*---------------------------------------------------------------------------*/
/*English
---------------------------------------------------------------------------*/
.english .cp_box label:after{
   content: "\f0ab　read more";
}
.english .cp_box input:checked + label:after {
    content: "\f0aa　close";
}
@media screen and (min-width:1350px){
.english .list-grid .list {
	line-height: 4em;
	padding: 1em 0;
}
/*
.english .list-grid .list:nth-child(2),
.english .list-grid .list:last-child{
    line-height: 4em;
}*/
}
@media screen and (max-width:1350px){
.english .list-grid .list {
    height: auto;
    line-height: 4em;
    padding: 10px 0;
}
.english .list-grid .list a{
	display: flex;
	align-items: center;
}
.english .list-grid .list .fas {
    padding: 0 0.5em;
}
/*
.english .list-grid .list:nth-child(2),
.english .list-grid .list:last-child{
    line-height: 4em;
}*/
}
@media screen and (max-width: 600px){
.english .list-grid .list h4 {
    line-height: 1.5;
}
.english .list-grid .list:nth-child(2),
.english .list-grid .list:last-child{
	padding: 20px 0;
}
}
/*---------------------------------------------------------------------------*/
/*Member
---------------------------------------------------------------------------*/
.member {
    width: 100%;
    max-width: 900px;
    margin: auto;
    margin-top: 30px;
}
.member img {
    width: 100%;
}
.member figure {
    text-align: center;
    width: 49%;
}
.notification .member .flex img {
    width: 96%;
    border: none;
}
@media screen and (max-width: 900px) {
    .notification .member .flex {
        display: block;
        margin: 20px auto;
}
    .member figure {
    width: 100%;
    margin-bottom: 20px;
}
}