@charset "UTF-8";
/********** CSS RESET **********/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio,
video { margin: 0; padding: 0; background: transparent; border: 0; font-size: 100%; vertical-align: baseline; }
img { vertical-align: middle; }
/* ----- HTML 5 ----- */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
address  { font-style: normal; }
input:not([type="radio"]):not([type="checkbox"]), button, textarea { margin: 0; padding: 0; background: none; border: none; border-radius: 0; -webkit-appearance: none; -moz-appearance: none; }
input[type="button"], input[type="submit"], input[type="text"] { border-radius: 0; -webkit-appearance: none; }
input { vertical-align: middle; }
/* ----- BOX ----- */
*, *::before, *::after {box-sizing: border-box;}

/********** ALL **********/
body {
	font-family: 'Montserrat', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	background: #fff;
	color: #333;
	font-size: 100%;
	line-height: 1.6;
	letter-spacing: .1em;
}
a {
	color: #0f588e;
	text-decoration: none;
	cursor: pointer;
	transition: all .3s;
}
a:not([href]) {
	cursor: default;
}
a:hover {
	color: #0f588e;
	text-decoration: none;
}

/* ----- skip ----- */
.skip {
	position: relative;
	width: 100%;
	text-align: center;
}
.skip a {
	display: inline-block;
	position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	padding: 10px;
	background: #fff;
	z-index: 9999;
}
.skip a:active,
.skip a:focus {
	top: 0;
}
.skip_anchor {
	display: block;
	height: 1px;
	margin-top: -1px;
}
.skip_anchor img {
	width: 1px;
	height: 1px;
}

/********** HEADER **********/
header {
	padding: 25px 0;
}
.head_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.head_logo img {
	width: 284px;
}

/* ----- menu btn ----- */
.btn_menu {
	display: inline-block;
}
.navbar-toggler.btn_menu {
	position: relative;
	width: 56px;
	height: 56px;
	padding: 5px;
	background: #1d6d96;
	text-align: center;
	transition: all .3s;
	z-index: 10;
}
.btn_menu .btn_menu_box {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.btn_menu .btn_menu_box span {
	display: inline-block;
	position: absolute;
	left: calc(50% - 15px);
	width: 30px;
	height: 3px;
	background: #fff;
	border-radius: 1.5px;
	transition: all .3s;
	z-index: 10;
}
.btn_menu .btn_menu_box span:nth-of-type(1) {
	top: 9px;
}
.btn_menu .btn_menu_box span:nth-of-type(2) {
	top: 18px;
}
.btn_menu .btn_menu_box span:nth-of-type(3) {
	top: 27px;
}
.btn_menu[aria-expanded="true"] .btn_menu_box span:nth-of-type(1) {
	-webkit-transform: translateY(9px) rotate(45deg);
	transform: translateY(9px) rotate(45deg);
}
.btn_menu[aria-expanded="true"] .btn_menu_box span:nth-of-type(2) {
	opacity: 0;
}
.btn_menu[aria-expanded="true"] .btn_menu_box span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(-45deg);
	transform: translateY(-9px) rotate(-45deg);
}
.btn_menu strong {
	color: #fff;
	font-size:  65%;
}

/* ----- menu ----- */
.menu {
	justify-content: flex-end;
}
.menu ul {
	display: flex;
	flex-wrap: wrap;
}
.menu ul li {
	position: relative;
	width: 185px;
}
.menu ul li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background: #0091db;
	border-radius : 1px;
}
.menu ul li:last-of-type::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 2px;
	height: 100%;
	background: #0091db;
	border-radius : 1px;
}
.menu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10px;
	color: #333;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 112.5%;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	line-height: 1.5;
}
.menu ul li a::after {
	content: '';
	position: absolute;
	top: calc(50% - 35px);
	left: calc(50% - 35px);
	width: 70px;
	height: 70px;
	background: url(../img/menu_back.png) center center / contain no-repeat;
	z-index: -1;
	opacity: 0;
	transition: opacity .3s;
}
.menu ul li a:hover::after,
.menu ul li a.active::after {
	opacity: 1;
}


/********** MAIN **********/

/* ----- h1 ----- */
.page_h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 60px 0 50px;
	background: url(../img/h1_back.jpg) center center / cover no-repeat;
}

