@charset "utf-8";
/* CSS Document */


/* ----------------------------------------------------
   Basic setting:
------------------------------------------------------- */

/* reset:
--------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul,ol {list-style: none;}
i,em,address {font-style: normal;}


/* Basic
--------------------------------------------*/

html {font-size: 18px;}
@media screen and (max-width: 1280px){
	html {font-size: 17px;}
}

body {
	font-family: "Noto Sans JP","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	line-height: 1.5em;
	color: #333;
	position: relative;
	font-weight: 400;
}

.pc {display: block;}
.sp {display: none;}

/*---- reset css ----*/
input[type="text"],input[type="submit"] {
border-radius: 0;
}


/* Utility
--------------------------------------------*/

/*---- link button ----*/

/*-- link --*/

a {color: #333;text-decoration: none;transition: all 300ms 0s ease;}
a:focus-visible,
input:focus-visible,
button:focus-visible {outline: 2px #333 solid;}

main a {text-decoration: underline;}
main a:hover {text-decoration: none;}

/*-- button --*/

button {border: none;background: none;transition: all 300ms 0s ease;}
button:hover {cursor: pointer;}

.outline:after {
	content:" ";
    display: block;
    height:0px;
    clear:both;
    visibility:hidden;
}

/*---- .align ----*/

.align_c { text-align: center!important; }
.align_l { text-align: left!important; }
.align_r { text-align: right!important; }
.valign-m { vertical-align: middle !important; }
.valign-t { vertical-align: top !important; }
.valign-b { vertical-align: bottom !important; }

/*---- .margin ----*/
.mg_0 { margin: 0!important; }
.mg_1 { margin: 1em!important; }
.mg_2 { margin: 1em!important; }
.mg_t0 { margin-top: 0rem!important; }
.mg_t1 { margin-top: 1rem!important; }
.mg_t2 { margin-top: 2rem!important; }
.mg_t3 { margin-top: 3rem!important; }
.mg_b0 { margin-bottom: 0!important; }
.mg_b1 { margin-bottom: 1em!important; }
.mg_b2 { margin-bottom: 2em!important; }
.mg_b3 { margin-bottom: 3em!important; }
.mg_l1 { margin-left: 1em!important; }
.mg_r1 { margin-right: 1em!important; }

/*---- number ----*/

.num {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 105%;
}

/*---- color ----*/

.red {
	color: #CF413C;
}

/*---- icon ----*/

img.icon {
    margin: 0 7px 3px;
    vertical-align: middle!important;
    width: 16px;
}

/*---- nowrap ----*/

.nowrap{
	white-space: nowrap; 
}

/*---- .width ----*/

.w10 { width: 10%; }
.w20 { width: 20%; }
.w25 { width: 25%; }
.w30 { width: 30%; }
.w33 { width: 33%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }
.w90 { width: 90%; }
.w100 { width: 100%; }

.w100_sp70 { width: 100%; }

/*---- grid system ----*/

.grid {
	display: grid;
	grid-gap: 1.5rem;
}

.clm2{
	grid-template-columns: repeat(2,1fr);
}
.clm3{
	grid-template-columns: repeat(3,1fr);
}
.clm4{
	grid-template-columns: repeat(4,1fr);
}
.clm5{
	grid-template-columns: repeat(5,1fr);
}
.clm6{
	grid-template-columns: repeat(6,1fr);
}
.clm1-2 {
  grid-template-columns: 1fr 2fr;
}
.clm1-3 {
  grid-template-columns: 1fr 3fr;
}
.clm2-1 {
  grid-template-columns: 2fr 1fr;
}
.clm3-1 {
  grid-template-columns: 3fr 1fr;
}


/*---- outline ----*/

.outline {
	max-width: 1550px;
    margin: 0 auto;
	padding: 0 3%;
}

/*---- block_skip ----*/

.block_skip a {
	display:block;
	height: 0;
	overflow: hidden;
	color: #fff;
	background: #47647D;
	font-size: 100%;
    text-align: center;
}

.block_skip a:focus {
	height: auto;
	line-height: 3em;
    padding: 0.2em;
}

.block_skip a:before {
    content: "";
    display: inline-block;
    margin-right: 11px;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-left-color: #FFF;
    vertical-align: 1px;
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
}


/* element setting:
--------------------------------------------*/

/*---- img  ----*/

img {border: none;vertical-align: middle;}


/*---- lnk  ----*/

.lnk1 a {
	display: inline-block;
	text-decoration: none;
	color: #0D75CD;
	padding: .7rem;
	border: 2px solid #0D75CD;
	min-width: 14rem;
	position: relative;
}

.lnk1 a:after {
    content: "";
    bottom: 8px;
    right: 8px;
    border-top: 12px solid transparent;
    border-right: 12px solid #0D75CD;
    position: absolute;
}

.lnk1 a:hover {
    background: #F5FAFF;
}

/* header :
--------------------------------------------*/
#header {
	display: grid;
	grid-gap: 1.5rem;
	grid-template-columns: 1fr 4fr;
	padding: 1.5% 2% 1%;
	margin: 0 auto;
	z-index: 100;
	position: relative;
    background: #fff;
}

#header .logo img{
	max-width: 270px;
}


