@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap");

/*------ 学会用フォーマット（固定幅1000px） ------

rev.191030
cssの汎用設定をcommon.cssに、各ページの設定をeach-page.cssに分割
JSをcommon.jsに格納
ページ読み込み時のトランジションを停止
見出し用コメント追加
その他調整

rev.200403
フォントをアーリーアクセスから変更

------------------------------*/

/*-----
ページ読み込み時のトランジションを停止
-----*/
.preload *{
	-webkit-transition:none !important;
	-moz-transition:none !important;
	-ms-transition:none !important;
	-o-transition:none !important;
	transition:none !important;
}

/*-----------------------------------
	全体共通設定
-----------------------------------*/
*,*::before,*::after{
	box-sizing:border-box;
}
html{
	font-size:100%;
}
body{
	margin:0;
	background:url(../img/body_bg_01.jpg) center bottom;
	background-attachment:fixed;
	background-size:cover;
	font-family:
		"Noto Sans JP",
		"ヒラギノ角ゴ ProN W3",
		Hiragino Kaku Gothic ProN,
		Arial,
		Meiryo,
		sans-serif;
	font-size:1em;
	font-weight:400;
	color:rgb(60,60,60);
	line-height:1.65;
	-webkit-text-size-adjust:100%;
}
.wrapper{
	min-width:1000px;
}

/*----- header -----*/
h1{
	margin:0 auto;
	width:100%;
}
h1 a{
	display:block;
	transition:opacity .2s ease-out;
}
	h1 a:hover{
		opacity:.5;
	}
h1 a img{
	vertical-align:bottom;
}

/*----- middle_area -----*/
.middle_area{
	display:flex;
	justify-content:space-between;
	margin:0 auto;
	width:1000px;
}

/*----- nav -----*/
nav{
	position:relative;
	padding:23px 0;
	width:230px;
	background:url(../img/menu_bg_01.png) right top no-repeat rgba(0,0,0,.5);
	box-shadow:0 0 5px rgba(0,0,0,.3);
	z-index:50;
}
nav ul.main{
	margin:0;
	padding:0;
	width:100%;
}
nav ul.main li{
	margin-bottom:5px;
	list-style:none;
}
nav ul.main li:last-child{
	margin-bottom:0;
}
nav ul.main li a{
	position:relative;
	display:block;
	padding:.6em 1.2em .6em 1.2em;
	background:url(../img/menu_pattern_01.png) right -20px center repeat-y;
	font-size:.937rem;
	font-weight:400;
	color:rgb(255,255,255);
	line-height:1.4;
	text-decoration:none;
	transition:.15s ease-out;
	transition-property:background,border,color,box-shadow;
}
nav ul.main li a:hover,
nav ul.main li a.current{
	background-color:rgb(255,255,255);
	background-position:right center;
	box-shadow:0 0 5px rgba(0,0,0,.3) inset;
	color:rgb(0,104,182);
}
nav ul.main li a.close{
	background-image:none;
	background-color:rgba(206,210,213,.05);
	color:rgba(255,255,255,.5);
	pointer-events:none;
	cursor:default;
}
nav ul.banner{
	margin:15px 0 0;
	padding:0;
	width:100%;
}
nav ul.banner li{
	margin-bottom:4px;
	list-style:none;
}
nav ul.banner li:last-child{
	margin-bottom:0;
}
nav ul.banner li a{
	display:block;
	padding:0;
	background:none;
	border:none;
	box-shadow:none;
	font-size:.812rem;
	text-decoration:none;
	text-align:center;
	transition:.2s ease-out;
	transition-property:opacity;
}
nav ul.banner li a img{
	width:100%;
	margin-bottom:5px;
	vertical-align:bottom;
}
	nav ul.banner li a:hover,
	nav ul.banner li a.current{
		opacity:.5;
	}
