/*
 Theme Name: Quickry LP
 Theme URI:  https://example.com/
 Author:     Your Name
 Version:    1.0
 Description: 静的 LP をそのまま WP テーマ化
 Text Domain: quickry-lp
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.5;
    color: #1C1E24;
    letter-spacing: 0.1rem;
}

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

ul {
    list-style: none;
}


/* Helpers */

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.marker {
    background-image: linear-gradient(#FFF079 0 0);
    /* #ff6 = 黄色マーカー */
    background-repeat: no-repeat;
    /* ❷ “横100%・高さ0.6em” に切り取ってテキスト行の下に敷く */
    background-size: 100% 0.6em;
    /* 太さを調整 */
    background-position: 0 90%;
    /* 90%＝行の下ギリギリ */
    /* ❸ インライン要素にして横幅＝文字列の幅だけにする */
    display: inline-block;
    /* ←これが効くポイント */
    padding: 0 4px;
    /* 端が切れないように少し余白 */
    font-weight: 700;
    /* お好みで */
    font-size: 1.2rem;
    /* お好みで */
}

.btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 40px;
    white-space: nowrap;
    font-size: .95rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .25s, box-shadow .25s, background-position .4s;
}

.btn:hover,
.cta-btn:hover {
    transform: translateY(-3px) scale(1.04);
    /* 浮いて拡大 4 % */
    box-shadow: 0 8px 24px rgba(0, 130, 226, 0.16);
    /* 影で浮遊感    */
    background-position: 100% 0;
    /* グラデが流れる */
}

.btn:hover::after {
    transform: translateX(100%);
    opacity: .5;
}

.btn svg {
    display: block;
    /* ← 行間ギャップを消す */
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.gradient_bg {
    background: linear-gradient(90deg, #69CBFF, #1B82F8);
    color: #fff;
    background-size: 100% 100%;
}

.blue_bg {
    background: #EFF8FF;
    padding: 160px 0;
}

.br-sp {
    display: none;
}

@media (max-width: 760px) {
    .br-sp {
        display: block;
    }
    .blue_bg {
        padding: 80px 0;
    }
}


/* ==================================================
       1. Header
    ================================================== */


/* ===== Header / Navigation ===== */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    margin: 24px auto 0;
}

.nav-pod {
    width: calc(100% - 48px);
    /* edge breathing room on small screens */
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #fff;
    border-radius: 9999px;
    /* BIG rounded pill */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 72px;
    /* keep it compact & consistent */
}


/* --- logo --- */

.nav-pod .logo {
    display: flex;
    align-items: center;
}

.nav-pod .logo img {
    height: 32px;
    width: 113px;
}


/* --- navigation links --- */

.nav-list {
    display: flex;
    gap: 24px;
    font-weight: 700;
    font-size: 0.8875rem;
    margin-left: 10px;
}

.nav-list a {
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(83, 183, 253, 1) 0%, rgba(27, 130, 248, 1) 100%);
    border-radius: 2px;
    transition: width 0.25s;
}

.nav-list a:hover::after {
    width: 100%;
}


/* --- CTA buttons --- */

.cta-wrap {
    display: flex;
    gap: 16px;
}

.cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 40px;
    white-space: nowrap;
    font-size: 1rem;
    box-shadow: 0px 2px 10px rgba(27, 130, 248, 0.2);
}


/* gradient vs blue */

.cta-primary {
    background: linear-gradient(90deg, #FFC72F 0%, #FF8B00 100%);
    color: #fff;
}

.cta-secondary {
    background: linear-gradient(90deg, rgba(83, 183, 253, 1) 0%, rgba(27, 130, 248, 1) 100%);
    color: #fff;
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}


/* --- responsive tweaks --- */

@media (max-width: 900px) {
    .nav-list {
        gap: 32px;
        font-size: 0.85rem;
    }
    .cta-btn {
        padding: 12px 22px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        display: none;
    }
}

@media (min-width: 641px) and (max-width: 1060px) {
    .nav-list {
        display: none;
    }
    .nav-pod {
        justify-content: space-between;
        /* ← even-space → space-between */
        padding: 0 32px;
        /*   optional：左右にゆとり   */
    }
}


/* ==================================================
       2. Hero
    ================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 160px 72px 80px;
}


/* 横並び */

.hero-inner {
    display: flex;
    align-items: center;
    gap: 0px;
    z-index: 100;
    position: relative;
}

.hero-copy {
    flex: 0 0 576px;
}


/* モック画像列 */

.hero-mock {
    margin-left: -100px;
}

.hero-mock img {
    width: 755px;
    height: 504px;
    display: block;
}

.pill {
    display: inline-block;
    background: #fff;
    color: #53B7FD;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 12px 26px;
    border-radius: 10px;
    margin-bottom: 24px;
    position: relative;
}

.pill::after {
    content: "";
    position: absolute;
    left: 30%;
    transform: translateX(-50%);
    bottom: -23px;
    /* 三角の高さ分だけ下へ */
    width: 0;
    height: 0;
    border: 14px solid transparent;
    border-top-color: #fff;
    /* pill と同じ背景色 */
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 48px;
    max-width: 500px;
    line-height: 1.8;
}

.btn-hero {
    padding: 26px 128px;
    font-size: 1.5rem;
}

.btn-hero img {
    width: 20px;
}

.hero .blur {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 0;
}


/* 例① 右上用 */

.hero .blur.left {
    left: -100px;
    top: 10%;
}


/* 例② 下中央用（小さめ） */

.hero .blur.right {
    right: 0;
}

.sp-header {
    display: none;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 16px 64px;
    }
    /* ② レイアウトを縦並びに変更 */
    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 24px;
        /* コピーとモックの間隔 */
    }
    /* ③ コピーまわり */
    .hero-copy {
        flex: none;
        /* 幅制約を解除 */
        max-width: 640px;
        margin: 0 auto;
    }
    .pill {
        display: none;
    }
    .hero h1 {
        font-size: 2.125rem;
        line-height: 1.35;
        margin-bottom: 12px;
        text-align: left;
    }
    .hero p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 24px;
        text-align: left;
    }
    .btn-hero {
        width: 100%;
        padding: 24px 0;
    }
    /* ④ モック画像 */
    .hero-mock {
        margin: 0 auto;
    }
    .hero-mock img {
        width: 90vw;
        /* 画面幅の 90 % */
        height: auto;
        max-width: 600px;
        /* タブレットでも大き過ぎないよう */
    }
    /* ⑤ 背景ぼかしの位置を調整（任意） */
    .hero .blur.left {
        left: -200px;
        top: -100px;
    }
    .hero .blur.right {
        right: -100px;
        bottom: -120px;
    }
    .sp-header {
        display: block;
    }
    .sp-header p {
        text-align: center !important;
        font-size: 0.875rem;
        margin: 8px 0 24px !important;
    }
    .sp-header img {
        width: 70vw;
        margin: auto;
    }
}


