@charset "UTF-8";

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  color:#3f3a36;
  background:#fff;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  font-weight:400;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
  text-decoration:none;
}


/* HEADER */

.header{
  height:68px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  position:relative;
  z-index:20;
}

.logo img{
  width:120px;
  height:auto;
  display:block;
}

.nav{
  display:none;
}

.menu-btn{
  width:40px;
  height:40px;
  border:0;
  background:none;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-end;
  gap:6px;
  cursor:pointer;
}

.menu-btn span{
  width:27px;
  height:1px;
  background:#403a35;
  display:block;
  transition:.25s;
}

.menu-btn.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
  opacity:0;
}

.menu-btn.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* MOBILE MENU */

.nav.open{
  display:flex;
  position:absolute;
  top:68px;
  left:0;
  width:100%;
  padding:18px 24px 25px;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);
  flex-direction:column;
  border-top:1px solid #f0eeeb;
}

.nav.open a{
  padding:13px 0;
  font-size:14px;
  border-bottom:1px solid #eeeae6;
}

.nav.open .nav-reserve,
.nav.open .nav-contact{
  margin-top:8px;
  padding:10px 18px;
  border-radius:30px;
  text-align:center;
}

.nav.open .nav-reserve{
  background:#f5f1ec;
}

.nav.open .nav-contact{
  color:#fff;
  background:#49443f;
}


/* HERO */

.hero{
  position:relative;
  min-height:520px;
  overflow:hidden;
  background:#f8f5ef;
}

.hero-image{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.88) 25%,
      rgba(255,255,255,.48) 58%,
      rgba(255,255,255,.20) 100%
    ),
    url("hero.jpg") center center / cover no-repeat;
}

.hero-content{
  position:relative;
  z-index:1;
  padding:92px 27px 65px;
  max-width:520px;
}

.hero h1{
  font-size:29px;
  font-weight:400;
  line-height:1.75;
  letter-spacing:.08em;
  margin-bottom:25px;
}

.hero-content p{
  font-size:13px;
  line-height:2.3;
  letter-spacing:.06em;
}

.more-btn{
  display:inline-flex;
  align-items:center;
  gap:22px;
  margin-top:30px;
  padding:9px 18px;
  border:1px solid #bcb6b0;
  border-radius:30px;
  font-size:12px;
  background:rgba(255,255,255,.55);
}

.more-btn span{
  font-size:16px;
}


/* SECTION */

.section{
  padding:55px 20px;
  max-width:1100px;
  margin:auto;
}

.section-title{
  margin-bottom:25px;
}

.section-title h2,
.simple-section h2,
.shop h2{
  font-size:22px;
  font-weight:400;
  letter-spacing:.06em;
}


/* NEWS */

.news-list{
  border-top:1px solid #e8e4df;
}

.news-item{
  padding:20px 0 22px;
  border-bottom:1px solid #e8e4df;
}

.news-meta{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}

.news-meta time{
  font-size:11px;
  color:#77716c;
  letter-spacing:.03em;
}

.news-meta span{
  min-width:68px;
  padding:3px 10px;
  background:#f4f0eb;
  border-radius:20px;
  text-align:center;
  font-size:10px;
}

.news-item h3{
  font-size:14px;
  font-weight:500;
  line-height:1.6;
  margin-bottom:6px;
}

.news-item p{
  font-size:12px;
  color:#77716c;
  line-height:1.8;
}


/* FORM */

.forms{
  padding:0 20px 65px;
  max-width:1100px;
  margin:auto;
}

.form-card{
  min-height:125px;
  padding:25px;
  margin-bottom:15px;
  border:1px solid #ddd9d4;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:22px;
  transition:.25s;
}

.form-card:active{
  transform:scale(.99);
}

.form-icon{
  width:50px;
  height:50px;
  flex:none;
  position:relative;
  border-right:1px solid #ddd9d4;
  padding-right:22px;
}


/* 予約アイコン */

.reservation-icon:before{
  content:"";
  position:absolute;
  left:2px;
  top:7px;
  width:28px;
  height:27px;
  border:1.5px solid #514a44;
  border-radius:5px;
}