nav ul li a.external::after{
	content:"";
	display:inline-block;
	background:url(../img/icon_external_white.svg) center center no-repeat;
	background-size:cover;
	width:.8em;
	height:.8em;
	margin-left:.5em;
	transition:background .15s ease-out;
}
	nav ul li a.external:hover::after{
		content:"";
		display:inline-block;
		background:url(../img/icon_external_black.svg) center center no-repeat;
		background-size:cover;
	}

/*----- footer -----*/
footer{
	min-width:1000px;
	position:relative;
	background:rgb(47,91,132);
	box-shadow:0 0 5px rgba(0,0,0,.3);
	color:rgb(255,255,255);
	line-height:1.5;
	z-index:150;
}
footer > .inner{
	margin:0 auto;
	padding:25px 0 25px;
	width:1000px;
	text-align:center;
}
footer address{
	display:inline-block;
	margin:0 15px;
	padding:10px 0;
	font-style:normal;
	text-align:left;
	vertical-align:top;
}
footer address:last-child{
	padding-right:0;
}
footer address .title{
	margin:0 auto .4em;
	padding:0 0 .4em;
	border-bottom:dotted 1px rgb(114,179,217);
	font-size:.937rem;
	font-weight:500;
}
footer address .name,
footer address .info{
	margin:0;
}
footer address .name{
	margin:0 0 .3em;
	font-size:1rem;
	font-weight:500;
	line-height:1.4;
}
footer address .name small{
	font-size:.95em;
}
footer address .name .department{
	display:block;
	font-size:.9em;
}
footer address hr{
	border:none;
	border-bottom:dotted 1px rgb(180,180,180);
}
footer address .info{
	margin:0;
	font-size:.812rem;
}
footer address .info .sub_h{
	display:inline-block;
	margin-top:.5em;
}
footer .copyright{
	margin:0;
	padding:1em 0;
	width:100%;
	min-width:1000px;
	background:rgb(0,91,171);
	box-shadow:0 0 5px rgba(0,0,0,.3);
	font-size:0.75rem;
	color:rgb(255,255,255);
	line-height:1.5;
	text-align:center;
}

/*-----------------------------------
	トップページ以外の共通設定
-----------------------------------*/
.main_area{
	margin:0;
	width:770px;
	box-shadow:0 0 5px rgba(0,0,0,.3);
}
.main_area h1{
	background:linear-gradient(to bottom,rgba(255,255,255,0)80%,rgba(255,255,255,1));
}
.main_area > .content_area{
	margin:0;
	padding:30px 30px 50px;
	min-height:800px;
	background:rgb(255,255,255);
}
/*--段落前後アキ--*/
.main_area p{
	margin:.65em 0;
}
/*--補足・注（先頭に※や＊付き）--*/
.main_area .note{
	display:block;
	margin:.5em 0;
	padding-left:1em;
	font-size:.875rem;
	text-indent:-1em;
}
/*--リンク--*/
.main_area a.link{
	color:rgb(0,110,170);
	-webkit-transition:opacity .2s ease-out;
	transition:opacity .2s ease-out;
}
	.main_area a.link:hover{
		opacity:.5;
	}
