﻿@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --color-100: #f4ebe2;
  --color-200: #e2d8ce;
  --color-300: #d2c0b3;
  --color-400: #aa9c94;
  --color-500: #807a74;
  --color-600: #706a65;

  --fz-h1: 48px;
  --fz-h2: 24px;
  --fz-h3: 20px;
  --fz-h4: 20px;
  --fz-m: 16px;
  --fz-s: 14px;
  --fz-xs: 12px;

  --font-primary: 'Noto Sans JP', sans-serif;

  --font-secondary: 'EB Garamond', 'Montserrat', sans-serif;

  --font-jp-mincho: 'Noto Serif JP', 'Playfair Display', serif;
  --font-accent: 'Charmonman', cursive;
}

.pc-only {
  display: none !important;
}

html {
  font-size: 100%;
  font-weight: 300;
  scroll-behavior: smooth;
}
h2 {
  font-size: var(--fz-h2);
  font-family: var(--font-secondary);
  font-weight: 300;
  border-bottom: 0.5px solid var(--color-300);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 40px;
}

h3 {
  font-size: var(--fz-h3);
  font-family: var(--font-secondary);
  font-weight: 300;
  display: inline-block;
}
h4 {
  font-size: var(--fz-h4);
}
.style__btn__wrapper span {
  font-family: var(--font-secondary);
  font-weight: 200;
  display: inline-block;
  background-color: var(--color-500);
  color: var(--color-100);
  padding: 8px 24px;
  text-decoration: none;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.style__btn__wrapper:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.visually-hidden {
  position: absolute;
  width: 1px; /* 大きさは1px（豆粒） */
  height: 1px;
  padding: 0;
  margin: -1px; /* 画面の外へちょっと追い出す */
  overflow: hidden; /* はみ出た分を隠す */
  clip: rect(0, 0, 0, 0); /* 完全に切り抜く */
  white-space: nowrap; /* 改行させない */
  border: 0;
}
.nowrap {
  display: inline-block;
  white-space: nowrap; /* これを入れると「絶対に1行で表示する」という意志が強まります */
  vertical-align: bottom; /* 画像などと並んだ時のズレ防止 */
}
/* ul{
  list-style: none;
} */
.btn__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.style__btn__wrapper a:hover .btn__overlay {
  opacity: 1;
}
.section {
  width: 100%;
  padding: 160px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
body {
  width: 100%;
  font-family: Noto Sans JP;
  color: var(--color-600);
  font-size: var(--fz-m);
  margin-bottom: 54.5px;
  opacity: 0;
  animation: pageFadeIn 0.8s ease forwards;
}

@keyframes pageFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

body.is-fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.section-works-wrap {
  max-width: 1440px;
  margin: 0 auto;
}
.side-menu {
  display: none;
}
/* --- 1. ボタン全体配置 --- */
.hamburger {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* --- 2. 3本線共通設定--- */
.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color-300);
  margin: 4px 0;
  transition: all 0.3s;
}
.hamburger span:nth-child(2) {
  width: 30px;
  margin-left: 0;
  text-align: left;
}

/* --- 3. 【重要】ドロワーメニュー本体--- */
.gnav_drawer__wrap {
  position: fixed;

  top: 0;
  /* left: 0; */
  left: -100%;
  width: 100%;
  height: auto;

  /* background-color: var(--color-500) (80, 7a, 74, 0.8); */
  z-index: 999;
  transition: all 0.4s ease; /*何を、どのくらいの時間で、どんなリズムで */
  background-color: var(--color-500);
}
.gnav_drawer__nav {
  list-style: none;
  width: 90%;
  display: flex;
  flex-direction: column;
  text-align: center;
  list-style: none;
  margin: 80px auto 40px auto;
}
.gnav_drawer__nav li {
  width: 100%;
  display: block;
  padding: 0;
  border-bottom: 0.5px solid var(--color-200);
}
.gnav_drawer__nav a {
  color: var(--color-100);
  text-decoration: none;
  padding: 8px 0 4px 0;
  line-height: 1.6;
  display: block;
  font-family: var(--font-secondary);
}


body.is-open {
  overflow: hidden;
}

.is-open .gnav_drawer__wrap {
  left: 0;
}
/* 1本目を斜めに */
.is-open .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
/* 2本目を消す */
.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}
/* 3本目を送E��きに斜め */
.is-open .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ///////////////mainvisual section/////////////////// */
/* /////////////////////////////////////////////// */
.hero-view {
  position: sticky;
  top: 0;
  z-index: 1;
}

