 @charset "utf-8";

html {
}

body {
	color: #000;
	font: 16px/1.6 -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', meiryo, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

/*--------------------------------------
	header
--------------------------------------*/
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	z-index: 9999;
}

header > div {
	margin: auto;
	width: 100%;
	height: 50px;
}

header .bland img {
	width: 75%;
	margin: 14px 0 0 10px;
}

/* toggle_menu */
header #menu_button {
	position: relative;
	display: block;
	float: right;
	width: 55px;
	height: 50px;
	padding: 0 10px;
	box-sizing: border-box;
	line-height: 11px;
	text-align: right;
	background-color: #17469b;
	border: none;
	z-index: 1000;
}

header #menu_button span {
	position: relative;
	top: -4px;
	display: inline-block;
	width: 100%;
	height: 4px;
	margin: 0;
	border-radius: 5px;
	background-color: #fff;
}

@keyframes menu_button_top {
	from {transform: rotate(0deg) translate(0,0);}
	to {transform: rotate(-45deg) translate(-7px, 8px);}
}
@keyframes menu_button_middle {
	from {opacity: 1.0;}
	to {opacity: 0;}
}
@keyframes menu_button_bottom {
	from {transform: rotate(0deg) translate(0,0);}
	to {transform: rotate(45deg) translate(-7px, -8px);}
}
@keyframes menu_button_top_rev {
	from {transform: rotate(-45deg) translate(-7px, 8px);}
	to {transform: rotate(0deg) translate(0,0);}
}
@keyframes menu_button_middle_rev {
	from {opacity: 0;}
	to {opacity: 1.0;}
}
@keyframes menu_button_bottom_rev {
	from {transform: rotate(45deg) translate(-7px, -8px);}
	to {transform: rotate(0deg) translate(0,0);}
}

#menu_button span {
	animation-duration: 360ms;
	animation-fill-mode: forwards;
}

#menu_button.opened span.top {
	animation-name: menu_button_top;
}
#menu_button.opened span.middle {
	animation-name: menu_button_middle;
}
#menu_button.opened span.bottom {
	animation-name: menu_button_bottom;
}

#menu_button.closed span.top {
	animation-name: menu_button_top_rev;
}
#menu_button.closed span.middle {
	animation-name: menu_button_middle_rev;
}
#menu_button.closed span.bottom {
	animation-name: menu_button_bottom_rev;
}

header .toggle_layer {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5;
}

header .inquiry b {
	vertical-align: middle;
	padding-top: 5px;
}

header nav {
	position: relative;
	display: none;
	font-size: 18px;
	background-color: #17469b;
	z-index: 1000;
}
header nav ul {
	margin: auto;
	text-align: center;
}

header nav li {
	border-bottom: 1px solid #fff;
	box-sizing: border-box;
}
header nav li:first-child {
	border-top: 1px solid #fff;
}
header nav li a {
	display: block;
	padding: 10px 0;
	text-decoration: none;
	color: #fff;
}

header nav li#now a {
	color: initial;
	background: #edf0f8;
}

/*--------------------------------------
	main
--------------------------------------*/
main {
	display: block;
}

main section .contents {
	margin: 0 5px 30px;
}

main section::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

main section .contents section {
	margin-left: 5px;
	margin-bottom: 40px;
}

main section img.left, 
main section img.right {
	margin-bottom: 0;
}

main section section {
	margin-left: 5px;
	margin-bottom: 30px;
}

.contents section section:last-of-type {
	margin-bottom: 0;
}

.contents {
	word-break: break-word;
}

h1 {
	padding: 20px 0;
	font-size: 26px;
	color: #17469b;
	text-shadow:
		2px 2px 5px #ffffff,
		-2px 2px 5px #ffffff,
		2px -2px 5px #ffffff,
		-2px -2px 5px #ffffff,
		-2px 0px 5px #ffffff,
		0px -2px 5px #ffffff;
}

