/*--------------------------------------------------------------
	■A.文字
--------------------------------------------------------------*/
html{
	font-size:  62.5%;
}
body {
	background-color: #F2F0ED;
	margin: 0px auto;
	padding: 0px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size : 1.6rem;
	font-weight: 400;
	color: #0D3382;
	line-height: 1.7;
	letter-spacing: 0.03em;
}

strong{
	font-weight:700;
}
h1,
h2,
h3,
h4,
h5,
h6{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}


/*--------------------------------------------------------------
	■B.リンク
--------------------------------------------------------------*/
a {
	color: #0D3382;
	outline: none;
	border-style: none;
	text-decoration: none;
	transition: all 0.1s ease 0s;
	-moz-transition: all 0.1s ease 0s;
	-webkit-transition: all 0.1s ease 0s;
	-o-transition: all 0.1s ease 0s;
	-ms-transition: all 0.1s ease 0s;
	cursor: pointer;
}

a:hover{
	/* opacity: 0.3; */
	transition: 0.3s ;
}

/*--------------------------------------------------------------
	■C.共通定義
--------------------------------------------------------------*/
.container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
	
	@media screen and (min-width: 1200px) {
		width: 1200px;
	}
	  @media screen and (max-width: 1200px) and (min-width: 768px) {
		padding: 0 80px;
	  }
	  
	  @media screen and (max-width: 768px) and (min-width: 640px) {
		padding: 0 40px;
	  }
	  
	  @media screen and (max-width: 640px) {
		padding: 0 16px;
	}
	  
}

.container_960 {
	width: 960px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.container_960 {
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.pc_none {
		display: none !important;
	}
}
  
@media screen and (max-width: 768px) and (min-width: 640px) {
	.tb_none {
		display: none !important;
		
	}
	.pc_none {
		display: block !important;
	}
}

@media screen and (max-width: 640px) {
	.sp_none {
		display: none !important;
	}
	.pc_none {
		display: block !important;
	}
} 


.btn{
	overflow: hidden;
	position: relative;
	background-color: none;
	border: 1px solid #0D3382;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 324px;
	height: 70px;
	padding: 0 50px;
	color: #0D3382;
	font-weight: bold;
	letter-spacing: 0.2em;
	border-radius: 8px;
	transition: all 0.3s;
	@media screen and (max-width:768px){
		margin: 0 auto;
	}
}

.btn:hover{
	background-color: #0D3382;
	transition: all 0.3s;
	opacity: inherit;
	color: #fff;
}

.btn i {
    position: absolute;
    right: 50px;
    z-index: 2;
}

.btn_large{
    overflow: hidden;
	position: relative;
	background-color: none;
	border: 1px solid #0D3382;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 412px;
	height: 70px;
	padding: 0 50px;
	color: #0D3382;
	font-weight: bold;
	letter-spacing: 0.2em;
	border-radius: 8px;
	@media screen and (max-width:768px){
		width: 324px;
		margin: 0 auto;
	}
}

.btn_large:hover{
	background-color: #0D3382;
	transition: all 0.3s;
	opacity: inherit;
	color: #fff;
}



/* 下からふわっと */
.effect-fade {
	opacity: 0;
	transform: translate(0, 100px); /* フェードインで動く高さを指定 */
	transition: all 2000ms; /* フェードインにかかる時間を指定 */
  }
  .effect-scroll {
	opacity: 1;
	transform: translate(0, 0);
  }



  /* ハンバーガー */
  /*==================================================
　5-2-2 2本線が×に
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	position: fixed;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 20px;
    background: #0d3382;
	z-index: 9999;/*ボタンを最前面に*/
	top:8px;
	right: 15px;
}
	
/*ボタン内側*/

.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 1.43px;
	background-color: #E9801F;
  }


.openbtn span:nth-of-type(1) {
	top:16px;	
  	width: 14.29px;
}

.openbtn span:nth-of-type(2) {
	top:24px;
	width: 14.29px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn.active span:nth-of-type(2) {
    top: 26px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	left: 0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#0D3382;
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:109px;
    left:50%;
    transform: translateX(-50%)
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	margin-bottom: 24px;
	display: block;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.4rem;
	text-align: center;
}