.layout-container {
  position: relative;
  z-index: 10;
  background-color: #fff; /* セクションが重なったときに透けなぁE��ぁE��背景色を指宁E*/
}
#mainvisual {
  width: 100%;
  height: 75vh;
  overflow: hidden;
  position: relative;
}
#mainvisual .slideshow {
  height: 100%;
}
#mainvisual .slideshow__container {
  display: flex;
  width: 400%;
  height: 100%;
  /* アニメーションの設定！E4秒かけてループ、よりゆったり滑らかに動かぁE*/
  animation: slide 24s infinite;
}

#mainvisual .slideshow__img {
  width: 25%;
  height: 100%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}
#mainvisual .slideshow__img--top {
  object-position: center -40px;
}

/* スライド�Eアニメーション (3枚�E場吁E */
@keyframes slide {
  0%,
  25% {
    transform: translateX(0);
  }

  33.33% {
    transform: translateX(-25%);
  }

  33.33%,
  58.33% {
    transform: translateX(-25%);
  }

    66.66% {
    transform: translateX(-50%);
  }

    66.66%,
  91.66% {
    transform: translateX(-50%);
  }

    100% {
    transform: translateX(-75%);
  }
}

.main-visual__content {
  position: absolute;
  inset: 0; /*上下左右、すべての余白めEにする*/
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; 
}

.logo img {
  width: 300px;
  height: auto;
  /* ロゴの形に沿ってフワっとした影をつける魔法（透過画像に最適です！*/
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
  /* ふんわりくるっと回って出てくるアニメーション (2.5秒かけて */
  animation: logoSpinFade 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@media screen and (max-width:600px) {
  .logo img {
  width: 200px;
  }
}
@keyframes logoSpinFade {
  0% {
    opacity: 0;
    transform: rotateY(-180deg) scale(0.8); /* 裏返った状態！E��し小さめから開姁E*/
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1); /* 表向き�E�E��準サイズで着地 */
  }
}
/* ///////////////calender section/////////////////// */
/* /////////////////////////////////////////////// */
#calendar__wrap {
  display: flex;
  width: 100%;
}
#calendar__wrap .today,
#calendar__wrap .calendar {
  flex: 1; /* これで、E0%ずつ」�E幁E��なる魔法�E1衁E*/
  min-width: 0; /* 画像が枠を突き破る�Eを防ぐお守り */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#calendar__wrap .today {
  background-color: var(--color-100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
#calendar__wrap .today-status {
  font-weight: bold;
  /*画面幁E�E 5% 刁E�E大きさを目持E��つつ、E0pxより小さくならず、E4pxより大きくならなぁE��宁E
  */
  font-size: clamp(10px, 4vw, 24px);
}
#calendar__wrap .hours {
  /* 画面幁E�E 4% 刁E�E大きさに連勁E*/
  font-size: clamp(10px, 4vw, 20px);
}
#calendar__wrap .calendar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* ///////////////access section/////////////////// */
/* /////////////////////////////////////////////// */

#access dl {
  width: 90%; /* 表の最大幁E*/
  margin: 0 auto; /* 中央寁E�� */
  text-align: left; /* 斁E���E左揁E��に戻ぁE*/
  display: flex; /* 横並びの準備 */
  flex-wrap: wrap; /* 折り返しを許可 */
}

