@charset "utf-8";
/*=================================
1: reset-CSS
2: setting
3: header
4: footer
5: common-content
6: top page
7: second page
8: JS
=================================*/


/* 1: reset-CSS
================================== */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
del, dfn, em, img, ins, kbd, q, samp,
small, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	font-weight: normal;
}
body {
	line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
	display:block;
}
li {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}

/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}

del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}

/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}


	.sp_show {
		display: none !important;
	}

/* 2: setting
================================== */
*, *:before, *:after {
	box-sizing: border-box;
}

/* clearfix*/
.cf:after { content: ""; clear: both; display: block; }
.clear { clear: both;}

html {
	overflow: auto;
	font-size: 62.5%;
}
body {
	font-family: 'Meiryo', 'Hiragino Kaku Gothic Pro', メイリオ, 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-feature-settings : "palt";
	font-weight: 500;
	color: #323232;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.7;
	-webkit-print-color-adjust: exact;/* baskground_print */
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;/* safari_textBold*/
	-webkit-text-size-adjust: 100%;/* safari_textBold*/
	min-width:1050px;
}
@media all and (-ms-high-contrast:none){
	body {font-family: Meiryo, 'Hiragino Kaku Gothic Pro', メイリオ, 'ヒラギノ角ゴ Pro W3', Osaka, 'MS PGothic', arial, helvetica, sans-serif;}
}
img {
	display: block;
	line-height: 0;
}
input[type="submit"],
input[type="button"] {
border-radius: 0;
-webkit-box-sizing: content-box;
-webkit-appearance: button;
appearance: button;
border: none;
box-sizing: border-box;
cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
outline-offset: -2px;
}

/* link */
a {
	color:#374149;
	-webkit-transition: all .2s;
	transition: all .2s;
}
a:hover {
	color: #FABD00;  /* ★★このカラーは変更するかも（kawai）★★ */
	text-decoration: underline;
}
a img {
	-webkit-transition: all .2s;
	transition: all .2s;
}
a img:hover {
	opacity:.7;
}
a.hovre_line:hover {
	text-decoration: underline;
}




/* 3: header
================================== */
#wrapper {
	width:100%;
	position:relative;
	overflow: hidden;
}

#header {
	position:relative;
	z-index:999;
	padding-top:15px;
}
#header a,
#footer a {
	text-decoration:none;
}

h1 {
	float:left;
 	img {
	width: 450px;
	}
}

h2 {
	font-weight:bold;
	font-size:2.8rem;
	margin-bottom:0.5em;
}
	
	#main_contents .inr > h2 {
		background:#deedf2;
		margin:0 -200% 20px -200%;
		padding:0 200%;
	}
	
	#main_contents .inr > h2.green {   /* ★★このカラーは変更する（kawai）★★ */
		background:#c8de9a;  /* ★★このカラーは変更する（kawai）★★ */
		margin:0 auto;
		padding:0.2em 0.5em;
		font-size:2.3rem;
	}


h3 {
	font-size:  2.0rem; 
	border-bottom: solid 3px #ccc;
	padding-bottom:  5px;
	margin-bottom: 15px;
	position:  relative;
	font-weight:  bold;
}
	h3:before {
		content:  '';
		width: 100px;
		height: 3px;  
		background-color: #F5BB5E; 
		display:  block;  
		position:  absolute;
		left:  0;   
		bottom: -3px; 
	}

h4 {
	font-size:  1.8rem; 
	position: relative;
	padding: 0.5em 1em;
	border-top: solid 2px #F5BB5E;
	border-bottom: solid 2px #F5BB5E;
	font-weight:  bold;
	margin:2em auto 1em auto;
}
h4:before, h4:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #F5BB5E;
}
h4:before {
  left: 7px;
}
h4:after {
  right: 7px;
}

