@charset "utf-8";
/* ==========================================================================
   インバウンド向け洗濯代行LP（/user/inbound）専用スタイル
   - デザイン: documents/インバウンド/260901_インバウンド向け洗濯代行ページ_*.pdf
   - モバイルファースト。992px 以上でPC版レイアウトに切り替える
   - サイト共通CSS（bootstrap.css / style.css）には依存しない
   ========================================================================== */

/* Apple端末搭載の Avenir / Avenir Next をデザイン通りの太さで割り当てる（非搭載端末は Nunito Sans） */
@font-face { font-family: "ILP Avenir"; font-weight: 400; src: local("AvenirNext-Regular"), local("Avenir Next Regular"); }
@font-face { font-family: "ILP Avenir"; font-weight: 500; src: local("AvenirNext-Medium"), local("Avenir Next Medium"); }
@font-face { font-family: "ILP Avenir"; font-weight: 600; src: local("AvenirNext-DemiBold"), local("Avenir Next Demi Bold"); }
@font-face { font-family: "ILP Avenir"; font-weight: 700 800; src: local("AvenirNext-Bold"), local("Avenir Next Bold"); }
@font-face { font-family: "ILP Avenir"; font-weight: 900; src: local("Avenir-Black"), local("Avenir Black"), local("AvenirNext-Bold"); }

:root {
    --ilp-navy: #003b8f;        /* 見出し・枠線 */
    --ilp-navy-deep: #003399;   /* DAYバッジ・ラベル帯 */
    --ilp-teal: #46b4c8;        /* 注文系CTA */
    --ilp-coral: #f08273;       /* チャット系CTA */
    --ilp-blue-bg: #d2ecfa;     /* 店舗集荷カード */
    --ilp-mint-bg: #d0f2e9;     /* 宅配便カード */
    --ilp-text: #231815;
    --ilp-font: "ILP Avenir", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --ilp-font-num: "DIN Alternate", "Barlow Semi Condensed", Arial, sans-serif;
}

/* reset（このLP内に限定） */
.ilp-body { margin: 0; }
.ilp, .ilp *, .ilp *::before, .ilp *::after { box-sizing: border-box; }
/* :where() で詳細度を0にし、以降のコンポーネント指定が必ず勝つようにする */
:where(.ilp) :where(h1, h2, h3, p, ul, ol, dl, dd, dt) { margin: 0; padding: 0; }
:where(.ilp) :where(ul, ol) { list-style: none; }
:where(.ilp) img { max-width: 100%; height: auto; vertical-align: middle; }
:where(.ilp) a { color: inherit; }
:where(.ilp) button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; text-align: inherit; }
:where(.ilp) small { font-size: inherit; }
:where(.ilp) i { font-style: normal; }

.ilp {
    min-height: 100vh;
    padding: 10px;
    color: var(--ilp-text);
    font-family: var(--ilp-font);
    font-size: 13px;
    line-height: 1.35;
    -webkit-text-size-adjust: 100%;
    background-color: #fff;
    background-image: repeating-linear-gradient(-45deg, rgb(170 170 210 / 35%) 0 1.5px, transparent 1.5px 5px);
}
.ilp-sheet {
    max-width: 480px;
    margin: 0 auto;
    padding: 12px 20px 24px;
    background: #fff;
    overflow: hidden;
}
.ilp-pc { display: none; }
.ilp-center { text-align: center; }

/* 白抜きアウトライン文字 */
.ilp-outline {
    color: #fff;
    font-weight: 900;
    letter-spacing: .04em;
    /* 縁線は文字の外側に描き、白い塗りを上に重ねる（paint-order）。太くしても文字の形は細らない */
    -webkit-text-stroke: 2.4px var(--ilp-navy);
    paint-order: stroke fill;
}

/* ◎ の箇条書きマーク */
.ilp-bullet,
.ilp-bullets > li::before {
    content: "";
    display: inline-block;
    flex: none;
    width: .95em;
    height: .95em;
    margin-right: .35em;
    border-radius: 50%;
    vertical-align: -.05em;
    background: radial-gradient(circle, #fff 0 14%, #0a6cc4 16% 30%, #fff 32% 44%, #0a6cc4 46% 58%, #fff 60% 70%, #231815 72% 100%);
}

/* 波線ドットの区切り */
.ilp-divider {
    aspect-ratio: 922 / 24;
    margin: 22px 0 15px;
    background: url(../images/inbound/lp/divider.svg) center / 100% 100% no-repeat;
}
.ilp-divider--last { margin-bottom: 0; }

/* ボタン */
.ilp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    min-height: 34px;
    padding: 4px 16px;
    border-radius: 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.15;
    text-decoration: none;
    white-space: nowrap;
    transition: filter .15s;
}
.ilp-btn::after {
    content: "";
    width: .5em;
    height: .5em;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex: none;
}
.ilp-btn:hover, .ilp-btn:focus-visible { filter: brightness(.93); }
.ilp-btn--order { background: var(--ilp-teal); }
.ilp-btn--chat { background: var(--ilp-coral); padding-inline: 8px; }
.ilp-btn--wide { font-size: 13px; padding-inline: 18px; min-height: 28px; white-space: normal; text-align: center; }

