@charset "utf-8";
/* =========================================================================================================================================== */
/*
/* サイト個別デザイン
/*	@media
/*		768px~ : パソコン
/*		~767px : スマホ
/*
/* =========================================================================================================================================== */


/* =========================================================================================================================================== */
/*  共通部品
/* =========================================================================================================================================== */
#go-jbmia {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 26px;
	text-align: right;
	z-index: 200;
}
#go-jbmia a {
	font-size: 16px;
	font-weight: bold;
	color: white;
	text-decoration: none;
	position: relative;
	display: inline-block;
}
#go-jbmia a::before {
	content: "";
	display: block;
	border-left: solid 8px white;
	border-top: solid 4px transparent;
	border-bottom: solid 4px transparent;
	left: -17px;
	position: absolute;
	top: 3px;
}
@media screen and (max-width: 900px) {
	#go-jbmia {
		display: none;
	}
}
/* ニュース一覧 */
#content--news .title h2 {
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	padding-top: 85px;
	padding-bottom: 22px;
}
#content--news .news {
	padding-top: 21px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 45px;
}
.sub-page #content--news .news {
	padding-top: 0;
}
#content--news .news li a {
	display: flex;
	justify-content: flex-start;
	padding: 20px 22px;
	/* padding-top: 12px; */
	/* padding-bottom: 12px; */
	border-bottom: solid 1px #d4d4d4;
	text-decoration: none;
	font-size: 14px;
	color: #343434;
	align-items: center;
}
#content--news .news li:last-child a {
	border-bottom: none;
}
#content--news .news li a .date {
	font-size: 14px;
	color: #333333;
	width: 115px;
}
#content--news .news li a .category {
	width: 118px;
	height: 27px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: black;
	color: white;
	font-size: 12px;
	font-weight: bold;
}
#content--news .news li a .name {
	font-size: 16px;
	color: #333333;
	padding-left: 0;
	flex: 1 0 0%;
	line-height: 19px;
}
#content--news .button a {
	font-size: 18px;
	max-width: 368px;
	height: 51px;
	border-radius: 25.5px;
	background-color: #004d82;
	border: none;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin: 0 auto;
	margin-bottom: 80px;
}
#content--news .button a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
@media screen and (max-width: 900px) {
	#content--news .title h2 {
		padding-top: 42px;
		font-size: 22px;
		line-height: normal;
		padding-bottom: 0;
	}
	#content--news .news {
		padding-top: 0;
		width: calc(100% - 60px);
		padding-bottom: 35px;
		max-width: 600px;
	}
	#content--news .news li a {
		padding: 15px 0 12px;
		display: block;
/*		display: grid; */
/*		grid-template-columns: 90px 1fr; */
/*		row-gap: 7px; */
	}
	#content--news .news li a .date {
		font-size: 12px;
		width: auto;
		font-weight: bold;
		margin-bottom: 7px;
	}
	#content--news .news li a .category {
		width: 66px;
		height: 18px;
	}
	#content--news .news li a .name {
		padding-left: 0;
/*		grid-column: 1/3; */
		font-size: 14px;
		line-height: 20px;
	}
}


/* =========================================================================================================================================== */
/* ヘッダー
/* =========================================================================================================================================== */
#header {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	height: 60px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background-color: #004d82;
	margin-top: -30px;
}
#header .menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#header .menu ul li {
	padding: 0 24px;
}
#header .menu ul li a {
	font-size: 16px;
	color: white;
	text-decoration: none;
}
#header .menu-button {
	position: fixed;
	display: none;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background-color: #004d82;
	cursor: pointer;
}
#header .menu-button span {
	position: absolute;
	width: 14px;
	height: 1px;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-color: white;
	transition: all 0.5s ease;
}
#header .menu-button span::before,
#header .menu-button span::after {
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	background-color: white;
	position: absolute;
	transition: all 0.5s ease;
}
#header .menu-button span::before {
	top: -5px;
}
#header .menu-button span::after {
	top: 5px;
}
.open-menu #header .menu-button span {
	height: 0;
}
.open-menu #header .menu-button span::before {
	transform: rotate(45deg);
	top: 0;
}
.open-menu #header .menu-button span::after {
	top: 0;
	transform: rotate(-45deg);
}

@media screen and (max-width: 900px) {
	#header {
		position: fixed;
		overflow: hidden;
		top: 0px;
		height: 0;
		background-color: rgba(0,77,130,0.95);
		margin-top: 0;
		z-index: 100;
		transition: height 0.5s ease;
	}
	.open-menu #header {
		height: 430px;;
	}
	#header .menu {
		display: block;
		width: 100%;
		max-width: 245px;
	}
	#header .menu ul {
		display: block;
		padding-top: 35px;
	}
	#header .menu ul li {
		padding: 0;
		border-bottom: solid 1px #427ba1;
	}
	#header .menu ul li:last-child {
		border-bottom: none;
	}
	#header .menu ul li a {
		display: flex;
		width: 100%;
		height: 59px;
		justify-content: center;
		align-items: center;
		font-size: 18px;
	}
	#header .menu-button {
		display: block;
	}
}


/* =========================================================================================================================================== */
/* フッター
/* =========================================================================================================================================== */
#footer .menu {
	width: 100%;
	max-width: 1200px;
	height: 60px;
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	background-color: #004d82;
	margin: 0 auto;
}
#footer .menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#footer .menu ul li {
	padding: 0 6px;
	border-right: solid 1px white;
}
#footer .menu ul li a {
	font-size: 14px;
	color: white;
	text-decoration: none;
}
#footer .menu ul li:last-child {
	border-right: none;
}
#footer .logo {
	padding-top: 34px;
	width: 100%;
	max-width: 301px;
	margin: 0 auto;
}
#footer .logo img {
	width: 100%;
}
#footer .copyright {
	padding-top: 18px;
	font-size: 10px;
	text-align: center;
	padding-bottom: 50px;
}
@media screen and (max-width: 900px) {
	#footer .menu {
		width: calc(100% - 60px);
		padding: 0 10px;
	}
	#footer .menu ul li a {
		font-size: 12px;
	}
	#footer .logo {
		width: calc(100% - 60px);
		padding-top: 20px;
	}
	#footer .copyright {
		padding-top: 14px;
		line-height: 16px;
		color: #595959;
	}
}

