/* ========================================
   Base / Reset
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Shippori Mincho', 'Roboto', serif;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #fff;
  background: #111;
}

/* ========================================
   Fade In Animation
======================================== */
.fadeIn_up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.6s ease, transform 1.6s ease;
}

.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Wireframe Helpers
======================================== */
.wf-block {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
}

.wf-sm {
  height: 60px;
}

.wf-md {
  height: 100px;
}

.wf-lg {
  height: 200px;
}

.wf-img {
  height: 200px;
}

.wf-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.wf-shadow {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* ========================================
   Layout
======================================== */
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
}

/* ========================================
   Header  h: 80px
======================================== */
.header {
  height: 80px;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  margin-left: 30px;
  margin-right: 30px;
}

.header__logo {
  height: 44px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  position: relative;
  transition: opacity 0.3s;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.header__nav-link:hover {
  opacity: 1;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-shop {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 6px 16px;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.header__nav-shop:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.header__hamburger {
  display: none;
}

.hamburger-svg {
  display: block;
  overflow: visible;
}

.hbg-open {
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: 30px 10.5px;
}

.hbg-close {
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transform-origin: 30px 10.5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header__hamburger.is-open .hbg-open {
  opacity: 0;
  transform: rotate(-45deg) scale(0.7);
}

.header__hamburger.is-open .hbg-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ========================================
   SP Menu Overlay
======================================== */
.sp-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 200;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sp-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sp-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-menu__logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

.sp-menu__close,
.sp-menu__close-bottom {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #fff;
}

.sp-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.sp-menu__link {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
}

.sp-menu__shop {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 18px 48px;
  width: 80%;
  text-align: center;
}

.sp-menu__close-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.sp-menu__close-bottom span {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
}

@media (max-width: 950px) {
  .sp-menu {
    display: flex;
    max-width: 430px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 430px;
  }
}

/* ========================================
   FV  h: 766px
======================================== */
.fv {
  height: 766px;
  background: #000;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}

.fv__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
}

.fv__main {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
}

.fv__glow {
  position: absolute;
  right: 0px;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 0;
}

/* 6方向の光線（3本の交差ライン） */
.fv__glow::before {
  content: '';
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.95) 50%, transparent calc(50% + 1px)),
    linear-gradient(60deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.95) 50%, transparent calc(50% + 1px)),
    linear-gradient(120deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.95) 50%, transparent calc(50% + 1px));
  -webkit-mask: radial-gradient(ellipse at center, white 0%, rgba(255, 255, 255, 0.6) 30%, transparent 55%);
  mask: radial-gradient(ellipse at center, white 0%, rgba(255, 255, 255, 0.6) 30%, transparent 55%);
  filter: blur(0.5px);
}

/* 中央の輝点 + 周囲のグロー */
.fv__glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 8px 6px rgba(255, 255, 255, 1),
    0 0 22px 12px rgba(255, 255, 255, 0.7),
    0 0 50px 20px rgba(255, 240, 180, 0.4);
}

.fv__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0a0600 20%, rgba(34, 33, 0, 0) 75vw);
  pointer-events: none;
  z-index: 1;
}

.fv__inner {
  max-width: 1366px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.fv__right {
  position: absolute;
  right: 40px;
  bottom: -60px;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.fv__right-item {
  width: 216px;
  height: 216px;
  padding-bottom: 28px;
  background: url('../images/fv_bubble.webp') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.fv__left {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 126px;
  height: 100%;
}

.fv__text {
  width: 600px;
  height: auto;
}

.fv__logo {
  width: 526px;
  height: auto;
}

.fv__product-wrap {
  position: relative;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
}

.fv__product {
  height: 364px;
  width: auto;
  position: relative;
  z-index: 1;
}

/* ========================================
   商品バナー  h: 238px
======================================== */
.item-banner {
  height: 238px;
  background: url('../images/itembanner.webp') center / cover no-repeat;
  position: relative;
}

.item-banner__inner {
  max-width: 1366px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 24px;
}

.item-banner__aya {
  display: none;
}

.sp-only {
  display: none;
}

.item-banner__logo {
  width: 300px;
  height: auto;
}

.item-banner__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding-bottom: 4px;
}

.item-banner__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.item-banner__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 160, 60, 0.8) 50%, transparent);
}

