@charset "utf-8";

/*----------------------------------------------------------------------------------

営業LP（/for-forwarders/ ・ /for-shippers/）専用スタイル — v2

Claude Designで確定したビジュアル（Forwarder LP v2 / Shipper LP v2）を実装したもの。
既存ページとは配色・タイポグラフィの階層が独立しているため、本体CSS
（oceanfreight.css）には足さずに別ファイルへ分け、functions.php で当該2ページ
だけに読み込む。

v2の特徴：ヒーローに背景色を敷かず、大きな見出しと罫線で構成する。
主CTAは角丸なしのネイビー塗り、補助的な導線だけピル型を使う。

----------------------------------------------------------------------------------*/

.lp {
    --lp-navy: #0E3260;
    --lp-blue: #1B84C8;
    --lp-sky: #8FC6E8;
    --lp-orange: #E8801E;
    --lp-ink: #33475E;
    --lp-ink-soft: #5A6B7D;
    --lp-mute: #8A97A6;
    --lp-line: #E3EAF1;
    --lp-line-soft: #EDF2F7;
    --lp-line-blue: #DCE7F0;
    --lp-bg-soft: #EDF3F8;
    --lp-bg-panel: #F7FAFC;
    --lp-shell: 1120px;
    --lp-en: 'Oswald', 'Roboto Condensed', sans-serif;

    font-family: 'Noto Sans JP', sans-serif;
    color: var(--lp-ink);
    background: #fff;
}

.lp *,
.lp *::before,
.lp *::after {
    box-sizing: border-box;
}

.lp__shell {
    max-width: var(--lp-shell);
    margin-inline: auto;
    padding-inline: 18px;
}

@media screen and (min-width: 768px) {
    .lp__shell {
        padding-inline: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .lp__shell {
        padding-inline: 0;
    }
}

/*---- ボタン ----*/

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 15px 26px;
    background: var(--lp-navy);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    transition: opacity .2s, background-color .2s, color .2s;
}

.lp-btn::after {
    content: '⟶';
    font-family: var(--lp-en);
    font-weight: 400;
}

.lp-btn:hover {
    opacity: .86;
}

.lp-btn:focus-visible {
    outline: 3px solid var(--lp-orange);
    outline-offset: 2px;
}

/* 角丸なしの線ボタン */
.lp-btn--outline {
    background: #fff;
    color: var(--lp-navy);
    border: 2px solid var(--lp-navy);
    padding: 13px 24px;
}

.lp-btn--outline:hover {
    background: var(--lp-navy);
    color: #fff;
    opacity: 1;
}

/* 一覧へ送る補助導線だけピル型 */
.lp-btn--pill {
    border-radius: 999px;
    min-height: 46px;
    padding: 11px 24px;
    font-size: 14px;
}

@media screen and (min-width: 768px) {
    .lp-btn {
        gap: 14px;
        padding: 18px 32px;
        font-size: 16px;
    }

    .lp-btn--outline {
        padding: 16px 30px;
    }

    .lp-btn--pill {
        min-height: 46px;
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* テキストだけの導線 */
.lp-textlink {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-navy);
    text-decoration: none;
}

.lp-textlink:hover {
    color: var(--lp-blue);
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .lp-textlink {
        font-size: 13.5px;
    }
}

/*---- パンくず ----*/

.lp-crumb {
    font-size: 11.5px;
    color: var(--lp-mute);
    letter-spacing: .04em;
    margin: 0 0 14px;
}

.lp-crumb a {
    color: var(--lp-mute);
    text-decoration: none;
}

.lp-crumb a:hover {
    color: var(--lp-blue);
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    .lp-crumb {
        font-size: 12px;
        margin-bottom: 18px;
    }
}

/*---- ヒーロー ----*/
/* 航路詳細ページ（.dest-hero / .route-hero）と同じ「写真＋ネイビーのオーバーレイに
   白文字」の作り。main 側に固定ヘッダー分の margin-top:100px が既にあるので、
   ここでヘッダー分を足す必要はない（600px以下だけは例外。下の注記参照）。 */
.lp-hero {
    position: relative;
    background: var(--lp-navy);
    padding: 0;
    overflow: hidden;
}

.lp-hero__media {
    position: absolute;
    inset: 0;
}

.lp-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
}