/*--url--*/
.main_area .url{
	word-break:break-all;
}
/*--hr--*/
.main_area hr{
	border:none;
	border-bottom:dotted 1px rgb(180,180,180);
}
/*--文字色--*/
.main_area .red{
	color:rgb(240,80,80);
}
.main_area .orange{
	color:rgb(255,160,80);
}
.main_area .bg_skyblue{
	display:inline-block;
	margin:0 .3em;
	padding:0 .3em;
	background:rgb(110,180,240);
	border-radius:3px;
	color:rgb(255,255,255);
	font-weight:500;
}
/*--文字サイズ等--*/
.main_area .big{
	font-size:1.25em;
	line-height:1.5;
}
/*--マージン調整用--*/
.main_area .mt2em{
	margin-top:2em;
}
.main_area .mt1em{
	margin-top:1em;
}
/*--テキストインデント--*/
.main_area .indent1{
	text-indent:1em;
}
.main_area .paren{
	text-indent:-.5em;
}
.main_area .fsl_lower1 > *{
	padding-left:1em;
	text-indent:-1em;
}
/*--文字中央ぞろえ--*/
.main_area .ta_c{
	text-align:center;
}
.main_area .ta_r{
	text-align:right;
}
/*--見出し--*/
.main_area h2{
	position:relative;
	margin:1.5em 0 .5em;
	padding:.3em .5em .3em .6em;
	border-bottom:dotted 1px rgb(100,140,180);
	text-shadow:0 1px 3px rgba(0,0,0,.3);
	font-size:1.625rem;
	font-weight:500;
	color:rgb(0,100,160);
	line-height:1.4;
}
.main_area h2::before{
	position:absolute;
	top:50%;
	left:0;
	content:"";
	display:block;
	width:.25em;
	height:.9em;
	margin-right:4px;
	background:linear-gradient(to bottom,rgb(0,161,153),rgb(24,127,195),rgb(155,73,151),rgb(230,53,86),rgb(242,150,0));
	box-shadow:0 1px 3px rgba(0,0,0,.3);
	transform:translateY(-50%);
}
.main_area h3{
	margin:1.5em 0 .5em;
	padding-bottom:.3em;
	font-size:1.35rem;
	line-height:1.4;
	border-bottom:solid 1px rgb(180,180,180);
}
.main_area h3::before{
	content:"";
	display:inline-block;
	margin-right:8px;
	width:8px;
	height:8px;
	border-radius:4px;
	background:rgb(240,140,110);
	vertical-align:10%;
}
.main_area h4{
	margin:1.8em 0 .5em;
	padding-bottom:.3em;
	border-bottom:dotted 1px rgb(180,180,220);
	font-size:1.125rem;
	color:rgb(0,120,160);
	line-height:1.4;
}
.main_area h5{
	margin:1.8em 0 .5em;
	font-size:1rem;
	color:rgb(0,60,120);
	line-height:1.4;
}
.main_area h6{
	margin:1.8em 0 .5em;
	font-size:1rem;
	color:rgb(100,100,100);
	line-height:1.4;
}
.main_area .content_area > section:first-child > h2:first-child,
.main_area h2 + section > h3:first-child,
.main_area h3 + section > h4:first-child,
.main_area h4 + section > h5:first-child,
.main_area h5 + section > h6:first-child{
	margin-top:0;
}
.main_area .sub_h{
	margin:1em 0 0;
	padding-bottom:.3em;
	border-bottom:solid 1px rgb(150,170,160);
	font-weight:700;
}
.main_area .h_like{
	display:block;
	margin:.8em 0 0 0;
}
/*--準備中--*/
.main_area .underconstruction{
	margin:220px auto 0;
	padding:.8em;
	width:250px;
	border-top:solid 1px rgb(0,80,80);
	border-bottom:solid 1px rgb(0,80,80);
	font-size:1.25rem;
	color:rgb(0,80,80);
	text-align:center;
}
/*--飾り付きボックス--*/
.main_area .deco_box01,
.main_area p.deco_box01{
	margin:1.5rem 0;
	padding:.5rem 1.2rem;
	border:solid 1px rgb(180,180,200);
	border-radius:3px;
}
.main_area .deco_box03,
.main_area p.deco_box03{
	margin:1.5rem 0;
	padding:.5rem 1.2rem;
	border:solid 1px rgb(240,100,100);
	border-radius:3px;
	color:rgb(240,100,100);
}
/*--リスト--*/
.main_area ul.type01,
.main_area ol.type01{
	margin:1em 0;
}
.main_area ul.type01 > li,
.main_area ol.type01 > li{
	margin:.6em 0;
}
.main_area ol.type02{
	margin:1em 0;
	padding-left:3em;
	list-style:none;
	counter-reset:paren;
}
.main_area ol.type02 > li{
	position:relative;
	margin:.5em 0;
}
.main_area ol.type02 > li:before{
	position:absolute;
	left:-2em;
	counter-increment:paren;
	content:"("counter(paren)")";
	font-weight:500;
}
.main_area ol.type03{
	margin:1em 0;
	counter-reset:circle;
	list-style:none;
}
.main_area ol.type03 > li{
	margin:.5em 0;
}
.main_area ol.type03 > li:before{
	counter-increment:circle;
	content:counter(circle);
	display:inline-block;
	-webkit-box-sizing:border-box;
	margin:0 .6em 0 -2em;
	padding-top:.25em;
	width:1.4em;
	height:1.4em;
	border:solid 1px rgb(60,60,60);
	border-radius:.7em;
	font-size:.7rem;
	line-height:.7em;
	text-align:center;
	vertical-align:20%;
	letter-spacing:-0.05em;
	text-indent:-0.05em;
}
.main_area ol.type04{
	margin:1em 0;
	padding-left:3em;
	list-style:none;
	counter-reset:roman_numerals;
}
.main_area ol.type04 > li{
	position:relative;
	margin:.5em 0;
}
.main_area ol.type04 > li:before{
	position:absolute;
	left:-2em;
	counter-increment:roman_numerals;
	content:"("counter(roman_numerals,lower-roman)")";
	font-weight:500;
}
.main_area ol.type05{
	margin:1em 0;
	padding-left:3em;
	list-style:none;
	counter-reset:rparen;
}
.main_area ol.type05 > li{
	position:relative;
	margin:.5em 0;
}
.main_area ol.type05 > li:before{
	position:absolute;
	left:-2em;
	counter-increment:rparen;
	content:counter(rparen)")";
	font-weight:500;
}
.main_area ol.type06{
	margin:1em 0;
}
.main_area ol.type06 > li{
	margin:.6em 0;
	list-style-type:lower-latin;
}

