@charset "UTF-8";

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

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

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-text: #595757;
  --color-muted: #888;
  --color-empty-bg: #f4f0e8;
  --color-empty-stripe: #e9e2d2;
  --color-empty-border: #c9bfa8;
  --color-label-bg: rgba(30, 30, 30, 0.78);
  --color-label-text: #fff;
  --color-label-common: rgba(74, 110, 156, 0.85);
  --font-base: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont,
               "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Yu Gothic", "Meiryo", sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  word-break: break-all;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Layout — follows original LP structure
   SP (< 768px): full width, em-based responsive (1em = 1.3333vw)
   PC (≥ 768px): fixed 594px centered, 1em = 7.92px (= 750px design × 0.792)
   ========================================================================== */
.pcbg {
  display: none;
}

.lp {
  position: relative;
  z-index: 2;
  font-size: 1.3333333333vw;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .pcbg {
    display: block;
    pointer-events: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bg/original/bg.jpg) no-repeat center center;
    background-size: cover;
  }

  .lp {
    width: 594px;
    margin: 0 auto;
    font-size: 7.92px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  }
}

/* ==========================================================================
   Block (section wrapper)
   ========================================================================== */
.block {
  position: relative;
  width: 100%;
}

.block__image {
  width: 100%;
  height: auto;
  display: block;
}

.block__label {
  display: none;
}

/* ==========================================================================
   CTA button overlay (Block 04 / 08 / 11 / 12)
   Position uses percentage of block height so it scales with image.
   ========================================================================== */
.block--has-cta {
  position: relative;
}

.cta-btn {
  position: absolute;
  left: 50%;
  width: 99.7%; /* 748/750 of image width */
  transform: translateX(-50%);
  display: block;
  transition: opacity 200ms ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-btn:hover {
  opacity: 0.75;
}

.cta-btn:active {
  opacity: 0.6;
}

/* Per-block vertical position (detected from original image diff) */
#block-01 .cta-btn {
  top: 82.92%; /* y=1073 / 1294 */
}

#block-04 .cta-btn,
#block-08 .cta-btn,
#block-11 .cta-btn {
  top: 80.3%; /* y=839 / 1045 */
}

#block-12 .cta-btn {
  top: 86.3%; /* y=1250 / 1449 */
}

/* ==========================================================================
   Block 13 : FAQ accordion (image-based, 3-layer background)
   ========================================================================== */
.faq {
  position: relative;
  background-color: #fbeef1;
  background-image:
    url(../img/faq/original/faq_bg_top.png),
    url(../img/faq/original/faq_bg_bottom.png),
    url(../img/faq/original/faq_bg_middle.png);
  background-position:
    top center,
    bottom center,
    center top;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat-y;
  background-size:
    100% auto,
    100% auto,
    100% auto;
  padding: 19em 0 10em;
}

.faq__inner {
  width: 69em; /* matches Q/A image width (690px) */
  margin: 0 auto;
}

.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq__item {
  margin-bottom: 1.8em;
}

.faq__item:last-child {
  margin-bottom: 0;
}

/* Q button = image only */
.faq__q {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* removes 300ms tap delay on touch devices */
}

/* Chevron arrow overlay (rotates on open) */
.faq__q::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 4.5%;
  width: 1em;
  height: 1em;
  margin-top: -0.65em; /* visually centered: shifts up to offset chevron tip */
  border-right: 0.22em solid #de0c79;
  border-bottom: 0.22em solid #de0c79;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.faq__item.is-open .faq__q::after {
  transform: rotate(225deg);
  margin-top: -0.35em; /* keep visual center after rotation */
}

.faq__q:active {
  opacity: 0.7; /* instant tactile feedback on press */
}

.faq__q:focus-visible {
  outline: 2px solid #ff5b86;
  outline-offset: 4px;
}

.faq__q img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none; /* clicks always hit the button, never the img */
}

/* A panel = image only, slides open via max-height */
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease-out;
  will-change: max-height;
}

.faq__a img {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Form section (skeleton; full styles will be supplied by client)
   ========================================================================== */
#lp-form-position {
  /* Anchor target — scroll offset adjusted so form header isn't covered */
  scroll-margin-top: 2em;
}

#lp-form {
  background-color: #fff;
  padding: 4em 2em;
  font-size: 1.4em;
  line-height: 1.6;
}

.landing_form_label_ec {
  font-size: 1.6em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1em;
  padding-bottom: 0.6em;
  border-bottom: 2px solid #333;
}

.login_message_box_ec {
  background-color: #f6f6f6;
  padding: 1em 1.2em;
  margin-bottom: 1.6em;
  border-radius: 4px;
}

.login_message_wrapper_ec label {
  display: flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
}

.purchase_message_ec {
  background-color: #fff7f0;
  border: 1px solid #f0c8a8;
  padding: 1em 1.2em;
  margin-bottom: 1.6em;
  border-radius: 4px;
  text-align: center;
}

.landing_form_ec {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1em;
  margin-bottom: 1.6em;
}

.landing_form_ec th,
.landing_form_ec td {
  display: block;
  padding: 0.5em 0;
  text-align: left;
}

.form_box_label_ec {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 0.4em;
}

.form_box_label_ec strong {
  font-weight: 700;
}

.form_required_ec {
  display: inline-block;
  background-color: #d33;
  color: #fff;
  font-size: 0.85em;
  font-weight: 600;
  padding: 0.15em 0.6em;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.form_group_ec input[type="text"],
.form_group_ec input[type="email"],
.form_group_ec input[type="password"],
.form_group_ec input:not([type]),
.form_group_ec select {
  display: inline-block;
  font-family: inherit;
  font-size: 1em;
  padding: 0.6em 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}

.form_group_ec .col-12 p {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 0.6em;
}

.form_group_ec input.input_box_zip1_ec,
.form_group_ec input.input_box_zip2_ec {
  width: 6em;
}

.caution_ec {
  font-size: 0.9em;
  margin-top: 0.4em;
}

.caution_ec a {
  color: #36c;
  text-decoration: underline;
}

.submit_ec {
  margin-top: 2em;
  text-align: center;
}

.submit_ec input[type="submit"],
.lp_form_submit_btn {
  display: inline-block;
  background-color: #de0c79;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  padding: 1em 3em;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: opacity 200ms ease;
  -webkit-tap-highlight-color: transparent;
}

.lp_form_submit_btn:hover,
.submit_ec input[type="submit"]:hover {
  opacity: 0.85;
}

/* ==========================================================================
