@charset "utf-8";

/* wearphoto固有の追加変数 */
:root {
  --wp-cream:       #f5f3ee;
  --wp-gray-light:  #e8e5df;
  --wp-accent:      #c8a882;
  --wp-accent-dark: #a08060;
  /* サブページ共通 */
  --wp-gold:        #b0956e;
  --wp-gold-dim:    rgba(176,149,110,.15);
  --wp-dark:        #1a1a1a;
  --wp-bg:          #f9f6f2;
  --wp-border:      #e8e2d9;
}

.error{ font-size:0.9rem; }

.price-text{ font-size:1rem; }
.small-text{ font-size:100%; }

/* ============================================================
   FV
============================================================ */
.wp-fv {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--kuro);
}

video {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .wp-fv {
    margin-top: -42px;
  }
}

.wp-fv__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.wp-fv__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2820 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.3em;
}

.wp-fv__overlay {
  position: absolute;
  width: 100%; height: 100%;
  background-image: radial-gradient(circle, rgba(0,0,0,0.7) 1px, transparent 1px);
  background-size: 3px 3px;
}

.wp-fv__content {
  position: absolute;
  background-color: rgba(0,0,0,.65);
  bottom: 0px;
  width: 100%;
  z-index: 2;
  min-height: 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(15px, 3vw, 50px);
  
}

.wp-fv__label {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wp-accent);
  display: block;
  margin-bottom: 16px;
}

.wp-fv__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--shiro);
  margin-bottom: 24px;
}

.wp-fv__title em {
  font-style: italic;
  color: var(--wp-accent);
}

.wp-fv__copy {
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 300;
  color: var(--shiro80);
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.wp-fv__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wp-fv__scroll {
  position: absolute;
  bottom: 70px;
  right: clamp(24px, 4vw, 60px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--shiro50);
  font-family: 'EB Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.wp-fv__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--shiro50), transparent);
}

/* ============================================================
   ボタン
   ※ common.cssでa要素がipinkになってるので color !important で上書き
============================================================ */
.wp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wp-accent);
  color: var(--shiro) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 16px 36px;
  border: none;
  transition: background 0.3s, gap 0.3s;
}
.wp-btn-primary:hover {
  background: var(--wp-accent-dark);
  color: var(--shiro) !important;
  gap: 18px;
}
.wp-btn-primary::after { content: '→'; }

.wp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--shiro50);
  color: var(--shiro) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  padding: 15px 32px;
  transition: border-color 0.3s, background 0.3s;
}
.wp-btn-ghost:hover {
  border-color: var(--shiro);
  background: var(--shiro10);
  color: var(--shiro) !important;
}

.wp-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--kuro);
  color: var(--shiro) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 16px 48px;
  transition: background 0.3s, gap 0.3s;
}
.wp-btn-dark:hover {
  background: var(--sumi);
  color: var(--shiro) !important;
  gap: 18px;
}
.wp-btn-dark::after { content: '→'; }

.wp-btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--kuro) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--kuro);
  padding-bottom: 3px;
  transition: gap 0.3s, color 0.3s, border-color 0.3s;
}
.wp-btn-text:hover {
  gap: 16px;
  color: var(--wp-accent-dark) !important;
  border-color: var(--wp-accent-dark);
}
.wp-btn-text::after { content: '→'; }

/* ============================================================
   セクション共通
============================================================ */
.wp-section-en {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wp-accent);
  display: block;
  margin-bottom: 10px;
}

