/* --------------- 共通CSS --------------- */

* {
  box-sizing: border-box;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Avenir', 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'MS PGothic', 'sans-serif';
  color: #7c6948;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background-color: #f4f0e6;
  font-size: clamp(1rem, 4vw, 1.2rem);
  overflow-x: hidden;
}

.main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 30px rgba(92, 82, 76, 0.1);
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;  /* 選択不可 */
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;    /* ドラッグ不可（Webkit系） */
  user-drag: none;
  -webkit-touch-callout: none; /* iOSで長押しメニューを無効化 */
}

h2 {
  font-family: "Cormorant Garamond", serif;
  color: #b1a47d;
  text-shadow: 4px 4px 10px 0px rgba(102, 74, 40, 0.7);
  font-size: 3vw;
  margin: 0;
}

.section-subtitle {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  color: #927c55;
  font-weight: bold;
  font-size: 7vw;
  margin: 0;
  letter-spacing: 0.05em;
  background: linear-gradient(to bottom, #c9be9e 0%, #927c55 50%, #66563b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(146, 124, 85, 0.3);
}

.section-subtitle>span {
  margin-top: 5px;
  font-size: 4vw;
}

.h2-item {
  width: 80vw;
  display: block;
  margin: auto;
  padding-bottom: 3vh;
}

h3 {
  font-size: 5vw;
  font-weight: bold;
}

/* --------------- CTA Button (共通・モバイル・PC) --------------- */

/* ▼ スマホ用ボタン */
.cta-button {
  width: 75vw;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
    radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
  color: white !important;
  font-weight: bold;
  font-size: 4vw;
  letter-spacing: 0.2em;
  padding: 1rem 2rem;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  cursor: pointer;
  z-index: 9999;
}

.cta-button.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media screen and (min-width: 450px) {
  .cta-button {
    display: none !important;
  }
}

@media screen and (max-width: 449px) {
  .cta-pc-circle {
    display: none !important;
  }
}

@media screen and (min-width: 450px) {
  .cta-pc-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 10000;
    text-decoration: none;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%),
      radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  }

  .cta-pc-circle.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .cta-pc-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
  }

  .cta-pc-circle:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  }
}

.cta-button.is-hide,
.cta-pc-circle.is-hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: all 0.4s ease;
}

.cta-button.is-hide {
  transform: translateX(-50%) translateY(20px) !important;
}

.cta-pc-circle.is-hide {
  transform: translateY(20px) !important;
}

/* --------------- First View --------------- */

.first-view {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  background-image: url(./img/firstview-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

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

.logo-container {
  width: auto;
  /* 幅を制限しない */
  padding: 3% 0 0 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container>a {
  display: block;
  width: 25vw;
  /* （画面幅の25%）を指定 */
  max-width: 120px;
  /* 大きくなりすぎ防止 */
}

.logo-container>p {
  color: #282828;
  font-size: clamp(10px, 2.5vw, 0.9rem);
  /* 画面幅に合わせて文字サイズ調整 */
  margin: 5px 0 0 0;
  white-space: nowrap;
  /* 折り返しを禁止 */
  line-height: 1;
}

.firstview-point {
  font-size: 6vw;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0px 1px 4px #282828;
  margin: 0;
  padding: 5% 5% 0 0;
}

.unit-small {
  font-size: 0.7em; /* 親文字サイズの50%に縮小 */
  vertical-align: bottom; /* 下揃えにしてバランスを取る */
  margin: 0 0.1em;
}

.number-large {
  font-size: 1.4em;       /* 基準より1.4倍大きく */
  font-weight: bold;
  line-height: 1;         /* 行間への影響を抑える */
  vertical-align: bottom; /* 下揃え */
}

/* ▼▼▼ 重要な横並び設定 ▼▼▼ */
.firstview-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 4% auto 0;
  gap: 2%;
}

.firstview-item1,
.firstview-item2,
.firstview-item3 {
  width: 32%;
  position: relative;
  container-type: inline-size;
}

.firstview-item1 img,
.firstview-item2 img,
.firstview-item3 img {
  width: 100%;
  height: auto;
  display: block;
}

.firstview-item-text1,
.firstview-item-text2,
.firstview-item-text3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #5c524c;
  line-height: 1.4;
  font-size: 10.5cqw;
}

.firstview-item-text1 span,
.firstview-item-text2 span,
.firstview-item-text3 span {
  display: block;
  margin-top: 0.5em;
  font-weight: normal;
  font-size: 60%;
}

/* ▲▲▲ 設定ここまで ▲▲▲ */

.headline {
  width: 100%;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);

}

.firstview-english-sub {
  font-family: 'Cormorant Garamond', serif;
  color: #b1a47d;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  display: block;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
}

h1 {
  font-family: "游明朝", "Yu Mincho", serif;
  color: #62554f;
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 1),
    0 0 30px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
}

