@charset "UTF-8";
/*
Theme Name: CURIOUS WORLD ACADEMY Theme
Author: Gemini
Description: CWAの語学留学＆ワーホリ公式サイト用テーマ。全幅LP対応・共通記事装飾を含む統合スタイルシート。
Version: 1.2
*/

/* ==========================================================================
   0. WordPress 全幅（Alignfull）対応
   ========================================================================== */
/** * ブロックエディタの「全幅」設定時に画面端まで背景を広げる設定
 * page-lp.php 等の親要素に制約がない場所で機能します
 */
.alignfull {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
}

/* ==========================================================================
   1. 共通設定 (Base)
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    /* font-family: "Noto Sans JP", sans-serif; */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sect-white { padding: 80px 5%; background: #fff; }
.sect-gray { padding: 80px 5%; background: #f8f8f8; }

/* セクションタイトル */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
}

.section-title h2 span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
    font-weight: normal;
}

/* box-sizingを一括適用してレイアウト崩れを防ぐ */
.cwa-esl-wrapper,
.cwa-esl-wrapper *,
.cwa-esl-wrapper *::before,
.cwa-esl-wrapper *::after {
    box-sizing: border-box !important;
}

/* ==========================================================================
   2. ヘッダー (Header) - 吹き出しドロップダウン完全版
   ========================================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* 重要：サブメニューがヘッダーの外にはみ出せるようにする */
    overflow: visible !important;
}

.logo img {
    height: 50px;
}

/* PCではボタンを非表示 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.nav-menu-container {
    z-index: 1001; 
    /* 子要素の浮き上がりを許可 */
    overflow: visible !important;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.3s;
}

/* 三本線アニメーション */
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: bold;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
    display: block;
}

/* 親メニューの右矢印アイコン（PC用） */
.nav-menu > li > a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #0071bc;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.nav-menu a:hover::before {
    transform: translateY(-50%) translateX(3px);
}

/* --- ドロップダウンメニュー（サブメニュー）の制御 --- */

/* 親項目（li）を基準点にする */
.nav-menu .menu-item-has-children {
    position: relative;
}

/* 下層メニュー（sub-menu）本体：吹き出しデザイン */
.nav-menu .sub-menu {
    position: absolute;
    /* 位置を調整：125%程度にすることで突起が見える隙間を確保 */
    top: 125%; 
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border-radius: 10px; /* 角を丸くして吹き出し感を出す */
    
    /* 初期状態：非表示 */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* PC（769px以上）：吹き出しの突起（三角形）と表示制御 */
@media (min-width: 769px) {
    /* 突起部分（三角形） */
    .nav-menu .sub-menu::before {
        content: "";
        position: absolute;
        bottom: 100%; /* メニューの上端 */
        left: 25px;   /* 親メニューの開始位置に合わせる */
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #fff transparent; /* 下向きの白三角形 */
    }

    /* マウスが移動する際の隙間を埋める透明なクッション */
    .nav-menu .menu-item-has-children::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 20px; /* topの隙間をカバー */
        z-index: 1;
    }

    .nav-menu .menu-item-has-children:hover > .sub-menu {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0);
        display: block !important;
    }
}

/* サブメニュー内のリンク */
.nav-menu .sub-menu li a {
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: normal;
    white-space: nowrap;
    text-align: left;
}

.nav-menu .sub-menu li a::before {
    display: none !important;
}

/* ホバー時の背景（角丸に合わせる） */
.nav-menu .sub-menu li:first-child a:hover { border-radius: 10px 10px 0 0; }
.nav-menu .sub-menu li:last-child a:hover { border-radius: 0 0 10px 10px; }

.nav-menu .sub-menu li a:hover {
    background: #f0f7ff;
    color: #0071bc;
}

/* --- スマホ表示 (768px以下) --- */
@media (max-width: 768px) {
    .nav-menu .sub-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none; 
        box-shadow: none;
        background: #f9f9f9;
        padding: 0;
        transform: none;
        width: 100%;
        border-radius: 0; /* スマホでは角丸を解除 */
    }
    
    .nav-menu .menu-item-has-children > a::after {
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 8px;
    }
}