/* オーバーレイは航路ページと同じネイビーの階調。写真を見せたいので全体は薄くし、
   文字が乗る左側と下側だけ濃度を残す（白文字のコントラスト比4.5:1を確保するため）。
   右上は写真がほぼそのまま出る。 */
.lp-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 32, 84, 0) 34%, rgba(9, 32, 84, .34) 72%, rgba(9, 32, 84, .46) 100%),
        linear-gradient(100deg, rgba(9, 32, 84, .82) 0%, rgba(9, 32, 84, .52) 42%, rgba(9, 32, 84, .28) 72%, rgba(9, 32, 84, .18) 100%);
}

.lp-hero__body {
    position: relative;
    z-index: 2;
    padding-top: 26px;
    padding-bottom: 30px;
}

/* テーマは max-width:600px で main の margin-top を 0 にしている
   （oceanfreight.css:2315付近）。その幅では固定ヘッダー分をヒーロー側で確保しないと、
   パンくずと 英字の小見出しがヘッダーの下に潜ってしまう。 */
@media screen and (max-width: 600px) {
    .lp-hero__body {
        padding-top: 126px;
    }
}

@media screen and (min-width: 768px) {
    .lp-hero__body {
        padding-top: 44px;
        padding-bottom: 48px;
    }
}

@media screen and (min-width: 1024px) {
    .lp-hero__media img {
        object-position: center 50%;
    }
}

/*---- 写真の上に載る文字・部品の色 ----*/

.lp-hero .lp-crumb,
.lp-hero .lp-crumb a {
    color: rgba(255, 255, 255, .82);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

.lp-hero .lp-crumb a:hover {
    color: #fff;
}

/* 基底の色指定はこの下（ヒーローの節）にあるので、詳細度を上げて確実に上書きする */
.lp-hero .lp-hero__title {
    color: #fff;
    text-shadow: 0 2px 14px rgba(6, 24, 56, .45);
}

.lp-hero .lp-hero__lead {
    color: #EAF2FA;
    text-shadow: 0 1px 8px rgba(6, 24, 56, .55);
}

/* 右半分はオーバーレイが薄く写真が出るので、文字側に影を持たせて読ませる */
.lp-hero .lp-hero__note b {
    color: #fff;
    text-shadow: 0 1px 8px rgba(6, 24, 56, .6);
}

.lp-hero .lp-hero__note span {
    color: #DCEAF6;
    text-shadow: 0 1px 8px rgba(6, 24, 56, .6);
}

/* 積地・コンテナの2項目 */
.lp-hero .lp-facts {
    border-top-color: rgba(255, 255, 255, .35);
}

.lp-hero .lp-facts > div + div {
    border-left-color: rgba(255, 255, 255, .35);
}

.lp-hero .lp-facts dt {
    color: var(--lp-sky);
}

.lp-hero .lp-facts dd {
    color: #fff;
}

.lp-hero .lp-hero__cta p {
    color: #DCEAF6;
}

/* 写真の上では主CTAを白抜きにして視認性を確保する */
.lp-hero .lp-hero__cta .lp-btn {
    background: #fff;
    color: var(--lp-navy);
}

/* 依頼バー・地域パネルは白地のカードとして写真の上に置く */
.lp-hero .lp-req,
.lp-hero .lp-panel {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 18px 40px rgba(6, 24, 56, .22);
}

.lp-hero__eyebrow {
    font-family: var(--lp-en);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .18em;
    color: var(--lp-orange);
    margin: 0;
}

.lp-hero__title {
    margin: 10px 0 0;
    font-size: 34px;
    line-height: 1.28;
    font-weight: 900;
    color: var(--lp-navy);
    letter-spacing: -.01em;
}

.lp-hero__lead {
    margin: 14px 0 0;
    font-size: 13.5px;
    line-height: 1.95;
    color: var(--lp-ink);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-hero__eyebrow {
        font-size: 13.5px;
        letter-spacing: .22em;
    }

    .lp-hero__title {
        margin-top: 20px;
        font-size: 56px;
        line-height: 1.16;
    }

    .lp-hero__lead {
        margin-top: 24px;
        font-size: 17px;
        line-height: 2.05;
    }
}

@media screen and (min-width: 1024px) {
    /* Shipperの見出しは 420px のパネルと横並びになるぶん、収まる大きさに留める */
    .lp-hero__title {
        font-size: 64px;
        line-height: 1.16;
    }

    /* Forwarderの見出しは全幅なので大きく組める */
    .lp-hero__title--wide {
        font-size: 84px;
        line-height: 1.14;
    }
}

/* Forwarder: 見出し下の 2カラム（リード＋役割の但し書き） */
.lp-hero__split {
    margin-top: 16px;
}

.lp-hero__note {
    margin-top: 16px;
    border-left: 3px solid var(--lp-orange);
    padding-left: 14px;
}

.lp-hero__note b {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-navy);
    line-height: 1.7;
    letter-spacing: .03em;
}