.subtitle {
  position: static;
  transform: none;
  font-family: "游明朝", "Yu Mincho", serif;
  color: #6e645e;;
  font-size: clamp(0.9rem, 3vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.firstview-img {
  max-width: 70%;
  opacity: 80%;
}

.firstview-bubble {
  width: 18%;
  position: absolute;
  bottom: 30%;
  right: 8%;
}

.firstview-bubble2 {
  width: 10%;
  position: absolute;
  bottom: 25%;
  right: 1%;
}

.fv-campaign-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 90%;
  max-width: 480px; /* 最大幅 */

  /* ★重要：枠の幅に合わせて中身を伸縮させる設定 */
  container-type: inline-size;

  height: auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(to right, #c9be9e, #b1a47d, #9f7928);
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.30);
  z-index: 10;
  overflow: hidden;
  color: #fff;
}

.fv-camp-band {
  background-color: #fff;
  color: #b1a47d;
  font-family: 'Cormorant Garamond', serif;

  /* フォントサイズも枠幅に連動させる */
  font-size: 3cqw;
  letter-spacing: -0.3em;

  padding: 1cqw 0;
  /* 余白も連動 */
  width: 12%;
  /* 固定pxではなく％で指定 */
  max-width: 40px;
  /* 太くなりすぎ防止 */

  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 右側のコンテンツエリア */
.fv-camp-inner {
  /* 余白を固定(20px)から可変(3cqw)に変更して詰まりを防止 */
  padding: 0 3cqw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  /* 残りの幅を全部使う */
}

.fv-camp-main-row:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1cqw;
  margin-bottom: 1cqw;
}

.fv-camp-main-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: nowrap;
  /* ★重要：勝手に改行させない */
  gap: 2cqw;
  /* 間隔も可変に */
}

.fv-camp-title {
  /* 文字サイズを枠幅の 4.5% に設定 */
  font-size: 4.5cqw;
  color: #fff;
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-shadow: none;
  line-height: 1.2;
  white-space: nowrap;
  /* 改行禁止 */
}

/* 価格エリア */
.fv-camp-price-area {
  display: flex;
  align-items: baseline;
  gap: 1.5cqw;
  margin: 0;
  white-space: nowrap;
  /* 改行禁止 */
}

.fv-camp-price-area>span {
  color: #fff;
  font-size: 3cqw;
  /* 矢印のサイズ */
}

.fv-camp-old {
  font-size: 3cqw;
  /* 元値を小さく */
  color: rgba(255, 255, 255, 0.8);
  text-decoration: line-through;
  margin: 0;
}

