@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), print {

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

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


body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック";	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #efefeb;	/*背景色*/
	color: #777;		/*文字色*/
	line-height: 2;		/*行間*/
	animation: opa1 0.3s 0.5s both;	/*0.5秒の間だけ非表示にし、その後0.3秒かけてフェードイン表示。上部のメインメニューのデフォルトが一瞬見えてしまうのを回避する為の応急措置です。*/
    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;}

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

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

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


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

/*マウスオン時*/
a:hover {
	opacity: 0.6;	/*色を80%だけ出す*/
	color: #669933;	/*文字色*/
}

/*スマホでの改行調整用
---------------------------------------------------------------------------*/
.hidden-pc {
    display: none;
}

@media screen and (max-width: 700px) {
    .hidden-pc {
        display: block;
    }

    .hidden-sp {
        display: none;
    }
}



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


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	border-radius: 10px;			/*角を丸くする指定*/
	padding: 0 30px;				/*ヘッダー内の余白。上下、左右への順番。*/
	height: 80px;					/*ヘッダーの高さ*/
	position: fixed;				/*スクロールしても動かないようにする指定。*/
	z-index: 1;						/*スクロール中、コンテンツの上になるように*/
	margin: 30px;					/*headerの外側にとるスペース*/
	width: calc(100% - 60px);		/*pxの値は、上のmargin(両サイドなので２倍)を合計した数字です。*/
	box-shadow: 5px 5px 15px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.15は色が15%出た状態。*/
	background: linear-gradient(#fff, rgba(255,255,255,0.8));	/*背景グラデーション。255,255,255は白のことで0.7は色が70%出た状態。*/
}

/*印刷時設定*/
/*ヘッダーを印刷させない
---------------------------------------------------------------------------*/
@media print {
  header {
    position: static !important; /* 固定を解除 */
    display: none !important;
  }
}

/* 1. 通常の画面では非表示にする */
.print-only {
  display: none;
}

/* 2. 印刷時専用のスタイルを定義する */
@media print {
  .print-only {
      font-size: 80%;
      color: #999999;
      margin: 1em 0;
      text-align: center;
    display: block; /* 印刷時だけ表示 */
  }
    .print-only span {
        color: #000000;
    }
}


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

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

	/*ヘッダーブロック*/
	header {
		padding: 0 20px;	/*ヘッダー内の余白。上下、左右への順番。*/
		height: 50px;		/*ヘッダーの高さ*/
		margin: 10px;		/*headerの外側にとるスペース*/
		width: calc(100% - 20px);	/*pxの値は、上のmargin(両サイドなので２倍)を合計した数字です。*/
	}

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


/*ロゴ*/
#logo img {display: block;}
#logo {
	width: 300px;	/*ロゴ画像の幅*/
}

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

	/*ロゴ*/
#logo img {display: block;}
#logo {
	width: 240px;	/*ロゴ画像の幅*/
}
	}/*画面幅600px以下の追加指定ここまで*/


/*スライドショー（vegasを使用）
ここでは、3:2の画像比率（2÷3=0.6666）を読み込む指定を行なっています。
異なる画像比率にしたい場合、#mainimg-boxのpadding-topの数字を変更します。2:1にするなら50%です。
---------------------------------------------------------------------------*/
#mainimg-box {
	width: 100%;
	height: 0;
	padding-top: 50%;
	position: relative;z-index: -1;
}
#mainimg {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*メニューブロック設定
---------------------------------------------------------------------------*/
#menubar a {display: block;text-decoration: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;font-size: 90%;  font-family: "Font Awesome 5 Free";}
#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%に。*/
}


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

/*メニュー１個あたりの設定*/
.p #menubar a {
	padding: 8px;	/*メニュー同士の余白*/
    color: #7b7d78;	/*文字色*/
}

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


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

/*メニュー１個あたり*/
.p #menubar ul ul a {
	color: inherit;
	background: rgba(120,166,62,1.0);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態*/
	padding: 10px 60px;				/*上下、左右へのメニュー内の余白*/
}

.p #menubar ul ul a:hover {
	background: rgba(61,83,35,1);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.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(120,166,62,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態。*/
	text-align: center;					/*内容をセンタリング*/
	animation: animation1 0.2s both;	/*animation.cssのanimation1を実行する。0.2sは0.2秒の事。*/
	color: #fff;						/*文字色*/
}

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


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

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

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

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転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;	/*２本目は使わないので非表示にする*/
}


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

/*トップページ以外のコンテンツブロック*/
body:not(.home) #contents {
	padding-top: 150px;	/*上にとる余白。headerがfixedなので、ここの設定がないとheaderに重なってしまいます。*/
}

	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:600px) {
	
	/*コンテンツブロック*/
	#contents {
		padding: 10px;	/*コンテンツ内の余白*/
	}
	
	/*トップページ以外のコンテンツブロック*/
	body:not(.home) #contents {
		padding-top: 100px;	/*上にとる余白*/
	}

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


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

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

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

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

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


/*h2タグ
---------------------------------------------------------------------------*/
/*h2タグ全体*/
#contents h2 {
	clear: both;
    font-family: "Zen Maru Gothic", sans-serif;
    margin: auto;
	margin-bottom: 30px;
	font-size: 160%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	letter-spacing: 0em;	/*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
    color: #809f5a;
    border-top: 3px dotted #809f5a;
    border-bottom: 3px dotted #809f5a;
    width: 310px;
    padding-bottom: 20px;
    width: 310px;
    
}
/*h2タグ内のspanタグ（装飾文字）*/
#contents h2 span {
	display: block;
    margin-top: -0.5em;
    margin-bottom: -0.5em;
	font-size: 60%;	/*文字サイズ*/
	color: #999;		/*文字色*/

    
    
}

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

