*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
ul li{
    list-style: none;
}
body {
  width: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  color: #fff;
  background: #000;
  opacity: 1;
  transition: opacity 1s ease;
}

img,
video {
  max-width: 100%;
}

body.is-page-leaving {
  opacity: 0;
}

/* 固定背景 */
.bg-fixed {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

header{
   position: fixed;
   width: 100%;
   height: 50px;
   top: 0;
   left: 0;
   z-index: 1000;

}
header nav{
    width: 100%;
    height: 50px;

}
header ul{
    width: 100%;
    height: 50px;
    display: flex;
    gap: clamp(8px, 1.2vw, 18px);
    align-items: center;
    list-style: none;
    padding: 0 16px;
}

header ul .shop-name-link{
    display: flex;
    align-items: center;
    margin-right: auto;
}

header ul img{
    width: clamp(110px, 14vw, 170px);
    height: auto;
}

header ul li{
    flex: 0 0 auto;
}

header ul li a{
    text-decoration: none;
    color: #fff;
    font-size: clamp(0.58rem, 0.9vw, 0.7rem);
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.header-menu{
  display: flex;
  gap: 10px;
}

@media (max-width: 1000px){
    header ul{
        gap: 10px;
        padding: 0 12px;
    }

    header ul img{
        width: 120px;
    }

    header ul li a{
        font-size: 0.56rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 600px){
    header{
        height: auto;
    }

    header nav{
        height: auto;
    }

    header ul{
        display: block;
    }
     .header-menu{
        display:flex;
        flex-wrap:wrap;
        justify-content:flex-start;
        padding:0 10px;
        gap:10px;
    }

        .header-menu li{
        width:22%;
        text-align:center;
    }

    header ul li{
        display: flex;
    }

    header ul img{
        width: 120px;
    }

    header ul li a{
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }
}
mdw-huxx-tof

/* 全体 */
main{
    width: 100%;
    height: auto;
  /* position: relative;
  z-index: 1; */
}

/* salon　ロゴ */
.salon{
    width: 100%;
    height: auto;
    padding: clamp(120px, 16vw, 200px) clamp(120px, 20vw, 300px);
    margin: 0 auto;
    text-align: center;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.salon img{
    width: min(100%, 760px);
    min-width: 320px;
    height: auto;
    margin: 0 auto;
    transform-origin: 50% 60%;
    animation: salonFadeIn 1.8s ease-out both, springBreeze 10s ease-in-out 1.8s infinite;
}

@media (max-width: 900px){
    .salon{
        padding: 120px 56px 90px;
    }

    .salon img{
        width: min(100%, 600px);
        min-width: 300px;
    }
}

.hair-salon{
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.5rem;
    font-size: 2rem;
}

@keyframes salonFadeIn{
    from{
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes springBreeze{
    0%{
        transform: translateX(0) rotate(0deg);
    }
    25%{
        transform: translateX(-12px) rotate(-2.2deg);
    }
    50%{
        transform: translateX(0) rotate(1deg);
    }
    75%{
        transform: translateX(12px) rotate(2.2deg);
    }
    100%{
        transform: translateX(0) rotate(0deg);
    }
}

/* salon　コンセプト */
.concept{
    width: 98%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 100px;
    text-align: center;
    border: 0.5px solid #fff;
}
.concept-frame{
    width: 95%;
    height: 75%;
    margin: 2.5% auto;
    background-color: #e3cdc1c7;
}
.concept-detail {
    width: 100%;
    height: auto;
    display: flex;
}
.concept-left{
    width: 50%;
    height: auto;
}

.concept-detail h2{
    width: 100%;
    padding: 30px;
    text-align: start;
    font-size: 2.5rem;
    color: #00000087;
    opacity: 0.2;
    filter: blur(6px);
    transform: translateY(18px);
    will-change: opacity, filter, transform;
}

@keyframes conceptTitleFadeIn {
    0% {
        opacity: 0.2;
        filter: blur(6px);
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.concept.in-view .concept-detail h2{
    animation: conceptTitleFadeIn 2.5s ease forwards;
}

@keyframes conceptImageFloatIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.concept-detail li{
    width: 100%;
    padding: 30px;
    text-align: start;
    font-size: 1rem;
}
.concept-detail p{
    width: 100%;
    display: flex;
    padding: 0 50px 50px 50px;
    text-align: start;
    font-size: 0.7rem;
}
.concept-right{
    width: 50%;
    height: auto;
}
.concept-right img{
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0;
    object-fit: cover;
    transform: translateY(10px);
    will-change: opacity, transform;
}

.concept.in-view .concept-right img{
    animation: conceptImageFloatIn 2.5s ease forwards;
}

@media (max-width: 1000px){
    .concept{
        height: auto;
        padding: 24px 0;
    }

    .concept-frame{
        height: auto;
        margin: 0 auto;
        padding: 24px 0;
    }

    .concept-detail{
        display: block;
    }

    .concept-left,
    .concept-right{
        width: 100%;
        margin: 0 auto;
    }

    .concept-detail h2{
        padding: 20px 28px 14px;
        font-size: 2.1rem;
    }

    .concept-detail li{
        padding: 0 28px 18px;
    }

    .concept-detail p{
        padding: 0 28px 22px;
    }

    .concept-right img{
        width: 100%;
    }
}

/* blogここから */
.blog{
    width: 98%;
    height: auto;
    padding-bottom: 30px;
    margin: 0 auto;
    background: rgb(255 255 255 / 38%);
    color: #00000087;
}

.blog h2{
    width: 100%;
    height: auto;
    padding: 30px;
    text-align: center;
    font-size: 3rem;
    color: #00000087;
}
.blog-fram{
    width: 100%;
    height: auto;
}
/* .blog1{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    position: relative;
   
}
.blog1::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(184, 155, 143, 0),
      rgba(184, 155, 143, 0.85) 20%,
      rgba(184, 155, 143, 0.85) 80%,
      rgba(184, 155, 143, 0)
    );
}
.blog-detail1{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-detail1 h3{
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.blog-detail1 p{
    width: 50%;
    margin: 0 auto;
    text-align: center;
    
}
.blog1 img{
    width: 60%;
    height: auto;
    margin: 0 auto;
    display: block;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    will-change: transform;
    cursor: pointer;
}
.blog2{
    width: 100%;
    height: auto;
    padding: 50px;
    display: flex;
    margin: 0 auto;
}
.blog-small{
    width: 50%;
    display: flex;
}
.blog-small img{
    width: 60%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    will-change: transform;
    cursor: pointer;
}

.blog1 li:hover img,
.blog-small:hover img{
    transform: scale(1.08);
    box-shadow: 0 18px 30px rgba(31, 24, 20, 0.28);
    filter: saturate(1.05);
}
.blog-small p{
    margin: 0 auto;
   align-items: center;
}

.blog-button {
    min-width: 220px;
    margin: 0 50px 30px auto;
    padding: 12px 24px;
    border: 0.8px solid rgba(62, 48, 43, 0.55);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 246, 238, 0.88), rgba(227, 205, 193, 0.72));
    box-shadow: 0 8px 18px 1px solid rgb(62 48 43 / 24%);
    color: rgba(43, 30, 24, 0.9);
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-button:hover {
    background: linear-gradient(135deg, rgba(255, 250, 246, 0.95), rgba(227, 205, 193, 0.84));
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(64, 49, 44, 0.24);
} */

.news{
    width: 98%;
    height: auto;
    padding-bottom: 30px;
    margin: 0 auto 100px;
    background: rgb(255 255 255 / 38%);
    color: #00000087;
}

.news h2{
    width: 100%;
    height: auto;
    padding: 30px;
    text-align: center;
    font-size: 3rem;
    color: #00000087;
}

.news__list{
    list-style: none;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.news__list li a{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-decoration: none;
    color: #2b1e18;
}

.news__list li:first-child{
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(184, 155, 143, 0.7);
    padding-bottom: 22px;
}

.news__list li:first-child a{
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "date thumb"
      "title thumb";
    align-items: start;
    column-gap: 30px;
    padding: 0 200px;
}

.news__list li:first-child time{
    grid-area: date;
    align-self: end;
}

.news__list li:first-child span{
    grid-area: title;
}

.news__list li:first-child .top-news__thumbnail{
    grid-area: thumb;
}

.news__list li:nth-child(2) a,
.news__list li:nth-child(3) a{
    grid-template-columns: 1.15fr 1fr;
    grid-template-areas:
      "thumb date"
      "thumb title";
    align-items: start;
    column-gap: 18px;
}

.news__list li:nth-child(2) .top-news__thumbnail,
.news__list li:nth-child(3) .top-news__thumbnail{
    grid-area: thumb;
}

.news__list li:nth-child(2) time,
.news__list li:nth-child(3) time{
    grid-area: date;
    align-self: end;
}

.news__list li:nth-child(2) span,
.news__list li:nth-child(3) span{
    grid-area: title;
}

.top-news__thumbnail{
    overflow: hidden;
    border-radius: 10px;
}

.top-news__thumbnail img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    will-change: transform;
}

.news__list li:nth-child(2) .top-news__thumbnail img,
.news__list li:nth-child(3) .top-news__thumbnail img{
    height: 185px;
}

.news__list li:hover .top-news__thumbnail img{
    transform: scale(1.08);
    box-shadow: 0 18px 30px rgba(31, 24, 20, 0.28);
    filter: saturate(1.05);
}

.news__list time{
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(43, 30, 24, 0.7);
}

.news__list span{
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1000px){
    .news{
        padding-bottom: 22px;
    }

    .news__list{
        display: block;
        padding: 0 28px;
        margin-bottom: 20px;
    }

    .news__list li{
        margin-bottom: 26px;
    }

    .news__list li:first-child{
        border-bottom: 0;
        padding-bottom: 0;
    }

    .news__list li:first-child a,
    .news__list li:nth-child(2) a,
    .news__list li:nth-child(3) a{
        display: block;
        padding: 0;
        grid-template-columns: none;
        grid-template-areas: none;
        column-gap: 0;
    }

    .news__list li:first-child .top-news__thumbnail,
    .news__list li:nth-child(2) .top-news__thumbnail,
    .news__list li:nth-child(3) .top-news__thumbnail{
        width: 80%;
        margin: 0 auto 12px;
        margin-bottom: 10px;
    }

    .news__list li:first-child .top-news__thumbnail img,
    .news__list li:nth-child(2) .top-news__thumbnail img,
    .news__list li:nth-child(3) .top-news__thumbnail img{
        height: clamp(220px, 38vw, 300px);
    }

    .news .blog-button{
        min-width: 180px;
        margin: 24px 28px 18px auto;
        padding: 10px 18px;
        font-size: 0.82rem;
    }
}

@media (max-width: 1400px) and (min-width: 1001px) {
  .news__list li:first-child a {
    display: grid;
    grid-template-columns: 1fr 340px;
    align-items: stretch;
    column-gap: 30px;
    padding: 0 200px;
    grid-template-areas:
      "date thumb"
      "title thumb";
    min-height: 320px;
  }
  .news__list li:first-child time {
    grid-area: date;
    align-self: end;
  }
  .news__list li:first-child span {
    grid-area: title;
  }
  .news__list li:first-child .top-news__thumbnail {
    grid-area: thumb;
    width: 340px;
    min-width: 340px;
    max-width: 340px;
    aspect-ratio: 4/5;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
  }
  .news__list li:first-child .top-news__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/5;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
  }
}
/* bolgここまで */
/* bolg　detailページ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif;
  background: #fff;
  color: #222;
  padding: 32px 24px;
}

/* セクションタイトル */
.blogs{
    width: 100%;
    height: 100%;
    padding: 50px;
    background-color: #ffffff4e;
}
.blogs__title {
  font-size: 2.5rem;
  padding-bottom: 50px;
  padding-left: 25px;
  letter-spacing: 0.04em;
  color: #111;
}

/* グリッド */
.blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}

/* カード */
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}

/* 画像 */
.blog-card__image {
  width: 90%;
  margin: 0 auto;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 5px;
  box-shadow: 0 10px 24px rgba(36, 24, 18, 0.12);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

/* テキスト */
.blog-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blog-card__name {
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #222;
}

/* .blog-card__price {
  font-size: 0.85rem;
  color: #222;
}

.blog-card__price span {
  font-size: 0.78rem;
  color: #555;
} */

/* bolg　detailページここまで */

/* hairstyleここから  */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* セクション全体 */
.craft {
  width: 98%;
  margin: 110px auto;
  padding: 28px;
  background: rgba(245, 245, 245, 0.4);
}

.craft__eyebrow {
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.craft__title {
  font-size: 1.9rem;
  color: #222;
  font-family: 'Libre Baskerville', serif;
  margin-bottom: 20px;
}

.craft__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 16px;
}

.craft__card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.craft.in-view .craft__card {
  opacity: 1;
  transform: translateY(0);
}

.craft.in-view .craft__card:nth-child(2) { transition-delay: 0.05s; }
.craft.in-view .craft__card:nth-child(3) { transition-delay: 0.1s; }
.craft.in-view .craft__card:nth-child(4) { transition-delay: 0.15s; }
.craft.in-view .craft__card:nth-child(5) { transition-delay: 0.2s; }
.craft.in-view .craft__card:nth-child(6) { transition-delay: 0.25s; }
.craft.in-view .craft__card:nth-child(7) { transition-delay: 0.3s; }
.craft.in-view .craft__card:nth-child(8) { transition-delay: 0.35s; }

.craft__card a {
  display: block;
  text-decoration: none;
  color: #222;
}

.craft__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
}

.craft__card p {
  font-size: 0.63rem;
  color: #666;
  line-height: 1.4;
}

.craft__card:hover img {
  transform: scale(1.03);
}

/* top stylegallery */
.list-grid {
  width: 98%;
  margin: 90px auto 110px;
}

.top_blog {
  padding: 16px 18px 26px;
  background: rgb(255 255 255 / 38%);
}

.top_blog__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px;
}

.top_blog__eyebrow {
  font-size: 2.68em;
  color: #444;
  letter-spacing: 0.02em;
}

.top_blog__menu {
  border: 0;
  background: transparent;
  color: #777;
  font-size: 1rem;
  line-height: 1;
  cursor: default;
}

.top_blog__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3 minmax(0, 1fr));
  gap: 10px;
}

.top_blog__item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.top_blog.in-view .top_blog__item {
  opacity: 1;
  transform: translateY(0);
}

.top_blog.in-view .top_blog__item:nth-child(2) { transition-delay: 0.05s; }
.top_blog.in-view .top_blog__item:nth-child(3) { transition-delay: 0.1s; }
.top_blog.in-view .top_blog__item:nth-child(4) { transition-delay: 0.15s; }

.top_blog__link {
  text-decoration: none;
  color: #222;
  display: block;
}

.top_blog__thumb {
  background: #ececec4f;
  overflow: hidden;
  position: relative;
}

.top_blog__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.top_blog__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.45s ease;
  pointer-events: none;
}

.top_blog__item:hover .top_blog__thumb img {
  transform: translateY(-8px) scale(1.02);
  filter: brightness(1.08);
}

.top_blog__item:hover .top_blog__thumb::after {
  background: rgba(255, 255, 255, 0.14);
}

.top_blog__meta {
    margin: 0 auto;
    text-align: center;
  padding-top: 5px;
}

.top_blog__title {
  font-size: 1rem;
  color: #777;
  font-weight: 400;
  line-height: 1.35;
}

.top_blog__date {
  margin-top: 2px;
  font-size: 0.7rem;
  color: #909090;
}

.stylegallery-button,
.blog-button {
  min-width: 220px;
  margin: 50px 50px 30px auto;
  padding: 12px 24px;
  border: 0.8px solid rgba(62, 48, 43, 0.55);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(255, 246, 238, 0.88), rgba(227, 205, 193, 0.72));
  box-shadow: 0 8px 18px rgba(64, 49, 44, 0.24);
  color: rgba(43, 30, 24, 0.9);
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.stylegallery-button:hover,
.blog-button:hover {
  background: linear-gradient(135deg, rgba(255, 250, 246, 0.95), rgba(227, 205, 193, 0.84));
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(64, 49, 44, 0.24);
}

@media (max-width: 1000px) {
  .craft__grid {
    grid-template-columns: 1fr;
    gap: 32px 16px;
  }

  .top_blog__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .top_blog,
  .news {
    text-align: center;
  }

  .top_blog__thumb,
  .news__list li:first-child .top-news__thumbnail,
  .news__list li:nth-child(2) .top-news__thumbnail,
  .news__list li:nth-child(3) .top-news__thumbnail {
    width: 80%;
    max-width: 760px;
    margin: 0 auto 12px;
  }

  .top_blog__thumb img,
  .news__list li:first-child .top-news__thumbnail img,
  .news__list li:nth-child(2) .top-news__thumbnail img,
  .news__list li:nth-child(3) .top-news__thumbnail img {
    width: 100%;
    height: clamp(220px, 38vw, 300px);
    object-fit: cover;
    display: block;
  }

  .stylegallery-button,
  .blog-button {
    min-width: 180px;
    max-width: 280px;
    width: min(80%, 280px);
    padding: 10px 20px;
    font-size: 0.85rem;
    margin: 30px auto 20px;
    display: inline-flex;
    justify-content: center;
  }

  .top_blog .stylegallery-button {
    display: block;
    width: min(80%, 280px);
    margin: 28px auto;
    
  }
}

@media (max-width: 980px) {
  .craft__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }
}