/* ==================================================
       3. Pain points card
    ================================================== */

.pain-card {
    background: #fff;
    border-radius: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 160px;
    color: #1C1E24;
    padding: 56px 0 80px;
    position: relative;
}

.pain-card h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.callouts {
    position: relative;
    display: inline-block;
}

.callout {
    background: #fff;
    border: 3px solid #1C1E24;
    border-radius: 16px;
    padding: 24px 30px;
    position: absolute;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1000;
}

.callout strong {
    color: #f31260;
    display: block;
    margin-bottom: 4px;
    font-weight: 900;
    font-size: 1.5rem;
}

.callout_1 {
    top: 7px;
    left: -238px;
}

.callout_2 {
    top: 100px;
    right: -240px;
}

.callout_3 {
    bottom: -17px;
    left: -165px;
}

.staff-illust {
    width: 330px;
    height: 336px;
    z-index: 10;
}

.pain-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -117px;
    transform: translateX(-50%);
    width: 290px;
    height: 69px;
    background: url("img/arrow.svg") center/contain no-repeat;
    pointer-events: none;
}

@media (min-width: 641px) and (max-width: 1060px) {
    .reason {width: 90%;}
}

@media (max-width: 768px) {
    /* ── 痛みセクション全体 ───────────────────────── */
    .pain-card {
        border-radius: 32px;
        padding: 40px 32px;
        margin: 0 16px 140px;
    }
    /* 見出しサイズをやや縮小 */
    .pain-card h2 {
        font-size: 1.75rem;
        line-height: 1.4;
        margin-bottom: 16px;
    }
    /* ── イラスト ────────────────────────────── */
    .staff-illust {
        display: block;
        /* 浮かせず通常フローで中央寄せ */
        margin: 0 auto -32px;
        width: 80%;
        /* 画面に合わせて縮小 */
        height: auto;
    }
    /* ── 吹き出し(=callout) ３枚 ───────────────── */
    .callouts {
        position: static;
        /* 位置合わせをリセット */
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .callout {
        position: static;
        /* absolute→通常フロー */
        padding: 24px 0px;
        border-width: 2px;
        /* 枠線を細く */
        font-size: .875rem;
        line-height: 1.6;
    }
    .callout strong {
        font-size: 1.25rem;
        margin-bottom: 4px;
    }
    /* 既存の “左右ズラし” 用クラスは無効化して OK */
    .callout_1,
    .callout_2,
    .callout_3 {
        inset: auto !important;
    }
    /* ── セクション下の▼矢印 ───────────────────── */
    .pain-card::after {
        width: 230px;
        height: 100px;
        bottom: -112px;
    }
}


/* ==================================================
       4. Solution section
    ================================================== */

.solution-section {
    text-align: center;
}

.solution-section .solution-title::before,
.solution-section .solution-title::after {
    content: "";
    position: absolute;
    bottom: 8px;
    width: 35px;
    height: 48px;
    background: url("img/title_accent.svg") center/contain no-repeat;
}

.solution-title::before {
    left: 190px;
}

.solution-title::after {
    right: 190px;
    transform: scaleX(-1);
}


/* 反転して右側へ */

.sol-wrap {
    position: relative;
    /* ★ 基準点 */
}

.sol-chara {
    position: absolute;
    top: -148px;
    /* ← .solutions に対する相対位置 */
    background: center/contain no-repeat;
    pointer-events: none;
    z-index: 5;
    /* カード(10)より小 ⇒ “裏側” */
}

.sol-chara.left {
    width: 109.48px;
    height: 165.07px;
    left: 32px;
    background-image: url('img/solution_chara1.webp');
}

.sol-chara.right {
    width: 105px;
    height: 168.57px;
    right: 32px;
    background-image: url('img/solution_chara2.webp');
}

.solutions {
    background: #fff;
    color: #1C1E24;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    border-radius: 24px;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 100;
    padding: 0 32px;
}

.solution {
    position: relative;
    /* 仕切り線の基準 */
    flex: 1 1 0;
    /* 等幅 */
    padding: 48px 8px;
    max-width: 360px;
}

.divider {
    flex: 0 0 2px;
    background: #E3E3E3;
    opacity: .7;
    margin: 50px 0;
}

.solution img {
    width: 218px;
    height: 188px;
    margin-bottom: 16px;
}

.solution h3 {
    font-size: 1.625rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #149EFF;
}

.solution p {
    font-size: 0.875rem;
}

.solution-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    position: relative;
}

