/*暫定*/
* {
	box-sizing: border-box;
}
html,body {
	margin:0;
	padding:0;
}

body {
	/*フッター最下部固定用*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body, input, textarea {
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

h1 {
	margin:0;
    font-size:32px;
}
h1 a {
	text-decoration:none;
}
h2 {
	padding: 0.5em 0.5em;
    font-size:30px;
	font-weight:bold;
    border-style: solid;
    border-width: 1px 0;
	border-color: #3e7cad;
    background-color: #3e7cad;
    color:floralwhite;
	text-align:center;
    width:330px;
}
h3 {
	padding: 0.5em 0.5em;
	/*font-size:24px;*/
    font-size:20px;
	font-weight:bold; 
	border-style: solid;
	border-width: 1px 0;
	/*border-color: #3e7cad;
    background-color: #3e7cad;*/
    border-color: #d6c6af;
    background-color: #d6c6af;
    /*color:floralwhite;*/
    color:brown;
    text-align: center;
}
h4{
	font-size:20px;
    /*font-size:24px;*/
    text-align:left;
}
h4:before {
	margin-right:0.2em;
	content: "■";
	color: #3e7cad;
}
h5 {
	padding: 0.5em 0.5em;
	/*font-size:24px;*/
    font-size:16px;
	font-weight:bold; 
	border-style: solid;
	border-width: 1px 0;
	/*border-color: #3e7cad;
    background-color: #3e7cad;*/
    border-color: #d6c6af;
    background-color: #fde8d0;
    /*color:floralwhite;*/
    color:brown;
    text-align: center;
    margin:5px 10px;
}
dl,dd {
	margin: 0;
}
ul {
	margin:0;
	padding-inline-start: 24px;
}
table {
	border-collapse: collapse;
}

.text_red {
	color: #ff0000;
}


/*ヘッダー*/
header {
	margin-bottom: 1em;
}
#header_area {
	width: 100%;
	display: flex;
	justify-content: space-between;

	background-color: #3e7cad;
	color: #ffffff;
	padding: 0.5em;
}
#header_area a {
	color: #ffffff;
	text-decoration: none;
}

#header_loging_date_block {
	display: flex;
}
#header_loging_date_block span:first-of-type {
	margin-right: 1em;
}

#header_menu_area {
	display: flex;
	justify-content: center;
}
.header_menu_block {
	border: 1px solid #bbb;
	padding: 0.5em;
	text-align: center;
}
.header_menu_block a {
	color: #000000;
	text-decoration: none;
}

.header_menu_active {
	background-color: #c5dbec;
}

.header_h2 {
	width: 10em;
	padding: 4px 0.5em;
	font-size: 1em;
}
.header_blue {
	color: #ffffff;
	background-color: #3e7cad;
}
.header_red {
	color: #ffffff;
	background-color: #ad3e3e;
}
.header_lightblue {
	color: #ffffff;
	background-color: #4ecfe4;
}
.header_green {
	color: #ffffff;
	background-color: #237826;
}
.header_yellow {
	color: #ffffff;
	background-color: #f7c22c;
}
.header_gray {
	color: #000000;
	background-color: #dbdbdb;
}
.header_royalblue {
	color: #ffffff;
	background-color: #4169e1;
}
.header_dark {
	color: #ffffff;
	background-color: #4169e1;
}
.header_gold {
	color: #000000;
	/*background-color: #ffd700;*/
    background-color: #e9bc00;
}

footer {
	margin-top: auto;/*フッター最下部固定用*/
}

footer .content-inner {
	text-align: center;
}


#page-top {
    position: fixed;
    width: 80px;
    height: 80px;
    right: 16px;
    bottom: 16px;
    background-color: #505168;
    opacity: 0.7;
    border-radius: 50%;
    z-index: 10;
}

.page-top-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align:center;
    transform: translate(-50%,-50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    line-height:1.6em;
}

@media screen and (min-width: 980px), print {

	a[href^="tel:"] {
		pointer-events: none;
	}

	.content-inner {
		position:relative;
		/*width: 960px;*/
		width:1200px;
		margin:auto;
	    box-sizing: border-box;
	}

	#container {
		margin: 32px 0;
	}

	#container .content-inner{
		display:flex;
	}

	#container #side{
		/*width:280px;*/
		/*margin-right:40px;*/
		width: 200px;
	}
	#container #side ul{
		position:sticky;
		top:16px;
	}
	#container #main{
		/*width:640px;*/
		width: 960px;
		margin-right: 40px;
	}
	
	#container #main h3:first-of-type{
		margin-top: 0;
	}
}

@media screen and (max-width: 979px) and (min-width: 760px) {
	.content-inner {
	    padding-right: 24px;
	    padding-left: 24px;
	}
}

@media screen and (max-width: 759px) {
	.content-inner {
		padding-right: 12px;
		padding-left: 12px;
	}
}


th, td{
	padding: 0.5em 1em;
	border: solid 1px #cccccc;
}

th.td-center, td.td-center{
	text-align: center;
}
th.td-nowrap, td.td-nowrap{
	white-space: nowrap;
}

table.table-general{
	width: 100%;
	margin-bottom: 1em;
}

th{
	background-color: #f8f8f8;
}

.dl-column dd{
	margin-bottom: 1em;
}

table .blank {
	background-color: rgba(255, 255, 255, 0);
	border-style: none;
}

.flex{
	display: flex;
	justify-content: space-between;
}


/* パンくずリスト */
#breadcrumb{
/*	padding-top:8px;*/
/*	border-top:solid 8px #3e7cad;*/
	margin-bottom: 1em;
}

#breadcrumb ul {
  margin-left:0;
  padding-left:4px;

  font-size:88%;
}

#breadcrumb ul li{
  display:inline;
  list-style: none;
}

#breadcrumb ul li:after{
  content: ' > ';
  padding: 0 3px;
  color: #000000;
}

#breadcrumb ul li:last-child:after{
  content: '';
}

#breadcrumb ul li a {
	color:#000000;
}

#breadcrumb ul li:first-child a:before{/* home icon */
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
}

#breadcrumb ul li a:hover {
    text-decoration: underline;
}


/* プログレスバー */



.progressbar{
	padding: 0;
	list-style-type: none;
	counter-reset: step;
}
.progressbar li{
	float: left;
	width: 20%;
	position: relative;
	text-align: center;
}
.progressbar li:before{
	content:counter(step);
	counter-increment: step;
	width: 30px;
	height: 30px;
	border: 2px solid #cccccc;
	display: block;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	line-height: 30px;
	background: white;
	color: #bebebe;
	text-align: center;
	font-weight: bold;
}

.progressbar li:after{
	content: '';
	position: absolute;
	width:100%;
	height: 3px;
	background: #cccccc;
	top: 15px;
	left: -50%;
	z-index: -1;
}

.progressbar li:first-child:after{
	content: none;
}

.progressbar li.active {
	font-weight: bold;
}

.progressbar li.active:after, .progressbar li.passed:after{
	background: #3e7cad;
}
.progressbar li.active:before, .progressbar li.passed:before{
	border-color: #3e7cad;
	background: #3e7cad;
	color: white
}

/*要素を非表示にする*/
.display_none {
	display: none;
}

/*エラーメッセージ*/
.error_message_area {
	margin: 1em 0 ;
	border: 3px solid #ff0000;
	padding: 0.5em;
	line-height: 1.5;
}
.error_message_area p {
	font-weight: bold;
	color: #ff0000;
	margin: 0;
}