/* 通常会員ログイン中の案内 */
.ilp-notice {
    margin-bottom: 20px;
    padding: 12px 14px;
    border: 1px solid var(--ilp-navy);
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}
.ilp-notice__btn {
    margin-top: 8px;
    padding: 4px 18px;
    border: 1px solid var(--ilp-navy);
    border-radius: 6px;
    color: var(--ilp-navy);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   ① ヒーロー
   -------------------------------------------------------------------------- */
.ilp-hero { text-align: center; }
.ilp-hero__logo img { width: 168px; }
.ilp-hero__title {
    margin-top: 26px;
    color: var(--ilp-navy);
    font-size: clamp(28px, 8.6vw, 34px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .005em;
}
.ilp-hero__title .ilp-outline { -webkit-text-stroke-width: 2.6px; letter-spacing: .01em; }
.ilp-hero__visual { display: block; width: 94%; margin: 10px auto 0; }
.ilp-hero__visual img { width: 100%; }
.ilp-hero__sub { margin-top: 16px; color: var(--ilp-navy); font-size: 18px; line-height: 1.15; letter-spacing: .01em; }
.ilp-hero__cta { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.ilp-hero__cta .ilp-btn { flex: 0 1 144px; padding-inline: 8px; }

.ilp-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 28px; }
.ilp-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 131px;
    padding: 12px 4px;
    border: 1px solid var(--ilp-navy);
    border-radius: 10px;
    box-shadow: 1px 1.5px 0 rgb(0 59 143 / 35%);
    background: #fff;
    color: var(--ilp-navy);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.18;
}
.ilp-chip img { width: 54px; }

/* --------------------------------------------------------------------------
   セクション共通
   -------------------------------------------------------------------------- */
.ilp-heading { font-size: 20px; line-height: 1.2; font-weight: 800; }
.ilp-heading small { margin-left: .5em; color: var(--ilp-navy); font-size: 13px; font-weight: 400; letter-spacing: 0; }

/* 折りたたみ（モバイルのみ。PCは常時展開） */
.ilp-acc__head { display: block; position: relative; width: 100%; }
.ilp-acc__head::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-right: 1.75px solid var(--ilp-navy);
    border-bottom: 1.75px solid var(--ilp-navy);
    transform: rotate(-45deg);
    transition: transform .2s;
}
.ilp-acc__body { display: none; }
.ilp-acc.is-open > .ilp-acc__body,
.ilp-acc.is-open > * > .ilp-acc__body { display: block; }

/* 見出し自体がボタンになる折りたたみ（PICKUP DATES / TOP CHOICE / FAQ） */
.ilp-acc--box .ilp-acc__head {
    padding: 22px 48px 22px 22px;
    border: 1px solid var(--ilp-navy);
    border-radius: 10px;
    box-shadow: 2px 3px 0 var(--ilp-navy); /* 押せることが分かるよう影をやや強めに */
}
.ilp-acc--box .ilp-acc__head::after { transform: rotate(45deg); margin-top: -8px; }
.ilp-acc--box.is-open .ilp-acc__head { padding: 0 30px 0 0; border-color: transparent; box-shadow: none; }
.ilp-acc--box.is-open .ilp-acc__head::after { right: 6px; transform: rotate(-135deg); margin-top: -2px; }
.ilp-acc--box > .ilp-acc__body { padding-top: 16px; }

/* --------------------------------------------------------------------------
   ② SERVICE FLOW
   -------------------------------------------------------------------------- */