/* ----- pankuzu ----- */
.pankuzu {
	padding: 5px 0;
	background: #f2f5f7;
}
.pankuzu ul {
	display: flex;
	flex-wrap: wrap;
}
.pankuzu ul li {
	position: relative;
	padding-right: 30px;
	font-size: 75%;
}
.pankuzu ul li::before {
	content: '';
	position: absolute;
	top: calc(50% - 4.5px);
	right: 11px;
	width: 7px;
	height: 9px;
	background: url(../img/icon_arrow_b.png) center center / contain no-repeat;
}
.pankuzu ul li:last-of-type {
	padding-right: 0;
}
.pankuzu ul li:last-of-type::before {
	content: none;
}
.pankuzu ul li a {
	text-decoration: underline;
	transition: all .3s;
}
.pankuzu ul li a:hover {
	text-decoration: none;
}

/* ----- page menu ----- */
.page_menu ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
.page_menu ul li {
	margin-right: 50px;
}
.page_menu ul li:last-of-type {
	margin-right: 0;
}
.page_menu ul li a {
	display: inline-block;
	position: relative;
	width: 250px;
	padding: 15px 20px 15px 0;
	background: #f2f5f7;
	border-radius: 5px;
	color: #333;
	text-align: center;
	transition: all .3s;
}
.page_menu ul li a:hover {
background: #dbe9f2;
}
.page_menu ul li a::after {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	right: 22px;
	width: 14px;
	height: 12px;
	background: url(../img/icon_arrow_bb.png) center center / contain no-repeat;
	transition: top .3s;
}
.page_menu ul li a:hover::after {
	top: calc(50% - 2px);
}

/* ----- h2 ----- */
.page_h2 {
	position: relative;
	margin-bottom: 80px;
	text-align: center;
}
.page_h2::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: calc(50% - 50px);
	width: 100px;
	height: 3px;
	background: #0f588e;
	border-radius: 1.5px;
}