.wp-section-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.wp-section-lead {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.wp-section-pad {
  padding-top: clamp(64px, 10vw, 96px);
  padding-bottom: clamp(64px, 10vw, 96px);
}

.wp-bg-cream { background-color: var(--wp-cream); }
.wp-bg-dark  { background-color: var(--sumi); color: var(--shiro); }
.wp-bg-dark .wp-section-lead { color: var(--shiro50); }
.wp-bg-dark .wp-section-title { color: var(--shiro); }

/* wp-gap-grid 廃止、こっちに変える */
.wp-features-grid {
  border: 1px solid var(--wp-gray-light);
}

.wp-features-grid .wp-feature-card {
  border-right: 1px solid var(--wp-gray-light);
  border-bottom: 1px solid var(--wp-gray-light);
}

.wp-feature-card {
  height: 100%;
}

/* 各行の右端はborder-right不要 */
@media (min-width: 992px) {
  .wp-features-grid .col-lg-3:nth-child(4n) .wp-feature-card {
    border-right: none;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .wp-features-grid .col-sm-6:nth-child(2n) .wp-feature-card {
    border-right: none;
  }
}

@media (max-width: 575px) {
  .wp-features-grid .wp-feature-card {
    border-right: none;
  }
}

/* ============================================================
   Feature カード
============================================================ */
.wp-feature-card {
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition: background 0.3s;
}
.wp-feature-card:hover { background: var(--wp-cream) !important; }

.wp-feature-num {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--wp-accent);
  display: block;
  margin-bottom: 16px;
}

.wp-feature-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}

.wp-feature-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.5;
}

.wp-feature-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--gray);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

/* ============================================================
   Flow
============================================================ */
.wp-flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.wp-flow-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--shiro20);
}

.wp-flow-item {
  display: flex;
  gap: clamp(20px, 4vw, 44px);
  padding-bottom: clamp(32px, 5vw, 52px);
}
.wp-flow-item:last-child { padding-bottom: 0; }

.wp-flow-step {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid var(--wp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--wp-accent);
  background: var(--sumi);
  position: relative;
  z-index: 1;
}

.wp-flow-title {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--shiro);
}

.wp-flow-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--shiro50);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.wp-flow-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: rgba(200,168,130,0.18);
  color: var(--wp-accent);
  margin-top: 8px;
}

/* ============================================================
   Pricing
   ※ MIGX化予定 → 後でMIGX TV＋チャンクに置き換え
============================================================ */
.wp-pricing-card {
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 32px);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wp-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  z-index: 1;
}

.wp-pricing-card--featured {
  background: var(--kuro) !important;
  color: var(--shiro);
}
.wp-pricing-card--featured::before {
  content: '人気';
  position: absolute;
  top: 0;
  right: 20px;
  background: var(--wp-accent);
  color: var(--shiro);
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 12px;
}

.wp-pricing-plan {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wp-accent);
  display: block;
  margin-bottom: 14px;
}

.wp-pricing-items {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.wp-pricing-items span {
  font-size: 15px;
  font-weight: 300;
  margin-left: 4px;
}

.wp-pricing-price {
  font-family: 'EB Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2px;
}

.wp-pricing-per {
  font-size: 12px;
  font-weight: 300;
  color: var(--mgray);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.wp-pricing-card--featured .wp-pricing-per { color: var(--shiro50); }

.wp-pricing-divider {
  border: none;
  border-top: 1px solid var(--wp-gray-light);
  margin-bottom: 18px;
  opacity: 1;
}
.wp-pricing-card--featured .wp-pricing-divider { border-color: var(--shiro20); }

.wp-pricing-note {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: var(--gray);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.wp-pricing-card--featured .wp-pricing-note { color: var(--shiro50); }

.wp-pricing-extra {
  background: var(--shiro);
  padding: clamp(18px, 3vw, 28px) clamp(20px, 3vw, 32px);
}
.wp-pricing-extra-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.05em;
}
.wp-pricing-extra-price {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  font-weight: 400;
}
.wp-pricing-extra-price span {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  margin-left: 4px;
}

/* ============================================================
   Gallery
   ※ Gallery連携予定 → 後でGalleryスニペットに置き換え
============================================================ */
.wp-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 2px;
}
.wp-gallery-grid__item {
  overflow: hidden;
  background: var(--wp-gray-light);
}
.wp-gallery-grid__item:first-child { grid-row: 1 / 3; }
.wp-gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.wp-gallery-grid__item:hover img { transform: scale(1.05); }

.wp-gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mgray);
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
}

