@charset "UTF-8";
/* CSS Document */

/*---------------------
    common
----------------------*/
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),  /* Mediumを明示的に指定 */
       local('Yu Gothic Medium'), /* Chrome用 */
       local('YuGothic-Regular'); /* Windows8.1ではMediumがないのでRegularを指定 */
}
@font-face {
  font-family: YuGothicM;
  font-weight: bold;
  src: local('YoGothic-Bold'), /* Boldはそのまま */
       local('Yu Gothic');     /* Chrome用 */
}

@font-face {
    font-family: "kozel";
    src: url(../font/kozel.eot) format("eot"), url(../font/kozel.woff) format("woff");
}

html{
    font-size:62.5%;/*16px×62.5%=10p*/
}
body{
    font-family:/* -apple-system,  */
                blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue', /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',       /* Windowsの欧文 */
               YuGothicM,        /* Windows8.1以上は游ゴシック */
               YuGothic,         /* Macの游ゴシック */
               Meiryo,           /* 游ゴシックが入っていないWindows */
               sans-serif;
    font-size:1.5rem;
    width: 100%;
    color: #2c2321;
}
img{
    max-width: 100%;
    height: auto;
}


.note{
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
}


/*---------------------
    header
----------------------*/
header{
    position: fixed;
    width: 100%;
    z-index: 1;
    border-top: solid 25px #A00003;
    top: 0px;
}

.menu_icon:before{
    content:"\f0c9";
    font-family:FontAwesome;
   font-size: 30px;
}

.menu_icon.active:before{
    content:"\f0c9";
    font-family:FontAwesome;
   font-size: 30px;
}

.menu_icon.active:before{
    content:"\f00d";
    font-family:FontAwesome;

}

.ig_icon{
    margin: auto 15px;
}

/*-----------------------
         hambarger
-----------------------*/
.gnav{
    background-color: rgba(255,255,255,0.7);
    /* display: -webkit-box; */
    /* display: -ms-flexbox; */
    display: flex;
    /* -webkit-box-pack: justify; */
        /* -ms-flex-pack: justify; */
            justify-content: space-between;
    padding: 10px 60px 10px 15px;
    /* -webkit-box-align: center; */
        /* -ms-flex-align: center; */
            align-items: center;
    /* -webkit-box-sizing: border-box; */
            box-sizing: border-box;
    /* top: -100%; */
}


.gnav h1 a {
    width: 100px;
    margin: 0 2%;
    display: block;
}

.gnav-list{
    /* -webkit-box-sizing: border-box; */
            box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 5px 15px;
    background-color: #a00003;
    opacity: 0;
    height: 0;
    visibility: hidden;
}

.gnav-list.active{
    opacity: 1;
    height: auto;
    visibility: visible;
    /* -webkit-transition: all 0.3s ease; */
    transition: all 0.3s ease;
}
.gnav-list ul{
    /* -webkit-box-sizing: border-box; */
            box-sizing: border-box;
    /* display: -ms-flex; */
    /* display: -webkit-box; */
    /* display: -ms-flexbox; */
    display: flex;
    /* -ms-flex-wrap: wrap; */
        flex-wrap: wrap;
    /* -webkit-box-pack: center; */
        /* -ms-flex-pack: center; */
            justify-content: center;
}

.gnav-list li{
    width: 50%;
    text-align: center;
}

.gnav-list li:last-of-type{
    margin: 0 auto;
    width: 100%;
}

.gnav-list li a{
    display: block;
}



.gnav.active{
    top: 0;
}

.gnav-logo{
    width: 30%;
    margin: 0 auto 35px;
    text-align: center;
}

/*-----------------------
    gnav-list
-----------------------*/
.gnav-list a{
    font-size: 1.6rem;
    line-height: 2.4;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    margin: 5px;
}

/*---------------------
    sns
----------------------*/
.sns{
    /* display: -webkit-box; */
    /* display: -ms-flexbox; */
    display: flex;
}
.sns li{
    margin: 0 5px;
}

.gnav div p a{
    width: 30px;
}

/*---------------------
    menu
----------------------*/

.text{
    font-size: 1.6rem;
    margin: 35px 30px;
    text-align: center;
}
@media screen and (width:414px){
    .text span{
        white-space: nowrap;
    }

}
.menu{
    width: 80%;
    margin: 0 auto;
}
.menu li {
    margin-bottom: 20px;
}

