@charset "UTF-8";

/* =========================================
   Reset / Base (minimal + safe)
   - 旧IEハック削除
   - フォントは inherit を基本に
   - box-sizing を統一
========================================= */
html{
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*, *::before, *::after{
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li,
dl, dt, dd,
figure, figcaption,
blockquote,
table, th, td,
form, fieldset, legend,
input, textarea, button, select{
  margin: 0;
  padding: 0;
}

fieldset{ border: 0; }
ol, ul{ list-style: none; }

table{
  border-collapse: collapse;
  border-spacing: 0;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
  vertical-align: bottom;
}

a{
  color: #5A3822;
  text-decoration: none;
}

hr{ display: none; }

/* フォーム要素が勝手に別フォントにならないように */
button, input, select, textarea{
  font: inherit;
  color: inherit;
}

/* =========================================
   Font system
   - 明朝が基本（Adobe Fonts）
   - content5 / content6 はゴシック（Google Fonts）
   - 余計な全要素強制を撤去
========================================= */
:root{
  --font-serif: "dnp-shuei-mincho-pr6n", serif;
  --font-sans:  "Noto Sans JP", sans-serif;

  --text: #3e3a39;
  --bg:   #fff;
}

html{
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
}

body{
  background-color: var(--bg);
  color: var(--text);

  /* ここが“基本” */
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;

  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  word-break: break-word;

  background: url("img/body_bg.png") repeat;
}

/* セクション単位でゴシックへ（要件） */
.content5,
.content6{
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em; /* ゴシック時に詰まりすぎない最小限 */
}

/* content5/6内で、見出しだけ太さを変えたい場合はここで制御 */
.content5 h2, .content5 h3, .content5 h4, .content5 h5,
.content6 h2, .content6 h3, .content6 h4, .content6 h5{
  font-family: inherit;
  font-weight: 500;
}

/* 旧CSSにあった “全要素 line-height:2” の代替：必要な箇所だけ */
p, li{
  line-height: 2;
}

.toiawasebtn{
  display: block;
  margin: 0 auto;
}

.bgg{
  margin-bottom: 50px;
}

.content8 .cards .card a{
  font-size: 18px;
}

/* =========================================
   Headings (元の意図を維持)
========================================= */
h1, h2, h3, h4, h5, h6{
  font-size: 100%;
  font-weight: normal;
}

h2{
  font-size: 36px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: normal;
}

h3{
  font-size: 28px;
  font-family: var(--font-serif);
  font-style: normal;
}

h2, h3{
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: center;
  word-break: break-all;
  line-height: 1.5;
}

/* =========================================
   Utilities / misc (元CSSから必要最低限)
========================================= */
.row{
  display: flex;
}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

/* 表示切替ユーティリティを一本化 */
.pc_only{ display: block; }
.sp_only{ display: none; }

/* =========================================
   Lazyload (現状の書き方だと常時アニメになるため整理)
   ※ lazyloaded クラスは一般的な lazyload ライブラリの想定
========================================= */
img.lazyload{ opacity: 0; }
img.lazyloaded{ animation: fade 1s forwards; }

@keyframes fade{
  0%{ opacity: 0; }
  100%{ opacity: 1; }
}

/* =========================================
   ここから下は「既存CSSをそのまま」
   ※ 依頼が“フォントとリセット周りだけ整理”なので、
      レイアウト/アニメ等は原文を保持
========================================= */

/*リンクの形状*/
#page-top a{
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 15px;
  bottom: 380px;
  width: 17px;
  height: 67px;
  z-index: 9999;
}

.botan{
  text-align: center;
  margin-top: 10px;
}

.btn,
a.btn,
button.btn {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-tag {
  padding: 20px 20px 20px 60px;
  color: #fff;
  background: #f39800;
}

a.btn-tag:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  content: "";
  border-radius: 0.5rem 0 0 0.5rem;
  background: rgba(0, 0, 0, 0.07);
}

a.btn-tag:hover {
  color: #fff;
  background: #ffa50e;
}

a.btn-tag i {
  font-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  padding: 1.5rem 0;
  text-align: center;
  letter-spacing: 0;
}

/*ここから個別設定*/
.inner {
  margin: 0 auto;
  text-align: left;
  width: 94%;
}

#kagokotei2{
position: fixed;
    right: 10px;
    bottom: 10px;
    width: 45%;
    height: auto;
    z-index: 9999;
	max-width: 273px;
}

