@charset "utf-8";

/*font*/
body{
font-family: -apple-system, Avenir ,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック', sans-serif;
-webkit-text-size-adjust: 100%;
letter-spacing: 0.01em;
font-feature-settings: "palt";
}

/*reset 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-style: normal;
	font-weight: normal;
	font-size: 16px;
	vertical-align: baseline;
	line-height: 150%;
}

ul{
	list-style: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

blockquote, q {
    quotes: none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

button{
padding: 0;
background: none;
border: none;
font-family: inherit;
font-size: 100%;
cursor: pointer;
}

input, select, textarea {
font-family: inherit;
font-size: 100%;
margin: 0;
padding: 5px;
border: 1px solid #c4c4c4;
}
 
ol, ul{
list-style:none;
}
 
table{
border-collapse: collapse; 
border-spacing:0;
}
 
caption, th{
text-align: left;
}
 
a:focus {
outline:none;
}
a {
outline: none;
text-decoration: none;
color: #000;
}

button:hover{
opacity: 0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
}

a,
a:hover,
a:after,
a:hover:after,
a:before,
a:hover:before,
button,
button:hover{
transition: .3s;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
/*reset css end*/

img {
	vertical-align:bottom;
	width: 100%;
}

iframe{
vertical-align: bottom;
}

.bold{
	font-weight: bold;
}

/*文字サイズ*/
.fo10{font-size: 10px;}
.fo11{font-size: 11px;}
.fo12{font-size: 12px;}
.fo13{font-size: 13px;}
.fo14{font-size: 14px;}
.fo15{font-size: 15px;}
.fo16{font-size: 16px;}
.fo17{font-size: 17px;}
.fo18{font-size: 18px;}
.fo19{font-size: 19px;}

.fo20{font-size: 20px;}
.fo20b{font-size: 20px; font-weight: 500}
.fo21{font-size: 21px;}
.fo22{font-size: 22px;}
.fo23{font-size: 23px;}
.fo24{font-size: 24px;}
.fo25{font-size: 25px;}
.fo26{font-size: 26px;}
.fo27{font-size: 27px;}
.fo28{font-size: 28px;}
.fo29{font-size: 29px;}

.fo30{font-size: 30px;}
.fo31{font-size: 31px;}
.fo32{font-size: 32px;}
.fo33{font-size: 33px;}
.fo34{font-size: 34px;}
.fo35{font-size: 35px;}

.fo40{font-size: 40px;}
.fo41{font-size: 41px;}
.fo42{font-size: 42px;}
.fo43{font-size: 43px;}
.fo44{font-size: 44px;}
.fo45{font-size: 45px; line-height: 120%;}

.fo50{font-size: 50px; line-height: 120%;}
.fo51{font-size: 51px;}
.fo52{font-size: 52px;}
.fo53{font-size: 53px;}
.fo54{font-size: 54px;}
.fo55{font-size: 55px;}




/* ----------------------------------------
	#　ヘッダーメニュー
---------------------------------------- */
header{
width: 100%;
z-index: 999;
position: fixed;
top: 0;
left: 0;
display: flex;
justify-content: flex-end;
align-items: center;
padding: 20px;
transition: background-color 0.3s ease;
}
header.is-header{
background-color: rgba(255,255,255,1);
}
@media only screen and (max-width:1024px) {
header{
background: #fff;
}
}
@media only screen and (max-width:767px) {
header{
justify-content: space-between;
}
}

/*メニューボタン　展開前*/
#menu{
display: block;
position: relative;
z-index: 12;
width: 40px;
height: 30px;
border-radius: 50%;
cursor: pointer;
text-align: center;
transition: 0.3s ease-in-out;
}

#menu span{
display : block;
position: absolute;
width: 40px;
height: 3px;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background: #000;
transition: 0.3s ease-in-out;
}
#menu span:nth-of-type(1) {top: 0%;}
#menu span:nth-of-type(3) {top: 100%;}
@media only screen and (max-width:1024px) {
#menu span{
width: 40px;
height: 4px;
}
}
  
/*メニューボタン　展開後*/
.open #menu span{
top: 50%;
left: 20%;
background : #000;
}
.open #menu span:nth-child(1) {
transform: rotate(-45deg);
background : #fff;
}
.open #menu span:nth-child(2),
.open #menu span:nth-child(3) {
transform: rotate(45deg);
background : #fff;
}

/*スマホ用のメニュー*/
.menu_inner{
position: fixed;
display: flex;
align-items: center;
justify-content: center;
top: 0;
left: 0;
width: 100%;
height: 100%;
padding: 50px 0;
background: #323232;
-webkit-transition: all .5s;
transition: all .5s;
visibility: hidden;
opacity: 0;
z-index: 11;
}
@media only screen and (max-width:767px) {
.menu_inner{
display: block;
padding: 70px 0 50px;
}
}
@media only screen and (max-height:800px) {
.menu_inner{
display: block;
align-items: flex-start;
}
}

.menu_inner ul{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 90%;
max-width: 1000px;
margin: 0 auto;
}
@media only screen and (max-width:767px) {
.menu_inner ul{
flex-direction: column;
}
}

.menu_inner ul li{
width: 49%;
margin-bottom: 10px;
transition: .4s all;
}
@media only screen and (max-width:767px) {
.menu_inner ul li{
width: 100%;
}
}

.menu_inner ul li a{
display: flex;
align-items: flex-start;
width: 100%;
height: 100%;
color: #fff;
letter-spacing: 0.1em;
padding: 10px;
border-bottom: 1px solid #fff;
position: relative;
z-index: 1;
}
.menu_inner ul li a:after{
background: #fff;
position: absolute;
top: 0;
left: 0;
content: '';
width: 100%;
height: 100%;
transform-origin: left bottom;
transform: scale(1, 0);
z-index: -1;
}

.menu_inner ul li a:hover{
color: #1c385a;
}
.menu_inner ul li a:hover:after{
transform-origin: left bottom;
transform: scale(1, 1);
transition-timing-function: cubic-bezier(0.05, 0.5, 0.4, 1);
}

.menu_inner .num{
font-family: "Oswald", sans-serif;
font-weight: 700;
font-size: 25px;
margin-right: 10px;
line-height: 100%;
}

.menu_inner .tit{
flex: 1;
font-size: 18px;
}

.open  .menu_inner{
-webkit-transition: all .5s;
transition: all .5s;
visibility: visible;
opacity: 1;
overflow: scroll;
}

#menu_lang{
margin-right: 30px;
}

#menu_lang ul{
display: flex;
align-items: flex-end;
flex-wrap: wrap;
}
@media only screen and (max-width:767px) {
#menu_lang ul{
width: 50vw;
min-width: 220px;
}
}

#menu_lang li{
display: inline-block;
position: relative;
}
#menu_lang li:after{
content: "/";
margin: 0 7px;
color: #A8A8A8;
}
#menu_lang li:last-child:after{
display: none;
}

#menu_lang li a:hover{
text-decoration: underline;
}