/* =========================================================================================================================================== */
/* トップページ
/* =========================================================================================================================================== */
/* キービジュアル */
.top-page #keyvisual {
	position: relative;
	width: 100%;
	padding-top: 36.4583333333333%;
	background-image: url('../img/top/bg-main.png');
	background-size: cover;
	z-index: -1;
	min-height: 376px;
}
.top-page #keyvisual .inner {
	position: absolute;
	top: 0;
	bottom: 30px;
	margin: auto;
	height: 326px;
	left: 0;
	right: 0;
}
.top-page #keyvisual .inner .logo {
	width: 100%;
	max-width: 415px;
	margin: 0 auto;
}
.top-page #keyvisual .inner .logo img {
	width: 100%;
	vertical-align: bottom;
}
.top-page #keyvisual .inner .box {
	width: 100%;
	max-width: 691px;
	min-height: 169px;
	display: grid;
	padding: 31px 65px;
	grid-template-columns: 68px 1fr;
	grid-gap: 14px 30px;
	color: white;
	background-color: rgba(0,0,0,0.6);
	margin: 0 auto;
	margin-top: 20px;
	grid-gap: 0;
	display: -ms-grid;
	-ms-grid-columns: 68px 1fr;
	-ms-grid-rows: auto auto;

}
.top-page #keyvisual .inner .box .icon {
	grid-row: 1/3;
	-ms-grid-column: 1;
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;

}
.top-page #keyvisual .inner .box .icon img {
	width: 100%;
}
.top-page #keyvisual .inner .box .title {
	font-size: 24px;
	line-height: 26px;
	font-weight: bold;
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	margin-left: 30px;
	margin-bottom: 14px;

}
.top-page #keyvisual .inner .box .description {
	font-size: 14px;
	line-height: 22px;
	-ms-grid-row: 2;
	-ms-grid-column: 2;
	margin-left: 30px;

}

@media screen and (max-width: 900px) {
	.top-page #keyvisual {
/*		background-image: url("../img/top/m-bg-main.png"); */
		padding-top: 0;
		height: 500px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.top-page #keyvisual .inner {
		bottom: 0;
		height: auto;
		position: static;
		width: 100%;
	}
	.top-page #keyvisual .inner .logo {
		max-width: 236px;
	}
	.top-page #keyvisual .inner .box {
		grid-template-columns: 29px 1fr;
		grid-gap: 15px 12px;
		padding: 30px;
		max-width: 368px;
		min-height: 207px;
		grid-gap: 0;
		-ms-grid-columns: 29px 1fr;
	}
	.top-page #keyvisual .inner .box .icon {
			grid-row: 1;
			width: 29px;
			-ms-grid-row-span: 1;
	}
	.top-page #keyvisual .inner .box .description {
		grid-column: 1/3;
		line-height: 20px;
		margin-left: 0;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
	}
	.top-page #keyvisual .inner .box .title {
		font-size: 18px;
		line-height: 22px;
		margin-left: 12px;
		margin-bottom: 15px;
	}
}

/* アバウト */
.top-page #content--about .inner {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding-top: 58px;
	padding-bottom: 68px;
}
.top-page #content--about .inner .title {
	text-align: center;
	width: 300px;
	font-size: 44px;
	font-weight: bold;
	line-height: 30px;
	padding-top: 10px;
	/* margin-top: 58px; */
	position: relative;
}
.top-page #content--about .inner .title::after {
	content: "";
	width: 100vw;
	height: 1px;
	display: block;
	background-color: #005a98;
	position: absolute;
	bottom: 0;
	right: 0;
}
.top-page #content--about .inner .title span {
	color: #004d82;
}
.top-page #content--about .inner .description {
	width: 100%;
	max-width: 785px;
	margin: 0 auto;
	line-height: 30px;
	color: #333333;
	margin-top: 45px;
}
.top-page #content--about .inner .button {
	margin-top: 50px;
}
.top-page #content--about .inner .button .label {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 10px;
}
.top-page #content--about .inner .button a {
	display: block;
	width: 368px;
	height: 51px;
	border-radius: 25.5px;
	background-color: #004d82;
	border: none;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin: 0 auto;
	font-size: 18px;
}
.top-page #content--about .inner .button a:before {
	content: "";
	background-image: url("../img/top/icon_pdf.png");
	display: block;
	width: 24px;
	height: 29px;
	margin-right: 12px;
	background-repeat: no-repeat;
}


@media screen and (max-width: 900px) {
	.top-page #content--about .inner {
		padding-top: 30px;
		padding-bottom: 25px;
	}
	.top-page #content--about .inner .title {
		font-size: 24px;
		width: 140px;
		text-align: left;
		padding-left: 30px;
		padding-top: 5px;
		line-height: 20px;
	}
	.top-page #content--about .inner .description {
		margin-top: 20px;
		padding: 0 60px;
		font-size: 14px;
		line-height: 22px;
	}
}


/* メニュー */
.top-page #content--menu .inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	border: solid 1px #4b4b4b;
}
.top-page #content--menu .inner .menu ul {
	display: flex;
}
.top-page #content--menu .inner .menu ul li {
	width: calc(100% / 4);
	border-right: solid 1px #4b4b4b;
	background-color: #f3f4f6;
	padding: 0 10px;
	padding-bottom: 30px;
}
.top-page #content--menu .inner .menu ul li:last-child {
	border-right: none;
}
.top-page #content--menu .inner .menu ul li .icon {
	text-align: center;
	height: 131px;
}
.top-page #content--menu .inner .menu ul li.user    .icon img {
	width: 69px;
	padding-top: 24px;
}
.top-page #content--menu .inner .menu ul li.request .icon img {
	width: 64px;
	padding-top: 28px;
}
.top-page #content--menu .inner .menu ul li.menu    .icon img {
	width: 58px;
	padding-top: 40px;
}
.top-page #content--menu .inner .menu ul li.faq     .icon img {
	width: 50px;
	padding-top: 28px;
}
.top-page #content--menu .inner .menu ul li .title {
	font-weight: bold;
	color: #004d82;
	text-align: center;
}
.top-page #content--menu .inner .menu ul li .description {
	width: 100%;
	max-width: 266px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 22px;
	color: #4b4b4b;
	padding-top: 11px;
	padding-bottom: 18px;
	min-height: 95px;
}
.top-page #content--menu .inner .menu ul li .button a {
	display: block;
	width: 165px;
	height: 31px;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	background-color: #004d82;
	color: white;
	line-height: 31px;
	border-radius: 15.5px;
	margin:  0 auto;
}

@media screen and (max-width: 900px) {
	.top-page #content--menu .inner {
		width: calc(100% - 60px);
		max-width: 368px;
	}
	.top-page #content--menu .inner .menu ul {
		display: block;
	}
	.top-page #content--menu .inner .menu ul li {
		width: 100%;
		padding: 30px;
		border-right: none;
		border-bottom: solid 1px #4b4b4b;
	}
	.top-page #content--menu .inner .menu ul li.user .icon img {
		padding-top: 0;
		width: 35px;
	}
	.top-page #content--menu .inner .menu ul li .icon {
		height: auto;
		padding-bottom: 6px;
	}
	.top-page #content--menu .inner .menu ul li .title {
		line-height: initial;
	}
	.top-page #content--menu .inner .menu ul li .description {
		max-width: initial;
		line-height: 20px;
		min-height: unset;
		padding-bottom: 10px;
	}
	.top-page #content--menu .inner .menu ul li.request .icon img {
		padding-top: 0;
		width: 35px;
	}
	.top-page #content--menu .inner .menu ul li.menu .icon img {
		width: 34px;
		padding-top: 0;
	}
	.top-page #content--menu .inner .menu ul li.faq .icon img {
		width: 28px;
		padding-top: 0;
	}
	.top-page #content--menu .inner .menu ul li:last-child {
		border-bottom: none;
	}
}


