@charset"utf-8";
/* ===================================
*
　★リセットCSS
*
===================================-*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
html {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}
q, blockquote {
    quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none;
}
a img {
    border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html {
    overflow: auto;
    font-size: 62.5%;
}
body {
    color: black;
    background-color: #fff;
    font-size: 1.5rem;
    line-height: 1.6;
    -webkit-text-size-adjust: none;
    position: relative;
    font-family: ヒラギノ角ゴ StdN, 'Noto Sans JP', sans-serif;
    font-weight: 500;
	letter-spacing: 0.05em;
}
a {
    color: black;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
a:hover {
    text-decoration: none;
    opacity: 0.6;
}
body p,body ul li a,body ul,body li,dl,dt,dd{
	font-family: ヒラギノ角ゴ StdN, 'Noto Sans JP', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}
button, input,input[type=button], input[type=reset], input[type=submit] {
	touch-action: manipulation;
	transition: border .15s linear, color .15s linear, background-color .15s linear;
	font-family: ヒラギノ角ゴ StdN, 'Noto Sans JP', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}
img {
    vertical-align: bottom;
	display: block;
	margin: 0 auto;
}
:focus {
    outline: none;
}
/* ===================================
*
　リセットCSS - SP
*
===================================-*/
@media screen and (max-width: 767px) {
	img {
	  width: 100%;
	  height: auto;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/





/* ===================================
*
　★PC/SP 切り替え
*
===================================-*/
.pc{
	display: block;
}
.sp{
	display: none;
}
.flex{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.inner{
	width: 1140px;
	margin: 0 auto;
}
/* ===================================
*
　PC/SP 切り替え - SP
*
===================================-*/
@media screen and (max-width: 767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    .flex{
        display: block;
    }
	.inner{
		width: 100%;
		margin: 0 auto;
		padding: 0 5%;
		box-sizing: border-box;
	}
}
/*===================================
max-width: 767px - SPここまで
===================================*/



/* ===================================
*
　header
*
===================================-*/
header{
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 10;
	padding: 30px 0 0;
}
/*
PC時のみの設定-----------------------------*/
@media only screen and (min-width: 768px){
	#header.fixed{
		position: fixed;
		z-index: 999;
		top: 0;
		left: 0;
		top: -20px;
		left: 50%;
		-webkit-transform: translate(-50%, 0%);
		transform: translate(-50%, 0%);
		width: 100%;
		background: #fff;
	}
	header .logo_wrap .inner{
		position: relative;
		margin: 0 auto;
	}
	header .logo_wrap .logo1{
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translate(0%, -50%);
		transform: translate(0%, -50%);
		width: 189px;
	}
	header .logo_wrap .logo2{
		margin: 0 auto;
		display: block;
		width: 320px;
	}
	header nav{
		border-bottom:3px solid #91d2e5;
	}
    header nav .gnav{
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 1140px;
		margin: 30px auto 0;
		border-radius: 8px 8px 0px 0px;
		overflow: hidden;
    }
    header nav .gnav li{
        font-size: 1.6rem;
        height: 100%;
        box-sizing: border-box;
        width: 175px;
        border-right: 1px solid #8bbecd;
        height: 40px;
    }
    header nav .gnav li a{
		width: 100%;
		height: 100%;
		display: block;
		box-sizing: border-box;
		text-align: center;
		line-height: 1;
		font-size: 1.3rem;
		background: #00a6cb;
		color: #fff;
		padding-top: 13px;
		font-weight: 500;
    }
    header nav .gnav li:first-child {
        width: 190px;
    }
    header nav .gnav li:first-child a{
        font-size: 1.25rem;
    }
	header nav .gnav li a.on{
		background: #f5a700;
    }
    header nav ul li:last-child img{
        vertical-align: unset;
    }
    header nav ul > li {
      position: relative;
    }
    header nav .dropdown {
      position: absolute;
      /*left: -40px;*/
      z-index: 1000;
      width: 180px;
      top: 54px;
      display: block;
      height: 100%;
    }
    header nav .dropdown li{
        border: none;
    }
    header nav .dropdown li:first-child{
        border: none;
    }
    header nav .dr01 {
      left: -0px;
    }
    header nav .dr02 {
      left: -0px;
    }
    header nav .dr03 {
      left: -0px;
    }
    header nav .dr04 {
      left: -0px;
    }
    header nav .dropdown li {
        display: block;
        padding-left: 0;
        padding-top: 0;
        background: #153368;
        border-bottom: 1px solid #ffffff40;
        border-left: none !important;
        height: auto;
        border-bottom: 1px solid #ffffff5c !important;
    }
    header nav .dropdown li:last-child {
      border-bottom: none!important;
    }
    header nav .dropdown li a {
        color: #fff;
        padding: 10px;
        display: block;
        line-height: 1.5;
        text-align: center;
        font-size: 1.3rem;
    }
}/*--------PCのみの設定ここまで*/


/*
SP時のみの設定-----------------------------*/
@media only screen and (max-width: 767px){
    header{
		height: 80px;
		width: 100%;
		min-width: 100%;
		padding: 2% 3% 3%;
		position: fixed;
		z-index: 1000;
		background: #fff;
		box-shadow: 0px 15px 16px -21px rgb(0 0 0 / 19%);
		top: 0;
    }
    header .logo{
        margin-top: 0;
        width: 220px;
    }
    /* hamburger */
    .menu-trigger,
    .menu-trigger span {
      display: inline-block;
      transition: all .4s;
      box-sizing: border-box;
    }
    .menu-trigger{
        position: absolute;
        width: 32px;
        height: 32px;
        top: 26%;
        right: 5%;
    }
    .menu-trigger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #153368;
    }
    .menu-trigger span:nth-of-type(1) {
      top: 8px;
    }
    .menu-trigger span:nth-of-type(2) {
      top: 18px;
    }
    .menu-trigger span:nth-of-type(3) {
      top: 28px;
    }

    /* hamburger open/close */
    .menu-trigger.active span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-45deg);
      transform: translateY(10px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
      opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-10px) rotate(45deg);
      transform: translateY(-10px) rotate(45deg);
    }
    header nav .gnav{
        display: none;
    }
    header nav ul {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 1000;
    width: 100%;
    }
    header nav ul.global_nav {
    display: none;
    }
    header nav ul > li {
    display: block;
    text-align: center;
    background: #00a5ca;
    height: initial;
    border-bottom: #70bacb solid 1px;
    padding-left: 0;
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px;
    }
    header nav ul > li a {
    display: block;
    color: #fff;
    padding: 10px 0;
    }
    header nav ul .dropdown {
    display: none;
    }
    header nav ul .group {
    display: none;
    }
    /*　ハンバーガーメニュー展開　*/
	header nav ul > li {
		position: relative;
	}

	.add_dropdown{
		position: absolute;
		width: 50px;
		height: 100%;
		top: 0;
		right: 0;
		border-left: 1px solid #425a84;
		z-index: 10;
		cursor: pointer;
	}

	.add_dropdown:before{
		content: "";
		position: absolute;
		width: 21px;
		height: 1px;
		top: 21px;
		right: 13px;
		margin: auto;
		background: #fff;
	}

	.add_dropdown:after{
		content: "";
		position: absolute;
		width: 1px;
		height: 21px;
		top: 11px;
		right: 23px;
		margin: auto;
		background: #fff;
	}
	.add_dropdown.active:after{
		display: none;
	}
	header nav ul .dropdown{
		position: relative;
		top: 0;
		border-top: 1px solid #153368;
        left: 0;
        width:100%;
	}
	header nav ul .dropdown li{
		position: relative;
		top: 0;
		border-bottom: 1px solid #153368;
		background: #fff;
	}
	header nav ul .dropdown li:last-child{
		border-bottom: none;
	}
	header nav ul .dropdown li a{
		color: #153368;
	}
    /*日本語英語*/
    header .header_top .lang{
        display: none;
    }
    header nav .sp_lang{
        display: flex;
        justify-content: center;
        background: #071d44;
    }
    header nav .sp_lang a{
        padding: 10px;
    }
    header nav .sp_lang a.JP{
        border-right: 1px solid #5a6477;
        width: 50%;
    }
    header nav .sp_lang a.eng{
        width: 50%;
    }
	/*SP用の設定*/
	header .logo_wrap .logo1{
		width: 100px;
	}
	header .logo_wrap .logo2{
		width: 200px;
		margin-top: 8px;
	}
}/*---------SP時のみの設定ここまで*/