/* ============================================================
   CTA Bottom
============================================================ */
.wp-cta-bottom {
  position: relative;
  overflow: hidden;
  background: var(--wp-cream);
}
.wp-cta-bottom::before {
  content: 'WEAR';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'EB Garamond', serif;
  font-size: clamp(80px, 20vw, 260px);
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.2em;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}
.wp-cta-title {
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

/* ---- CTA ------------------------------------------------ */
.wp-cta-bottom { background: var(--wp-dark); }
.wp-cta-pad {
  padding-top: clamp(80px, 13vw, 140px);
  padding-bottom: clamp(80px, 13vw, 140px);
}
.wp-cta-title {
  font-size: clamp(24px, 4.5vw, 44px);
  font-weight: 700; color: var(--wp-cream);
  line-height: 1.4; letter-spacing: -.02em;
}
.wp-btn-primary {
  display: inline-block; background: var(--wp-gold);
  color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px; letter-spacing: .1em;
  padding: 16px 36px; border-radius: 2px; transition: background .2s;
}
.wp-btn-primary:hover { background: #8a7055; color: #fff; }
.wp-btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--wp-cream); text-decoration: none;
  font-size: 14px; letter-spacing: .08em;
  padding: 15px 32px; border-radius: 2px; transition: border-color .2s;
}
.wp-btn-ghost:hover { border-color: rgba(255,255,255,.8); color: var(--wp-cream); }


/* ============================================================
   レスポンシブ
============================================================ */
@media (max-width: 768px) {
  .wp-fv__content { padding: 28px 20px 100px; }
  .wp-btn-ghost { display: none; }
  .wp-flow-list::before { left: 19px; }
  .wp-flow-step { width: 40px; height: 40px; font-size: 11px; }
  .wp-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .wp-gallery-grid__item:first-child {
    grid-row: auto;
    grid-column: 1 / 3;
  }
}
@media (max-width: 480px) {
  .wp-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }
  .wp-gallery-grid__item:first-child { grid-column: auto; }
}

/* ============================================================
   共通レイアウト（サブページ）
============================================================ */
.wp-inner {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}

.wp-cta-pad {
  padding-top: clamp(80px, 13vw, 140px);
  padding-bottom: clamp(80px, 13vw, 140px);
}

/* 暗背景 CTA: タイトルを大きく・太く上書き */
.wp-bg-dark .wp-cta-title {
  font-size: clamp(24px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
}

/* ============================================================
   ページヘッダー（サブページ共通）
============================================================ */
.wp-page-header {
  background: var(--wp-dark);
  padding: clamp(80px, 12vw, 130px) 0 clamp(56px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.wp-page-header::before {
  content: '';
  position: absolute;
  right: -0.02em;
  bottom: -0.2em;
  font-size: clamp(60px, 13vw, 160px);
  font-weight: 900;
  letter-spacing: -.05em;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* ページ別ウォーターマーク */
.wp-page-header--contact::before { content: 'CONTACT'; }
.wp-page-header--price::before { content: 'PRICE'; }
.wp-page-header--flow::before { content: 'FLOW'; }
.wp-page-header--request::before { content: 'REQUEST'; }

.wp-page-header__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wp-gold);
  display: block;
  margin-bottom: 16px;
}
.wp-page-header__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--wp-cream);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.wp-page-header__lead {
  margin-top: 20px;
  font-size: 15px;
  color: #888;
  line-height: 1.9;
}

/* ============================================================
   お問い合わせフォーム（contact.html）
============================================================ */
.wp-contact-section {
  padding: clamp(64px, 10vw, 112px) 0;
  background: var(--wp-bg);
}

.wp-form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--wp-dark);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.wp-form-required {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  background: var(--wp-dark);
  padding: 2px 7px;
  border-radius: 2px;
  line-height: 1.6;
}
.wp-form-optional {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #999;
  background: #e8e2d9;
  padding: 2px 7px;
  border-radius: 2px;
  line-height: 1.6;
}

.wp-form-control {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--wp-dark);
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: 3px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}
.wp-form-control:focus {
  outline: none;
  border-color: var(--wp-gold);
  box-shadow: 0 0 0 3px rgba(176,149,110,.12);
}
.wp-form-control::placeholder { color: #bbb; }
textarea.wp-form-control {
  resize: vertical;
  min-height: 180px;
}

.wp-form-select-wrap { position: relative; }
.wp-form-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--wp-gold);
  border-bottom: 2px solid var(--wp-gold);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