.solution-title span.big {
    font-size: 3.5rem;
}

.solution-title .line {
    display: block;
    /* starts new line */
    margin: -0.35em 0;
    /* consistent vertical gap */
}

.solution-title .line-sp {
    display: inline;
    /* starts new line */
}

@media (max-width: 768px) {
    /* ① カード全体を縦並びに */
    .solutions {
        flex-direction: column;
        /* 横→縦 */
        gap: 32px;
        /* 要素間スペース */
        border-radius: 32px;
        padding: 48px 16px;
        margin: 0 16px;
    }
    /* ② 各ブロックの余白を調整 */
    .solution {
        max-width: none;
        /* 幅制限を解除 */
        padding: 0 8px;
    }
    /* ③ アイキャッチ画像を縮小して中央に */
    .solution img {
        width: 75%;
        /* 画面幅に合わせて可変 */
        height: auto;
        margin: 0 auto 12px;
    }
    /* ④ 区切り線を「横線」にする */
    .divider {
        width: 80%;
        /* 横方向の長さ */
        height: 2px;
        /* 太さ */
        margin: 0 auto;
        /* 中央寄せ */
        background: #E3E3E3;
        opacity: .8;
    }
    .solution-title .line-sp {
        display: block;
    }
    .solution h3 {
        font-size: 1.75rem;
    }
    .solution p {
        font-size: .9rem;
    }
    .solution-title .line {
        margin-bottom: -1.1rem;
    }
    /* ⑥ 両脇のキャラは非表示（既に書いていれば不要）*/
    .sol-chara {
        display: none;
    }
    .negative {
        margin-top: -0.5rem;
    }
    .solution-title::before {
        left: 35px;
    }
    .solution-title::after {
        right: 40px;
    }
}


/* ==================================================
       5. Reasons section
    ================================================== */

.reasons-section {
    padding: 120px 0 80px;
}

.reasons-section h2 {
    margin-bottom: 40px;
}

.reason-list {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.reason {
    display: flex;
    gap: 64px;
    align-items: center;
    background: #fff;
    color: #1C1E24;
    border-radius: 24px;
    padding: 0 56px;
    height: 320px;
    width: 1000px;
    margin: auto;
}

.reason img {
    width: 290px;
    flex-shrink: 0;
}

.reason h3 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #149EFF;
}

.reason p {
    font-size: 1rem;
    line-height: 1.75;
}

@media (min-width: 641px) and (max-width: 1060px) {
    .reason {width: 90%;}
}

@media (max-width: 768px) {
    /* セクション間余白を少し詰める */
    .reasons-section {
        padding: 80px 0;
    }
    .reasons-section h2 {
        line-height: 1.35;
        margin-bottom: 32px;
    }
    /* ── カード全体 ─────────────────── */
    .reason-list {
        display: flex;
        /* グリッド → 1カラム縦並び */
        flex-direction: column;
        gap: 32px;
        /* カード間の余白 */
        padding: 0 16px;
        /* 左右マージン */
    }
    .reason {
        flex-direction: column;
        /* 画像 ⇧ テキスト ⇩ の縦並び */
        height: auto;
        /* 高さ固定を解除 */
        width: 100%;
        padding: 40px;
        gap: 16px;
        border-radius: 32px;
    }
    /* ── 画像 ─────────────── */
    .reason img {
        width: 90%;
        /* 画面幅に合わせて縮小 */
        height: auto;
    }
    /* ── 見出し & テキスト ───── */
    .reason h3 {
        font-size: 1.75rem;
        text-align: center;
    }
    .reason p {
        font-size: 0.875rem;
        line-height: 1.5;
        text-align: left;
    }
}


/* ==================================================
       6. Feature badges row
    ================================================== */

.features-badges {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    color: #fff;
    margin: 40px auto 0;
}

.feature-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feature-heading {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: .05em;
}

.badge-grid {
    display: flex;
    gap: 12px;
    list-style: none;
}

.badge {
    width: 150px;
    height: 180px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #149EFF;
}

.badge img {
    width: 88px;
    height: auto
}

.badge span {
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
}

.badge span {
    font-size: 0.875rem;
}

.feature-notice {
    padding: 40px 40px 120px;
    text-align: center;
    font-size: 1rem;
}


/* ==================================================
       7. CTA banner (orange)
    ================================================== */

.cta-banner {
    background: linear-gradient(135deg, #ffbe4e 0%, #ff8900 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}


/* オレンジのぼかし丸 */

.cta-banner::before,
.cta-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    filter: blur(0px);
}

.cta-banner::before {
    width: 480px;
    height: 480px;
    right: 10%;
    top: 60px
}

.cta-banner::after {
    width: 240px;
    height: 240px;
    left: 30%;
    bottom: -120px
}


/* 横並び 2 カラム */

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    z-index: 100;
    position: relative;
}

.cta-illust {
    flex: 0 0 250px;
    background: #fff;
    border-radius: 32px;
    padding: 24px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-illust img {
    width: 122px;
    height: auto
}

.cta-copy {
    text-align: left
}

.cta-copy h3 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 24px
}

.cta-copy .cta-btn {
    padding: 24px 0;
    font-size: 1.5rem;
}

.cta-copy .cta-btn img {
    width: 20px;
}