#access .access__inner dt,
#access .access__inner dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0 4px 0;
  border-bottom: 0.5px solid var(--color-200); /* 下�E緁E*/
  font-size: var(--fz-s);
  line-height: 1.6;
}
#access dt {
  width: 30%; /* 横幁E0% */
  color: var(--color-600);
  font-family: var(--font-jp-mincho);
}
#access dd {
  width: 70%; /* 横幁E0% */
  margin-left: 0;
  color: var(--color-600);
}
#access img {
  width: 90%;
  margin: 24px auto 0 auto;
}
/* ///////////////menu section/////////////////// */
/* /////////////////////////////////////////////// */
/* #menu {
  width: 100%;
  padding: 80px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
} */
#menu .menu__category {
  width: 80%;
  text-align: left;
}
#menu dl {
  width: 90%;
  margin: 0 auto 24px auto;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
}
#menu dt,
#menu dd {
  padding: 20px 0 4px 0;
  border-bottom: 0.5px solid var(--color-200);
  font-size: var(--fz-s);
  line-height: 1.6;
}
#menu dt {
  width: 70%;
}
#menu dd {
  width: 30%;
  text-align: right;
}
#menu .menu__inner01,
#menu .menu__inner02 {
  width: 100%;
}
#menu .menu__note {
  width: 90%;
  margin: 0 auto; /* SP版でのレイアウト崩れを防ぐため追加 */
}
#menu .menu__note small {
  display: block;
  margin-bottom: 10px;
  font-size: var(--fz-xs);
  color: var(--color-500);
  line-height: 1.6;
  text-align: left;
  padding-left: 1em;
}
/* ///////////////concept section/////////////////// */
/* /////////////////////////////////////////////// */
#concept {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-top: 80px;
}
#concept h2 {
  position: absolute;
  top: 10%;
  left: 10%;
}
#concept h3 {
  font-family: var(--font-jp-mincho);
  position: absolute;
  top: 24%;
  left: 0;
  width: 100%;
  text-align: center;
}
#concept img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /*アスペクト比を保ったまま、枠を埋め尽くす�E��Eみ出た�Eは刁E���E�E/
  object-position: center; /* 基準点を真ん中にする�E�上下左右中央�E�E*/
}
#concept p {
  width: 80%;
  display: block;
  text-align: left;
  margin: 40px auto 0 auto;
}
/* ///////////////style section/////////////////// */
/* /////////////////////////////////////////////// */
#style {
  width: 90%;
  margin: 0 auto;
}
#style .style__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 10px;
}

/* --- 1. 基本設定（スマ�E�E�まず�E2列！E--- */
#style .style__item {
  /* 全佁E100%)から隙間1つ刁E10px)を引いて、Eで割めE*/
  width: calc((100% - 16px) / 2);
  margin-bottom: 20px;
}

/* --- 2. タブレチE��サイズ�E�E00px以上！E列にする�E�E--- */
@media screen and (min-width: 600px) {
  #style .style__item {
    /* 全佁E100%)から隙間2つ刁E20px)を引いて、Eで割めE*/
    width: calc((100% - 24px) / 3);
  }
}

/* --- 3. PCサイズ�E�E000px以上！E列にする�E�E--- */
/* @media screen and (min-width: 1000px) { */
/* #style .style__item { */
/* 全佁E100%)から隙間3つ刁E30px)を引いて、Eで割めE*/
/* width: calc((100% - 30px) / 4); */
/* } */
/* } */
#style .style__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}
#style .style__item a {
  text-decoration: none;
  color: var(--color-600);
}
#style .style__img-wrap {
  position: relative;
  display: block;
}
#style .style__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
#style .style__item a:hover .style__overlay {
  opacity: 1;
}
/* ///////////////staff section/////////////////// */
/* /////////////////////////////////////////////// */
#staff {
  position: relative;
  width: 90%;
  margin: 0 auto;
}
#staff .staff__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 8px;
  list-style: none;
}
#staff .staff__item {
  /* 全佁E100%)から隙間1つ刁E10px)を引いて、Eで割めE*/
  width: calc((100% - 10px) / 2);
  margin-bottom: 20px;
}
#staff .pc-only {
  display: none;
}
/* --- 2. タブレチE��サイズ�E�E00px以上！E列にする�E�E--- */
@media screen and (min-width: 600px) {
  #staff .staff__item {
    /* 全佁E100%)から隙間2つ刁E20px)を引いて、Eで割めE*/
    width: calc((100% - 20px) / 3);
  }
}

/* --- 3. PCサイズ�E�E000px以上！E列にする�E�E--- */
@media screen and (min-width: 1000px) {
  #staff .staff__item {
    /* 全佁E100%)から隙間3つ刁E30px)を引いて、Eで割めE*/
    width: calc((100% - 30px) / 4);
  }
}
#staff .staff__visual {
  position: relative;
}
#staff img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