/*右側の装飾文字の設定*/
#contents h2 .small {
	font-size: 0.6em;
	opacity: 0.7;
	margin-right: 1rem;
}


/*h3タグ
---------------------------------------------------------------------------*/
#contents h3 {
	margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.4rem;	/*文字サイズ*/
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
	border-bottom: 2px solid #bbcea4;	/*薄い色の線の幅、線種、色*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
}
#contents h3 samp {
    background: #809f5a;
    color: #fff;
    padding: 2px 8px;
    font-size: 1.0rem;
    border-radius: 3px;
    margin-right: 5px; 
    vertical-align: 3px;
}

#contents h3 center {
    text-align: center;
    margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.6rem;	/*文字サイズ*/
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
	border-bottom: 2px solid #bbcea4;	/*薄い色の線の幅、線種、色*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
}


/*h4タグ
---------------------------------------------------------------------------*/
#contents h4 {
	margin: 0 0 0rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.0rem;	/*文字サイズ*/
    text-align: center;
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/

}

#contents h4 span {
	margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.5rem;	/*文字サイズ*/
    text-align: center;
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/

}

/*h5タグ
---------------------------------------------------------------------------*/
#contents h5 {
	margin-top: 3px;
    margin-bottom: 3px;
	font-size: 1.0rem;	/*文字サイズ*/
	padding: 5px 1rem;	/*h3内の余白。上下、左右への順番。*/

}

/*h6タグ
---------------------------------------------------------------------------*/
#contents h6 {
    padding: 0rem 1rem;
    margin: 10px;
    border-left: 4px solid #bbcea4;
    font-size: 120%;
}





/*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: #999;	/*背景色*/
	box-shadow: 0px 0px 50px rgba(255,255,255,0.6) inset;
	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: #fff;		/*背景色*/
	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(0,0,0,0.05);	/*背景色。0,0,0は黒の事で0.05は色が5%出た状態。*/
	padding: 10px;					/*ボックス内の余白*/
	border-radius: 5px;				/*角を丸くする指定*/
	margin-bottom: 1rem;			/*ボックスの下に空けるスペース*/
}

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


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

#footermenu a {
    color: #fff;
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;	/*簡易的に横並びにする*/
	padding: 0 10px;		/*上下、左右への余白*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

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

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


/*.listブロック共通
---------------------------------------------------------------------------*/
.list {
	position: relative;
}

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


/*トップ4列タイプのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-grid {
	display: flex;		/*flexボックスを使う指定*/
    justify-content: center;
	flex-wrap: wrap;	/*折り返す指定*/
    margin-top: 30px;
    margin-bottom: 50px;
	}