.lp-hero__note span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.85;
    color: var(--lp-ink-soft);
}

@media screen and (min-width: 768px) {
    .lp-hero__split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 30px;
        align-items: end;
    }

    .lp-hero__split .lp-hero__lead {
        margin-top: 0;
    }

    .lp-hero__note {
        margin-top: 0;
        padding-left: 20px;
    }

    .lp-hero__note b {
        font-size: 19px;
    }

    .lp-hero__note span {
        font-size: 13.5px;
        line-height: 1.9;
    }
}

@media screen and (min-width: 1024px) {
    .lp-hero__split {
        gap: 56px;
    }
}

/* Shipper: ヒーロー本文と地域パネルの 2カラム */
.lp-hero__grid > * + * {
    margin-top: 24px;
}

@media screen and (min-width: 1024px) {
    .lp-hero__grid {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 56px;
        align-items: start;
    }

    .lp-hero__grid > * + * {
        margin-top: 0;
    }
}

/* 積地・コンテナの 2項目 */
.lp-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 18px 0 0;
    border-top: 1px solid var(--lp-line);
}

.lp-facts > div {
    padding: 12px 12px 0 0;
}

.lp-facts > div + div {
    padding: 12px 0 0 12px;
    border-left: 1px solid var(--lp-line);
}

.lp-facts dt {
    font-family: var(--lp-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--lp-mute);
}

.lp-facts dd {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-navy);
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .lp-facts {
        margin-top: 30px;
    }

    .lp-facts > div {
        padding: 18px 32px 0 0;
    }

    .lp-facts > div + div {
        padding: 18px 0 0 32px;
    }

    .lp-facts dt {
        font-size: 11.5px;
        letter-spacing: .14em;
    }

    .lp-facts dd {
        margin-top: 7px;
        font-size: 15px;
        letter-spacing: .03em;
    }
}

/* ヒーロー直下のCTA＋補足 */
.lp-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.lp-hero__cta .lp-btn {
    width: 100%;
}

.lp-hero__cta p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.9;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-hero__cta {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        margin-top: 30px;
    }

    .lp-hero__cta .lp-btn {
        width: auto;
        flex-shrink: 0;
    }

    .lp-hero__cta p {
        font-size: 13px;
    }
}

/*---- 依頼4項目のバー（Forwarder） ----*/

.lp-req {
    margin: 24px 0 0;
    border: 2px solid var(--lp-navy);
}

.lp-req__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lp-req__cell {
    padding: 12px 14px;
    border-bottom: 1px solid var(--lp-line-blue);
}

.lp-req__cell:nth-child(odd) {
    border-right: 1px solid var(--lp-line-blue);
}

.lp-req__cell dt {
    font-family: var(--lp-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--lp-mute);
}

.lp-req__cell dd {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-navy);
    line-height: 1.5;
}

.lp-req .lp-btn {
    width: 100%;
    min-height: 54px;
}