h2 {
	margin: 0 0 20px -5px;
	margin-bottom: 10px;
	padding-left: 10px;
	font-size: 22px;
	border-bottom: 1px solid #17469b;
	border-left: 8px solid #17469b;
}

h3 {
	margin: 0 0 10px -5px;
	padding: 3px 0 3px 10px;
	font-size: 20px;
	background-color: #edf0f8;
}

/*--------------------------------------
	contents
--------------------------------------*/
.btn {
	box-sizing: border-box;
	display: block;
	margin: 0 auto 30px;
	width: 205px;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: #17469b;
	border: 1px solid #17469b;
	border-radius: 10px;
	font-size: 16px;
}

#visual {
	margin: 50px 0 20px;
	height: 150px;
	background: url(/img/2nd_visual.jpg) no-repeat right 25%, #edf0f8;
	background-size: cover;
}
#visual h1 {
	margin: auto;
	width: 100%;
	height: 90px;
	padding: 60px 0 0 10px;
	line-height: 1.3em;
	box-sizing: border-box;
}


.guidance {
	margin-bottom: 30px;
	font-size: 18px;
}

.guidance img ,
.guidance figure , /* 仮の画像枠。画像入れたらこのセレクタは消す */
.guidance figure div , /* 仮の画像枠。画像入れたらこのセレクタは消す。下のimportantの文言も消す */
main section img.left {
	float: none;
	margin: 0;
	width: 100%!important;
}

main section dl dt ,
main section dl.medium dt ,
main section dl.long dt {
	display: block;
	float: none;
	width: auto;
	padding: 3px 0 0px 10px;
	text-align: left;
	border-top: none;
}

main section dl dd ,
main section dl.medium dd ,
main section dl.long dd {
	margin-left: 0;
	padding: 7px 10px;
}


.banner_inquiry {
	display: block;
	margin-bottom: 30px;
	padding: 20px;
	color: #fff;
	text-decoration: none;
	background-color: #17469b;
	border-radius: 20px;
}

.banner_inquiry b {
	display: block;
	margin-bottom: 10px;
	text-align: center;
	font-size: 22px;
}

.top_btn {
	position: fixed;
	right: 20px;
	bottom: 25px;
	width: 45px;
	height: 45px;
	font-size: 14px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 30px;
	background: #17469b;
}
.top_btn::before {
	position: relative;
	top: 8px;
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg);
}

.top_btn p {
	position: relative;
	bottom: 5px;
}


/*--------------------------------------
	footer
--------------------------------------*/
footer {
	padding-top: 10px;
	color: #fff;
	background: #17469b;
}

footer .contents {
	margin: 0 10px;
}

footer .contents > img {
	margin: 0 3% 0 0;
	width: auto;
	max-width: 41%;
	height: 105px;
	object-fit: scale-down;
}

footer .contents > div {
	margin-bottom: 40px;
}
footer .contents > div::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
footer .contents div p {
	float: left;
	margin: 0 0 15px 0px;
	width: 53%;
	padding: 5px 0 8px 1%;
	font-size: 26px;
	letter-spacing: 0.1em;
	border-bottom: 2px solid #fff;
}

footer address ,
footer address + span {
	font-size: 18px;
	font-style: normal;
}

footer address {
	clear: both;
}

footer address span img {
	margin-right: 10px;
	width: 40px;
	height: 40px;
	vertical-align: middle;
}

footer address span {
	display: block;
	margin-bottom: 20px;
}

footer address .tel,
footer address .fax {
	text-align: center;
}

footer address .btn {
	display: block;
	margin-bottom: 10px;
	width: 80%;
	text-align: center;
	color: #17469b;
	border: 1px solid #fff;
	background: #fff;
}
footer .hours {
	clear: both;
	display: block;
	text-align: center;
	font-size: 16px;
}
footer .copyright {
	clear: both;
	margin: 20px auto 0;
	padding: 5px 0;
	text-align: center;
	border-top: 1px solid #fff;
}