#staff .staff__name {
  font-family: var(--font-accent);
  position: absolute;
  color: var(--color-100);
  bottom: 4px;
  right: 6px;
}
#staff .staff__content {
  text-align: left;
}
#staff .staff__label {
  font-size: var(--fz-xs);
}
#staff .staff__specialties {
  list-style: none;
}
/* ///////////////product section/////////////////// */
/* /////////////////////////////////////////////// */
#product {
  width: 90%;
  margin: 0 auto;
}
#product .product__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 8px;
  list-style: none;
}

#product .product__item {
  /* 全佁E100%)から隙間1つ刁E10px)を引いて、Eで割めE*/
  width: calc((100% - 10px) / 2);
  margin-bottom: 20px;
}

/* --- 2. タブレチE��サイズ�E�E00px以上！E列にする�E�E--- */
@media screen and (min-width: 600px) {
  #product .product__item {
    /* 全佁E100%)から隙間2つ刁E20px)を引いて、Eで割めE*/
    width: calc((100% - 20px) / 3);
  }
}

/* --- 3. PCサイズ�E�E000px以上！E列にする�E�E--- */
/* @media screen and (min-width: 1000px) { */
/* #product .product__item { */
/* 全佁E100%)から隙間3つ刁E30px)を引いて、Eで割めE*/
/* width: calc((100% - 30px) / 4); */
/* } */
/* } */
#product .product__visual__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
#product .product__visual {
  position: relative;
}
#product .product__rank-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 4px;
  left: 6px;
}
#product .product__item a {
  color: var(--color-600);
  text-decoration: none;
}
/* /////////////// instageam section/////////////////// */
/* /////////////////////////////////////////////// */
#instagram .instagram__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
#instagram .instagram__item {
  /* 全佁E100%)から隙間1つ刁E10px)を引いて、Eで割めE*/
  width: calc(100% / 3);
}

/* --- 2. タブレチE��サイズ�E�E00px以上！E列にする�E�E--- */
@media screen and (min-width: 600px) {
  #instagram .instagram__item {
    /* 全佁E100%)から隙間2つ刁E20px)を引いて、Eで割めE*/
    width: calc(100% / 4);
  }
}

/* --- 3. PCサイズ�E�E000px以上！E列にする�E�E--- */
@media screen and (min-width: 1000px) {
  #instagram .instagram__item {
    /* 全佁E100%)から隙間3つ刁E30px)を引いて、Eで割めE*/
    width: calc(100% / 5);
  }
}

#instagram .instagram__item a {
  display: block;
  position: relative;
  height: 100%;
}
#instagram .instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* インスタ用ホバーオーバーレイ */
#instagram .instagram__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
/* ホバー時にオーバーレイを表示する */
#instagram .instagram__item a:hover .instagram__overlay {
  opacity: 1;
}
/* ///////////////recruit section/////////////////// */
/* /////////////////////////////////////////////// */
#recruit {
  margin: 120px auto;
  width: 90%;
  height: auto;
  object-fit: cover;
  position: relative;
}

#recruit h2 {
  position: absolute;
  top: 4%;
  left: 6%;
  color: var(--color-100);
  z-index: 10;
}

#recruit .recruit__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#recruit .recruit__text {
  color: var(--color-100);
  position: absolute;
  top: 55%;
  left: 10%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* 右に2px、下に2px、ぼかし4px、半透�Eの黁E*/
}
#recruit a {
  text-decoration: none;
}

#recruit .btn-wave {
  font-family: var(--font-secondary);
  font-weight: 200;
  display: inline-block;
  background-color: var(--color-500);
  color: var(--color-100);
  padding: 8px 24px;
  text-decoration: none;
  margin-top: 36px;
  position: absolute;
  bottom: 8%;
  right: 6%;
}
/* ///////////////footer section/////////////////// */
/* /////////////////////////////////////////////// */
#footer {
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
#footer .footer__wrap {
  background-color: var(--color-200);
  color: var(--color-600);
  padding: 0 10px;
}
#footer .footer__content {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
#footer .footer__btn {
  display: flex;
  justify-content: space-between;
}
#footer a {
  text-decoration: none;
  color: var(--color-600);
  padding: 10px;
  align-items: center;
}
#footer img {
  width: 30px;
  height: 30px;
}
#footer .pc-icon {
  margin-right: 5px;
}
#footer .tel-icon {
  width: 26px;
  height: 26px;
}
#footer .footer__item p {
  font-size: var(--fz-xs);
  text-align: center;
}

