/* リセット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: 30vw;
}

header>div.title>a {
	height: 14vh;
	width: 30vw;
	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;
}

div.jump {
    height: 14vh;
    width: 70vw;
}

div.jump>ul {
    height: 14vh;
    width: 70vw;
}

div.jump>ul>li {
    line-height: 14vh;
    font-weight: bold;
    font-size: 2.4em;
    color: navy;
	width: 50%;
	transition: 0.2s;
	float: right;
}

div.jump>ul>li :hover {
	color: #fff;
    -webkit-text-stroke: 0.05em navy;
}

div.hum_menu {
	display: none;
}

.hide {
    display: none;
}

/* 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;
}