/* ----- btn link ----- */
.btn_link {
	display: inline-block;
	position: relative;
	padding: 15px 80px 12px 30px;
	background: #fff;
	border: 2px solid #0f588e;
	border-radius: 5px;
	font-weight: bold;
	text-align: center;
	overflow: hidden;
	vertical-align: middle;
	z-index: 1;
}
.btn_link::before {
	content: '';
  position: absolute;
  top: 0;
  right: 0;
	width: 100%;
	height: 100%;
	background: #dbe9f2;
  z-index: -1;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn_link:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_link::after {
	content: '';
	position: absolute;
	top: calc(50% - 7px);
	right: 30px;
	width: 11px;
	height: 14px;
	background: url(../img/icon_arrow_b.png) center center / contain no-repeat;
	transition: right .3s;
}
.btn_link:hover::after {
	right: 22px;
}
.btn_link span {
	font-size: 87.5%;
}

/* ----- btn submit ----- */
.btn_submit {
	display: inline-block;
	position: relative;
	padding: 20px 80px 20px 50px;
	background: #2f76c5;
	border-radius: 5px;
	color: #fff;
	font-size: 112.5%;
	letter-spacing: .1em;
	text-align: center;
	overflow: hidden;
	z-index: 1;
}
.btn_submit::before {
	content: '';
  position: absolute;
  top: 0;
  right: 0;
	width: 100%;
	height: 100%;
	background: #0f588e;
  z-index: -1;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn_submit:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_submit::after {
	content: '';
	position: absolute;
	top: calc(50% - 7px);
	right: 30px;
	width: 11px;
	height: 14px;
	background: url(../img/icon_arrow_w.png) center center / contain no-repeat;
	transition: right .3s;
}
.btn_submit:hover::after {
	right: 22px;
}

/* ----- btn back ----- */
.btn_back {
	display: inline-block;
	position: relative;
	padding: 10px 20px 10px 42px;
	background: #e4253e;
	border-radius: 5px;
	color: #fff;
	letter-spacing: .1em;
	text-align: center;
	overflow: hidden;
	z-index: 1;
}
.btn_back::before {
	content: '';
  position: absolute;
  top: 0;
  right: 0;
	width: 100%;
	height: 100%;
	background: #d4001c;
  z-index: -1;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn_back:hover::before {
  transform-origin: right top;
  transform: scale(1, 1);
}
.btn_back::after {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	left: 19px;
	width: 9px;
	height: 11px;
	background: url(../img/icon_arrow_w.png) center center / contain no-repeat;
	transform: rotate(180deg);
	transition: left .3s;
}
.btn_back:hover::after {
	left: 15px;
}

/********** FOOTER **********/
footer {
	padding-top: 30px;
	background: #537997;
}
.pagetop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	z-index: 10;
	opacity: .7;
}
.pagetop:hover {
	bottom: 35px;
	opacity: 1;
}
.pagetop img {
	width: 100%;
}
.foot_box {
	position: relative;
}
.foot_box::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background: #fff;
	border-radius: 1px;
}
.foot_logo img {
	width: 320px;
}
.foot_add dl {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	color: #fff;
	font-size: 87.5%;
	gap: 0 30px;
	word-break: break-all;
}
.foot_add dl dt {
	position: relative;
	width: 60px;
	font-weight: normal;
}
.foot_add dl dt::before,
.foot_add dl dt::after {
	content: '';
	position: absolute;
	top: 12%;
	right: -11px;
	width: 1px;
	height: 76%;
	background: #fff;
	border-radius: .5px;
}
.foot_add dl dt::after {
	right: -14px;
}
.foot_add dl dd {
	width: calc(100% - 90px);
}
.foot_add dl dd a {
	color: #fff;
	text-decoration: underline;
	border-color:#fff;
}
.foot_add dl dd a:hover {
	text-decoration: none;
}
.foot_link ul {
	display: flex;
	flex-wrap: wrap;
	margin-left: 30px;
	font-size: 87.5%;
}
.foot_link ul li {
	position: relative;
	width: 50%;
	margin-top: 5px;
	padding-left: 18px;
}
.foot_link ul li:nth-of-type(1),
.foot_link ul li:nth-of-type(2) {
	margin-top: 0;
}
.foot_link ul li::before {
	content: '';
	position: absolute;
	top: calc(50% - 6px);
	left: 0;
	width: 10px;
	height: 12px;
	background: url(../img/icon_arrow_y.png) center center / contain no-repeat;
}
.foot_link ul li a{
	text-decoration: underline;
}
.foot_link ul li a:hover{
	text-decoration: none;
}

.foot_link ul li a,
.foot_link ul li a.active,
.foot_link ul li a.active:hover {
	color: #fff;
}
.foot_banner {
	display: flex;
	flex-wrap: wrap;
	margin: 15px 0 0 30px;
}
.btn_chuou {
	display: inline-block;
	position: relative;
	margin: 10px 15px 0 0;
	padding: 12px 20px 10px 20px;
	border: 2px solid #fff;
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	z-index: 1;
}
.btn_chuou:hover {
	color: #fff;
}
.btn_chuou::before {
	content: '';
  position: absolute;
  top: 0;
  right: 0;
	width: 100%;
	height: 100%;
	background: #0f588e;
  z-index: -1;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn_chuou:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.btn_chuou .link_icon {
	width: 18px;
	margin: 0 0 5px 15px;
}
.btn_chuou img {
	width: 100px;
	margin-right: 15px;
}
.copy {
	padding: 20px 0 10px;
	color: #fff;
	font-size: 75%;
	text-align: center;
}

/*2行目以降インデント型リスト*/
.li_indent li {
	margin-left: 32px;
	text-indent: -42px;
}
/*背景色のみ装飾無しh3*/
.text_h3 {
	position: relative;
	margin-bottom: 20px;
	padding: 15px 10px 15px 10px;
	background: #eaf6f7;
	border-radius: 5px;
	font-size: 100%;
	line-height: 150%;
	font-weight: normal;
}
/*テキスト　センタリング*/
.text_center {
	text-align: center;
}
/*テキスト　太字*/
.text_bold {
	font-weight: bold;
}

/********** ---------- media lg 1199px ---------- **********/

@media screen and (max-width: 1199px) {

	/* ----- header ----- */
	.head_logo img {
		width: 250px;
	}
	.menu ul li {
		width: 160px;
	}
	.menu ul li a {
		padding: 5px;
	}
	.menu ul li a::after {
		top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
	}
	
	/* ----- page area ----- */
	.page_area .page_in {
		padding: 0 10px;
	}
	.page_area:nth-of-type(2n+2) .page_in {
		padding: 25px 50px 40px;
	}

}

/********** ---------- media md 991px ---------- **********/

@media screen and (max-width: 991px)  {

	/* ----- header ----- */
	header {
		padding: 20px 0;
	}
	.head_logo img {
		width: 230px;
	}
	.menu ul {
		margin-top: 20px;
	}
	.menu ul li {
		width: 25%;
	}

	/* ----- h1 ----- */
	.page_h1 {
		padding: 40px 0 30px;
	}

	/* ----- h2 ----- */
	.page_h2 {
		margin-bottom: 60px;
	}
	.page_h2::after {
		bottom: -25px;
	}
	/* ----- link box ----- */
	.link_box {
		padding: 0;
	}

	/* ----- footer ----- */
	.foot_box::after {
		top: 0;
		left: 15px;
		width: calc(100% - 30px);
		height: 2px;
	}
	.foot_logo img {
		width: 300px;
	}
	.foot_add dl {
		margin: 20px 0;
	}
	.foot_link ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 20px 0 0;
	}
	.foot_link ul li {
		width: 50%;
	}
	.foot_banner {
		margin: 15px 0 0 0;
	}
}

/********** ---------- media sm 767px ---------- **********/

@media screen and (max-width: 767px) {

	/* ----- header ----- */
	.menu ul li a {
		font-size: 93.8%;
	}
	.menu ul li a::after {
		top: calc(50% - 25px);
		left: calc(50% - 25px);
		width: 50px;
		height: 50px;
	}


	/* ----- page menu ----- */
	.page_menu ul {
		margin-top: 40px;
	}
	.page_menu ul li {
		width: calc(50% - 20px);
		margin-right: 40px;
	}
	.page_menu ul li a {
		width: 100%;
		padding: 15px 20px 15px 0;
	}
	
	
	/* ----- link box ----- */
	.link_box .btn_link,
	.link_box .btn_out {
		margin: 20px 15px 0 0;
	}
}

/********** ---------- media xs 575px ---------- **********/

@media screen and (max-width: 575px) {

	/* ----- header ----- */
	header {
		padding: 15px 0;
	}
	.head_logo img {
		width: 200px;
	}
	.menu ul {
		position: relative;
		margin-top: 15px;
	}
	.menu ul::before,
	.menu ul::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: #0091db;
		border-radius: 1px;
	}
	.menu ul::after {
		bottom: 0;
		top: auto;
	}
	.menu ul li {
		width: 50%;
	}
	.menu ul li::before,
	.menu ul li:last-of-type::after {
		top: 15%;
		height: 70%;
		background: #c4d6ff;
	}
	.menu ul li:nth-of-type(2) a::before {
		content: '';
		position: absolute;
		top: 15%;
		right: 0;
		width: 2px;
		height: 70%;
		background: #c4d6ff;
		border-radius: 1px;
	}
	.menu ul li:nth-of-type(1)::after,
	.menu ul li:nth-of-type(2)::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: #0091db;
		border-radius: 1px 0 0 1px;
	}
	.menu ul li:nth-of-type(2)::after {
		border-radius: 0 1px 1px 0;
	}
	.menu ul li a {
		padding: 15px;
	}
	.menu ul li a::after {
		top: calc(50% - 20px);
		left: calc(50% - 20px);
		width: 40px;
		height: 40px;
	}

	/* ----- page menu ----- */
	.page_menu ul {
		margin-top: 30px;
	}
	.page_menu ul li {
		width: 75%;
		margin: 0 0 15px;
	}
	.page_menu ul li:last-of-type {
		margin: 0;
	}
	.page_menu ul li a {
		width: 100%;
		padding: 10px 20px 10px 0;
		font-size: 87.5%;
	}

	/* ----- h2 ----- */
	.page_h2 {
		margin-bottom: 50px;
	}
	.page_h2::after {
		bottom: -20px;
	}

	/* ----- btn link ----- */
	.btn_link {
		padding: 12px 45px 8px 25px;
		line-height: 1.5;
	}
	.btn_link::after {
		right: 20px;
	}
	.btn_link:hover::after {
		right: 15px;
	}

	/* ----- btn submit ----- */
	.btn_submit {
		padding: 15px 60px 15px 30px;
		font-size: 100%;
	}
	.btn_submit::after {
		right: 25px;
	}
	.btn_submit:hover::after {
		right: 20px;
	}

	/* ----- btn back ----- */
	.btn_back {
		padding: 8px 20px 8px 42px;
	}

	/* ----- footer ----- */
	.pagetop {
		width: 45px;
		height: 45px;
		bottom: 15px;
		right: 15px;
	}
	.pagetop:hover {
		bottom: 15px;
		opacity: 1;
	}
	.foot_logo img {
		width: 250px;
	}
	.foot_add dl dt {
		width: 90px;
	}
	.foot_add dl dt::before {
		right: 17px;
	}
	.foot_add dl dt::after {
		right: 20px;
	}
	.foot_add dl dt:first-of-type::before,
	.foot_add dl dt:first-of-type::after {
		top: 10%;
		height: 80%;
	}
	.foot_add dl dd {
		width: calc(100% - 90px);
	}
	.foot_link ul li {
		width: 100%;
	}
	.foot_link ul li:nth-of-type(2) {
		margin-top: 5px;
	}
	.btn_chuou {
		padding: 10px 65px 10px 30px;
	}
	.btn_chuou img {
		margin: 6px 0 5px;
	}
	.btn_chuou .link_icon {
		position: absolute;
		top: calc(50% - 9px);
		right: 20px;
	}
	.btn_chuou strong {
		display: block;
	}
}