/*--テーブル--*/
.main_area table.type01{
	margin:.5em 0;
	width:100%;
	border-collapse:collapse;
	line-height:1.5;
	table-layout:fixed;
}
.main_area table.type01 th,
.main_area table.type01 td{
	padding:.5em .8em;
	border:solid 1px rgb(180,180,180);
	vertical-align:top;
	vertical-align:middle;
}
.main_area table.type01 th{
	background:rgb(230,240,255);
	font-weight:700;
	text-align:center;
}
.main_area table.type01 td{
	background:rgb(255,255,255);
}

.main_area .table_note{
	margin-top:.3em;
	font-weight:700;
}
.main_area table.type01.va_t th,
.main_area table.type01.va_t td{
	vertical-align:top;
}

/*--定義リスト--*/
.main_area dl.type01{
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin:1.5em 0;
	border-top:solid 1px rgb(200,200,200);
	font-size:.95rem;
}
.main_area dl.type01 dt,
.main_area dl.type01 dd{
	-webkit-box-sizing:border-box;
	padding:.7em .5em;
	border-bottom:solid 1px rgb(200,200,200);
}
.main_area dl.type01 dt{
	margin:0;
	width:160px;
	font-weight:700;
}
.main_area dl.type01 dd{
	margin:0;
	width:calc(100% - 160px);
}
.main_area dl.type01.w60 dt{
	margin:0;
	width:60px;
	font-weight:700;
}
.main_area dl.type01.w60 dd{
	margin:0;
	width:calc(100% - 60px);
}
.main_area dl.type01.w80 dt{
	margin:0;
	width:80px;
	font-weight:700;
}
.main_area dl.type01.w80 dd{
	margin:0;
	width:calc(100% - 80px);
}
.main_area dl.type01.w110 dt{
	margin:0;
	width:110px;
	font-weight:700;
}
.main_area dl.type01.w110 dd{
	margin:0;
	width:calc(100% - 110px);
}
.main_area dl.type01.w120 dt{
	margin:0;
	width:120px;
	font-weight:700;
}
.main_area dl.type01.w120 dd{
	margin:0;
	width:calc(100% - 120px);
}
.main_area dl.type01.w130 dt{
	margin:0;
	width:130px;
	font-weight:700;
}
.main_area dl.type01.w130 dd{
	margin:0;
	width:calc(100% - 130px);
}
.main_area dl.type01.w150 dt{
	margin:0;
	width:150px;
	font-weight:700;
}
.main_area dl.type01.w150 dd{
	margin:0;
	width:calc(100% - 150px);
}
.main_area dl.type01.w200 dt{
	margin:0;
	width:200px;
	font-weight:700;
}
.main_area dl.type01.w200 dd{
	margin:0;
	width:calc(100% - 200px);
}
.main_area dl.type02{
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin:.3em 0 .7em;
}
.main_area dl.type02 dt,
.main_area dl.type02 dd{
	-webkit-box-sizing:border-box;
}
.main_area dl.type02 dt{
	margin:.2em 0;
	width:90px;
	font-weight:700;
}
.main_area dl.type02 dd{
	margin:.2em 0;
	width:calc(100% - 90px);
}
.main_area dl.type02.w110 dt{
	width:110px;
}
.main_area dl.type02.w110 dd{
	width:calc(100% - 110px);
}
.main_area dl.q_and_a{
	margin:1.5em 0;
}
.main_area dl.q_and_a dt,
.main_area dl.q_and_a dd{
	-webkit-box-sizing:border-box;
	padding:.7em 0;
}
.main_area dl.q_and_a .head{
	-webkit-box-sizing:border-box;
	display:inline-block;
	margin-left:-2.4em;
	padding-right:.2em;
	width:2.4em;
	text-align:right;
}
.main_area dl.q_and_a dt{
	margin:0;
	padding-bottom:0;
	padding-left:2.4em;
	font-weight:700;
}
.main_area dl.q_and_a dd{
	margin:0;
	padding-top:0;
	padding-left:2.4em;
	border-bottom:solid 1px rgb(200,200,200);
}
.main_area dl.q_and_a dt .head{
	color:rgb(40,80,180);
}
.main_area dl.q_and_a dd .head{
	color:rgb(180,80,100);
}