.ilp-flow {
    margin-top: 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    overflow: hidden;
}
.ilp-flow--local { --ilp-flow-bg: var(--ilp-blue-bg); }
.ilp-flow--courier { --ilp-flow-bg: var(--ilp-mint-bg); margin-top: 12px; }
.ilp-flow__head {
    padding: 11px 34px 11px 16px;
    border-radius: 10px;
    background: var(--ilp-flow-bg);
    box-shadow: inset -1.5px -1.5px 0 var(--ilp-navy);
    color: var(--ilp-navy);
}
.ilp-flow__title { display: block; font-size: 16px; font-weight: 900; line-height: 1.15; }
.ilp-flow__title .ilp-outline { font-size: 16.5px; -webkit-text-stroke-width: 2.2px; }
.ilp-flow__catch { display: block; font-size: 12px; font-weight: 500; margin-top: 1px; }
.ilp-flow__returns { display: block; margin-top: 4px; font-size: 13.5px; font-weight: 500; line-height: 1.2; letter-spacing: -.005em; }
.ilp-open-br { display: none; }
.ilp-flow__returns small { display: block; padding-left: 1.4em; font-size: 10px; font-weight: 500; }
.ilp-flow.is-open { border-color: var(--ilp-navy); }
/* 展開時はモバイル版PDF p3・p4 の見出し構成（中央寄せ・2段）にする */
.ilp-flow.is-open .ilp-flow__head { border-radius: 0; box-shadow: none; text-align: center; padding: 24px 14px 22px; }
.ilp-flow.is-open .ilp-flow__head::after { top: 18px; right: 16px; transform: rotate(-135deg); margin-top: 0; }
.ilp-flow.is-open .ilp-flow__title { font-size: 17px; line-height: 1.2; }
.ilp-flow.is-open .ilp-flow__title .ilp-outline { display: block; font-size: 19px; }
.ilp-flow.is-open .ilp-flow__catch,
.ilp-flow.is-open .ilp-flow__returns .ilp-bullet { display: none; }
.ilp-flow.is-open .ilp-open-br { display: inline; }
.ilp-flow.is-open .ilp-flow__returns { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--ilp-navy); font-size: 17px; line-height: 1.12; }
.ilp-flow.is-open .ilp-flow__returns small { padding-left: 0; margin-top: 2px; font-size: 11.5px; }
.ilp-flow > .ilp-acc__body { padding: 8px 13px 16px; background: #fff; }

.ilp-step { position: relative; margin-top: 18px; padding-bottom: 22px; border-top: 1px solid var(--ilp-navy); }
.ilp-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -6px;
    border: 6px solid transparent;
    border-top: 8px solid var(--ilp-navy);
    border-bottom: 0;
}
.ilp-step:last-child { padding-bottom: 4px; }
.ilp-step:last-child::after { display: none; }
.ilp-step__day {
    display: inline-block;
    padding: 5px 14px 4px;
    background: var(--ilp-navy-deep);
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .03em;
    line-height: 1.2;
}
.ilp-step__title { margin-top: 14px; font-size: 17px; font-weight: 600; line-height: 1.1; }
.ilp-step__img { display: block; width: 156px; margin: 12px auto 14px; }
.ilp-step__img--pickup { width: 228px; margin-top: -26px; }
.ilp-steps--local .ilp-step:nth-child(3) .ilp-step__img { width: 124px; }
.ilp-step__desc { font-size: 13px; line-height: 1.2; }
.ilp-step--row { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "day day" "title img" "desc desc"; align-items: center; column-gap: 12px; }
.ilp-step--row .ilp-step__day { grid-area: day; justify-self: start; }
.ilp-step--row .ilp-step__title { grid-area: title; }
.ilp-step--row .ilp-step__img { grid-area: img; width: 78px; margin: 6px 44px 6px 0; }
.ilp-step--row .ilp-step__desc { grid-area: desc; }
.ilp-step--d6 { display: block; }
.ilp-step--d6 .ilp-step__img { width: 124px; margin: 12px auto 14px; }

.ilp-notes { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--ilp-navy); font-size: 12px; line-height: 1.2; }
.ilp-notes li { position: relative; padding-left: .8em; }
.ilp-notes li + li { margin-top: 7px; }
.ilp-notes li::before { content: "*"; position: absolute; left: 0; top: .1em; font-weight: 700; }

/* --------------------------------------------------------------------------
   ③ SERVICE & PRICING INFORMATION
   -------------------------------------------------------------------------- */
.ilp-bagprice { margin-top: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--ilp-navy); }
.ilp-bagprice__lead { font-size: 14px; line-height: 1.2; }
.ilp-bagprice__tags { display: flex; gap: 8px; margin-top: 8px; }
.ilp-bagprice__tags li {
    padding: 3px 14px 2px;
    border: 1px solid var(--ilp-navy);
    color: var(--ilp-navy);
    font-family: var(--ilp-font-num);
    font-size: 19.5px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.15;
    white-space: nowrap;
}
.ilp-baginfo { display: grid; grid-template-columns: 106px 1fr; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--ilp-navy); }
.ilp-baginfo__text { font-size: 11px; line-height: 1.25; }
.ilp-baginfo__text p + p { margin-top: 1em; }