@media (max-width: 640px) {
  .craft {
    width: 96%;
    padding: 20px;
  }

  .craft__grid {
    grid-template-columns: 1fr;
  }

  .top_blog__list {
    grid-template-columns: 1fr;
  }

  .stylegallery-button,
  .blog-button {
    min-width: 160px;
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}


/* menuここから */
.menu{
    width: 100%;
    height: 500px;
    margin: 200px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.menu-left{
    width: 50%;
    height: 100%;
    background-color: rgba(188, 143, 143, 0.521);
    position: relative;
}
.menu-left img{
    display: block;
    width: 80%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}

.menu-right {
    width: 50%;
    height: 100%;
    position: relative;
}

.menu-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(35, 28, 28, 0.42); /* フィルターを少し濃く */
    pointer-events: none;
    z-index: 1;
}

.menu-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-right h2 {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    text-align: center;
    font-size: 40px;
    color: #fff;
    letter-spacing: 0.12em;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    z-index: 2; /* ::beforeより上に */
}

.menu-right .reserve-button {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    padding: 12px 24px;
    border: 1px solid rgba(229, 213, 197, 0.78);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(172, 140, 116, 0.4), rgba(88, 71, 58, 0.48));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 10px 22px rgba(26, 19, 16, 0.28);
    color: #f8f1e9;
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    z-index: 2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-right .reserve-button:hover {
    background: linear-gradient(135deg, rgba(191, 157, 130, 0.54), rgba(102, 83, 68, 0.56));
    border-color: rgba(245, 230, 214, 0.92);
    transform: translateX(-50%) translateY(-2px); /* translateX(-50%)を維持したままYを動かす */
    box-shadow: 0 14px 28px rgba(26, 19, 16, 0.32);
}

/* menu詳細ページ */
.bg-img{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;

}

.menu-fram{
    display: flex;
    display: inline-block;
    justify-content: center;
    width: 100%;
    background-color: #ffffff3c;
    color: dimgrey;
}
.menu-fram h1{
    width: 100%;
    text-align: center;
    padding: 88px 50px;
    font-size: 3rem;
}
.menu-detail{
    
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  background: #fff;
  color: #222;
  padding: 60px 40px;
}

/* テーブル全体 */
.price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  max-width: 800px;
  margin: 60px auto 100px;
}