@media (max-width: 768px) {
    /* バナーの上下余白を詰める */
    .cta-banner {
        padding: 48px 0;
    }
    /* ─ 1) レイアウトを 1 カラム縦積みに ─ */
    .cta-inner {
        flex-direction: column;
        /* ←❶横→縦 */
        gap: 16px;
        /* 余白を少し狭く */
        text-align: center;
        /* 中央揃え */
    }
    /* ─ 2) イラスト ─ */
    .cta-illust {
        flex: 0 0 auto;
        width: 220px;
        height: 220px;
        padding: 24px;
        border-radius: 32px;
    }
    .cta-illust img {
        width: 100px;
    }
    /* ─ 3) 見出し ─ */
    .cta-copy h3 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    /* ─ 4) ボタン ─ */
    .cta-copy .cta-btn {
        width: 100%;
        max-width: 420px;
        /* iPhone SE 幅でも収まる */
        font-size: 1.25rem;
        padding: 20px 0;
        justify-content: center;
    }
    .cta-copy .cta-btn img {
        width: 18px;
    }
    /* ─ 5) 背景のボケ丸を縮小＆位置調整 ─ */
    .cta-banner::before {
        width: 320px;
        height: 320px;
        right: -60px;
        top: 40px;
    }
    .cta-banner::after {
        width: 180px;
        height: 180px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -90px;
    }
}


/* ---------- CTA banner orange ---------- */

.cta-banner-orange {
    background: url("img/cta-bg.webp") center / 800px no-repeat, linear-gradient(135deg, rgba(255, 196, 90) 0%, rgba(246, 135, 0) 100%);
    color: #fff;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-orange h2 {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 24px;
}

.cta-banner-orange p {
    font-size: 1rem;
    margin-bottom: 48px;
    font-weight: 400;
}


/* ボタンを大きく＆余白そろえ */

.cta-banner-orange .btn {
    padding: 24px 72px;
    font-size: 1.5rem;
    border-radius: 56px;
}

.cta-banner-orange .btn+.btn {
    margin-left: 24px;
}


/* 中身を中央寄せにする */

.cta-banner-orange .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-banner-orange a {
    border: 2px solid #fff;
}

@media (max-width: 768px) {
    /* 背景イラストを拡大 & 上寄りに */
    .cta-banner-orange {
        padding: 72px 24px 80px;
        background: url("img/cta-bg.webp") center center / 420px no-repeat, linear-gradient(135deg, #ffc45a 0%, #f68700 100%);
    }
    .cta-banner-orange h2 {
        font-size: 2rem;
        /* 30px くらい */
        line-height: 1.45;
        margin-bottom: 16px;
    }
    .cta-banner-orange p {
        font-size: .9rem;
        line-height: 1.8;
        margin-bottom: 32px;
        font-weight: 400;
    }
    /* ボタンを全幅にして縦積み */
    .cta-banner-orange .btn {
        width: 90%;
        font-size: 1.125rem;
        padding: 16px 88px;
    }
    .cta-banner-orange .btn+.btn {
        /* 上下間隔だけに変更 */
        margin: 24px 0 0;
    }
    .cta-banner-orange span.big {
        font-size: 3rem;
    }
}


/* ==================================================
       8. Steps section
    ================================================== */

.steps-section {
    background: #eaf5ff;
    text-align: center;
    padding: 120px 0 60px;
    position: relative;
}

.steps-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 260px;
    /* 帯の太さ */
    background: linear-gradient(90deg, #69CBFF 0%, #1B82F8 100%);
    z-index: 0;
    /* 背面へ */
    bottom: -120px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    justify-content: center;
    z-index: 999;
    position: relative;
}

.step {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    width: 217px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 130, 226, 0.16);
}

.step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -36px;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23FFFFFF' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 14.854a.5.5 0 0 1 0-.708L10.793 8 4.646 1.854a.5.5 0 1 1 .708-.708l6.5 6.5a.5.5 0 0 1 0 .708l-6.5 6.5a.5.5 0 0 1-.708 0z'/%3E%3C/svg%3E");
    background-size: cover;
    transform: translateY(-50%);
}

.step:last-child::after {
    display: none;
}

.step span {
    font-size: 1rem;
    color: #149EFF;
    font-weight: 700;
}

