/* =========================================
   メインビジュアル（Splide）
========================================= */
#mv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#mv .splide__slide img {
  width: 100%;
  height: 95vh;
  object-fit: cover;
}

#mv .splide__pagination {
  display: none;
}

#mv .splide__arrow {
  opacity: 0.7;
}

@media (max-width: 768px) {
  #mv .splide__slide img {
    /* height: 60vh; */
  }
}

.headline {
    width: fit-content;
    margin : 10px auto 30px;
    text-align: center;
}
h2 {
    font-size: 2.3em;
    font-weight: 700;
    font-family: var(--font-mincho);
    color: var(--color-vivid-orange);
}

.orange-bgimg {
  position: relative;
  background-image: url("../img/orange-bgimg.jpg");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: cover;
  z-index: 0;
}

/* 半透明オーバーレイ */
.orange-bgimg::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, leftをまとめて0に */
  background-color: #fff; /* 白をかぶせて明るくする（黒なら暗く） */
  opacity: 0.5; /* ←ここで「薄さ」を調整（0.5＝半分） */
  z-index: 1;
}

/* 背景の上に載せる中身（テキストなど）を見えるように */
.orange-bgimg > * {
  position: relative;
  z-index: 2;
}
h5 {
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
    font-family: var(--font-mincho);
    padding : 20px 0;
}
#INFO h5 {
    font-size: 1.4em;
    color : var(--color-vivid-orange);
    font-family: var(--font-mincho);
    font-weight: 700;
    margin-bottom: 50px;
}


/* 本文（説明） */
.menu-items .main-text {
  font-family: var(--font-mincho);
  text-align: left;
  font-size: 13px;
  line-height: 2em;
  /* 互換性担保：text-wrap に加えて overflow-wrap を併用 */
  text-wrap: wrap;
  overflow-wrap: anywhere;
  /* word-break: break-word;  必要なら復活 */
  width: 95%;
  margin: 20px auto;
}

/* サムネイル枠 */
.menu-items .photo {
  width: 100%;
  height: 250px;       /* ← 固定の高さだけ指定（比率は指定しない） */
  overflow: hidden;
  background-color: #f8f8f8;
}

.menu-items .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* ← 元のアスペクト比を保ちながら枠いっぱいに見せる */
  object-position: center top;
  transform: scale(1);
  transition: transform .6s ease, filter .4s ease;
}

/* リストの並び */
#MENU .menu-items {
  gap: 30px;
}

/* 各カード */
#MENU .menu-items li {
  background-color: #fff;
  padding: 0;
  margin: 0;
  /* min-width: auto; */
}

/* カードのリンクブロック */
#MENU .menu-items li a {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
    flex-direction: column;
    align-items: center;
}

/* 抜粋 */
#MENU .menu-items li .ex {
  width: 90%;
  text-align: left;
  margin: 0 auto 50px;
  font-family: var(--font-mincho);
  font-size: 14px;
}

/* 矢印ラッパー */
#MENU .arrow-wrapper {
  position: relative;
  width: 100%;
}
#MENU .arrow-wrapper .arrow-icon {
    margin-left: auto;
    margin-right: 5%;
    margin-bottom: 5%;
}

/* ===========================
   追加：ホバーで画像をズーム
=========================== */
#MENU .menu-items li a:hover .photo img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

#MENU .menu-items li a:active .photo img {
  transform: scale(1.03);
  filter: brightness(0.95);
}

/* モーション軽減に配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  .menu-items .photo img {
    transition: none;
  }
}

/* =========================================
   GALLERY セクション
========================================= */
#GALLERY ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
#GALLERY ul li {

    flex: 1;
    min-width: calc(33.333% - 10px);
    text-align: center;
  max-width: 360px;
}

#GALLERY ul li a {
  display: block;
  overflow: hidden;
  position: relative;
}

/* 画像の基本スタイル */
#GALLERY ul li img {
  width: 100%;
  aspect-ratio: 1 / 1;     /* 正方形で統一 */
  object-fit: cover;       /* トリミングしてフィット */
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform: scale(1);
}

/* ホバー時のアニメーション */
#GALLERY ul li a:hover img {
  transform: scale(1.08);  /* 少しズーム */
}


/**-----------------------------------------------------------------------
*   REVIEWセクション
-----------------------------------------------------------------------*/
.review-items {
    margin-top: 100px;
    gap : 50px;
}
.review-items li {
    flex: 1;
    min-width: calc(33.333% - 50px);
    text-align: center;
}
/* REVIEW の "もっと見る" リンク */
#REVIEW .readmore a {
  display: inline-block;
  text-decoration: none;
  color: var(--text, #333);
  transition: color .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

/* ホバー時に下線を表示 */
#REVIEW .readmore a:hover {
  border-bottom-color: currentColor;
}

@media screen and (max-width: 768px) {
    .review-items li {
      min-width: calc(50% - 50px)
  }
}
/* ---------------------------------------------
   アイコン＋名前＋星評価
--------------------------------------------- */
.review-items .info {
  margin-bottom: 10px;
}

.review-items .left {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-lightgray2);
}

.review-items .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-items .right {
  flex: 1;
  padding-left: 12px;
}

.review-items .uppername {
  margin: 0;
  font-weight: 700;
  text-align: left;
  color: var(--color-dark-gray);
  font-size: 12px;
  font-family: var(--font-mincho);
}