.fv-camp-new {
  font-family: serif, 'Cormorant Garamond';
  font-size: 5.5cqw;
  /* 新価格を大きく */
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.p-fv__catch .jp,
.p-fv__sub,
.p-fv__catch .en {
  color: #222 !important;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 1),
    0 0 20px rgba(255, 255, 255, 1),
    0 0 30px rgba(255, 255, 255, 0.95),
    0 0 40px rgba(255, 255, 255, 0.95);
}

/* --- スマホ (位置と幅の調整) --- */
@media screen and (max-width: 767px) {

  .headline {
    top: 35%;
    text-align: right;
  }

  h1 {
    font-size: 6vw;
    line-height: 1.5;
  }

  .firstview-english-sub {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .fv-camp-main-row {
    gap: 10px;
  }

  .fv-camp-title {
    font-size: 1rem;
  }

  .fv-camp-new {
    font-size: 1.2rem;
  }

  .fv-campaign-box {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 85vw;
    /* スマホでは画面幅の85% */
    max-width: 360px;
  }
}

/* --------------- Campaign Section --------------- */
.campaign-section {
  background: linear-gradient(to bottom, #faf5ee 0%, #fff 100%);
  padding: 50px;
  position: relative;
}

.campaign-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.campaign-lead {
  text-align: center;
  font-family: "游明朝", serif;
  font-size: 1.1rem;
  color: #927c55;
  padding: 25px 0;
  line-height: 1.8;
  font-weight: bold;
}

.campaign-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.campaign-card {
  background-color: #fff;
  width: 48%;
  /* PCでは2列 */
  border: 1px solid #b1a47d;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(177, 164, 125, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.campaign-card.special-offer {
  border: 2px solid #b1a47d;
}

.campaign-badge {
  background-color: #b1a47d;
  color: #fff;
  font-family: "游ゴシック", sans-serif;
  font-size: 0.9rem;
  padding: 5px 20px;
  border-radius: 20px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.campaign-name {
  font-size: 1.4rem;
  color: #5c524c;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.campaign-price-area {
  margin-bottom: 20px;
  width: 100%;
  border-top: 1px solid rgba(177, 164, 125, 0.3);
  border-bottom: 1px solid rgba(177, 164, 125, 0.3);
  padding: 15px 0;
}

.campaign-price-off {
  font-family: serif;
  font-size: 1.5rem;
  color: #b1a47d;
  font-weight: bold;
  margin: 0 0 5px;
  line-height: 1;
}

.campaign-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.campaign-price-label {
  color: #999;
  text-decoration: line-through;
}

.campaign-arrow {
  color: #b1a47d;
  font-size: 1.2rem;
}

.campaign-price-val {
  font-family: serif;
  font-size: 2.5rem;
  color: #A64A45;
  font-weight: 600;
  line-height: 1.5;

  -webkit-text-stroke: 1px #A64A45;
  text-stroke: 1px #A64A45;
}

.campaign-tax {
  font-size: 0.8rem;
  color: #5c524c;
}

.campaign-desc {
  font-size: 0.9rem;
  color: #7c6948;
  line-height: 1.6;
  margin: 0;
}

.campaign-cta {
  text-align: center;
}

/* --- Responsive (スマホ対応) --- */
@media screen and (max-width: 767px) {
  .campaign-section {
    padding: 0px 20px 80px;
  }

  .campaign-container {
    flex-direction: column;
    /* 縦積みに */
    gap: 40px;
  }

  .campaign-card {
    width: 100%;
    padding: 35px 20px;
  }

  .campaign-price-val {
    font-size: 2.2rem;
  }

  .campaign-tax {
    display: none;
  }
}

/* --------------- concept --------------- */

.concept {
  background-color: #f7f2eb;
  padding: 100px 20px;
  text-align: center;
}

.concept-main-copy {
  font-family: "游明朝", "Yu Mincho", serif;
  color: #5c524c;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(92, 82, 76, 0.25);
}

.concept-sub-copy {
  color: #927c55;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.concept-keywords {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 40px 0;
}

.keyword-item {
  width: fit-content;
  border-bottom: 1.5px solid #b1a06d;
  padding: 12px 40px;
  position: relative;
  margin-bottom: 0;
}

.keyword-text {
  font-family: "游明朝", "Yu Mincho", serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #5c524c;
}

.concept-message {
  margin-top: 40px;
  font-family: "游明朝", "Yu Mincho", serif;
  line-height: 2;
  color: #7c6948;
  font-size: 1.09rem;
}

@media screen and (max-width: 767px) {
  .concept-keywords {
    align-items: flex-start;
  }

  .keyword-item {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* --------------- Futures Section --------------- */
.futures {
  padding: 100px 0;
  background-color: #fff;
}

.section-title-area {
  text-align: center;
  margin-bottom: 80px;
}

.futures-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  color: rgba(177, 160, 109, 0.2);
  margin: 0;
  line-height: 0.9;
}

.futures-sub-title {
  font-family: "游明朝", serif;
  font-size: clamp(1.2rem, 7vw, 1.8rem);
  color: #927c55;
  margin-top: -15px;
  font-weight: bold;
  background: linear-gradient(to bottom, #c9be9e 0%, #927c55 50%, #66563b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.futures-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.futures-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 120px;
  gap: 40px;
}

.futures-item:nth-child(even) {
  flex-direction: row-reverse;
}

.futures-image {
  flex: 0 0 55%;
  position: relative;
}

.futures-image img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 20px 20px 0px #faf5ee;
}

.futures-number {
  position: absolute;
  top: -60px;
  left: -20px;
  font-family: 'Avenir', sans-serif;
  font-size: 5rem;
  font-weight: bold;
  color: #b1a06d;
  opacity: 0.3;
  z-index: 1;
}

.futures-content {
  flex: 0 0 40%;
  text-align: left;
}

.futures-item-title {
  font-family: "游明朝", serif;
  font-size: 1.4rem;
  color: #5c524c;
  border-left: 3px solid #b1a06d;
  padding-left: 15px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.futures-item-sub {
  display: block;
  font-size: 0.9rem;
  color: #927c55;
  margin-top: 5px;
  font-weight: normal;
}

.futures-item-text {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  color: #7c6948;
}

@media screen and (max-width: 767px) {

  .futures-item,
  .futures-item:nth-child(even) {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
  }

  .futures-image,
  .futures-content {
    flex: 0 0 100%;
  }

  .futures-content {
    text-align: center;
    padding: 0 10px;
  }

  .futures-item-title {
    border-left: none;
    border-bottom: 1px solid #b1a06d;
    padding-left: 0;
    padding-bottom: 15px;
  }
}

.futures-item:nth-child(odd) .futures-image img {
  box-shadow: 20px 20px 0px #faf5ee;
}

.futures-item:nth-child(even) .futures-image img {
  box-shadow: -20px 20px 0px #faf5ee;
}

.futures-item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .futures-image img {
    box-shadow: 10px 10px 0px #faf5ee !important;
  }
}

/* --------------- Reformer Details --------------- */

.reformer-details {
  padding: 120px 0;
  background-color: #faf5ee;
  position: relative;
}

.reformer-header {
  text-align: center;
  margin-bottom: 60px;
}

.reformer-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #b1a47d;
  opacity: 0.6;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.reformer-lead {
  font-family: "游明朝", serif;
  font-size: clamp(1.2rem, 5vw, 1.5rem);
  color: #5c524c;
  margin-top: 0;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.reformer-sub-lead {
  font-family: "游明朝", serif;
  font-size: clamp(0.85rem, 3.5vw, 1rem);
  color: #927c55;
  margin-top: 10px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.reformer-visual {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.main-visual-img {
  width: 65%;
  border-radius: 0 50px 50px 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.reformer-points {
  width: 45%;
  margin-left: -10%;
  z-index: 2;
}

.point-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
}

.point-tag {
  color: #b1a06d;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #b1a06d;
  margin-bottom: 10px;
  display: inline-block;
}

.point-box h4 {
  font-family: "游明朝", serif;
  font-size: 1.2em;
  color: #5c524c;
  margin: 10px 0;
}

.point-box p {
  font-size: 1rem;
  color: #7c6948;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .reformer-details {
    padding: 60px 0;
  }

  .reformer-visual {
    flex-direction: column;
  }

  .main-visual-img {
    width: 100%;
    border-radius: 0;
  }

  .reformer-points {
    width: 90%;
    margin-left: 0;
    margin-top: -50px;
  }
}

/* --------------- Personal Merit --------------- */

.merit-personal {
  padding: 80px 20px;
  background-color: #fff;
}

.merit-header {
  text-align: center;
  margin-bottom: 60px;
}

.merit-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #b1a47d;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.merit-lead {
  font-family: "游明朝", serif;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  color: #5c524c;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.merit-sub-lead {
  font-family: "游明朝", serif;
  font-size: 0.95rem;
  color: #927c55;
  margin-top: 15px;
  line-height: 1.8;
}

.merit-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5% 5%;
  /* パディング調整 */
}

/* ▼▼▼ 修正: 基本を縦並び（テキスト上・画像下）に設定 ▼▼▼ */
.merit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  gap: 0;
}

/* reverseクラスも縦並び（テキスト上・画像下）で統一 */
.merit-row.reverse {
  flex-direction: column;
  /* ★ここもcolumnに統一 */
}

.merit-text-box {
  width: 100%;
  /* 幅いっぱい */
  flex: auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

.merit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: #e6dfd0;
  position: absolute;
  top: -50px;
  /* 位置調整 */
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

.merit-text-box h3 {
  font-family: "游明朝", serif;
  font-size: 1.4rem;
  color: #b1a06d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.merit-text-box p {
  font-size: 0.95rem;
  color: #7c6948;
  line-height: 1.8;
  margin-bottom: 0;
}

.merit-img-box {
  width: 40%;
  flex: auto;
}

.merit-text-box h3 {
  text-align: center;
}

/* 画像サイズ調整 */
.merit-img-box img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.ontainer h3 {
  text-decoration: underline;
  text-underline-offset: 10px;
  color: #b1a06d;
}

/* --- Recommended Section Styles --- */
.recommend-section {
  padding: 100px 20px;
  background-color: #faf5ee;
}

.recommend-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.recommend-header {
  text-align: center;
  margin-bottom: 60px;
}

.recommend-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #b1a47d;
  opacity: 0.8;
  margin-bottom: 10px;
}

.recommend-jp-title {
  font-family: "游明朝", serif;
  font-size: 1.5rem;
  color: #5c524c;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.recommend-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.recommend-item {
  background-color: #fff;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 2px;
  box-shadow: 0 5px 15px rgba(177, 164, 125, 0.1);
  transition: transform 0.3s ease;
}

.recommend-item:hover {
  transform: translateY(-5px);
}

.check-icon {
  width: 24px;
  height: 24px;
  border: 1px solid #b1a47d;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.check-icon::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 6px;
  height: 10px;
  border-bottom: 2px solid #b1a47d;
  border-right: 2px solid #b1a47d;
  transform: translate(-50%, -60%) rotate(45deg);
}

.recommend-text {
  font-size: 1.2rem;
  color: #5c524c;
  line-height: 1.8;
}

.recommend-text strong {
  background: linear-gradient(transparent 70%, #e6dfd0 70%);
  font-weight: bold;
}

.recommend-message {
  text-align: center;
  font-family: "游明朝", serif;
  font-size: 1rem;
  line-height: 2;
  color: #5c524c;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .recommend-jp-title {
    margin-top: 0;
  }

  .recommend-section {
    padding: 80px 20px;
  }

  .recommend-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .recommend-item {
    padding: 20px;
  }

  .recommend-text br {
    display: none;
  }
}

/* --- Recommend Section Design Update --- */

.recommend-header-stylish {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-top: 50px;
}

.recommend-header-stylish::before {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: #b1a47d;
  margin: 0 auto 20px;
}

.en-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  color: #b1a47d;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.jp-main {
  font-family: "游明朝", serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  color: #5c524c;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.recommend-card {
  background-color: #fff;
  padding: 30px 20px;
  border: 1px solid rgba(177, 164, 125, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(92, 82, 76, 0.05);
  transition: transform 0.3s ease;
}

.recommend-card:hover {
  transform: translateY(-3px);
  border-color: #b1a47d;
}

.check-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid #b1a47d;
  border-radius: 50%;
  position: relative;
}

.check-circle::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 5px;
  height: 9px;
  border-bottom: 2px solid #b1a47d;
  border-right: 2px solid #b1a47d;
  transform: translate(-50%, -60%) rotate(45deg);
}

.card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #5c524c;
  margin: 0;
  text-align: left;
}

.highlight {
  background: linear-gradient(transparent 60%, #f4f0e6 60%);
  font-weight: bold;
}

.recommend-message {
  text-align: center;
  font-family: "游明朝", serif;
  font-size: 1rem;
  color: #5c524c;
  letter-spacing: 0.05em;
  margin-top: 40px;
}

.recommend-bubble {
  position: absolute;
  bottom: 19%;
  right: 3%;
  width: 20%;
}

.recommend-bubble1 {
  position: absolute;
  bottom: 10%;
  width: 15%;
}

@media screen and (max-width: 767px) {
  .recommend-section {
    padding-top: 50px;
  }

  .recommend-header-stylish {
    padding-top: 0;
  }

  .recommend-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .recommend-card {
    padding: 20px;
  }

  .card-text br {
    display: none;
  }
}

/* --- Flow Section Styles --- */
.flow-section {
  padding: 100px 20px;
  background-color: #fff;
}

.flow-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-header {
  text-align: center;
  margin-bottom: 80px;
}

.flow-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #b1a47d;
  opacity: 0.8;
  margin-bottom: 10px;
}

.flow-jp-title {
  font-family: "游明朝", serif;
  font-size: 1.5rem;
  color: #5c524c;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.flow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
  gap: 8%;
}

.flow-row.reverse {
  flex-direction: row-reverse;
}

.flow-img {
  flex: 0 0 50%;
  position: relative;
}

.flow-img img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 15px 15px 0px #faf5ee;
}