h5 {
	font-size:  1.6rem; 
	font-weight:  bold;
	color: #026736;
	text-align: left;
	padding: 0.25em 0.5em;
  border-top: solid 2px #8fc327;
  border-bottom: solid 2px #8fc327;
  background: -webkit-repeating-linear-gradient(-45deg, #e5ffc0, #e5ffc0 3px,#f9ffe9 3px, #f9ffe9 7px);
  background: repeating-linear-gradient(-45deg, #e5ffc0, #e5ffc0 3px,#f9ffe9 3px, #f9ffe9 7px);
}

.header_main {
	width: 100%;
}

.inr {
	width:100%;
	max-width:1200px;
	margin:0 auto;
	padding: 0 10px;
	position:relative;
}

.menu > li.header_subnav {
	position: absolute;
	top: -40px;
	right: 0;
	font-size:1.3rem;
}

	.header_subnav li a{
		display:block;
		position:relative;
	}
	
	.header_subnav li a:before {
		content:"";
		position:absolute;
		top:20px;
		left:0;
		width:10px;
		height:10px;
		background:url(../images/cmn/icn_arrow.svg) no-repeat 0 center;
	}

	
/* -----google検索----- */
.menu > li.search_box {
	position: absolute;
	top: -80px;
	right: 180px;
}

.header_main_inr_sec .search_box {
	top: 0;
}


#g-k-w-search td,
#g-k-w-search th {
	border-bottom: none;
}
#g-k-w-search .gsc-control-cse { padding: 0; }
/* テキストボックスに文字入力したときに出る「×」マークの位置調整用の指定 */
#g-k-w-search .gsc-search-box { position: relative; }
#g-k-w-search .gsc-search-box tr,
#g-k-w-search .gsc-search-box td { display: block; }
#g-k-w-search .gsc-search-box .gsc-input-box { padding-top:0; }
/* テキストボックスの親要素。width指定しつつfloatで左寄せ */
#g-k-w-search .gsc-search-box td.gsc-input,
#g-k-w-search .gsc-search-box td.gsc-input .gstl_50 {
	box-sizing: border-box;
	width: 200px !important;
	padding: 0 !important;
	margin-right: 5px;
	height: 30px;
	vertical-align: top;
	float: left;
}
#g-k-w-search .gsc-search-box .gsib_a {
	width: 200px !important;
	padding: 0 !important;
}
/* テキストボックスのデザイン設定 */
#g-k-w-search .gsc-search-box input#gsc-i-id1 {
	box-sizing: border-box;
	height: 30px !important;
	padding: 5px 30px !important;
	border-radius: 20px;
	-webkit-box-shadow: 30px 30px 30px 0 rgba(200,200,200,0.4) inset;
	-moz-box-shadow: 30px 30px 30px 0 rgba(200,200,200,0.4) inset;
	box-shadow: 30px 30px 30px 0 rgba(200,200,200,0.4) inset;
	background-position: 15px center !important;
}
#g-k-w-search .gsc-search-box td#gs_tti51 { margin-bottom: 5px; }
/* ボタンの親要素。width指定しつつfloatで左寄せ */
#g-k-w-search .gsc-search-box td.gsc-search-button {
	width: 20px !important;
	height: 30px;
	float: left;
}
/* テキストボックスに文字入力したときに出る「×」マークの位置調整 */
#g-k-w-search .gsc-search-box .gsib_b {
	position: absolute;
	width: 20px;
	top: -5px;
	left: -10px;
}
/* デフォルトで設定されている(疑似的な)テキストボックスの
デザイン設定を解除 */
#g-k-w-search .gsc-search-box .gsc-input-box,
#g-k-w-search .gsc-search-box .gsc-input-box-hover,
#g-k-w-search .gsc-search-box .gsc-input-box-focus {
	border: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}
/* 検索ボタンの背景をボタンのように見せかける */
#g-k-w-search .gsc-search-box .gsc-search-button {
	width: 20px;
	height: 30px;
	position: absolute;
	right: 10px;
	top:0;
	padding: 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	cursor: pointer;
	border: none;
}

#g-k-w-search .gsc-search-box td.gsc-search-button {
	background: url(../images/cmn/icn_search.svg) 96% center no-repeat;
}

html .gsc-search-button-v2, html .gsc-search-button-v2:hover, html .gsc-search-button-v2:focus {

    border-color: none;
    background-color: rgba(0,0,0,0);
    background-image: none;
    filter: none;
}


#g-k-w-search .gsc-search-box .gsc-search-button svg {
	display: none;
}
/* 検索ボタンの背景部分にテキストを表示させる */
#g-k-w-search .gsc-search-box .gsc-search-button:before {
	position: absolute;
	top: 35%;
	left: 30%;
	content: '';
	color: #FFF;
}
/* 検索ボタンを透明化し背景のみを表示させる */
#g-k-w-search .gsc-search-box input.gsc-search-button-v2,
#g-k-w-search .gsc-search-box input.gsc-search-button {
	width: 10px;
	height: 50px;
	padding: 0 !important;
	opacity: 0;
}
#header .gsc-control-cse {
	background:none;
	border:0;
}

