@charset "UTF-8";
:root {
  --color_bg_white: #e8e8e8;
  --color_base_text: #4c2f3b;
  --color_border_gray: rgba(0, 0, 0, 0.125);
}

/*-------------------------------------------------
 口コミリスト画面
-------------------------------------------------*/
html, body {
  font-family: "Noto Sans JP", -apple-system, system-ui, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.light {
  font-weight: 300;
}

.container {
  min-width: 370px;
}

.flex-box {
  display: flex;
  justify-content: space-between;
}

h1 {
  max-width: 58%;
  white-space: normal;
  word-break: break-word;
  font-weight: 400;
}

.itemReview h2, .itemReview p {
  text-align: center;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

#title-box {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 1em;
  padding-bottom: 0.7em;
}

#title-box::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #aa4d53, transparent);
}

#info-box {
  align-items: flex-start;
}

.btn_10 {
  margin: 1em auto 0;
  padding: 0.3em 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-top: 1px solid var(--color_base_text);
  border-bottom: 1px solid var(--color_base_text);
}
.btn_10 a {
  border: none;
  color: var(--color_base_text);
  text-decoration: none;
}
.btn_10 a:hover {
  color: #d97176;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em;
}
.btn-wrapper .btn_12 {
  width: 56%;
}

a.btn_12, a.btn_11 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  min-width: 130px;
  width: 33%;
  padding: 6px 4px;
  background: #aa4d53;
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}

a.btn_11 {
  background: #aba49d;
  color: #fff;
  min-width: 80px;
  width: 20%;
}

a.btn_12:hover {
  background: #d97176;
  color: #fff;
}

a.btn_11:hover {
  background: #ede8e6;
  color: var(--color_base_text);
}

.flex-l {
  padding-right: 10px;
}

.flex-r {
  flex: 0 0 auto;
}
.flex-r p.flex-box {
  justify-content: flex-start;
}
.flex-r p.flex-box a.tel-btn {
  margin-right: 5px;
}

