:root {
  --c-text:#5A3E36;
  --c-text-eng:#A2797B;
  --c-white:#fff;
  --c-muted:#ABABAB;
  --c-primary:#6c5758;
  --c-primary-weak:rgba(162,121,123,0.3);
  --c-bg:#ffffff;
  --t-serif: "Noto Serif JP", serif;
  --t-lora:'Lora', serif;
  --t-inter:"Inter", sans-serif;
  --shadow:0 6px 20px rgba(24,39,75,.06);
}
body {
  margin: 0;
  font-family: var(--t-lora);
  color: var(--c-text);
  background-color: #fff;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
body,
a,
button,
input,
textarea,
select {
  cursor: none !important;
}
.pc-none {
  display:none;
}
img {
  max-width:100%;
  height:auto;
  display:block;
}
hr {
  background: var(--c-text-eng);
}
h1 {
  font-size: min(40px,2.7vw);
  font-weight:500;
  letter-spacing:0.1em;
  line-height: 2.8;
}
h2 {
  font-size: min(36px,2.5vw);
  letter-spacing:0.1em;
  font-weight:600;
}
h3 {
  font-size: min(28px,2.1vw);
  letter-spacing:0.1em;
  font-weight:600;
}
h4 {
  font-size: min(20px,1.4vw);
  letter-spacing:0.1em;
  font-weight:700;
}
h5,
h6 {
  font-size: min(16px,1.1vw);
  letter-spacing:0.1em;
  font-weight:500;
}
a {
  color:inherit;
  text-decoration:none;
  font-weight:400;
}
p {
  font-family:var(--t-inter);
  letter-spacing: 0.1em;
}
li {
  list-style-type: none;
}

@media screen and (max-width:1024px) and (min-width:769px) {
  body {
    font-size:min(16px,1.5vw);
  }
  h3,
  h4 {
    font-size: min(20px,1.8vw);
    letter-spacing:0.1em;
    font-weight:700;
  }
}
@media screen and (max-width:768px) {
  .pc-none {
    display:block;
  }
  .sp-none {
    display:none;
  }
  body {
    font-size:min(12px,3.2vw);
  }
  h1 {
    font-size: min(24px,6.4vw);
  }
  h2 {
    font-size: min(20px,5.3vw);
  }
  h3,
  h4 {
    font-size: min(18px, 4.8vw);
  }
  h5,
  h6 {
    font-size: min(16px,4.2vw);
    letter-spacing:0.1em;
    font-weight:500;
  }
  br {
    line-height:5px;
  }
}

/* animation */
:root{
  --reveal-duration:  1s;                 /* 速くしたいほど小さく */
  --reveal-ease: cubic-bezier(.2,.7,.2,1);
  --wipe-softness: 0px;
  --reveal-tx: 0px;
  --reveal-ty: 12px;
}
/* reveal--fadeup（下から上） */
.reveal--fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--reveal-duration) var(--reveal-ease),
              transform var(--reveal-duration) var(--reveal-ease);
  will-change: opacity, transform;
}
.reveal.is-inview.reveal--fadeup {
  opacity: 1;
  transform: none;
}

/* reveal--fadein（右から左） */
.reveal--fadein {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--reveal-duration) var(--reveal-ease),
              transform var(--reveal-duration) var(--reveal-ease);
  will-change: opacity, transform;
}
.reveal.is-inview.reveal--fadein {
  opacity: 1;
  transform: none;
}

