@charset "utf-8";

/* common */
body{
    animation-name:fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;    font-family: "fot-tsukumin-pr6n", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #5a5a5a;
    letter-spacing: 0.1em;
}
@keyframes fadeInAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
a {
    transition: 0.5s;
}
a:hover {
    opacity: 0.5;
}
.pc_only{display:block}
.sp_only{display:none}

.txt a{
    text-decoration: underline;
}
.txt_wh a{
    color: #fff;
}
.img100{
    width: 100%;
}
.fs12{
    font-size: 12px
}
.fs18{
    font-size: 18px
}
.ps_r{
    position: relative;
}
.t_center{
    text-align: center;
}
.justify{
    text-align:justify;
    word-break:break-all; 
    text-justify:inter-ideograph;
    text-justify:inter-character;
    word-wrap:break-word;
    overflow-wrap:break-word;
}
.mt10{
    margin-top: 10px;
}
.sec_mt{
    margin-top: 120px;
}
.sec_wrap{
    width: min(720px, 90%);
    margin-inline: auto;
}
header{
    position: fixed;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-inline: 4%;
    width: 100%;
    height: 80px;
    transition: all 1s ease;
}
header.scrolled {
    background-color: rgba(51, 51, 51, 0.5);
    transform: translateY(0px);
}
header h1{
    width: 64px;
}
header .head_nav_list{
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: auto;
    color: #fff;
    font-size: 14px;
}
header .head_nav_list a{
    color: #fff;
}
header .head_nav_list img{
    width: 30px
}
.mv{
    position: relative;
    top: 0;
    width: 100%;
}
.mv img{
    height: 100vh;
    object-fit: cover;
}
.mv .mv_txtbox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:2;
    text-align: center;
    color: #fff;
    line-height: 2;
}
.mv .mv_open_date{
    font-size: 37px;
}
.mv .mv_open_date span{
    font-size: 27px;
    margin-left: 3px;
}
.mv .mv_open{
    font-size: 29px;
    margin-top: -10px
}
.mv .reserve_wrap a{
    position: fixed;
    bottom: 5%;
    right: 3%;
    display:flex;
    flex-flow: column;
    justify-content: center;
    background-color: #42646f;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
    z-index: 999;
}
.mv .reserve_wrap p:first-child{
    font-size: 18px;
    margin-bottom:10px;
}
.tronc{
    font-size: 15px;
}
.logo_txt{
    width: 250px;
}
.tronc p{
    line-height: 2;
    margin-top: 40px;
}
.chef_wrap{
    border-top: 0.5px solid #5a5a5a;
    border-bottom: 0.5px solid #5a5a5a;
    padding-block: 50px;
}
.chef{
    width: min(360px, 90%);
    margin-inline: auto;
}
.chef .chef_ph{
    width: 100%;
}
.chef .chef_pro{
    font-size: 12px;
    line-height: 2;
}
.chef .chef_pro span{
    display: block;
    font-size: 21px;
    margin-top: 25px;
    margin-block: 30px 0px;
    line-height: 1;
}
.chef .chef_txtbox{
    font-size: 13px;
}
.chef .chef_txt{
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0;
    margin-top: 30px;
}
.countdown_wrap{
    background-color: #42646f;
    padding-block: 50px;
}
.countdown_wrap .countdown_nub{
    color: #fff;
    font-size: 48px;
}
.access_wrap .access_ttl{
    margin-bottom: 20px;
    font-size: 24px;
}
.access_wrap img{
    margin-top: 30px;
    border: 1px solid #42646f;
}
.footer_wrap .mail a {
    background-color: #a6a6a6;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
    padding: 20px 100px;
    display: inline-block;
    margin-bottom: 40px;
}
.footer_wrap .copyright{
    font-size: 12px;
    margin-bottom: 60px;
}

/* スクロールでふわっと */
.fade_in {
    opacity: 0;
    transform: translateY(10px); /* 初期位置を下に */
    transition: opacity 2s, transform 2s; /* スムーズに変化 */
  }
  
  /* スクロールで要素が見えたらふわっと出る */
  .fade_in.visible {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
  }

  @media screen and (max-width: 800px) {
    .pc_only{display:none}
    .sp_only{display:block}
    .mv .reserve_wrap a{
        width: 120px;
        height: 120px;
    }
    .mv .reserve_wrap p:first-child{
        font-size: 15px;
        margin-bottom:10px;
    }
    .tronc{
        font-size: 15px;
    }
  }