select.wp-form-control { cursor: pointer; padding-right: 40px; }
select.wp-form-control option[value=""] { color: #bbb; }

.wp-form-group { display: flex; flex-direction: column; gap: 0; }
.wp-form-divider {
  border: none;
  border-top: 1px solid var(--wp-border);
  margin: 8px 0;
}

.wp-form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}
.wp-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wp-dark);
  color: var(--wp-cream);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 18px 56px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  font-family: inherit;
  min-width: 240px;
}
.wp-btn-submit:hover { background: #333; transform: translateY(-1px); }
.wp-btn-submit:active { transform: translateY(0); }
.wp-btn-submit__arrow { font-size: 16px; transition: transform .2s; }
.wp-btn-submit:hover .wp-btn-submit__arrow { transform: translateX(4px); }

.wp-form-note {
  font-size: 12px;
  color: #999;
  text-align: center;
  line-height: 1.8;
}
.wp-form-note a { color: var(--wp-gold); text-decoration: none; }
.wp-form-note a:hover { text-decoration: underline; }

/* ---- コンタクト情報サイドバー -------------------------- */
.wp-contact-info {
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--wp-dark);
}
.wp-contact-info__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wp-gold);
  display: block;
  margin-bottom: 8px;
}
.wp-contact-info__value {
  font-size: 15px;
  color: var(--wp-cream);
  line-height: 1.8;
}
.wp-contact-info__note { font-size: 12px; color: #666; margin-top: 4px; }
.wp-contact-info__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 28px 0;
}

/* ---- プランカード --------------------------------------- */
.wp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--wp-border);
}
@media (max-width: 767px) {
  .wp-pricing-grid { grid-template-columns: 1fr; }
}
.wp-pricing-card {
  padding: 36px 28px;
  border-right: 1px solid var(--wp-border);
  background: #fff;
  position: relative;
}
.wp-pricing-card:last-child { border-right: none; }
@media (max-width: 767px) {
  .wp-pricing-card { border-right: none; border-bottom: 1px solid var(--wp-border); }
  .wp-pricing-card:last-child { border-bottom: none; }
}
.wp-pricing-card--featured {
  background: var(--wp-dark);
}
.wp-pricing-card--featured::before {
  content: 'POPULAR';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  background: var(--wp-gold); color: #fff;
  padding: 4px 14px; border-radius: 0 0 4px 4px;
}
.wp-pricing-plan {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--wp-gold); margin-bottom: 20px;
}
.wp-pricing-items {
  font-size: 48px; font-weight: 700;
  line-height: 1; letter-spacing: -.03em;
  color: var(--wp-dark); margin-bottom: 4px;
}
.wp-pricing-card--featured .wp-pricing-items { color: var(--wp-cream); }
.wp-pricing-items span { font-size: 18px; font-weight: 400; margin-left: 2px; }
.wp-pricing-price {
  font-size: 28px; font-weight: 700;
  letter-spacing: -.02em; color: var(--wp-dark);
  margin-bottom: 4px;
}
.wp-pricing-card--featured .wp-pricing-price { color: var(--wp-cream); }
.wp-pricing-per {
  font-size: 12px; color: var(--wp-gold);
  font-weight: 700; margin-bottom: 20px;
}
.wp-pricing-divider {
  border: none; border-top: 1px solid var(--wp-border);
  margin: 20px 0;
}
.wp-pricing-card--featured .wp-pricing-divider {
  border-color: rgba(255,255,255,.1);
}
.wp-pricing-note {
  font-size: 13px; color: #666; line-height: 1.8; margin: 0;
}
.wp-pricing-card--featured .wp-pricing-note { color: #888; }

/* ---- 追加撮影 ------------------------------------------- */
.wp-pricing-extra {
  border: 1px solid var(--wp-border);
  border-top: none;
  background: #fff;
  padding: 24px 28px;
}
.wp-pricing-extra-label {
  font-size: 13px; font-weight: 700;
  color: var(--wp-dark); letter-spacing: .03em;
}
.wp-pricing-extra-sub {
  font-size: 12px; color: #888; margin-top: 2px;
}
.wp-pricing-extra-price {
  font-size: 22px; font-weight: 700;
  color: var(--wp-dark); letter-spacing: -.02em;
  white-space: nowrap;
}
.wp-pricing-extra-price span {
  font-size: 12px; font-weight: 400; color: #888; margin-left: 4px;
}

/* ---- 1点に含まれるもの ---------------------------------- */
.wp-included {
  border: 1px solid var(--wp-border);
  border-top: none;
  background: var(--wp-bg);
  padding: 24px 28px;
}
.wp-included__title {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; color: var(--wp-dark);
  margin-bottom: 12px;
}
.wp-included__list { list-style: none; padding: 0; margin: 0; }
.wp-included__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #555; line-height: 1.7; padding: 4px 0;
}
.wp-included__list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--wp-dark); color: var(--wp-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; margin-top: 2px;
}