.flow-row.reverse .flow-img img {
  box-shadow: -15px 15px 0px #faf5ee;
}

.flow-content {
  flex: 0 0 42%;
  position: relative;
}

.flow-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: #b1a47d;
  display: block;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 10px;
  position: absolute;
  top: -30px;
  left: -20px;
  z-index: 2;
  opacity: 0.6;
  text-shadow:
    3px 3px 0 #fff,
    -3px 3px 0 #fff,
    3px -3px 0 #fff,
    -3px -3px 0 #fff;
}

.flow-step-title {
  font-family: "游明朝", serif;
  font-size: 1.5rem;
  color: #5c524c;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.flow-text {
  line-height: 2;
  color: #7c6948;
}

@media screen and (max-width: 767px) {
  .flow-section {
    padding-top: 80px;
    padding-bottom: 10px;
  }

  .flow-img img,
  .flow-row.reverse .flow-img img {
    box-shadow: 20px 20px 0px #faf5ee;
  }

  .flow-row,
  .flow-row.reverse {
    flex-direction: column;
    margin-bottom: 60px;
    gap: 30px;
  }

  .flow-img {
    flex: 0 0 100%;
    width: 100%;
  }

  .flow-content {
    flex: 0 0 100%;
    width: 100%;
  }

  .flow-num {
    font-size: 5rem;
    top: -70px;
    left: 0px;
  }

  .flow-step-title {
    font-size: 1.3rem;
  }

  .flow-text {
    text-align: left;
  }

  .flow-text br {
    display: none;
  }
}