.lp-req__foot {
    background: var(--lp-bg-panel);
    border-top: 1px solid var(--lp-line-blue);
    padding: 10px 14px;
    font-size: 11.5px;
    line-height: 1.8;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

.lp-req__tags {
    display: none;
}

@media screen and (min-width: 768px) {
    .lp-req {
        margin-top: 40px;
    }

    .lp-req__row {
        display: flex;
        align-items: stretch;
    }

    .lp-req__grid {
        flex: 1;
        grid-template-columns: repeat(4, 1fr);
    }

    .lp-req__cell {
        padding: 16px 18px;
        border-bottom: 0;
        border-right: 1px solid var(--lp-line-blue);
    }

    .lp-req__cell:nth-child(odd) {
        border-right: 1px solid var(--lp-line-blue);
    }

    .lp-req .lp-btn {
        width: auto;
        padding: 0 28px;
        white-space: nowrap;
    }

    .lp-req .lp-btn::after {
        content: '⟶';
    }

    .lp-req__foot {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 6px 20px;
        padding: 11px 20px;
        font-size: 12.5px;
    }

    .lp-req__tags {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 6px 12px;
        font-family: var(--lp-en);
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: .1em;
        color: var(--lp-navy);
    }

    .lp-req__tags > span {
        white-space: nowrap;
    }

    .lp-req__tags i {
        font-style: normal;
        color: #C4D2E0;
    }
}

@media screen and (min-width: 1024px) {
    .lp-req__cell dd {
        font-size: 15px;
    }

    .lp-req__tags {
        gap: 16px;
        font-size: 12px;
        letter-spacing: .12em;
    }
}

/* 写真ヒーローの中では、末尾の余白は .lp-hero__body 側で持つ */
.lp-hero__tail {
    display: none;
}

/*---- セクション ----*/

.lp-sec {
    padding: 40px 0;
    background: #fff;
}

.lp-sec--soft {
    background: var(--lp-bg-soft);
    border-top: 1px solid var(--lp-line-blue);
    border-bottom: 1px solid var(--lp-line-blue);
}


@media screen and (min-width: 768px) {
    .lp-sec {
        padding: 70px 0;
    }
}

/* 見出し行（英語大見出し＋和文＋右の補足） */
.lp-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px 18px;
    border-bottom: 2px solid var(--lp-navy);
    padding-bottom: 12px;
}

.lp-head__main {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 16px;
}

.lp-head__en {
    margin: 0;
    font-family: var(--lp-en);
    font-size: 22px;
    font-weight: 600;
    color: var(--lp-blue);
    letter-spacing: .03em;
    line-height: 1;
}

.lp-head__ja {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--lp-navy);
    letter-spacing: .04em;
}

.lp-head__note {
    font-size: 11.5px;
    color: #7A8798;
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-head {
        padding-bottom: 16px;
    }

    .lp-head__en {
        font-size: 38px;
    }

    .lp-head__ja {
        font-size: 16px;
    }

    .lp-head__note {
        font-size: 12.5px;
    }
}

/* 和文だけの見出し（役割の分担） */
.lp-head--plain .lp-head__jatitle {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: var(--lp-navy);
    letter-spacing: .02em;
    line-height: 1.5;
}

.lp-head--plain .lp-head__note {
    font-family: var(--lp-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--lp-mute);
}

@media screen and (min-width: 768px) {
    .lp-head--plain .lp-head__jatitle {
        font-size: 32px;
        line-height: 1.4;
    }

    .lp-head--plain .lp-head__note {
        font-size: 12.5px;
        letter-spacing: .16em;
    }
}

.lp-fine {
    margin: 14px 0 0;
    font-size: 11.5px;
    line-height: 1.9;
    color: var(--lp-mute);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-fine {
        font-size: 12px;
    }
}

/*---- 役割の分担（Forwarder / ネイビー面） ----*/

.lp-role {
    display: grid;
    margin-top: 14px;
}

.lp-role__col {
    padding: 13px 0;
    border-bottom: 1px dashed #B9C9D8;
}

.lp-role__col:last-child {
    border-bottom: 0;
}

.lp-role__label {
    font-family: var(--lp-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--lp-mute);
}

.lp-role__col--you .lp-role__label {
    color: var(--lp-orange);
}

.lp-role__name {
    margin: 5px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-navy);
    letter-spacing: .03em;
    line-height: 1.6;
}

