/* ==========================================================
   Variables
   ========================================================== */
:root{
  --color-text: #282828;
  --color-white: #ffffff;
  --color-bg-light: #F4F8F9;
  --color-red: #E55A3B;
  --color-green: #369F46;
  --color-brown: #660D0D; 
  --color-bluegray: #BAC7D1;
  --color-darkblue: #46789B; 
  --color-nav-shadow: #CCD7E7;
  --color-nav-line: #BAC7D1;
  --color-hero-shadow: #00355C; 
  --color-footer-line: #D1DFE9; 
  --font-body: "Zen Old Mincho", serif;
  --font-en: "EB Garamond", serif;
  --pc-container: 1120px;
  --header-h: 138px;
}

/* ==========================================================
   Reset
   ========================================================== */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body{
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p{ margin: 0; }
button{ font-family: inherit; background: none; border: none; cursor: pointer; padding: 0; }
svg{ width: 100%; height: 100%; display: block; }
.en{ font-family: var(--font-en); letter-spacing: .12em; font-weight: 500;}

.dot-divider{
   height: 58px;
  background-image:url("images/I-line-parts.svg");
  background-size: auto 12px;
  background-repeat: repeat-x;
  background-position: center;
}
.dot-divider-blue{
  background-color: var(--color-bg-light);
}
.wood-divider {
  width: 100%;
  height: 34px;
  background:url("images/wood-bg.webp");
  background-size: cover;
  border-bottom:5px solid var(--color-text);
}
p span{
  color: var(--color-red);
}
figure.fit-image{
  margin:0;
  padding: 0;
}
.fit-image{
  position: relative;
  overflow: hidden;
}
.fit-image img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ==========================================================
   SECTION-TITLE
   ========================================================== */
.section-title {
font-family: var(--font-body);
font-size:19px;
text-align: center;
margin-inline:auto;
padding-top: 60px;
background-repeat: no-repeat;
line-height: 1.3rem;
margin-bottom: 50px;
}
.section-title span{
font-family: var(--font-en);
font-size:12px;
letter-spacing: 0.1rem;
text-align: center;
}
/* ==========================================================
   BREAKS-LINE
   ========================================================== */
.breaks-line{
width: 100%;
height: 10px;
background-image: url("images/bluegray-line-side.svg"),url("images/bluegray-line.svg"),url("images/bluegray-line-side.svg");
background-repeat: no-repeat, repeat-x, no-repeat;
background-position: left center, center center, right center;
margin-top: 8px;
margin-bottom: 8px;
}

section{ position: relative; padding-bottom: 100px; }
section[id]{
  scroll-margin-top: 150px;
}
/* ==========================================================
   予約ボタン / LINEボタン 共通パーツ
   ========================================================== */
.btn-reserve{
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-red);
  padding: 14px 26px;
  text-align: center;
  line-height: 1.3;
}
.btn-line{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--color-green);
  color: var(--color-white);
  padding: 10px 16px 12px 16px;
  margin-top: 12px;
}
/* ==========================================================
   HEADER
   ========================================================== */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  border-top: 5px solid var(--color-text);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.header__inner{
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
}
.logo{
  flex: none;
}
.gnav{
  box-shadow: 0 0 10px 0 var(--color-nav-shadow); 
}
.gnav__list{
  display: flex;
  align-items: center;
  border-right: none;
}
.gnav__reserve{
  padding: 14px 28px;
}
.gnav__reserve img{
  width: 100px;
  height: auto;
}
.gnav{
  box-shadow: 0 0 10px 0 var(--color-nav-shadow); 
   display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.gnav__list{
  display: flex;
  align-items: center;
  border-right: none;
}
.gnav__list li{
  background-image: url("images/nav-bg-line.svg");
  background-position: left center;
  background-repeat: no-repeat;
}
.gnav__list li:first-of-type{
  background: none;
}
.gnav__list a{
  display: block;
  padding: 25px 20px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.gnav__reserve{
  padding: 14px 28px;
}
.hamburger{ display: none; }

/* SPナビ（オーバーレイ） */
.sp-nav__overlay{
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 199;
}
.sp-nav{
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}
.sp-nav.is-open{ transform: translateX(0); }
.sp-nav__overlay.is-open{ display: block; }
.sp-nav__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--color-bluegray);
}
.sp-nav__close{ width: 32px; height: 32px; }
.sp-nav__close img{width: 100%; height: auto;}
.sp-nav__list li{ border-bottom: 1px solid var(--color-bluegray); }
.sp-nav__list a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 30px;
  font-size: 15px;
}
.sp-nav__arrow{
  width: 24px; height: 24px;
  padding: 3px;
  flex: none;
}
.sp-nav__reserve{ margin: 24px 22px; justify-content: center; }