.step span.big {
    font-size: 1.5rem;
    margin-left: 4px;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.step div.img {
    margin: 32px 0;
    height: 72px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.step p {
    font-size: 0.875rem;
    text-align: left;
}

@media (max-width: 768px) {
    /* セクション余白を縮める ─────────────── */
    .steps-section {
        padding: 120px 0 0;
    }
    .steps-section::after {
        /* 下のブルー帯を小さく */
        height: 140px;
        bottom: -70px;
    }
    .steps-section .container {
        margin: 0 16px;
        border-radius: 32px;
        box-shadow: 0 4px 10px rgba(0, 130, 226, .16);
        width: auto;
        background: #fff;
        padding: 48px 24px;
    }
    /* 見出しまわり（マーカー＋h2） */
    .steps-section .marker {
        font-size: .95rem;
        display: inline-block;
        background-image: linear-gradient(#fffc6b 0 0);
        /* 黄色線 */
        background-repeat: no-repeat;
        background-size: 100% 0.55em;
        background-position: 0 95%;
        padding-bottom: 2px;
    }
    .steps-section h2 {
        font-size: 1.9rem;
        line-height: 1.35;
        margin: 16px 0 48px;
    }
    /* ------- 4 枚のカードを縦並びに ------- */
    .steps {
        flex-direction: column;
        gap: 56px;
        align-items: center;
    }
    .step {
        width: auto;
        padding: 0;
        box-shadow: none;
    }
    /* タイトルサイズ調整 */
    .step h3 {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }
    .steps-section::after {
        display: none;
    }
    /* アイコンとテキストの間を広げる */
    .step div.img {
        margin: 16px 0;
        height: 80px;
    }
    /* 説明文（p）を中央寄せに */
    .step p {
        text-align: center;
        line-height: 1.7;
        font-size: .95rem;
    }
    /* → 矢印を ↓ に変える --------------- */
    .step::after {
        right: 50%;
        top: auto;
        bottom: -38px;
        transform: translateX(50%) rotate(90deg);
        /* 90°回転＝下向き */
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23C3C3C3' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 14.854a.5.5 0 0 1 0-.708L10.793 8 4.646 1.854a.5.5 0 1 1 .708-.708l6.5 6.5a.5.5 0 0 1 0 .708l-6.5 6.5a.5.5 0 0 1-.708 0z'/%3E%3C/svg%3E")
    }
    .step:last-child::after {
        display: none;
    }
    /* 最後の矢印は非表示 */
}


/* ==================================================
       9. Industries supported
    ================================================== */

.industries-section {
    background: #eaf5ff;
    padding: 80px 0 120px;
    text-align: center;
}

.industries-section h2,
.steps-section h2 {
    margin-bottom: 80px;
}

.industry-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}

.industry {
    background: #fff;
    border-radius: 40px;
    width: 220px;
    padding: 40px;
    text-align: center;
    height: 440px;
    box-shadow: 0 3px 10px rgba(0, 130, 226, 0.16);
    ;
}

.industry.is-recommend {
    position: relative;
}

.recommend-tag {
    position: absolute;
    top: -24px;
    /* カードから浮かせる量（PC） */
    left: 24px;
    background: #FF8B00;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    white-space: nowrap;
    padding: 8px 24px;
}

.recommend-tag::after {
    content: "";
    position: absolute;
    left: 45%;
    bottom: -20px;
    /* 三角頂点がタグの下に来るように */
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #FF8B00;
}

.recommend-tag::before {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: 20.48px;
    height: 24px;
    background: url("img/accent_orange.svg") center/contain no-repeat;
    pointer-events: none;
    /* クリック不可に */
}

.industry img {
    width: auto;
    height: 80px;
    margin-bottom: 8px;
}

.industry h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.industry ul {
    text-align: left;
}

.industry ul li {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 2px;
}

.other-industries {
    display: flex;
    gap: 27px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 960px;
    margin: auto;
}

.other-industries .badge {
    background: #fff;
    width: 170px;
    height: 170px;
    box-shadow: 0 3px 10px rgba(0, 130, 226, 0.16);
}

.other-industries .badge img {
    margin-bottom: 16px;
}

.industries-notice {
    padding: 40px 40px 0px;
    text-align: center;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
      /* 1) ラッパーは横幅を持たせない  */
  .other-industries{
    width: 100%;          /* ← 960px を上書き      */
    padding: 0 16px;      /*   左右に少し余白を足す */
    gap: 20px;            /*   カード間もやや狭く   */
  }

  /* 2) バッジをひと回り小さく (任意) */
  .other-industries .badge{
    width: 180px;
    height: 180px;
  }
}



@media (max-width: 767px) {
    /* セクション左右に 16px 余白を確保し、幅制限を解除 */
    .industries-section .container {
        width: auto;
        padding: 48px 32px;
        background: #fff;
        margin: 0 16px;
        border-radius: 32px;
        box-shadow: 0 4px 10px rgba(0, 130, 226, .16);
    }
    .industry {
        box-shadow: none;
        background: none;
        height: auto;
        padding: 40px 0;
        width: auto;
    }
    /* 下部バッジ 3 列 → 2 列 */
    .other-industries {
        width: 100%;
    }
    .other-industries .badge {
        width: 45%;
        max-width: 140px;
        height: 140px;
        box-shadow: none;
    }
    .other-industries .badge img {
        width: 70px;
        margin-bottom: 12px;
    }
    /* カードを縦並びに） */
    .industry-list {
        display: flex;
        flex-direction: column;
        gap: 48px;
        align-items: center;
        margin-bottom: 0px;
    }
    /* 見出し */
    .industry h3 {
        font-size: 1.25rem;
    }
    /* アイコンサイズ */
    .industry img {
        height: 70px;
    }
    /* 業種リストを横 1 列に折返しなしで表示（カタカナ潰れ防止） */
    .industry ul {
        display: inline-block;
        column-count: 1;
        column-gap: 0;
        font-size: 0.875rem;
        line-height: 1.6;
        word-break: keep-all;
    }
    .industry ul li {
        float: left;
        margin-right: 8px;
        font-size: .95rem;
    }
    .industries-notice {
        padding: 40px 40px 20px;
        text-align: center;
        font-size: .95rem;
    }
    /* === おすすめタグ === */
    .industry.is-recommend .recommend-tag {
        position: absolute;
        top: -24px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
        padding: 8px 24px 10px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, .12);
    }
    /* タグ下の三角 */
    .industry.is-recommend .recommend-tag::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -12px;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #FF8B00;
    }
    /* 左上のキラッエフェクト */
    .industry.is-recommend .recommend-tag::before {
        top: -12px;
        left: -12px;
        width: 18px;
        height: 22px;
    }
    /* 見出し & セクション余白 */
    .solution-title {
        font-size: 2.125rem;
        margin-bottom: 32px;
        font-weight: 900;
    }
    .features-badges {
        flex-direction: column;
        /* 縦並びへ */
        gap: 32px;
        /* グループ間余白 */
        padding: 0 16px;
        margin: 0;
        /* 左右余白を確保 */
    }
    /* グループ見出し */
    .feature-heading {
        letter-spacing: 0;
        font-weight: 400;
    }
    /* バッジ 3 つを横並び → 中央寄せ*/
    .badge-grid {
        justify-content: center;
        gap: 8px;
    }
    /* バッジサイズを縮小 */
    .badge {
        width: 105px;
        height: 125px;
        border-radius: 18px;
        gap: 4px;
    }
    .badge-grid .badge img {
        width: 80px;
    }
    .badge span {
        font-size: .75rem;
        line-height: 1.35;
    }
    .feature-notice {
        font-size: .95rem;
    }
    .recommend-tag::before {
        left: -14px;
        /* アイコンずれを補正 */
    }
}