.ilp-prices { margin-top: 16px; }
.ilp-pricecard, .ilp-option { border: 1px solid var(--ilp-navy); border-radius: 10px; padding: 12px 14px; }
.ilp-pricecard--local { background: var(--ilp-blue-bg); }
.ilp-pricecard--courier { background: var(--ilp-mint-bg); margin-top: 8px; }
.ilp-pricecard__title { padding-bottom: 10px; border-bottom: 1px solid var(--ilp-navy); color: var(--ilp-navy); font-size: 17px; font-weight: 900; text-align: center; }
.ilp-priceitem {
    display: grid;
    grid-template-columns: 40px 66px 1fr auto;
    grid-template-areas: "icon label cap price";
    align-items: center;
    column-gap: 6px;
    margin-top: 9px;
}
.ilp-priceitem__icon { grid-area: icon; width: 34px; justify-self: center; }
.ilp-priceitem--l .ilp-priceitem__icon { width: 38px; }
.ilp-priceitem__label { grid-area: label; color: var(--ilp-navy); font-size: 13px; font-weight: 900; text-align: center; }
.ilp-priceitem__cap { grid-area: cap; padding-left: 10px; border-left: 1px solid var(--ilp-navy); font-size: 14px; font-weight: 500; line-height: 1.7; white-space: nowrap; }
.ilp-priceitem__price,
.ilp-express__price,
.ilp-option__price { font-family: var(--ilp-font-num); font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.ilp-priceitem__price { grid-area: price; font-size: 20px; }
.ilp-priceitem__price i, .ilp-express__price i, .ilp-option__price i { margin-right: .22em; font-size: .78em; font-family: var(--ilp-font); font-weight: 700; }
.ilp-priceitem__price b { font-weight: 700; }

.ilp-express {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    grid-template-areas: "img title price";
    align-items: center;
    column-gap: 8px;
    margin-top: 14px;
}
.ilp-express__img { grid-area: img; display: block; }
.ilp-express__img img { width: 100%; }
.ilp-express__title { grid-area: title; color: var(--ilp-navy); font-size: 14.5px; font-weight: 900; }
.ilp-express__price { grid-area: price; min-width: 72px; font-size: 20px; }

.ilp-pricecard__warn { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 11px; line-height: 1.2; }
.ilp-pricecard__warn img { width: 24px; flex: none; }

.ilp-option { display: grid; grid-template-columns: 1fr 1.05fr 1.05fr; align-items: stretch; margin-top: 8px; padding: 10px 0; background: #fff; }
.ilp-option__title { align-self: center; color: var(--ilp-navy); font-size: 17px; font-weight: 900; text-align: center; }
.ilp-option__item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 4px 6px; border-left: 1px solid var(--ilp-navy); font-size: 13px; font-weight: 600; line-height: 1.15; text-align: center; }
.ilp-option__item img { width: 40px; height: 44px; object-fit: contain; }
.ilp-option__price { display: block; margin-top: 8px; font-size: 19px; }
.ilp-prices + .ilp-center { margin-top: 12px; }

/* --------------------------------------------------------------------------
   ④ ABOUT PICKUP DATES
   -------------------------------------------------------------------------- */
.ilp-dates__row { border-top: 1px solid var(--ilp-navy); }
.ilp-dates__row + .ilp-dates__row { margin-top: 16px; }
.ilp-dates__row dt {
    display: inline-block;
    min-width: 164px;
    padding: 5px 16px 4px;
    background: var(--ilp-navy-deep);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em;
    text-align: center;
}
.ilp-dates__row dd { margin-top: 8px; }
.ilp-dates__row strong { display: block; font-size: 16.5px; font-weight: 600; line-height: 1.2; }
.ilp-dates__row dd small { display: block; margin-top: 3px; font-size: 13px; }
.ilp-bullets { margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--ilp-navy); font-size: 13px; line-height: 1.22; }
.ilp-bullets li { position: relative; padding-left: 1.2em; }
.ilp-bullets li + li { margin-top: 14px; }
.ilp-bullets > li::before { position: absolute; left: 0; top: .18em; margin: 0; }

/* --------------------------------------------------------------------------
   ⑤ WHY WE'RE THE TOP CHOICE
   -------------------------------------------------------------------------- */
.ilp-why { display: grid; gap: 8px; }
.ilp-why__card { padding: 12px 14px; border: 1px solid var(--ilp-navy); border-radius: 12px; font-size: 13px; line-height: 1.22; }
.ilp-why__head { display: flex; align-items: center; gap: 16px; padding-left: 10px; }
.ilp-why__head img { width: 46px; flex: none; }
.ilp-why__head h3 { color: var(--ilp-navy); font-size: 17.5px; font-weight: 600; line-height: 1.12; }
.ilp-why__head picture { flex: none; line-height: 0; }
.ilp-why__card p { margin-top: 6px; }

/* --------------------------------------------------------------------------
   ⑥ FAQ
   -------------------------------------------------------------------------- */