/* =========================================================================================================================================== */
/* 下層ページ
/* =========================================================================================================================================== */
/*------*/
/* 共通 */
/*------*/
.sub-page #keyvisual {
	padding-top: 10%;
	background-size: cover;
	background-image: url('../img/sub/bg-main.png');
	min-height: 180px;
}
.sub-page #keyvisual .inner {
	position: absolute;
	top: 25px;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	max-width: 1200px;
}
.sub-page #keyvisual .inner .logo {
	width: 100%;
	max-width: 260px;
}
.sub-page #keyvisual .inner .logo img {
	width: 100%;
}
.sub-page #keyvisual .inner .logo .copy {
	font-weight: bold;
	text-align: right;
	color: white;
	padding-right: 10px;
	padding-bottom: 6px;
	line-height: 20px;
}
@media screen and (max-width: 900px) {
	.sub-page #keyvisual {
		min-height: unset;
		padding: 0;
		height: 85px;
	}
	.sub-page #keyvisual .inner {
		width: calc(100% - 60px);
	}
	.sub-page #keyvisual .inner .logo {
		max-width: unset;
		display: flex;
		justify-content: flex-start;
	}
	.sub-page #keyvisual .inner .logo .copy {
		order: 1;
		padding: 0;
		font-size: 12px;
		line-height: 14px;
		padding-left: 11px;
		text-align: left;
		padding-top: 3px;
	}
	.sub-page #keyvisual .inner .logo img {
		width: 126px;
	}
}

/*--------------------------*/
/* 複合ブロックのレイアウト */
/*--------------------------*/
/* */
.sub-page #main .entry-content .block1 {
	display: grid;
	grid-template-columns: 1fr 200px;
	display: -ms-grid;
	-ms-grid-columns: 1fr 200px;
	-ms-grid-span: auto auto;

}
.sub-page #main .entry-content .block1 span {
	-ms-grid-column: 1;
	-ms-grid-row: 1;
}
.sub-page #main .entry-content .block1 .button2 {
	order: 1;
	text-align: right;
	padding-right: 5px;
	-ms-grid-column: 2;
	-ms-grid-row: 1;
}
.sub-page #main .entry-content .block1 .attention {
	order: 2;
	grid-column: 1/3;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	-ms-grid-row: 2;

}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .block1 {
		display: block;
	}
	.sub-page #main .entry-content .block1 .button2 {
		padding-top: 8px;
	}
}

/* */
.sub-page #main .entry-content .block2_itemlist {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 58px;
}
.sub-page #main .entry-content .block2_itemlist .search {
	flex-grow: 1;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.sub-page #main .entry-content .block2_itemlist .search .name {
	width: 139px;
	height: 37px;
	background-color: #004d82;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: bold;
	margin-right: 5px;
}
.sub-page #main .entry-content .block2_itemlist .search .box {
	flex-grow: 1;
	width: 100%;
	max-width: 432px;
	position: relative;
}
.sub-page #main .entry-content .block2_itemlist .search .box select {
	border: solid 1px #444444;
	width: 100%;
	height: 100%;
	background-color: white;
	cursor: pointer;
}
.sub-page #main .entry-content .block2_itemlist .search .box::after,
.sub-page #main .entry-content .block2_itemlist .search .box::before {
	content: "";
	position: absolute;
	width: 7px;
	height: 1.5px;
	background-color: black;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
}
.sub-page #main .entry-content .block2_itemlist .search .box::before {
	transform: rotate(-45deg);
	right: 5px;
}
.sub-page #main .entry-content .block2_itemlist .search .box::after {
	transform: rotate(45deg);
	right: 9px;
}
.sub-page #main .entry-content .block2_itemlist .sort {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	flex-wrap: wrap;
	color: #333333;
}
.sub-page #main .entry-content .block2_itemlist .sort .items ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	font-size: 14px;
}
.sub-page #main .entry-content .block2_itemlist .sort .items ul li {
	padding: 0 6px;
	border-right: solid 1px #333333;
}
.sub-page #main .entry-content .block2_itemlist .sort .items ul li:last-child {
	border-right: none;
}
.sub-page #main .entry-content .block2_itemlist .sort .items ul li a {
	display: inline-block;
	color: #bb2222;
	text-decoration: none;
	border-bottom: solid 1px #bb2222;
	padding-bottom: 1px;
}
.sub-page #main .entry-content .block2_itemlist .list {
	width: 100%;
	margin-top: 20px;
}
.sub-page #main .entry-content .block2_itemlist .list ul li {
	display: grid;
	min-height: 42px;
	/* <!-- 22.12.16 ここから --> */
	/* grid-template-columns: 105px 396fr 343fr 154px 121px; */
	grid-template-columns: 105px 296fr 343fr 154px 121px 100px;
	display: -ms-grid;
	/*-ms-grid-columns: 105px 396fr 343fr 154px 121px; */
	-ms-grid-columns: 105px 296fr 343fr 154px 121px 100px;
	/* <!-- 22.12.16 ここまで --> */
}
.sub-page #main .entry-content .block2_itemlist .list ul li .number  { -ms-grid-column: 1; }
.sub-page #main .entry-content .block2_itemlist .list ul li .company { -ms-grid-column: 2; }
.sub-page #main .entry-content .block2_itemlist .list ul li .item    { -ms-grid-column: 3; }
.sub-page #main .entry-content .block2_itemlist .list ul li .group   { -ms-grid-column: 4; }
.sub-page #main .entry-content .block2_itemlist .list ul li .date    { -ms-grid-column: 5; }
.sub-page #main .entry-content .block2_itemlist .list ul li:nth-child(even):not(.th) {
	background-color: #efefef;
}
.sub-page #main .entry-content .block2_itemlist .list ul li > div {
	border-right: solid 1px #e1e1e1;
	padding: 10px;
	font-size: 14px;
	display: flex;
	align-items: center;
	line-height: 21px;
	word-break: break-all;
}
.sub-page #main .entry-content .block2_itemlist .list ul li > div:last-child {
	border: none;
}
.sub-page #main .entry-content .block2_itemlist .list ul li.th {
	background-color: #444444;
	color: white;
	font-size: 14px;
	height: 38px;
}
.sub-page #main .entry-content .block2_itemlist .list ul li.th > div {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	min-height: 42px;
}
.sub-page #main .entry-content .block2_itemlist .list ul li .thsp {
	display: none;
	width: 73px;
	font-size: 12px;
	color: #004d82;
	line-height: 16px;
	padding: 5px 0;
}
.sub-page #main .entry-content .block2_itemlist .list ul li .number {
	justify-content: center;
}
.sub-page #main .entry-content .block2_itemlist .list ul li .date {
	justify-content: center;
}
.sub-page #main .entry-content .block2_itemlist .list ul li .item a {
	color: #bb2222;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .block2_itemlist .search {
		display: block;
		width: 100%;
	}
	.sub-page #main .entry-content .block2_itemlist .search .name {
		width: 100%;
		margin-bottom: 3px;
		font-weight: normal;
	}
	.sub-page #main .entry-content .block2_itemlist .search .box {
		height: 37px;
		max-width: none;
	}
	.sub-page #main .entry-content .block2_itemlist .sort {
		width: 100%;
	}
	.sub-page #main .entry-content .block2_itemlist .sort .name {
		width: 100%;
		text-align: center;
		font-size: 12px;
		margin-top: 25px;
		margin-bottom: 8px;
	}
	.sub-page #main .entry-content .block2_itemlist .sort .items ul {
		font-size: 12px;
		justify-content: center;
		width: 100%;
	}
	.sub-page #main .entry-content .block2_itemlist .sort .items {
		width: 100%;
	}
	.sub-page #main .entry-content .block2_itemlist .sort .items ul li {
		margin-bottom: 8px;
	}
	.sub-page #main .entry-content .block2_itemlist .list {
		margin-top: 7px;
	}
	.sub-page #main .entry-content .block2_itemlist .list ul li.th {
		display: none;
	}
	.sub-page #main .entry-content .block2_itemlist .list ul li {
		display: block;
		padding: 10px 15px;
	}
	.sub-page #main .entry-content .block2_itemlist .list ul li > div {
		border-right: none;
		justify-content: flex-start;
		padding: 0;
		border-bottom: solid 1px #d4d4d4;
	}
	.sub-page #main .entry-content .block2_itemlist .list ul li .thsp {
		display: block;
	}
	.sub-page #main .entry-content .block2_itemlist .list ul li .number {
		justify-content: flex-start;
	}
	.sub-page #main .entry-content .block2_itemlist .list ul li .date {
		justify-content: flex-start;
	}
	.sub-page #main .entry-content .block2_itemlist .list ul li .td {
		width: calc(100% - 73px);
		line-height: 20px;
		padding: 5px 0;
	}
}