/* ↓ gnav
================================== */
#menu {
	margin: 10px auto;
}
.dl-menu {
	clear:both;
	position:relative;
}
.menu li.menu__single {
	width: calc(100%/6);
}
.menu > li {
 	font-weight: bold; 

}
.menu > li a {
	display: block;
	padding: 5px 15px;
	color: #383737;
	line-height:40px;
	height:48px;
	text-align:center;
}

.menu > li > a:hover {
	color:  #FABD00;
}
.menu > li > a {
	position: relative;
	text-align:center;
}

.menu > li > a[href="#"]{
	cursor: default;
}

.menu > li > a::after,
.header_subnav li a::after {
	position: absolute;
	bottom: -2px;/*下のラインの太さ*/
	left: 0;
	content: '';
	width: 0;
	height: 2px;
	background-color:  #FABD00;
	transition: .3s;
}



.menu > li > a:hover::after,
.header_subnav li a:hover::after,
.outline .menu > li.nav_outline > a::after,
.call .menu > li.nav_call > a::after,
.research .menu > li.nav_research > a::after,
.report .menu > li.nav_report > a::after,
.event .menu > li.nav_event > a::after,
.manual .menu > li.nav_manual > a::after{
	width: 100%;
}

.menu > li.menu__single {
	position: relative;
}


.menu__second-level {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	z-index: 10;
	top: 48px;
	width: 100%;
	background : white;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	text-align: left;
}
.menu__second-level li {
	border-top: 1px solid #8fc327;
}
li.menu__single:hover ul.menu__second-level {
	top: 48px;
	left: 0;
	visibility: visible;
	opacity: 1;
	z-index: 9999;
}
.menu__second-level li > a {
	padding: 5px 10px;
	font-size: 1.4rem;
	color: #000;
}
.menu__second-level li a:hover {
	background : rgba(0, 0, 0, 1);
	color:white;
}
.menu__second-level li.navscore > a {
    background : #c00000;
}

.menu__second-level li.navscore a:hover {
    background : rgba(0, 0, 0, 1);
}

.noscript_menu,
.dl-trigger,
.open_icn,
.main_visual_sp {
	display: none;
}

.main_visual{
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.main_visual_inr img{
	max-width: 100%;
	height: auto;
vertical-align:bottom;
}

.main_visual_inr{
	width:100%;
	min-width: 1200px;
}


#news {
	margin:30px auto;
}

.link_btn a {
	text-decoration:none;
	color:#000;
}

.link_btn a:hover {
	color:#FABD00;
}



#news dl {
	overflow:hidden;
}

#news dt {
	float:left;
	width:10em;
	padding:5px;
}

	#news dd {
		margin-left:10em;
		padding:5px;
	}
	
	.new {
		position:relative;
		background:#F7BD5F;
		color:white;
		padding:0 1em 0 1.5em ;
		margin-left:0.5em;
	}
	
		.new::before {
			content:"";
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 12px 10px 13px 0;
			border-color: transparent #F7BD5F transparent transparent;
			background:white;
			position:absolute;
			top:0;
			left:0;
		}



/* 4: footer
================================== */

#footer {
	position:relative;
	clear:both;
}

#footer .inr {
	overflow: hidden;
}
#footer .inr ul.f_menu {
	padding: 10px 0;
	justify-content:flex-end;
}
	#footer .f_menu li {
		margin-right:10px;
	}
	
	#footer .f_menu li a {
		position:relative;
		text-align:left;
		text-decoration: none;
	}

	.link_btn:before,
	#footer .f_menu li::before,
	#news dt:before,
	.report dt:before,
	.event dt:before {
		content:"";
		display: inline-block;
		background: url(../images/cmn/icn_arrow.svg) no-repeat;
		background-size: contain;
		width: 10px;
		height: 10px;
		margin-right: 5px;
	}
	
	#footer .f_menu li:first-child::before {
		content:"";
	}


#copy {
	clear:both;
	text-align:center;
	padding:20px;
	font-size: 1.4rem;
	color: #000;
}

/*スクロールボタン*/
#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-weight: bold;
    font-size: 60%;
    z-index: 5;
    text-align: center;
}
#page-top a {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    background: #F5BB5E;
    color:  #fff;
    opacity: 0.7;
}

#page-top a::after {
    position: absolute;
    right: 16px;
    top: 40%;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



/* 5: common-content
================================== */
.flexbox {/* 折り返しのみ */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
}
.flexbox_wap {/* 折り返しのみ */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}
.flexbox_sbwap {/* 折り返し・水平方向端揃え */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}

