/* リセットCSS等 */

@charset "UTF-8";
html {
	overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, header, main, footer {
	margin: 0px;
	padding: 0px;
}

body {
	background: #fff;
	text-align: center;
	font-size: 62.5%;
	line-height: 1.4;
	min-width: 100%;
	-webkit-text-size-adjust: 100%;
}

li {
	list-style: none;
}

a {
	outline: none;
	color: inherit;
	text-decoration: none;
}

img {
	border: 0px;
	vertical-align: bottom;
}

* {
	font-family: sans-serif;
    box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/* ヘッダー */

header {
    height: 14vh;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 2;
    display: flex;
    border-top: #000 0.2em solid;
	border-bottom: #000 0.2em solid;
	background-color: #fff;
}

header>div.title {
	height: 14vh;
    width: 100vw;
}

header>div.title>a {
	height: 14vh;
	width: 100vw;
	line-height: 14vw;
}

header>div.title>a>h1 {
    height: 6vh;
    line-height: 6vh;
	font-size: 3.6em;
}

header>div.title>a>p {
	font-size: 1.6em;
    height: 4vh;
    line-height: 4vh;
	color: navy;
	font-weight: bold;
}

header>div.jump {
    display: none;
}

header .hum_menu {
	position: absolute;
	right: 0px;
	top: 0px;
}

header .hum_menu a {
	display: block;
	height: 4.0em;
	padding: 1.0em 0;
	width: 4.0em;
	background: #eeeaec;
	text-align: center;
}

header .hum_menu span {
	display: block;
	width: 2.0em;
	height: 0.2em;
	background: #aaa;
	margin: 0.3em auto;
}

.hide {
    display: none;
}

.navy_container {
    height: 86vh;
    width: 100vw;
    position: fixed;
    top: 14vh;
    z-index: 2;
    background-color: #e7e5de;
}

div.navy_body>ul {
    height: 86vh;
    padding: 13vh;
}

div.navy_body>ul>li {
    height: 20vh;
}

div.navy_body>ul>li>a {
    font-size: 2.4em;
    font-weight: bold;

}

/* FAQ */

main {
	width: 60vw;
	margin: 15vh auto 0 auto;
}

main>h2 {
	height: 7.5vh;
    line-height: 7.5vh;
    font-size: 3.0em;
	padding-bottom: 10vh;
	border-bottom: 2px #ddd solid;
}

div.box_wrapper {
	display: flex;
	flex-direction: column;
}

div.box {
	font-size: 2.0em;
	text-align: left;
	display: flex;
	flex-direction: column;
	padding: 2.5vh 0;
	border-bottom: 2px #ddd solid;
}

div.q {
	display: flex;
}

div.a {
	display: flex;
}

button {
	margin-top: 3vh;
	color: #fff;
	background-color: navy;
	font-size: 2.0em;
}

/* フッター */

footer>div.footer_text {
	height: 15vh;
	width: 100vw;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	font-size: 1.6em;
}

/* モーダルコンテンツ */

div.modal-content {
	font-size: 1.6em;
}