/* ==================================================
       10. Case studies
    ================================================== */

.case-section {
    background: #f7faff;
    padding: 160px 0;
    text-align: center;
}

.case-section h2 {
    margin-bottom: 56px;
}

.case-list {
    display: grid;
    gap: 48px;
    max-width: 1040px;
    margin: 0 auto;
}

.case {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 24px;
    background: #fff;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px 0 0 24px;
}

.case-content {
    text-align: left;
    padding: 48px 48px 40px 32px;
}

.case h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #149EFF;
}

.case p {
    font-size: 1rem;
    line-height: 1.6;
}

.case-info {
    margin-top: 24px;
    color: #999;
}

.case-label {
    position: absolute;
    top: -20px;
    left: -10px;
    background: #FF8B00;
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 16px 0 16px 0;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 130, 226, 0.16);
}

@media (max-width: 768px) {
    /* overall section padding & h2 spacing */
    .case-section {
        padding: 80px 0;
    }
    .case-section h2 {
        margin-bottom: 48px;
    }
    /* stack each card */
    .case-list {
        display: flex;
        flex-direction: column;
        gap: 56px;
    }
    .case {
        /* from grid ➜ single‐column flex */
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 32px;
        margin: 0 24px;
        gap: 0;
        box-shadow: 0 8px 26px rgba(0, 130, 226, 0.12);
    }
    /* cover image */
    .case img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 24px 24px 0 0;
    }
    /* text wrapper */
    .case-content {
        padding: 24px 32px 48px;
        text-align: left;
    }
    .case h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        font-weight: 900;
    }
    .case p {
        font-size: .95rem;
    }
    .case-info {
        margin-top: 12px;
        font-size: .875rem !important;
    }
}


/* ==================================================
       11. Pricing
    ================================================== */

.pricing-section {
    text-align: center;
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(660px at center left, rgb(255 255 255) 0%, transparent 100%);
    pointer-events: none;
    mix-blend-mode: soft-light;
}

.pricing-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(290px at center right, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
    pointer-events: none;
    mix-blend-mode: soft-light;
}


/* 見出しと下線 */

.pricing-section h2 {
    margin: 0 0 56px;
}

.pricing-section h2::after {
    content: "";
    background: linear-gradient(90deg, #FFD800 0%, #FF9210 100%);
}


/* プラン一覧 */

.plans {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.plan {
    background: #fff;
    border-radius: 20px;
    max-width: 340px;
    width: 100%;
    color: #1C1E24;
    box-shadow: 0 4px 10px rgba(0, 130, 226, .16);
    display: flex;
    flex-direction: column;
    padding-bottom: 56px;
    position: relative;
}

.plan:first-child {
    border: 3px solid #ffc25b;
}

.plan:first-child::before {
    content: url(img/accent.webp);
    position: absolute;
    top: -35px;
    left: -35px;
    transform: scale(0.5);
    transform-origin: top left;
    pointer-events: none;
    z-index: 2;
}


/* ヘッダー帯 */

.plan-header {
    padding: 19px 0;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 16px 16px 0 0;
}

.free {
    background: linear-gradient(90deg, #FFCC40 0%, #FF8B00 100%);
}

.premium {
    background: linear-gradient(90deg, #9DD5FC 0%, #628FE2 100%);
}


/* キャッチコピー */

.plan-copy {
    text-align: center;
    font-size: .95rem;
    font-weight: 700;
    margin-top: 24px;
}


/* 価格表示 */

.plan-price {
    font-weight: 700;
    text-align: center;
    height: 140px;
    align-content: center;
    border-bottom: 2px solid #E3E3E3;
    margin: -22px 24px 30px;
}

.freeprice {
    font-size: 6.5rem;
    font-family: roboto;
    color: #FF9210;
}

.premiumprice {
    font-size: 4.5rem;
    font-family: roboto;
    color: #149EFF;
    letter-spacing: -0.1rem;
    font-weight: 800;
    padding-top: 12px;
}

.plan-price small {
    font-size: 1rem;
    writing-mode: vertical-rl;
    letter-spacing: 8px;
    margin-right: -14px;
    color: #1C1E24;
    font-family: 'Zen Kaku Gothic New';
    font-weight: 600;
}

.priceyen {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Zen Kaku Gothic New';
    margin-left: 3px;
}


/* 機能リスト */

.features {
    list-style: none;
    padding: 0 32px;
    text-align: left;
    height: 310px;
}

.features li {
    position: relative;
    margin-bottom: 13px;
    font-size: .875rem;
}

.features li:before {
    content: url(img/icon_check.svg);
    vertical-align: middle;
    padding-right: 8px;
}

.premiumlist li:before {
    content: url(img/icon_check_blue.svg) !important;
}

.plan .cta-btn {
    padding: 20px 0px;
    width: 280px;
    margin: auto;
    font-size: 1.25rem;
}

@media(max-width:768px) {
    .pricing-section {
        padding: 80px 0;
    }
    .plan:first-child::before {
        top: -26px;
        left: -26px;
        transform: scale(0.4);
    }
    .features {
        height: auto;
        margin-bottom: 16px;
    }
    .plan .cta-btn {
        width: 90%;
        font-size: 1.175rem;
    }
}


/* ==================================================
       13. FAQ
    ================================================== */

.faq-heading {
    margin-bottom: 94px
}

.faq-container {
    padding: 56px 120px 120px;
}


/* --- individual item --- */

.faq-item {
    border-top: 1px solid #CCC;
    padding: 0;
    font-size: 1rem;
    padding: 24px 0;
}

.faq-item:first-of-type {
    border-top: none;
}


/* --- summary row --- */

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.q-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #149EFF;
    color: #fff;
}


/* ▼ icon */

.faq-item summary::after {
    content: "";
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(45deg);
    transition: transform .25s;
    margin-top: -1px;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg)
}


/* --- answer text --- */

.answer {
    margin-left: 50px;
    margin-top: 18px;
    text-align: left;
    background: #F8f8f8;
    padding: 20px 20px;
    border-radius: 10px;
}

.faq-wrap {
    margin-bottom: 80px !important;
}


/* ==================================================
       14. Media coverage
    ================================================== */

.media-container,
.faq-container {
    max-width: 1040px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    text-align: center;
}

.media-container {
    padding: 56px 53px 120px;
}

.heading {
    font-size: 2.75rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.heading::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgba(83, 183, 253, 1) 0%, rgba(27, 130, 248, 1) 100%);
    border-radius: 3px;
}

.media-sub {
    font-size: .95rem;
    margin: 40px 0 48px;
    font-weight: 500;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 0fr));
    gap: 24px;
    place-items: center;
    place-content: center;
}