.list-grid .list {
	margin-bottom: 1rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 0px;			/*ボックス内の余白*/
    width: 46%;			/*幅。３列になります。*/
    margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

.text {
	background-color: #fff;
}

.text a {
	color: #666666;
}

.text a:hover  {
	color: #809f5a;
}

/*ボックス内のh4タグ*/
.list-grid .list h4 {
    text-align: center;
	margin: 0;
    padding: 10px;
}

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

/*ボックス内のfigure画像*/
.list-grid .list figure {
	margin-bottom: 0.0rem;	/*下に空けるスペース*/
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid {
		display: flex;		/*flexボックスを使う指定*/
		flex-wrap: wrap;	/*折り返す指定*/
	}

	/*１個あたりのボックス設定*/
	.list-grid .list {
		width: 23%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid .list:nth-of-type(4n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid .list .text {
		flex: 1;
	}

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





/*スタッフ紹介3列タイプのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/


.list-grid2 {
    display: flex;		/*flexボックスを使う指定*/
    justify-content: flex-start;
	flex-wrap: wrap;	/*折り返す指定*/
	}

.list-grid2 .list-staff {
	margin-bottom: 1.5rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 1%;			/*ボックス内の余白*/
    width: 100%;			/*幅。３列になります。*/
    margin-right: 3%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	background: #fff;		/*背景色*/
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
    border-radius: 3px;
    border-top: solid 2px #a6c57f;
    text-align: center;
    
}

/*ボックス内のh4タグ*/
.list-grid2 .list-staff h4 {
    text-align: center;
	margin-bottom: 100px;
    font-size: 1.4em;	/*文字サイズを80%に*/
    padding: 10px;
}

/*ボックス内のpタグ*/
.list-grid2 .list-staff p {
    text-align: center;
	margin: 0 !important;
	font-size: 1.0em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}

.list-grid2 .list-staff .ptext {
    text-align: left;
	margin: 0 !important;
	font-size: 1em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}
.list-grid2 .list-staff .ptext span {
    color: #719248;
}

/*ボックス内のfigure画像*/
.list-grid2 .list-staff figure {
	margin: auto;	/*下に空けるスペース*/
    padding: 10px;
    display: block;
    width: 70%;
}


/*教授*/
#contents .list-grid2_pro {
	display: flex;
    justify-content:space-between;
    margin: 0 auto;
}

.list-grid2_pro .professor {
	margin-bottom: 1.5rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 1%;			/*ボックス内の余白*/
    width: 100%;			/*幅。３列になります。*/
    margin-right: 0%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	background: #fff;		/*背景色*/
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
    border-radius: 3px;
    border-top: solid 2px #a6c57f;
    text-align: left;
    
}

/*ボックス内のh4タグ*/
.list-grid2_pro .professor h4 {
    text-align: center;
	margin-bottom: 100px;
    font-size: 1.4em;	/*文字サイズを80%に*/
    padding: 10px;
}

/*ボックス内のpタグ*/
.list-grid2_pro .professor p {
    text-align: center;
	margin: 0 !important;
	font-size: 1.0em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}

.list-grid2_pro .professor .ptext {
    text-align: left;
	margin: 0 !important;
	font-size: 1em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}
.list-grid2_pro .professor .ptext span {
    color: #719248;
}

/*ボックス内のfigure画像*/
.list-grid2_pro .professor img {
	margin: auto;	/*下に空けるスペース*/
    padding: 10px;
    display: block;
    width: 100%;
}


	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px), print {
        /*listブロック全体を囲むブロック*/
        .list-grid2 {
        justify-content: flex-start;
        margin: 0 auto;
        }

	
	/*１個あたりのボックス設定*/
	.list-grid2 .list-staff {
		width: 32%;			/*幅。３列になります。*/
		margin-right: 1%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
        text-align: center;
        margin-bottom: 1.5em;
	}
	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid2 .list-staff:nth-of-type(3n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid2 .list-staff .text {
        text-align: center;
		flex: 1;
	}
     /*ボックス内のpタグ*/
    .list-grid2 .list-staff p {
        text-align: center;
        margin: 0 !important;
        font-size: 1.2em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 10px;
    }

    .list-grid2 .list-staff .ptext {
        text-align: left;
        margin: 0 !important;
        font-size: 0.9em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 10px;
    }
        
    .list-grid2 .list-staff figure {
        margin: auto;	/*下に空けるスペース*/
        text-align: center;
        overflow: hidden;
        width: 70%;
        height: auto;
        padding: 10px;
        display: block;
        border-radius: 30px;
    }
        
        .list-grid2 .list-staff img {
        border-radius: 10px;
        margin: auto;	/*下に空けるスペース*/
        text-align: center;
        overflow: hidden;
        width: 70%;
        height: auto;
        padding: 10px;
        display: block;
        border-radius: 30px;
    }
 
 /*教授*/      
        
    #contents .list-grid2_pro {
        display: inline-block;
        justify-content: space-between;
        width: 100%;
        } 
        
	.list-grid2_pro .professor {
        display: flex;		/*flexボックスを使う指定*/
        justify-content: space-between;
        width: 100%;
        margin-right: 0%;	/*センター揃えのために必要です*/
	}

	.f-item { 
        width: 30%;
        margin-right: 5%;
        text-align: left;
        }

    .f-item:nth-child(3n) {
        display: inline-block;
        margin-right: 0;
        }
        
     /*ボックス内のpタグ*/
    .list-grid2_pro .professor p {
        text-align: left;
        font-size: 1.2em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding-right: 70px;
        
    }

    .list-grid2_pro .professor .ptext {
        text-align: left;
        margin: 0 !important;
        font-size: 0.9em;	/*文字サイズを80%に*/
        line-height: 1.8;	/*行間を少し狭く*/
        padding: 10px;
    }

        
        .list-grid2_pro .professor img {
        border-radius: 3px;
        margin: auto;	/*下に空けるスペース*/
        overflow: hidden;
        width: 100%;
        height: auto;
        padding-right: 20px;
    }
        
        
}/*画面幅900px以上の追加指定ここまで*/




/*実績のボックス
/*4-3列タイプのボックス
---------------------------------------------------------------------------*/
#contents .list-grid3 {
	display: flex;
    margin: 0 auto;
}
.list-grid3 {
    text-align: center;
    margin-bottom: 30px;
}

.list-grid3 .flex-container{
    display: inline-flex;		/*flexボックスを使う指定*/
    justify-content: flex-start;
    text-align: center;
    margin: 0 auto;
    flex-wrap: wrap;    　/*折り返す指定*/    
	}


/*ボックス１個あたり*/
.list-grid3 .list {
    width: 31%;			/*幅。３列になります。*/
	margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	margin-bottom: 2%;	/*ボックス同士の上下間に空けるスペース*/
	padding: 15px 1px 10px 1px;			/*ボックス内の余白*/
	background : #f9f9f9;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
    border-radius: 10px;
}

/*ボックス内のh4タグ*/
.list-grid3 .list .text h4 {
    background: #f9f9f9;
    font-size: 0.7em;
}

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