#site__menu {
  background-color: var(--color-500);
  font-family: var(--font-secondary);
  padding-top: 16px;
}
#site__menu ul {
  width: 90%;
  display: flex;
  flex-direction: column;
  text-align: center;
  list-style: none;
  margin: 0 auto;
}
#site__menu li {
  width: 100%;
  display: block;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--color-200);
}
#site__menu a {
  color: var(--color-100);
  text-decoration: none;
  padding: 20px 0 4px 0;
  line-height: 1.6;
}
#site__menu p {
  color: var(--color-100);
  display: block;
  text-align: right;
  padding: 8px 14px;
}
/* ///////////////////pc版//////////////////////////////////// */
/* ///////////////////////////////////////////////////////////// */
@media (min-width: 900px) {
  .pc-only {
    display: block !important;
  }
  span.pc-only,
  br.pc-only {
    display: inline !important;
  }
  .sp-only {
    display: none !important;
  }

  body {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .body__wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .ham-menu {
    display: none;
  }
  .hero-view {
    width: 100%;
  }
  main,
  #calendar__wrap,
  .section {
    flex: 1;
    margin-right: 0;
  }

  .layout-container {
    display: flex;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
  }
  .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  #concept {
    order: 1;
  }
  #menu {
    order: 2;
  }
  #style {
    order: 3;
  }
  #product {
    order: 4;
  }
  #staff {
    order: 5;
  }
  #instagram {
    order: 6;
  }
  #recruit {
    order: 7;
  }
  #access {
    order: 8;
  }
  #calendar__wrap {
    order: 10;
    width: 100%;
    margin-top: 120px;
    padding: 60px 40px;
    background-color: var(--color-100);

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  #calendar__wrap .today {
    width: 100%;
    background-color: transparent;
  }

  #calendar__wrap .salon-name-img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    height: auto;
    object-fit: contain;
  }
  .demo-alert {
    order: 9;
  }
  #footer {
    order: 11;
  }
  #site__menu {
    order: 12;
  }

  .section {
    width: 90%;
    margin: 0 auto;
  }

  #mainvisual {
    width: 100%;
    height: 90vh;
    object-fit: cover;
  }
  .scroll-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    width: 40px;
    opacity: 0.8;
    animation: scrollUpDown 2s infinite ease-in-out;
  }
  .scroll-icon img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }
  .recruit-mv .scroll-icon img {
    filter: brightness(0) invert(0.42) sepia(0.12) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  }
  @keyframes scrollUpDown {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(15px);
    }
  }

  /* トップに戻るボタン */
  .back-to-top {
    position: fixed;
    bottom: 40px;
    right: 264px;
    z-index: 99;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.8s ease,
      transform 0.3s ease,
      visibility 0.8s ease;
  }
  .back-to-top.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .back-to-top:hover {
    opacity: 0.8;
    transform: translateY(-5px);
  }
  .back-to-top img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* MENU 2カラム*/
  #menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
  }
  #menu .section__title {
    grid-column: 1 / -1;
    justify-self: center;
  }
  #menu .menu__inner01,
  #menu .menu__inner02 {
    width: 100%;
  }
  #menu .menu__inner02 {
    display: flex;
    flex-direction: column;
    align-items: center; /* 中の要素の中央寁E��をキーチE*/
  }
  #menu .menu__note {
    margin-top: auto; /* 余った空間�E上�Eにマ�Eジンをとり、下揃えに押し下げめE*/
  }
  #menu .menu__category {
    margin-top: 20px;
  }

  #concept {
    text-align: left;
    max-width: 90%;
    margin: 120px auto 0 auto;
  }
  #concept .concept__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0 60px;
    align-items: end;
    margin: 0 auto;
  }
  #concept .concept__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #concept h2,
  #concept h3 {
    display: none;
  }

  #concept p {
    width: 100%;
    margin: 0 0 0 auto; 
    line-height: 1.6;
    font-size: var(--fz-lg);
  }

  /* --- RECRUIT --- */
  #recruit {
    margin-bottom: 0;
  }
  #recruit > a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 60px;
    color: var(--color-600);
    width: 100%;
  }
  #recruit br.sp-only {
    display: none !important;
  }
  #recruit .section__title__recruit {
    grid-column: 2;
    grid-row: 1;
    position: static;
    color: var(--color-600);
    font-size: var(--fz-h2);
    font-family: var(--font-secondary);
    border-bottom: 0.5px solid var(--color-300);
    padding-bottom: 4px;
    margin-bottom: 40px;
    align-self: center;
    justify-self: start;
  }
  #recruit .recruit__visual {
    display: contents; /* grid layout proxy */
  }
  #recruit img {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #recruit .recruit__content {
    display: contents; /* 内のテキストとボタンをそれぞれ個別のGridアイテムとして扱う */
  }
  #recruit .recruit__text {
    grid-column: 2;
    grid-row: 2;
    position: static;
    color: var(--color-600);
    text-shadow: none;
    line-height: 1.6;
    font-size: var(--fz-m);
    /* 日本語を文節で心地よく改行（Chrome/Edge等） */
    word-break: auto-phrase;
    /* 長い英数字によるレイアウト崩れを防止 */
    overflow-wrap: anywhere;
    /* 行末をきれいに整える */
    text-wrap: pretty;
    width: 100%;
  }
  #recruit .btn-wave {
    grid-column: 2;
    grid-row: 3;
    position: static;
    justify-self: end; /* GridアイチE��として横方向を「右寁E��」にする */
    align-self: start;
    margin-top: 20px; /* 本斁E��ボタンの間�E余白 */
  }

  /* --- INSTAGRAM --- */
  #instagram .instagram__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto; /* 画像�E比率に合わせて高さを�Eすためautoにする */
    gap: 16px;
  }
  #instagram .instagram__item {
    width: 100%; /* 古ぁE��示設宁E幁E0%)を上書きし、セルの100%を使ぁE��ぁE��する */
  }
  #instagram .instagram__item a {
    display: block;
    width: 100%;
    height: 100%;
  }
  #instagram .instagram__item img {
    aspect-ratio: 4/ 5;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #staff .staff__list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: var(--color-600);
  }
  #staff .staff__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    color: var(--color-600);
  }
  #staff .staff__item img {
    width: 269px;
    height: 269px;
    object-fit: cover;
  }
  #staff .staff__item .staff__name {
    font-size: var(--fz-h2);
    padding-right: 8px;
  }
  #staff .staff__item .staff__name-pc {
    font-size: var(--fz-h2); /* これまでのPC版と同じ大きさ */
    color: var(--color-600); 
    font-family: var(--font-secondary); 
    margin-bottom: 8px; 
  }
  #staff .pc-only {
    display: block;
    margin-bottom: 20px;
  }

  /* --- PC版「変な改行」を防ぐための強力な設定--- */
  #staff .staff__content p.pc-only {
    word-break: auto-phrase;
    text-wrap: pretty;
  }

  #staff .staff__content h3 {
    font-family: var(--font-jp-mincho);
  }
  #staff .staff__item .staff__specialties {
    margin-left: 1rem;
  }
  #access .access__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    color: var(--color-600);
  }

  /* --- 1. サイドメニュー全体 --- */
  .side-menu {
    display: block; /* PC版ではサイドメニューを復活させて表示する */
    position: sticky;
    top: 0;
    height: 100vh;
    font-family: var(--font-secondary);
    background-color: var(--color-100);
    color: var(--color-600);
    padding: 32px;
    z-index: 100;
  }

  .side-menu ul {
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  /* --- 3. --- */
  .side-menu__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 32px;
    background-color: var(--color-600);
    color: var(--color-100);
    text-decoration: none;
    font-size: 14px;
    /* margin-bottom: 15px; */
    transition: 0.3s;
  }

  .side-menu__btn:hover {
    opacity: 0.8;
  }
  .side-menu__btn .pc-icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    filter: brightness(0) invert(1);
  }
  /* --- 4. 電話番号エリア --- */
  .side-menu__nav .tel-number {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .side-menu__nav .tel-number img {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
  .tel-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-600);
    text-decoration: none;
    font-size: 16px;
    margin: 20px 0 40px;
  }

  /* --- 5. ナビゲーションメニュー--- */
  .side-menu-item a {
    display: block;
    color: var(--color-600);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.1em;
    /* padding: 15px 0;  */
    transition: 0.3s;
  }

  .side-menu-item a:hover {
    color: var(--color-400);
  }
  #footer,
  #site__menu {
    display: none;
  }

  .product__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 左斜め下から�Eんわり現れるアニメーション */