/* --- Price Section --- */
.price-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #faf5ee 0%, #fff 100%);
}

.price-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.price-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #b1a47d;
  text-align: center;
  margin: 60px 0 30px;
  position: relative;
}

.price-intro-area,
.price-option-area {
  max-width: 700px;
  margin: 0 auto;
}

.price-list {
  width: 100%;
}

.price-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 20px;
  color: #5c524c;
  font-family: "游明朝", serif;
  font-size: 1.5rem;
}

.price-dots {
  flex-grow: 1;
  border-bottom: 1px dotted #ccc;
  margin: 0 15px;
  position: relative;
  top: -5px;
  opacity: 0.6;
}

.price-cost {
  font-family: serif, 'Cormorant Garamond';
  font-size: 1.3rem;
  font-weight: 500;
  color: #A64A45;
  -webkit-text-stroke: 1px #A64A45;
  text-stroke: 1px #A64A45;
}

.price-badge {
  background-color: #b1a47d;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 10px;
  font-family: "游ゴシック", sans-serif;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.price-strike {
  text-decoration: line-through;
  font-size: 1rem;
  color: #999;
  margin-right: 5px;
}

.price-arrow {
  font-size: 1rem;
  margin-right: 5px;
  color: #b1a47d;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-weight: normal;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.plan-card {
  border: 1px solid #e0ddd5;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(177, 164, 125, 0.15);
}

.plan-recommend {
  border-color: #b1a47d;
  position: relative;
}

.plan-header {
  background-color: #b1a47d;
  padding: 15px 15px;
  text-align: center;
  border-bottom: 1px solid #e0ddd5;
}

.plan-name {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}

.plan-desc {
  font-family: "游ゴシック", sans-serif;
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.6;
}

.plan-body {
  padding: 25px 20px;
}

.plan-row {
  margin-bottom: 25px;
  text-align: center;
}

.plan-row:last-child {
  margin-bottom: 0;
}

.plan-body .plan-row.women {
  border-bottom: 1px solid #e0ddd5;
  padding-bottom: 9px;
}

.plan-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: #b1a47d;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}

.plan-price {
  font-family: serif, 'Cormorant Garamond';
  font-size: 2em;
  color: #5c524c;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}

.plan-unit {
  font-size: 0.9rem;
  margin-left: 3px;
}

.plan-per {
  font-family: "游明朝", serif;
  font-size: 1rem;
  color: #999;
}

.price-option-area {
  margin-top: 50px;
  border-top: 1px solid #e0ddd5;
  padding-top: 30px;
}

.price-tax-note {
  text-align: right;
  font-size: 0.8rem;
  color: #999;
  margin-top: 15px;
  font-family: "游ゴシック", sans-serif;
}

@media screen and (max-width: 900px) {
  .price-section {
    padding-top: 60px;
  }

  .plan-header {
    padding: 30px 0;
    line-height: 1;
  }

  .price-list {
    padding: 0 21px;
  }

  .plan-name {
    margin-top: 0;
  }

  .plan-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card {
    margin-bottom: 20px;
  }

  .price-item {
    font-size: 1.2rem;
  }

  .price-badge {
    display: block;
    width: fit-content;
    margin-top: 5px;
    margin-left: 0;
  }

  .plan-desc {
    margin: 0;
  }

  .plan-desc br {
    display: none;
  }
}


/* --- Voice Section Layout --- */

.voice-section {
  padding: 100px 20px;
  background-color: #faf5ee;
  position: relative;
}

.voice-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.voice-header {
  text-align: center;
  margin-bottom: 60px;
}

.voice-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #b1a47d;
  opacity: 0.8;
  margin-bottom: 10px;
}

.voice-jp-title {
  font-family: "游明朝", serif;
  font-size: 1.5rem;
  color: #5c524c;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin: 10px 0;
}

.voice-card {
  background-color: #fff;
  padding: 35px 30px;
  border-radius: 2px;
  box-shadow: 0 10px 20px rgba(177, 164, 125, 0.1);
  position: relative;
  height: 100%;
  box-sizing: border-box;
}

.voice-card::before {
  content: '“';
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: #b1a47d;
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.voice-meta {
  margin-bottom: 15px;
}

.voice-attr {
  font-family: "游明朝", serif;
  font-size: 0.85rem;
  color: #927c55;
  background-color: #f4f0e6;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.voice-headline {
  font-family: "游明朝", serif;
  font-size: 1.15rem;
  color: #5c524c;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}

.voice-text {
  font-family: "游明朝", serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #7c6948;
}

.voice-swiper {
  padding-bottom: 50px !important;
  padding-left: 5px;
  padding-right: 5px;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet-active {
  background-color: #b1a47d !important;
}

.swiper-button-prev.voice-prev,
.swiper-button-next.voice-next {
  width: 50px;
  height: 50px;
  border: 1px solid #b1a47d;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
  z-index: 10;
}

.swiper-button-prev.voice-prev::after,
.swiper-button-next.voice-next::after {
  font-size: 1.2rem;
  color: #b1a47d;
  font-weight: bold;
}

.swiper-button-prev.voice-prev:hover,
.swiper-button-next.voice-next:hover {
  background-color: #b1a47d;
}

.swiper-button-prev.voice-prev:hover::after,
.swiper-button-next.voice-next:hover::after {
  color: #fff;
}

.swiper-button-prev.voice-prev {
  left: -60px;
}

.swiper-button-next.voice-next {
  right: -60px;
}

@media screen and (max-width: 1300px) {
  .swiper-button-prev.voice-prev {
    left: 10px;
  }

  .swiper-button-next.voice-next {
    right: 10px;
  }
}

@media screen and (max-width: 767px) {

  .swiper-button-prev.voice-prev,
  .swiper-button-next.voice-next {
    display: none;
  }

  .voice-inner {
    padding: 0;
  }
}

/* =========================================
   FAQ (Q&A) Section
   ========================================= */

.qa-section {
  padding: 100px 20px;
  background-color: #fff;
}

.qa-inner {
  max-width: 800px;
  margin: 0 auto;
}

.qa-group {
  margin-bottom: 60px;
}

.qa-category-title {
  font-size: 1.1rem;
  color: #5c524c;
  background-color: #faf5ee;
  padding: 15px 20px;
  border-left: 4px solid #b1a47d;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.qa-list {
  border-top: none;
}

.qa-item {
  border-bottom: 1px solid #e0ddd5;
}

.qa-head {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  transition: opacity 0.3s ease;
}

.qa-head:hover {
  opacity: 0.7;
}

.qa-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #b1a47d;
  margin-right: 15px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}

.qa-title {
  font-size: 1rem;
  color: #5c524c;
  flex: 1;
  padding-right: 20px;
  line-height: 1.6;
}

.qa-icon {
  width: 16px;
  height: 16px;
  position: relative;
  display: block;
  flex-shrink: 0;
}

.qa-icon::before,
.qa-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #b1a47d;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.qa-icon::before {
  width: 100%;
  height: 1px;
}

.qa-icon::after {
  width: 1px;
  height: 100%;
}

.qa-item.is-open .qa-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qa-body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.qa-body-inner {
  padding: 0 0 30px 40px;
  display: flex;
  align-items: flex-start;
}

.qa-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #b1a47d;
  margin-right: 15px;
  line-height: 1;
  opacity: 0.5;
  flex-shrink: 0;
}

.qa-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.qa-text {
  font-size: 0.95rem;
  color: #7c6948;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

.qa-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
  display: block;
  text-align: left;
  font-family: "游ゴシック", sans-serif;
}

.qa-link {
  color: #b1a47d;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.qa-link:hover {
  opacity: 0.7;
}

.qa-link-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background-color: #b1a47d;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  font-size: 0.9rem;
  font-family: "游ゴシック", sans-serif;
  transition: all 0.3s ease;
}