/*ボックス内のh4タグ*/
.list-grid3 .list a {
    background: #f9f9f9;
    font-size: 100%;
    color: #6d736b;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 800;
    font-style: normal;
    background: #f9f9f9;
    padding: 0.5em 0;/*上下の余白*/
    border-top: solid 1px #c1c4c0;/*上線*/
    border-bottom: solid 1px #c1c4c0;/*下線*/
}

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

	/*listブロック全体を囲むブロック*/        
	.list-grid3 {
		display: inline-flex;		/*flexボックスを使う指定*/
        margin: 0 auto;
        flex-wrap: wrap;    　/*折り返す指定*/
	}

	/*１個あたりのボックス設定*/
	.list-grid3 .list {
		width: 23%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid3 .list:nth-of-type(4n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid3 .list .text {
		flex: 1;
	}
     .list-grid3 .list a {
            font-size: 140%;
    }

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


/*実績下の寄附コーナーのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-grid4 {
    display: flex;		/*flexボックスを使う指定*/
    justify-content: center;
    padding: 20px;
	}
.list-grid4 .flex-container{
    display: inline-flex;		/*flexボックスを使う指定*/
    justify-content: center;
    flex-wrap: wrap;    　/*折り返す指定*/ 
    }

.list-grid4 .list-achv {
	margin-bottom: 1rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 1%;			/*ボックス内の余白*/
    width: 100%;			/*幅。３列になります。*/
    margin-right: 3%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	background: #fff;		/*背景色*/
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
    border-radius: 3px;
    border: solid 2px #a6c57f;
    
}

/*ボックス内のh4タグ*/
.list-grid4 .list-achv h4 {
    text-align: center;
	margin-bottom: 100px;
    font-size: 1.4em;	/*文字サイズを80%に*/
    padding: 10px;
}

/*ボックス内のpタグ*/
.list-grid4 .list-achv p {
    text-align: center;
	margin: 0 !important;
	font-size: 1.2em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}

.list-grid4 .list-achv a:hover {
    color: #809f5a;
}

.list-grid4 .list-achv .ptext {
    text-align: center;
	margin: 0 !important;
	font-size: 1em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}
.list-grid4 .list-achv .ptext span {
    color: #719248;
}


/*ボックス内のfigure画像*/
.list-grid4 .list-achv figure {
	margin: auto;	/*下に空けるスペース*/
    padding: 10px;
    display: block;
    width: 50%;
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid4 {
		flex-wrap: wrap;	/*折り返す指定*/
	   }
        
	.list-grid4 .flex-container{
        display: inline-flex;		/*flexボックスを使う指定*/
        justify-content: center;
        }

	/*１個あたりのボックス設定*/
	.list-grid4 .list-achv {
		width: 31%;			/*幅。３列になります。*/
		margin-right: 5%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid4 .list-achv:nth-of-type(3n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid4 .list-achv .text {
        text-align: center;
		flex: 1;
	}
     /*ボックス内のpタグ*/
    .list-grid4 .list-achv p {
        text-align: center;
        margin: 0 !important;
        font-size: 1.2em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 5px 3px;
    }

    .list-grid4 .list-achv .ptext {
        text-align: left;
        margin: 0 !important;
        text-align: center;
        font-size: 0.8em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 5px;
    }
        
    .list-grid4 .list-achv figure {
        margin: auto;	/*下に空けるスペース*/
        text-align: center;
        overflow: hidden;
        width: 70%;
        height: auto;
        padding: 10px;
        display: block;
        border-radius: 30px;
    }
        
        .list-grid4 .list-achv figure img {
        border-radius: 10px;
    }

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

/*実習・研修内のボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-grid5 {
    display: flex;		/*flexボックスを使う指定*/
    justify-content: center;
    padding: 20px;
    margin-left: 7px;
	}
.list-grid5 .flex-container{
    display: inline-flex;		/*flexボックスを使う指定*/
    justify-content: center;
    flex-wrap: wrap;    /*折り返す指定*/ 
    }

.list-grid5 .list-trei {
	margin-bottom: 1rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 1%;			/*ボックス内の余白*/
    width: 100%;			/*幅。３列になります。*/
    margin-right: 3%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	background: #fff;		/*背景色*/
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
    border-radius: 3px;
    border: solid 2px #a6c57f;
    
}

/*ボックス内のh4タグ*/
.list-grid5 .list-trei h4 {
    text-align: center;
	margin-bottom: 100px;
    font-size: 1.4em;	/*文字サイズを80%に*/
    padding: 10px;
}

/*ボックス内のpタグ*/
.list-grid5 .list-trei p {
    text-align: center;
	margin: 0 !important;
	font-size: 1.2em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}


.list-grid5 .list-trei a:hover {
    color: #809f5a;
}

.list-grid5 .list-trei .ptext {
    text-align: center;
	margin: 0 !important;
	font-size: 1em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}
.list-grid5 .list-trei .ptext span {
    color: #719248;
}


/*ボックス内のfigure画像*/
.list-grid5 .list-achv figure {
	margin: auto;	/*下に空けるスペース*/
    padding: 10px;
    display: block;
    width: 100%;
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid5 {
		flex-wrap: wrap;	/*折り返す指定*/
	}
        
     .list-grid5 .flex-container{
         
        display: inline-flex;		/*flexボックスを使う指定*/
        justify-content: center;
	}

	/*１個あたりのボックス設定*/
	.list-grid5 .list-trei {
		width: 40%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid5 .list-trei:nth-of-type(3n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid5 .list-trei .text {
        text-align: center;
		flex: 1;
	}
     /*ボックス内のpタグ*/
    .list-grid5 .list-trei p {
        text-align: center;
        margin: 0 !important;
        font-size: 1.2em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 8px 3px;
    }

    .list-grid5 .list-trei .ptext {
        text-align: left;
        margin: 0 !important;
        text-align: center;
        font-size: 0.8em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 5px;
    }
        
    .list-grid5 .list-trei figure {
        margin: auto;	/*下に空けるスペース*/
        text-align: center;
        overflow: hidden;
        width: 100%;
        height: auto;
        padding: 0px;
        display: block;
    }
        
        .list-grid5 .list-trei figure img {
        border-radius: 0px;
    }

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



/*患者さまへのボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-grid6 {
    display: flex;		/*flexボックスを使う指定*/
    justify-content: center;
    padding: 10px;
	}
.list-grid6 .flex-container{
    display: inline-flex;		/*flexボックスを使う指定*/
    justify-content: center;
    flex-wrap: wrap;    /*折り返す指定*/
    }

.list-grid6 .list-trei {
	margin-bottom: 1rem;	/*ボックス同士の上下間に空けるスペース*/
	padding: 0%;			/*ボックス内の余白*/
    width: 100%;			/*幅。３列になります。*/
    margin-right: 0%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	background: #fff;		/*背景色*/
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
    border-radius: 3px;
    border: solid 2px #a6c57f;
}

/*ボックス内のh4タグ*/
.list-grid6 .list-trei h4 {
    text-align: center;
	margin-bottom: 100px;
    font-size: 1.4em;	/*文字サイズを80%に*/
    padding: 10px;
}

/*ボックス内のpタグ*/
.list-grid6 .list-trei p {
    text-align: center;
	margin: 10px !important;
	font-size: 1.2em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}

.list-grid6 .list-trei p a:hover {
    color: #bbcea4;
}

.list-grid6 .list-trei a {
    color: #447a14;
}

.list-grid6 .list-trei .ptext {
    text-align: center;
	margin: 0 !important;
	font-size: 1em;	/*文字サイズを80%に*/
	line-height: 1.5;	/*行間を少し狭く*/
    padding: 5px;
}
.list-grid6 .list-trei .ptext span {
    color: #719248;
}

/*ボックス内のfigure画像*/
.list-grid6 .list-achv figure {
	margin: auto;	/*下に空けるスペース*/
    padding: 10px;
    display: block;
    width: 100%;
    align-items: flex-end;
}

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

	/*listブロック全体を囲むブロック*/
	.list-grid6 {
		flex-wrap: wrap;	/*折り返す指定*/
	   }
        
     .list-grid6 .flex-container{
        display: inline-flex;		/*flexボックスを使う指定*/
        justify-content: center;
         margin-bottom: 60px;
        }

	/*１個あたりのボックス設定*/
	.list-grid6 .list-trei {
        position: relative;
        height: 410px;
		width: 48%;			/*幅。３列になります。*/
		margin-right: 2%;	/*右側へのマージン。ボックス同士の左右の余白です。*/
	}
        

	
	/*3の倍数目のボックスの右側のマージンをなくす*/
	.list-grid6 .list-trei:nth-of-type(3n) {
		margin-right: 0;
	}

	/*ボックス内のtextブロック*/
	.list-grid6 .list-trei .text {
        text-align: center;
		flex: 1;
	}
     /*ボックス内のpタグ*/
    .list-grid6 .list-trei p {
        text-align: center;
        margin: 10px; !important;
        font-size: 1.0em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 5px 3px;
    }
        
       
    .list-grid6 .list-trei .ptext {
        text-align: left;
        margin: 0 !important;
        text-align: center;
        font-size: 0.8em;	/*文字サイズを80%に*/
        line-height: 1.5;	/*行間を少し狭く*/
        padding: 5px;
    }
        
    .list-grid6 .list-trei figure {
        margin: auto;	/*下に空けるスペース*/
        text-align: center;
        overflow: hidden;
        width: 100%;
        height: auto;
        padding: 0px;
        display: block;
        border-radius: 0px;
    }
        
     .list-grid6 .list-trei figure img {
        border-radius: 0px;
        position: absolute; /* 親ボックスを基準に配置 */
        bottom: 0; 
        left: 0;
    }

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




/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 2rem;	/*上下、左右へのボックス内の余白*/
    background-color: #fff;
}

/*日付(dt)、記事(dd)共通設定*/
.new dt,
.new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
    border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

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

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

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

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

	/*日付(dt)設定*/
	.new dt {
		width: 14em;	/*幅。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: #28ab92;	/*背景色*/
	}

	/*icon-bg2設定。サンプルテンプレートでは「●●●サービス」と書いてあるマーク*/
	.new dt span.icon-bg2 {
		background: #555;	/*背景色*/
	}

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

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


/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 1rem;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	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: #28ab92;		/*アイコンの色*/
	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: #777;		/*背景色*/
	color: #fff;			/*文字色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

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

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

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

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

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

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

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

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

	}/*画面幅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;}
.w90p {width: 90%;}
.w80p {width: 80%;}
.w60p {width: 60%;}
.w40p {width: 40%;}
.w20p {width: 20%;}
.fr {float: right;margin-left: 2%; margin-right: 2%; margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-left: 2%; margin-bottom: 20px;}
.fc {text-align: center;margin-right: 2%;margin-left: 2%; margin-top: 2%; margin-bottom: 20px;}
.look {display: inline-block;padding: 0px 10px;background:#eee; font-size: 0.8em; border: 1px solid #ccc; 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), print {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}
        .fr {float: right;margin-left: 2%; margin-right: 2%; margin-bottom: 20px;}
        .fl {float: left;margin-right: 2%;margin-left: 2%; margin-bottom: 20px;}
        .fc {text-align: center;margin-right: 2%;margin-left: 2%; margin-bottom: 20px;}

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

/*box（info1.htmlやstaff.htmlで使っている枠色がついたタイプのボックス）
---------------------------------------------------------------------------*/
/*box*/
.box {
	overflow: hidden;
	border: 3px solid #242b4b;	/*枠線の幅、線種、色*/
	padding: 20px;				/*ボックス内の余白*/
	border-radius: 10px;		/*角丸のサイズ。この１行を削除すれば角のとれた長方形になります。*/
	margin-bottom: 20px;		/*ボックスの下に空けるスペース*/
}
/*box内のh4タグ*/
.box h4 {
	color: #242b4b;		/*文字色*/
	font-size: 130%;	/*文字サイズ*/
}
/*box内のpタグ*/
.box p {
	padding: 0 !important;
}
/*box内のfrとflスタイルのリセット*/
.box .fr,.box .fl {margin-bottom: 0;}


/*お知らせブロック
---------------------------------------------------------------------------*/
.news4-parts {
    margin-left: 1rem; /*左に１文字分のスペース*/
    margin-right: 1rem; /*右に１文字分のスペース*/
    background: rgba(255, 255, 255, 1.02); /*背景色。0,0,0は黒のことで0.02は色が2%出た状態。*/
    border-radius: 0px; /*角を丸くする指定。お好みで。*/
    overflow: hidden;
}

/*奇数行目を背景色を少し濃くする。全体同じ色がよければここの数行は削除。*/
.news4-parts dt:nth-of-type(even),
.news4-parts dd:nth-of-type(even) {
    background: rgba(0, 0, 0, 0.04);
}

/*日付(dt)設定*/
.news4-parts dt {
    padding: 1rem 1rem 0; /*dt内の余白。上、左右、下への順番。*/
}

/*記事(dd)設定*/
.news4-parts dd {
    padding: 1rem; /*dd内の余白*/
}

.news4-parts a {
    text-decoration: none;
    }

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.news4-parts dt span {
    display: inline-block;
    text-align: center;
    line-height: 1.8; /*行間（アイコンの高さ）*/
    border-radius: 2px; /*角を丸くする指定*/
    padding: 0 1rem; /*上下、左右へのブロック内の余白*/
    width: 8rem; /*幅。６文字分。*/
    transform: scale(0.8); /*80%のサイズに縮小*/
    background: #fff; /*背景色*/
    color: #777; /*文字色*/
    border: 1px solid #777;
}

/*icon-bg1-parts。サンプルでは「重要」と書いてあるマーク*/
.news4-parts .icon-bg1-parts {
    border-color: transparent; /*上の枠線の色を引き継ぎたくないので透明にし、ここの背景色をそのまま出す。*/
    background: #990000; /*背景色*/
    color: #fff; /*文字色*/
}

/*icon-bg2-parts。サンプルでは「サービス」と書いてあるマーク*/
.news4-parts .icon-bg2-parts {
    border-color: transparent; /*上の枠線の色を引き継ぎたくないので透明にし、ここの背景色をそのまま出す。*/
    background: #8eac69; /*背景色*/
    color: #fff; /*文字色*/
}

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

    /*ブロック全体*/
    .news4-parts {
        display: grid;
        grid-template-columns: auto 1fr; /*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
    }

    /*日付(dt)設定*/
    .news4-parts dt {
        padding: 1rem 0 1rem 2rem; /*dt内の余白。上、右、下、左への順番。*/
    }

    /*記事(dd)設定*/
    .news4-parts dd {
        padding: 1rem 2rem 1rem 0;  /*dd内の余白。上、右、下、左への順番。*/
    }

    /*リンク*/
    .news4-parts a {
        text-decoration: none;
    }
    .news4-parts a:hover {
        color: #ff9900;
    }

}

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


/*box2（教授挨拶の設定・実習研修）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box2 {
	overflow-x: visible;
	position: relative;
	background: #809f5a;	/*背景色*/
    padding: 0.8em;
    padding-bottom: 0.1em;
	margin-top: 5vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}
.box2 a {
	color: inherit;
}

.box2 a:hover {
	color: #fff;
}

.box2 p {
	padding-bottom: 1px;
}

#tre {
    color: #fff;
}

.box2 p span {
    font-size: 110%;
    font-weight: bolder; 
}

.box2 hr {
    border:1px dashed #dcd7d7;
}

.center {
    text-align: center;
}

.bold {
	padding-bottom: 100px;
    font-weight: bold; 
}


/*ボックス上部の大きな装飾テキスト*/
.bold2 {
	font-size: 1.2em ;
    text-align: center;
}

/*テキストボックス*/
.box2 .text {
	margin-bottom: 0.8rem;	/*下に5文字分の余白*/
    padding: 0vw;
}

.box2 .text p {
	padding-bottom: 5px;
}


.box2 .text img  {
    margin: auto;
    display: block;
    width: 100%;
}


	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:900px), print {
        
	/*テキストボックスの上の小さなイラスト*/
	.box2 .text {
		margin-bottom: 0.8rem;	/*下に5文字分の余白*/
        padding: 3vw;
        border-radius: 0.3vw;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
     .box2 .text .fr {
        width: 40%;
        float: right;
        margin : 1%;
        }
        
     .box2 .text .fc {
        width: 100%;
        display: block;       /* ブロック要素にする */
        margin-left: auto;    /* 左の余白を自動 */
        margin-right: auto;   /* 右の余白を自動 */
        margin-bottom: 2%;
        }
        
    .box2 .text .fl {
        width: 40%;
        float: left;
        margin : 1%;
        }
    
	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.box2 .image {
	position: relative;
}

/*画像の角を少し丸くする指定*/
.box2 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box2 .image img:nth-of-type(1) {
	width: 50%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.box2 .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/
}
.box2 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 15vw;	/*画像ブロックに対して上からの配置場所*/
}


/*box3（実績ページの設定）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box3 {
	overflow-x: visible;
	position: relative;
	background: #809f5a;	/*背景色*/
	padding: 0.8em;	
	margin-top: 5vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*テキストボックス*/
.box2 .text {
	margin-bottom: 0.8rem;	/*下に5文字分の余白*/
    padding-bottom: 5px;
}

.box3 .text a {
	color: #333;
}

.box3 p {
	padding-bottom: 10px;
    padding-top: 0px;
    padding-left: 20px;
    font-size: 90%;
    border-bottom: 1px solid #c6c8c5;	/*薄い色の線の幅、線種、色*/
}

.box3 p.ach {
	margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.5rem;	/*文字サイズ*/
    text-align: center;
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
    border-bottom: none;
}

.box3 p.title {
    display:inline-block;
	padding: 0.2rem 1rem;
    border-left: 4px solid #bbcea4;
    font-size: 120%;
    border-bottom: none;
}
.box3 p span {
    background:linear-gradient(transparent 90%, #ffe18f 10%); 
    color: #000;
    font-size: 110%;
}



.box3 p.sub_title {
    line-height: 1.0;
	margin-top: 0px;
	font-size: 1.0rem;	/*文字サイズ*/
	padding-top: 1.0rem;
    padding-bottom: 0.2rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-weight: bolder;
    border-bottom: none;
    color: #357025;
}
.box3 .text .link p {
    padding-bottom: 6px;
    padding-left: 6px;
    font-size: 100%;
    border-bottom: 1px solid #c6c8c5;	/*薄い色の線の幅、線種、色*/
}

.ach {
    font-size: 120%;
    font-weight: bolder; 
}

.box3 h3 {
    margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.4rem;	/*文字サイズ*/
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
	border-bottom: 2px solid #fff;	/*薄い色の線の幅、線種、色*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
}


.bold {
	padding-bottom: 100px;
    font-weight: bold; 
}

.box3 .title {
    font-size: 150%;
}

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

	.box3 {
        margin-top: 1px;
        padding: 1em;	
		gap: 3vw;		/*左右の間のスペース*/
		border-radius: 0.5vw;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.box3 .text {
		margin-bottom: 0.2rem;	/*下に5文字分の余白*/
        padding: 3vw;
        border-radius: 0vw;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}

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


/*box4（リンク集）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box4 {
	overflow-x: visible;
	position: relative;
	background: #809f5a;	/*背景色*/
	padding: 0.8em;	
	margin-top: 5vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

.box4 .text .link {
    padding-top: 10px;
    padding-bottom: 5px;
}

.box4 .text .link a {
	color: inherit;
}

.arrow_r {
	position: relative;
	color: #000;
}
.arrow_r::after {
	position: absolute;
	top: 2px;
	right: -30px; /* 余白内右端に配置 */
	display: block;
	width: 12px;
	height: 12px;
	padding-right: 20px; /* アイコンの分余白を確保 */
	content: "";
	background-image: url("../images/link.png");
	background-repeat: no-repeat;
	background-size: 12px;
}

.box4 .text .link a:hover {
	color: #669933;
}

.box4 .link p {
    padding: 1px 5px;
    font-size: 95%;
    color: #666666;
    border-bottom: 1px solid #c6c8c5;	/*薄い色の線の幅、線種、色*/
}

.box4 p span {
    font-size: 110%;
    font-weight: bolder; 
}

.box4 h3 {
    margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.4rem;	/*文字サイズ*/
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
	border-bottom: 2px solid #fff;	/*薄い色の線の幅、線種、色*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
}

.box4 p.title {
    padding: 0rem 1rem;
    margin: 10px;
    border-left: 4px solid #bbcea4;
    font-size: 120%;
    border-bottom: none;
}

.bold {
	padding-bottom: 100px;
    font-weight: bold; 
}



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

	.box4 {
        margin-top: 1px;
        padding: 0.7em;	
		gap: 3vw;		/*左右の間のスペース*/
		border-radius: 0.0vw;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	

	.box4 .text {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
        border-radius: 0.5vw;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
        margin-top: 0.1vw;
    }
        
/*１カラムあたりの設定*/
	.box4 .text .link {
        display: flex;
        flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
        width: 48%;						/*ブロック幅*/
        margin-top: 20px;
        margin-left: 1%;
        margin-bottom: 1%;			/*ブロックの下に空ける余白*/
        margin-right: 1px;
        background: #fff;				/*背景色*/
        color: #666;					/*文字色*/
        border-radius: 0.3vw;	/*角丸の指定。ほんの少し角が丸くなります。*/
        overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
    }
	}/*追加指定ここまで*/


/*list-profile（トップページで使っている4列ブロック）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
#contents .list-profile-container {
	display: flex;
    justify-content: space-between;
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
    margin-top: .1vw;
    padding-bottom: 0.4em;
}
/*１カラムあたりの設定*/
#contents .list-profile {
	display: flex;
	flex-direction: column;			/*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
	width: 49.2%;						/*ブロック幅*/
	margin-bottom: 1%;			/*ブロックの下に空ける余白*/
    margin-right: 1px;
	background: #fff;				/*背景色*/
	color: #333;					/*文字色*/
	border-radius: 0.3vw;	/*角丸の指定。ほんの少し角が丸くなります。*/
	overflow: hidden;				/*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*リンクテキストの文字色*/
#contents .list-profile a {
	color: #3f6d03;
    text-decoration:none;
}
#contents .list-profile a:hover {
	box-shadow: unset;
    opacity: 0.9;
    transform: translateY(2px);
}

/*ボックス内のh4（見出し）タグ*/
#contents .list-profile h4 {
	margin-bottom: 5px;	/*下のテキストとの間に空けるスペース*/
	font-size: 120%;		/*文字サイズ*/
    text-align: center;
    color: #8eac69;
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-profile .text {
	padding: 0%;			/*ブロック内の余白*/
	flex: 1 0 auto;
}

/*ボックス内のp（段落）タグ*/
#contents .list-profile p {
	padding: 0px;		/*余白のリセット*/
    font-size: 90%;		/*文字サイズ*/
}