/* prefers-reduced-motion対応（すべてまとめて） */
@media (prefers-reduced-motion: reduce) {
  .reveal--fadeup,
  .reveal--fadein,
  .reveal.is-inview.reveal--fadeup,
  .reveal.is-inview.reveal--fadein {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* reveal--alpha */
.reveal--alpha{
  /* テキストにも効くように inline-block 推奨 */
  display:inline-block;
  will-change: -webkit-mask-size, mask-size;
  /* マスク画像：右端だけ透明へフェード */
  -webkit-mask-image: linear-gradient(90deg,
      #000 0,
      #000 calc(100% - var(--wipe-softness)),
      transparent 100%);
          mask-image: linear-gradient(90deg,
      #000 0,
      #000 calc(100% - var(--wipe-softness)),
      transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;

  /* 初期：幅0% = 全面マスク（非表示） */
  -webkit-mask-size: 0% 100%;
          mask-size: 0% 100%;
  transition:
    -webkit-mask-size var(--reveal-duration) var(--reveal-ease),
            mask-size var(--reveal-duration) var(--reveal-ease);
}
/* 表示トリガー後：幅100%まで広げる＝左から順に不透明へ */
.reveal.is-inview.reveal--alpha{
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
/* フォールバック（古いブラウザ）：通常の左→右フェード風に */
@supports not ((mask-image: linear-gradient(to right, #000, transparent)) or
              (-webkit-mask-image: linear-gradient(to right, #000, transparent))){
  .reveal--alpha{
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--reveal-duration) var(--reveal-ease),
                transform var(--reveal-duration) var(--reveal-ease);
  }
  .reveal.is-inview.reveal--alpha{
    opacity: 1; transform: none;
  }
}
/* =========================
  wipe-up（下から上）
========================= */
.reveal--up {
  display: inline-block;
  will-change: mask-size, -webkit-mask-size;
  -webkit-mask-image: linear-gradient(180deg,
      #000 0,
      #000 calc(100% - var(--wipe-softness)),
      transparent 100%);
          mask-image: linear-gradient(180deg,
      #000 0,
      #000 calc(100% - var(--wipe-softness)),
      transparent 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 0%;
          mask-size: 100% 0%;
  transition:
    -webkit-mask-size var(--reveal-duration) var(--reveal-ease),
            mask-size var(--reveal-duration) var(--reveal-ease);
}

.reveal.is-inview.reveal--up {
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
/* =========================
  wipe-right（右から左）
========================= */
.reveal--right {
  display: inline-block;
  will-change: -webkit-mask-size, mask-size;
  -webkit-mask-image: linear-gradient(270deg, /* ← 右から左へ */
    #000 0,
    #000 calc(100% - var(--wipe-softness)),
    transparent 100%);
  mask-image: linear-gradient(270deg,
    #000 0,
    #000 calc(100% - var(--wipe-softness)),
    transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 0% 100%;
  mask-size: 0% 100%;

  transition:
    -webkit-mask-size var(--reveal-duration) var(--reveal-ease),
            mask-size var(--reveal-duration) var(--reveal-ease);
}
.reveal--right.is-inview {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
/* フォールバック（古いブラウザ） */
@supports not ((mask-image: linear-gradient(to left, #000, transparent)) or
              (-webkit-mask-image: linear-gradient(to left, #000, transparent))) {
  .reveal--up {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--reveal-duration) var(--reveal-ease),
                transform var(--reveal-duration) var(--reveal-ease);
  }
  .reveal.is-inview.reveal--up {
    opacity: 1;
    transform: none;
  }
  .reveal--right {
    opacity: 0;
    transform: translateX(8px);
    transition: opacity var(--reveal-duration) var(--reveal-ease),
                transform var(--reveal-duration) var(--reveal-ease);
  }
  .reveal.is-inview.reveal--right {
    opacity: 1;
    transform: none;
  }
}

/* マウスカーソル */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--c-primary-weak);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.2s ease, background-color 0.3s;
}
.cursor.is-hover {
  transform: translate(-50%, -50%) scale(2);
}
@media screen and (max-width:1024px) {
.cursor {
  display: none;
}
}

/* Header */
.header {
  background-color: #fff;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header__bar {
  max-width:1200px;
  display:flex;
  align-items:center;
  justify-content: center;
  height:40px;
  margin:0 auto;
}
.site-header__brand {
  position: absolute;
  left: 2.5%;
}
.site-header__logo {
  width:120px;
  height:auto;
  margin: 7.5% 5%;
}
.gnav__toggle {
  display:none;
}
.gnav__menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.gnav__toggle {
  display:none;
}
.u-sr-only{
  position:absolute; width:1px; height:1px; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

@media screen and (max-width:768px) {
  .site-header__bar {
    justify-content: flex-end;
  }
  .gnav__toggle{
    display:inline-grid;
    place-items:center;
    width:44px;
    height:44px;
    padding:0;
    background:#fff;
    border:0;
  }
  .gnav__toggle:focus-visible{
    outline:2px solid var(--c-primary);
    outline-offset:2px;
  }
  /* 2本線 → ×  */
  .gnav__icon{
    position:relative;
    width:26px;
    height:16px;
    display:block;
    z-index:10000;
  }
  .gnav__icon::before,
  .gnav__icon::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    height:1px;
    background:var(--c-text);
    border-radius:2px;
    transition: top .22s ease, transform .22s ease, background-color .22s ease;
  }
  .gnav__icon::before{
    top:0;
  }
  .gnav__icon::after {
    top:calc(100% - 2px);
  }
  .gnav--open .gnav__icon::before,
  .gnav__toggle[aria-expanded="true"] .gnav__icon::before{
    top:50%;
    transform: translateY(-1px) rotate(45deg);
    background:var(--c-white);
  }
  .gnav--open .gnav__icon::after,
  .gnav__toggle[aria-expanded="true"] .gnav__icon::after{
    top:50%;
    transform: translateY(-1px) rotate(-45deg);
    background:var(--c-white);
  }
  /* ドロワーメニュー本体：初期は見えない＆触れない */
  .gnav__menu{
    position:fixed;
    left:0;
    right:0;
    top:64px; /* ヘッダー下から出す */
    display:none;
    flex-direction:column;
    gap:0;
    background:#fff;
    box-shadow:var(--shadow);
    padding:14px 18px;
    z-index:1000;
    /* 非表示コントロール（アニメ可） */
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform: translateY(-12px);
    transition:
      opacity .2s ease,
      transform .2s ease,
      visibility 0s .1s; /* 0.2s後に不可視にする */
    will-change:transform, opacity;
    contain:paint;           /* 子要素のフラッシュ抑止 */
    overflow:hidden;         /* はみ出し抑止（任意） */
  }
  .gnav--open .gnav__menu,
  .gnav.is-animating .gnav__menu{ /* ← 閉じアニメ中だけ表示を維持するため */
    display:flex;
    color:var(--c-white);
  }
  /* 開いた時だけ有効化 */
  .gnav--open .gnav__menu{
    position:absolute;
    top:0;
    left:0;
    height:100vh;
    justify-content: flex-start;
    padding-top: 10vh;
    color:var(--c-white);
    line-height:4;
    opacity:1;
    background: rgba(37,26,23,0.8);
    visibility:visible;
    pointer-events:auto;
    transform:none;
    transition:
      opacity .2s ease,
      transform .2s ease,
      visibility 0s 0s; /* すぐ可視に */
  }
  .gnav.is-animating .gnav__menu{
    height:0;
    visibility:hidden; 
    transform:translateY(-12px);
  }
}

/* mv */
.mv {
  position: relative;
  height:700px;
}
.mv__title {
  position:absolute;
  top:30%;
  left:5%;
  margin-bottom: 2rem;
}
.mv__title-bg {
  background-color: rgba(255,255,255,0.5);
  padding: 0.5em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.mv__accent {
  color: #dba5a5;
}
.mv__image {
  min-width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit:cover;
}

@media screen and (max-width:768px) {
  .mv {
    height: auto;
  }
  .mv__image {
    height: 80vh;
  }
  .mv__title {
    position: absolute;
    top: 20%;
    left: 5%;
  }
}

/* Section */
.section__title-eng {
  font-size:min(80px,5.5vw);
  font-weight:600;
  font-family: var(--t-serif);
  color:var(--c-text-eng);
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
  .l__inner {
    width: 90%;
    margin: 0 auto;
  }
  .section__title-eng {
    font-size:min(40px,10.6vw);
  }
}

/* Concept */
.concept__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.concept__head {
  position:relative;
  margin-bottom: 4rem;
  text-align: left;
}
.concept__title {
  color: #8d7373;
  margin-bottom: 1rem;
}
.concept__lead {
  position: absolute;
  top: 25%;
  right: 0;
  width: 60%;
}
.concept__item {
  position:relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.concept__item1 {
  height: 400px;
}
.concept__item2 {
  height: 450px;
}
.concept__item3 {
  height: 300px;
}
.concept__item--reverse {
  flex-direction: row-reverse;
}
.concept__image1 {
  position: absolute;  
  top: 5%;
  right: 0;
  max-width:600px;
  width: 45vw;
}
.concept__image2 {
  position: absolute;  
  top: 0%;
  left: 10%;
  max-width:300px;
  width: 30vw;
}
.concept__image3 {
  position: absolute;  
  top: -20%;
  right: 10%;
  max-width:450px;
  width: 40vw;
}
.concept__image img {
  width: 100%;
  height: 100%;
}
.concept__text-block1 {
  position: absolute;
  top: 5%;
  left: 0;
  width: 50%;
}
.concept__text-block2 {
  position: absolute;
  top: 10%;
  right: 0;
  width: 50%;
}
.concept__text-block3 {
  position: absolute;
  top: 5%;
  left: 0;
  width: 45%;
}
.concept__number {
  font-family: var(--t-lora);
  font-size: min(120px,8.3vw);
  font-weight:400;
  color: rgba(162,121,123,0.3);
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.concept__subtitle {
  margin-bottom: 0.5rem;
}
.concept__text {
  color: #666;
  line-height: 1.8;
}

@media screen and (max-width:768px) {
  .concept__head {
    margin-bottom: 0;
  }
  .concept__lead {
    position: relative;
    width: 100%;
    margin-top: 30px;
  }
  .concept__item {
    flex-direction: column-reverse;
  }
  .concept__item1,
  .concept__item2,
  .concept__item3 {
    height: auto;
  }
  .concept__number {
    font-size: min(50px, 13.3vw);
  }
  .concept__text-block1,
  .concept__text-block2,
  .concept__text-block3 {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
  }
  .concept__image1,
  .concept__image2,
  .concept__image3 {
    position: relative;
    left: 0;
    right: 0;
    width: 80%;
    margin: 50px 0 30px;
  }
}

/* Menu */
#menu {
  background-color: rgba(238,233,233,0.8);
}
#menu h2,
#menu .section__title-eng {
  text-align: center;
}
.menu__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
.menu__title {
  color: #8d7373;
  margin-bottom: 2rem;
  text-align: center;
}
.menu__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.menu__card {
  background-color: #fff;
  border-bottom: 1px solid var(--c-text-eng);
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}
.menu__card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.menu__card-title {
  font-size: min(20px, 1.4vw);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.menu__card-desc {
  color: var(--c-muted);
  margin-bottom: 1rem;
}
.menu__card-price {
  font-family: var(--t-lora);
  font-size: min(24px, 1.6vw);
  color: var(--c-primary);
  white-space: nowrap;
}
.menu__note {
  margin-top: 2rem;
  text-align: left;
}

@media screen and (max-width:768px) {
  .menu__list {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 50px;
  }
  .menu__card-title {
    font-size: min(14px, 3.7vw);
  }
  .menu__card-price {
    font-size: min(16px, 4.3vw);
  }
}

/* Access */
#access {
  background-color: #F9F7F4;
}
.access__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
#access h2,
#access .section__title-eng {
  text-align: right;
}
.access__info {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin: 50px 0;
}
.access__map {
  width: 50%;
  max-width: 600px;
}
.access__subheading-eng {
  font-size:min(30px,2.1vw);
  font-weight:600;
  font-family: var(--t-serif);
  color:var(--c-muted);
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.access__business-hour {
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .access__info {
    flex-direction: column;
    gap: 30px;
    margin: 0;
    padding: 50px 0;
  }
  .access__map {
    width: 100%;
  }
  .access__subheading-eng {
    font-size: min(24px, 6vw);
    margin-bottom: 20px;
    line-height: 1.5;
  }
}

/* Contact */
#contact {
  background-color: #D9D9D9;
}
#contact h2,
#contact .section__title-eng {
  text-align: center;
}
.contact__inner {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
.contact__title--note {
  margin-top: 20px;
}
.contact__flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.contact__phone,
.contact__mail {
  width: 40%;
  gap: 10px;
  background-color: var(--c-white);
  border-right: 1px solid var(--c-text-eng);
  border-bottom: 1px solid var(--c-text-eng);
  padding: 10px 5%;
}
.contact__line {
  width: 90%;
  gap: 10px;
  background-color: var(--c-white);
  border-right: 1px solid var(--c-text-eng);
  border-bottom: 1px solid var(--c-text-eng);
  padding: 10px 5%;
}
.contact__phone img,
.contact__mail img,
.contact__line img {
  width: 50px;
  height: 50px;
}
.contact__phone p,
.contact__mail p,
.contact__line p {
  font-family: var(--t-lora);
  font-size: min(30px, 2.2vw);
}
.contact__line--note {
  font-family: var(--t-inter)!important;
  font-size: 14px!important;
}
.contact__note {
  font-family: var(--t-inter);
  width: 50%;
  margin: 30px auto 0;
  text-align: left;
}

@media screen and (max-width:768px) {
  .contact__flex {
    gap: 10px;
  }
  .contact__phone img,
  .contact__mail img,
  .contact__line img {
    width: 20px;
    height: 20px;
  }
  .contact__phone p,
  .contact__mail p,
  .contact__line p {
    font-size: min(12px, 3vw);
  }
  .contact__note {
    width: 90%;
  }
}

.footer {
  background-color: #251A17;
  color: var(--c-white);
  padding: 2rem 1rem;
  text-align: center;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  font-size: 0.9rem;
}

@media screen and (max-width:768px) {
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
}