@charset "UTF-8";
:root {
  --primary-deep: #2d4a2d;
  --primary-mid: #3d6b3d;
  --primary-lgt: #5c8a4a;
  --primary-pale: #d4e6c3;
  --secondary-dark: #6b4226;
  --secondary-mid: #b07850;
  --secondary-lgt: #c9956a;
  --base-cream: #f7f2eb;
  --base-warm: #ede5d8;
  --base-parch: #d9ccba;
  --star-active: #ffc017;
  --star-base: #acacac;
  --font-regular: 400;
  --font-medium: 500;
}

body.is-modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

input[type=radio] {
  display: none;
}

button:focus {
  outline: none;
}

/* グリッドエリア */
.grid-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 10px;
}

/* デスクトップ背景含むコンテンツエリア全体 */
.container {
  position: relative;
  background: url(../img/bg_desktop.jpg) no-repeat center/cover;
  background-attachment: fixed;
  font-family: "Noto Sans JP", sans-serif;
  overflow: clip;
}
.container img {
  display: block;
  width: 100%;
  height: auto;
}

/* コンテンツ */
.content {
  position: relative;
  margin: 0 auto;
  background-color: var(--base-cream);
}
@media all and (width > 768px) {
  .content {
    width: min(100%, 500px);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.2);
  }
}

.content__inner {
  padding-right: 20px;
  padding-left: 20px;
}

.lead {
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 1.7;
  text-align: justify;
}