/*IEバグ対応*/
#contents .list-profile figure {
	min-height: 0%;
    text-align: center;
    margin-bottom: 20px;
    }

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:900px), print {
        
    #contents .list-profile-container {
    	padding-bottom: 0.0em;
        }
        
    #contents .list-profile {
    	display: block;
    	padding: 2%;
        }
        
    #contents .list-profile .text {
    	padding: 0%;			/*ブロック内の余白*/
    	flex: 1 0 auto;
        }
        
    #contents .list-profile figure {
    	width: 80%;
    	margin: 0 auto;
        }
}

/*研究・部門も矢印つきボタン*/
/* ボタン配置コンテナ */
.btn-wrap {
    position: relative;
    display: inline-block;
    min-width: min(200px, 100%);
    padding: .5em 4em .5em 2em;
    border-radius: 5px;
    text-align: center;
    margin: 0.5em 2em;
    font-size: 100%;
    text-decoration: none;
    color: #fff; /* 文字色 */
    border: none; /* 枠線 */
    background: #809f5a;
    transition: 0.3s;
}


.btn-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) translateX(0) rotate(45deg);
    border-color: #fff;
    transition: transform .3s ease;
    margin-right: 10px;
    margin-left: 10px;
    color: #fff;
}

/* hover */
.btn-wrap:hover {
  background-color: #afcf87;
  color: #fff;
}