/* パンくずリスト */
.breadcrumb-area .container {
    max-width: 1200px; /* 横幅は維持 */
    margin-top: 0;     /* 上の余白をゼロに */
    margin-bottom: 0;  /* 下の余白をゼロに */
    padding-left: 20px; /* 5%から固定値（20px程度）に狭める */
    padding-right: 20px;
}

/* ついでにパンくず自体の上下パディングも極限まで絞る */
.breadcrumb-area {
    background-color: #f8fafc;
    padding: 5px 0;    /* 上下5pxまで縮小 */
    font-size: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs {
    color: #64748b;
}

.breadcrumbs a {
    color: #0071bc; /* テーマカラー */
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* 区切り文字の調整（プラグイン設定でも変えられますがCSSでも可） */
.breadcrumbs span {
    margin: 0 5px;
}


/* ==========================================================================
   3. メインビジュアル (Hero Slider)
   ========================================================================== */
.hero {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    width: 90%;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-content h2 {
    font-size: 3rem;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   4. レイアウト構造 (Layout)
   ========================================================================== */
.container {
    display: block; /* 基本は縦に積む */
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.container:has(.sidebar) {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* 通常の固定ページ (page.php) 用 */
.container.page-container {
    display: block;
    max-width: 900px; /* 読みやすさを考慮した幅 */
    margin: 60px auto;
}

.content-area {
    flex: 1; /* 残りのスペースをすべて使う */
    min-width: 0; /* flexの子要素がはみ出すのを防ぐ魔法の記述 */
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   5. 記事本文・詳細 (Single / Page Content 共通)
   ========================================================================== */
/* 記事ヘッダーを洗練されたカードデザインに */
.entry-header {
    background: #fff;
    padding: 40px;
    border-radius: 12px; /* 角を丸く */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* 柔らかい影 */
    margin-bottom: 50px;
    position: relative;
    z-index: 1; /* トグルメニュー(1001)より低く */
    
    /* 縦並びの Flexbox */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左寄せ */
    
    /* box-sizing は一括設定済み前提 */
}

/* 日付（投稿日）をスタイリッシュに */
.entry-meta {
    order: 1; /* 先に表示 */
    font-size: 0.9rem;
    color: #0071bc; /* テーマカラーにする */
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: #f0f7ff; /* 薄い青の背景 */
    border-radius: 20px; /* カプセル型 */
    display: inline-block; /* 幅をテキストに合わせる */
}

/* 記事タイトルを大きく、存在感を持たせる */
.entry-title {
    order: 2; /* 日付の下 */
    font-size: 2.4rem;
    line-height: 1.4;
    color: #333;
    margin: 0;
    font-weight: 800; /* より太く */
    letter-spacing: -0.02em; /* 少し文字間を詰めて引き締める */
}

/* スマホでの調整（レスポンシブ） */
@media (max-width: 768px) {
    .entry-header {
        padding: 25px; /* 余白を狭く */
        margin-bottom: 30px;
    }
    
    .entry-title {
        font-size: 1.8rem; /* タイトルを小さく */
    }
    
    .entry-meta {
        font-size: 0.8rem;
    }
}

.post-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9; /* 黄金比で固定 */
    background-color: #f8f9fa; /* ダミー画像時の背景色 */
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 本物のアイキャッチは切り抜き */
}

/* ロゴがダミー画像として使われる時の設定 */
.post-thumbnail img.no-image {
    width: auto;      /* ロゴを無理に広げない */
    height: 40%;      /* 高さを抑えて控えめに配置 */
    object-fit: contain;
    opacity: 0.5;     /* 少し薄くして「画像なし」感を演出 */
}

/* --- 本文内の共通装飾 --- */
.entry-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
}

/* 中見出し */
.entry-content h2 {
    font-size: 1.6rem;
    padding: 15px 20px;
    background: #f0f7ff;
    border-left: 6px solid #0071bc;
    margin: 60px 0 30px;
    color: #0071bc;
}

/* 小見出し */
.entry-content h3 {
    font-size: 1.35rem;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
    margin: 45px 0 25px;
    position: relative;
    color: #333;
}

.entry-content h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 70px;
    height: 2px;
    background: #0071bc;
}

/* リスト（FontAwesomeを使用） */
.entry-content ul, 
.entry-content ol {
    margin: 25px 0;
    padding-left: 25px;
}

.entry-content ul li {
    list-style: none;
    position: relative;
    margin-bottom: 12px;
}

/*
.entry-content ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #0071bc;
    position: absolute;
    left: -25px;
}
*/

/* テーブル */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: #fff;
    overflow-x: auto;
    table-layout: fixed;
}

.entry-content th, 
.entry-content td {
    padding: 15px;
    border: 1px solid #ddd;
    min-width: 120px;
}

.entry-content th {
    background: #f8f8f8;
    text-align: left;
    font-weight: bold;
    color: #333;
}

/* メディア（画像・動画） */
.entry-content img {
    margin: 25px 0;
    border-radius: 4px;
}

.entry-content .wp-block-embed,
.entry-content iframe {
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

/* 引用 */
.entry-content blockquote {
    margin: 40px 0;
    padding: 25px;
    background: #f9f9f9;
    border-left: 5px solid #ddd;
    font-style: italic;
    color: #666;
}

/* 記事下ナビ */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-navigation a {
    font-weight: bold;
    color: #0071bc;
}

.tag-label {
    display: inline-block;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    color: #666;
}

.entry-footer {
    background: none;
    color: inherit;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #eee;
}

/* ==========================================================================
   6. カード・一覧 (Card / Archive)
   ========================================================================== */
.grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.column-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    height: 100%;
}

.column-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.column-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.column-text {
    padding: 20px;
}

.column-text h3 {
    font-size: 1.15rem;
    margin: 10px 0;
    line-height: 1.5;
}

.cat-label {
    display: inline-block;
    background: #0071bc;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 3px;
    margin-bottom: 8px;
}

/* ==========================================================================
   7. サイドバー (Sidebar)
   ========================================================================== */
.sidebar {
    width: 280px; /* 300pxから少しスリムに */
    flex-shrink: 0; /* 幅を維持 */
}

.widget {
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
}

.widget-title {
    font-size: 1.15rem;
    border-bottom: 2px solid #0071bc;
    padding-bottom: 12px;
    margin-bottom: 20px;
    color: #333;
}

.recent-posts li {
    margin-bottom: 18px;
}

.recent-posts a {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.recent-posts .thumb img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 6px;
}

/* ==========================================================================
   8. フッター (Footer)
   ========================================================================== */
.site-footer {
    background: #333;
    color: #fff;
    padding: 70px 5% 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 25px;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #bbb;
}

.footer-sns {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.footer-sns a {
    font-size: 1.6rem;
    color: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
}

.footer-links li a::before {
    content: "▶";
    font-size: 0.7rem;
    margin-right: 10px;
    color: #0071bc;
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 60px;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   9. ページネーション & 浮動ボタン
   ========================================================================== */
.pagination ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 50px 0;
}

.pagination li a, .pagination li span {
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
}

.pagination li span.current {
    background: #0071bc;
    color: #fff;
    border-color: #0071bc;
}

.floating-btns {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999; /* メニュー(1000)より圧倒的に大きく設定 */
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.float-btn.line { background: #06C755; }
.float-btn.mail { background: #0071bc; }

/* ==========================================================================
   10. レスポンシブ (Responsive) - 整理・サイドバー修正版
   ========================================================================== */

/* タブレット・小型PCサイズ (992px以下) */
@media (max-width: 992px) {
    .container {
        flex-direction: column; /* 縦並びに変更 */
        padding: 0 5%;
    }

    .sidebar {
        width: 100% !important; /* サイドバーを横幅いっぱいに */
        margin-top: 50px; /* 本文との間に余白を確保 */
        flex-shrink: 0;
    }
}

/* スマホサイズ (768px以下) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* ボタンを表示 */
    }

    /* メニューコンテナの初期状態 */
    .nav-menu-container {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000 !important;
        padding: 0 15px; /* コンテナ内側の余白 */
    }

    /* JSで .active がついた時の表示（重複を整理し、必要なプロパティを統合） */
    .nav-menu-container.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: calc(100vh - 80px); /* 画面の高さからヘッダー分を引く */
        overflow-y: auto; /* 長い場合はスクロール */
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 5%;
        width: 100%;
    }

    /* 追従ボタンがメニューに隠れないように設定 */
    .floating-btns {
        z-index: 9999;
    }

    /* コンテンツの調整 */
    .hero {
        height: 60vh;
    }

    .grid-2col {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        margin: 30px auto; /* スマホでは少し余白を狭める */
        flex-direction: column;
    }
    .sidebar {
        width: 100% !important;
    }
}

/* =============================================================
   LP共通デザイン：ページヘッダー（青背景・白文字）
   ============================================================= */
.lp-page-header,
.contact-header {
    background-color: #0071bc !important; /* CWAメインブルー */
    padding: 60px 20px !important;
    text-align: center !important;
    color: #ffffff !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

.lp-page-header h1,
.contact-header h1 {
    margin: 0 !important;
    font-size: 2rem !important;
    letter-spacing: 2px !important;
    font-weight: bold !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.lp-page-header span,
.contact-header span {
    display: block !important;
    margin-top: 10px !important;
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
    color: #ffffff !important;
}

/* スマホ表示の調整 */
@media (max-width: 768px) {
    .lp-page-header,
    .contact-header {
        padding: 40px 15px !important;
    }
    .lp-page-header h1,
    .contact-header h1 {
        font-size: 1.6rem !important;
    }
}

/* ==========================================================================
   お問い合わせページ：最終解決スタイル
   ========================================================================== */

.cwa-form-container {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: 4px solid #0071bc;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* 2. フォーム項目 */
.form-item { margin-bottom: 25px; }
.form-item label { display: block; font-weight: bold; margin-bottom: 8px; }
.required { background: #e74c3c; color: #fff; font-size: 0.7rem; padding: 2px 6px; border-radius: 3px; margin-left: 8px; }

/* 3. 入力フィールド */
.wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* 4. ★送信ボタンの「真っ白」を完全に防ぐ設定★ */
.wpcf7-submit {
    display: block;
    width: 300px;
    margin: 40px auto 0;
    padding: 18px;
    background-color: #0071bc !important; /* 強制的に青 */
    color: #fff !important;               /* 強制的に白文字 */
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: none !important;          /* 送信中の変化を抑止 */
}

/* 送信中(submitting)の状態を固定する */
.wpcf7-form.submitting .wpcf7-submit {
    background-color: #0071bc !important; 
    opacity: 1 !important;                /* 半透明化を阻止 */
    cursor: wait !important;
}

/* CF7のスピンアイコンを物理的に消去（これが空白を作る原因） */
.wpcf7-spinner {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
}

/* スマホ調整 */
@media (max-width: 768px) {
    .cwa-form-container { padding: 20px; margin: 0 10px; }
    .wpcf7-submit { width: 100%; }
}

/* 資料ダウンロードフォーム専用 */
.download-form .form-note {
    background: #fff9e6;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ffeeba;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}
.download-form .form-note span {
    color: #e74c3c;
    font-size: 0.9rem;
}

/* 送信ボタンをより目立たせる（オレンジなど） */
.download-form .wpcf7-submit {
    background-color: #f39c12 !important; /* 注意を引くオレンジ */
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

/* 背景全幅セクションの中に入れる「内枠」専用クラス */
.lp-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px; /* PCでの余白 */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .lp-inner {
        padding: 0 15px !important; /* スマホでの余白をここで一括管理 */
    }
}
