@charset "UTF-8";

/* Mediaquery 
PC Only 1151px～
Tablet big 861～1150
Tablet small 601～860
Smartphone ～600
*/


/*=============================================================
　header rayout SP
=============================================================*/

@media only screen and (max-width: 640px) {


#header {
	position: relative;
}
.default-header {
	width: 100%;
}
.sticky-header {
    display: none;
}


header {
	background: #fff;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
header div.headerinner {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
header div.headerinner figure.logo {
	width: 100%;
}


}


/*=============================================================
　header rayout PC
=============================================================*/

@media only screen and (min-width: 1000px) {


#header {
	position: relative;
}
.default-header {
	width: 100%;
	height: 100px;
	border-top: 10px solid #0c1a40;
}
.sticky-header {
    position: fixed;
    transition: 0.5s;
    width: 100%;
    height: 90px;
    z-index: 9999;
    background: #fff;
}
div.headerinner {
	width: 1000px;
	margin: 0 auto;
	padding: 0;
	height: 100px;
	position: relative;
}
div.default-header div.headerinner figure.logo {
	width: 200px;
	position: absolute;
	top: 0;
	left: 0;
}
div.headlinkbox {
	width: 460px;
	float: right;
}
div.default-header div.headerinner p.tellink {
	font-size: 11px;
	font-weight: normal;
	line-height: 2.0;
	letter-spacing: 1px;
	text-align: center;
	width: 230px;
	float: left;
	margin-top: 12px;
}
div.default-header div.headerinner p.tellink i {
	padding-right: 5px;
	font-size: 16px;
	transform: translateY(-2px);
}
div.default-header div.headerinner p.tellink span {
	font-size: 22px;
	font-weight: bold;
}
div.default-header div.headerinner p.weblink {
	width: 220px;
	float: right;
	margin-top: 17px;
}
div.default-header div.headerinner p.weblink a {
	display: block;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.0;
	letter-spacing: 1px;
	text-align: center;
	border-radius: 50px;
	line-height: 50px;
	border: 1px solid #ff8111;
	color: #ff8111;
	width: 100%;
	padding: 0;
}
div.default-header div.headerinner p.weblink i {
	padding-right: 5px;
}
div.default-header div.headerinner p.weblink a:hover {
	border: 1px solid #ff8111;
	color: #fff;
	background: #ff8111;
}
div.default-header div.headerinner p.stickeytitle {
	width: 400px;
	float: left;
	font-size: 14px;
	line-height: 1.5;
	font-weight: bold;
	margin-top: 23px;
}

div.sticky-header div.headerinner p.tellink {
	font-size: 11px;
	font-weight: normal;
	line-height: 2.0;
	letter-spacing: 1px;
	text-align: center;
	width: 230px;
	float: left;
	margin-top: 12px;
}
div.sticky-header div.headerinner p.tellink i {
	padding-right: 5px;
	font-size: 16px;
	transform: translateY(-2px);
}
div.sticky-header div.headerinner p.tellink span {
	font-size: 22px;
	font-weight: bold;
}
div.sticky-header div.headerinner p.weblink {
	width: 220px;
	float: right;
	margin-top: 17px;
}
div.sticky-header div.headerinner p.weblink a {
	display: block;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.0;
	letter-spacing: 1px;
	text-align: center;
	border-radius: 50px;
	line-height: 50px;
	border: 1px solid #ff8111;
	color: #ff8111;
	width: 100%;
	padding: 0;
}
div.sticky-header div.headerinner p.weblink i {
	padding-right: 5px;
}
div.sticky-header div.headerinner p.weblink a:hover {
	border: 1px solid #ff8111;
	color: #fff;
	background: #ff8111;
}
div.sticky-header div.headerinner p.stickeytitle {
	width: 400px;
	float: left;
	font-size: 14px;
	line-height: 1.5;
	font-weight: bold;
	margin-top: 23px;
}

}



/*=============================================================
　header rayout TABLET
=============================================================*/

@media only screen and (min-width: 641px) and (max-width:999px) {


#header {
	position: relative;
}
.default-header {
	width: 100%;
	height: 20px;
	background: #0c1a40;
}
.sticky-header {
    display: none;
}
div.headerinner {
	width: 95%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
div.default-header div.headerinner figure.logo {
	width: 24%;
	position: absolute;
	top: 0;
	left: 0;
}


}



/* ===================================================== */
/* ===================================================== */
/* ========== スマホ用プルダウンメニュー機能追加 ここから ========== */
/* ===================================================== */
@media only screen and (max-width: 640px) {
/* ===================================================== */
/* ===================================================== */

section.topimg {
	padding-top: 2.75rem;
}
header {
	position: fixed !important;
	z-index: 9998;
	background: rgb(46,167,224);
}
header figure {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
header figure::after {
	content: '';
	width: 2.75rem;
	height: 2.75rem;
	background: url(../img/sp_menu.svg) center center no-repeat;
	background-size: contain;
}
header figure img {
	display: block;
	width: auto;
	height: 2.75rem;
}

.gnav ul {
	margin: 0;
	padding: 4rem 0 0 0;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 9999;
	background: rgba(0,0,0,0.75);
	width: 100%;
	height: 100vh;
	transition: .5s;
}
.gnav input:checked + ul {
	left: 0;
}
.gnav ul::before {
	content: '';
	width: 2.75rem;
	height: 2.75rem;
	background: url(../img/sp_close.svg) center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right: 0;
}
.gnav ul li a {
	display: block;
	color: white;
	margin: 0.5rem 10vw;
	padding: 0.75rem 0;
	letter-spacing: 0.25em;
}
.gnav input[type=checkbox] {
	position: fixed;
	top: 1rem;
	right: 1rem;
	transform: scale(3);
	z-index: 10000;
	opacity: 0;
}

/* ===================================================== */
/* ===================================================== */
}
/* ===================================================== */
/* ========== スマホ用プルダウンメニュー機能追加 ここまで ========== */
/* ===================================================== */
/* ===================================================== */