.fade-in-bottom-left {
  opacity: 0;
  transform: translate(-30px, 30px); /* 左に30px、下に30px */
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}
.fade-in-bottom-left.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
/* ///////////////////////////////// */
/* ////////////reservation////////// */
/* ///////////////////////////////// */
#mainvisual.reservation-mv {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}
#mainvisual.reservation-mv .reservation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mainvisual.reservation-mv .reservation-address {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 20;
  color: var(--color-100);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

#mainvisual.reservation-mv .reservation-address p {
  margin: 0 0 8px;
  font-size: var(--fz-h2);
  letter-spacing: 0.05em;
  font-family: var(--font-secondary);
}
#mainvisual.reservation-mv .main-visual__content {
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 40px;
  padding-right: 40px;
}
.reservation-info__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Align left edge of children */
  max-width: fit-content; /* Center the block ensemble as a whole */
  margin: 60px auto; /* Center the block on the page */
  gap: 30px;
  color: var(--color-600);
  padding: 0 20px; /* Mobile padding */
}
.reservation_logo img{
    position: absolute;
    width: 200px;
    right: 20px;
    top: 20px;
    margin-top: 0;}

.reservation__page__title{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);   
  border: none;
  color:var(--color-100);
  font-size: var(--fz-h1);
}
.reservation-info,
.reservation-alert {
  text-align: left;
  line-height: 1.8;
  word-break: auto-phrase;
  text-wrap: pretty;
  padding: 1.5rem; 
  border-left: 2px solid transparent; 
}
.reservation-alert {
  background-color: var(--color-100);
  font-size: var(--fz-s);
}
@media screen and (max-width: 899px) {
  #mainvisual .slideshow__img--top {
    object-position: center top;
  }
}
@media screen and ( max-width:899px ) {
  .reservation__page__title{
    font-size:36px;
  }
  #mainvisual.reservation-mv .reservation-address{
   bottom: 10px;
    left: 18px;
  }
  #mainvisual.reservation-mv .reservation-address p{
    font-size: 16px; 
   
  }
  .reservation_logo img{
    position: absolute;
    width: 150px;
    right: 20px;
    top: 20px;
    margin-top: 0;

  }
}
/* /////////////////////////////////////// */
/* ////////////recruit/////////////////// */
/* /////////////////////////////////////// */
#mainvisual.recruit-mv {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}
#mainvisual.recruit-mv .recruit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
#mainvisual.recruit-mv .main-visual__content {
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 40px;
  padding-right: 40px;
}
#mainvisual.recruit-mv .logo img {
  filter: brightness(0) invert(43%) sepia(11%) saturate(541%) hue-rotate(343deg) brightness(94%) contrast(86%)
    drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.4));
  width: 60vw;
  max-width: 200px;
}
.rectuit-page__title{
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
 
  border: none;
  font-size: var(--fz-h1);
}
.recruit__section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 60px 0 0 0;
}
.recruit__section img {
  width: 45%;
}
.recruit__text {
  width: 45%;
  text-align: left;
}
.recruit__text h3 {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-200);
  font-family: var(--font-jp-mincho);
}
.recruit__text p {
  word-break: auto-phrase;
  text-wrap: pretty;
  line-height: 1.8;
}
.recruit__section03 {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.recruit__section03__text {
  width: 90%;
  word-break: auto-phrase;
  text-wrap: pretty;
}
.recruit__section03 .recruit__row {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--color-200);
  padding: 20px 0;
  margin: 0 auto;
}
.recruit__info{
  width: 90%;
  padding-top: 40px;
  margin: 0 auto;
}
.recruit__info__list dt {
  width: 6rem;
  flex-shrink: 0;
  text-align: left;
  font-family: var(--font-jp-mincho);
}
.recruit__info__list dd {
  flex: 1; /* 残りの幅をすべて使う */
  margin: 0;
  text-align: left;
  word-break: auto-phrase;
  text-wrap: pretty;
}
.recruit__info__list dd a {
  color: var(--color-600);
  text-decoration: none;
}
.recruit__info__list dd a:hover {
  color: var(--color-400);
}
/* //////////////////////////////////////////////////
//////////recruit-SP//////////////////////////////
////////////////////////////////////////////////// */
@media screen and (max-width: 899px) {
  .recruit__section {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  #mainvisual.recruit-mv .logo img {
  filter: brightness(0) invert(43%) sepia(11%) saturate(541%) hue-rotate(343deg) brightness(94%) contrast(86%)
    drop-shadow(0px 0px 8px rgba(255, 255, 255, 0.4));
  width: 60vw;
  max-width: 200px;
}
  .rectuit-page__title{
    top: 40%;
  }
  .recruit__text {
    width: 90%;
  }
  .recruit__section img {
    width: 90%;
  }
  .recruit__section02 {
    flex-direction: column-reverse;
  }
  .demo-alert {
    width: 100%;
    margin: 30px 0;
  }
  .product__main {
    width: 100%;
  }
}
/* //////////////////////////////////////////////////
//////////product//////////////////////////////
////////////////////////////////////////////////// */
#mainvisual.product-mv {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}
#mainvisual.product-mv .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#mainvisual.product-mv .main-visual__content {
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 40px;
  padding-right: 40px;
}