/* ---- オプションカード ----------------------------------- */
.wp-option-card {
  border: 1px solid var(--wp-border);
  background: #fff;
  padding: clamp(24px, 4vw, 40px);
}
.wp-option-card + .wp-option-card { margin-top: -1px; }
.wp-option-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700; letter-spacing: .02em;
  color: var(--wp-dark); margin: 0;
}
.wp-option-price {
  font-size: 22px; font-weight: 700;
  color: var(--wp-dark); white-space: nowrap;
}
.wp-option-price span {
  font-size: 12px; font-weight: 400; color: #888; margin-left: 4px;
}
.wp-option-desc {
  font-size: 13px; color: #666; line-height: 1.9; margin: 0;
}

/* ---- レタッチ料金表 ------------------------------------- */
.wp-retouch-table {
  width: 100%; font-size: 13px;
  border-collapse: collapse; margin-top: 20px;
}
.wp-retouch-table th {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--wp-gold);
  padding: 10px 16px; border-bottom: 1px solid var(--wp-border);
  text-align: left; background: var(--wp-bg);
}
.wp-retouch-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--wp-border);
  color: #444; vertical-align: middle;
}
.wp-retouch-table tr:last-child td { border-bottom: none; }
.wp-retouch-table td:first-child { font-weight: 700; color: var(--wp-dark); }
.wp-retouch-table td:nth-child(2) { font-weight: 700; white-space: nowrap; }
.wp-retouch-table td:nth-child(3) { color: #888; font-size: 12px; }
.wp-retouch-note {
  font-size: 12px; color: #999; margin: 12px 0 0;
}

/* ---- ご利用にあたって ----------------------------------- */
.wp-notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) { .wp-notes-grid { grid-template-columns: 1fr; } }
.wp-note-card {
  border: 1px solid var(--wp-border);
  background: #fff;
  padding: 24px 26px;
}
.wp-note-card__title {
  font-size: 14px; font-weight: 700;
  letter-spacing: .03em; color: var(--wp-dark);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--wp-border);
}
.wp-note-card__list { list-style: none; padding: 0; margin: 0; }
.wp-note-card__list li {
  font-size: 13px; color: #555; line-height: 1.8;
  padding: 5px 0 5px 14px;
  position: relative;
}
.wp-note-card__list li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--wp-gold);
}