.menu li:nth-of-type(3),
.menu li:nth-of-type(4),
.menu li:nth-of-type(5),
.menu li:nth-of-type(6){
    width: calc(50% - 7.5px);
}

.menu ul{
    /* display: -webkit-box; */
    /* display: -ms-flexbox; */
    display: flex;
    /* -ms-flex-wrap: wrap; */
        flex-wrap: wrap;
    /* -webkit-box-pack: justify; */
        /* -ms-flex-pack: justify; */
            justify-content: space-between;
}
@media screen and (min-width:768px){
    header{
        max-width: 960px;
        margin: 0 auto;
    }
    .sp-nav {
        display: none;
    }
    .pc-nav {
        display: block;
    }


    .pc-nav.gnav{
        /* position: fixed;
        top: 0;
        left: 0;
        height: 50px; 一番上にずっとくっついてる */
        position: static;

    }
    .pc-nav .gnav-list  {
        /* display: -webkit-box; */
        /* display: -ms-flexbox; */
        display: flex;
        /* -ms-flex-pack: distribute; */
            justify-content: space-around;
        /* margin-top: 0; */
    }

    /*---------------------
        menu
    ----------------------*/
    main{
          max-width: 960px;
          margin: 0 auto;
      }

      .btn{
        margin: 0 70px;
      }

      .menu{
        width: 50%;
        /* display: -webkit-box; */
        /* display: -ms-flexbox; */
        display: flex;
        /* -webkit-box-pack: center;
            -ms-flex-pack: center; */
                justify-content: center;
        list-style: none;
      }

    .menu ul {
        padding: 20px 10px 10px;
    }

    .menu ul li.upper{
        width: 49%;
        float: left;
    }




    .menu ul li.bottom{
        width: 23.5%;
        float: left;
    }



    .menu ul{
      /* display: -webkit-box;
      display: -ms-flexbox; */
      display: flex;
    }
    .menu li:first-of-type{
    width: 80%;
    }

    .menu{
      width: auto;
      /* display: -webkit-box;
      display: -ms-flexbox; */
      display: flex;
    }

}
/*---------------------
    footer
----------------------*/
footer{
    font-family: kozel, sans-serif;
    background-color: #A00003;
    text-align: center;
    color: #fff;
}

footer img{
    width: 30%;
    margin: 25px auto 0;
}
footer .footer-inner{
    width: 260px;
    margin: 0 auto;
}
a[href^="tel:"] {
    cursor: default;
    text-decoration: none;
    font-size: 3.2rem;
    color: #fff;
    text-align: justify;
    letter-spacing: 0.5rem;
}

footer .address{
    font-size: 1.3rem;
    margin-bottom: 10px;
}
/* footer dl::after{
    content: "";
    display: block;
    clear: both;
    height: 0;
} */


footer .time-list{
    font-size: 1.5rem;
}

footer li:first-of-type{
    letter-spacing: 0.5rem;
    line-height: 1;
}
footer .time-list-bottom{
  font-size: 1.3rem;
}
footer .open{
    display: inline-block;
}

footer li span{
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-indent: 1em;
}

footer li{
    letter-spacing: 0.5rem;
}

footer .footer-inner .date-list{
    font-size: 1.4rem;
    letter-spacing: 0.4em;
}
footer .footer-inner .time-desc{
    font-size: 1rem;
    text-align: center;
    margin-bottom: 5px;
    margin-top: -9px;
    line-height: 3;
}

footer small{
    text-align: center;
    font-size: 1rem;
}

.footer-wrap{
  /* -webkit-box-pack: justify;
      -ms-flex-pack: justify; */
          justify-content: space-between;
}