.product__main {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}
.product__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0 0 0;
}
.product-grid {
  width: 90%;
  margin: 80px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-grid__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.product-grid__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}
.product-grid__description {
  font-size: var(--fz-xs);
  word-break: keep-all;
}
.product-grid__price {
  font-size: var(--fz-s);
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}
.product-grid__img-wrap {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.product-grid__img-wrap img {
  height: auto;
  transition: transform 0.6s ease;
}
.product-grid__img-wrap:hover img {
  transform: scale(1.1);
}

.demo-alert {
  width: 90%;
  max-width: 27em;
  text-align: left;
  line-height: 1.8;
  word-break: auto-phrase;
  text-wrap: pretty;
  /* padding: 1.5rem; */
  /* background-color: var(--color-100); */
  font-size: var(--fz-s);
  margin-top: 80px;
  margin-inline: auto;
}
.shop-info__wrap {
  width: 90%;
  margin: 80px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.shop-info__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--color-200);
  padding: 16px;
}
.shop-info__item p {
  text-indent: -1em;
  padding-left: 1em;
}
.shop-info__item:nth-child(4) p {
  text-indent: 0;
  padding-left: 0;
}

/* //////////////////////////////////////////////////
//////////product-SP//////////////////////////////
////////////////////////////////////////////////// */
@media screen and (max-width: 1026px) {
  .product-mv .main-visual__content .logo img {
    position: absolute;
  width: 150px;
  right: 20px;
  top: 20px;
  margin-top: 0;
  }
}