/* 一番大きいボタン */
.btn_big {
  display: block;
  width: 100%;
  height: 70px;
  padding: 4px;
  background-color: #3d8f30;
  border: 1px solid #134c12;
  border-radius: 35px;
  box-shadow: 0 4px 8px rgba(101, 72, 32, 0.5);
}
.btn_big:hover {
  opacity: 0.8;
}
.btn_big .inner {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: 100%;
  height: 100%;
  padding-right: 20px;
  padding-left: 20px;
  background: linear-gradient(to top, #2f7d25, #4ca23b);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
}
.btn_big .icon {
  width: 21px;
  margin-top: 5px;
}
.btn_big .text {
  margin: 0 auto;
  color: #fff;
  font-size: min(4.5vw, 18px);
  font-weight: var(--font-medium);
  text-shadow: 0 1.5px 0 rgba(0, 0, 0, 0.5);
}
@media all and (width <= 360px) {
  .btn_big .text {
    font-size: 4.3vw;
  }
}

/* モーダルウインドウ */
.modal__overlay {
  position: fixed;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(82, 74, 63, 0.9);
  backdrop-filter: blur(4px);
  opacity: 0;
}
.modal__overlay.is-show {
  display: flex;
}

.modal__content {
  position: relative;
  padding: 36px 25px;
  width: min(100%, 480px);
}
.modal__search .modal__content {
  background: #e7dfd5;
}
@media screen and (height < 674px) {
  .modal__search .modal__content {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
  }
}
.modal__readmore .modal__content {
  max-height: calc(100vh - 20px);
  padding-top: 45px;
  background: #fff;
  overflow-y: auto;
}

.modal__btn_close {
  position: absolute;
  top: 7px;
  right: 7px;
  display: block;
  color: #fff;
  width: 30px;
  border: none;
  cursor: pointer;
}
.modal__btn_close:hover {
  opacity: 0.8;
}

.modal__title_h2,
.modal__title_h3 {
  font-weight: var(--font-medium);
}

.modal__title_h2 {
  margin-bottom: 30px;
  font-size: min(6vw, 21px);
  text-align: center;
}

.modal__title_h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

.modal__btn_submit {
  display: flex;
  align-items: center;
  gap: 0 10px;
  width: min(100%, 310px);
  height: 70px;
  margin: 30px auto 0;
  padding-right: 25px;
  padding-left: 25px;
  background: linear-gradient(to top, #2a5a29, #49af31);
  border: 1px solid #134c12;
  border-radius: 35px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.9), 0 4px 8px rgba(101, 72, 32, 0.5);
}
.modal__btn_submit:hover {
  opacity: 0.8;
}
.modal__btn_submit .icon {
  width: 21px;
  margin-top: 5px;
}
.modal__btn_submit .text {
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  font-weight: var(--font-medium);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.modal__btn_clear {
  display: flex;
  align-items: center;
  gap: 0 5px;
  width: min(85%, 245px);
  height: 45px;
  margin: 14px auto 0;
  padding-right: 20px;
  padding-left: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: var(--font-medium);
  background: #d04f41;
  border: 1px solid #841c11;
  border-radius: 23px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.modal__btn_clear::before {
  display: block;
  width: 14px;
  height: 17px;
  background: url(../img/icn_clear.png) no-repeat center/contain;
  content: "";
}
.modal__btn_clear:hover {
  opacity: 0.8;
}
.modal__btn_clear .text {
  margin: auto;
}

/* ラジオボタン */
.btn_radio {
  position: relative;
  display: grid;
  place-items: center;
  height: 35px;
  font-weight: var(--font-medium);
  font-size: 18px;
  color: #524a3f;
  background: linear-gradient(to bottom, rgba(204, 218, 228, 0), #f1f1f1), var(--base-cream);
  border: 1px solid #524a3f;
  box-shadow: inset 0 0 0 1px #ffffff, 0px 1px 4px 0 rgba(82, 74, 63, 0.5);
  border-radius: 4px;
  text-shadow: 0 1px 1px #fff;
  cursor: pointer;
}
input[type=radio]:checked + .btn_radio {
  background: #524a3f;
  box-shadow: inset 0 0 0 1px rgba(214, 200, 181, 0.2);
  border: 1px solid #524a3f;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
input[type=radio]:checked + .btn_radio::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 2px 3px rgba(214, 200, 181, 0.8);
  mix-blend-mode: multiply;
  content: "";
}

/* カスタムセレクトボックス */
.custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.btn_select {
  position: relative;
  /* 固定ヘッダーは2段構成で、2段目の.l-headerC .is-fixed_underが
     z-index:2のため、それより手前に出ないよう1に下げる */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
  height: 50px;
  padding-right: 17px;
  padding-left: 20px;
  font-weight: var(--font-medium);
  font-size: min(4.65vw, 18px);
  color: #6d6d6d;
  background: linear-gradient(to bottom, rgba(204, 218, 228, 0), #f1f1f1), var(--base-cream);
  border: 1px solid #524a3f;
  box-shadow: inset 0 0 0 1px #ffffff, 0px 1px 4px 0 rgba(82, 74, 63, 0.5);
  border-radius: 8px;
  text-align: left;
  text-shadow: 0 1px 1px #fff;
  cursor: pointer;
}
@media all and (width <= 350px) {
  .btn_select {
    font-size: 4.3vw;
  }
}
.btn_select::after {
  display: block;
  width: 16px;
  height: 14px;
  margin-top: 2px;
  background: url(../img/icn_angle_bottom.png) no-repeat center/contain;
  content: "";
}
.is-open .btn_select::after {
  transform: rotate(180deg);
}
.is-open .btn_select {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.btn_select .placeholder {
  color: #6d6d6d;
}
.btn_select.is-selected {
  color: #fff;
  background: #524a3f;
  border: 1px solid #524a3f;
  box-shadow: inset 0 0 4px 0 rgba(255, 255, 255, 0.9), 0px 2px 4px 0 rgba(82, 74, 63, 0.5);
  text-shadow: 0 1px 1px #000;
}
.btn_select.is-selected::after {
  background-image: url(../img/icn_angle_bottom_wh.png);
}

.select-options {
  position: absolute;
  /* 固定ヘッダーは2段構成で、2段目の.l-headerC .is-fixed_underが
     z-index:2のため、それより手前に出ないよう1に下げる */
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  padding: 55px 20px 5px;
  background: linear-gradient(to bottom, rgba(119, 119, 119, 0.1), rgba(255, 255, 255, 0.1)), #f0efeb;
  border: 1px solid #000;
  border-radius: 8px;
  box-shadow: inset 0px 0px 7px 0px rgba(255, 255, 255, 0.6), 0 2px 20px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px #fff;
}
.is-open .select-options {
  display: block;
}

.btn_select_close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: url(../img/btn_close_modal.png) no-repeat center/contain;
}

.option-scroll {
  max-height: 350px;
  overflow-y: auto;
}
.option-scroll::-webkit-scrollbar {
  width: 5px;
}
.option-scroll::-webkit-scrollbar-thumb {
  background: #8d8c8b;
  border-radius: 5px;
}
.option-scroll::-webkit-scrollbar-track {
  background: transparent;
}
@supports not selector(::-webkit-scrollbar) {
  .option-scroll {
    scrollbar-color: #8d8c8b transparent;
    scrollbar-width: thin;
  }
}
@media all and (height < 770px) {
  .option-scroll {
    max-height: 43vh;
  }
}

.option-label,
.option-item {
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: var(--font-medium);
  font-size: min(4.65vw, 18px);
}
@media all and (width <= 350px) {
  .option-label,
  .option-item {
    font-size: 4.3vw;
  }
}

.option-label {
  font-size: 18px;
  color: #898989;
  pointer-events: none;
}
.option-label::before {
  margin-right: 0.2em;
  content: "●";
}

.option-item {
  padding-left: 1em;
  cursor: pointer;
}

/* セクションタイトル */
.section__title {
  margin-bottom: 18px;
  font-size: 21px;
  font-weight: var(--font-medium);
  line-height: 1.1428571429;
}

/* ローディングアニメーション */
:root {
  --ink: #fff; /* 線の色 */
  --bg: #524a3f; /* 背景色＝面の塗り色（背景と同化させ線だけに見せる） */
  --speed: 3s; /* 片道(表1→表4)の長さ。往復でこの2倍が1ループ。値を小さくすると速くなる */
}

.loading {
  position: relative;
  /* プルダウン(.select-options)より手前に出ないよう10→1に下げる。
     .card.is-loadingは.card__review等をdisplay:noneにしており、このz-indexが
     何かを覆う目的で機能している箇所は見当たらないため(未確認)、
     念のため削除はせず1に下げるだけに留める */
  z-index: 1;
  aspect-ratio: 638/746;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: calc(100% + 40px);
  margin-right: -20px;
  margin-left: -20px;
  background: url(../img/bg_loading.png) no-repeat center/cover;
}
.card:not(.is-loading) .loading {
  display: none;
}
.loading {
  /* ===== ローダー本体 ここから ===== */
}
.loading .book-loader {
  --w: 48px; /* 1ページの幅 */
  --h: 64px; /* 本の高さ */
  width: calc(var(--w) * 2 + 40px);
  /*height:calc(var(--h) + 40px);*/
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1100px;
}
.loading .book {
  position: relative;
  width: 0;
  height: var(--h);
  transform-style: preserve-3d;
  transform: rotateX(8deg);
}
.loading .book > div {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--w);
  height: var(--h);
  transform-origin: left center;
  box-sizing: border-box;
  border: 4px solid var(--ink); /* 全体4pxの太線 */
  border-left: 0; /* 背表紙側の線は描かない（1本に集約） */
  border-radius: 0 6px 6px 0; /* 小口側だけ丸く */
  background: var(--bg); /* 塗りは背景色と同じ＝線だけに見える */
  backface-visibility: visible;
}
.loading {
  /* 背表紙＝中央の縦線。これ1本だけ（常に最前面） */
}
.loading .spine {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: var(--h);
  background: var(--ink);
  transform-origin: left center;
  transform: translateZ(4px);
  backface-visibility: visible;
}
.loading {
  /* 裏表紙（最後にめくれて表4を見せる） */
}
.loading .cover-back {
  border-width: 4px 4px 4px 0; /* 左ボーダーなし */
  animation: coverback var(--speed) ease-in-out infinite alternate;
}
.loading {
  /* 表紙（開閉する） */
}
.loading .cover-front {
  border-width: 4px 4px 4px 0; /* 左ボーダーなし */
  animation: cover var(--speed) ease-in-out infinite alternate;
}
.loading {
  /* めくれる中ページ（白紙） */
}
.loading .page {
  background: var(--bg);
}
.loading .p1 {
  animation: page1 var(--speed) ease-in-out infinite alternate;
}
.loading .p2 {
  animation: page2 var(--speed) ease-in-out infinite alternate;
}
.loading .p3 {
  animation: page3 var(--speed) ease-in-out infinite alternate;
}
.loading {
  /* 0%=表1を上にして閉じた状態 → 100%=表4を上にして閉じた状態。
     表1→p1→p2→p3→裏表紙 の順に左へ倒れていく。
     alternate で巻き戻り、表1↔表4 を継ぎ目なくループ。 */
}
@keyframes cover {
  /* 表紙：最初にめくれる */
  0%, 5% {
    transform: translateZ(3.5px) rotateY(0deg);
  }
  20%, 100% {
    transform: translateZ(3.5px) rotateY(-180deg);
  }
}
@keyframes page1 {
  0%, 22% {
    transform: translateZ(2.5px) rotateY(0deg);
  }
  37%, 100% {
    transform: translateZ(2.5px) rotateY(-180deg);
  }
}
@keyframes page2 {
  0%, 39% {
    transform: translateZ(1.5px) rotateY(0deg);
  }
  54%, 100% {
    transform: translateZ(1.5px) rotateY(-180deg);
  }
}
@keyframes page3 {
  0%, 56% {
    transform: translateZ(0.5px) rotateY(0deg);
  }
  71%, 100% {
    transform: translateZ(0.5px) rotateY(-180deg);
  }
}
@keyframes coverback {
  /* 裏表紙：最後にめくれて表4を見せ、保持 */
  0%, 73% {
    transform: translateZ(-1.5px) rotateY(0deg);
  }
  90%, 100% {
    transform: translateZ(-1.5px) rotateY(-180deg);
  }
}
.loading .label {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.12em;
  opacity: 0.7;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.85;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loading .cover-front,
  .loading .cover-back,
  .loading .page {
    animation: none;
  }
}
.loading {
  /* ===== ローダー本体 ここまで ===== */
}

/* クチコミカード */
.card {
  position: relative;
  min-width: 0;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #fff;
  border: 1px solid #000;
}
.card.is-loading .card__review,
.card.is-loading .card__user__small,
.card.is-loading .card__user__large,
.card.is-loading .card__btn-area {
  display: none;
}

.card__wrapper {
  display: grid;
  gap: 10px;
}

.card__review {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.card__review:last-child {
  margin-bottom: -1px;
}
.card__review:not(:last-child) {
  margin-top: -1px;
}
.card:has(.card__btn-area) .card__review:not(:last-child) {
  margin-top: 0;
  margin-bottom: -1px;
}

.review__item__name, .review__title {
  font-weight: var(--font-medium);
}
.review__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 8px;
  align-items: center;
  margin-bottom: 15px;
  padding: 5px 6px;
  background-color: var(--base-cream);
  border-radius: 5px;
}
.review__item__image {
  padding: 0;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  overflow: hidden;
}
.review__item__name {
  font-size: 14px;
}
.review__title {
  margin-bottom: 7px;
  font-size: 18px;
}
.review__stars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 5px;
  width: 85px;
  margin-bottom: 17px;
}
.review__stars .star {
  display: block;
  aspect-ratio: 1;
  -webkit-mask: url(../img/icn_star.svg) no-repeat center/contain;
          mask: url(../img/icn_star.svg) no-repeat center/contain;
  background: var(--star-base);
}
.review__stars.score0_1 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 10%, var(--star-base) 10%);
}
.review__stars.score0_2 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 20%, var(--star-base) 20%);
}
.review__stars.score0_3 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 30%, var(--star-base) 30%);
}
.review__stars.score0_4 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 40%, var(--star-base) 40%);
}
.review__stars.score0_5 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 50%, var(--star-base) 50%);
}
.review__stars.score0_6 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 60%, var(--star-base) 60%);
}
.review__stars.score0_7 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 70%, var(--star-base) 70%);
}
.review__stars.score0_8 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 80%, var(--star-base) 80%);
}
.review__stars.score0_9 .star:nth-child(1) {
  background: linear-gradient(to right, var(--star-active) 90%, var(--star-base) 90%);
}
.review__stars.score1_0 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_1 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_1 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 10%, var(--star-base) 10%);
}
.review__stars.score1_2 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_2 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 20%, var(--star-base) 20%);
}
.review__stars.score1_3 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_3 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 30%, var(--star-base) 30%);
}
.review__stars.score1_4 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_4 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 40%, var(--star-base) 40%);
}
.review__stars.score1_5 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_5 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 50%, var(--star-base) 50%);
}
.review__stars.score1_6 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_6 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 60%, var(--star-base) 60%);
}
.review__stars.score1_7 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_7 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 70%, var(--star-base) 70%);
}
.review__stars.score1_8 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_8 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 80%, var(--star-base) 80%);
}
.review__stars.score1_9 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score1_9 .star:nth-child(2) {
  background: linear-gradient(to right, var(--star-active) 90%, var(--star-base) 90%);
}
.review__stars.score2_0 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_0 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_1 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_1 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_1 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 10%, var(--star-base) 10%);
}
.review__stars.score2_2 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_2 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_2 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 20%, var(--star-base) 20%);
}
.review__stars.score2_3 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_3 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_3 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 30%, var(--star-base) 30%);
}
.review__stars.score2_4 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_4 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_4 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 40%, var(--star-base) 40%);
}
.review__stars.score2_5 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_5 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_5 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 50%, var(--star-base) 50%);
}
.review__stars.score2_6 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_6 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_6 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 60%, var(--star-base) 60%);
}
.review__stars.score2_7 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_7 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_7 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 70%, var(--star-base) 70%);
}
.review__stars.score2_8 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_8 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_8 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 80%, var(--star-base) 80%);
}
.review__stars.score2_9 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score2_9 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score2_9 .star:nth-child(3) {
  background: linear-gradient(to right, var(--star-active) 90%, var(--star-base) 90%);
}
.review__stars.score3_0 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_0 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_0 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_1 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_1 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_1 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_1 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 10%, var(--star-base) 10%);
}
.review__stars.score3_2 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_2 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_2 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_2 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 20%, var(--star-base) 20%);
}
.review__stars.score3_3 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_3 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_3 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_3 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 30%, var(--star-base) 30%);
}
.review__stars.score3_4 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_4 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_4 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_4 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 40%, var(--star-base) 40%);
}
.review__stars.score3_5 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_5 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_5 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_5 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 50%, var(--star-base) 50%);
}
.review__stars.score3_6 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_6 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_6 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_6 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 60%, var(--star-base) 60%);
}
.review__stars.score3_7 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_7 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_7 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_7 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 70%, var(--star-base) 70%);
}
.review__stars.score3_8 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_8 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_8 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_8 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 80%, var(--star-base) 80%);
}
.review__stars.score3_9 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score3_9 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score3_9 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score3_9 .star:nth-child(4) {
  background: linear-gradient(to right, var(--star-active) 90%, var(--star-base) 90%);
}
.review__stars.score4_0 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_0 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_0 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_0 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_1 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_1 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_1 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_1 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_1 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 10%, var(--star-base) 10%);
}
.review__stars.score4_2 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_2 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_2 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_2 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_2 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 20%, var(--star-base) 20%);
}
.review__stars.score4_3 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_3 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_3 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_3 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_3 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 30%, var(--star-base) 30%);
}
.review__stars.score4_4 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_4 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_4 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_4 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_4 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 40%, var(--star-base) 40%);
}
.review__stars.score4_5 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_5 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_5 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_5 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_5 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 50%, var(--star-base) 50%);
}
.review__stars.score4_6 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_6 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_6 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_6 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_6 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 60%, var(--star-base) 60%);
}
.review__stars.score4_7 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_7 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_7 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_7 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_7 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 70%, var(--star-base) 70%);
}
.review__stars.score4_8 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_8 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_8 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_8 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_8 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 80%, var(--star-base) 80%);
}
.review__stars.score4_9 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score4_9 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score4_9 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score4_9 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score4_9 .star:nth-child(5) {
  background: linear-gradient(to right, var(--star-active) 90%, var(--star-base) 90%);
}
.review__stars.score5_0 .star:nth-child(1) {
  background: var(--star-active);
}
.review__stars.score5_0 .star:nth-child(2) {
  background: var(--star-active);
}
.review__stars.score5_0 .star:nth-child(3) {
  background: var(--star-active);
}
.review__stars.score5_0 .star:nth-child(4) {
  background: var(--star-active);
}
.review__stars.score5_0 .star:nth-child(5) {
  background: var(--star-active);
}
.review__text {
  font-weight: var(--font-regular);
  line-height: 1.5;
}
.review__btn_more {
  display: block;
  margin-top: 8px;
  padding: 4px 9px 5px;
  color: #fff;
  font-size: 12px;
  font-weight: var(--font-medium);
  background-color: #524a3f;
  border-radius: 4px;
}
.review__btn_more:hover {
  opacity: 0.8;
}