.lp-role__body {
    margin: 6px 0 0;
    font-size: 12.5px;
    line-height: 1.85;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

.lp-role__col--you .lp-role__body {
    color: var(--lp-ink);
}

@media screen and (min-width: 768px) {
    .lp-role {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 32px;
    }

    .lp-role__col {
        padding: 0 32px;
        border-bottom: 0;
    }

    .lp-role__col:first-child {
        padding-left: 0;
    }

    .lp-role__col:last-child {
        padding-right: 0;
    }

    .lp-role__col--you {
        border-left: 1px dashed #B9C9D8;
        border-right: 1px dashed #B9C9D8;
    }

    .lp-role__label {
        font-size: 12px;
        letter-spacing: .16em;
    }

    .lp-role__name {
        margin-top: 10px;
        font-size: 22px;
    }

    .lp-role__body {
        margin-top: 14px;
        font-size: 13.5px;
        line-height: 2;
    }
}

/* SPOT OK / FIRST TIME OK の帯（いずれも淡色面に置く） */
.lp-callout {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
    background: #fff;
    border-left: 3px solid var(--lp-orange);
    padding: 14px 16px;
}

.lp-callout__tag {
    font-family: var(--lp-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--lp-orange);
    white-space: nowrap;
}

.lp-callout__body {
    font-size: 13px;
    line-height: 1.9;
    color: var(--lp-ink);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-callout {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        margin-top: 30px;
        padding: 16px 20px;
    }

    .lp-callout__tag {
        font-size: 11.5px;
    }

    .lp-callout__body {
        font-size: 14px;
    }
}

/*---- 地域タブ（Forwarder） ----*/

.lp-tabs {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    border-bottom: 1px solid var(--lp-line);
    overflow-x: auto;
    scrollbar-width: none;
}

.lp-tabs::-webkit-scrollbar {
    display: none;
}

.lp-tab {
    flex-shrink: 0;
    padding: 0 2px 9px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: none;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 700;
    color: #7A8798;
    letter-spacing: .04em;
    white-space: nowrap;
    cursor: pointer;
}

.lp-tab:hover {
    color: var(--lp-navy);
}

.lp-tab[aria-selected="true"] {
    color: var(--lp-navy);
    border-bottom-color: var(--lp-orange);
}

.lp-tab:focus-visible {
    outline: 3px solid var(--lp-orange);
    outline-offset: 2px;
}

@media screen and (min-width: 768px) {
    .lp-tabs {
        gap: 26px;
        margin-top: 20px;
    }

    .lp-tab {
        padding-bottom: 12px;
        font-size: 13.5px;
    }
}

/*---- 仕向地リスト ----*/

.lp-ports {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-ports__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-line);
    text-decoration: none;
    transition: background-color .2s;
}

.lp-ports__link:hover {
    background: var(--lp-bg-panel);
}

.lp-ports__link:focus-visible {
    outline: 3px solid var(--lp-orange);
    outline-offset: -3px;
}

.lp-ports__name {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-ports__port {
    font-size: 17px;
    font-weight: 700;
    color: var(--lp-navy);
    letter-spacing: .04em;
}

.lp-ports__sub {
    font-size: 11px;
    color: var(--lp-mute);
    letter-spacing: .05em;
}

.lp-ports__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.lp-ports__days {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-ink);
    white-space: nowrap;
}

.lp-ports__go {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-blue);
    white-space: nowrap;
}

@media screen and (min-width: 1024px) {
    .lp-ports {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 56px;
    }
}

@media screen and (min-width: 768px) {
    .lp-ports__link {
        padding: 17px 0;
    }

    .lp-ports__name {
        flex-direction: row;
        align-items: baseline;
        gap: 14px;
    }

    .lp-ports__port {
        font-size: 20px;
    }

    .lp-ports__sub {
        font-size: 12px;
        letter-spacing: .06em;
    }

    .lp-ports__meta {
        gap: 16px;
    }

    .lp-ports__days {
        font-size: 13.5px;
        letter-spacing: .04em;
    }

    .lp-ports__go {
        font-size: 12.5px;
    }
}

/* Shipperの1カラム版 */
.lp-ports--single {
    display: block;
}

.lp-ports--single .lp-ports__link {
    padding: 14px 0;
}

@media screen and (min-width: 768px) {
    .lp-ports--single .lp-ports__port {
        font-size: 18px;
    }
}

.lp-ports__foot {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

@media screen and (min-width: 768px) {
    .lp-ports__foot {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-top: 24px;
    }

    .lp-ports__foot .lp-fine {
        margin: 0;
        flex: 1;
    }

    .lp-ports__foot .lp-btn {
        flex-shrink: 0;
    }
}

/*---- SOC / SEA+INLAND の 2カラム（Forwarder） ----*/

.lp-duo {
    display: grid;
    margin-top: 28px;
    border-top: 1px solid var(--lp-line);
}

.lp-duo__col {
    padding: 22px 0 0;
}

.lp-duo__col + .lp-duo__col {
    border-top: 1px solid var(--lp-line);
    margin-top: 22px;
}

.lp-duo__head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.lp-duo__en {
    font-family: var(--lp-en);
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-blue);
    letter-spacing: .04em;
}

.lp-duo__ja {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lp-navy);
    letter-spacing: .03em;
}