.item-banner__body {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* ========================================
   コンセプト  h: 1138px
======================================== */
.concept {
  height: 1138px;
  position: relative;
  overflow: hidden;
  background:
    url('../images/concept_bg.webp') center bottom / 100% auto no-repeat,
    #000;
}

.concept__item {
  position: absolute;
  top: 50%;
  right: 70px;
  transform: translateY(-50%);
  width: 674px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.concept__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.concept__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-align: left;
}

.concept__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.concept__p {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}

.concept__closing {
  font-family: 'Shippori Mincho', serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: left;
  padding-top: 16px;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

/* ========================================
   エイジングヘアケアについて  h: 1540px
======================================== */
.aging {
  height: 1540px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aging__inner {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 80px;
  gap: 60px;
}

/* タイトルパーツ h: 236px */
.aging__title-block {
  height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.aging__en-img {
  height: 16px;
  width: auto;
}

.aging__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.aging__heading::before,
.aging__heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #fff;
}

/* コンテンツ h: 598 × 2 */
.aging__col {
  height: 598px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aging__col-titlebar {
  background: url('../images/gold-texture.webp') center/cover no-repeat;
  color: #1a1000;
  font-family: 'Shippori Mincho', serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 16px 24px;
}

.aging__col-graph {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.aging__col-graph-img {
  width: 90%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.aging__col-text {
  width: 90%;
  margin: 0 auto;
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  line-height: 1.9;
  text-align: left;
}

/* ========================================
   エステが産んだ"土台"  h: 1100px
======================================== */
.esthe-point-bg {
  background: url('../images/esthe_bg.webp') top center / cover no-repeat;
}

.esthe {
  height: 1100px;
  color: #111;
}

.esthe__inner {
  display: flex;
  flex-direction: column;
}

/* 上部 h: 750 */
.esthe__upper {
  height: 750px;
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.esthe__upper-photo {
  flex: 0 0 420px;
  height: 500px;
  object-fit: contain;
}

.esthe__upper-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.esthe__title-img {
  width: 100%;
  height: auto;
}

.esthe__upper-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.esthe__upper-body p {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

/* 下部 h: 264 影付きボックス */
.esthe__lower {
  height: 264px;
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.esthe__box {
  width: 100%;
  background: #fff url('../images/aya_logo_yellow.webp') right bottom / 360px auto no-repeat;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  overflow: visible;
}

.esthe__box-title {
  background: url('../images/gold-texture.webp') center/cover no-repeat;
  width: 80%;
  margin: 0 auto;
  border-radius: 0;
  transform: translateY(-50%);
  margin-bottom: -27px;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
}

.esthe__box-title-logo {
  height: 1em;
  width: auto;
  vertical-align: middle;
}

.esthe__box-list {
  list-style: none;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.esthe__box-list li {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.08em;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.esthe__box-list li::before {
  content: '';
  flex-shrink: 0;
  width: 21px;
  height: 19px;
  background: url('../images/check-icon.svg') center/contain no-repeat;
  display: block;
}

/* ========================================
   Point  h: auto
======================================== */
.point {
  height: auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 120px;
}

/* 上部 h: 4270 */
.point__upper {
  height: auto;
  position: relative;
}

.point__triangle {
  width: 1000px;
  max-width: 100%;
  height: 150px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: -1px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.point__triangle-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 28px;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  align-self: center;
  padding-top: 40px;
}

.point__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
  clip-path: polygon(0 0, 50% 80px, 100% 0, 100% 100%, 0 100%);
}

/* カード共通 */
.point__card {
  border-radius: 0;
  padding: 60px 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.wf-placeholder {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
  border: 2px dashed rgba(0, 0, 0, 0.15);
}

/* POINT ラベル */
.point__label {
  width: 80px;
  height: auto;
}

/* 見出し */
.point__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 34px;
  font-weight: 500;
  color: #1a1000;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.point__heading::before,
.point__heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #b8972a;
}

.point__heading::before {
  margin-left: -80px;
}

.point__heading::after {
  margin-right: -80px;
}

/* サブテキスト */
.point__desc {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

/* 3サークル */
.point__circles {
  display: flex;
  justify-content: center;
}

.point__circle+.point__circle {
  margin-left: -18px;
}

.point__circle {
  width: 234px;
  height: 234px;
  border-radius: 50%;
  border: 1.5px solid #b8972a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.point__circle span {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  color: #b8972a;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* 主な成分タイトル */
.point__ingredient-title {
  background: #917000;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.3em;
  padding: 8px 30px;
  align-self: center;
  position: relative;
}

.point__ingredient-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 16px solid #917000;
}

/* 成分グリッド 3×2 */
.point__ingredients {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.point__ingredient-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.point__ingredient-item:nth-child(3n) {
  border-right: none;
}

.point__ingredient-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.point__ingredient-img {
  height: 180px;
  background: rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.point__ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.point__ingredient-name {
  background: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 600;
  color: #b8972a;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 14px 16px 8px;
  border-bottom: 1px solid rgba(184, 151, 42, 0.3);
}

.point__ingredient-text {
  background: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  color: #444;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.8;
  padding: 10px 16px 16px;
}

/* POINT02 サブアイテム */
.point2__items {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}

.point2__item {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 0;
}

.point2__item--reverse .point2__icon {
  left: auto;
  right: -12px;
}

.point2__item-img {
  flex: 0 0 336px;
  height: 214px;
  order: -1;
  margin-right: -20px;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.point2__img {
  width: 100%;
}

.point2__item--reverse .point2__item-img {
  order: 1;
  margin-right: 0;
  margin-left: -20px;
}

.point2__item-body {
  flex: 1;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  background: #FFF;
  border: 1px solid #917000;
  position: relative;
}

.point2__item--reverse .point2__item-body {
  border-left: 1px solid #917000;
}

.point2__item--reverse .point2__item-body::before {
  left: auto;
  right: -1px;
}

.point2__icon {
  position: absolute;
  top: -20px;
  left: 0px;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: url('../images/point_bubble.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 25px;
  font-weight: 400;
  color: #FFF;
}

.point2__item-title {
  width: auto;
  height: 64px;
  align-self: flex-start;
}

.point2__item-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 14px;
  color: #444;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

/* 下部 h: 510 */
.point__lower {
  height: 510px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -160px;
}

.point__lower-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  height: 100%;
  object-fit: cover;
}

.point__lower-img {
  position: relative;
  z-index: 1;
  height: 90%;
  width: auto;
  object-fit: contain;
}

.point__lower-text {
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.point__lower-heading {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.point__lower-body {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2;
  opacity: 0.9;
}

/* ========================================
   お客様の声  h: 1462px
======================================== */
.voice {
  height: 1462px;
  background: url('../images/voice_bg.webp') center/cover no-repeat;
}

.voice__inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
}

/* タイトルボックス h: 170 */
.voice__title-box {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: url('../images/gold-texture.webp') center/cover no-repeat;
}

.voice__title-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.voice__title-sub {
  font-family: 'Shippori Mincho', serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.1em;
}

.voice__title-main {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  color: #fff;
  letter-spacing: 0.05em;
}

/* 2×2 グリッド h500 gap30 */
.voice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px 20px 0;
  max-width: 1000px;
  margin: 0 auto;
  flex: 1;
}

.voice__card {
  width: 400px;
  height: 500px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
}

/* 上部: 写真＋プロフィール */
.voice__card-top {
  display: flex;
  gap: 0;
  width: 100%;
  flex-shrink: 0;
}

.voice__card-photo {
  flex-shrink: 0;
  overflow: hidden;
}

.voice__card-photo img {
  width: 186px;
  height: 167px;
  object-fit: cover;
}

.voice__card-profile {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  gap: 6px;
}

.voice__card-no {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #b89a5a;
  border-bottom: 1px solid #b89a5a;
  padding-bottom: 6px;
  display: block;
}

.voice__card-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #1a1a1a;
}

.voice__card-attr {
  font-size: 12px;
  color: #888;
}

/* 見出し */
.voice__card-heading-wrap {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.voice__card-heading {
  display: inline;
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  color: #b89a5a;
  border: 1px solid #b89a5a;
  line-height: 1.7;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* 本文 */
.voice__card-body {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  overflow: hidden;
}

/* ========================================
   使い方
======================================== */
.howto {
  background: linear-gradient(to bottom, #000000, #604200);
}

.howto__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 60px;
}

.howto__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 100%;
}

.howto__catch {
  height: 16px;
  width: auto;
}

.howto__title {
  font-family: 'Shippori Mincho', serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  letter-spacing: 0.1em;
  width: 100%;
}

.howto__title::before,
.howto__title::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: #fff;
}

.howto__desc {
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

/* 角丸BOX */
.howto__box {
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 60px;
  gap: 30px;
  width: 831px;
}

.howto__box-title {
  height: 16px;
  width: auto;
}

.howto__steps {
  display: flex;
  gap: 40px;
  width: 100%;
}

.howto__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.howto__step-img {
  width: 100%;
  height: 136px;
  object-fit: contain;
}

.howto__step-badge {
  width: 100%;
  background: #917000;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 2px 0;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
}

.howto__step:nth-child(3) .howto__step-badge {
  clip-path: none;
}

.howto__step-text {
  font-size: 13px;
  line-height: 1.8;
  color: #444;
  text-align: left;
  width: 100%;
}

/* ========================================
   CTA  h: 660px
======================================== */
.cta {
  height: 660px;
  background: url('../images/cta_bg.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.cta__glow {
  top: 90px;
  right: 10px;
  z-index: 0;
}

.cta__img {
  height: 80%;
  width: auto;
  object-fit: contain;
  z-index: 1;
}

.cta__inner {
  display: flex;
  align-items: center;
}

.cta__left {
  flex: 0 0 50%;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta__left .wf-block {
  width: 100%;
  border-radius: 0;
}

.cta__right {
  flex: 0 0 50%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.cta__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.cta__product {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.cta__brand {
  height: 16px;
  width: auto;
  align-self: flex-start;
}

.cta__name {
  height: 20px;
  width: auto;
  align-self: flex-start;
}

.cta__line {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 4px 0;
}

.cta__price {
  height: 40px;
  width: auto;
  align-self: flex-start;
}

.cta__volume {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.cta__tax {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 280px;
  height: 60px;
  background: #917000;
  color: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  transition: background 0.3s ease;
}

.cta__btn:hover {
  background: #6e5500;
}

.cta__btn::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.cta__btn:hover::after {
  width: 50px;
}

/* ========================================
   Mobile  ≤950px
======================================== */
@media (max-width: 950px) {
  html {
    background: #000;
  }

  body {
    max-width: 430px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  /* ----- Layout ----- */
  .inner {
    padding: 0 16px;
    height: auto;
  }

  .sp-only {
    display: inline;
  }

  /* ----- Header ----- */
  .header {
    height: 60px;
    max-width: 430px;
    left: 50%;
    transform: translateX(-50%);
  }

  .header .inner {
    margin: 0 16px;
    height: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .header__logo {
    height: 30px;
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  /* ----- FV ----- */
  .fv {
    height: 686px;
    background: url('../images/fv_bg_s.webp') center/cover no-repeat;
  }

  .fv__bg {
    display: none;
  }

  .fv__inner {
    width: 100%;
    max-width: 100%;
    height: 662px;
  }

  .fv__left {
    padding-top: 80px;
    gap: 290px;
  }

  .fv__text {
    width: 100%;
  }

  .fv__logo {
    width: 100%;
  }

  .fv__overlay {
    display: none;
  }

  .fv__product-wrap {
    display: none;
  }

  .fv__main {
    display: none;
  }

  .fv__product {
    height: 220px;
  }

  .fv__right {
    right: 0;
    bottom: -30px;
    width: 100%;
    justify-content: center;
  }

  .fv__right-item {
    width: 110px;
    height: 110px;
    font-size: 14px;
    padding-bottom: 16px;
  }

  /* ----- 商品バナー ----- */
  .item-banner {
    height: auto;
    padding: 0px 16px 24px;
  }

  .item-banner__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0;
  }

  .item-banner__aya {
    width: 50%;
    height: auto;
    align-self: center;
    display: block;
    margin-top: -26px;
  }

  .item-banner__logo {
    width: 180px;
  }

  .item-banner__heading {
    font-size: 24px;
  }

  .item-banner__body {
    font-size: 16px;
    text-align: left;
  }


  /* ----- Concept ----- */
  .concept {
    height: auto;
    padding-bottom: 40px;
    background: url('../images/concept_bg_sp.webp') center bottom / 100% auto no-repeat, #000;
  }

  .concept__item {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    transform: none;
  }

  .concept__inner {
    padding-top: 0;
    padding-bottom: 60px;
    gap: 32px;
  }

  .concept__heading {
    font-size: 24px;
  }

  .concept__p {
    font-size: 13px;
  }

  .concept__closing {
    font-size: 21px;
  }

  /* ----- Aging ----- */
  .aging {
    height: auto;
  }

  .aging__inner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    gap: 40px;
  }

  .aging__title-block {
    height: auto;
  }

  .aging__heading {
    font-size: 22px;
    justify-content: center;
  }

  .aging__heading::before,
  .aging__heading::after {
    width: 20px;
    flex: none;
  }

  .aging__col {
    height: auto;
  }

  .aging__col-titlebar {
    font-size: 16px;
  }

  /* ----- Esthe ----- */
  .esthe {
    height: auto;
  }

  .esthe__upper {
    height: auto;
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
  }

  .esthe__upper-photo {
    flex: none;
    width: 100%;
    height: 290px;
  }

  .esthe__upper-body p {
    font-size: 14px;
  }

  .esthe__lower {
    height: auto;
    width: 100%;
    padding: 20px 0;
  }

  .esthe__box-title {
    font-size: 14px;
    width: 100%;
  }

  .esthe__box-list {
    padding: 20px 20px;
    gap: 16px;
  }

  .esthe__box-list li {
    font-size: 15px;
  }

  /* ----- Point ----- */
  .point {
    padding-bottom: 0;
  }

  .point__triangle {
    width: 100%;
    height: 80px;
  }

  .point__triangle-text {
    font-size: 20px;
    padding-top: 20px;
  }

  .point__inner {
    padding-top: 60px;
    padding-bottom: 0px;
    clip-path: polygon(0 0, 50% 40px, 100% 0, 100% 100%, 0 100%);
  }

  .point__card {
    padding: 40px 0 0;
    gap: 40px;
  }

  .point__heading {
    font-size: 22px;
    gap: 12px;
  }

  .point__heading::before {
    margin-left: -20px;
  }

  .point__heading::after {
    margin-right: -20px;
  }

  .point__desc {
    font-size: 13px;
    text-align: left;
  }

  .point__circles {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .point__circle+.point__circle {
    margin-left: -6px;
    margin-top: 0;
  }

  .point__circle {
    width: 120px;
    height: 120px;
  }

  .point__circle span {
    font-size: 14px;
  }

  .point__ingredient-img {
    width: 100%;
    height: 110px;
  }

  .point__ingredient-name {
    padding: 0;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

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

  .point__ingredient-title {
    font-size: 18px;
    letter-spacing: 0.1em;
  }

  .point__ingredients {
    grid-template-columns: repeat(2, 1fr);
  }

  .point__ingredient-item:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }

  .point__ingredient-item:nth-child(2n) {
    border-right: none;
  }

  .point__ingredient-item:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .point__ingredient-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .point2__items {
    gap: 40px;
  }

  .point2__item {
    flex-direction: column-reverse;
  }

  .point2__item--reverse {
    flex-direction: column-reverse;
  }

  .point2__item-img {
    flex: none;
    width: 100%;
    height: auto;
    order: 0;
    margin: 0;
  }

  .point2__item--reverse .point2__item-img {
    order: 0;
    margin: 0;
    box-shadow: none;
  }

  .point2__item-body {
    padding: 24px 20px;
  }

  .point2__item-title {
    height: auto;
    max-width: 100%;
  }

  .point2__icon {
    top: -32px;
    left: -12px;
  }

  .point__lower {
    height: auto;
    min-height: 300px;
    margin-top: -60px;
  }

  .point__lower-img {
    width: 65%;
    height: auto;
  }

  .point__lower-bg {
    width: 100%;
    height: auto;
  }

  .point__lower-heading {
    font-size: 29px;
  }

  .point__lower-body {
    font-size: 12px;
  }

  /* ----- Voice ----- */
  .voice {
    height: auto;
  }

  .voice__title-sub {
    font-size: 16px;
  }

  .voice__title-main {
    font-size: 20px;
    white-space: normal;
  }

  .voice__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 24px 16px 24px;
    gap: 20px;
  }

  .voice__card {
    width: 100%;
    height: auto;
  }

  .voice__card-photo img {
    width: 140px;
    height: 130px;
  }

  .voice__card-name {
    font-size: 18px;
  }

  .voice__card-heading {
    font-size: 16px;
  }

  .voice__card-body {
    font-size: 13px;
  }

  /* ----- Howto ----- */
  .howto__catch {
    height: auto;
    width: 100%;
  }

  .howto__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
  }

  .howto__title {
    font-size: 22px;
    gap: 12px;
  }

  .howto__box {
    width: 100%;
    padding: 30px 50px;
    gap: 20px;
    border-radius: 0;
  }

  .howto__steps {
    flex-direction: column;
    gap: 24px;
  }

  .howto__step-img {
    height: 160px;
  }

  /* ----- CTA ----- */
  .cta__price {
    height: auto;
    width: 100%;
  }

  .cta {
    height: auto;
  }

  .cta__glow {
    top: 20px;
    right: 60px;
  }

  .cta__product {
    align-items: center;
  }

  .cta__inner {
    flex-direction: column;
  }

  .cta__left {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .cta__right {
    flex: none;
    width: 100%;
    padding: 0px 20px 40px;
    gap: 20px;
  }

  .cta__heading {
    font-size: 22px;
  }

  .cta__btn {
    width: 100%;
  }

  .cta__name {
    width: 100%;
    height: auto;
  }

  .howto__desc {
    text-align: left;
  }
}

/* ========================================
   Footer
======================================== */
.footer {
  height: 30px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copy {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.05em;
}