/*--ボタン--*/
.main_area .button_box{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin:1.8em auto;
	padding:0;
	text-align:center;
	max-width:1080px;
	list-style:none;
}
.main_area .button_box.sp_around{
	justify-content:space-around;
}
.main_area .button_box li{
	width:80%;
}
.main_area .button_box li a{
	position:relative;
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
	padding:.6em 1em .6em .8em;
	width:100%;
	background:rgb(0,100,150);
	border:solid 1px rgb(0,100,150);
	box-shadow:0 0 5px rgb(0,0,0,.3);
	font-weight:500;
	color:rgb(255,255,255);
	text-decoration:none;
	transition:.2s ease-out;
	transition-opacity:background,color;
}
.main_area .button_box a::after{
	position:absolute;
	top:calc(50% - .3em);
	right:4px;
	content:"";
	display:block;
	width:.6em;
	height:.6em;
	border-style:solid;
	border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) rgba(255,230,140,1);
	border-width:.3em .2em .3em .4em;
	vertical-align:10%;
	transition:.2s ease-out;
	transition-opacity:right,border;
}
	.main_area .button_box a:hover{
		background:rgb(255,255,255);
		color:rgb(0,100,150);
	}

	.main_area .button_box a:hover::after{
		right:0;
		border-left-color:rgb(230,120,30);
	}
.main_area .button_box li.w3{
	width:32%;
}
.main_area .button_box li.w2{
	width:49%;
}
.main_area .button_box.m_large{
	margin-top:4rem;
}
.main_area .button_box li.disabled a{
	pointer-events:none;
	cursor:default;
	border-color:rgb(204,204,204);
	background:rgb(204,204,204);
}

/*--２行目の文字を途中から始める--*/
.main_area .dibvat{
	display:inline-block;
	vertical-align:top;
}
.main_area .tal{
	text-align:left;
}