.lp-duo__body {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.95;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

.lp-duo__col .lp-textlink {
    margin-top: 10px;
}

@media screen and (min-width: 768px) {
    .lp-duo {
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
    }

    .lp-duo__col {
        padding: 28px 40px 0 0;
        border-right: 1px solid var(--lp-line);
    }

    .lp-duo__col + .lp-duo__col {
        padding: 28px 0 0 40px;
        border-top: 0;
        border-right: 0;
        margin-top: 0;
    }

    .lp-duo__en {
        font-size: 22px;
    }

    .lp-duo__ja {
        font-size: 13.5px;
    }

    .lp-duo__body {
        margin-top: 12px;
        font-size: 14px;
        line-height: 2;
    }

    .lp-duo__col .lp-textlink {
        margin-top: 12px;
    }
}

/* 内陸国のリスト */
.lp-inland {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.lp-inland__link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--lp-line-soft);
    text-decoration: none;
}

.lp-inland__link:hover .lp-inland__lane {
    color: var(--lp-blue);
}

.lp-inland__link:focus-visible {
    outline: 3px solid var(--lp-orange);
    outline-offset: -3px;
}

.lp-inland__name {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.lp-inland__en {
    font-family: var(--lp-en);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--lp-navy);
    letter-spacing: .05em;
}

.lp-inland__jp {
    font-size: 11px;
    font-weight: 700;
    color: #7A8798;
}

.lp-inland__lane {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--lp-ink);
    text-align: right;
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-inland__link {
        padding: 11px 0;
    }

    .lp-inland__en {
        font-size: 15px;
    }

    .lp-inland__jp {
        font-size: 12px;
    }

    .lp-inland__lane {
        font-size: 12.5px;
        letter-spacing: .04em;
    }
}

/*---- こんなご相談から（Forwarder） ----*/

.lp-cases {
    margin-top: 0;
}

.lp-cases__intro h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 900;
    color: var(--lp-navy);
    letter-spacing: .02em;
    line-height: 1.55;
}

.lp-cases__intro p {
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.95;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

.lp-cases__list {
    margin: 16px 0 0;
}

.lp-cases__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #D4E1EC;
}

.lp-cases__en {
    font-family: var(--lp-en);
    font-size: 11px;
    font-weight: 600;
    color: var(--lp-navy);
    letter-spacing: .08em;
    padding-top: 2px;
    line-height: 1.5;
}

.lp-cases__jp {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
    color: var(--lp-ink);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-cases {
        display: grid;
        grid-template-columns: 330px 1fr;
        gap: 56px;
        align-items: start;
    }

    .lp-cases__intro h2 {
        font-size: 28px;
    }

    .lp-cases__intro p {
        margin-top: 16px;
        font-size: 13.5px;
        line-height: 2;
    }

    .lp-cases__list {
        margin-top: 0;
    }

    .lp-cases__item {
        grid-template-columns: 150px 1fr;
        gap: 24px;
        padding: 18px 0;
    }

    .lp-cases__en {
        font-size: 13px;
        padding-top: 0;
    }

    .lp-cases__jp {
        font-size: 14.5px;
        line-height: 1.85;
    }
}

/*---- 最終CTA ----*/

.lp-final__head {
    border-bottom: 2px solid var(--lp-navy);
    padding-bottom: 22px;
}

.lp-final__title {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    color: var(--lp-navy);
    letter-spacing: .01em;
    line-height: 1.45;
}

