@charset "utf-8";
/*共通*/
body{
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
}
/*header*/
     .header {
    background-color: #fff;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
  }
  .header_inner{
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }
  .header_ttl{
    width: 80px;
  }
  .header_ttl img{
    display: block;
    width: 70%;
    height: 100%;
  }
  .header .nav{
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%); 
    background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
    transition: ease .4s;
    margin: 0; 
  }
  .header .nav .nav_item{
    text-align: center;
    padding-top: 200px;
  }
  .header .nav .nav_item li{
    border:none;
    display: block;
    width: 100%;
  }
  .header .nav_item a{
    text-decoration: none;
    color: #3b81bf;
    display: block;
    width: 100%;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: bold;
  }
/* ハンバーガーメニュー */
.header_hamburger{
    width: 48px;
    height: 100%; 
}
.hamburger{
    background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
    border-color: #3b81bf; /*buttonタグデフォルトスタイルを打ち消し*/
    z-index: 9;
    padding: 0;
}
.hamburger span{
    width: 78%;
    height: 3px;
    background-color: #3b81bf;
    position: relative;
    transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block;
    margin: 0 auto;
}
.hamburger span:nth-child(1) {
    top: -8px;
  }
  
  .hamburger span:nth-child(2) {
    top: 0px;
  }
  
  .hamburger span:nth-child(3) {
    top: 8px;
  }
  .header nav.active{
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    top: 4px;
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    top: -3px;
    transform: rotate(-45deg);
  }
footer{
    margin-top: 5%;
    max-width: 800px;
    margin: 0 auto;
	background-color:#fff;
}
.footer_rogo{
    text-align: center;
}
.footer_rogo img{
    display: inline-block;
    max-width: 120px;
}
nav{
    text-align: center;
    margin: 5% 0;

    }
nav ul{
    margin: 0 ;
    padding: 0 ;
    }
nav li{
    list-style: none;
    display: inline-block;
    width: 30%;
    min-width: 90px;
    }
nav li:not(:last-child){
    border-right:2px solid #ddd;
    }
nav a{
    text-decoration: none;
    color: #333;
    }
nav a:hover{
    color:#22bd29;
    }
.footer_logo{
	width: 80px;
   margin: auto;
}
.copy{
    background-color: #3B81BF;
    text-align: center;
}
.copy p{
    color: #fff;
    font-size: 13px;
	padding: 10px;
}
.mpy-txt-wrap{
	margin-top:60px;
}
.privacy_cont h2{
  background-color: #3B81BF;
  color: #fff;
  padding: 20px 10px;
  font-weight: 600;
}
.privacy_cont{
  line-height: 1.2;
}
.privacy_cont .text-right{
  font-weight: 600;
}
.privacy_cont h3{
  border-bottom: 2px solid #333;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: 600;
}
.info-text p{
 font-size: 18px;
 font-weight: 800;
 margin-bottom: 30px;
}
.info-text dt{
  margin-bottom: 20px;
}
.info-text dt,.info-text dd {
  display: inline-block;
}
@media screen and (max-width: 767px){
  .info-text dt,.info-text dd {
    display: block;
  }
}