﻿@charset "utf-8";
@font-face {
	font-family: "iconFont";
	src: url("../fonts/iconFont.eot?#iefix") format("eot");
	src: url("../fonts/iconFont.woff") format("woff"), url("../fonst/iconFont.ttf") format("truetype"), url("../fonts/iconFont.otf") format("opentype");
}
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, address, em, img, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, article, aside, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}
article, aside, footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
	font-size: 62.5%;
	/*overflow-y:scroll;*/
	scroll-behavior: smooth;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*, ::after, ::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
body {
	background-color: #fff;
	line-height: 1.5;
	/*-webkit-text-size-adjust:100%;*/
	font-family: /*"YuGothicM",
	"Yu Gothic Medium",*/
	"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: normal;
	letter-spacing: 0.08rem;
}

header, footer{
	display:none!important;
}
/*
html {
	font-size: 90%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*, ::after, ::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    color: #000;
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}*/

ul, ul li{
	list-style: none;
}
figure {
    width: 100%;
    text-align: center;
    margin: 1em auto;
}
figure figcaption {
    font-size: 1.7rem;
    margin: 1em auto 2em;
}
figure img{
    width: 100%;
}
/******************
			header
*******************/

header {
	/*position: relative;*/
	width: 100%;
	z-index: 0;
    padding: 25px 1.6rem;
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 img {
    width: 60px;
    height: auto;
    vertical-align: middle;
}
/* navigation */
.button_container {
    position: fixed;
	top: 14px;
    right: 2rem;
    height: 27px;
    width: 35px;
    cursor: pointer;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    z-index: 300;
}
.button_container:hover {
    opacity: .7;
}

.button_container.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}
.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
.button_container.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.button_container span {
    background: #555;
    border: none;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2) {
    top: 11px;
}
.button_container span:nth-of-type(3) {
    top: 22px;
}
.overlay {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
    z-index: 100;
}
.overlay.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
}
.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}
header .overlay.open #nav li a{
		color:#FFF;
}
.overlay nav {
    position: relative;
    height: 60%;
    top: 50%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
    font-size: 3.0rem;
    text-align: center;
}
.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
}
header .overlay ul li {
    display: block;
    height: 20%;
    height: calc(100% / 5);
    min-height: 50px;
    position: relative;
    opacity: 0;
}
.overlay-menu a {
    display: block;
    color: #ffffff;
	text-decoration: none;
	font-weight: normal;
	font-size:80%;
	border-bottom: 1px solid #555;
	padding: 0.5em 0;
}
.overlay-menu a:hover {
    color: #eeeeee;
	background-color: rgba(104,104,104,0.50);
}


/*page to top*/
.utility {
    position: fixed;
    bottom: 70px;
    z-index: 210;
    right: 15px;
	display: none;
}
.btn.btn-pagetop {
    text-indent: -9999px;
    width: 40px;
    height: 40px;
    border: 1px solid #aaa;
    position: relative;
	background-color: rgba( 255, 255, 255, 0.6 );
}
.btn.btn-pagetop::after {
    content: '';
    display: inline-block;
    border-top: 1px solid #666;
    border-right: 1px solid #666;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 4px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/*footer*/
footer{
	font-size: 80%;
}
#footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 200;
	padding: 5px;
	background: #000000;
}

.wrap-inner {
    width: auto;
    margin: 0 auto;
    padding: 0 10px;
	text-align: center;
}
.footer__main .footer_copy {
    display: inline-block;
	margin: 0 auto;
    vertical-align: middle;
}
.footer__main {
    background-color: #000;
    color: #fff;
    padding: 1em 0 0.5em;
    position: relative;
	overflow: hidden;
}
.footer__main .footer_links{
	margin-bottom: 1em;
}
.footer__main .footer_links li + li {
    padding-left: 1.5em;
    border: none;
}
.footer__main .footer_links li {
    margin-right: 5px;
    border: none;
    display: block;
    /*margin-bottom: 0.8em;*/
}
.footer__main .footer_links a {
    display: inline-block;
    position: relative;
	color:#FFF;
}
.footer__main .footer_links a:after {
	content: '\e600';
	font-family: 'iconFont';
	font-size: 100%;
	margin-left: 4px;
}
#footer small {
    text-align: center;
    display: block;
}

#contents {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 3em 0;
	text-align: left;
	overflow: hidden;
}
#scroll {
	width: 500px;
	height: 200px;
	margin:0 auto;
	overflow: scroll;
}

/* contents area css */
#topcover{
	margin: 0 auto;
}
#topcover img{
	width: 100%;
}