.lp-final__body {
    margin: 14px 0 0;
    font-size: 13.5px;
    line-height: 1.95;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

.lp-final__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

.lp-final__actions .lp-btn {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .lp-final__head {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 56px;
        align-items: end;
        padding-bottom: 30px;
    }

    .lp-final__title {
        font-size: 34px;
        line-height: 1.45;
    }

    .lp-final__body {
        margin-top: 16px;
        font-size: 15px;
        line-height: 2;
    }

    .lp-final__actions {
        margin-top: 0;
    }
}

@media screen and (min-width: 1024px) {
    .lp-final__title {
        font-size: 40px;
    }
}

/* FORM / MY PAGE / GUIDE の3カラム */
.lp-ways {
    display: grid;
    margin-top: 18px;
}

.lp-ways__col {
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-ways__col:last-child {
    border-bottom: 0;
}

.lp-ways__label {
    font-family: var(--lp-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--lp-mute);
}

.lp-ways__title {
    margin: 7px 0 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-navy);
    letter-spacing: .03em;
}

.lp-ways__body {
    margin: 6px 0 0;
    font-size: 12.5px;
    line-height: 1.85;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-ways {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 26px;
    }

    .lp-ways__col {
        padding: 0 32px;
        border-bottom: 0;
        border-right: 1px solid var(--lp-line);
    }

    .lp-ways__col:first-child {
        padding-left: 0;
    }

    .lp-ways__col:last-child {
        padding-right: 0;
        border-right: 0;
    }

    .lp-ways__label {
        font-size: 11.5px;
    }

    .lp-ways__title {
        margin-top: 8px;
        font-size: 15px;
    }
}

/*---- 依頼4項目のグリッド（Shipper / ネイビー面） ----*/

.lp-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 16px 0 0;
    background: #fff;
    border-top: 1px solid var(--lp-line-blue);
    border-left: 1px solid var(--lp-line-blue);
}

.lp-items > div {
    padding: 14px;
    border-right: 1px solid var(--lp-line-blue);
    border-bottom: 1px solid var(--lp-line-blue);
}

.lp-items dt {
    font-family: var(--lp-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--lp-mute);
}

.lp-items dd {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-navy);
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .lp-items > div {
        padding: 20px;
    }

    .lp-items dt {
        font-size: 11.5px;
    }

    .lp-items dd {
        margin-top: 8px;
        font-size: 15px;
    }
}

.lp-contact__title {
    margin: 0;
    font-size: 23px;
    font-weight: 900;
    color: var(--lp-navy);
    line-height: 1.5;
    letter-spacing: .02em;
}

.lp-contact__body {
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.95;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

.lp-contact__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.lp-contact__actions .lp-btn {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .lp-contact {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 56px;
        align-items: center;
    }

    .lp-contact__title {
        font-size: 32px;
        line-height: 1.45;
    }

    .lp-contact__body {
        margin-top: 18px;
        font-size: 15px;
        line-height: 2;
    }

    .lp-contact__actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 26px;
    }

    .lp-contact__actions .lp-btn {
        width: auto;
    }

    .lp-items {
        margin-top: 0;
    }
}

@media screen and (min-width: 1024px) {
    .lp-contact__title {
        font-size: 38px;
    }
}

/*---- 地域パネル（Shipper） ----*/

.lp-panel {
    border: 2px solid var(--lp-navy);
}

.lp-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 16px;
    background: var(--lp-navy);
}

.lp-panel__title {
    margin: 0;
    font-family: var(--lp-en);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .14em;
    color: #fff;
}

.lp-panel__sub {
    font-size: 11px;
    color: #A9C4DC;
}

.lp-regions {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-regions__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--lp-line-soft);
    text-decoration: none;
    transition: background-color .2s;
}

.lp-regions__link:hover {
    background: var(--lp-bg-panel);
}

.lp-regions__link:focus-visible {
    outline: 3px solid var(--lp-orange);
    outline-offset: -3px;
}

.lp-regions__en {
    display: block;
    font-family: var(--lp-en);
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-navy);
    letter-spacing: .06em;
}

.lp-regions__jp {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    color: #7A8798;
    letter-spacing: .04em;
}

.lp-regions__go {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-blue);
    white-space: nowrap;
}

.lp-panel__foot {
    padding: 13px 16px;
    background: var(--lp-bg-panel);
    font-size: 11.5px;
    line-height: 1.85;
    color: var(--lp-ink-soft);
}

@media screen and (min-width: 768px) {
    .lp-panel__head {
        padding: 15px 20px;
    }

    .lp-panel__title {
        font-size: 13px;
    }

    .lp-regions__link {
        padding: 15px 20px;
    }

    .lp-regions__en {
        font-size: 15px;
    }

    .lp-regions__jp {
        margin-top: 3px;
        font-size: 12px;
    }

    .lp-regions__go {
        font-size: 12.5px;
    }

    .lp-panel__foot {
        padding: 14px 20px;
        font-size: 12px;
    }
}

/*---- 工程（Shipper） ----*/

.lp-steps {
    display: grid;
    margin-top: 14px;
    background: #fff;
    border: 1px solid var(--lp-line);
}

.lp-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    border-bottom: 1px solid var(--lp-line);
}