.review-items .lower {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.review-items .review-star {
  color: #f5b301;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.review-items .month {
  margin: 0;
  font-size: 12px;
  color: var(--color-m-dark-gray);
  font-family: var(--font-mincho);
}
.readmore {
  font-size: 12px;
  text-align: right;
  margin-top: 1em;
  font-family: var(--font-mincho);
}

/* ---------------------------------------------
   抜粋テキスト
--------------------------------------------- */
.review-items .ex {
  margin-top: 8px;
  color: var(--color-dark-gray);
  font-size: 12px;
  font-family: var(--font-mincho);
  line-height: 1.6;
  text-align: left;
  width: calc(100% - 40px);
    margin-left: auto;
}

/* ---------------------------------------------
   レスポンシブ
--------------------------------------------- */


@media (max-width: 640px) {
  .review-items {
    gap: 16px;
  }
  .review-items > li {
    flex: 1 1 100%;
  }
  #REVIEW {
    padding: 60px 0;
  }
  #REVIEW .headline h2 {
    font-size: 1.6rem;
  }
}
.message-bottom {
    text-align: right;
    font-weight: bolder;
    margin-top : 1.5em;
    font-size: 1.2em;
}
#ABOUT dd {
    font-family: var(--font-mincho);
}
.store-name {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    font-family: var(--font-mincho);
    margin : 50px auto 20px;
}
address {
    font-style: normal;
    font-family: var(--font-mincho);
    line-height: 2;
    text-align: center;
}
.ggmap iframe{
    height: 350px;
    width: 100%;
    margin-top : 35px;
}

.news-list {
    margin : 50px auto;
}
.news-list li {
    border-top : 1px solid #e7e9f1;
}
.news-list li:last-child {
    border-bottom : 1px solid #e7e9f1;
}
.news-list li a {
    transition: all 0.4s;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding : 2em;
}
.news-list li a .news-date {
    flex: 1;
    max-width: 150px;
}
.news-list li a .ttl {
    flex: 2;
    font-weight: bold;
}

/* ================================
   レビュー個別ページ（通常表示用）
   page.cssに追加
================================ */

/* レビュー個別ページ全体 */
.review-single-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.review-single {
  background: #fff;
  padding: 3rem;
}

/* レビューヘッダー */
.review-single .info.flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.review-single .info.flex .left {
  flex-shrink: 0;
}

.review-single .info.flex .review-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-single .info.flex .right {
  flex: 1;
}

.review-single .info.flex .uppername {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  color: #333;
}

/* 星と投稿日を横並び */
.review-single .info.flex .lower {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-single .info.flex .review-star {
  font-size: 1rem;
  color: #f8b500;
  line-height: 1;
}

.review-single .info.flex .month {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid #e0e0e0;
}

/* レビュー本文 */
.review-single .review-content {
  line-height: 1.9;
  font-size: 1rem;
  color: #333;
  margin-bottom: 3rem;
}

.review-single .review-content p {
  margin-bottom: 1.5rem;
}

.review-single .review-content p:last-child {
  margin-bottom: 0;
}

.review-single .review-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 言語タグ */
.review-single .review-languages {
  margin-top: 3rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.review-single .review-languages-label {
  font-weight: 600;
  color: #666;
  font-size: 0.9rem;
}

.review-single .review-language-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.2s;
}

.review-single .review-language-tag:hover {
  background: #f0f0f0;
  border-color: #ccc;
}

/* ナビゲーション */
.review-single .review-navigation {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

.review-single .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.review-single .nav-previous,
.review-single .nav-next {
  flex: 1;
}

.review-single .nav-next {
  text-align: right;
}

.review-single .nav-previous a,
.review-single .nav-next a {
  display: block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  padding: 1rem;
  border-radius: 8px;
}

.review-single .nav-previous a:hover,
.review-single .nav-next a:hover {
  background: #f9f9f9;
  color: #f8b500;
}

.review-single .nav-subtitle {
  display: block;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.review-single .nav-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

/* 一覧に戻るボタン */
.review-single .review-back-link {
  text-align: center;
  margin-top: 3rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .review-single-page {
    padding: 2rem 1rem;
  }

  .review-single {
    padding: 2rem;
  }

  .review-single .info.flex {
    gap: 1rem;
  }

  .review-single .info.flex .review-icon {
    width: 60px;
    height: 60px;
  }

  .review-single .info.flex .uppername {
    font-size: 1.25rem;
  }

  .review-single .info.flex .review-star {
    font-size: 1.25rem;
  }

  .review-single .info.flex .month {
    font-size: 0.9rem;
  }

  .review-single .review-content {
    font-size: 1rem;
  }

  .review-single .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .review-single .nav-next {
    text-align: left;
  }

  .menu-items .photo {
    height: unset;
  }
}

@media screen and (max-width: 480px) {
  .review-single-page {
    padding: 1.5rem 1rem;
  }

  .review-single {
    padding: 1.5rem;
  }

  .review-single .info.flex {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .review-single .info.flex .uppername {
    font-size: 1.125rem;
  }

  .review-single .review-content {
    font-size: 0.9375rem;
  }

  .review-single .nav-title {
    font-size: 1rem;
  }
}
