@charset "UTF-8";

*, *::before, *::after {
	box-sizing: border-box;
	color: #000000;
}
html {
	height: 100%;
	font-size: 62.5%; /* 10px */
}
body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	margin: auto;
	font-size: 14px;
	font-size: 1.4rem;
	position: relative;
	color: #000;
	background-color: #fff;
	font-family: 'Noto Sans JP', helvetica, arial, YuGothic, 'Yu Gothic', 'メイリオ', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	word-break: break-word;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	z-index: 0;
	line-height: 1;
}
body * {
	z-index: 0;
}
img {
	width: 100%;
	height: auto;
}
a {
    text-decoration: none;
	pointer-events: auto;
}
a:hover {
    opacity: 0.5;
    transition: 0.5s;
}
header, footer, main {
    width: 100%;
}
article {
    width: 100%;
    height: auto;
    position: relative;
	padding: 50px 0;
}
article>section {
    max-width: 1200px;
	min-width: 1024px;
    width: 80%;
    margin: 0 auto;
	position: relative;
}

.flex {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
}
.flex-c {
	display: flex;
	justify-content: center;
	align-items: center;	
}

.big {
	color: inherit;
	font-size: 1.5em;
}
.small {
	color: inherit;
	font-size: 0.75em;
}

.button {
	position: relative;
	display: block;
	width: 400px;
	padding: 20px 40px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	color: #005884;
	font-size: 1.4rem;
	cursor: pointer;
}
.button::after {
	content: '';
	position: absolute;
	right: 5px;
	bottom: 5px;
	display: block;
	width: 12px;
	height: 12px;
	background: url("../img/button-marker.png") center center no-repeat;
	background-size: contain;
}

.pc {
	display: inherit;
}
.sp, .tab {
	display: none;
}

@media screen and (max-width: 1024px){
	.tab {
		display: inherit;
	}
	article>section {
		max-width: 1024px;
		min-width: 768px;
	}
}
@media screen and (max-width: 768px){
	.pc {
		display: none;
	}
	.sp {
		display: inherit;
	}
	article>section {
		max-width: 768px;
		min-width: unset;
		width: 90%;
	}
	.button {
		width: 90%;
	}
}

/* header --------------------------------------- */
header {
    height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: url(../img/hd-bg.jpg) center center no-repeat;
	background-size: cover;
}
header.open {
	height: 120px;
	transition: 0.3s;
}

header section {
    width: 80%;
    margin: 0 auto;
	position: relative;	
}
.header-left, .header-right {
    height: 60px;
	position: relative;
	display: flex;
	align-items: center;
}
.header-left a {
	height: 35px;
	width: auto;
}
.header-left img {
	height: 100%;
	width: auto;
}
.header-right {
	position: relative;
}

header p.btn-gnavi, header p.btn-gnavi-non {
	position: absolute;
	width: 40px;
	height: 40px;
	background: #fff;
	z-index: 3;
	cursor: pointer;
	-webkit-transition: all 200ms;
	transition: all 200ms;
}
header p.btn-gnavi {
	top: 10px;
	right: 0px;
}
header p.btn-gnavi-non {
	top: 10px;
	right: 60px;
}
header p.btn-gnavi span {
	position: absolute;
	left: 10px; /* (50-30)/2 */
	width: 20px;
	height: 2px;
	background: #00a5e3;
	border-radius: 10px;
	-webkit-transition: all 200ms;
	transition: all 0.4s;
}
header p.btn-gnavi.open span {
}
header p.btn-gnavi span:nth-child(1) {
	top: 12px;
}
header p.btn-gnavi span:nth-child(2) {
	top: 20px;
}
header p.btn-gnavi span:nth-child(3) {
	top: 28px;
}
header p.btn-gnavi.open span:nth-child(1) {
	transform: rotate(45deg);
	top: 20px;
}
header p.btn-gnavi.open span:nth-child(2) {
	display: none;
}
header p.btn-gnavi.open span:nth-child(3) {
	transform: rotate(-45deg);
	top: 20px;
}
header p.btn-gnavi-non img {
	width: 25px;
	line-height: 45px;
}

header nav {
	position: absolute;
	top: -400px;
	left: 0;
	width: 100%;
	height: 60px;
	font-size: 14px;
	z-index: 2;
}
header nav ul {
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
header nav ul a {
	display: inline-block;
}
header nav ul li {
	color: #fff;
	display: list-item;
	margin-left: 0;
	padding: 20px 0 0 40px;
}

/* footer --------------------------------------- */
footer {
	padding: 50px 0;
	background: #005884;
}
footer * {
	margin: 0 auto;
	color: #fff;
	text-align: center;
}
footer section>a {
	display: block;
	width: 100px;
	margin-bottom: 35px;
}
footer section>a[target="_blank"] {
	width: 140px;
	margin-bottom: 50px;
}
footer a img {
	width: 100%;
}
footer ul {
	width: 30%;
	margin: 0 auto 35px;
	display: flex;
	justify-content: space-between;
}
footer ul li {
	display: inline-block;
	font-size: 1.2rem;
}
footer p#copyright {
	font-size: 1rem;
}

@media screen and (max-width: 1024px){
	footer ul {
		width: 40%;
		min-width: 400px;
	}
}
@media screen and (max-width: 768px){
	header.open {
		height: 150px;
	}
	header section {
		width: 90%;
	}
	header nav ul {
		justify-content: space-between;
	}
	header nav ul li {
		padding: 20px 0 0 0;
	}
	header nav {
		height: 90px;
		padding-top: 20px;
	}
	footer ul {
		width: 80%;
		min-width: unset;
	}
}
@media screen and (max-width: 499px){
	br.tab {
	}
}