/* ---- ステップナビ --------------------------------------- */
.wp-step-nav {
  background: #fff;
  border-bottom: 1px solid var(--wp-border);
  position: sticky;
  top: 0;
  z-index: 1030;
  overflow-x: hidden;
}
.wp-step-nav__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wp-step-nav__inner::-webkit-scrollbar { display: none; }
.wp-step-nav__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  text-decoration: none;
  color: #888;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  border-right: 1px solid var(--wp-border);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.wp-step-nav__item:first-child {
  border-left: 1px solid var(--wp-border);
}
.wp-step-nav__item:hover,
.wp-step-nav__item.is-active { color: var(--wp-dark); background: var(--wp-bg); }
.wp-step-nav__num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #e8e2d9;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #888; font-weight: 700;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.wp-step-nav__item:hover .wp-step-nav__num,
.wp-step-nav__item.is-active .wp-step-nav__num { background: var(--wp-gold); color: #fff; }

/* ---- ステップセクション --------------------------------- */
.wp-step-section {
  padding: clamp(64px, 10vw, 112px) 0;
  border-bottom: 1px solid var(--wp-border);
}
.wp-step-section:last-of-type { border-bottom: none; }
.wp-step-section:nth-child(even) { background: #fff; }

.wp-step-header__num {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--wp-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; letter-spacing: .05em;
  color: var(--wp-gold);
}
.wp-step-header__step-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--wp-gold);
  display: block; margin-bottom: 6px;
}
.wp-step-header__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700; color: var(--wp-dark);
  line-height: 1.3; margin: 0;
}
.wp-step-header__time {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px; font-size: 12px; color: #888;
}
.wp-step-header__time::before { content: '⏱'; font-size: 13px; }
.wp-step-lead { font-size: 16px; line-height: 1.9; color: #333; }

/* ---- インフォボックス ----------------------------------- */
.wp-info-box {
  background: var(--wp-bg);
  border-left: 3px solid var(--wp-gold);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
}
.wp-info-box__title {
  font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--wp-gold); margin-bottom: 12px;
}
.wp-info-box__text { font-size: 14px; color: #555; line-height: 1.9; }
.wp-info-box--caution { border-left-color: #c0a060; background: #fdf8f0; }
.wp-info-box--caution .wp-info-box__title { color: #a08040; }

/* ---- チェックリスト ------------------------------------- */
.wp-checklist { list-style: none; padding: 0; margin: 0; }
.wp-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: #444; line-height: 1.7; padding: 6px 0;
}
.wp-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--wp-dark); color: var(--wp-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; margin-top: 2px;
}

/* ---- 詳細カード ----------------------------------------- */
.wp-detail-card {
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: 4px;
  padding: 20px 22px;
  height: 100%;
}
.wp-detail-card__label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--wp-gold); margin-bottom: 10px; display: block;
}
.wp-detail-card__body { font-size: 13px; color: #444; line-height: 1.9; }

/* ---- FAQ（Bootstrap Accordion上書き） ------------------- */
.wp-faq .accordion-item {
  border: 1px solid var(--wp-border);
  border-radius: 4px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.wp-faq .accordion-item p {
  margin-bottom: 0px;
}

.wp-faq .accordion-button {
  background: #fff; color: var(--wp-dark);
  font-size: 14px; font-weight: 700;
  padding: 18px 22px; gap: 14px; box-shadow: none;
}
.wp-faq .accordion-button:not(.collapsed) { background: var(--wp-bg); color: var(--wp-dark); box-shadow: none; }
.wp-faq .accordion-button::after { display: none; }
.wp-faq .accordion-button:focus { box-shadow: none; }
.wp-faq-q-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--wp-gold); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}
.wp-faq-toggle {
  margin-left: auto;
  font-size: 20px; color: var(--wp-gold);
  font-weight: 300; line-height: 1;
  transition: transform .2s;
}
.accordion-button:not(.collapsed) .wp-faq-toggle { transform: rotate(45deg); }
.wp-faq .accordion-body {
  font-size: 13px; color: #555; line-height: 1.9;
  padding: 8px 22px 8px 60px; background: #fff;
}

/* ---- フローリスト --------------------------------------- */
.wp-flow-list { list-style: none; padding: 0; margin: 0; }
.wp-flow-item {
  display: flex; gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(242,237,232,.12);
}
.wp-flow-item:last-child { border-bottom: none; }
.wp-flow-step {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border: 1px solid var(--wp-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: .05em;
  color: var(--wp-gold);
}
.wp-flow-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--wp-cream); }
.wp-flow-text  { font-size: 14px; color: #aaa; line-height: 1.8; margin: 0; }
.wp-flow-tag {
  display: inline-block; margin-top: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  background: var(--wp-gold-dim); color: var(--wp-gold);
  border: 1px solid rgba(176,149,110,.3);
  padding: 4px 12px; border-radius: 2px;
}

/* ============================================================
   フォーム固有スタイル
============================================================ */
.wp-bg-cream { background: var(--wp-cream); }

.wp-form-wrap {

  margin: 0 auto 1rem;
}

.wp-form-section {
  padding: clamp(28px,4vw,44px);
  background: var(--shiro);
  border: 1px solid var(--wp-gray-light);
  margin-bottom: 2px;
}

.wp-form-section-title {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wp-accent);
  display: block;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wp-gray-light);
}

.wp-form-group {
  margin-bottom: 24px;
}
.wp-form-group:last-child {
  margin-bottom: 0;
}

.wp-form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--kuro);
}

