@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;600&display=swap');
@import url("../css/destyle.css");

/* common
   ========================================================================== */
body{
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
}

::selection {background: #352F29; color: #fff;}
::-moz-selection {background: #352F29; color: #fff;}


/* header
   ========================================================================== */
@media screen and (min-width: 1024px){
  .header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 980px;
    margin: 0 auto;
  }
  .header__navi{
    display: block!important;
  }
  .header__logo{
    display: block;
    position: relative;
    width: 390px;
  }
  .gnav{
    display:flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 15px;
  }
  .gnav li+li{
    margin-left: 30px;
  }
  .gnav li{
    display: flex;
    align-items: center;
  }
  .gnav li.sp_ver{
    display: none;
  }
  .gnav li::before{
    display: block;
    content: "";
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
  .gnav li:first-child::before{
    background-image: url("../img/arrow.png");
  }
  .gnav li:last-child::before{
    background-image: url("../img/icon_fb.png");
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
  }
  .gnav li a{
    transition-duration: .4s;
    transition-property: opacity;
  }
  .gnav li a:hover{
    opacity: .6;
  }
  
  .hamburger__menu{
    display: none;
  }
}
@media screen and (max-width: 1023px){
  .header__inner{
    display: flex;
    width: 90%;
    margin: 0 auto;
  }
  .header__navi{
    position: absolute;
    display: none;
    z-index: 9999;
  }
  
  .gnav li:last-child{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gnav li:last-child::before{
    display: block;
    content: "";
    background-size: 18px 18px;
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
  .gnav li:last-child::before{
    background-image: url("../img/icon_fb.png");
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
  }
  
  /*hamburger__menu*/
  .hamburger__menu{
    display: block;
    cursor:pointer;
    width: 30px;
    height: 27px;
    z-index: 9999;
  }
  .hamburger__menu-icon{
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    margin: -2px 0 0 -15px;
    background: #120A03;
    transition-duration: .2s;
  }
  .hamburger__menu-icon::before,
  .hamburger__menu-icon::after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background: #120A03;
    transition-duration: .2s;
  }
  .hamburger__menu-icon::before{
    margin-top: -10px;
  }
  .hamburger__menu-icon::after{
    margin-top: 9px;
  }
  .hamburger__menu .close{
    background: transparent;
  }
  .hamburger__menu .close::before,
  .hamburger__menu .close::after{
    margin-top: 0;
    width: 30px;
  }
  .hamburger__menu .close::before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .hamburger__menu .close::after{
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  .header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }
  .header__navi{
    width: 100%;
    height: 100vh;
    left: 0;
    top:100px;
    background: #120A03;
    color: #fff;
  }
  .header__navi li{
    font-size: 18px;
    text-align: center;
    border-bottom: solid 1px rgba(255,255,255,.2);
  }
  .gnav li.sp_ver{
    display: block;
  }
  .header__navi li:last-child{
    border-bottom: none;
  }
  .header__navi li a{
    display: block;
    padding: 30px 0;
  }
  .gnav{
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px){
  .header__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }
  .header__logo img{
    width: 240px;
  }
  .header__navi{
    width: 100%;
    height: 100vh;
    left: 0;
    top:60px;
    background: #120A03;
    color: #fff;
  }
  .header__navi li{
    font-size: 16px;
    text-align: center;
    border-bottom: solid 1px rgba(255,255,255,.2);
  }
  .gnav li.sp_ver{
    display: block;
  }
  .header__navi li:last-child{
    border-bottom: none;
  }
  .header__navi li a{
    display: block;
    padding: 30px 0;
  }
  .gnav{
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
  }
}


/* footer
   ========================================================================== */
@media screen and (min-width:768px) {
  .footer{
    background: #120A03;
    margin-top: 120px;
    padding: 60px 0;
    color: #F4F0DD;
  }
  .footer__inner{
    max-width: 980px;
    margin: 0 auto;
  }
  .footer__contents{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .footer__company__title{
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 18px;
  }
  .footer__company__title span{
    font-size: 12px;
  }
  .footer__company{
    margin-left: 30px;
  }
  .footer__company__list{
    display: flex;
    margin-top: 14px;
  }
  .footer__company__list li{
    display: flex;
  }
  .footer__company__list li::before,
  .footer__company__list li:last-child::after{
    content: "｜";
  }
  .footer .attention{
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    margin-top: 40px;
    padding: 10px;
    background: #352F29;
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (min-width:768px) and (max-width:1023px) {
  .footer__inner{
    width: 90%;
    margin: 0 auto;
  }
  .footer .attention{
    text-align: left;
  }
}
@media screen and (max-width: 767px){
  .footer{
    background: #120A03;
    margin-top: 120px;
    padding: 50px 0 30px;
    color: #F4F0DD;
  }
  .footer__inner{
    width: 90%;
    margin: 0 auto;
  }
  .footer__contents{
    text-align: center;
  }
  .footer__company__title{
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
  }
  .footer__company__title span{
    font-size: 12px;
    display: block;
  }
  .footer__company__list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 15px auto 0;
  }
  .footer__company__list li{
    display: flex;
    justify-content: center;
    width: 25%;
  }
  .footer__company__list li a{
    display: block;
    width: 100%;
  }
  .footer__company__list li::before,
  .footer__company__list li:last-child::after,
  .footer__company__list li:nth-child(4)::after{
    content: "｜";
  }
  .footer .attention{
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    margin-top: 40px;
    padding: 10px;
    background: #352F29;
    font-size: 11px;
  }
}


/* contents
   ========================================================================== */
@media screen and (min-width:768px) {
  .pc_ver{display: block;}
  .sp_ver{display: none;}
}
@media screen and (max-width: 767px){
  .pc_ver{display: none;}
  .sp_ver{display: block;}
}