.ilp-faq__item { padding: 16px 0 20px; border-bottom: 1.5px dotted var(--ilp-navy); }
.ilp-faq__item:first-child { padding-top: 0; }
.ilp-faq dt { position: relative; min-height: 26px; padding: 4px 0 0 43px; color: var(--ilp-navy); font-size: 13px; font-weight: 600; line-height: 1.2; }
/* Q・A のマークはデザインPDFから切り出したSVG（Q=白抜き＋水色の影、A=紺ベタ＋白フチ＋水色の影） */
.ilp-faq dt::before,
.ilp-faq dd::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 25.5px;
    background: url(../images/inbound/lp/faq-q.svg) left top / contain no-repeat;
}
.ilp-faq dd { position: relative; margin-top: 14px; padding-left: 83px; font-size: 13px; line-height: 1.22; }
.ilp-faq dd::before { left: 41px; top: -5px; width: 33px; height: 25px; background-image: url(../images/inbound/lp/faq-a.svg); }
.ilp-faq dd::after { content: ""; position: absolute; left: 8px; top: -8px; width: 23px; height: 22px; border-left: 1.5px solid var(--ilp-navy); border-bottom: 1.5px solid var(--ilp-navy); }
.ilp-faq__chat { margin-top: 18px; font-size: 14px; font-weight: 500; text-align: left; }
.ilp-faq__chat .ilp-btn { display: flex; width: 144px; margin: 14px auto 0; }

/* --------------------------------------------------------------------------
   ⑦ クロージング / ⑧ チャット誘導
   -------------------------------------------------------------------------- */
.ilp-closing {
    display: grid;
    grid-template-columns: 1fr 52%;
    grid-template-areas: "title family" "laundry family" "cta cta";
    align-items: start;
    margin-inline: -8px;
}
.ilp-closing__title { grid-area: title; color: var(--ilp-navy); font-size: 16.5px; font-weight: 900; line-height: 1.1; white-space: nowrap; position: relative; z-index: 1; }
.ilp-closing__family { grid-area: family; width: 100%; }
.ilp-closing__laundry { grid-area: laundry; width: 78px; margin: 6px 0 0 28px; }
.ilp-closing__cta { grid-area: cta; margin-top: 16px; text-align: center; }
.ilp-closing__login { margin-top: 16px; font-size: 13px; font-weight: 500; }
.ilp-closing__login a { color: var(--ilp-navy); font-weight: 800; }

.ilp-contact { text-align: center; }
.ilp-contact__text { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; line-height: 1.15; text-align: left; }
.ilp-contact__text img { width: 34px; flex: none; }
.ilp-contact .ilp-btn { display: flex; width: 144px; margin: 12px auto 0; }

/* ==========================================================================
   PC（992px〜）: デザイン幅1080px・コンテンツ幅918px
   ========================================================================== */