/* hover時の矢印移動 */
.btn-wrap:hover::after {
  transform: translateY(-50%) translateX(10px) rotate(45deg);
  color: #fff;
}

/*画面幅700px以下の追加指定*/
@media (max-width:700px) {
    .btn-wrap {
        width: 90%;
        margin: 5%;
        color: #fff;
    }
  }  

/*実習・研修内のボタン*/
/* ボタン配置コンテナ */
.btn-tra {
    --btn-color:#809f5a;; /* ボタン基準色 */
    position: relative;
    display: inline-block;
    min-width: min(200px, 100%);
    padding: .5em 2em .5em 2em;
    border-radius: 5px;
    text-align: center;
    margin: 0em 2em;
    font-size: 120%;
    text-decoration: none;
      /* 通常状態 */
    color: #fff; /* 文字色 */
    border: none; /* 枠線 */
    background: #809f5a;
      /* 状態変化アニメーション */
    transition:
    background-color .2s linear,
    color .2s linear;
}


.btn-tra::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) translateX(0) rotate(45deg);
  border-color: #fff;
  transition: transform .3s ease;
  margin-right: 10px;
  margin-left: 10px;
}

/* hover */
.btn-tra:hover {
  background-color: #afcf87;
  color: #fff;
}

/* hover時の矢印移動 */
.btn-tra:hover::after {
  transform: translateY(-50%) translateX(10px) rotate(45deg);
}