.sub-page #main .entry-content .block3 {
	display: grid;
	grid-template-columns: 1fr 300px;
	column-gap: 20px;
	column-gap: 0;
	display: -ms-grid;
	-ms-grid-columns: 1fr 300px;
}
.sub-page #main .entry-content .block3 figure {
	order: 2;
	-ms-grid-column: 2;
}
.sub-page #main .entry-content .block3 span {
	order: 1;
	margin-right: 20px;
	-ms-grid-column: 1;
	
}
.sub-page #main .entry-content .block3 figure img {
	width: 100%;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .block3 {
		display: block;
	}	
	.sub-page #main .entry-content .block3 figure {
		max-width: 300px;
		margin: 0 auto;
	}
}


/*--------------------*/
/* ブロックのデザイン */
/*--------------------*/
/* ページタイトル */
.sub-page #main .entry-title {
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 20px;
	border-bottom: solid 1px;
}

.sub-page #main .entry-title h1 {
	flex: 1 0 0%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 28px;
	font-weight: bold;
	padding-left: 20px;
	line-height: 32px;
	color: #333333;
}
.sub-page.news-details #main .entry-title .meta {
	flex: 1 0 0%;
	padding-left: 20px;
}
.sub-page.news-details #main .entry-title .meta .date {
	font-size: 16px;
	padding-bottom: 4px;
}
.sub-page.news-details #main .entry-title .meta h1 {
	padding-left: 0;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-title {
		width: calc(100% - 60px);
		padding-top: 30px;
		padding-bottom: 12px;
	}
	.sub-page #main .entry-title .icon {
		width: 36px;
	}
	.sub-page #main .entry-title .icon img {
		width: 100%;
		vertical-align: bottom;
	}
	.sub-page #main .entry-title h1 {
		padding-left: 14px;
		font-size: 18px;
		line-height: 22px;
	}
	.sub-page.news-details #main .entry-title .meta {
		padding-left: 14px;
	}
	.sub-page.news-details #main .entry-title .meta .date {
		font-size: 14px;
	}
}

/* ページコンテンツ */
.sub-page #main .entry-content {
	width: 100%;
	max-width: 1028px;
	margin: 0 auto;
	padding-top: 38px;
}
.sub-page #main .entry-content.layout2 {
	max-width: 1200px;
	padding-left: 86px;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content {
		padding-top: 23px;
		width: calc(100% - 60px);
	}
	.sub-page #main .entry-content.layout2 {
		padding-left: 0;
	}
}

/* 見出し */
.sub-page #main .entry-content h2 {
	font-size: 22px;
	font-weight: bold;
	color: #004d82;
	line-height: 28px;
	padding-bottom: 10px;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content h2 {
		font-size: 16px;
		line-height: 22px;
		padding-bottom: 7px;
	}
}
/* <!-- 22.12.16 ここから -->*/
.sub-page #main .entry-content h2.type2 {
    width: 100%;
    min-height: 52px;
    background-color: #f1f1f1;
    font-size: 22px;
    color: #333333;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
}
.sub-page #main .entry-content h2.type2 span {
    display: flex;
    width: 86px;
    height: 29px;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    background-color: #bb2222;
    color: #ffffff;
    line-height: 1;
    margin-left: 18px;
    position: relative;
    top: -2px;
}
/* <!-- 22.12.16 ここまで -->*/

/* テキスト */
.sub-page #main .entry-content .text {
	line-height: 28px;
	padding-bottom: 40px;
	color: #333333;
}
.sub-page #main .entry-content .text.pb-0 {
	padding-bottom: 0;
}
.sub-page #main .entry-content .text.pb-18 {
	padding-bottom: 18px;
}
.sub-page #main .entry-content .text.pb-50 {
	padding-bottom: 50px;
}
.sub-page #main .entry-content .text small {
	font-size: 14px;
}
.sub-page #main .entry-content .text a {
	display: inline-block;
	line-height: 16px;
	color: #bb2222;
	text-decoration: none;
	border-bottom: solid 1px #bb2222;
	padding-bottom: 1px;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .text {
		font-size: 14px;
		line-height: 22px;
		padding-bottom: 22px;
	}
}

/* 改行 */
.sub-page #main .entry-content .br {
	width: 100%;
	height: 1px;
	background-color: #dadada;
}

/* 注釈 */
.sub-page #main .entry-content .note {
	text-align: center;
	font-size: 14px;
	line-height: 24px;
	padding-top: 14px;
	padding-bottom: 24px;
	color: #4b4b4b;
}
.sub-page #main .entry-content .note.pt-40 {
	padding-top: 40px;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .note {
		font-size: 14px;
		line-height: 22px;
		text-align: left;
		color: #333333;
	}
}

/* 戻る */
.sub-page #main .entry-content .back {
	text-align: center;
	padding-bottom: 40px;
}
.sub-page #main .entry-content .back a {
	color: #bb2222;
}

/* ボタン１ */
.sub-page #main .entry-content .button a {
	width: 100%;
	max-width: 325px;
	margin: 0 auto;
	height: 40px;
	border-radius: 20px;
	border: solid 1px #b20000;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: #b20000;
	font-weight: bold;
	line-height: 13px;
/* <!-- 22.12.16 ここから -->*/
	margin-bottom: 20px;
/* <!-- 22.12.16 ここまで -->*/
	text-decoration: none;
}
.sub-page #main .entry-content .button a:hover {
	background-color: #f3f4f6;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}