.card__user__small {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 12px;
  padding-top: 15px;
  padding-bottom: 20px;
}
.card__user__small .user__name {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: var(--font-medium);
}
.card__user__small .user__attr {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 10px;
}
.card__user__small .user__attr__group {
  display: inline-flex;
}
.card__user__small .user__attr__label, .card__user__small .user__attr__value {
  font-size: min(3.7vw, 13px);
}
.card__user__small .user__attr__label {
  white-space: nowrap;
}
.card__user__small .link_more {
  display: flex;
  align-items: center;
  gap: 0 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 7px;
  padding-bottom: 2px;
  color: #000;
  font-size: min(3.9vw, 13px);
  font-weight: var(--font-medium);
  border-bottom: 1px solid #000;
}
.card__user__small .link_more::before {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  background: url(../img/icn_fukidashi.png) no-repeat center/contain;
  content: "";
}
.card__user__small .link_more:hover {
  border-color: transparent;
}
.card__user__large {
  padding-top: 20px;
  padding-bottom: 10px;
}
.card__user__large .user__head {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px 15px;
  margin-bottom: 13px;
}
.card__user__large .user__image {
  grid-row: 1/3;
}
.card__user__large .user__name {
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 1.3333333333;
}
.card__user__large .user__postnum {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px;
  background-color: var(--base-cream);
  border: 1px solid #000;
}
.card__user__large .user__postnum__label, .card__user__large .user__postnum__value {
  font-size: 13px;
}
.card__user__large .user__postnum__label {
  padding-right: 10px;
  padding-left: 10px;
}
.card__user__large .user__postnum__value {
  display: grid;
  place-items: center;
  width: 40px;
  height: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: var(--font-medium);
  background-color: #524a3f;
}
.card__user__large .user__attr {
  display: flex;
  flex-wrap: wrap;
}
.card__user__large .user__attr__group {
  display: flex;
  margin-top: 4px;
}
.card__user__large .user__attr__group:not(:first-child)::before {
  font-size: min(3.7vw, 13px);
  content: "／";
}
.card__user__large .user__attr__label, .card__user__large .user__attr__value {
  font-size: min(3.7vw, 13px);
  font-weight: var(--font-regular);
}
.card__user__large .item__title {
  margin-top: 15px;
  margin-bottom: 10px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: var(--font-medium);
  background-color: var(--base-cream);
}
.card__user__large .item__title::before {
  margin-right: 2px;
  color: #3e8f30;
  content: "■";
}
.card__user__large .item-slider.slick-initialized {
  margin-right: -20px;
  margin-left: -20px;
}
.card__user__large .item-slider.slick-initialized .slick-track {
  margin-left: 0;
}
.card__user__large .item-slider__slide {
  padding-right: 6px;
  padding-left: 6px;
}
.card__user__large .item-slider__slide:first-child {
  padding-left: 20px;
}
.card__user__large .item-slider__slide a {
  display: block;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  overflow: hidden;
}