#kagokotei1{
position: fixed;
    right: 15px;
    bottom: 15px;
    width: 180px;
    height: 205px;
    z-index: 9999;
}

body.itv2025-noscroll #kagokotei1,
body.itv2025-noscroll #kagokotei2{
  display: none !important;
}

/* =========================
   Key Visual
========================= */
.kv{
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100svh;
  height: 100vh;
  overflow: hidden;
}

/* 背景画像 */
.kv img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kv > img{
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* KV開始 */
.kv.is-start > img{
  opacity: 1;
}

/* =========================
   縦書きコピー
========================= */
.kv-copy{
  position: absolute;
  top: 15%;
  right: 10vw;
  transform: none;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  text-orientation: upright; /* mixed → upright */
}

.kv-copy2{
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.kv-title{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.kv-title.is-show{
  opacity: 1;
  transform: translateY(0);
}

.kv-title img{
  width: 201px;
  height: auto;
}

.kv-text{
  font-size: clamp(18px, 2.0vw, 20px);
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0;
  margin-right: 60px;
  white-space: nowrap;
  height: 530px;
  visibility: hidden;
}

.kv-text.is-reveal{
  opacity: 1;
  filter: blur(0);
}

.kv-text{
  white-space: nowrap;
}

.kv-text .kv-char{
  opacity: 0;
  transform: translateY(8px);
  will-change: transform, opacity;
  display: inline-block;
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}

.kv-text .kv-char.is-on{
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.v-text .v-choonpu{
  display: inline-block;
  transform: translateY(8px) rotate(90deg);
  transform-origin: center;
  margin-top: -10px;
  margin-bottom: 5px;
}

/* 「ー」だけ：出現前（is-on じゃない時） */
.kv-text .kv-char.kv-choonpu{
  transform: translateY(8px) rotate(90deg);
  transform-origin: center;
}

/* 「ー」だけ：出現後（is-on が付いた時） */
.kv-text .kv-char.kv-choonpu.is-on{
  transform: translateY(0) rotate(90deg);
}

/* reveal（親） */
.reveal{
  position: relative;
  overflow: hidden;
}

/* 画像本体：最初は隠れて、下から出る */
.reveal__img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;

  opacity: 0;
  transform: translateY(18px);
  filter: blur(10px);

  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 18%, black 100%);
  mask-image: linear-gradient(to top, transparent 0%, black 18%, black 100%);
  -webkit-mask-size: 100% 240%;
  mask-size: 100% 240%;
  -webkit-mask-position: 0% 100%;
  mask-position: 0% 100%;

  transition:
    opacity 1.2s ease,
    transform 1.6s ease,
    filter 2.0s ease,
    -webkit-mask-position 2.5s cubic-bezier(.22,.61,.36,1),
    mask-position 2.5s cubic-bezier(.22,.61,.36,1);
}

.reveal.is-inview .reveal__img{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
}

.reveal::after{ content:none; }

/* =========================
   Scroll Contents
========================= */
.page{
  position: relative;
  z-index: 1;
  padding-top: 100svh;
  padding-top: 100vh;
  width: 100%;
  margin: 0 auto;
}

.page-inner{
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  min-height: 100vh;
}

.content{
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 0 0;
  text-align: center;
}

.content2{
  background: #fff;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.content4{
  background-color: #eae5e1;
  background-image: url("img/bg.png");
  background-repeat: repeat;
  background-position: 0 0;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

.content5{
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

.content4 p span{
  font-size: 12px;
}

.cards{
  width: 800px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  margin-top: 50px;
}

.card{
  width: 230px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.card img{
  width: 100%;
  height: auto;
  display: block;
}

.card p{
  margin: 12px 0 0;
  line-height: 1.6;
  text-align: left;
}

.cardstext01{ font-size: 12px; }

.cardstext02{
  font-size: 16px;
  line-height: 1.5;
}

.cardstext03{
  font-size: 14px;
  display: block;
  margin: 10px 0;
}

.mt20{ margin-top: 20px; }
.mt30{ margin-top: 30px; }
.mt50{ margin-top: 50px; }
.mt60{ margin-top: 60px; }
.mt80{ margin-top: 80px; }
.mt100{ margin-top: 100px; }
.mb20{ margin-bottom: 20px; }
.mb30{ margin-bottom: 30px; }
.mb40{ margin-bottom: 40px; }
.mb50{ margin-bottom: 50px; }
.pb30{ padding-bottom: 30px; }

.v-wrap{
  display: flex;
  justify-content: center;
  margin: 200px 0 100px 0;
}

.v-block{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  writing-mode: vertical-rl;
}

.v-title{
  font-size: 32px;
  writing-mode: vertical-rl;
  text-align: start;
  text-orientation: mixed;
  white-space: nowrap;
}

.v-text{
  writing-mode: vertical-rl;
  text-align: start;
  text-orientation: mixed;
  white-space: nowrap;
  line-height: 2.6;
}

.v-line{
  position: relative;
  padding-right: 1px;
	display: inline-block;
}

.v-line::after{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:2px;
  height:100%;
  background:#c2ab66;
}

.v-text,
.v-title {
  font-feature-settings: "vert";
}

.tateimg{
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.yakusoku{
  width: 100%;
  background-color: #ece6dd;
  margin: 0 0 100px 0;
  padding: 100px 0 100px 0;
}

.media{
  display: flex;
  column-gap: 70px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 70px;
}

.media-img{ flex: 0 0 450px; }

.media-img img{
  width: 100%;
  height: auto;
  display: block;
}

.media-text{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.content3{
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 100px 0;
  text-align: center;
}

.content4wrap{
  background-color: rgba(255, 255, 255, 0.4);
  max-width: 900px;
  margin: 50px auto 0;
  padding: 50px 50px 70px 50px;
  border-radius: 10px;
}

.content3 h2{
  margin-bottom: 20px;
}

/* ===== box（画像8枚の領域） ===== */
.gallery-box{
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  background: transparent;
  margin-top: 30px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.thumb{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
}

.thumb img{
  width: 80%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.thumb:focus-visible{
  outline: 3px solid #c2ab66;
  outline-offset: 3px;
  border-radius: 12px;
}

/* ===== 説明パネル（画像の上に被せる） ===== */
.overlay{
  position: absolute;
  top: 50%;
  left: 50%;

  width: 600px;
  max-width: calc(100% - 40px);
  height: auto;

  background: #fff;
  border-radius: 12px;
  padding: 38px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  z-index: 10;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, -50%) translateY(10px);

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility 0s linear .25s;
}

.overlay.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateY(0);
  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility 0s;
  background-color: #ece6dd;
}

.overlay-inner{
  max-height: 80vh;
  overflow: auto;
  padding-right: 6px;
}

h3.overlay-title{
  text-align: left;
}

.overlay-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.85);
  color: #fff;
  font-size: 22px;
  line-height: 36px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.overlay-close:focus-visible{
  outline: 3px solid #c2ab66;
  outline-offset: 3px;
}

.overlay-layout{
  display: flex;
  column-gap: 32px;
  align-items: flex-start;
}

.overlay-img{
  flex: 0 0 200px;
}

.overlay-img img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.overlay-text{
  flex: 1;
  min-width: 0;
}

.overlay-title{
  margin: 0 0 12px;
  font-size: 22px;
}

.overlay-desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
}

.content8 .cards{
  width: 900px;
}

.content8 .cards .card{
  width: 270px;
}

.review-stash{
  display: none !important;
}

/* ===== レスポンシブ ===== */
@media (max-width: 900px){
  .gallery-box{ padding: 0 4%; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .thumb img{ height: auto; }
}

.thumb span.sub{
  font-size: 12px;
}

.seibunarea{
  max-width:400px;
  height: auto;
  margin: 0 auto;
}

.thumb-text{
  display: block;
  line-height: 1.4;
  text-align: center;
  min-height: calc(1em * 2.8);
}

.thumb-more{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin: 8px auto 0;
  padding: 6px 16px;

  font-size: 13px;
  line-height: 1;
  color: #c2ab66;

  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #c2ab66;

  pointer-events: none;
}

.thumb-more i{
  font-size: 14px;
  line-height: 1;
}

.thumb:hover .thumb-more{
  background: #c2ab66;
  color: #fff;
}

.container4 {
  display: flex;
  width: 100%;
  column-gap: 50px;
  margin-top: 30px;
}

.left4,.right4 {
  flex: 1;
  text-align: left;
}

.container4 .right4 {
  text-align: left;
}

.container4 .right4 .reveal,.container4 .left4 .reveal{
  margin-top: 20px;
  margin-bottom: 20px;
}

.left4 h4,.right4 h4{
  font-size: 26px;
  font-weight: bold;
  color: #c2ab66;
}

.left4 img,.right4 img{
  margin: 20px 0;
}

.jikkenc h4{
  font-size: 22px;
}

.jikkenc p{
  font-size: 14px;
}

.jikkenc{
  width: 90%;
  text-align: left;
  border: 1px solid #3e3a39;
  padding: 30px 40px;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 8px;
}

.content h3{
  line-height: 1.8;
}

.content5 h2{
  margin-bottom: 60px;
}

.content5 h4{
  margin-bottom: 15px;
}

.content5 .container4{
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.content5 .left4 h4, .content5 .right4 h4 {
  font-size: 22px;
}

.hihukagakutext {
  width: 900px;
  background-color: #ece6dd;
  margin: 50px auto;
  padding: 50px;
  text-align: left;
  border-radius: 8px;
}

.hihuka01{
  font-size: 20px;
  font-weight: bold;
}

.hihuka02{
  font-size: 20px;
  font-weight: bold;
  color: #c2ab66;
  margin-top: 40px;
}

.hihuka03{
  font-size: 20px;
  font-weight: bold;
  color: #c2ab66;
}

.hihukagakutext ul li, .hihukagakutext ul{
  list-style: disc;
}

.hihukagakutext ul{
  padding-left: 15px;
}

.mb80{
  margin-bottom: 80px;
}

.kaogazou{
  display:block;
  margin-left:auto;
  margin-right:auto;
}

.content6 {
  background-image: url(img/bg_skin-min.jpg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
  color: #3d1008;
  position: relative;
}

.content6 .container4{
  max-width: 900px;
  margin: 0 auto;
  margin-top: 70px;
  color: #3d1008;
}

.content6 .container4 h4{
  color: #3d1008;
  line-height: 1.4;
  margin-bottom: 15px;
}

.content6::before{
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
  inset: 0;
}

.c6inner{
  position: relative;
  z-index: 1;
}

.c6inner h5{
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.content7 {
  background-color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0 50px 0;
  text-align: center;
}

.reviewarea {
  max-width: 900px;
  margin: 0 auto;
}

.howtoarea{
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  column-gap: 50px;
  align-items: flex-start;
}

.howto-img{
  flex: 0 0 350px;
}

.howto-img img{
  width: 100%;
  height: auto;
  display: block;
}

.howto-text{
  flex: 1;
  min-width: 0;
}

.howtoinnner{
  background-color: #f2eee8;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  padding: 50px;
  margin-top: 30px;
}

.howto-text h5{ font-size: 18px; }
.howto-text p{ font-size: 14px; }

.howto-text h6{
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.moisttext{
  font-size: 12px;
  line-height: 1.5;
}

.moisttext2{
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
}

.creemtext{
  text-align: center;
  margin-top: 10px;
}

.howto-text h4{
  font-size: 20px;
  line-height: 1.5;
}

.mb15{ margin-bottom: 15px; }

.about-image-section{
  position: relative;
  overflow: hidden;
  height: 550px;
}

.about-image{
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(0%);
}

.content8 {
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.container4 .left4 h4, .container4 .right4 h4{
  font-size:20px;
}

#svlogo{
  position: fixed;
  right: 15px;
  top: 15px;
  width: 71px;
  height: 48px;
  z-index: 999;
}

/* =========================
   共通：ピル型ボタン
========================= */
.pill-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 8px 20px;
  font-size: 14px;
  line-height: 1;

  color: #c2ab66;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #c2ab66;
  border-radius: 999px;

  cursor: pointer;
  transition:
    background-color .25s ease,
    color .25s ease,
    transform .2s ease,
    box-shadow .2s ease;

  margin-top: 15px;
}

.pill-button i{
  font-size: 12px;
  font-weight: normal;
  opacity: .8;
}

.pill-button:hover{
  background: #c2ab66;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

.pill-button:hover i{ opacity: 1; }

.pill-button:focus-visible{
  outline: 3px solid #c2ab66;
  outline-offset: 3px;
}

.pill-button i,
.pill-button i{
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-style: normal;
  line-height: 1;
}

.otokuinfo{
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 5%;
  margin-top: 70px;
}

.teiki_otoku_info{
  max-width: 100%;
  display: flex;
  border-radius: 10px;
  padding: 30px 40px;
  text-align: left;
  margin-bottom: 30px;
}

.teiki_otoku_info div:first-child{
  width: 302px;
  font-size: 34px;
  color: #c2ab66;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teiki_otoku_info div:first-child span{
  display: inline-block;
  font-weight: bold;
}

.teiki_otoku_info div:nth-child(2){
  width: calc(100% - 302px);
  font-size: 14px;
  color: #000;
}

.teiki_otoku_info div:nth-child(2) h4{
  font-size: 18px;
  font-weight: bold;
}

.teiki_otoku_info div:nth-child(2) h4 span{
  font-size: 12px;
}

.otokuinfo a{
  display: inline-block;
  background-color: #3e3a39;
  color: #fff;
  padding: 10px 30px;
  border-radius: 100vh;
  text-decoration: underline;
  margin-bottom: 10px;
  margin-top: 15px;
}

.otokupoint{
  color: #c2ab66;
  margin-top: 20px;
  margin-bottom: -10px;
  font-size: 14px;
}

.content8 .pill-button{
  color: #fff;
  background-color: #c2ab66;
  letter-spacing: 0.2em;
}

.reviewWidget{ width: 100%; }



.content7 h2{ margin-bottom: 50px; }

.singleReview_body, .singleReview_comment{
  text-align: left;
}

@media only screen and (max-width: 767px){



  .teiki_otoku_info{
    max-width: 100%;
    display: block;
    border-radius: 10px;
  }
  .teiki_otoku_info div:nth-child(2){
    width: 100%;
    font-size: 14px;
    color:#000;
  }
  .teiki_otoku_info div:first-child{
    width: 100%;
    font-size: 24px;
  }

  .container4 .right4 img, .container4 .left4 img{
    width: 375px;
    display: block;
    margin: 0 auto;
  }

  .container4 .right4{ text-align: left; }

  .c6inner .container4 .right4 img{ margin-top: 25px; }

  .content6 .c6inner .container4 .right4 h4{ text-align: left; }
}



.content8 .cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
        width: 100%;
        max-width: 900px;
        margin: 50px auto 0;
    }

.content8 .card > p{
  flex: 1 1 auto;  /* flex-grow:1 より明示的 */
}

.otokupoint{
  color: #c2ab66;
  margin-top: 20px;
  margin-bottom: 0; /* ← マイナスはやめる */
  font-size: 14px;
}

.btn001{
	margin-top: 0px!important;
}

.content8 .card{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* =========================================================
   Responsive (<= 979px)
========================================================= */
@media (max-width: 979px){

  html, body{ overflow-x: hidden; }

  .content2,
  .content4,
  .content5,
  .content6,
  .content7,
  .content8{
    padding-left: 4%;
    padding-right: 4%;
  }

  .howto-text{
    max-width: 420px;
    margin: 0 auto;
  }

  .howtoinnner{
    max-width: 480px;
    margin: 0 auto;
    margin-top: 30px;
  }

  .content4, .content5, .content6, .content7{
    box-sizing: border-box;
  }
	


  .yakusoku{ margin-top: 0; }

  .cards{
    width: 90%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
	
	  .cards .card{
    width: 100%;
  }
	
.content8 .cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 900px;
  margin: 50px auto 0;
}

	.content8 .cards .card {
    width: auto;   /* 固定幅を解除 */
}
	

  .content8 .pill-button{ width: 100%; }

  .container4{
    flex-direction: column;
    column-gap: 0;
    row-gap: 22px;
  }
  .left4, .right4{
    flex: none;
    width: 100%;
  }

  .howtoarea{
    flex-direction: column;
    column-gap: 0;
    row-gap: 18px;
  }
  .howto-img{
    flex: none;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .howto-text{ width: 100%; }

  .media{
    flex-direction: column;
    column-gap: 0;
    row-gap: 18px;
    max-width: 520px;
  }
  .media-img{
    flex: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .media-text{ width: 100%; }

  .hihukagakutext{
    width: 100%;
    max-width: 900px;
  }

  .content4wrap{ padding: 28px 22px 36px; }
  .howtoinnner{ padding: 28px 22px; }

  .v-wrap{ margin: 120px 0 60px; }
  .v-block{
    writing-mode: horizontal-tb;
    gap: 18px;
    align-items: center;
  }
  .v-title, .v-text{
    writing-mode: horizontal-tb;
    white-space: normal;
    text-align: left;
  }
  .v-line{ padding-right: 0; }
  .v-line::after{ content: none; }

  .overlay{
    width: calc(100% - 24px);
    max-width: 560px;
    padding: 22px 18px;
  }
  .overlay-layout{
    flex-direction: column;
    column-gap: 0;
    row-gap: 14px;
  }
  .overlay-img{
    flex: none;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
	
    .kv-copy .kv-choonpu, .v-text .v-choonpu {
        transform: none;
    }
	
	    .v-block {
        align-items: flex-start;
        gap: 0;
    }
	
}

/* =========================================================
   Phone (<= 767px)
========================================================= */
@media (max-width: 767px){

  .sp_only{ display: block; }
  .pc_only{ display: none; }

  h2{ font-size: 26px; }
  h3{ font-size: 20px; }

  .cards{
    grid-template-columns: 1fr;
    max-width: 520px;
    padding: 0 4%;
  }
	
	.content8 .card > p {
    flex: none;
}
	
	
	.content8 .cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
	


  .left4 h4, .right4 h4{
    font-size: 20px;
    line-height: 1.4;
  }

  .content4 p span{ font-size: 12px; line-height: 1.6; }

  .kv-copy{
    top: auto;
    bottom: 88px;
    right: 16px;
    writing-mode: horizontal-tb;
    text-align: right;
  }

  .kv-text{
    height: auto;
    white-space: normal;
    margin-right: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .kv-title img{ width: 150px; }

  .kv-copy2{
    width: calc(100% - 32px);
    bottom: 16px;
  }
  .kv-copy2 img{
    width: 100%;
    height: auto;
  }

  .content .cards .card{ margin-top: 40px;
	width: 100%;}

  .v-wrap{ padding: 0 6%; }
  .v-block{
    align-items: flex-start;
    gap: 0;
  }

  .topimg{
    padding: 0 5%;
    text-align: left;
  }

  .sponayami{
    width: 94%;
    height: auto;
  }

  .content{ padding: 50px 0 0; }
  .cards{ margin-top: 0; }
	
	
	.content8 .cards{
max-width: 100%;
}
	
	.content8 .card{
  display: flex;
  flex-direction: column;
}

  .v-text .v-line{ color: #c2ab66; }

  .media{ margin-top: 0; }
  .media-text{ padding: 0 6%; }
  .media-img{ margin: 50px 0 15px; }

  .content3{ padding: 0 4%; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }

  .thumb-text{ font-size: 14px; }

  .mt80{ margin-top: 40px; }

  .content4{ padding: 50px 4% 50px; }

  .yokogaki{ text-align: left; }

  .jikkenc{
    padding: 15px 20px;
    width: 100%;
    margin-top: 20px;
  }

  .hihukagakutext{
    padding: 20px;
    margin: 20px 0 35px 0;
  }

  .container4.junban{ flex-direction: column-reverse; }

  .mt100{ margin-top: 60px; }
  .content5{ padding-bottom: 0; }
  .content6{ padding: 50px 5%; }

  .howtoinnner{
    width: 90%;
    margin: 0 auto;
    margin-top: 25px;
  }

  .pill-button{ padding: 14px 20px; }

  .card{ margin-top: 50px; }

  .teiki_otoku_info{ padding: 20px; }
}

@media (max-width: 600px){
.content8  .cards{
    grid-template-columns: 1fr;
  }
	}

/* =========================================================
   Small phone (<= 390px)
========================================================= */
@media (max-width: 400px){

  .content4wrap,
  .howtoinnner{
    padding: 22px 16px;
  }
  .overlay-title{ font-size: 18px; }
  .overlay-desc{ font-size: 14px; line-height: 1.8; }

  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
	
.gallery-box .overlay {
    position: fixed;              /* ← gallery-box基準をやめる */
    inset: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: calc(100vw - 32px);    /* 画面左右に余白 */
    max-width: 360px;

    max-height: calc(100svh - 40px); /* 画面からはみ出さない */
    overflow: hidden;

    z-index: 1000;
  }

  .gallery-box .overlay-inner {
    max-height: calc(100svh - 40px);
    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
	
	  .gallery-box .overlay-close {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 2;
  }
	
}

/* 縦書き→横書き時の長音処理（既存を保持） */
.kv-copy[style*="horizontal-tb"] .kv-choonpu{ transform:none; }

@media (max-width: 767px){
  .kv-copy{ writing-mode: horizontal-tb; }
  .kv-copy .kv-choonpu,
  .v-text .v-choonpu{ transform:none; }
}

/* =========================
   SP Key Visual
========================= */
.kv-sp{ display:none; }

@media (max-width: 767px){

  .thumb {
    margin-bottom: 10px;
  }

  .kv{
    background: url("img/sp_bg01.jpg") center / cover no-repeat;
  }

  .kv > img{ display: none; }

  .kv-copy,
  .kv-copy2{ display: none; }

  .kv-sp{
    display:block;
    position:absolute;
    inset:0;
    z-index: 2;
    pointer-events:none;
  }

  .kv{
    position: fixed;
    inset: 0;
    height: 100svh;
    z-index: 0;
    overflow: hidden;
  }

  .kv-sp-bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .kv-sp-copy{
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 2;
    text-align: center;
  }

  .kv-sp-img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(12px);
    filter: blur(10px);

    transition:
      opacity 1.2s ease,
      transform 1.2s ease,
      filter 1.4s ease;
  }

  .kv-sp-img.is-on{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  .c6inner .container4{ margin-top: 0; }

  .c6inner p{ text-align: left; }

  .c6inner .container4 h4{ margin-top: 50px; }

  .content2{ padding: 0;margin-top: 50px; }
}

/* まず stash は絶対に見せない */
.review-stash{ display:none !important; }

/* slidein コンテナ（#reviewPanel）が画面全体を覆う前提 */
#reviewPanel.slidein{
  position: fixed;
  inset: 0;
  z-index: 99999; /* KV等より強く */
  pointer-events: none; /* 閉じてる時はクリック透過 */
}

/* overlay */
#reviewPanel .slidein__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

/* panel */
#reviewPanel .slidein__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100svh;
  height: 100vh;
  width: min(800px, 90vw);
  background: #fff;
  transform: translateX(105%); /* 閉 */
  transition: transform .28s ease;
  box-shadow: -10px 0 30px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  pointer-events: auto;
}

/* ★重要：ここはスクロールさせない（スクロール担当は reviewWidget_inner のみ） */
#reviewPanel .slidein__body{
  overflow: hidden;
  -webkit-overflow-scrolling: auto;
  flex: 1;
}

/* 開いている状態：aria-hidden="false" をトリガーにする */
#reviewPanel[aria-hidden="false"]{
  pointer-events: auto;
}

#reviewPanel[aria-hidden="false"] .slidein__overlay{
  opacity: 1;
  pointer-events: auto;
}

#reviewPanel[aria-hidden="false"] .slidein__panel{
  transform: translateX(0);
}

html.is-lock, body.is-lock { overflow: hidden; }

body.itv2025-noscroll {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

html.itv2025-noscroll,
body.itv2025-noscroll{
  overscroll-behavior: none;
}

.itv2025-sidepanel {
  width: min(800px, 90vw);  /* 90%で最大800px */
  max-width: none;          /* min()で上限を持つので不要 */
}

/* ★重要：サイドパネル自体はスクロールさせない */
.itv2025-sidepanel{
  overscroll-behavior: contain;      /* 下のページへのスクロール伝播を抑止 */
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール（子に効かせるための保険） */
  overflow: hidden;                 /* ★追加：スクロール責務を剥奪 */
}

.itv2025-overlay{
  overscroll-behavior: none;
}

.itv2025-close-btn.show {
  display: flex;
}

.itv2025-close-btn {
  position: fixed;
  top: 10px;
  right: 30px;
  background: #3e3a39;
  color: #fff;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 9999;
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  padding: 0;
}


.itv2025-imgbtn {
  margin: 1em;
  cursor: pointer;
  padding: 25px 25px;
    font-size: 16px;
    line-height: 1;
    color: #c2ab66;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #c2ab66;
}

.itv2025-imgbtn:hover{
    background: #c2ab66;
    color: #fff;
}

.review-summary-container{
	margin-top: 10px;
}

.review-summary-container .starRating .reviewNumber {
    font-size: 14px!important;
}

.review-summary-container .starRating span {
    font-size: 21px!important;
}

.itv2025-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 999;
}

/* サイドパネル本体 */
.itv2025-sidepanel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 750px;
  height: 100svh; /* ← iOS対応 */
	max-height: 100vh;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  padding: 1.5em;
  transition: right 0.675s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9998;
  /* ★ここを overflow-y:auto から hidden に（スクロール剥奪） */
  overflow: hidden;
  scrollbar-width: none;
  background-color: #fff;
  color: #3e3a39;
}

/* パネル表示時に svlogo を隠す */
body.itv2025-noscroll #svlogo {
  display: none;
}

.itv2025-sidepanelin p{
  margin: 2% 0 5% 0;
}

/* ★高さを持たせる（内部スクロールのための安定化） */
.itv2025-sidepanelin{
  width: 86%;
  max-width: 650px;
  margin: 0 auto;
  height: 100%;
}

.itv2025-sidepanelin img{
  margin: 5% 0;
}

.itv2025-sidepanelin .introw a {
  color: #fff;
  text-decoration: none;
}

.itv2025-sidepanel::-webkit-scrollbar {
  display: none;
}

.itv2025-sidepanel.show {
  right: 0;
}

.itv2025-overlay.show {
  display: block;
}

.itv2025-sidepanelin h3{
  margin-bottom: 30px;
}

.itv2025-sidepanelin h3 span{
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-top: 15px;
}

.itv2025-sidepanelin h2{
  font-size: 24px;
}

.itv2025-sidepanelin h2 span{
  font-size: 36px;
}

.itv2025-imgbtn a{
  color:#3e3a39;
}

.reviewarea{
	margin-bottom: 30px;
}

.content7 h3{
	margin-bottom: 30px;
}



/* =========================================================
   FIX: スライドインパネル内スクロール復活
   - パネルは overflow:hidden のまま（背景への伝播を防ぐ）
   - 内側の“スクロール担当”に height を与えて overflow:auto
========================================================= */

/* 1) #reviewPanel 方式（slidein__panel / slidein__body がある場合） */
#reviewPanel .slidein__panel{
  display: flex;
  flex-direction: column;
  height: 100svh;
  height: 100vh;
  overflow: hidden; /* パネル自体はスクロールさせない */
}

#reviewPanel .slidein__body{
  flex: 1;
  min-height: 0;       /* ★これがないと子のスクロールが死にやすい */
  overflow: hidden;    /* body 自体はスクロール担当にしない */
}

.content7 .reviewWidget_inner{
  height: 700px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
	background-color: #f4f2ee;
}

.content7 .reviewWidget{
  width: 100%;
}

#itv2025-sidepanel .reviewWidget_inner{
	background-color: #f4f2ee;
  height: 700px;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

/* 2) itv2025 方式（.itv2025-sidepanel / .itv2025-sidepanelin がある場合） */
.itv2025-sidepanel{
  display: flex;
  flex-direction: column;
  overflow: hidden; /* パネル本体はスクロールさせない */
}

.itv2025-sidepanelin{
  flex: 1;
  min-height: 0;      /* ★これがないと子のスクロールが死にやすい */
  overflow: auto;     /* ★ここをスクロール担当にする */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}


/* パネル本体はスクロールさせない */
#itv2025-sidepanel{
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* パネルの中身コンテナをスクロール担当にする（JSの差し込み先） */
#itv2025-panelContent{
  flex: 1;
	height: calc(100svh - 60px); /* ← ×ボタン分を引く */
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

/* パネル内だけ効かせるのが重要 */
#itv2025-panelContent .reviewWidget_inner {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;

  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}


@media only screen and (max-width: 767px) {
	
	
	.itv2025-imgbtn {
    margin: 1em;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    width: 90%;
		border-radius: 6px;
}
	
	review-summary-container {
    margin-top: 5px;
}
	
	
  .itv2025-sidepanel {
    width: min(800px, 92vw);
  }

  .itv2025-sidepanel {
    width: 92%;
    max-width: 750px;
    height: 100%;
    padding: 0em;
    padding-top:8%;
    padding-bottom:8%;
  }

  .itv2025-sidepanelin h2 {
    font-size: 20px;
  }
  .itv2025-sidepanelin h2 span {
    font-size: 28px;
  }
}

@media (max-width: 767px){
  .content7 .reviewWidget_inner{
    height: 600px;
  }
}