@media (min-width: 992px) {
    .ilp-pc { display: inline; }
    br.ilp-pc { display: inline; }
    .ilp-sp { display: none !important; }

    .ilp { padding: 28px; font-size: 16px; }
    .ilp-sheet { max-width: 1024px; padding: 28px 53px 60px; }
    .ilp-open-br { display: none !important; }
    .ilp-outline { -webkit-text-stroke-width: 4px; letter-spacing: .035em; }
    .ilp-bullet, .ilp-bullets > li::before { width: 1.05em; height: 1.05em; }
    .ilp-divider { margin: 56px 0 50px; }

    .ilp-btn { min-height: 50px; padding: 6px 24px; border-radius: 11px; font-size: 26px; }
    .ilp-btn::after { border-width: 2px; }
    .ilp-btn--wide { min-height: 50px; padding-inline: 30px; font-size: 26px; gap: .8em; }

    .ilp-notice { font-size: 15px; }

    /* ① ヒーロー */
    .ilp-hero { position: relative; min-height: 640px; text-align: left; }
    .ilp-hero__logo { position: absolute; top: 0; right: -26px; z-index: 2; }
    .ilp-hero__logo img { width: 284px; }
    .ilp-hero__text, .ilp-hero__lead { position: relative; z-index: 1; }
    .ilp-hero__title { margin-top: 0; padding-top: 6px; font-size: 61px; line-height: 1.08; }
    .ilp-hero__title .ilp-outline { -webkit-text-stroke-width: 4.4px; }
    .ilp-hero__visual { position: absolute; top: 36px; right: -18px; width: 660px; margin: 0; }
    .ilp-hero__sub { margin-top: 24px; font-size: 26px; line-height: 1.17; }
    .ilp-hero__cta { justify-content: flex-start; gap: 14px; margin-top: 28px; }
    .ilp-hero__cta .ilp-btn { flex: 0 0 206px; }
    .ilp-chips { display: flex; gap: 9px; margin-top: 25px; }
    .ilp-chip { flex-direction: row; justify-content: flex-start; gap: 16px; width: 188px; min-height: 92px; padding: 8px 8px 8px 20px; border-radius: 12px; font-size: 17px; text-align: left; }
    .ilp-chip img { width: 64px; }
    .ilp-chip--wide { width: 222px; }

    /* 見出し */
    .ilp-heading { font-size: 40px; }
    .ilp-heading small { font-size: 26px; }

    /* 折りたたみはPCでは無効（常時展開） */
    .ilp-acc__head { cursor: default; pointer-events: none; }
    .ilp-acc__head::after { display: none; }
    .ilp-acc__body { display: block !important; }
    .ilp-acc--box .ilp-acc__head,
    .ilp-acc--box.is-open .ilp-acc__head { padding: 0; border: 0; box-shadow: none; }
    .ilp-acc--box > .ilp-acc__body { padding-top: 0; }

    /* ② SERVICE FLOW */
    .ilp-flow, .ilp-flow.is-open { margin-top: 28px; border: 0; border-radius: 0; overflow: visible; }
    .ilp-flow--courier, .ilp-flow--courier.is-open { margin-top: 36px; }
    .ilp-flow__head, .ilp-flow.is-open .ilp-flow__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 12px 26px 10px;
        border: 1px solid var(--ilp-navy);
        border-bottom: 0;
        border-radius: 13px 13px 0 0;
        box-shadow: none;
        text-align: left;
    }
    .ilp-flow__title, .ilp-flow.is-open .ilp-flow__title { flex: none; font-size: 30px; line-height: 1.1; }
    .ilp-flow__catch { font-size: 24px; font-weight: 900; margin-top: 4px; white-space: nowrap; }
    .ilp-flow__returns, .ilp-flow.is-open .ilp-flow__returns { margin: 0; padding: 0; border: 0; font-size: 18.5px; font-weight: 600; line-height: 1.2; text-align: right; white-space: nowrap; }
    .ilp-flow.is-open .ilp-flow__returns .ilp-bullet { display: inline-block; }
    .ilp-flow.is-open .ilp-flow__catch { display: block; }
    .ilp-flow.is-open .ilp-flow__title .ilp-outline { display: inline; }
    .ilp-flow--local .ilp-flow__returns { align-self: flex-start; padding-top: 8px; }
    .ilp-flow__returns small, .ilp-flow.is-open .ilp-flow__returns small { margin: 0; padding: 0; font-size: 16.5px; font-weight: 600; }

    .ilp-flow > .ilp-acc__body { padding: 0; }
    .ilp-steps { display: grid; padding: 14px 0 20px; border: 1px solid var(--ilp-navy); border-top: 0; border-radius: 0 0 13px 13px; }
    .ilp-steps--local { grid-template-columns: repeat(4, 1fr); }
    .ilp-steps--courier { grid-template-columns: 240fr 322fr 350fr 355fr; grid-template-rows: auto auto; row-gap: 10px; }
    .ilp-step, .ilp-step--d6 { margin: 0; padding: 0 12px 0 16px; border-top: 0; border-left: 1px solid var(--ilp-navy); }
    .ilp-step:first-child, .ilp-step--d1 { border-left: 0; margin-left: -1px; padding-left: 17px; }
    .ilp-step::after { display: none; }
    .ilp-step__day { margin-left: -16px; padding: 4px 10px 2px 11px; font-size: 20px; letter-spacing: .04em; }
    .ilp-step:first-child .ilp-step__day, .ilp-step--d1 .ilp-step__day { margin-left: -17px; }
    .ilp-step__title { margin-top: 16px; font-size: 17px; font-weight: 800; line-height: 1.17; min-height: 40px; }
    .ilp-step__img { width: 144px; margin: 4px auto 8px; }
    .ilp-steps--local .ilp-step { display: flex; flex-direction: column; }
    .ilp-steps--local .ilp-step__day { align-self: flex-start; }
    .ilp-steps--local .ilp-step__img { width: auto; height: 118px; margin: 2px auto 8px; object-fit: contain; }
    .ilp-steps--local .ilp-step:nth-child(3) .ilp-step__img { width: 196px; }
    .ilp-steps--local .ilp-step__desc { min-height: 3.8em; margin-top: auto; }
    .ilp-step .ilp-step__img--pickup { width: 193px; height: 131px; margin: -34px auto 6px; }
    .ilp-steps--local .ilp-step:nth-child(2) .ilp-step__title,
    .ilp-step--d2 .ilp-step__title { min-height: 40px; }
    .ilp-step__desc { font-size: 15px; line-height: 1.27; }
    .ilp-notes { font-size: 15px; line-height: 1.35; }
    .ilp-step--d1, .ilp-step--d2 { grid-row: 1 / span 2; }
    .ilp-step--d1 .ilp-step__img { width: 118px; margin: 2px auto 10px 22px; }
    .ilp-step--d3 { grid-column: 3; grid-row: 1; }
    .ilp-step--d4 { grid-column: 3; grid-row: 2; }
    .ilp-step--d5 { grid-column: 4; grid-row: 1; }
    .ilp-step--d6 { grid-column: 4; grid-row: 2; }
    .ilp-step--row, .ilp-step--d6 { display: grid; grid-template-columns: auto 1fr; align-items: start; column-gap: 8px; }
    .ilp-step--row .ilp-step__title { min-height: 0; }
    .ilp-step--row .ilp-step__img, .ilp-step--d6 .ilp-step__img { width: 84px; margin: 12px 16px 0 auto; justify-self: end; }
    .ilp-step--d4 .ilp-step__img { width: 112px; margin-top: -4px; }
    .ilp-step--d5 { grid-template-columns: 1fr; grid-template-areas: "day" "title" "img"; }
    .ilp-step--d5 .ilp-step__img { width: 118px; margin: -2px 24px 0 auto; }
    .ilp-step--d6 .ilp-step__img { width: 138px; margin: -16px 0 0 auto; }

    .ilp-notes { margin: 18px 0 0 17px; padding: 0; border: 0; font-size: 15px; }
    .ilp-notes li { padding-left: .55em; }
    .ilp-notes li + li { margin-top: 1px; }
    .ilp-notes li::before { top: 0; font-weight: 400; }

    /* ③ PRICING */
    .ilp-bagprice { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 14px; padding-bottom: 25px; }
    .ilp-bagprice__lead { font-size: 25px; line-height: 1.17; white-space: nowrap; }
    .ilp-bagprice__tags { gap: 10px; margin: 0; }
    .ilp-bagprice__tags li { padding: 5px 16px 2px; font-size: 27.5px; letter-spacing: .05em; }
    .ilp-baginfo { grid-template-columns: 198px 1fr; gap: 14px; padding: 24px 0 26px; }
    .ilp-baginfo__img { margin-left: -5px; }
    .ilp-baginfo__text { font-size: 22px; line-height: 1.15; letter-spacing: .005em; }
    .ilp-option__item img { width: 70px; height: 76px; }

    /* 左右のカラムの下端を揃える（デザインでは店舗カードとOptionカードの下端が一致） */
    .ilp-prices { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; align-items: stretch; }
    .ilp-prices__right { display: flex; flex-direction: column; }
    .ilp-prices__right .ilp-pricecard--courier { flex: 1; }
    .ilp-pricecard, .ilp-option { border-radius: 14px; padding: 18px 19px 22px; }
    .ilp-pricecard--courier { margin-top: 0; padding-bottom: 14px; }
    .ilp-pricecard__title { padding-bottom: 14px; font-size: 25px; line-height: 1.1; }
    .ilp-pricecard__items { display: grid; grid-template-columns: 1fr 1fr; column-gap: 43px; margin-top: 32px; }
    .ilp-priceitem {
        grid-template-columns: 70px 1fr;
        grid-template-areas: "label label" "icon cap" "price price";
        column-gap: 4px;
        margin-top: 0;
    }
    .ilp-priceitem__label { padding: 4px 0 2px; background: var(--ilp-navy-deep); color: #fff; font-size: 19px; font-weight: 700; }
    .ilp-priceitem__icon { width: 56px; margin-top: 14px; }
    .ilp-priceitem--l .ilp-priceitem__icon { width: 72px; margin-top: -26px; }
    .ilp-priceitem__cap { margin-top: 14px; padding: 0; border: 0; font-size: 18px; line-height: 1.1; text-align: center; }
    .ilp-priceitem__cap small { display: block; margin-top: 5px; font-size: 13px; font-weight: 400; }
    .ilp-priceitem__price { margin-top: 10px; font-size: 46px; line-height: 1; text-align: center; }
    .ilp-priceitem__price i { font-size: .68em; }

    .ilp-express { grid-template-columns: auto auto; grid-template-areas: "title title" "img price"; justify-content: center; column-gap: 28px; margin-top: 24px; padding-top: 12px; border-top: 1px solid var(--ilp-navy); }
    .ilp-express__title { font-size: 25px; line-height: 1; text-align: center; }
    .ilp-express__title small { display: block; font-size: 20px; font-weight: 400; }
    .ilp-express__img { width: 250px; margin-top: 22px; }
    .ilp-express__price { margin-top: 26px; font-size: 35px; }

    .ilp-pricecard__warn { gap: 12px; margin: 10px 0 0 14px; font-size: 12.5px; }
    .ilp-pricecard__warn img { width: 29px; }

    .ilp-option { grid-template-columns: 1fr 1fr; margin-top: 15px; padding: 12px 22px 12px; }
    .ilp-option__title { grid-column: 1 / -1; font-size: 25px; line-height: 1; }
    .ilp-option__item { flex-direction: row; justify-content: center; gap: 22px; white-space: nowrap; margin-top: 2px; padding: 0 6px; border-left: 0; font-size: 18px; line-height: 1.05; }
    .ilp-option__item + .ilp-option__item { border-left: 1px solid var(--ilp-navy); }
    .ilp-option__item img { width: 70px; height: 76px; }
    .ilp-option__price { margin-top: 8px; font-size: 36px; }
    .ilp-prices + .ilp-center { margin-top: 36px; }
    .ilp-prices + .ilp-center .ilp-btn--wide { min-width: 595px; }

    /* ④ PICKUP DATES */
    .ilp-dates { display: grid; grid-template-columns: 480px 1fr; column-gap: 28px; margin-top: -40px; }
    .ilp-dates__list { padding-top: 84px; }
    .ilp-dates__row { display: flex; align-items: flex-start; gap: 20px; border: 0; }
    .ilp-dates__row + .ilp-dates__row { margin-top: 50px; }
    .ilp-dates__row dt { flex: none; min-width: 0; width: 128px; padding: 7px 0 5px; font-size: 20px; line-height: 1.07; }
    .ilp-dates__row dd { margin: 0; }
    .ilp-dates__row strong { font-size: 20px; line-height: 1.07; }
    .ilp-dates__row dd small { margin-top: 6px; font-size: 15px; line-height: 1.27; }
    .ilp-bullets { font-size: 15px; }
    .ilp-bullets { margin: 0; padding: 8px 0 0; border: 0; font-size: 15px; line-height: 1.27; }
    .ilp-bullets li { padding-left: 1.65em; }
    .ilp-bullets li + li { margin-top: 12px; }
    .ilp-bullets li:first-child { margin-bottom: 108px; }

    /* ⑤ WHY */
    .ilp-why { grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 30px; }
    .ilp-why__card { padding: 26px 13px 14px; border-width: 1px; border-radius: 15px; font-size: 14.5px; line-height: 1.3; }
    .ilp-why__head { justify-content: center; gap: 12px; padding: 0; min-height: 58px; }
    .ilp-why__head img { width: 50px; }
    .ilp-why__card:nth-child(3) .ilp-why__head img { width: 72px; margin-inline: 0; }
    .ilp-why__head h3 { font-size: 18px; font-weight: 700; line-height: 1.12; text-align: center; }
    .ilp-why__card p { margin-top: 18px; }
    .ilp-why__card:nth-child(2) p { margin-top: 38px; }
    .ilp-why__card--solo { padding-top: 14px; }
    .ilp-why__card--solo .ilp-why__head { flex-direction: column; gap: 10px; }
    .ilp-why__card--solo .ilp-why__head img { width: 72px; }

    /* ⑥ FAQ */
    .ilp-faq { margin-top: 34px; }
    .ilp-faq__item { padding: 24px 0 34px 4px; border-bottom-width: 2px; }
    .ilp-faq dt { min-height: 39px; padding: 8px 0 0 60px; font-size: 19.5px; font-weight: 700; }
    .ilp-faq dt::before { left: -3px; top: 0; width: 49px; height: 39px; }
    .ilp-faq dd { margin-top: 18px; padding-left: 121px; font-size: 17.5px; line-height: 1.37; }
    .ilp-faq dd::before { left: 56px; top: -7px; width: 50px; height: 38px; }
    .ilp-faq dd::after { left: 10px; top: -4px; width: 35px; height: 21px; }
    .ilp-faq__chat { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; padding-left: 6px; font-size: 23px; }
    .ilp-faq__chat .ilp-btn { flex: 0 0 206px; margin: 0; }

    /* ⑦ クロージング */
    .ilp-closing {
        grid-template-columns: 367px minmax(0, 1fr) 176px;
        grid-template-areas: "family title laundry" "family cta cta";
        column-gap: 0;
        margin: 0 0 0 -8px;
        align-items: start;
    }
    .ilp-closing__title { padding: 14px 0 0 22px; font-size: 41px; line-height: 1.46; }
    .ilp-closing__laundry { width: 194px; max-width: none; margin: 0 0 0 -13px; }
    .ilp-closing__cta { margin: 14px 0 0; padding-left: 0; }
    .ilp-closing__cta .ilp-btn--wide { width: 100%; padding-inline: 16px; font-size: 24px; white-space: nowrap; }
    .ilp-closing__login { margin-top: 18px; font-size: 25px; }

    /* ⑧ チャット誘導 */
    .ilp-contact { display: flex; align-items: center; justify-content: center; gap: 20px; padding-right: 60px; }
    .ilp-contact__text { gap: 16px; font-size: 25px; line-height: 1.12; }
    .ilp-contact__text img { width: 80px; }
    .ilp-contact .ilp-btn { flex: 0 0 206px; margin: 0; }
}