#header .right{
	display: grid;
	justify-content: end;
}

#header ul.nav{
	display: block;
	margin-top: .3rem;
}

#header ul.nav li{
	display: inline-block;
}
#header ul.nav li a{
	font-size: 80%;
    padding: 0.5em 0 0.5em 1.6rem;
	background-repeat: no-repeat;
    background-position: center left;
    background-size: 23px;
	margin-left: 1rem;
}

#header ul.nav li a:hover{
	text-decoration: underline;
}

#header ul.nav li:nth-child(1) a {background-image: url("../img/common/icon_sitemap.svg");}
#header ul.nav li:nth-child(2) a {background-image: url("../img/common/icon_access.svg"); background-size: 26px;padding: 0.5em 0 0.5em 1.7rem;}
#header ul.nav li:nth-child(3) a {background-image: url("../img/common/icon_contact.svg");}
#header ul.nav li:nth-child(4) a {background-image: url("../img/common/icon_lang.svg"); background-size: 22px;}

#header #search {
	text-align: right;
	margin-bottom: .5rem;
}

#header #search input {
	height: 2.5em!important;
	width: 20em;
    border: 1.5px solid #ccc!important;
}

#header #search input.btn {
	width: 2.5em;
	background: #009AE7 url("../img/common/icon_search.svg") no-repeat center;
	background-size: 18px;
	border: none!important;
	border-top: 1px solid #009AE7!important;
	color: #fff;
	overflow: hidden;
	text-indent: -10000px;
	cursor: pointer;
}

/* glnav:
--------------------------------------------*/

.gl_menu,.serch_btn {display: none;}

#glnav {
    background: #0D75CD;
    padding: .5rem 2% 0;
	z-index: 100;
	position: relative;
}

#glnav > ul{
	display: grid;
	grid-gap: 1rem;
	grid-template-columns: repeat(7,1fr);
	margin: 0 auto;
}

#glnav ul > li{
	display: grid;
	align-items: center;
}

#glnav ul > li > a{
	color: #fff;
	text-align: center;
	padding: 0.5rem 0 1rem;
	position: relative;
}

#glnav > ul > li:is(:first-child,:nth-child(2),:nth-child(3),:nth-child(4),:nth-child(6)) > a::before{
content: '';
    position: absolute;
    left: 48%;
    bottom: 0.4rem;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}

#glnav ul > li.on > a,#glnav > ul > li > a:hover{
	color: #0D75CD;
	background: #fff;
	border-radius: 5px 5px 0 0;
}

@media screen and (max-width: 1140px){
	#glnav {
		font-size: 90%;
	}
}

/* サブメニュー */

#glnav > ul > li > ul {
    width: 100%;
    position: absolute;
    left: 0;
    padding: 3rem 5% 7rem;
	z-index: 99;
	display: none;
	background: #fff;
	top: 80px;
	border-bottom: 5px solid #009AE7;
}


#glnav > ul > li > ul > li {
	display: inline;
	text-align: left;
}


#glnav > ul > li > ul > li > a {
	display: inline-block;
    padding: 0.5em;
    transition: all 300ms 0s ease;
	color: #333;
    font-size: 100%;
	margin-right: 1.2rem;
}

#glnav > ul > li > ul > li > a:hover {
	text-decoration: underline;
	color: 333!important;
}