/*画面幅700px以下の追加指定*/
@media (max-width:700px) {
    .btn-tra {
        width: 90%;
        margin: 5%;
    }
  }  

/*寄附紹介の下部のグレーの囲み*/
.box_gray {
    padding: 1em 1em;
    font-size: 90%;
    margin: 2em 0;
    color: #666666;
    background: #f3f4f3;/*背景色*/
}
.box_gray .p .gray {
    margin: 0; 
    padding: 0;
}

/*画面幅700px以下の追加指定*/
@media (max-width:700px) {
    .box_gray {
        margin: 0.5em;
        margin-bottom: 0.2em;
    }
 }   
    

/*実習研修内の女性の囲み*/
.box_pink {
    padding: 1.8em 0.8em 0.1em 0.8em;
    font-size: 100%;
    margin: 1.5em 0;
    color: #666666;
    background: #fef1f2;/*背景色*/
}
.box_pink p {
    margin: 0; 
    padding: 0;
}

#contents .box2 .text .box_pink img {
    float: right;            /* 写真を左寄せにする */
    margin: 5px;
    width: 30%; 
}

/*画面幅700px以下の追加指定*/
@media (max-width:700px) {
    .box_pink {
        padding: 1.0em 0.5em;
        background: #fef1f2;/*背景色*/
        margin: 0.5em;
        margin-bottom: 0.2em;
    }
#contents .box2 .text .box_pink img {
      float: right;            /* 写真を左寄せにする */
      margin: 3px;
      width: 40%; 
    }
} 