.lp-step:last-child {
    border-bottom: 0;
}

.lp-step__n {
    font-family: var(--lp-en);
    font-size: 11.5px;
    font-weight: 600;
    color: #9AAABA;
    letter-spacing: .1em;
    padding: 14px 0 14px 14px;
}

.lp-step__text {
    padding: 14px 14px 14px 0;
}

.lp-step__title {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--lp-navy);
    line-height: 1.6;
    letter-spacing: .03em;
}

.lp-step__note {
    display: block;
    margin-top: 3px;
    font-size: 11.5px;
    line-height: 1.75;
    color: var(--lp-ink-soft);
}

@media screen and (min-width: 768px) {
    .lp-steps {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 26px;
        border-color: var(--lp-line-blue);
    }

    .lp-step {
        display: block;
        border-bottom: 1px solid var(--lp-line);
        border-right: 1px solid var(--lp-line);
        padding: 20px 16px;
    }

    .lp-step:nth-child(3n) {
        border-right: 0;
    }

    .lp-step:nth-last-child(-n+3) {
        border-bottom: 0;
    }

    .lp-step__n {
        display: block;
        padding: 0;
        font-size: 12.5px;
        letter-spacing: .12em;
    }

    .lp-step__text {
        padding: 0;
    }

    .lp-step__title {
        margin-top: 10px;
        font-size: 15px;
    }

    .lp-step__note {
        margin-top: 8px;
        font-size: 12.5px;
        line-height: 1.9;
    }
}

@media screen and (min-width: 1024px) {
    .lp-steps {
        grid-template-columns: repeat(6, 1fr);
    }

    .lp-step {
        padding: 24px 18px;
        border-bottom: 0;
    }

    .lp-step:nth-child(3n) {
        border-right: 1px solid var(--lp-line);
    }

    .lp-step:last-child {
        border-right: 0;
    }
}

/*---- 取扱い（Shipper） ----*/

.lp-split2 {
    display: grid;
    gap: 34px;
}

@media screen and (min-width: 1024px) {
    .lp-split2 {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: start;
    }
}

.lp-spec {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-spec li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-spec__type {
    font-size: 17px;
    font-weight: 700;
    color: var(--lp-navy);
    letter-spacing: .04em;
}

.lp-spec__sub {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--lp-mute);
    margin-left: 10px;
}

.lp-spec__use {
    font-size: 12.5px;
    color: var(--lp-ink);
    text-align: right;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {
    .lp-spec li {
        padding: 18px 0;
    }

    .lp-spec__type {
        font-size: 20px;
    }

    .lp-spec__sub {
        font-size: 12px;
        margin-left: 12px;
    }

    .lp-spec__use {
        font-size: 13.5px;
    }
}

.lp-note {
    margin: 14px 0 0;
    background: #F1F6FA;
    border-left: 3px solid var(--lp-blue);
    padding: 13px 15px;
    font-size: 12.5px;
    line-height: 1.9;
    color: var(--lp-ink);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-note {
        margin-top: 16px;
        padding: 16px 18px;
        font-size: 13px;
        line-height: 1.95;
    }
}

.lp-body {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.95;
    color: var(--lp-ink-soft);
    letter-spacing: .03em;
}

@media screen and (min-width: 768px) {
    .lp-body {
        margin-top: 18px;
        font-size: 14px;
        line-height: 2;
    }
}

/*---- モバイル固定CTA ----*/

.lp-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: flex;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--lp-line);
    box-shadow: 0 -4px 16px rgba(14, 50, 96, .1);
}

.lp-sticky .lp-btn {
    min-height: 48px;
    padding: 10px 16px;
    font-size: 14px;
}

.lp-sticky .lp-btn::after {
    content: none;
}

.lp-sticky .lp-btn:first-child {
    flex: 1;
}

.lp-sticky .lp-btn--outline {
    flex-shrink: 0;
    padding: 8px 16px;
}

@media screen and (min-width: 768px) {
    .lp-sticky {
        display: none;
    }
}

/* 固定CTAがフッターの最終行に重ならないようにする */
body.for-forwarders footer,
body.for-shippers footer,
body.for-shippers-2 footer {
    padding-bottom: 76px;
}

@media screen and (min-width: 768px) {
    body.for-forwarders footer,
    body.for-shippers footer,
    body.for-shippers-2 footer {
        padding-bottom: 0;
    }
}