.media-card {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.media-card img {
    width: 215px;
    height: 215px;
    object-fit: cover;
    border-radius: 24px;
    background: #e5e5e5;
}

.media-card a:hover {
    transform: scale(1.05);
    transition: opacity .3s cubic-bezier(.25, .8, .25, 1), transform .3s cubic-bezier(.25, .8, .25, 1);
}

.media-title {
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    min-height: 6rem;
}

.media-title span {
    font-size: 0.75rem;
    line-height: 1.5;
}

.media-container .margin40 {
    margin: 40px 0;
}

@media(max-width:768px) {
    .media-container,
    .faq-container {
        padding: 48px 32px;
        margin: 0 16px;
        box-shadow: 0 4px 10px rgba(0, 130, 226, .16);
    }
    .heading {
        font-size: 2.125rem;
        margin-bottom: 32px;
    }
    .heading::after {
        bottom: -16px;
    }
    .media-sub {
        font-size: .875rem;
        margin: 0 0 32px;
    }
    .media-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .media-title {
        font-size: 1rem;
        min-height: auto;
    }
    .media-title span {
        font-size: 0.9rem;
        line-height: 1.25;
    }
    .faq-item summary {
        text-align: left;
        font-size: 0.95rem
    }
    .faq-item summary::after {
        width: 8px;
        height: 8px;
    }
    .q-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        font-size: 0.875rem;
    }
    .answer {
        font-size: .95rem;
        margin-left: 0
    }
}


/* ==================================================
       15. Footer
    ================================================== */

.site-footer {
    background: #1C1E24;
    color: #fff;
    position: relative;
    padding: 80px 32px;
    overflow: hidden;
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 100;
    position: relative;
}


/* ── brand ── */

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-logo {
    height: 44px;
    width: 160px;
}

.footer-tag {
    font-size: 0.875rem;
}


/* ── link blocks ── */

.footer-links-wrap {
    display: flex;
    flex-direction: column;
    gap: 64px
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #8990A5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    list-style: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-links a {
    color: #fff;
    opacity: .9;
    transition: .2s
}

.footer-links a:hover {
    opacity: 1
}

.copyright {
    text-align: center;
    z-index: 100;
    position: relative;
    margin: 80px 0 120px;
}


/* ── watermark ── */

.footer-watermark {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 400px;
    font-weight: 900;
    line-height: 1;
    color: #232529;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}


/* ── responsive ── */

@media(max-width:900px) {
    .footer-links {
        gap: 28px 32px;
    }
}

@media(max-width:768px) {
    .footer-links-wrap {
        gap: 48px
    }
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    .copyright {
        margin-bottom: 20px;
    }
    .footer-watermark {
        bottom: 30px;
        font-size: 200px;
    }
}


/* ==================================================
       fixedCTAbar
    ================================================== */


/* ===== 固定 CTA バー ===== */

.global-cta {
    position: fixed;
    inset: auto 0 0 0;
    padding: 16px 24px;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    background: rgba(28, 30, 36, .7);
    backdrop-filter: blur(14px);
    z-index: 9999;
}

.global-cta .cta-btn {
    flex: 1 1 50%;
    font-size: .875rem;
    padding: 8px 0;
    border-radius: 9999px;
    /* もっと丸く */
}

.global-cta .cta-btn img {
    width: 22px;
    height: 22px;
    display: block;
}


/* PC では出したくない場合 */

@media (min-width:900px) {
    .global-cta {
        display: none;
    }
}


/* =========================================================
      固定ページ用
========================================================= */

.page-header {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 130, 226, .16);
    padding: 32px 0 28px;
    text-align: center;
}

.page-header__logo img {
    display: block;
    margin: 0 auto 12px;
    width: 142px;
    height: auto;
}

.page-header__tagline {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: .04em;
    color: #1C1E24;
}

@media(max-width:480px) {
    .page-header {
        padding: 24px 0 20px;
    }
    .page-header__logo img {
        width: 180px;
    }
    .page-header__tagline {
        font-size: .875rem;
    }
}


/* ===== メインカード ===== */

.site-main {
    display: flex;
    justify-content: center;
    padding: 88px 0;
    text-align: center;
    background: linear-gradient(90deg, #69cbff 0%, #1b82f8 100%);
}

.page-card {
    background: #fff;
    border-radius: 24px;
    padding: 80px;
    max-width: 1056px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 130, 226, .16);
}