/*実習研修内の実習生*/
.box_blue {
    padding: 1.8em 0.8em 0.1em 0.8em;
    font-size: 100%;
    margin: 1.5em 0;
    color: #666666;
    background: #e9f3f9;/*背景色*/
}

.box_blue p {
    color: #666666;
    margin-top: 
}

.sub-title {
    padding: 0rem 1rem;
    margin-bottom: -10em;
    border-left: 4px solid #bbcea4;
    font-size: 120%;
}

.box_blue .blue {
    font-size: 120%;
    font-weight: 700;
    color: #666666;
}
#contents .box2 .text .box_blue img {
   float: right;            /* 写真を左寄せにする */
   margin: 5px;
   width: 30%; 
}

    /*画面幅700px以下の追加指定*/
    @media (max-width:700px) {
    .box_blue {
        padding-top: 20px;
        padding-left: 2px;
        padding-bottom: 2px;
        padding-right: 2px;
        background: #dbeef9;/*背景色*/
        margin: 0.5em;
        margin-bottom: 0.2em;
        }
    #contents .box2 .text .box_blue img {
      float: right;            /* 写真を左寄せにする */
      margin: 3px;
      width: 30%; 
        }
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1200px), print {
        #contents .box2 .text .box_blue img {
        width: 350px;
        }
        
}/*画面幅1200px以上の追加指定ここまで*/



/*チェックマーク*/
.checkmark {
      display: inline-block;
      margin-right: 10px;
      width: 5px;
      height: 12px;
      border-bottom: 2px solid #7db4d5; /* チェックの縦横の線 */
      border-right: 2px solid #7db4d5;
      transform: rotate(45deg);            /* 45度傾けてチェックマークにする */
}
    
/*患者さまへの臨床実験*/
.box_green {
    padding: 2em 2em 0.1em 2em;
    font-size: 100%;
    margin: 1.0em;
    color: #666666;
    background: #f2ffe6;/*背景色*/
}

.box_green p {
    color: #666666;
}

.box_green a {
    color: #346905;
}

.box_green a:hover {
    color: #a9b29d;
}