/* カテゴリ */
.category__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 50px;
}

.category__heading h2 {
  font-family: 'Courier Prime', monospace;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #222;
}

.category__heading::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: #333;
}

/* メニューリスト */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* メニュー行 */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.menu-item__name {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #333;
}

.menu-item__name .sub {
  display: block;
  font-size: 0.75rem;
  color: #888;
  margin-top: 1px;
}

.menu-item__price {
  font-size: 0.88rem;
  color: #333;
  white-space: nowrap;
  text-align: right;
  line-height: 1.6;
}

.menu-item__price .sub {
  display: block;
  font-size: 0.75rem;
  color: #888;
}

.menu-fram .shop-info {
  margin-top: 50px;
}

@media (max-width: 1000px) {
  .price-table {
    grid-template-columns: 1fr;
    gap: 30px 0;
    max-width: 92%;
  }

  .menu-item {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .menu-item__price {
    text-align: center;
  }
}





/* interior / products 共通 */
.interior,
.products{
    width: 100%;
    margin: 150px auto;
    /* padding: 10px; */
}
.interior-frame,
.products-detail{
    width: 100%;
    height: 95%;
    margin: 0 auto;
}
.interior h2,
.products-detail h2{
    padding: 30px;
    text-align: center;
    font-size: 3rem;
    color: #00000087;
}
/* interior, products 共通 横並び */
.interior ul,
.products-detail ul{
  width: 95%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 20px;
  list-style: none;
}
.interior li,
.products-detail li{
  flex: 1;
}
.interior img,
.products-detail ul img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  /* interiorセクション 縦並び・余白・デザイン調整 */
 
  .interior ul,
  .products-detail ul {
    display: block;
  }

  .interior li,
  .products-detail li {
    width: 100%;
    margin-bottom: 28px;
    text-align: center;
  }

  .interior li:last-child,
  .products-detail li:last-child {
    margin-bottom: 0;
  }

  .interior img,
  .products-detail ul img {
    width: min(90vw, 420px);
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(60,40,30,0.10);
  }

  .interior h2,
  .products-detail h2 {
    font-size: 2.1rem;
    padding: 24px 0 18px;
  }
}