#glnav > ul > li > ul > li > a:before {
    content: "";
    display: inline-block;
    margin-right: 11px;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-left-color: #FFBB00;
    -webkit-transition: border-color 0.2s;
   	transition: border-color 0.2s;
}


#glnav > ul > li > ul > li > a:hover,
#glnav > ul > li > ul > li > a:focus {background-color: rgba(255,255,255,0.1);}


#glnav > ul > li > ul > li.title {
    display: grid;
	grid-template-columns: 1fr 40%;
    font-size: 145%;
	text-align: left;
	font-weight: bold;
	color: #0D75CD;
	border-bottom: #0D75CD 2.5px solid;
	padding: 0 0 1rem .7rem;
	margin-bottom: 1.5rem;
	position: relative;
}

#glnav > ul > li > ul > li.title::before {
    display: none;
}

/*
#glnav > ul > li > ul > li.title::after {
	content: "";
    bottom: 10px;
    right: 10px;
    border-top: 12px solid transparent;
    border-right: 12px solid #0D75CD;
    position: absolute;
}

*/

/* 閉じる */

#glnav ul li.close {
	float: none;
	position: absolute;
	bottom: 0;
	margin: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-align: center;
}

#glnav ul li.close a {
    background-image: none;
    position: relative;
	margin: 0;
	text-align: center;
    transition: all 300ms 0s ease;
		text-decoration: none;
	color: #0D75CD;
	padding: .7rem;
	border: 2px solid #0D75CD;
	min-width: 10rem;

}

#glnav ul li.close a:hover,
#glnav ul li.close a:focus {border-radius: 0; }

#glnav ul li.close a:hover {
    background: #F5FAFF;
	text-decoration: none;
}

#glnav ul li.close a:before {
    content: "";
    display: inline-block;
    width: .8rem;
    height: .8rem;
    background: url("../img/common/icon_close.svg") no-repeat;
    background-size: .8rem;
    vertical-align: middle;
    margin-right: 0.8rem;
	border: none;
}

.overlay {
    position: fixed;
    z-index: 6;
    background: rgba(0,0,0,.4);
    width: 100%;
    height: 100%;
	display: none;
}

#glnav .nav {
   display: none;
}


/* footer :
--------------------------------------------*/

#footer {
	text-align: center;
	border-top: 5px solid #D6F2FC;
	border-bottom: 5px solid #009AE7;
	font-size: 80%;
}

#footer .logo img {
    width: 18rem;
	margin: 2.5rem 0 0;
}

#footer address {
    margin: 2rem 0 1.5rem;
}

#footer address a {text-decoration: underline;}

#footer address a:hover {text-decoration: none;}


#footer .sns a{
	min-width: 20rem;
	margin: .5rem 0 1.8rem;
}

#footer .sns img{
	width: 24px;
	margin-right: 10px;
}

#footer ul.mark li {display: inline;}

#footer ul.mark li a img{
	height: 50px;
}
#footer ul.mark li:nth-child(1) a img {
    height: 38px;
}
#footer ul.mark li:nth-child(3) a img{
	height: 43px;
}

#footer ul.mark li a:hover{
	opacity: .8;
}

#footer ul.nav {
	margin: 1.5rem 0 .5rem;
}

#footer ul.nav li {display: inline;}

#footer ul.nav li a
{
	display: inline-block;
	padding: .5rem;
	text-decoration: none;
	margin-right: .7rem;
}

#footer ul.nav li a:hover
{
	text-decoration: underline;
}

#footer ul.nav li:last-child a
{
	margin-right: 0;
}

#footer ul.nav li a:before {
    content: "";
    display: inline-block;
    margin-right: 11px;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-left-color: #FFBB00;
    -webkit-transition: border-color 0.2s;
   	transition: border-color 0.2s;
}


/*---- copy ----*/

#copy {
    padding: 0 0 .8rem;
	letter-spacing: .1rem;
	color: #0D75CD;
	font-family: Arial, Helvetica, sans-serif;
}

/*--  page_top --*/

#page_top {
	display: block;
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 5;
}

#page_top a {
	display: block;
	width: 45px;
	height: 45px;
	padding: 6px 10px;
	background: rgba(255,255,255,.9);
	border: 2px solid #0D75CD;
}

#page_top a:hover {
	background: rgba(240,248,255,.9);
}