.sub-page #main .entry-content .button.pdf a::before {
	content: "";
	background-image: url("../img/sub/icon-button-pdf.png");
	display: block;
	width: 17px;
	height: 23px;
	margin-right: 12px;
	background-repeat: no-repeat;
}
/* <!-- 22.12.16 ここから -->*/
.sub-page #main .entry-content .button.blue a {
    background: #004d82;
    border: none;
    color: white;
    margin-bottom: 50px;
}
/* <!-- 22.12.16 ここまで -->*/
/* ボタン２ */
.sub-page #main .entry-content .button2 a {
	display: inline-block;
	color: #b00000;
	font-size: 14px;
	position: relative;
	margin-left: 17px;
}
.sub-page #main .entry-content .button2 a::before {
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	position: absolute;
	left: -17px;
	background-image: url('../img/sub/icon-button2.png');
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .button2 a {
		font-size: 12px;
	}
	.sub-page #main .entry-content .button2 a::before {
		top: 2px;
	}
}

/* ボタン3 */
.sub-page #main .entry-content .button4 a {
	display: flex;
	width: 268px;
	height: 43px;
	justify-content: center;
	align-items: center;
	background-color: #004d82;
	border-radius: 21.5px;
	text-decoration: none;
	color: white;
	font-weight: bold;
	margin-bottom: 14px;
	margin-right: 14px;
}
.sub-page #main .entry-content .button4:last-child a {
	margin-right: 0;
}
.sub-page #main .entry-content .button4 a::before {
	background-image: url('/asset/img/sub/icon-button4.png');
	content: "";
	width: 13px;
	height: 9px;
	display: block;
	margin-right: 7px;
}
.sub-page #main .entry-content .buttons ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

@media screen and (max-width: 623px) {
	.sub-page #main .entry-content .button4 a {
		margin-right: auto;
		margin-left:  auto;
	}
	.sub-page #main .entry-content .button4:last-child a {
		margin-right: auto;
	}
	.sub-page #main .entry-content .buttons ul {
		display: block;
	}
}


/* <!-- 22.12.16 ここから -->*/
/* ボタン5 */
.sub-page #main .entry-content .button5 a {
    display: flex;
    width: 268px;
    height: 43px;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 21.5px;
    text-decoration: none;
    color: #004d82;
    font-weight: bold;
    margin-bottom: 14px;
    margin-right: 15px;
    border: solid 1px #004d82;
    font-size: 16px;
    line-height: 1;
}
.sub-page #main .entry-content .buttons.layout2 {
    padding-top: 32px;
    padding-bottom: 60px;
}
.sub-page #main .entry-content .button5 a::before {
	/* background-image: url('/asset/img/sub/icon-button5.png'); */
	content: ">";
	width: 13px;
	height: 13px;
	display: flex;
	margin-right: 7px;
	background-size: contain;
	margin-top: -1px;
	background-color: #004d82;
	border-radius: 50%;
	color: white;
	font-size: 8px;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}

@media screen and (max-width: 623px) {
	.sub-page #main .entry-content .button5 a {
		margin-right: auto;
		margin-left:  auto;
	}
	.sub-page #main .entry-content .button5:last-child a {
		margin-right: auto;
	}
}
/* <!-- 22.12.16 ここまで -->*/


/* テーブル系 */
.sub-page #main .entry-content .boxes {
	display: grid;
	width: 100%;
	max-width: 687px;
	margin: 0 auto;
	display: -ms-grid;

}
.sub-page #main .entry-content .boxes.col-size-2 {
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	row-gap: 22px;
	column-gap: 0;
	row-gap: 0;
	-ms-grid-columns: 1fr 1fr;
}
.sub-page #main .entry-content .boxes.col-size-2 .box-col-1 {
	-ms-grid-row: 2;
}
.sub-page #main .entry-content .boxes.col-size-2 article:nth-child(2) {
	margin-right: 11px;
}
.sub-page #main .entry-content .boxes.col-size-2 article:nth-child(3) {
	-ms-grid-column: 2;
	margin-left: 11px;
}
.sub-page #main .entry-content .boxes.col-size-2 .box-col-2 {
	grid-column: 1/3;
	margin-bottom: 28px;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
}
.sub-page #main .entry-content .boxes article .box-title {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #444444;
	color: white;
	font-weight: bold;
}
.sub-page #main .entry-content .boxes article .box-content {
	height: calc(100% - 40px);
	padding: 35px 30px 23px;
	background-color: #f3f4f6;
}
/*
.sub-page #main .entry-content .boxes article .box-content ul {
	display: grid;
}
*/
.sub-page #main .entry-content .boxes article .box-content ul.col-size-1 li {
	margin-bottom: 12px;
}
.sub-page #main .entry-content .boxes article .box-content ul.col-size-2 {
/*	grid-template-columns: auto auto; */
/*	column-gap: 12px; */
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.sub-page #main .entry-content .boxes article .box-content ul.col-size-2 li {
	margin-bottom: 12px;
}
.sub-page #main .entry-content .boxes article .box-content ul.col-size-2 li:nth-child(odd) {
	width: 260px;
	margin-right: 12px;
}
.sub-page #main .entry-content .boxes article .box-content ul.col-size-2 li:nth-child(even) {
	width: calc(100% - 272px);
}
.sub-page #main .entry-content .boxes article .box-content ul li {
	font-size: 16px;
	line-height: 16px;
	position: relative;
	padding-left: 15px;
}
.sub-page #main .entry-content .boxes article .box-content ul li::before {
	content: "●";
	font-size: 12px;
	line-height: 16px;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .boxes article .box-title {
		font-size: 14px;
		height: 34px;
	}
	.sub-page #main .entry-content .boxes.col-size-2 {
		grid-template-columns: auto;
		display: block;
	}
	.sub-page #main .entry-content .boxes.col-size-2 article:nth-child(2) {
		margin-right: 0;
		margin-bottom: 28px;
	}
	.sub-page #main .entry-content .boxes.col-size-2 article:nth-child(3) {
		margin-left: 0;
	}
	.sub-page #main .entry-content .boxes.col-size-2 .box-col-2 {
		grid-column: auto;
	}
	.sub-page #main .entry-content .boxes article .box-content {
		padding: 15px 30px 3px;;
		height: auto;
	}
	.sub-page #main .entry-content .boxes article .box-content ul.col-size-2 {
		display: block;
		grid-template-columns: auto;
	}
	.sub-page #main .entry-content .boxes article .box-content ul li {
		font-size: 14px;
		line-height: 14px;
		padding-left: 12px;
	}
	.sub-page #main .entry-content .boxes article .box-content ul li::before {
		font-size: 8px;
		line-height: 14px;
	}
}

/* バナー */
.sub-page #main .entry-content .banner {
	text-align: center;
	padding-bottom: 50px;
}
.sub-page #main .entry-content .banner img {
	vertical-align: bottom;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .button a {
		max-width: 247px;
		/* height: 40px; */
		font-size: 12px;
	}
	.sub-page #main .entry-content .button.pdf a::before {
		margin-right: 8px;
	}
	.sub-page #main .entry-content .banner img {
		width: 100%;
		max-width: 410px;
	}
}