/*---------------------
    footer
----------------------*/
@media screen and (min-width:768px){
    footer{
        max-width: 960px;
        margin: 0 auto;
    }
    footer .footer-logo img{
        position: relative;
        width: 150px;
        height: auto;
        margin: 30px 10px auto;
        /* -webkit-box-pack: center;
            -ms-flex-pack: center; */
                justify-content: center;
    }
    footer .footer-inner{
      max-width: 390px;
      width: auto;
      margin: 0 auto;
      text-align: center;
      padding: 0;
    }

    .footer-inner a{
        font-size: 5rem;
    }
    footer .address{
        font-size: 1.8rem;
    }
    footer{
      margin: 0 auto;
    }
    footer .time-list{
      display: inline;
      font-size: 1.6rem;
      letter-spacing: 0.1em;
    }


    /* }footer .footer-inner .open .time-list {
      font-size: 2rem;
    }
    footer .time-list2{
      font-size: 2rem;
    } */
    footer .footer-inner .time-desc {
      font-size: 1.3rem;
      letter-spacing: 0.5em;
    }
    footer li {
        font-size: 2rem;
    }
    footer li span {
        font-size: 2rem;
    }

    footer .footer-inner .date-list{
      font-size: 1.8rem;
    }
}
/*---------------------
    pc
----------------------*/

@media screen and (min-width:768px){
 body{
     max-width: 960px;
     margin: 0 auto;
 }

  .fb_icon, .ig_icon, .line_icon, .gnav-logo, .gnav-btn-images{
    display: none;
  }
  .menu_icon{
    display: none;
  }

  .gnav{
      position: static;
      padding: 10px 0;
  }

  .gnav-list{
      visibility: visible;
      opacity: 1;
      width: 100%;
      height: auto;
      top: 0;
      background-color: transparent;
      /* -webkit-box-pack: justify;
          -ms-flex-pack: justify; */
              justify-content: space-between;
  }

.gnav-list ul{
    width: 100%;
    /* -ms-flex-wrap: nowrap; */
        flex-wrap: nowrap;
}

.gnav-list li, .gnav-list li:last-of-type{
    width: calc(100% / 5);
}
.gnav-list li:last-of-type{
    margin: 0;
}


  .gnav-list a{
      color:#a00003;
      border: none;
      margin: 0 25%;
  }

.sns li{
     width: calc(100% / 3);
     margin: 0;
     text-align: center;
}


.gnav .gnav-list .current a {
    padding: 0;
}
.gnav .gnav-list a::after {
    border-bottom: 2px solid #a00003;
    bottom: 0;
    content: "";
    display: block;
    transition: all .3s ease;
    /* -webkit-transition: all .3s ease; */
    width: 0;
}
.gnav .gnav-list a:hover::after {
    width: 100%;
}
.gnav .gnav-list .current a::after {
    border-bottom: none;
    bottom: 0;
    content: none;
    display: block;
    transition: all .3s ease;
    /* -webkit-transition: all .3s ease; */
    width: 0;
}
.gnav .gnav-list .current a {
    border-bottom: 2px solid #a00003;

}


.text{
    font-size: 1.8rem;
    margin: 90px 255px;
    text-align: left;
  }
  footer small{
      font-size: 1.2rem;
  }


  .menu li {
      position: relative;
      overflow:hidden;
      transition: all  0.3s ease;
  }
  .menu li:before ,
  .menu li:after {
    content:"";
    display: block;
    width:100%;
    height:5px;
    position: absolute;
    background:blue;

  }

 .menu li:before {
    top:0;
    left:-100%;
 }


  .menu li:after {
     bottom:0;
     right:-100%;
  }
  .menu li:hover:before {
      transition: 0.1s ;
      left:0;
  }

  .menu li:hover:after {
      transition: 0.1s ;
      transition-delay:0.16s;
      right:0;
  }



  .menu li a:before ,
  .menu li a:after {
    content:"";
    display: block;
    width:5px;
    height:100%;
    position: absolute;

  }

  .menu li a:after {
    top:-100%;
    right:0%;
  }


  .menu li a:before {
     bottom:-100%;
     left:0;
  }


  .menu li a:hover:after {
      transition: 0.1s ;
      transition-delay:0.08s;
      top:0;
  }
  .menu li a:hover:before {
      transition: 0.1s ;
      transition-delay:0.24s;
      bottom:0;
  }

  .menu li.upper a:before ,
  .menu li.upper a:after,
  .menu li.upper:before ,
  .menu li.upper:after{
    background:rgba(255,255,255,0.5);
  }

  .menu li.bottom a:before ,
  .menu li.bottom a:after,
  .menu li.bottom:before ,
  .menu li.bottom:after {
    background:#a00003;
  }




}