@media screen and (max-width: 899px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-info__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .demo-alert {
    margin: 64px;
  }
}
@media screen and (max-width: 550px) {
  /* .product-list {
    grid-template-columns: repeat(2,1fr);
  } */
  .shop-info__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* /////////////// Cart Icon & Notification /////////////// */
/* 追従・固定を制御するコンテナ */
.cart-sticky-container {
  position: fixed; /* SP: 画面全体に固定 */
  top: 20px;
  right: 20px;
  z-index: 1010;
  pointer-events: none; /* 下の要素の操作を邪魔しない */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (min-width: 900px) {
  .cart-sticky-container {
    position: sticky; /* PC: メインコンテンツ内で追従 */
    top: 20px; /*↓ちょっとここからよく分かってない*/
    right: auto;
    margin-left: auto; /* 左側の余白を、取れるだけ全部取って！ */
    margin-right: 20px;
    height: auto;
    padding-top: 20px; /* メインビジュアルからの余白 */
    margin-bottom: -110px; /* パディングとアイコン分、下のコンテンツを繰り上げる */
  }
}

.cart-icon {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0; /* フレックスコンテナ内での潰れを防止 */
  background-color: var(--color-100);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: auto; /* アイコンはクリック可能に */
  transition: transform 0.3s ease;
}

.cart-icon:hover {
  transform: scale(1.1);
}

.cart-icon i {
  font-size: 24px;
  color: var(--color-500);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #333;
  color: #fff;
  font-size: 11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* カート通知メッセージ */
.cart-notification {
  position: relative;
  top: 10px; /* アイコンとの距離 */
  background-color: var(--color-500);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.cart-notification.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* カート追加時の震えるアニメーション */
@keyframes shake {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2) rotate(5deg);
  }
  75% {
    transform: scale(1.2) rotate(-5deg);
  }
}

.cart-icon.added {
  animation: shake 0.4s ease;
}