/* 注意書き */
.sub-page #main .entry-content .attention {
	font-size: 14px;
	line-height: 20px;
	padding-top: 5px;
	color: #333333;
}
.sub-page #main .entry-content .attention ul li {
	position: relative;
	padding-left: 16px;
}
.sub-page #main .entry-content .attention ul li::before {
	content: "※";
	position: absolute;
	left: 0;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .attention {
		font-size: 12px;
		line-height: 22px;
		padding-top: 8px;
	}
}

/* 登録フロー */
.sub-page #main .entry-content .flow-regist article {
	border: solid 1px #333333;
	margin-bottom: 54px;
	position: relative;
}
.sub-page #main .entry-content .flow-regist article::after {
	content: "";
	display: block;
	position: absolute;
	border-top: solid 35px #c7d8e4;
	border-left: solid 36px transparent;
	border-right: solid 36px transparent;
	bottom: -55px;
	left: 0;
	right: 0;
	width: 0;
	margin: auto;
}
.sub-page #main .entry-content .flow-regist article::before {
	content: "";
	width: 36px;
	height: 19px;
	display: block;
	position: absolute;
	background-color: #c7d8e4;
	bottom: -20px;
	margin: auto;
	left: 0;
	right: 0;
}
.sub-page #main .entry-content .flow-regist article:last-child::after,
.sub-page #main .entry-content .flow-regist article:last-child::before {
	content: none;
}
.sub-page #main .entry-content .flow-regist article .th {
	padding: 16px 24px;
	display: flex;
	background-color: #f5f5f5;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.sub-page #main .entry-content .flow-regist article .th .hd {
	width: 114px;
	flex-shrink: 0;
}
.sub-page #main .entry-content .flow-regist article .th .bd {
	flex-grow: 1;
}
.sub-page #main .entry-content .flow-regist article .th .hd .step {
	width: 87px;
	height: 46px;
	background-color: #333333;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}
.sub-page #main .entry-content .flow-regist article.jbmia .th .hd .step {
	color: #333333;
	background-color: white;
	border: solid 1px #333333;
}
.sub-page #main .entry-content .flow-regist article .th .hd .step span {
	font-size: 24px;
	font-weight: bold;
	padding-left: 2px;
}
.sub-page #main .entry-content .flow-regist article .th .bd {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 24px;
	color: #333333;
}
.sub-page #main .entry-content .flow-regist article .th .bd ul li {
	position: relative;
	padding-left: 13px;
}
.sub-page #main .entry-content .flow-regist article .th .bd ul li::before {
	content: "・";
	left: 0;
	position: absolute;
}
.sub-page #main .entry-content .flow-regist article .td {
	padding: 18px;
	padding-left: 137px;
}
.sub-page #main .entry-content .flow-regist article .td .files li {
	position: relative;
	padding-bottom: 13px;
	padding-left: 59px;
	min-height: 33px;
	line-height: 20px;
}
.sub-page #main .entry-content .flow-regist article .td .files li::before {
	content: "PDF";
	width: 48px;
	height: 20px;
	display: flex;
	position: absolute;
	background-color: #b00000;
	font-size: 14px;
	color: white;
	justify-content: center;
	align-items: center;
	left: 0;
}
.sub-page #main .entry-content .flow-regist article .td .files li.pdf::before {
	content: "PDF";
	background-color: #b00000;
}
.sub-page #main .entry-content .flow-regist article .td .files li.word::before {
	content: "Word";
	background-color: #2d80bb;
}
.sub-page #main .entry-content .flow-regist article .td .files li.excel::before {
	content: "Excel";
	background-color: #3e8a00;
}
.sub-page #main .entry-content .flow-regist article .td .files li a {
	color: #333333;
}
.sub-page #main .entry-content .flow-regist article .td .button {
	margin-left: -137px;
}
.sub-page #main .entry-content .flow-regist article .td .button a {
	margin-bottom: 0;
	font-size: 18px;
	max-width: 368px;
	height: 51px;
	border-radius: 25.5px;
	background-color: #004d82;
	border: none;
	color: white;
}
.sub-page #main .entry-content .flow-regist article .td .button a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .flow-regist article .th .hd {
		width: 100%;
	}
	.sub-page #main .entry-content .flow-regist article .th .hd .step {
		width: 100%;
		font-weight: normal;
		height: 35px;
		font-size: 14px;
	}
	.sub-page #main .entry-content .flow-regist article .th .hd .step span {
		padding-left: 8px;
		font-size: 20px;
	}
	.sub-page #main .entry-content .flow-regist article .th .bd {
		padding-top: 12px;
		font-size: 16px;
		line-height: 20px;
	}
	.sub-page #main .entry-content .flow-regist article .th .bd ul li {
		padding-bottom: 10px;
	}
	.sub-page #main .entry-content .flow-regist article .th .bd ul li:last-child {
		padding-bottom: 0;
	}
	.sub-page #main .entry-content .flow-regist article .td {
		padding: 16px 24px;
	}
	.sub-page #main .entry-content .flow-regist article .td .files li {
		font-size: 14px;
		padding-bottom: 10px;
		min-height: unset;
	}
	.sub-page #main .entry-content .flow-regist article .td .button {
		margin: auto;
	}
	.sub-page #main .entry-content .flow-regist article .td .button a {
		font-size: 16px;
	}
}
/* QAリスト */
.sub-page #main .entry-content .faq-list {
	padding-bottom: 80px;
}
.sub-page #main .entry-content .faq-list article {
	padding-top: 40px;
}
.sub-page #main .entry-content .faq-list article h2 {
	padding-bottom: 0;
}
.sub-page #main .entry-content .faq-list article ul li {
	padding-top: 23px;
}
.sub-page #main .entry-content .faq-list article ul li .question {
	line-height: 20px;
	padding-right: 16px;
	padding-left: 60px;
	padding-top: 18px;
	padding-bottom: 14px;
	background-color: #f1f1f1;
	position: relative;
}
.sub-page #main .entry-content .faq-list article ul li .question::before {
	content: "Q";
	display: flex;
	position: absolute;
	width: 28px;
	height: 28px;
	background-color: white;
	border: solid 1px black;
	border-radius: 2px;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	left: 20px;
	top: 12px;
}
.sub-page #main .entry-content .faq-list article ul li .answer {
	line-height: 20px;
	padding-right: 16px;
	padding-left: 102px;
	padding-top: 18px;
	padding-bottom: 14px;
	position: relative;
}
.sub-page #main .entry-content .faq-list article ul li .answer::before {
	content: "A";
	display: flex;
	position: absolute;
	width: 28px;
	height: 28px;
	background-color: black;
	border: solid 1px black;
	border-radius: 2px;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: bold;
	left: 60px;
	top: 12px;
	color: white;
}
@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .faq-list article ul li .question {
		font-size: 14px;
	}
	.sub-page #main .entry-content .faq-list article ul li .answer {
		font-size: 14px;
		padding-left: 60px;
	}
	.sub-page #main .entry-content .faq-list article ul li .answer::before {
		left: 20px;
	}
}