.qa-link-btn:hover {
  background-color: #927c55;
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .qa-inner {
    padding: 0;
  }

  .qa-body-inner {
    padding-left: 0;
  }

  .qa-category-title {
    font-size: 1rem;
  }
}

/* --------------- Access Section Only --------------- */

.access-section {
  padding: 100px 0px;
  background-color: #faf5ee;
}

.access-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.access-img {
  position: relative;
  width: 100%;
  margin: 0 auto 80px;
}

.access-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.access-sub-img {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 25%;
  height: auto;
  border-radius: 20px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.access-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  gap: 50px;
}

.access-info {
  width: 50%;
}

.access-shop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #5c524c;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.access-list {
  border-top: 1px solid rgba(177, 164, 125, 0.3);
  margin: 0;
  padding: 0;
}

.access-row {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(177, 164, 125, 0.3);
  padding: 25px 0;
}

.access-row dt {
  width: 50px;
  text-align: center;
  padding-top: 4px;
  flex-shrink: 0;
  margin: 0;
}

.access-row dt .material-symbols-outlined {
  font-size: 2rem;
  color: #b1a47d;
  font-weight: 300;
  line-height: 1;
}

.access-row dd {
  margin: 0 0 0 15px;
  text-align: left;
  color: #5c524c;
  line-height: 1.8;
  font-size: 0.95rem;
  flex: 1;
}

