* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", sans-serif;
  line-height: 1.8;
  color: #222;
  background: #f7f5f2;
  padding-bottom: 90px; /* 追従CTAぶんの余白 */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 56px 0;
}

.section-title {
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a0978a;
  margin-bottom: 8px;
}

.section-lead {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 32px;
}

.section-mini-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.section-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 16px;
}

.section-note {
  font-size: 11px;
  color: #888;
  margin-top: 8px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-accent {
  background: #f1ece6;
}

.section-light {
  background: #fff;
}

.btn-area {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-left {
  justify-content: flex-start;
}

.btn-primary,
.btn-instagram {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary:hover,
.btn-instagram:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.16);
  opacity: 0.95;
}

.btn-primary {
  background: #e07a34;
  border-color: #e07a34;
}

.btn-instagram {
  background: #111;
  border-color: #111;
}

.btn-small {
  padding: 8px 16px;
  font-size: 13px;
}

/* header */
header {
  background: #f7f5f2;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  letter-spacing: 0.16em;
}

.header-logo span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}

.header-tel {
  font-size: 13px;
  text-align: right;
  line-height: 1.4;
}

.header-tel strong {
  font-size: 15px;
}

.header-tel-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #ffffff;
  text-decoration: none;
}

.header-tel-btn span {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.header-tel-btn strong {
  font-size: 15px;
}

.header-tel-btn:hover {
  background: #111;
  color: #fff;
  transition: background 0.15s ease, color 0.15s ease;
}

/* top visual */
.top-visual img {
  width: 960px;
  display: block;
  margin: auto;
}

/* FV */
.fv {
  background: #f1ece6;
  padding: 40px 0 48px;
}

.fv-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .fv-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

.fv-copy-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #c8bfb0;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  color: #8b816f;
  background: rgba(255,255,255,0.6);
}

.fv-title-main {
  font-size: 26px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.fv-title-main span {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-left: 4px;
}

.fv-title-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.fv-point-list {
  margin-top: 12px;
  font-size: 13px;
  color: #555;
}

.fv-point-list li::before {
  content: "・";
  margin-right: 2px;
}

.fv-point-list .em {
  font-weight: 700;
}

.fv-image {
  border-radius: 32px;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}

.fv-discount-badge {
  margin-bottom: 10px;
}

.fv-discount-badge img {
  width: 160px;
  display: block;
}

@media (max-width: 480px) {
  .fv-discount-badge img {
    width: 140px;
  }
}

/* badges */
.price-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 70px;
  pointer-events: none;
}

@media (max-width: 480px) {
  .price-badge {
    width: 60px;
  }
}

/* campaign bar */
.campaign-bar {
  background: #c89f9e;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.12em;
}

/* price */
.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

@media (min-width: 720px) {
  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.price-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #a28d73;
  margin-bottom: 8px;
}

.price-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.price-original {
  font-size: 13px;
  text-decoration: line-through;
  color: #999;
}

.price-campaign {
  font-size: 18px;
  font-weight: 700;
  color: #c27a46;
}

.price-off {
  font-size: 12px;
  color: #c27a46;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.price-note {
  font-size: 11px;
  color: #999;
  margin-top: 6px;
}

/* columns */
.cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cols {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

/* labels & lists */
.label {
  display: inline-flex;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #c8bfb0;
  letter-spacing: 0.16em;
  color: #8b816f;
  margin-bottom: 10px;
}

.check-list {
  font-size: 13px;
  color: #555;
}

.check-list li {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.check-list span {
  margin-top: 3px;
  font-size: 11px;
}

/* flow */
.flow-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.flow-item {
  background: #fff;
  border-radius: 20px;
  padding: 12px 14px;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.flow-step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #a28d73;
  margin-bottom: 4px;
}

.flow-title {
  font-weight: 600;
  margin-bottom: 4px;
}

/* risk */
.risk-box {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  font-size: 12px;
  color: #555;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.risk-list {
  margin-top: 8px;
  padding-left: 16px;
}

/* access */
.access-box {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.access-text {
  margin-top: 8px;
  font-size: 12px;
}

/* footer */
footer {
  background: #111;
  color: #ccc;
  padding: 24px 0 36px;
  font-size: 11px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

/* responsive tweaks */
@media (max-width: 480px) {
  .fv-title-main {
    font-size: 22px;
  }
  .section {
    padding: 40px 0;
  }
  .header-logo {
    font-size: 16px;
  }
  .header-tel strong {
    font-size: 14px;
  }
}

/* floating CTA */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(247,245,242,0.96);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}

.floating-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.floating-cta .btn-primary,
.floating-cta .btn-instagram {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}