/* 問い合わせ */
.sub-page #main .entry-content .form_contact {
	padding-top: 21px;
	padding-bottom: 80px;
}
.sub-page #main .entry-content .form_contact form {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.sub-page #main .entry-content .form_contact form label {
	position: relative;
	width: 270px;
	min-height: 76px;
	color: black;
	padding-left: 16px;
	border-top: solid 1px #d9d9d9;
	padding-top: 23px;
	line-height: 28px;
}
.sub-page.sub4 #main .entry-content .form_contact form label {
	width: 320px;
}
.sub-page #main .entry-content .form_contact form label:last-of-type,
.sub-page #main .entry-content .form_contact form > div:last-of-type,
.sub-page #main .entry-content .form_contact form .input-last {
	border-bottom: solid 1px #d9d9d9;
}
.sub-page #main .entry-content .form_contact form label.required::after {
	content: "必須";
	position: absolute;
	right: 0;
	top: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 52px;
	height: 22px;
	background-color: black;
	color: white;
	font-size: 14px;
}
.sub-page #main .entry-content .form_contact form .input-contact {
	width: calc(100% - 270px);
	display: block;
	align-items: center;
	padding-left: 24px;
	border-top: solid 1px #d9d9d9;
	padding-top: 17px;
	padding-right: 12px;
}
.sub-page.sub4 #main .entry-content .form_contact form .input-contact {
	width: calc(100% - 320px);
}
.sub-page #main .entry-content .form_contact form .input-contact input {
	width: 100%;
	max-width: 578px;
	border: solid 1px #c8c8c8;
	height: 39px;
	background-color: #f1f1f1;
	padding-left: 10px;
}
.sub-page #main .entry-content .form_contact form .input-contact input[readonly] {
	color: #666666;
}
.sub-page #main .entry-content .form_contact form .input-contact input[readonly]:focus {
	outline: none;
}
.sub-page #main .entry-content .form_contact form .input-contact input[type="file"] {
	width: auto;
	max-width: unset;
	cursor: pointer;
	height: auto;
	display: block;
	margin-bottom: 17px;
	background: unset;
	border: unset;
}
.sub-page #main .entry-content .form_contact form .input-contact textarea {
	width: 100%;
	height: 243px;
	border: solid 1px #c8c8c8;
	background-color: #f1f1f1;
	margin-bottom: 21px;
}
.sub-page #main .entry-content .form_contact form .input-contact .textarea-product {
	max-width: 578px;
	height: 100px;
}
.sub-page #main .entry-content .form_contact form .input-contact .select-inner {
	position: relative;
	max-width: 577px;
}
.sub-page #main .entry-content .form_contact form .input-contact .select-inner select {
	width: 100%;
	max-width: 578px;
	border: solid 1px #c8c8c8;
	height: 39px;
	background-color: #f1f1f1;
	padding-left: 10px;
}
.sub-page #main .entry-content .form_contact form .input-contact .select-inner::before,
.sub-page #main .entry-content .form_contact form .input-contact .select-inner::after {
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background-color: #c8c8c8;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
}
.sub-page #main .entry-content .form_contact form .input-contact .select-inner::after {
	transform: rotate(-45deg);
	right: 10px;
}
.sub-page #main .entry-content .form_contact form .input-contact .select-inner::before {
	right: 17px;
	transform: rotate(
45deg
);
}
.sub-page #main .entry-content .form_contact form .note {
	width: 100%;
	padding-bottom: 0;
	text-align: left;
}
.sub-page #main .entry-content .form_contact form .contact-button {
	width: 268px;
	height: 43px;
	margin: 0 auto;
	background-color: #004d82;
	border-radius: 21.5px;
	margin-top: 39px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	border: none;
	cursor: pointer;
}
.sub-page #main .entry-content .form_contact form .contact-button:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
.sub-page #main .entry-content .form_contact form .contact-button::after {
	content: "";
	position: absolute;
	right: 18px;
	background-image: url(/asset/img/sub/icon-button4.png);
	width: 13px;
	height: 9px;
	transform: rotate(-90deg);
}
.sub-page #main .entry-content .form_contact .form_back_a {
  text-align: center;
  padding-top: 16px;
}
.sub-page #main .entry-content .form_contact .form_back_a a {
  color: #343434;
  font-weight: bold;
  font-size: 14px;
}
.sub-page #main .entry-content .form_contact .form_back_a a:hover {
  color: #939393;
}
.sub-page.sub4 #main .entry-content .form_contact form label.type2 span {
	position: absolute;
	left: 16px;
	top: 51px;
	font-size: 11px;
	line-height: 11px;
}
.sub-page.sub4 #main .entry-content .form_contact form label.type2-sub {
	padding-top: 0;
	padding-left: 32px;
	border-top: none;
	min-height: 44px;
}
.sub-page.sub4 #main .entry-content .form_contact form .input-contact.type2-sub {
    padding-top: 0;
    border-top: none;
}
.sub-page #main .entry-content .form_contact form .input-contact #input-url {
    margin-bottom: 17px;
}

@media screen and (max-width: 900px) {
	.sub-page #main .entry-content .form_contact form label,
	.sub-page #main .entry-content .form_contact form .input-contact {
		border:none;
	}
	.sub-page #main .entry-content .form_contact form label:last-of-type,
	.sub-page #main .entry-content .form_contact form .input-contact:last-of-type {
		border: none;
	}
	.sub-page #main .entry-content .form_contact form label {
		width: 100%;
		font-size: 14px;
		padding-top: 1px;
		padding-left: 5px;
		min-height: auto;
	}
	.sub-page.sub4 #main .entry-content .form_contact form label {
		width: 100%;
	}
	.sub-page #main .entry-content .form_contact form label.required::after {
		position: relative;
		display: inline-block;
		top: 0px;
		text-align: center;
		left: 6px;
		width: 44px;
		height: 20px;
		font-size: 12px;
		line-height: 20px;
	}
	.sub-page #main .entry-content .form_contact form .input-contact {
		width: 100%;
		padding-left: 4px;
		padding-top: 9px;
		padding-bottom: 17px;
		padding-right: 4px;
	}
	.sub-page.sub4 #main .entry-content .form_contact form .input-contact {
		width: 100%;
	}
	.sub-page #main .entry-content .form_contact form .input-contact textarea {
		height: 139px;
		margin-bottom: 0;
	}
	.sub-page #main .entry-content .form_contact form .contact-button {
		font-size: 14px;
		margin-top: 6px;
	}
	.sub-page #main .entry-content .form_contact .form_back_a {
		padding-top: 8px;
	}
	.sub-page #main .entry-content .form_contact .form_back_a a {
		font-size: 12px;
	}
	.sub-page.sub4 #main .entry-content .form_contact form label.type2 span {
		left: 4px;
		top: 29px;
	}
	.sub-page.sub4 #main .entry-content .form_contact form label.type2-sub {
		min-height: auto;
		padding-left: 17px;
	}
	.sub-page.sub4 #main .entry-content .form_contact form .input-contact.type2-sub {
		padding-left: 17px;
	}
}