.wp-form-label .required {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--shiro);
  background: var(--ipink);
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.wp-form-label .optional {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--mgray);
  border: 1px solid var(--mgray);
  padding: 1px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.wp-form-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--mgray);
  letter-spacing: 0.03em;
  margin-top: 6px;
  margin-bottom: 0;
}

/* input・select・textarea */
.wp-input,
.wp-select,
.wp-textarea {
  width: 100%;
  border: 1px solid var(--wp-gray-light);
  border-radius: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 300;
  font-family: inherit;
  color: var(--kuro);
  background: var(--shiro);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.wp-input:focus,
.wp-select:focus,
.wp-textarea:focus {
  outline: none;
  border-color: var(--wp-accent);
}

.wp-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.wp-textarea {
  resize: vertical;
  min-height: 100px;
}

/* エラーメッセージ（非表示デフォルト） */
.wp-error-msg {
  font-size: 12px;
  color: var(--ipink);
  margin-top: 4px;
  margin-bottom: 0;
  display: none;
}

/* プランラジオボタン */
.wp-plan-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--wp-gray-light);
}

.wp-plan-option {
  position: relative;
}

.wp-plan-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wp-plan-label {
  display: block;
  padding: 16px 12px;
  background: var(--shiro);
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  border: 2px solid transparent;
}
.wp-plan-label:hover {
  background: var(--wp-cream);
}
.wp-plan-option input[type="radio"]:checked + .wp-plan-label {
  background: var(--kuro);
  color: var(--shiro);
  border-color: var(--kuro);
}

.wp-plan-name {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wp-accent);
  display: block;
  margin-bottom: 4px;
}

.wp-plan-items {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.wp-plan-items span {
  font-family: inherit;
  font-size: 13px;
}

.wp-plan-price {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  display: block;
}

/* 合計金額ボックス */
.wp-total-box {
  background: var(--kuro);
  color: var(--shiro);
  padding: clamp(24px,4vw,40px);
  position: sticky;
  top: 80px;
}

.wp-total-label {
  font-family: 'EB Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--wp-accent);
  display: block;
  margin-bottom: 16px;
}

.wp-total-rows {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 20px;
}

.wp-total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--shiro20);
  color: var(--shiro70);
}
.wp-total-row:last-child { border-bottom: none; }

.wp-grand-total {
  border-top: 1px solid var(--shiro20);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.wp-grand-total-label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.wp-grand-total-price {
  font-family: 'EB Garamond', serif;
  font-size: 32px;
  font-weight: 400;
}
.wp-grand-total-price span {
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  margin-left: 4px;
  color: var(--shiro70);
}

.wp-total-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--shiro50);
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.8;
}

/* 送信ボタン */
.wp-btn-primary2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kuro);
  color: var(--shiro);
  border: 2px solid var(--kuro);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  font-family: inherit;
}
.wp-btn-primary2:hover {
  background: var(--shiro);
  color: var(--kuro);
}

/* 数値入力＋単位 */
.wp-input-unit {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}
.wp-input-unit .wp-input {
  width: 100px;
  text-align: right;
}
.wp-unit {
  font-size: 13px;
  font-weight: 300;
  color: var(--kuro);
  padding-left: 8px;
  white-space: nowrap;
}

/* アップロードプレースホルダー */
.wp-upload-placeholder {
  border: 2px dashed var(--wp-gray-light);
  padding: 32px;
  text-align: center;
  background: var(--shiro);
}


@media (max-width: 991px) {

  .wp-total-box {
    position: static;
  }

}

@media (min-width: 992px){
  .col-summary{
    height: 100vh;
  }
}
#summary-total {
  font-size: 1.5rem;
}

#summary-tax {
  font-size: 1.5rem;
}

#summary-total2 {
  font-size: 2rem;
}

.wp-flow-box {
  border: 1px solid var(--border-gray-color);
  border-radius: 4px;
  padding: 0.75rem 1rem;
}
.wp-flow-box__label {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  color: var(--shiro);
}
.wp-flow-box__text {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--mgray);
}

.wp-flow-box2 {
  border: 1px solid var(--border-gray-color);
  border-radius: 4px;
  padding: 0.75rem 1rem;
}
.wp-flow-box__label2 {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  color: var(--kuro);
}
.wp-flow-box__text2 {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--gray);
}