.card__btn-area {
  margin-right: -20px;
  margin-left: -20px;
  padding: 20px;
  background-color: #e7dfd5;
  border-top: 1px solid #000;
}
.card__btn-area .btn_more {
  display: flex;
  align-items: center;
  gap: 0 10px;
  height: 45px;
  padding-right: 20px;
  padding-left: 20px;
  color: #fff;
  font-weight: var(--font-medium);
  background-color: #3e8f30;
  border: 1px solid #134c12;
  border-radius: 45px;
}
.card__btn-area .btn_more:hover {
  opacity: 0.8;
}
.card__btn-area .btn_more::before {
  display: block;
  width: 16px;
  height: 17px;
  margin-top: 5px;
  background: url(../img/icn_fukidashi_wh.png) no-repeat center/contain;
  content: "";
}
.card__btn-area .btn_more .text {
  margin: auto;
  font-size: min(4vw, 15px);
  font-weight: var(--font-medium);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
@media all and (width <= 360px) {
  .card__btn-area .btn_more .text {
    font-size: 3.6vw;
  }
}

/* カード用スライダー */
.card-slider.slick-initialized {
  margin-bottom: 0 !important;
}
.card-slider.slick-initialized .slick-arrow {
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  opacity: 1;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(101, 72, 32, 0.5);
}
.card-slider.slick-initialized .slick-arrow::before {
  content: none;
}
.card-slider.slick-initialized .slick-arrow:hover {
  opacity: 0.8;
}
.card-slider.slick-initialized .slick-next {
  right: 5px;
  background: url(../img/slide-arrow-r.png) no-repeat center/contain;
}
.card-slider.slick-initialized .slick-prev {
  left: 5px;
  background: url(../img/slide-arrow-l.png) no-repeat center/contain;
}
.card-slider.slick-initialized .slick-disabled {
  display: none !important;
}

/* 1枚目だけpaddingを変えるとslickの移動量計算(全スライド同幅前提)とズレて
   カードが徐々に左へ流れて切れるため、端の余白はスライド側ではなくスライダー側で持つ */
.card-slider {
  padding-right: 15px;
  padding-left: 15px;
}
.card-slider__slide {
  padding-right: 5px;
  padding-left: 5px;
}

.card-slider__dots-bar {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  /* .card-sliderに追加したpadding-left分、ドットバーがカードより右にずれるため打ち消す */
  margin-left: -15px;
  padding: 0 20px;
}
.card-slider__dots-bar li {
  flex: 1;
  height: 1px;
  margin: 0;
  width: auto;
}
.card-slider__dots-bar li.slick-active button {
  background: #0a0a09;
}
.card-slider__dots-bar button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #d9ccba;
  vertical-align: top;
  font-size: 0;
}
.card-slider__dots-bar button::before {
  content: none;
}