.access-station-block {
  margin-bottom: 20px;
}

.access-station-block:last-child {
  margin-bottom: 0;
}

.access-station-name {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #5c524c;
}

.access-sub-text {
  font-size: 0.85rem;
  color: #7c6948;
}

.access-tel {
  font-family: serif, 'Cormorant Garamond';
  font-size: 1.4rem;
  color: #5c524c;
  text-decoration: none;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.access-tel:hover {
  color: #b1a47d;
}

.access-note {
  font-size: 0.85rem;
  color: #888;
  margin: 5px 0 0 0;
  line-height: 1.6;
}

.access-map {
  width: 50%;
  height: 500px;
  position: sticky;
  top: 20px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.access-cta {
  text-align: center;
  margin-top: 60px;
}

.cta-text {
  font-family: "游明朝", serif;
  color: #5c524c;
  margin-bottom: 30px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.btn-reserve {
  display: inline-block;
  background-color: #5c524c;
  color: #fff;
  text-decoration: none;
  padding: 20px 80px;
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 300px;
}

.btn-reserve:hover {
  background-color: #b1a47d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.btn-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  line-height: 1;
}

.btn-sub {
  display: block;
  font-family: "游ゴシック", sans-serif;
  font-size: 0.8rem;
  opacity: 0.9;
}

@media screen and (max-width: 900px) {
  .access-section {
    padding: 60px 0;
  }

  .access-sub-img {
    border-radius: 10px;
  }

  .access-container {
    flex-direction: column;
    gap: 40px;
  }

  .access-visual-area {
    margin-bottom: 50px;
  }

  .access-info,
  .access-map {
    width: 100%;
  }

  .access-map {
    height: 350px;
    position: static;
  }

  .access-row dt .material-symbols-outlined {
    font-size: 1.8rem;
  }

  .btn-reserve {
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
  }
}

.access-highlight {
  display: inline-block;
  margin-top: 5px;
  color: #A64A45;
  font-family: "游ゴシック", sans-serif;
}

.access-line-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #06C755;
  border-radius: 4px;
  color: #06C755;
  text-decoration: none;
  font-weight: bold;
  font-family: "ゴシック体フォント名", sans-serif;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.access-line-btn:hover {
  background-color: #06C755;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(6, 199, 85, 0.2);
}

.line-icon-img {
  width: 30px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .btn-line-contact {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* --------------- LINE --------------- */

/* LINEアイコンの調整 */
.line-icon-img {
  width: 30px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* スマホ用微調整：ボタンを少し大きくして押しやすく */
@media screen and (max-width: 767px) {
  .btn-line-contact {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* --------------- footer --------------- */

.site-footer {
  background-color: #5c524c;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  color: #fff;
  line-height: 1;
}

.footer-icon-only {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
  transition: background-color 0.3s ease;
}

.footer-icon-only:hover {
  background-color: #b1a47d;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.8;
  color: #fff;
}

/* ----------------------------------------------------------
   ★範囲を拡大：少し大きいスマホ 〜 タブレット縦 (幅 600px 〜 1023px)
   ---------------------------------------------------------- */
@media screen and (min-width: 600px) and (max-width: 1023px) {

  /* 1. 全体の幅制限 */
  .campaign-inner,
  .concept-inner,
  .futures-container,
  .reformer-visual,
  .merit-container,
  .recommend-inner,
  .flow-inner,
  .price-inner,
  .voice-inner,
  .qa-inner,
  .access-inner,
  .footer-inner {
    max-width: 600px;
    /* ここも少し小さめに */
    margin-left: auto;
    margin-right: auto;
  }

  .first-view {
    padding-bottom: 10%;
  }

  .firstview-items {
    justify-content: center;
    gap: 8%;
    margin-top: 20px;
  }

  .firstview-item1,
  .firstview-item2,
  .firstview-item3 {
    width: 30%;
    max-width: 150px;
  }

  /* 3. 画像の配置（スマホ同様に縦並びを維持） */
  .firstview-img {
    position: relative;
    width: 70%;
    /* 少し小さめに */
    max-width: 500px;
    margin: 20px auto;
    opacity: 0.7;
    bottom: auto;
    left: auto;
  }

  .headline {
    top: 35%;
  }

  h1 {
    font-size: 2.5rem;
  }

  .fv-campaign-box {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 0 3% 0;
    bottom: auto;
    right: 0;
    text-align: center;
  }

  /* 5. グリッドレイアウト調整 */
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto 60px;
  }

  .campaign-container {
    flex-direction: column;
    align-items: center;
  }

  .campaign-card {
    width: 90%;
  }

  .campaign-section {
    padding-top: 80px;
  }
}

/* ----------------------------------------------------------
   ① PC / iPad Pro横向き用 (画面幅 1024px以上) の基本設定
   ---------------------------------------------------------- */
@media screen and (min-width: 1024px) {

  .header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
  }

  .logo-container {
    width: auto;
    padding: 0;
  }

  .logo-container>a img.logo {
    width: 180px;
  }

  .firstview-point {
    font-size: 2rem;
    padding: 15px 5px 0 0;
  }

  .unit-small {
    font-size: 0.75em;
  }
  
  .number-large {
    font-size: 1.5em;
  }

  .firstview-container {
    max-width: 1200px;
    height: 60vh;
    margin: 0 auto;
    position: relative;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  /* 人物画像 */
  .firstview-img {
    max-width: 80%;
    bottom: 0;
    left: 0;
    right: auto;
  }

  /* CTAボタン（PC/タブレット用サイズ） */
  .cta-button {
    width: auto;
    min-width: 300px;
    font-size: 1.2rem;
    padding: 15px 50px;
    bottom: 30px;
    border-radius: 50px;
    letter-spacing: 0.1em;
  }

  /* 背景調整 */
  .p-fv {
    height: auto;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .p-fv__bg {
    height: 100%;
  }

  .p-fv__cta {
    width: 100%;
    padding: 20px;
  }
}

/* ----------------------------------------------------------
   ② iPad Pro / PC用 (画面幅 1024px以上)
   ---------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .cta-button {
    bottom: 40px;
  }

  .header {
    padding-bottom: 0;
  }

  p.firstview-point {
    padding: 0;
  }

  .headline {
    top: 35%;
  }

  h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
  }

  .subtitle {
    font-size: 2rem;
  }

  .firstview-point {
    font-size: 3rem;
    padding: 35px 15px 0 0;
  }

  .logo-container {
    width: auto;
    padding: 0;
    align-items: center;
  }

  .logo-container>a {
    width: auto;
    max-width: none;
  }

  .firstview-items {
    justify-content: center;
    gap: 8vw;
    margin-top: 0;
  }

  /* 2. アイテム1つ1つが巨大化しないように制限をかける */
  .firstview-item1,
  .firstview-item2,
  .firstview-item3 {
    width: 25%;
    /* 基準の大きさ */
    max-width: 230px;
    /* ★これ以上大きくならないようにロック！ */
  }

  .fv-campaign-box {
    left: auto;
    /* ★重要：スマホ版の「左指定」を解除 */
    right: 3%;
    bottom: 40px;
  }

  .campaign-header img {
    width: 70%;
    margin: 0 auto;
  }

  /* ▼▼▼ 追加: Personal Merit (PC用 横並び設定) ▼▼▼ */
  .merit-personal {
    padding: 120px 20px;
  }

  .merit-row {
    flex-direction: row;
    /* 横並びに戻す */
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 5%;
  }

  .merit-row.reverse {
    flex-direction: row-reverse;
    /* 交互配置 */
  }

  .merit-text-box {
    width: 45%;
    flex: 0 0 45%;
  }

  .merit-num {
    top: -60px;
    left: -20px;
  }

  .merit-img-box {
    width: 40%;
    flex: 0 0 50%;
  }
}

/* ----------------------------------------------------------
   ③ パソコン / 大型モニター用 (画面幅 1280px以上)
   ---------------------------------------------------------- */
@media screen and (min-width: 1280px) {

  .first-view {
    padding: 0 3% 0 1%
  }

  h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    line-height: 1.4;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .firstview-bubble {
    width: 10%;
    bottom: 23%;
    right: 13%;
  }

  .firstview-bubble2 {
    width: 5%;
    bottom: 21%;
    right: 7%;
  }

  .headline {
    top: 33%;
  }

  .fv-campaign-box {
    bottom: 60px;
  }

  /* 親ラッパー：Flexboxで全体をレイアウト */
  .firstView-wrapper {
    display: flex;
    flex-wrap: wrap; /* 折り返しあり */
    align-items: center;
    position: relative;
    padding-top: 20px;
  }

  /* ヘッダーの枠を無視してフラットに配置 */
  .header {
    display: contents;
  }

  /* ① ロゴ */
  .logo-container {
    order: 1;
    width: auto;
    padding: 0;
    margin: 0;
    align-self: flex-start;
  }

  .logo-container > a img.logo {
    width: 140px;
  }

  .firstview-items {
    order: 2;
    width: auto;
    flex: 1; /* ★重要: 左右の余白を埋めて中央に配置 */
    justify-content: center;
    gap: 50px;
  }

  .firstview-item1,
  .firstview-item2,
  .firstview-item3 {
    width: 30%;
    max-width: 190px;
  }

  .firstview-point {
    order: 3;
    width: auto;
    margin: 0;
    padding: 0;
    font-size: 2.3rem;
    line-height: 1.4;
  }

  .firstview-point .number-large {
    font-size: 1.5em;
  }

  /* ④ 画像（次の行の左側へ） */
  .firstview-img {
    order: 4;
    position: static;
    width: 45%;
    margin-right: 55%; /* ★重要: これで実質幅100%を占有し、強制的に改行させる */
  }

  .headline {
    z-index: 10;
    padding-left: 5%;
  }
  
}