section img{
	max-width: 100%;
	margin: 0 auto;
}
section .row_img img{
	width: 100%;
}
section {
	padding:2em 0 2em 0;
	margin: 0;
	position: relative;
	text-align: center;
}
section h2{
	font-weight:500;
	font-size:190%;
	padding: 0 6px;
	text-align: left;
}
section h3{
	font-size:140%;
	font-weight:600;
	border-bottom: 1.5px solid #aaa;
	padding: 0 8px;
	text-align: left;
}
section h3 .note{
	font-size:80%;
	padding-left: 1em;
}
section p{
	padding: 0.8em 10px 3em;
	text-align: left;
}
section p .note{
	font-size: 85%;
}
section p sup{
	font-size: 70%;
}
section table td, section table th{
	margin: 2px;
	padding: 0.5em;
	border: 2px solid #fff;
	font-size: 80%;
}
section table td.image, section table th.image{
	margin: 0;
	padding: 0;
}
section table td.image img{
	width: 100%;
	margin-top: 4em;
}
section table td{
	text-align: center;
}
section table th{
	background-color: #dce5f7;
	width: 12%;
}
section table th.normal{
	background-color: #6472fa;
	color: #fff;
	text-align: center;
	width: 40%;
}
section table th.jvc{
	background-color: #fd4254;
	color: #fff;
	text-align: center;
	width: 40%;
}
section table td.normal{
	background-color: #c3c9fe;
	color: #000;
}
section table td.jvc{
	background-color: #fdcdd2;
	color: #000;
}
section table th.space, section table td.space{
	background-color: #fff;
}
section table.picturetone th{
	width: 20%;
}
section table.picturetone td{
	background-color: #c3c9fe;
	width: 20%;
}
section table.picturetone td.image{
	background-color: #fff;
}
section table.picturetone td.image img{
	margin: 0;
}
em{
	font-size:90%;
	font-weight: 300;
	padding: 0.5em;
	text-align: left;
	margin: 0 0.5em;
}
em.question{
	display: block;
	color: #ffffff;
	background-color: #6472fa;
	width: 97%;
	margin-bottom: 0.5em;
}
em.answer{
	display: block;
	color: #ffffff;
	background-color: #fd4254;
	width: 97%;
	margin-bottom: 0.5em;
}
.element_group{
	display: block;
	position: relative;
	overflow: hidden;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
.element_group p{
	width: 50%;
	float: left;
	background-color: #dce5f7;

	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	border: 4px solid #ffffff;
	line-height: 1.2;
	
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
	align-items: center; /* 縦方向中央揃え */
	-webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
	justify-content: center; /* 横方向中央揃え */
	
	padding: 1em 4px;
}

p.element{
	background-color: #dce5f7;
	text-align: center;
	margin: 0.5em 4px 0 4px;
	padding: 1em 0;
}

img.pc{display: none;}
img.sm{display: block;}

/* 調整 */
.mt1{margin-top: 1em;}
.mt2{margin-top: 3em;}
.mt3{margin-top: 3em;}
.mt4{margin-top: 4em;}
.mb1{margin-bottom: 1em;}
.mb2{margin-bottom: 2em;}
.mb3{margin-bottom: 3em;}
.mb4{margin-bottom: 4em;}
/* 調整 */


@media (min-width: 580px) {
	.col-sm-4 {
		width: 33.3333%;
		float: left;
	}
	section table td, section table th{
		font-size: 110%;
	}
	img.pc{display: block;}
	img.sm{display: none;}
}
@media (min-width:768px) {

body {
	font-size: 16px;
	font-size: 1.6rem;
}
header h1 img {
   width: 80px;
   height: 31px;
}
header .overlay ul li {
	opacity: 1;
	min-height: 0;
	display: inline-block;
	margin-left: 2rem;
	
}
.button_container {
		display: none;
}
.overlay {
		visibility: inherit;
		opacity: 1;
		overflow: inherit;
		position: static;
		width: auto;
		background: transparent;
}
.overlay nav {
	height: auto;
	transform: translateY(0);
	font-size: 1.8rem;
	text-align: left;
	color: #000;
}
.overlay-menu a {
    font-size:100%;
}
/* navigation */
.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
.navi.fixed ul li a{
	font-size: 80%;
	padding: 6px 0;
	margin: 0;
}
.navi{
	width: 100%;
	background:#333;
	overflow: hidden;
	border-bottom: 1px solid #ffffff;
}
.navi ul{
	display: block;
	margin: 0 auto;
	width: 100%;
}
.navi ul li a{
    background:#666;
    width: 33.333%;
    float: left;
    padding:0.5em 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid #777;
    box-sizing: border-box;
}
.navi ul li a.active{
	background:#222;
}
.navi ul li a:hover{
    background:#333;
}
	
.footer__main {
	font-size:90%;
}
.footer__main .footer_copy {
    display: block;
    margin-left: 15px;
    vertical-align: middle;
	float: left;
}
.footer__main .wrap-inner ul {
    float: right;
}
.footer__main .footer_links li {
    display: inline-block;
    float: left;
	margin: 0;
	padding: 0;
}
.utility {
    bottom: 70px;
}

#contents {
	padding: 2em 0 3em 0;
}
.section {
	padding:2em 0 0 0;
	margin: 0;
}
em{
	font-size:100%;
	font-weight: bold;
	padding: 1em 0.5em;
	text-align: center;
	margin: 0 auto 1em auto;
}
em.question{
	width: 80%;
}
em.answer{
	width: 80%;
}
.element_group p{
	width: 25%;
	padding: 1em 4px;
}
}
@media (min-width:992px) {
.navi ul{
	width: 980px;
}
#topcover{
	width: 980px;
	margin: 0 auto;
}	
#contents{
	width: 980px;
	margin: 0 auto;
}

	
}