/* staffここから */

.designers{
    width: 98%;
    height: auto;
    border: 0.5px solid #fff;
    margin: 100px auto;
    padding: 0;
   
}
.designers-frame{
    width: 95%;
    height: auto;
    margin: 2.5% auto;
    padding: 40px;
    background-color: #e3cdc1c7;
}
.designer-detail{
    width: 100%;
    display: flex;
    gap: 30px;
}
.staff{
    width: 50%;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.staff li{
    width: auto;
    color: #00000087;
;
}
.staff img{
    width: 280px;
    height: auto;
    display: block;
}
.designers-frame h2{
    font-size: 3rem;
    color: #00000087;
    text-align: left;
    margin-bottom: 30px;
}
.staff h3{
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.staff p{
    font-size: 1rem;
}


/* products 紹介*/

/* access,contact */
.access {
  width: 98%;
  margin: 0 auto;
  padding: 80px 40px;
  color: #00000087;
  border: 0.5px solid #6c5c5c87;

}

.access h2 {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.access-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.3); /* 半透明の白で動画を透かす */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  /* border: 1px solid #fff; */
  border-radius: 4px;
  padding: 20px;
}

.shop-info {
  flex: 1;
}

.shop-info h3 {
  font-family: 'Courier Prime', monospace;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.shop-info p {
  font-size: 0.95rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.shop-info a {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 24px;
  border: 1px solid #6c5c5c87;
  color: #00000087;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.3s;
}

.shop-info a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.map {
  flex: 1;
}

.map iframe {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  opacity: 0.9;
}

/* footer */
footer{
    width: 100%;
    height: 100px;
    background-color:  #6c5c5c87;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
}
footer a{
    color: #222;
    text-decoration: none;
}






@media (max-width: 1000px){
  .designer-detail{
    display: block;
  }

  .staff{
    width: 100%;
    margin-bottom: 30px;
  }

  .staff img{
    width: 200px;
  }

  .menu {
    display: block;
    height: auto;
    margin: 120px auto;
  }

  .menu-left,
  .menu-right {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .menu-left,
  .menu-right {
    margin: 0 auto;
  }

  .menu-left {
    margin-bottom: 30px;
    background-color: rgba(188, 143, 143, 0.321);
  }

  .menu-left img {
    width: min(360px, 100%);
    height: auto;
    margin: 0 auto;
  }

  .menu-right {
    position: relative;
    padding: 20px;
    background-color: #ffffff76;
  }

  .menu-right::before {
    display: none;
  }

  .menu-right h2 {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 2.4rem;
    text-align: center;
  }

  .menu-right .reserve-button {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    margin: 0;
    padding-bottom: 10px;
    text-align: center;
  }

  .menu-right img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  /* accessセクション 縦並び・余白・デザイン調整 */
  .access-inner {
    display: block;
    padding: 18px 0;
  }
  .shop-info {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  .map {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .map iframe {
    height: 260px;
    margin: 0 auto;
    display: block;
  }
  .access h2 {
    font-size: 2.1rem;
    padding: 24px 0 18px;
  }
}

@media (max-width: 768px){
    .designers-frame{
        padding: 24px;
    }

    .staff img{
        width: auto;
    }
}

.top-button{
    display: block;
    width: 170px;
    margin: 56px auto 28px;
    padding: 12px 0;
    border: 1px solid #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(227, 205, 193, 0.45), rgba(108, 92, 92, 0.55));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px) scale(0.94);
    filter: blur(2px);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.top-button:hover{
    background: linear-gradient(135deg, rgba(227, 205, 193, 0.6), rgba(108, 92, 92, 0.75));
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.top-button.is-visible{
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

/* page-blog.php */
.blog-page {
    width: 100%;
}

.blog-archive {
    width: 100%;
}

.blog-archive h1 {
    color: #000;
    margin-bottom: 24px;
}

.blog-archive__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-archive__item a {
    display: block;
    text-decoration: none;
    color: #000;
}

.blog-archive__thumbnail {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.blog-archive__thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-archive__item time,
.blog-archive__item h2,
.blog-archive__item p {
    color: #000;
}

.blog-archive__item h2 {
    font-size: 1rem;
    margin: 8px 0 6px;
}

@media (max-width: 600px) {
    .blog-archive__list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    body > main,
    body > section.blogs,
    body > .menu-fram {
        padding-top: 140px;
    }
}

/* page-privacy-policy.php */
.privacy-page {
    width: 100%;
    padding: 170px 0 80px;
}

.privacy-policy {
    width: min(960px, 92%);
    margin: 0 auto;
    padding: 40px 36px;
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    border: 1px solid rgba(108, 92, 92, 0.25);
}

.privacy-policy h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.privacy-lead {
    line-height: 1.9;
    margin-bottom: 28px;
    color: #333;
}

.privacy-list {
    margin: 0;
    padding-left: 1.2rem;
}

.privacy-list > li {
    margin-bottom: 22px;
}

.privacy-list h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1f1f1f;
}

.privacy-list p,
.privacy-list li {
    line-height: 1.9;
    color: #2b2b2b;
}

.privacy-list ul {
    margin: 8px 0 0 1rem;
}

.privacy-contact {
    margin-top: 8px;
    padding: 14px 16px;
    background: rgba(227, 205, 193, 0.25);
    border-left: 3px solid rgba(108, 92, 92, 0.5);
}

.privacy-sign {
    margin-top: 28px;
    font-weight: 600;
}

.privacy-copy {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #555;
}