/* ===================================
*
　★footer
*
===================================-*/
body footer{
    background: #00aeef;
    padding: 30px 0 0;
    background-size: cover;
	margin-top: 70px;
}
body footer .inner{
    margin: 0 auto 30px;
    justify-content: space-between;
    align-items: center;
}
body footer a{
    color: #fff;
    font-weight: normal!important;
    margin-left: 20px;
    line-height: 1;
    font-size: 1.5rem;
}
body footer div.copy{
    background: #0085b6;
    padding: 20px;
    position: relative;
}
body footer div.copy #top_arrow{
    position: absolute;
    top: 17px;
    right: 20px;
}
body footer div.copy p{
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-weight: normal!important;
}
/* ===================================
*
　footer - SP
*
===================================-*/
@media only screen and (max-width: 767px){
    body footer{
        background: #222222;
        padding: 0;
    }
    body footer .logo{
        margin: 0 auto;
        display: none;
    }
    body footer .logo img{
        width: 100%;
    }
    body footer .inner{
        width: 90%;
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
    }
    body footer ul.flex li{
        display: none;
    }
    body footer a{
        color: #fff;
        font-weight: normal!important;
        margin-left: 0px;
        line-height: 1;
        font-size: 1.5rem;
    }
    body footer div.copy{
        background: #00a6cb;
        padding: 5% 5% 50px;
        position: relative;
    }
    body footer div.copy #top_arrow{
        position: absolute;
        bottom: 20px;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        width: 22px;
        height: 14px;
        top: unset;
    }
    body footer div.copy p{
        font-size: 1rem;
        line-height: 1.5;
        color: #fff;
        text-align: center;
        font-weight: normal!important;
    }
	body footer div.copy_img{
		padding: 5% 20%;
		background: #222222;
		background-image: none;
		background-size: auto;
		background-image: url(../img/footer_bg.png);
		background-size: cover;
		background-position-x: center;
	} 
}/*===================================
max-width: 767px - SPここまで
===================================*/