/* 問い合わせ確認 */
.sub-page #main .entry-content .lst_table5 {
  padding-top: 20px;
	color: #343434;
	line-height: 24.5px;
}
.sub-page #main .entry-content .lst_table5 .row {
  border-top: solid 1px #d4d4d4;
  padding-top: 23px;
  padding-bottom: 24px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.sub-page #main .entry-content .lst_table5 .row:last-of-type {
  border-bottom: solid 1px #d9d9d9;
}
.sub-page #main .entry-content .lst_table5 .row .label {
  width: 294px;
  padding-left: 16px;
}
.sub-page #main .entry-content .lst_table5 .row .input {
  width: calc(100% - 294px);
}
@media screen and (max-width: 768px) {
  .sub-page #main .entry-content .lst_table5 {
    padding-top: 10px;
    font-size: 14px;
  }
  .sub-page #main .entry-content .lst_table5 .row {
    padding-top: 11px;
    padding-bottom: 14px;
  }
  .sub-page #main .entry-content .lst_table5 .row .label {
    width: 100%;
    padding-left: 0;
  }
  .sub-page #main .entry-content .lst_table5 .row .input {
    width: 100%;
    padding-top: 2px;
  }
}

.sub-page #main .entry-content .form_login {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  padding-top: 24px;
	padding-bottom: 100px;
}
.sub-page #main .entry-content .form_login form {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.sub-page #main .entry-content .form_login form .label-login {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100px;
  height: 39px;
  padding-right: 18px;
}
.sub-page #main .entry-content .form_login form .input-login {
  display: block;
  width: 310px;
  height: 39px;
  border: solid 1px #C8C8C8;
  background-color: #F1F1F1;
  margin-bottom: 19px;
}
.sub-page #main .entry-content .form_login form .reminder {
	width: 100%;
	font-size: 14px;
	position: relative;
	padding-left: 15px;
}
.sub-page #main .entry-content .form_login form .reminder::before {
	content: "※";
	position: absolute;
	left: 0;
}
.sub-page #main .entry-content .form_login form .login-button {
	width: 268px;
	height: 43px;
	margin: 0 auto;
	background-color: #004d82;
	border-radius: 21.5px;
	margin-top: 39px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	border: none;
	cursor: pointer;
}
.sub-page #main .entry-content .form_login form .login-button:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
.sub-page #main .entry-content .form_login form .login-button::after {
	content: "";
	position: absolute;
	right: 18px;
	background-image: url(/asset/img/sub/icon-button4.png);
	width: 13px;
	height: 9px;
	transform: rotate(-90deg);
}
@media screen and (max-width: 900px) {
  .sub-page #main .entry-content .form_login {
    padding-top: 12px;
    max-width: none;
  }
  .sub-page #main .entry-content .form_login form .label-login {
    width: 100%;
    justify-content: center;
    height: auto;
    padding: 0;
    font-size: 14px;
  }
  .sub-page #main .entry-content .page-login .blk_text br {
    display: none;
  }
  .sub-page #main .entry-content .form_login form .input-login {
    width: 100%;
    margin-bottom: 15px;
  }
	.sub-page #main .entry-content .form_login form .reminder {
		font-size: 12px;
	}
  .sub-page #main .entry-content .form_login form .login-button {
		font-size: 14px;
		margin-top: 20px;
	}
}


/* =========================================================================================================================================== */
/* ポップアップウィンド
/* =========================================================================================================================================== */
.popup-page #main {
	padding: 29px 35px;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}
.popup-page #main .logo {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 40px;
	text-align: center;
	margin-top: 5px;
}
.popup-page #main .logo img {
	width: 156px;
	vertical-align: bottom;
}
.popup-page #main .entry-title {
	flex-grow: 1;
	font-size: 20px;
	font-weight: bold;
	color: #004d82;
	width: 100%;
}
.popup-page #main .button3 a {
	width: 260px;
	height: 23px;
	font-size: 12px;
	color: #b00000;
	text-decoration: none;
	border: solid 1px #b00000;
	border-radius: 11.5px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-page #main .button3 a::before {
	background-image: url('/asset/img/sub/icon-button2.png');
	content: "";
	width: 13px;
	height: 13px;
	display: block;
	margin-right: 7px;
}
.popup-page #main .button3 a:hover {
	background-color: #f3f4f6;
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-filter: "alpha(opacity=100)";
}
.popup-page #main .entry-content {
	width: 100%;
}
.popup-page #main .entry-content h2 {
	width: 100%;
	padding: 14px 22px;
	background-color: #dddddd;
	font-size: 18px;
	line-height: 24px;
	font-weight: bold;
	color: #333333;
	word-break: break-all;
	margin-top: 17px;
	margin-bottom: 17px;
}
.popup-page #main .entry-content .table {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
/*	display: grid; */
/*	grid-template-columns: 97px 1fr; */
	font-size: 14px;
	border-top: solid 1px black;
}
.popup-page #main .entry-content .table .th {
	width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #787878;
	color: white;
	text-align: center;
}
.popup-page #main .entry-content .table > div {
	border-bottom: solid 1px black;
	padding: 9px 13px 7px;
}
.popup-page #main .entry-content .table .td {
	width: calc(100% - 150px);
	color: #333333;
	line-height: 18px;
	word-break: break-all;
}
.popup-page #main .entry-content .table .td.information {
/*	line-height: 24px; */
/*	display: grid; */
/*	grid-template-columns: 38px 1fr; */
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;

}
.popup-page #main .entry-content .table .td.information .tr {
	grid-column: 1/3;
}
.popup-page #main .entry-content .table .td.information .tr a {
	color: #bb2222;
}
.popup-page #main .entry-content .table .td.information .hd {
	width: 41px;
	margin-bottom: 6px;
}
.popup-page #main .entry-content .table .td.information .bd {
	width: calc(100% - 41px);
	margin-bottom: 6px;
	padding-left: 15px;
	position: relative;
}
.popup-page #main .entry-content .table .td.information .bd::before {
	content: "：";
	position: absolute;
	left: 0;
}
.popup-page #main .entry-content .table .td.information .bd img {
	max-width: 100%;
}
.popup-page #main .entry-content .close {
	text-align: center;
	padding-top: 30px;
}
.popup-page #main .entry-content .close a {
	font-size: 12px;
	color: #bb2222;
	display: inline-block;
	border-bottom: solid 1px #bb2222;
	text-decoration: none;
	padding-bottom: 1px;
}
.popup-page #footer .menu {
	display: none;
}
.popup-page #footer .logo {
	padding-top: 0;
}
.popup-page #footer .copyright {
	padding-bottom: 0;
}

@media screen and (max-width: 480px) {
	.popup-page #main {
		padding: 20px;
	}
	.popup-page #main .logo img {
		width: 130px;
	}
	.popup-page #main .entry-title {
		width: 100%;
		flex: auto;
		text-align: center;
		font-size: 18px;
		margin-bottom: 18px;
	}
	.popup-page #main .entry-content .table {
		grid-template-columns: 79px 1fr;
	}
	.popup-page #main .entry-content .table .th {
		width: 100px;
		padding: 11px 0;
		font-size: 12px;
	}
	.popup-page #main .entry-content .table .td {
		width: calc(100% - 100px);
	}
	.popup-page #main .entry-content h2 {
		font-size: 16px;
		line-height: 22px;
	}
	.popup-page #main .button3 {
		margin-left: auto;
	}
}