@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  letter-spacing:0.02em;
  width: 100%;
  box-sizing: border-box;
}
body {
  background-color: #fff;
  color: #41596e; /* RGB */
  font-family: "ヒラギノ明朝 ProN", YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif',"A-OTF UD黎ミン Pr6N","A-OTF リュウミン Pr6N";
  font-weight: 300;
  font-size: 1.6em;
  text-align: center;
  margin: 0 4vw;
}
.none{
  display:none;
}

/*========= ボタンのためのCSS ===============*/ 
 .header_hamburger{
  position: fixed;
  z-index : 9999;/*ボタンを最前面に*/
  right : 8vw;
  top   : 5vh;
  width : 38px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
  /*×に変化*/	
.header_hamburger span{
  display: block;
  position: absolute;
  width   : 24px;
  height  : 1.5px;
  left    : 6px;
  background: #41596e;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.header_hamburger span:nth-child(1){
  top: 10px;
}
.header_hamburger span:nth-child(2){
  top: 3px
}
.header_hamburger span:nth-child(3){
  top: 17px
}
/* ナビ開いてる時のボタン */
.header_hamburger.active span:nth-child(2){
  top : 11px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.header_hamburger.active span:nth-child(1),
.header_hamburger.active span:nth-child(3){
  top: 11px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
/*========= ナビゲーションのためのCSS ===============*/  
.hamburgerMenuSp{
   /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index : 999;
  top  : 0;
   /*ナビのスタート位置と形状*/
  right: -120%;
  width: 100%;
  height: 100%;/*ナビの高さ*/
  overflow-y: scroll;
  background: rgba(65,89,110,0.95);
  text-align: center;
  /*動き*/
  transition:  all 0.6s;
} 
  /*アクティブクラスがついたら位置を0に*/
  .hamburgerMenuSp.panelactive{
    right: 0;
  }
  
.hamburgerMenuSp ul {
  padding-top: 10vh;
}
.hamburgerMenuSp ul li {
  padding: 10px 0 ;
}
.hamburgerMenuSp ul li:hover{
  background :#ddd;
}
.hamburgerMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
} 
@media (max-width: 425px){
 .header_hamburger span{
  width   : 18px;
  height  : 1px; 
  }
  .header_hamburger span:nth-child(1){
  top: 7px;
}
.header_hamburger span:nth-child(2){
  top: 1px
}
.header_hamburger span:nth-child(3){
  top: 13px
}
  /* ナビ開いてる時のボタン */
.header_hamburger.active span:nth-child(2){
  top : 7px;
}
.header_hamburger.active span:nth-child(1),
.header_hamburger.active span:nth-child(3){
  top: 7px;
}
  
}