.flexbox_sbnwap{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
	-ms-flex-wrap : nowrap; /*for IE10*/
	-webkit-flex-wrap : nowrap; /*for old webkit browser*/
	flex-wrap: nowrap;
}

.flexbox_cwap {/* 折り返し・水平中央揃え */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
}
.flexbox_c {/* 折り返しなし・水平中央揃え */
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
}
.flexbox_end {
	align-items: flex-end;
}
.fL {float:left!important;}
.fR {float:right!important;}
.m0 {margin:0 auto!important;}
.m1em {margin:1em;}
.m2em {margin:2em auto;}
.mR10px {margin-right:10px!important;}
.mR1em {margin-right:1em!important;}
.mL1em {margin-left:1em!important;}
.mT1em {margin-top:1em!important;}
.mT2em {margin-top:2em!important;}
.mT4em {margin-top:4em!important;}
.mB0 {margin-bottom:0!important;}
.mB1em {margin-bottom:1em!important;}
.mB20 {margin-bottom:20px!important;}
.mB40 {margin-bottom:40px!important;}
.p1em {padding:1em;}
.p2em {padding:2em!important;}
.pT1em {padding-top:1em;}
.pB1em {padding-bottom:1em;}
.tC {text-align:center;}
.tR {text-align:right!important;}
.tL {text-align:left!important;}
.fB {font-weight: bold;}
.fI {font-style: italic;}
.fS {font-size: 80%;}
.score_red {color: #c00000;}
.start_blue {color: #006bbb;}
.white {background:white;}
.gray {background:#eef3fd;}
.Blue {background:#006bbb;}
.LBlue {background:#daeef3;}
.LRed {background:#fdeeed;}
.fBig {font-size:2.0rem; font-size:20px;}
.underL {border-bottom:solid 1px #000;}
.mauto {margin:auto;}
.mid {vertical-align:middle;}
.red {color:red;}

	.tC img {
		margin:0 auto;
	}

.link_pdf {
	background:url(../images/cmn/icn_pdf.svg) no-repeat 0 center;
	padding-left:20px;
}
.link_pdf_right {
	background:url(../images/cmn/icn_pdf.svg) no-repeat right center;
	padding-right:20px;
}

.link_doc {
	background:url(../images/cmn/icn_doc.svg) no-repeat 0 center;
	padding-left:25px;
}

.link_blank {
	background:url(../images/cmn/icn_blank.svg) no-repeat right center;
    background-size: 14px;
    padding-right: 20px;
}

#information {
	overflow:hidden;
	font-size:1.4rem;
	background:#f6f6f6;
	padding:25px 0;
	margin-top:25px;
	font-size:1.8rem;
}

	#information dl {
		background:#fff;
		overflow:hidden;
	}
	
	#information dt {
		background:#EBB35A;
		float:left;
		width:5.5em;
		padding:0.5em;
		color:white;
		position:relative;
		font-weight:bold;
	}
	

	
	#information dd {
		margin-left:1em;
		float:left;
		padding:0.5em;
	}


#breadcrumb {
	overflow:hidden;
	font-size:1.4rem;
	/*background:#deedf2;*/
	padding:2px 0;
}

	.top #breadcrumb {
		background:white;
	}


#breadcrumb li:before {
	content:"＞";
	padding: 0 5px;
}
#breadcrumb li:first-child:before {
	content: none;
}

/*２階層目*/
#main_contents .inr {
	padding:1em;
}

#main_contents p {
	margin-bottom:1em;
}

.disc {
	margin-bottom:1em;
}

	.disc .disc {
		margin-bottom:0;
	}

.disc li {
	margin-left:1em;
	list-style:disc;
}

	.disc .disc li {
		list-style-type: circle;
	}


/*公募情報*/
.call #information {
	margin-top:0;
}

.koubo_preparation {
	background:#FFDE00;
	text-align:center;
}

	
	#information .koubo_end dt {
		background:#010666;
	}
	
		#information .koubo_end dt::after {
			border-color: transparent transparent transparent #010666;
		}

.koubo_boost {
margin-left:0.5em;
	margin-bottom:0.5em;
	color:#000;
	font-weight:bold;
	font-size:2rem;
	line-height: 28px
		}

#main table {
	border:solid 1px #ccc;
	margin-bottom:1em;
}

.w100 {
	width:100%;
}

	#main .w100 td:first-child {
		white-space:nowrap;
		width:20%;
	}
	
	#main .w100 td:nth-child(2) {
		width:30%;
	}

#main th,#main td {
	border:solid 1px #ccc;
	padding:0.5em;
}

