@charset "UTF-8";

/* !HTML5 elements
---------------------------------------------------------- */
header, footer, nav, section, aside, article
{ display: block;}

/* !Reseting
---------------------------------------------------------- */
html{
  scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	line-height: 1.5;
	color: #2b2b2b;
	font-weight: 500;
	text-align: justify !important;
	text-justify: inter-ideograph;
}

body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td
{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
input, textarea
{ margin: 0; font-size: 100%;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ vertical-align: middle; max-width: 100%;}
address, caption, cite, code, dfn, em, var
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6
{ font-size: 100%; font-weight: normal;}
q:after, q:before
{ content:'';}
a, input
{ /* outline: none; */ }
abbr, acronym
{ border: 0;}


input,button,textarea{-webkit-appearance:none;outline:none;border:none;background:none;border-radius: 0}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
	display: block;
	min-height: 1%;
}
.clearfix:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}
* html .clearfix {
	height: 1%;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
/* !Layout
---------------------------------------------------------- */
html { overflow-y: scroll;}
body { }
@media print {
	html,
	html body { *zoom: 0.65;}
}

/* !Base Fonts
---------------------------------------------------------- */
a {
	color: #2b2b2b;
	text-decoration: none;
	transition: all 0.5s !important;
	-moz-transition: all 0.5s !important; /* Firefox */
	-webkit-transition: all 0.5s !important; /* Chrome&Safari */
}


.op,
.op img,
.op input {
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;	
}


.fwn { font-weight: normal;}
.fwb { font-weight: bold;}


/* !Floats
---------------------------------------------------------- */
.flL    { float: left;}
.flR    { float: right;}
.ftBox  { overflow: hidden; *zoom: 1;}


/* !JavaScript
---------------------------------------------------------- */
.over { /* ロールオーバー呼び出し用 */ }


.visiblePC {
	display: block;
}
.visibleTS {
	display: none;
}
@media screen and (max-width: 767px) {
.visibleTS {
	display: block;
}
.visiblePC {
	display: none;
}
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	overflow: hidden;
	background: #f4f5f7;
}

.inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}
@media screen and (max-width: 1080px) {
.inner {
	padding: 0 60px;
}
}

@media screen and (max-width: 767px) {
.inner {
	padding: 0 20px;
}
}


/* !header
---------------------------------------------------------- */
#header {
	padding: 15px 0;
	background: #fff;
	position: fixed;
	z-index: 1000;
	width: 100%;
}
#header .headerin {
	display: flex;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	align-items: center;
}
#header .headerbox {
	display: flex;
}
#header .headerlogo {
	display: block;
	width: 250px;
}

#header .headermenu{
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.headerbtn,.headerbtn-tab,.navbtn{
	display: flex;
	background: #e2c50a;
	box-shadow: 0 4px 0 rgba(193,167,0,0.3);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	transition: color .3s, background .3s, box-shadow .3s, transform 0.3s;
}


.mainimgbtn{
	justify-content: center;
	width: 50%;
	margin:20px 0 20px auto;
}

.ctabtn,.navbtn{
	justify-content: center;
	width: 300px;
	margin: 30px auto;
}

.headerbtn a,.headerbtn-tab a ,.navbtn a{
	display: block;
	font-size: 18px;
	font-weight: 700;
	padding: 20px 20px;
	color: #4B4B4B;
}



.mainimgbtn a{
	color: #4B4B4B;
}
.headerbtn:hover{
	color: #fff;
	background-color: #EFD112;
	box-shadow: 0 2px 0 rgba(193,167,0,0.3);
	transform: translateY(2px);
	transition-duration: .1s;
}

.headerbtn:active{
	color: red;
	box-shadow: 0 0 0 rgba(193,167,0,0.3);
	transform: translateY(4px);
	transition-duration: .1s;
}


.headerbtn a img {
	margin-left: 15px;
	transform: translateY(-2px);
}

.nav-wrap{
	display: flex;
	margin-right: 10px;
}

.nav-wrap li{
	margin: 20px;
}