/* ===== タイトル部 ===== */

.page-card h1 {
    text-align: center;
    margin-bottom: 56px;
}


/* ===== フォーム ===== */

.wpcf7 {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0 0;
}

.wpcf7 p {
    margin-bottom: 32px;
}

.wpcf7 label {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpcf7 label>span {
    color: #ff3366;
    display: contents;
}

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    border: 2px solid #D4D8DD;
    border-radius: 8px;
    transition: border-color .25s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: #149EFF;
}

input::placeholder,
textarea::placeholder {
    font-weight: 400;
    opacity: 0.2;
    color: #1C1E24;
}

.wpcf7 textarea {
    min-height: 140px;
    resize: vertical;
}

.wpcf7 select {
    max-width: 50%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #D4D8DD;
    border-radius: 8px;
}

.wpcf7-not-valid-tip {
    font-weight: normal;
    display: block;
}

.submit-inquiry,
.submit-apply {
    justify-content: center;
    font-weight: 900;
    padding: 20px 40px !important;
    border-radius: 40px !important;
    white-space: nowrap;
    font-size: 1.25rem !important;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 130, 226, .16);
    border: none !important;
}

.submit-inquiry {
    background: linear-gradient(90deg, rgba(83, 183, 253, 1) 0%, rgba(27, 130, 248, 1) 100%);
}

.submit-apply {
    background: linear-gradient(90deg, #FFC72F 0%, #FF8B00 100%);
}

.required-note,
.wpcf7-not-valid-tip {
    font-size: .875rem;
    color: #ff3366;
}


/* ===== その他 ===== */

.privacy-note {
    font-size: .80rem;
    line-height: 1.6;
    margin-top: 8px;
}

.privacy-note a {
    color: #1b82f8;
    text-decoration: underline;
}

@media(max-width:540px) {
    .page-card {
        padding: 56px 24px 48px;
    }
    .page-title {
        font-size: 1.65rem;
    }
}


/* ===== 投稿ページ ===== */

.single-main {
    padding: 120px 0 160px;
    background: #f7faff;
}

.single-article {
    max-width: 800px;
    margin: 0 auto;
    color: #1C1E24;
}

.single-header {
    text-align: left;
    margin-bottom: 32px;
}

.cat-label {
    display: inline-block;
    background: #149EFF;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: 12px;
}

.wpcf7 select {
    max-width: 100%;
}

.single-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 12px;
}

.single-date {
    font-size: .85rem;
    color: #888;
}

.single-content {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
}

.single-content h2 {
    margin: 2.5em 0 1em;
    font-size: 1.4rem;
    border-left: 4px solid #149EFF;
    padding-left: .6em;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.single-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    font-weight: 700;
}

.single-nav a {
    color: #149EFF;
    text-decoration: none;
}

.single-nav a:hover {
    text-decoration: underline;
}


/* =========================================================
      アニメーション
========================================================= */

#opening {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(90deg, #69cbff 0%, #1b82f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: openingHide 1s ease-in-out 1.5s forwards;
}

.opening-copy {
    color: #fff;
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 6rem);
    opacity: 0;
    transform: scale(.8);
    padding: 3%;
    animation: copyZoomFade 2s ease-in-out 0s forwards, copyTracking 2.1s ease-in-out 0s forwards;
    letter-spacing: .2em;
    text-align: center;
}

@keyframes copyZoomFade {
    0% {
        opacity: 0;
        transform: scale(.8);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}


/* ③ 文字間を詰めていく用 */

@keyframes copyTracking {
    0% {
        letter-spacing: .7em;
    }
    /* 広い */
    20% {
        letter-spacing: .3em;
    }
    /* 1 秒時点でほぼ通常幅 */
    80% {
        letter-spacing: .3em;
    }
    /* 停止中は一定 */
    100% {
        letter-spacing: .7em;
    }
}

@media(max-width:540px) {
    @keyframes copyTracking {
        0% {
            letter-spacing: 0em;
        }
        /* 広い */
        20% {
            letter-spacing: .1em;
        }
        /* 1 秒時点でほぼ通常幅 */
        80% {
            letter-spacing: .1em;
        }
        /* 停止中は一定 */
        100% {
            letter-spacing: 0em;
        }
    }
}


/* ---------- ② 背景オーバーレイ ---------- */


/* 4s 後にフェードアウト開始 → 1s で完全非表示 */

@keyframes openingHide {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.no-scroll {
    overflow: hidden;
}

[data-fade] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-fade].inview {
    opacity: 1;
    transform: translateY(0);
}


/* ② “ズームイン” などバリエーションを作りたい時の例 */

[data-fade][data-zoom] {
    transform: scale(.4);
    transition: .3s;
}

[data-fade][data-zoom].inview {
    transform: scale(1);
}

[data-slide="left"] {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity .9s cubic-bezier(.25, .8, .25, 1), transform .8s cubic-bezier(.25, .8, .25, 1);
}

[data-slide="left"].inview {
    opacity: 1;
    transform: translateX(0);
}

[data-slide="right"] {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity .9s cubic-bezier(.25, .8, .25, 1), transform .8s cubic-bezier(.25, .8, .25, 1);
}

[data-slide="right"].inview {
    opacity: 1;
    transform: translateX(0);
}

@keyframes btnIdlePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}


/* ② .btn-idle を付けた要素に常時再生させる */

.btn-idle {
    animation: btnIdlePulse 2s ease-in-out infinite;
    transform-origin: center center;
    /* ふくらみの基点を中央に */
}


/* ③ ホバー時は通常の拡縮を優先 (上書き) */

.btn-idle:hover {
    /* 脈拍を止める */
    transform: scale(1.05);
    /* 好みで */
}