.reservation-icon:after{
  content:"";
  position:absolute;
  left:2px;
  top:15px;
  width:28px;
  height:1px;
  background:#514a44;
}

.reservation-icon span:before,
.reservation-icon span:after{
  content:"";
  position:absolute;
  top:3px;
  width:4px;
  height:8px;
  border-radius:3px;
  background:#514a44;
}

.reservation-icon span:before{
  left:9px;
}

.reservation-icon span:after{
  left:20px;
}


/* 問い合わせアイコン */

.contact-icon:before{
  content:"";
  position:absolute;
  left:1px;
  top:10px;
  width:30px;
  height:22px;
  border:1.5px solid #514a44;
  border-radius:4px;
}

.contact-icon:after{
  content:"";
  position:absolute;
  left:5px;
  top:13px;
  width:21px;
  height:12px;
  border-left:1.5px solid #514a44;
  border-bottom:1.5px solid #514a44;
  transform:rotate(-45deg) skew(8deg,8deg);
  border-radius:2px;
}

.form-info{
  flex:1;
}

.form-info h2{
  font-size:21px;
  font-weight:400;
  letter-spacing:.07em;
}

.form-info p{
  font-size:11px;
  color:#77716c;
  margin-top:3px;
}

.form-arrow{
  width:42px;
  height:42px;
  flex:none;
  border-radius:50%;
  background:#f5eee5;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
}

.form-note{
  text-align:center;
  font-size:10px;
  color:#88817b;
  margin-top:6px;
}


/* ABOUT */

.simple-section{
  padding:75px 25px;
  text-align:center;
  background:#faf8f5;
}

.section-label{
  display:block;
  margin-bottom:10px;
  font-size:10px;
  letter-spacing:.2em;
  color:#aaa39d;
}

.simple-section h2{
  margin-bottom:20px;
}

.simple-section p{
  max-width:520px;
  margin:auto;
  font-size:13px;
  line-height:2.2;
}


/* SHOP */

.shop{
  padding:75px 25px;
  text-align:center;
}

.shop-info{
  margin:30px auto;
  max-width:360px;
  text-align:left;
  font-size:13px;
  line-height:2.2;
}

.shop-info p{
  margin-bottom:8px;
}

.map-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:360px;
  margin:auto;
  padding:12px 20px;
  border:1px solid #ccc7c1;
  border-radius:30px;
  font-size:12px;
}


/* FOOTER */

.footer{
  padding:50px 20px 80px;
  text-align:center;
  background:#faf8f5;
}

.footer-logo{
  width:130px;
  margin-bottom:25px;
}

.footer p{
  font-size:10px;
  color:#77716c;
}


/* TOP */

.top-btn{
  position:fixed;
  right:18px;
  bottom:18px;
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#eee7df;
  color:#403a35;
  cursor:pointer;
  z-index:10;
}


/* PC */

@media (min-width:768px){

  .header{
    height:76px;
    padding:0 35px;
  }

  .logo img{
    width:140px;
  }

  .menu-btn{
    display:none;
  }

  .nav{
    display:flex;
    align-items:center;
    gap:28px;
    font-size:12px;
  }

  .nav a{
    white-space:nowrap;
  }

  .nav-reserve,
  .nav-contact{
    padding:8px 22px;
    border-radius:30px;
    transition:.2s;
  }

  .nav-reserve{
    border:1px solid #d5d0cb;
    background:#fff;
  }

  .nav-contact{
    color:#fff;
    background:#514a44;
  }

  .nav-reserve:hover{
    background:#f7f4f1;
  }

  .nav-contact:hover{
    opacity:.85;
  }

  .hero{
    min-height:560px;
  }

  .hero-content{
    padding:125px 7%;
  }

  .hero h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:14px;
  }

  .section,
  .forms{
    padding-left:7%;
    padding-right:7%;
  }

  .news-item{
    padding:25px 0;
  }

  .news-meta{
    margin-bottom:10px;
  }

  .news-item h3{
    font-size:15px;
  }

  .form-card{
    min-height:150px;
    padding:35px 50px;
  }

  .form-info h2{
    font-size:25px;
  }

  .simple-section,
  .shop{
    padding:100px 20px;
  }

}