.tel-btn, .site-btn {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  min-width: 80px;
  width: 38%;
  padding: 4px 2px;
  border-radius: 5px;
  position: relative;
  transition: 0.5s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.tel-btn {
  color: #6b4b3c;
  background: #f9e3e5;
  border: 1px solid #d88188;
}
.tel-btn:hover {
  background: #d88188;
  color: #333333;
  box-shadow: 0 4px 8px rgba(216, 129, 136, 0.25);
  transform: translateY(-1px);
}

.site-btn {
  background: white;
  border: 1px solid #d3c5b8;
  color: #6b4b3c;
}
.site-btn:hover {
  background: #f7f1eb;
  box-shadow: 0 4px 8px rgba(150, 130, 110, 0.18);
  transform: translateY(-1px);
}

/* key-v配置用*/
.w-100 {
  width: 100%;
  margin: 0;
  background: #ede8e6;
  color: #4b4d36;
}

.two-cols {
  --gap-x: 4px;
  --gap-y: clamp(12px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr; /* 横2カラムを常に維持（スマホでも） */
  grid-template-rows: 10px auto auto;
  grid-template-areas: "rt rt" "left right" "lb lb";
  -moz-column-gap: var(--gap-x);
       column-gap: var(--gap-x);
  row-gap: var(--gap-y);
  padding: 16px 0px clamp(16px, 10vw, 120px);
  position: relative;
  border-radius: 0;
}

/* ===== テキストは独立エリアに配置（被り防止） ===== */
.label {
  position: static;
  color: var(--color_base_text);
  line-height: 1.5;
  max-width: min(30ch, 40vw);
  border-radius: 0;
  pointer-events: none; /* レイアウト専用なら触れない */
}

.label__eyebrow {
  margin: 0 0 4px;
  font-size: clamp(11px, 1.6vw, 12px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.label__title {
  margin: 0 0 6px;
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 700;
}

.label__body {
  margin: 0;
  font-size: clamp(13px, 2.8vw, 15px);
  opacity: 0.9;
  width: 93%;
  overflow-wrap: anywhere;
}

/* グリッド配置 */
.label--top-right {
  grid-area: right;
  justify-self: end; /* 右寄せ */
}

.label--bottom-left {
  grid-area: lb;
  justify-self: start; /* 左寄せ */
  text-align: left;
  width: 48%;
  margin-left: 1em;
  min-height: 12em;
}

/* ===== 長方形（#aba49d） ===== */
.col {
  background: #aba49d;
  border-radius: 0;
  padding: 24px 12px;
  min-width: 0;
  display: flex;
}

.left {
  grid-area: left;
}

.right {
  grid-area: right;
}

/* 右を1/4下げ（自身の高さ基準） */
.col--offset {
  transform: translateY(25%);
}

/* 仮画像：縦長の青 */
.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ph-box {
  background: white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  width: 100%;
  aspect-ratio: 9/16;
}

.ph-box.lowwer {
  aspect-ratio: 3/3;
}

/* ===== 衝突しやすい幅帯をケア ===== */
@media (max-width: 820px) {
  .two-cols {
    --gap-y: clamp(16px, 6vw, 56px);
  } /* 行間隔を広げる */
  .col--offset {
    transform: translateY(25%);
  }
}
@media (max-width: 760px) {
  .two-cols {
    --gap-y: clamp(20px, 8vw, 64px);
  }
  .col--offset {
    transform: translateY(30%);
  }
}
@media (max-width: 500px) {
  .col--offset {
    transform: translateY(40%);
  } /* 段差を少し浅く */
}
@media (max-width: 400px) {
  .col--offset {
    transform: translateY(50%);
  }
}
/* 広めの画面では見た目を整えるだけ */
@media (min-width: 768px) {
  .two-cols {
    --gap-x:24px;
    padding: 24px 24px clamp(72px, 20vw, 200px);
  }
  .col {
    padding: 32px 16px;
  }
  .stack {
    gap: 16px;
  }
  .label {
    max-width: min(40ch, 40vw);
  }
}
@media (min-width: 960px) {
  .label {
    max-width: min(60ch, 40vw);
  }
  .two-cols {
    --gap-x:24px;
    padding: 24px 24px clamp(72px, 20vw, 250px);
  }
}
/* ----------------------------------
   スライダーセクション（背景グラデ＋背景画像）
---------------------------------- */
.slide {
  position: relative;
  isolation: isolate; /* 背景と中身をレイヤー分離 */
  display: grid;
  place-items: center;
  width: 100%;
  padding: 30px 24px 48px;
  background: linear-gradient(180deg, #e3ccd0, var(--color_bg_white), #e3ccd0);
  /* 背景画像：中央に配置、高さは親の半分、幅は100% */
}
.slide::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 50%;
  background: url("/img/list/m.jpg") no-repeat center;
  background-size: 100% auto; /* 幅100%・比率保持 */
  pointer-events: none;
  z-index: 0;
}

.media-slider {
  position: relative;
  width: 80vw;
  max-width: 450px;
  margin: 0 auto;
  padding: 1rem 0;
  box-sizing: border-box;
}
.media-slider__viewport {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
@supports not (aspect-ratio: 9/16) {
  .media-slider__viewport {
    height: 0;
    padding-top: 177.7777777778%;
  }
}
.media-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}
@supports not (aspect-ratio: 9/16) {
  .media-slider__track {
    position: absolute;
    inset: 0;
  }
}
.media-slider__slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-slider__image, .media-slider__video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fbf3f5;
  display: block;
}
.media-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-slider__nav--prev {
  left: 0.3rem;
}
.media-slider__nav--next {
  right: 0.3rem;
}
.media-slider__nav:hover {
  background: rgba(0, 0, 0, 0.7);
}
.media-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.media-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
}
.media-slider__dot.is-active {
  background: #555;
}
@media (max-width: 600px) {
  .media-slider {
    width: 88vw;
    max-width: 380px;
  }
  .media-slider__nav {
    font-size: 1.2rem;
  }
}

/* ----------------------------------
  googleマップ
---------------------------------- */
.shop-info-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5em;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  flex-wrap: nowrap; /* スマホでも横並びに */
}

.shop-info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  min-width: 0;
}

.info-item .item-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color_base_text);
  margin-bottom: 0.2em;
}

.info-item .value {
  font-size: 0.9rem;
  color: var(--color_base_text);
  line-height: 1.3;
}

.map-embed {
  width: 25vh;
  height: 40vh;
  border-radius: 1.2em;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 1px solid var(--color_border_gray);
  border-radius: 1.2em;
}
@media (min-width: 768px) {
  .map-embed {
    width: 280px;
    height: 280px;
  }
}

#shop-info-btns.flex-box {
  justify-content: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}

.sns-link {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sns-link .sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b211a;
  text-decoration: none;
  transition: 0.2s ease;
}
.sns-link .sns-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  transition: 0.2s ease;
}
.sns-link .sns-icon:hover svg {
  opacity: 0.7;
  transform: scale(1.05);
}

.footer {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.footer.py-3 {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.footer .row {
  justify-content: center;
}
.footer .row .col {
  background: #ffffff;
  display: block;
}
.footer .row .col a {
  color: inherit;
  text-decoration: none;
}

/* ----------------------------------
   口コミ詳細
---------------------------------- */
