/* ============================================================
   common-pages.css — 特商法・FAQ・商品一覧・ニュース・お問い合わせ・プライバシー等
   ============================================================ */

/* ===== 商品一覧ページ (PRODUCTS) ===== */
.products { padding: var(--section-gap) 0; background: var(--color-off-white); }
.products__tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.products__tab { padding: 9px 22px; border-radius: 100px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--color-text-mid); border: 1.5px solid var(--color-beige); background: white; transition: all var(--transition); }
.products__tab:hover, .products__tab.is-active { background: var(--color-sage); color: white; border-color: var(--color-sage); }
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-beige); transition: all var(--transition); }
.product-card:hover { box-shadow: 0 12px 40px rgba(44,20,28,0.10); transform: translateY(-4px); }
.product-card__img-wrap { position: relative; display: block; overflow: hidden; }
.product-card__img { aspect-ratio: 1/1; width: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__img--1, .product-card__img--2, .product-card__img--3, .product-card__img--4 { background-color: #FAFAF8; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--color-beige); }
.product-card__img--1 { background-image: url('../images/product-01-equol.jpg'); }
.product-card__img--2 { background-image: url('../images/product-02-genistein.jpg'); }
.product-card__img--3 { background-image: url('../images/product-03-glutathione.jpg'); }
.product-card__img--4 { background-image: url('../images/product-04-serum.jpg'); }
.product-card__img-ph { display: none; }
.product-card__badge-sale { position: absolute; top: 12px; right: 12px; padding: 4px 10px; background: #E05050; color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; border-radius: 4px; }
.product-card__badge-new { position: absolute; top: 12px; right: 12px; padding: 4px 10px; background: var(--color-sage); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; border-radius: 4px; }
.product-card__rank { position: absolute; top: 12px; left: 12px; padding: 4px 10px; background: var(--color-gold); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.05em; border-radius: 4px; }
.product-card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.product-card__stars { font-size: 12px; color: #F4A820; letter-spacing: 1px; }
.product-card__review-count { font-size: 11px; color: var(--color-text-light); }
.product-card__body { padding: 20px 24px 24px; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.product-card__brand { font-family: var(--font-en); font-size: 10px; letter-spacing: 0.15em; color: var(--color-text-light); margin-bottom: 6px; text-transform: uppercase; }
.product-card__name { font-family: var(--font-mincho); font-size: 15px; font-weight: 500; line-height: 1.5; letter-spacing: 0.04em; margin-bottom: 8px; color: var(--color-text); }
.product-card__desc { font-size: 12px; color: var(--color-text-mid); line-height: 1.7; margin-bottom: 14px; }
.product-card__price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.product-card__price { font-family: var(--font-en); font-size: 20px; font-weight: 400; letter-spacing: 0.04em; color: var(--color-text); }
.product-card__price-original { font-size: 12px; color: var(--color-text-light); text-decoration: line-through; margin-right: 4px; }
.product-card__tax { font-size: 11px; color: var(--color-text-light); }
.product-card__subscription { font-size: 11px; color: var(--color-sage); font-weight: 500; margin-bottom: 14px; padding: 6px 10px; background: var(--color-sage-pale); border-radius: var(--radius-sm); letter-spacing: 0.03em; }
.product-card__first { margin-bottom: 14px; }
.product-card__first-badge { display: inline-block; padding: 2px 8px; background: var(--color-gold); color: #fff; border-radius: 3px; font-size: 10px; font-weight: 700; letter-spacing: .1em; margin-bottom: 8px; }
.product-card__first-orig { font-size: 12px; color: var(--color-text-light); margin-bottom: 4px; line-height: 1.4; }
.product-card__first-orig s { text-decoration: line-through; text-decoration-color: var(--color-text-mid); color: var(--color-text-mid); }
.product-card__first-row { display: flex; align-items: baseline; gap: 3px; }
.product-card__first-price { font-family: var(--font-mincho); font-size: 26px; font-weight: 600; letter-spacing: .02em; color: var(--color-text); line-height: 1.1; }
.product-card__first-price .yen { font-size: 16px; font-weight: 500; margin-right: 1px; }
.products__more { text-align: center; margin-top: 48px; }
.products__filter-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; padding: 12px 20px; background: var(--color-white); border-radius: var(--radius-md); border: 1px solid var(--color-beige); }
.products__filter-label { font-family: var(--font-mincho); font-size: 15px; font-weight: 500; color: var(--color-text); }
.products__filter-clear { font-size: 12px; color: var(--color-text-light); border: 1px solid var(--color-beige-mid); border-radius: 100px; padding: 3px 10px; margin-left: auto; transition: all var(--transition); }
.products__filter-clear:hover { color: var(--color-text); border-color: var(--color-text-mid); opacity: 1; }
.product-card__actions { display: flex; flex-direction: column; gap: 8px; }
.product-card__detail-btn { width: 100%; font-size: 13px; padding: 10px 20px; border-color: var(--color-beige-mid); }
.product-card__thumb { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1; }

/* ===== 特定商取引法ページ ===== */
.tokusho-table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.9; }
.tokusho-table th,
.tokusho-table td { padding: 18px 20px; border-bottom: 1px solid var(--color-beige); vertical-align: top; text-align: left; }
.tokusho-table th { width: 200px; min-width: 160px; font-weight: 600; color: var(--color-text); background: var(--color-cream); white-space: nowrap; font-size: 13px; }
.tokusho-table td { color: var(--color-text-mid); background: var(--color-white); }
.tokusho-table td a { color: var(--color-sage); text-decoration: underline; text-underline-offset: 3px; }
.tokusho-table td p { margin-bottom: .6em; }
.tokusho-table td p:last-child { margin-bottom: 0; }
.tokusho-notes { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 4px; }
.tokusho-notes li { padding-left: 1.2em; position: relative; font-size: 13px; color: var(--color-text-mid); }
.tokusho-notes li::before { content: '※'; position: absolute; left: 0; color: var(--color-text-light); }
.tokusho-info-box { background: var(--color-cream); border: 1px solid var(--color-beige); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 13px; }
.tokusho-info-box p { margin-bottom: .4em; color: var(--color-text-mid); }
.tokusho-info-box p:last-child { margin-bottom: 0; }
.tokusho-sub-table { width: 100%; border-collapse: collapse; font-size: 13px; border: 1px solid var(--color-beige); }
.tokusho-sub-table th { background: var(--color-off-white); padding: 10px 14px; font-weight: 600; color: var(--color-text); border: 1px solid var(--color-beige); text-align: left; width: 200px; }
.tokusho-sub-table td { padding: 10px 14px; color: var(--color-text-mid); border: 1px solid var(--color-beige); }
.tokusho-sub-table small { font-size: 11px; color: var(--color-text-light); }

/* ===== ニュース一覧フルページ ===== */
.news__list--full .news__item { grid-template-columns: 110px 90px 1fr; }

/* ===== FAQ ===== */
.faq-nav { display: flex; flex-wrap: wrap; gap: 10px; padding: 40px 0 48px; }
.faq-nav__item { display: inline-block; padding: 8px 20px; background: var(--color-white); border: 1px solid var(--color-beige); border-radius: 20px; font-size: 13px; color: var(--color-text-mid); text-decoration: none; transition: all var(--transition); }
.faq-nav__item:hover { background: var(--color-sage); border-color: var(--color-sage); color: #fff; opacity: 1; }
.faq-group { margin-bottom: 64px; scroll-margin-top: 80px; }
.faq-group__title { font-family: var(--font-mincho); font-size: clamp(18px, 2.2vw, 22px); font-weight: 500; letter-spacing: .08em; color: var(--color-text); padding-bottom: 16px; border-bottom: 2px solid var(--color-sage-light); margin-bottom: 8px; }
.faq-contact { padding: 80px 0; background: linear-gradient(135deg, #6A2840 0%, #4A1828 100%); }
.faq-contact__head { text-align: center; margin-bottom: 56px; }
.faq-contact__label { font-family: var(--font-en); font-size: 13px; letter-spacing: .15em; color: var(--color-gold); text-transform: uppercase; margin-bottom: 16px; }
.faq-contact__title { font-family: var(--font-mincho); font-size: clamp(22px, 3vw, 32px); font-weight: 500; letter-spacing: .08em; color: #fff; line-height: 1.6; margin-bottom: 20px; }
.faq-contact__desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.9; }
.faq-contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.faq-contact-card { display: flex; flex-direction: column; align-items: center; padding: 40px 24px; border-radius: 16px; text-decoration: none; transition: all var(--transition); border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); }
.faq-contact-card:hover { transform: translateY(-4px); opacity: 1; background: rgba(255,255,255,.12); }
.faq-contact-card__icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.faq-contact-card--tel .faq-contact-card__icon { background: rgba(138,158,138,.25); color: var(--color-sage-light); }
.faq-contact-card--form .faq-contact-card__icon { background: rgba(196,163,90,.2); color: var(--color-gold-light); }
.faq-contact-card--line .faq-contact-card__icon { background: rgba(6,199,85,.18); color: #4cd964; }
.faq-contact-card__method { font-size: 12px; letter-spacing: .1em; color: rgba(255,255,255,.55); margin-bottom: 10px; }
.faq-contact-card__value { font-family: var(--font-mincho); font-size: clamp(16px, 2vw, 20px); font-weight: 500; letter-spacing: .04em; color: #fff; margin-bottom: 10px; text-align: center; line-height: 1.3; }
.faq-contact-card__note { font-size: 12px; color: rgba(255,255,255,.5); text-align: center; line-height: 1.6; }

/* ===== お問い合わせ ===== */
.contact-faq-suggest { padding: 64px 0; background: var(--color-cream); }
.contact-faq-suggest__inner { display: flex; gap: 32px; align-items: flex-start; background: var(--color-white); border: 1px solid var(--color-beige); border-radius: 16px; padding: 40px 48px; }
.contact-faq-suggest__icon { width: 64px; height: 64px; background: var(--color-sage-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-sage); flex-shrink: 0; }
.contact-faq-suggest__body { flex: 1; }
.contact-faq-suggest__title { font-family: var(--font-mincho); font-size: clamp(17px, 2vw, 20px); font-weight: 500; letter-spacing: .06em; color: var(--color-text); margin-bottom: 12px; }
.contact-faq-suggest__desc { font-size: 14px; color: var(--color-text-mid); line-height: 1.9; margin-bottom: 24px; }
.contact-faq-suggest__btn { display: inline-flex; align-items: center; gap: 8px; }
.contact-form-section { padding: 80px 0; background: var(--color-white); }
.contact-alert { display: flex; align-items: flex-start; gap: 12px; padding: 18px 24px; border-radius: 10px; font-size: 14px; line-height: 1.7; margin-bottom: 36px; }
.contact-alert svg { flex-shrink: 0; margin-top: 2px; }
.contact-alert--success { background: #eef8f0; border: 1px solid #a8d9b0; color: #2e6e3e; }
.contact-alert--error   { background: #fef2f2; border: 1px solid #f5b8b8; color: #7e2020; }
.contact-form { display: flex; flex-direction: column; gap: 28px; margin-top: 48px; }
.contact-form__row { display: flex; flex-direction: column; gap: 8px; }
.contact-form__label { font-size: 14px; font-weight: 600; color: var(--color-text); letter-spacing: .04em; display: flex; align-items: center; gap: 8px; }
.contact-form__req { font-size: 11px; font-weight: 700; background: var(--color-sage); color: #fff; padding: 2px 7px; border-radius: 3px; letter-spacing: .05em; }
.contact-form__opt { font-size: 11px; font-weight: 600; background: var(--color-beige); color: var(--color-text-mid); padding: 2px 7px; border-radius: 3px; letter-spacing: .05em; }
.contact-form__input,
.contact-form__textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--color-beige); border-radius: 8px; font-family: var(--font-mincho); font-size: 15px; color: var(--color-text); background: var(--color-white); transition: border-color var(--transition); outline: none; }
.contact-form__input:focus,
.contact-form__textarea:focus { border-color: var(--color-sage); box-shadow: 0 0 0 3px rgba(138,158,138,.15); }
.contact-form__textarea { resize: vertical; min-height: 160px; line-height: 1.7; }
.contact-form__privacy { margin-top: -4px; }
.contact-form__check-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--color-text-mid); line-height: 1.6; }
.contact-form__check-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--color-sage); flex-shrink: 0; cursor: pointer; }
.contact-form__check-label a { color: var(--color-sage); text-decoration: underline; }
.contact-form__submit-wrap { text-align: center; }
.contact-form__submit { min-width: 220px; padding: 16px 48px; font-size: 16px; letter-spacing: .1em; border-radius: 32px; cursor: pointer; border: none; }
.contact-steps { display: flex; align-items: center; justify-content: center; max-width: 320px; margin: 0 auto 48px; }
.contact-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.contact-step__num { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; font-family: var(--font-en); transition: all var(--transition); }
.contact-step__label { font-size: 11px; letter-spacing: .06em; color: var(--color-text-light); }
.contact-step--active .contact-step__num { background: var(--color-sage); color: #fff; }
.contact-step--active .contact-step__label { color: var(--color-sage); font-weight: 700; }
.contact-step--done .contact-step__num { background: var(--color-sage-light); color: #fff; }
.contact-step--done .contact-step__label { color: var(--color-sage); }
.contact-step--pending .contact-step__num { background: var(--color-beige); color: var(--color-text-light); }
.contact-step-line { flex: 1; height: 1px; background: var(--color-beige); margin: 0 10px 22px; }
.contact-faq-bar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: var(--color-sage-pale); border-radius: 8px; font-size: 13px; color: var(--color-text-mid); margin-bottom: 32px; }
.contact-faq-bar svg { color: var(--color-sage); flex-shrink: 0; }
.contact-faq-bar a { color: var(--color-sage); text-decoration: underline; }
.confirm-lead { font-size: 14px; color: var(--color-text-mid); line-height: 1.8; margin-bottom: 32px; text-align: center; }
.confirm-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 8px; }
.confirm-table th, .confirm-table td { padding: 16px 20px; border-bottom: 1px solid var(--color-beige); text-align: left; vertical-align: top; }
.confirm-table th { width: 160px; font-weight: 600; color: var(--color-text); background: var(--color-cream); font-size: 13px; white-space: nowrap; }
.confirm-table td { color: var(--color-text-mid); line-height: 1.8; }
.confirm-actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.confirm-actions__back { min-width: 160px; justify-content: center; }
.confirm-actions__submit { min-width: 200px; }
.complete-message { text-align: center; padding: 64px 0 80px; }
.complete-message__icon { width: 80px; height: 80px; background: var(--color-sage-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; color: var(--color-sage); }
.complete-message__title { font-family: var(--font-mincho); font-size: clamp(22px, 3vw, 28px); font-weight: 500; letter-spacing: .1em; color: var(--color-text); margin-bottom: 24px; }
.complete-message__desc { font-size: 14px; color: var(--color-text-mid); line-height: 2.1; margin-bottom: 20px; }
.complete-message__note { font-size: 12px; color: var(--color-text-light); line-height: 2; margin-bottom: 40px; }
.complete-message__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-cf7-wrap { margin-top: 48px; }
.contact-cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 28px; }
.contact-cf7-wrap .wpcf7-form .contact-form__row { display: flex; flex-direction: column; gap: 8px; }
.contact-cf7-wrap .wpcf7-text,
.contact-cf7-wrap .wpcf7-email,
.contact-cf7-wrap .wpcf7-tel,
.contact-cf7-wrap .wpcf7-textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--color-beige); border-radius: 8px; font-family: var(--font-mincho); font-size: 15px; color: var(--color-text); background: var(--color-white); transition: border-color var(--transition); outline: none; }
.contact-cf7-wrap .wpcf7-text:focus,
.contact-cf7-wrap .wpcf7-email:focus,
.contact-cf7-wrap .wpcf7-tel:focus,
.contact-cf7-wrap .wpcf7-textarea:focus { border-color: var(--color-sage); box-shadow: 0 0 0 3px rgba(138,158,138,.15); }
.contact-cf7-wrap .wpcf7-textarea { resize: vertical; min-height: 160px; line-height: 1.7; }
.contact-cf7-wrap .wpcf7-submit { min-width: 220px; padding: 16px 48px; font-size: 16px; letter-spacing: .1em; border-radius: 32px; cursor: pointer; border: none; background: var(--color-sage); color: #fff; font-family: var(--font-mincho); transition: all var(--transition); }
.contact-cf7-wrap .wpcf7-submit:hover { background: #6e8a6e; }
.contact-cf7-wrap .wpcf7-response-output { margin: 16px 0 0; padding: 16px 20px; border-radius: 8px; font-size: 14px; line-height: 1.7; }
.contact-cf7-wrap .wpcf7-mail-sent-ok { background: #eef8f0; border: 1px solid #a8d9b0 !important; color: #2e6e3e; }
.contact-cf7-wrap .wpcf7-validation-errors,
.contact-cf7-wrap .wpcf7-mail-sent-ng,
.contact-cf7-wrap .wpcf7-spam-blocked { background: #fef2f2; border: 1px solid #f5b8b8 !important; color: #7e2020; }
.contact-cf7-wrap .wpcf7-not-valid-tip { font-size: 12px; color: #c0392b; margin-top: 4px; display: block; }
.contact-cf7-wrap .wpcf7-acceptance { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-text-mid); line-height: 1.6; }
.contact-cf7-wrap .wpcf7-acceptance input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--color-sage); flex-shrink: 0; }
.contact-cf7-wrap .wpcf7-acceptance a { color: var(--color-sage); text-decoration: underline; }
.contact-alt { padding: 72px 0; background: var(--color-off-white); }
.contact-alt__label { font-family: var(--font-en); font-size: 12px; letter-spacing: .15em; color: var(--color-gold); text-transform: uppercase; margin-bottom: 8px; }
.contact-alt__title { font-family: var(--font-mincho); font-size: clamp(17px, 2vw, 20px); font-weight: 500; letter-spacing: .06em; color: var(--color-text); margin-bottom: 36px; }
.contact-alt__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-alt-card { display: flex; align-items: center; gap: 20px; padding: 28px 32px; background: var(--color-white); border: 1px solid var(--color-beige); border-radius: 14px; text-decoration: none; color: inherit; transition: all var(--transition); }
.contact-alt-card:hover { border-color: var(--color-sage-light); transform: translateY(-2px); opacity: 1; }
.contact-alt-card__icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-alt-card--tel  .contact-alt-card__icon { background: var(--color-sage-pale); color: var(--color-sage); }
.contact-alt-card--line .contact-alt-card__icon { background: rgba(6,199,85,.12); color: #06C755; }
.contact-alt-card__body { flex: 1; }
.contact-alt-card__method { font-size: 12px; color: var(--color-text-light); letter-spacing: .08em; margin-bottom: 4px; }
.contact-alt-card__value { font-family: var(--font-mincho); font-size: clamp(16px, 2vw, 19px); font-weight: 500; color: var(--color-text); margin-bottom: 4px; letter-spacing: .04em; }
.contact-alt-card__note { font-size: 12px; color: var(--color-text-light); }

/* ===== プライバシーポリシー ===== */
.privacy-body { padding: 80px 0; }
.privacy-section { padding: 40px 0; border-bottom: 1px solid var(--color-beige); }
.privacy-section--last { border-bottom: none; }
.privacy-section__title { display: flex; align-items: center; gap: 16px; font-family: var(--font-mincho); font-size: clamp(17px, 2vw, 20px); font-weight: 500; letter-spacing: .06em; color: var(--color-text); margin-bottom: 20px; }
.privacy-section__num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: var(--color-sage); color: #fff; border-radius: 50%; font-family: var(--font-en); font-size: 14px; font-weight: 600; flex-shrink: 0; }
.privacy-section p { font-size: 14px; color: var(--color-text-mid); line-height: 2; margin-bottom: 16px; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-list { list-style: disc; margin: 16px 0 16px 20px; }
.privacy-list--ol { list-style: decimal; }
.privacy-list li { font-size: 14px; color: var(--color-text-mid); line-height: 1.9; margin-bottom: 8px; }
.privacy-note { font-size: 13px; color: var(--color-text-light); padding-left: 1em; text-indent: -1em; }
.privacy-contact-box { margin-top: 24px; padding: 28px 32px; background: var(--color-cream); border: 1px solid var(--color-beige); border-radius: 12px; }
.privacy-contact-dl { display: flex; flex-direction: column; gap: 12px; }
.privacy-contact-dl > div { display: flex; gap: 16px; align-items: baseline; }
.privacy-contact-dl dt { font-size: 13px; font-weight: 600; color: var(--color-text); min-width: 160px; flex-shrink: 0; }
.privacy-contact-dl dd { font-size: 13px; color: var(--color-text-mid); line-height: 1.8; }
.privacy-contact-dl a { color: var(--color-sage); text-decoration: underline; }
.privacy-contact-dl a:hover { color: var(--color-text); opacity: 1; }

/* ===== お届けの3ステップ（共通） ===== */
.delivery-steps {
  padding: var(--section-gap) 0;
  background: var(--color-cream);
}
.delivery-steps__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0 12px;
}
.delivery-steps__grid > .delivery-step {
  height: 100%;
  box-sizing: border-box;
}
.delivery-step {
  background: var(--color-white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
/* サイクルバッジ */
.delivery-step__cycle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  background: var(--color-gold-pale);
  border: 1px solid var(--color-gold-light);
  border-radius: 20px;
  padding: 5px 14px;
  margin: 16px auto 0;
  width: fit-content;
}
.delivery-step__cycle svg { flex-shrink: 0; }
.delivery-step__num {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}
.delivery-step__num span {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0;
  display: block;
  line-height: 1;
  margin-top: 4px;
}
.delivery-step__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-light);
  color: var(--color-gold);
  margin: 0 auto 20px;
}
.delivery-step__title {
  font-family: var(--font-mincho);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 10px;
}
.delivery-step__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-gold);
  margin: 0 0 12px;
}
.delivery-step__desc {
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.9;
  margin: 0;
  text-align: left;
}
.delivery-step__arrow {
  font-size: 28px;
  color: var(--color-beige-mid);
  align-self: center;
  padding-top: 0;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .delivery-steps__grid {
    grid-template-columns: 1fr;
  }
  .delivery-step__arrow {
    text-align: center;
    padding-top: 0;
    font-size: 24px;
    transform: rotate(90deg);
  }
}
@media (max-width: 640px) {
  .products__tab { font-size: 12px; padding: 7px 14px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 14px 14px 18px; }
  .product-card__name { font-size: 13px; }
  .product-card__price { font-size: 17px; }
  .tokusho-table { font-size: 13px; }
  .tokusho-table th { display: block; width: 100%; white-space: normal; border-bottom: none; padding-bottom: 4px; }
  .tokusho-table td { display: block; width: 100%; padding-top: 4px; box-sizing: border-box; }
  .tokusho-sub-table th { width: 120px; font-size: 12px; }
  .news__list--full .news__item { grid-template-columns: 1fr; }
  .contact-faq-suggest__inner { flex-direction: column; align-items: center; padding: 28px 24px; text-align: center; gap: 20px; }
  .contact-form-section { padding: 56px 0; }
  .contact-alt__grid { grid-template-columns: 1fr; }
  .contact-alt-card { padding: 20px 24px; }
  .confirm-table th { width: 100px; white-space: normal; }
  .confirm-actions { flex-direction: column; align-items: center; }
  .confirm-actions__back, .confirm-actions__submit { width: 100%; max-width: 320px; text-align: center; }
  .complete-message__btns { flex-direction: column; align-items: center; }
  .privacy-body { padding: 56px 0; }
  .privacy-contact-box { padding: 20px; }
  .privacy-contact-dl > div { flex-direction: column; gap: 4px; }
  .privacy-contact-dl dt { min-width: unset; }
}
@media (max-width: 768px) {
  .faq-nav { padding: 28px 0 36px; }
  .faq-group { margin-bottom: 48px; }
  .faq-contact__grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}