/* 登録してクチコミを投稿する */
.entry {
  padding-top: 45px;
  padding-bottom: 90px;
  background: url(../img/bg_entry.jpg) no-repeat center/cover;
}
.entry__lead {
  margin-bottom: 25px;
  color: #fff;
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 1.75;
  text-align: center;
}

/* メニューバー（ページ下部固定） */
.menubar {
  position: fixed;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 90;
  width: min(100%, 390px);
  margin: auto;
  padding-right: 10px;
  padding-left: 10px;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.menubar.is-menubar-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.menubar__list {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 0 15px;
  height: 70px;
  padding-right: 25px;
  padding-left: 25px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.05)), rgba(255, 255, 255, 0.9);
  border: 1px solid #d0d0d0;
  border-radius: 35px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.2);
}
.menubar__link {
  display: grid;
  place-content: center;
  gap: 5px 0;
  height: 100%;
  color: #75716b;
  font-size: min(3vw, 12px);
  font-weight: var(--font-medium);
  text-shadow: 0 1px 0 #fff;
}
.menubar__link::before {
  display: block;
  width: 25px;
  height: 27px;
  margin: 0 auto;
  content: "";
}
.menubar__link:visited {
  color: #75716b;
}
.menubar__item:nth-child(1) .menubar__link::before {
  background: url(../img/icn_menubar01.png) no-repeat center/contain;
}
.menubar__item:nth-child(2) .menubar__link::before {
  background: url(../img/icn_menubar02.png) no-repeat center/contain;
}
.menubar__item:nth-child(3) .menubar__link::before {
  background: url(../img/icn_menubar03.png) no-repeat center/contain;
}

.btn_loadmore {
  display: flex;
  align-items: center;
  width: min(100%, 305px);
  height: 60px;
  margin: 25px auto 50px;
  padding-right: 25px;
  padding-left: 25px;
  color: #fff;
  background-color: #524a3f;
  border: 1px solid #000;
  border-radius: 30px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.btn_loadmore::before {
  display: block;
  width: 18px;
  height: 19px;
  background: url(../img/icn_load.png) no-repeat center/contain;
  content: "";
}
.btn_loadmore:hover {
  opacity: 0.8;
}
.btn_loadmore .text {
  margin: auto;
}