.nav-wrap li a{
	font-size: 16px;
	color: #002162;
	position: relative;
	display: inline-block;
}

.nav-wrap li a:after{
	position:absolute;
	bottom: -5px;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background:#002162;
	transform: scale(0,1);
	transform-origin: center top;
	transition: transform .3s;
}

.nav-wrap li a:hover::after{
	transform: scale(1,1);
}

.nav_toggle {
    display: none;
    position: relative;
    width: 1.75rem;
    height: 1.5rem;
    z-index: 1000;
}
.nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
    top: 0;
}
.nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.nav_toggle i:nth-child(3) {
    bottom: 0;
}

.nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
    opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    z-index: 999;
    background: #fff;
    padding: 200px 60px;
    text-align: center;
}

.nav.show {
    opacity: 1;
    visibility: visible;
}

.nav_menu_li{
	font-size: 24px;
	margin-bottom: 30px;
}

.nav_menu_ul li a{
	color: #002162;
	position: relative;
	display: inline-block;
}

.nav_menu_ul li a:after{
	position:absolute;
	bottom: -5px;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background:#002162;
	transform: scale(0,1);
	transform-origin: center top;
	transition: transform .3s;
}

.nav_menu_ul li a:hover::after{
	transform: scale(1,1);
}

@media screen and (max-width: 768px) {
#header {
	padding: 15px 0;
}

#header .headerin {
	padding: 0 20px;
}
#header .headerlogo {
	max-width: 200px;
}

#header .headerbtn a {
	font-size: 12px;
	text-align: center;
	padding: 20px 15px;
}
#header .headerbtn a img {
	max-width: 18px;
	margin-right: 10px;
}

.mainimgbtn{
	justify-content: center;
	width: 60%;
	margin:20px auto;
}
#header .headerbtn{
	display: none;
}

.nav-wrap{
	display: none;
}

.nav_toggle{
	display: block;
}

}


/* !footer
---------------------------------------------------------- */
#footer {
	background: #064d8f;
	padding: 55px 0;
	margin-top: 100px;
}
#footer .footerin {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}
#footer .footerbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}
#footer .footerbox a {
	color: #fff;
	display: inline-block;
}
#footer .footercont {
	display: flex;
	align-items: center;
}
#footer .footercopy {
	font-size: 12px;
	padding-left: 25px;
}
#footer .footerlink {
	text-align: center;
	font-size: 12px;
}
#footer .footerlink a+a {
	margin-left: 30px;
}

@media screen and (max-width: 1080px) {
#footer {
	padding: 30px 0;
}
#footer .footerin {
	padding: 0 60px;
}
#footer .footerbox {
	display: block;
}
#footer .footercont {
	justify-content: center;
}
#footer .footercopy {
	font-size: 12px;
	padding-left: 20px;
}
#footer .footerlink {
	margin-top: 30px;
}
}

@media screen and (max-width: 767px) {
#footer {
	padding: 25px 0;
}
#footer .footerin {
	padding: 0 20px;
}
#footer .footercont {
	display: block;
}
#footer .footerlogo {
	text-align: center;
	margin-bottom: 15px;
}
#footer .footerlogo img {
	max-width: 50%;
}
#footer .footercopy {
	font-size: 10px;
	padding-left: 0;
	text-align: center;
}
#footer .footerlink {
	margin-top: 30px;
	font-size: 10px;
}
#footer .footerlink a+a {
	margin-left: 0;
}
#footer .footerlink a {
	padding: 0 10px;
}
}


/* !H
---------------------------------------------------------- */
.hdl {
	text-align: center;
	color: #002162;
	font-size: 25px;
	line-height: 1.6;
	font-weight: 700;
	margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
.hdl {
	font-size: 20px;
}
}

.hdm {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	color: #002162;
}

@media screen and (max-width: 767px) {
.hdm {
	font-size: 18px;
}

}



@media screen and (max-width: 1080px) {
	
}

@media screen and (max-width: 767px) {
	
}

@media screen and (max-width: 479px) {
	
}