#main th {
	background:#FFFFF0;
	color:#000;
}

.v-middle {
  vertical-align: middle;
  width: 100px;
}


/*クロアポ一覧*/
.left, .right {
  display: inline-block;
}

.frame {
  display: flex;
  justify-content: space-between;
}

a {
 word-break: break-all;
}

/*研究課題*/
#main_contents .left_contents {
	width:80%;
}
#main_contents .right_contents {
	width:18%;
}

.right_contents {
	padding:20px;
	background:#eee;
}

	.right_contents h2 {
		font-size:1.8rem;
	}


/*2025/03/13 追加*/
.※ li {
   text-indent: -1em;
   padding-left: 1em;
}



	.list a{
		display:block;
		position:relative;
		padding-left:15px;
	}
	
	.list a:before {
		content:"";
		position:absolute;
		top:10px;
		left:0;
		width:10px;
		height:10px;
		background:url(../images/cmn/icn_arrow.svg) no-repeat 0 center;
	}

.prof {
	padding-left:1em;
	overflow:hidden;
}

	.prof h5 {
		margin-bottom:0.5em;
	}



.research dl {
	overflow:hidden;
	border-bottom:dashed 1px #ccc;
}

.rm-image {
	float:left;
	margin-right:1em;
	width:100px;
}

	.rm-image img {
		max-width:100%;
		height:auto;
	}

.rm-affiliation,
.rm-section,
.rm-job,
.rm-other-affiliation,
.rm-other-job {
	position:relative;
	display:inline-block;
	margin-right:1em;
}

.person {position:relative; overflow:hidden; margin:1em auto; border-bottom: dashed 1px #666;}
.name {margin-left:120px; display:inline-block; float:left;}
.rm-image {position:absolute; top:0; left:0;}
.rm-affiliation {margin-left:1em;}
.panel,.rm-site-box {display:inline-block;}
.outline {margin-left:120px; clear:both;}
.rm-other-affiliation:empty,
.rm-other-job:empty,
.rm-footer:empty,
.rm-affiliation:empty,
.rm-section:empty,
.rm-job:empty
	{display:none;}
.syozoku {margin-left:120px!important;}
.syozoku .rm-affiliation {margin-left:0;}


/*
.research h3 a {
	display:inline-block; 
	background:#026736; 
	border:solid 1px #026736; 
	color:white; 
	font-size:1.6rem; 
	padding:0.2em 1em; 
	margin-left:17em;
}

.research h3 a:hover {background:#fff; color:#026736; }
*/

.research h3 {
	position:relative;
}

.accordionlist .pd {
	position:absolute;
	top:0;
	left:8em;
	background:#026736; border:solid 1px #026736; color:white; font-size:1.6rem; padding:0.2em 1em; 
	font-weight:bold;
	text-decoration:underline;
	cursor:pointer;
}

.accordionlist .pd:hover {
	background:white;
	color:#026736;
}

.accordionlist .pd.last {
	left:13em;
}


.tate .name {
	height:5em;
}

.twoline .rm-site-box {
	display:block;
	margin-left:120px;
	overflow:hidden;
}

.twoline .panel {
	display : block!important;
	margin-left:120px;
}



.mokuji li {
	margin-right:10px;
}


.mokuji li.non {
	border:0;
}

	.mokuji li a {
		display:block;
		border:solid 1px #026736;
		padding:0.2em 1em;
	}

	.mokuji li a:hover {
		background:#026736;
		color:white;
	}

.mokuji li.current {
	background:#026736;
	color:white;
	padding:0.2em 1em;
	border:solid 1px #026736;
}

.btn a {
	display:block;
	border:solid 1px #026736;
	border-radius:1em;
	padding:0.5em;
	background:#026736;
	color:white;
	margin-top:10px;
	position:relative;
	text-align:center;
}

.btn a:hover {
	background:white;
	color:#026736;
}

	.btn a::before {
		content:"";
		width:15px;
		height:15px;
		position:absolute;
		top:5px;
		right:5px;
		background:url(../images/cmn/icn_blank_w.svg) no-repeat;
	}

/*関連リンク*/
.link_list {
    border-bottom: 1px dashed #ccc;
    padding: 20px 0;
}
.link_list dt {
    width: 200px;
    box-sizing: border-box;
    display: inline-block;
}
.link_list dt img {
    max-width: 100%;
    max-width: 100%;
    height: auto;
}

.link_list dd {
    padding-left: 20px;
    display: inline-block;
    width:900px;
}

.link_list dd .site-title {
    font-weight: bold;
}