/* ==========================================================
   HERO
   ========================================================== */
.hero{
  background-image: url("images/mainimage-cover-pc.webp");
  background-size: cover;
  background-position: center center;
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
}
.hero__logo{
  width: 200px;
  height: 160px;
  padding-left: 40px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}
.hero__logo img{
-webkit-filter: drop-shadow(0px 0px 10px var(--color-hero-shadow)); 
filter: drop-shadow(0px 0px 10px var(--color-hero-shadow)); 
}
.hero__text{
  font-size: 23px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0px 0px 10px rgba(0,34,48,1);
}
.hero__nowrap{
  white-space: nowrap; 
}
.hero__nowrap{
  color: var(--color-white);
}
/* ==========================================================
   CONCEPT
   ========================================================== */
.concept__body{
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}
.concept .section-title{
background-image: url("images/concept-title.svg");
width: 344px;
min-height: 108px;
margin-top: 50px;
}
.concept__img{
  width: 35%;
  align-items: flex-start;
  flex: none;
}
.concept__text{
  font-size: 15px;
  line-height: 1.8;
}

/* ==========================================================
   SERVICE（お料理）/ COURSE（コース）共通の帯背景
   ========================================================== */
.service, .course{
  background-color: var(--color-bg-light);
  background-size: 14px 14px;
  padding-top: 50px;
}
.service .section-title{
background-image: url("images/service-title.svg");
width: 344px;
min-height: 86px;
}
.service__body{
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}
@media (min-width: 769px){
.service__body .image-block,.course__body .image-block{
max-width: 470px;
width: 100%;
}
}
.service__img{
  width: 35%;
  min-height: 420px;
  align-items: flex-start;
  flex: none;
}
.service__texts{
  width: 65%;
  line-height: 1.8;
}
.course .section-title{
background-image: url("images/course-title.svg");
width: 344px;
min-height: 90px;
}
.course__body{
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  line-height: 1.8;
  align-items: stretch;
}
.course__body ul{
  list-style-type: circle;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.service__text-col{
    width: 56%;
}
.course__img{
  width: 44%;
  align-items: flex-start;
  flex: none;
}

/* ==========================================================
   RESERVATION（ご予約方法）
   ========================================================== */
.reservation .section-title{
background-image: url("images/reservation-title.svg");
width: 344px;
min-height: 108px;
margin-top: 50px;
}
.reservation__top{
  display: flex;
  max-width: var(--pc-container);
  margin: 0 auto;
  align-items: stretch; 
  gap: 30px;
  padding: 0 24px;
}
.reservation__imgs{
  width: 34%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reservation__imgs figure{
  flex: 1;
  min-height: 200px;
}
.reservation__lead{ flex: 1; }
.reservation__label{
  color: #5f8fa8;
  font-size: 13px;
  border-bottom: 1px solid var(--color-bluegray);
  padding-bottom: 10px;
  margin: 24px 0 20px;
}
.steps{
  display: flex;
  gap: 22px;
  margin-bottom: 24px;
  width: 100%;
}
.steps__item{
  padding: 0;
  margin: 0;
  width: 33.33%;
}
.steps__item figure{
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.steps__item figure img{
    width: 100%;
  height: auto;
}
.steps__text{ font-size: 15px; line-height: 1.7; }
.reservation__note{
  position: relative;
  background: var(--color-bg-light);
  font-size: 15px;
  padding: 16px 0 0 0;
  margin-top: 8px;
  text-align: center;
  position: relative;
}
.reservation__note p{
   padding: 0 20px;
}
.reservation__note figure,.reservation__note img{
  width: 100%;
  height: 30px;
  margin: 0;
}
.reservation__note figure{
  margin-top: 10px;
}
.reservation__small-heading {
  margin: 15px 0 12px;
  padding: 4px 0 6px 0;
  font-size: 16px;
  color: var(--color-darkblue);
  border-top: 1px solid var(--color-bluegray);
  border-bottom: 1px solid var(--color-bluegray);
  text-align: center;
  font-weight: 600;
}
/* 重要 二重枠ボックス */
.important{
  max-width: var(--pc-container);
  margin: 90px auto 0;
  padding: 0 24px;
}
.important-title {
  background-image: url("images/important-title-icon.svg");
  background-repeat: no-repeat;
  background-position: 20px center;
  line-height: 30px;
  margin-bottom: 22px;
  margin-inline:auto;
  padding-left: 50px;
  width: fit-content;
  background-color: var( --color-white);
  padding: 0 20px 0 70px;
}
.important-title h2{
font-family: var( --font-body);
font-size:19px;
text-align: center;
}
.important-title h2 span{
font-family: var( --font-en);
font-size:12px;
letter-spacing: 0.1rem;
text-align: center;
margin: 0;
}
.important-title p{
  font-size:15px;
  text-align: center;
  position: relative;
  width:100%;
  margin-inline: auto;
}
.important-title p:before, .important-title p:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 65px;
  height: 1px;
  background-color: var( --color-red);
}
.important-title p:before {
  left:15px;
}
.important-title p:after {
  right: 15px;
}

.important__box{ width: 56px; height: 66px; flex: none; }
.important__title{ text-align: center; }
.important__label{
  display: inline-block;
  color: var(--color-red);
  font-size: 13px;
  letter-spacing: .3em;
  position: relative;
  padding: 0 16px;
}
.important__label::before, .important__label::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: var(--color-red);
}
.important__frame-line{
  border: 3px solid var(--color-brown);
  padding: 8px;
  margin-top: -70px;
  position: relative;
    z-index: -10;
}
.important__frame{
  border: 1px solid var(--color-brown);
  padding: 100px 60px 50px 60px;
}
.important__item{
  display: flex;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 46px;
}
.important__item:last-child{ margin-bottom: 0; }
.important__item--reverse{ flex-direction: row-reverse; }
.important__img{
  width: 300px;
  align-items: flex-start;
  flex: none;
  min-height: 160px;
}
.important__content{ flex: 1; }
.important__check{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  background-image: url("images/title-check-icon.svg");
  background-repeat: no-repeat;
  padding-left: 35px;
  background-position: left center;
}
.important__text{ font-size: 15px; line-height: 2; text-align: justify;}
.important__content--reservation,important__content-parking{
  align-content: center; 
}
 .important__item--reservation .fit-image img {
  object-position: center bottom;
}
/* ==========================================================
   ACCESS
   ========================================================== */
.access{ background: var(--color-bg-light);
padding-top: 50px;
}
.access .section-title{
background-image: url("images/access-title.svg");
width: 291px;
min-height: 102px;
}
.access__body{
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 60px;
}
.access__col-left{ flex: 1.15; }
.access__col-right{ flex: 1; }
.access__map{ align-items: flex-start; margin-bottom: 30px; padding: 0;
    margin: 0; }
.access__map iframe{
aspect-ratio: 16 / 9;
    max-width: 1000px;
    width: 100%;
    height: auto;
}
.access__addr-title{
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}
.access__addr-title span{
  font-size: 14px;
}
.access__addr-text{ font-size: 14px; margin-bottom: 30px; }
.access__sub-title{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  background-image: url("images/access-title-icon.svg");
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 10px;
  padding-left: 30px;
  margin-top: 30px;
}
.access__sub-title:not(:first-of-type){ margin-top: 26px; }
.leaf-icon{ font-size: 13px; }
.access__sub-text{ font-size: 15px; line-height: 1.8; margin-top: 10px;}
.access__col-right .access__sub-title:first-of-type{margin-top: 0;}
.breaks-line--parking{margin-bottom: 15px;}
.access__photo{ height: 300px; align-items: flex-start; margin-bottom: 24px; margin-top: 10px;}
 .access__video {
  width: min(100%, 280px);
  aspect-ratio: 9 / 16;
  align-items: flex-start; margin-top: 24px;
  margin-inline: auto;
}

 .access__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ==========================================================
   PROFILE
   ========================================================== */
.profile__body{
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 30px;
}
.profile .section-title{
background-image: url("images/profile-title.svg");
padding-top: 40px;
width: 278px;
min-height: 105px;
margin-top: 50px;
}
.profile__img{
  width: 40%;
  flex: none;
  align-items: flex-start;
}
.profile__col{ flex: 1; }
.profile__title{
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}
.profile__title span{
font-size: 13px;
}

.profile__title:not(:first-child){ margin-top: 40px; }
.profile__text{ font-size: 15px; line-height: 1.8; text-align: justify;}
@media (max-width: 1024px){
  .profile__body{
    flex-direction: column;
    gap: 26px;
  }
  .profile__img{
    width: 100%;
    min-height: 60vw;
  }
}
/* ==========================================================
   FOOTER
   ========================================================== */
.footer{ position: relative; background: var(--color-bg-light); border-bottom: 5px solid var(--color-text); }
.footer__wood{
  width: 100%;
  height: 34px;
  background:url("images/wood-bg.webp");
  background-size: cover;
}
.footer__inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;

  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__nav{
  margin-top: 10px;
}
.footer__reserve img{
width: 100px;
height: auto;
}
.footer__reserve{
  height: fit-content;
}
.footer__shopname{ font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.footer__shopname span{font-size: 13px;}
.footer__addr{ font-size: 13px; line-height: 1.8; margin-bottom: 20px; }
.footer__nav ul{ display: flex; gap: 18px; flex-wrap: wrap; }
.footer__nav a{ font-size: 15px; }
.footer__copyright{
  text-align: right;
  font-family: var(--font-en);
  font-size: 16px;
  padding: 0 24px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ==========================================================
   RESPONSIVE — SP (max-width : 768px)
   ========================================================== */
  @media (max-width: 1100px){
   /* --- Header / Nav --- */
  .header__inner{ padding: 12px 16px; }
  .logo{ padding: 14px 20px; }
  .logo img{ max-width: 200px; width: 100%; height: auto;}
  .gnav{ display: none; }
  .hamburger{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    width: 40px;
    height: 40px;
  }
  .hamburger span{
    display: block;
    height: 2px;
    background: var(--color-text);
  }
  .sp-nav__reserve{ box-shadow: none; }
}
@media (max-width: 768px){

  body{ font-size: 15px; }

  /* --- Hero --- */
  .hero{ padding: 40px 20px 50px; }
  @media (max-width: 768px){
  .hero{
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("images/mainimage-cover-sp.webp");
  }
}
  .hero__dummy-label{ top: 10px; right: 16px; font-size: 10px; }
  .hero__logo{ width: 150px; height: 120px; margin-bottom: 24px; font-size: 13px; }
  .hero__text{ font-size: 18px; }

  section{ padding-bottom: 60px; }

  /* --- Concept / Service / Course --- */
  .concept__body,
  .service__body,
  .course__body,
  .reservation__top,
  .access__body,
  .profile__body{
    flex-direction: column;
    padding: 0 20px;
    gap: 26px;
  }
  .concept__img,
  .service__img,
  .course__img{
    margin-left: 0;
    width: 100%;
    min-height: 320px;
  }
  .service__body{ flex-direction: column-reverse; }
  .service__text-col{
    width: 100%;
}
  /* --- Reservation --- */
  .reservation__imgs{ width: 100%; flex-direction: row; gap: 5px;}
  .reservation__imgs figure{ height: 130px; }
  .steps{ gap: 26px; }
  .steps__img{ height: 150px; }
  .important{ margin-top: 50px; padding: 0 20px; }
  .important__frame{ padding: 46px 20px 26px 20px; border-width: 4px; }
  .important__item,
  .important__item--reverse{
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
  }
  .important__img{ width: 100%; height: 300px; }
.important__frame-line{
  border: 3px solid var(--color-brown);
  padding: 6px;
  margin-top: -70px;
  position: relative;
    z-index: -10;
}
.important__frame{
  border: 1px solid var(--color-brown);
  padding: 80px 20px 40px 20px;
}
  /* --- Access --- */
 .access__video {
  width: min(100%);
  aspect-ratio: 9 / 16;
  margin: 24px auto 0;
}
 .access__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
  .access__photo{ height: 200px; }

  /* --- Profile --- */
  .profile__img{
    width: 100%;
    min-height: 80vw;
  }
  /* --- Footer --- */
  .footer__inner{
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
  }
  .footer__nav ul{ flex-direction: column; gap: 4px; }
  .footer__nav a{ display: block; padding: 16px 0; text-align: center; width: 100%;}
  .footer__reserve{ width: 100%; justify-content: center; }
  .footer__copyright{ text-align: center; padding: 0 20px 20px; }
  .footer__nav{width: 100%;}
  .footer__nav li{ border-top: var(--color-footer-line) solid 1px; width: 100%;}
}
@media (max-width: 540px){
    /* --- Reservation --- */
  .steps{ flex-direction: column;}
  .steps__item,.steps__item:first-of-type div{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .steps__item p,.steps__item figure{
     width: calc(50% - 10px);
  }
   .steps__item figure img{
    width: 100%;
    height: auto;
  }
  .steps__img{ height: 150px; }
  .steps__item:first-of-type{
    display: block;
  }
   /* --- Important --- */
  .important-title {
  background-position: 10px center;
  padding: 0 0 0 60px;
}
.important-title h2{
font-size:16px;
}
.important-title h2 span{
font-size:11px;
}
.important-title p{
  font-size:14px;
}
  .important__img {
    height: 220px;
  }
}
@media screen and (max-width: 340px) {
  .important__img {
    height: 200px;
  }
}
/* ==========================================================
   Animation
   ========================================================== */
.fade-in{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.is-visible{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .fade-in{ transition: none; transform: none; opacity: 1; }
}