/*
Theme Name: CODE Child
Theme URI: https://tcd-theme.com/tcd090
Template: code_tcd090
Author: TCD
Author URI: https://tcd-theme.com/
Description: "CODE.", the 90th theme from TCD, is a WordPress theme that allows you to create a cool web magazine. The design allows you to appeal to a wide variety of contents from all angles. In addition to categories, tags, and authors, by the number of views as well.
Version: 2.8.1.1752208340
Updated: 2025-07-11 13:32:20

*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
    .banner-cta {
        box-sizing: border-box;
        width: 100%;
        max-width: 1200px;
        margin: 40px auto;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        font-family: 'Noto Sans JP', sans-serif;
        color: #fff;
        text-align: left;
        /* 背景画像 */
        background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=1974&auto=format&fit=crop');
        background-size: cover;
        background-position: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    /* オーバーレイ */
    .banner-overlay {
        background: rgb(93 93 93 / 60%);
        backdrop-filter: blur(1.5px);
        padding: 30px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    /* 左側のテキストエリア */
    .banner-text-area {
        flex: 1;
        text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    }

    /* 「店舗向け」タグ */
    .banner-tag {
        display: inline-block;
        background-color: #ff6600;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 4px;
        margin-bottom: 8px;
        vertical-align: middle;
    }

    .banner-title {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        color: #f0f0f0;
        margin-bottom: 10px;
        margin-left: 8px;
        vertical-align: middle;
    }

    .banner-main-text {
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 12px;
        line-height: 1.4;
        color: #fff;
    }

    .banner-sub-text {
        font-size: 14px;
        color: #eee;
        margin-bottom: 0;
        line-height: 1.8;
        font-weight: 500;
    }

    .text-highlight {
        color: #ff9d00;
        font-weight: 700;
        border-bottom: 1px solid #ff9d00;
    }

    /* 右側のエリア（ロゴ＋ボタン） */
    .banner-action-area {
        flex-shrink: 0;
        width: 280px; /* ロゴが入るので少し幅を確保 */
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px; /* ロゴとボタンの間隔 */
    }

    /* 追加したロゴ画像 */
    .banner-logo-img {
        display: block;
        max-width: 220px; /* ロゴが大きすぎないように制限 */
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* ボタン */
    .banner-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: linear-gradient(90deg, #ff8800, #ff5500);
        color: #fff !important;
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        padding: 15px 20px;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.2);
        box-sizing: border-box;
    }

    .banner-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        background: linear-gradient(90deg, #ff9900, #ff6600);
    }

    /* スマホ向けレスポンシブ */
    @media (max-width: 768px) {
        .banner-overlay {
            flex-direction: column;
            text-align: left;
            padding: 30px 20px;
            gap: 25px;
        }
        
        .banner-text-area { 
            width: 100%; 
        }

        .banner-tag { margin-bottom: 5px; }
        
        .banner-title {
            display: block;
            margin-left: 0;
            margin-bottom: 10px;
            font-size: 12px;
        }

        .banner-main-text { font-size: 20px; }
        .banner-sub-text { font-size: 13px; }

        .banner-action-area { 
            width: 100%; 
        }
        
        .banner-logo-img {
            max-width: 200px; /* スマホでは少し小さめに */
        }
    }

/*g-support*/
.blog-cta-container {
    width: 100%;
    max-width: 850px;
    margin: 60px auto;
    box-sizing: border-box;
}

.blog-cta-box {
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform .8s;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
		rgba(174, 174, 174, .6),
        rgba(30, 30, 30, .3)
    );
    z-index: 2;
}

.cta-inner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 35px 30px;
}

.cta-box-title {
    font-size: 32px !important;
    margin-bottom: 0 !important;
}

.cta-box-text {
    font-size: .95rem;
    margin-bottom: 1.8rem;
}

.cta-box-button {
    display: inline-block;
    padding: 14px 45px;
    background: #fff;
    color: #111;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.blog-cta-box:hover .cta-bg-image {
    transform: scale(1.05);
}
/*g-support サイドバー用*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');

.sq-delivery-banner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    margin: 60px auto;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sq-delivery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.sq-delivery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
	backdrop-filter: blur(1.5px);
    /* ★変更点：ご指定のグレーに変更 */
    background: rgba(93, 93, 93, 0.6);
}

.sq-delivery-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 25px;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    
    /* 背景が明るくなったので、文字に少し影をつけて読みやすく */
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.sq-delivery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sq-delivery-tag {
    background-color: #ff6600;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    line-height: 1;
    text-shadow: none;
}

.sq-delivery-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.sq-delivery-main {
	color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.4;
}

.sq-delivery-highlight {
    color: #ff9d00;
    border-bottom: 2px solid #ff9d00;
    display: inline-block;
    line-height: 1.2;
}

.sq-delivery-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sq-delivery-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
    /* ロゴが見やすいように少しドロップシャドウを追加しても良いかもしれません */
    /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); */
}

.sq-delivery-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #ff8800, #ff5500);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    text-shadow: none;
}

/* --- Hover Effects --- */
.sq-delivery-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 100, 0, 0.2);
}

.sq-delivery-banner:hover .sq-delivery-bg {
    transform: scale(1.05);
}

.sq-delivery-banner:hover .sq-delivery-btn {
    background: linear-gradient(90deg, #ff9900, #ff6600);
    box-shadow: 0 6px 15px rgba(255, 100, 0, 0.4);
}

@media (max-width: 600px) {
    .sq-delivery-main {
        font-size: 20px;
    }
}

/* ===============================
   Recruit Visual Banner
================================ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 20px;
    background: #f5f5f5;
    font-family: 'Noto Sans JP', sans-serif;
}

.recruit-visual-banner {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 220px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #000;
}

.recruit-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.recruit-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(77 129 170 / 90%) 0%, rgb(40 126 180 / 60%) 35%, rgb(255 255 255 / 27%) 55%);
    z-index: 2;
}

.recruit-visual-content {
    position: relative;
    z-index: 3;
    padding-left: 50px;
    color: #fff;
    max-width: 60%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rv-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #81d4fa;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

.rv-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.2;
	font-family: 'Noto Sans JP';
}

.rv-sub {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 24px;
    opacity: 0.9;
    line-height: 1.5;
}

.rv-button {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #006eb4;
    padding: 11px 30px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-shadow: none;
}

.rv-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.recruit-visual-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 90, 160, 0.15);
}

.recruit-visual-banner:hover .recruit-visual-bg {
    transform: scale(1.05);
}

.recruit-visual-banner:hover .rv-button {
    background: #e1f5fe;
    color: #005a9f;
}

.recruit-visual-banner:hover .rv-arrow {
    transform: translateX(5px);
}

@media (max-width: 600px) {
    .recruit-visual-banner {
        height: auto;
        padding: 40px 0;
    }

    .recruit-visual-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 90, 160, 0.95) 0%,
            rgba(0, 110, 180, 0.7) 60%,
            rgba(0, 110, 180, 0.1) 100%
        );
    }

    .recruit-visual-content {
        padding-left: 25px;
        padding-right: 20px;
        max-width: 90%;
    }

    .rv-title {
        font-size: 24px;
    }

    .rv-sub {
        font-size: 13px;
    }
}


/*recruitサイドバー用*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Noto+Sans+JP:wght@500;700&display=swap');

.sq-recruit-banner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #000;
}

.sq-recruit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.sq-recruit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* ★変更点：下（青）から上（白/透明）へのグラデーション */
    background: linear-gradient(
        to top,
        rgba(77, 129, 170, 0.9) 0%,        /* 下：濃い青 */
        rgba(40, 126, 180, 0.6) 30%,     /* 中：半透明の青 */
        rgba(255, 255, 255, 0.27) 100%      /* 上：透明（白系） */
    );
}

.sq-recruit-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    /* ★変更点：paddingを削除 */
    padding: 0;
    
    color: #fff;
    /* 上の方が明るくなるため、文字が見えやすいように影を維持 */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sq-rv-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 0.15em;
    color: #81d4fa;
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

.sq-rv-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.sq-rv-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 48px;
    opacity: 0.95;
    line-height: 1.5;
}

.sq-rv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #006eb4;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-shadow: none;
}

.sq-rv-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.sq-recruit-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 90, 160, 0.25);
}

.sq-recruit-banner:hover .sq-recruit-bg {
    transform: scale(1.05);
}

.sq-recruit-banner:hover .sq-rv-button {
    background: #e1f5fe;
    color: #005a9f;
}

.sq-recruit-banner:hover .sq-rv-arrow {
    transform: translateX(5px);
}

/**************************************
 *             Uber LP                *
 ************************************* /

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');

/* --- 横長バナー用スタイル (wd-banner-) --- */

.wd-banner-root {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px; /* 横長なので幅広に */
    margin: 60px auto;
    
    /* 枠線なし、角丸 */
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    
    /* 背景色と影 */
    background-color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 背景画像 */
.wd-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* 同じ画像を使用 */
    background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

/* フィルター（薄い黒） */
.wd-banner-filter {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4); /* 文字可読性のため正方形よりほんの少し濃く */
}

/* コンテンツ配置（PC：横並び） */
.wd-banner-body {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between; /* 左右に配置 */
    align-items: center;
    padding: 35px 50px;
    gap: 30px;
    text-align: left;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

/* --- 左側：テキストエリア --- */
.wd-banner-info {
    flex: 1; /* 余った幅を埋める */
}

.wd-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.wd-tag {
    background-color: #009950; /* 指定の緑 */
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    line-height: 1;
    text-shadow: none;
}

.wd-sub-text {
    font-size: 14px;
    font-weight: 500;
}

.wd-main-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; /* ロゴとタイトルの間隔 */
    margin-bottom: 10px;
}

.wd-brand-name {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.wd-text-w { color: #fff; }
.wd-text-g { 
    color: #009950; 
}

.wd-main-copy {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.wd-highlight {
    font-weight: 900;
    color: #fff;
    /* 緑の下線マーカー */
    background: linear-gradient(transparent 60%, #009950 60%);
    display: inline-block;
    padding: 0 5px;
    line-height: 1.1;
}

.wd-desc-text {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

/* --- 右側：ボタンエリア --- */
.wd-banner-cta {
    flex-shrink: 0;
    width: 280px; /* ボタンエリアの幅固定 */
    text-align: center;
}

.wd-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    background-color: #009950;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: none;
}

.wd-arrow { margin-left: 10px; font-weight: bold; }

/* --- ホバーエフェクト --- */
/* .wd-banner-root:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
 */
.wd-banner-root:hover .wd-banner-image {
    transform: scale(1.05);
}

/* .wd-banner-root:hover .wd-btn {
    background-color: #00b35e; /* 少し明るい緑 */
    box-shadow: 0 8px 20px rgba(0, 153, 80, 0.4);
} */

/* --- スマホ対応（縦積みレイアウト） --- */
@media (max-width: 768px) {
    .wd-banner-body {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .wd-header-row {
        justify-content: center;
        gap: 8px;
    }

    .wd-main-row {
        justify-content: center;
        gap: 5px; /* スマホでは改行させるため間隔狭める */
        flex-direction: column;
    }
    
    .wd-brand-name { font-size: 26px; }
    .wd-main-copy { font-size: 24px; }
    
    .wd-desc-text { font-size: 13px; }

    .wd-banner-cta {
        width: 100%;
        max-width: 320px;
    }
    
    .wd-btn {
        font-size: 16px;
        padding: 14px 0;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');

/* --- 横長バナー用スタイル (wd-delivery- に変更) --- */

.wd-delivery-banner {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 60px auto;
    
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* 枠線なし */
    border: none;
}

/* 背景画像 */
.wd-delivery-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

/* フィルター（薄い黒） */
.wd-delivery-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
}

/* --- レイアウト（PC：横並び） --- */
.wd-delivery-content {
    position: relative;
    z-index: 3;
    padding: 24px;
    box-sizing: border-box;
    
    /* Flexboxで左右配置 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    
    text-align: left;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

/* 左側：情報エリア */
.wd-delivery-info {
    flex: 1; /* 幅を自動伸縮 */
}

.wd-delivery-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.wd-delivery-tag {
    background-color: #009950;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    line-height: 1;
    text-shadow: none;
    white-space: nowrap;
}

.wd-delivery-sub {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.wd-delivery-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.wd-delivery-brand {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
}
.wd-text-w { color: #fff; }
.wd-text-g { 
    color: #009950; 
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0 2px 5px rgba(0,0,0,0.5);
}

.wd-delivery-title {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.wd-highlight {
    color: #fff;
    background: linear-gradient(transparent 60%, #009950 60%);
    display: inline-block;
    padding: 0 5px;
    line-height: 1.1;
}

.wd-delivery-desc {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

/* 右側：ボタンエリア */
.wd-delivery-action {
    flex-shrink: 0;
    width: 280px;
    text-align: center;
}

.wd-delivery-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    background-color: #009950;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: none;
}

.wd-arrow { margin-left: 10px; font-weight: bold; }
.sp-only { display: none; }

/* --- ホバーエフェクト --- */
.wd-delivery-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.wd-delivery-banner:hover .wd-delivery-bg {
    transform: scale(1.05);
}

.wd-delivery-banner:hover .wd-delivery-btn {
    background-color: #00b35e;
    box-shadow: 0 8px 20px rgba(0, 153, 80, 0.4);
}

/* --- レスポンシブ (スマホ表示：縦積み) --- */
@media (max-width: 768px) {
    .wd-delivery-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .wd-delivery-info {
        width: 100%;
    }

    .wd-delivery-header {
        justify-content: center;
        gap: 8px;
    }

    .wd-delivery-main {
        justify-content: center;
        flex-direction: column; /* タイトルとブランドを縦に */
        gap: 5px;
    }

    .wd-delivery-brand { font-size: 28px; }
    .wd-delivery-title { font-size: 24px; }
    .wd-highlight { font-size: 26px; }

    .wd-delivery-desc { font-size: 13px; }
    .sp-only { display: block; } /* スマホのみ改行 */

    .wd-delivery-action {
        width: 100%;
        max-width: 320px;
    }
    
    .wd-delivery-btn {
        font-size: 16px;
        padding: 14px 0;
    }
}
/* --- サイドバー --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');



.sq-uber-clear-banner {
    position: relative;
    display: block;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    margin: 60px auto;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

/* 背景画像 */
.sq-uber-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

/* オーバーレイ（薄い黒に変更） */
.sq-uber-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* 写真を綺麗に見せるため、かなり薄い黒にする */
    background: rgba(0, 0, 0, 0.4);
}

/* コンテンツ配置 */
.sq-uber-content {
	color: #ffffff !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    padding: 25px 20px;
    box-sizing: border-box;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    
    /* 背景が明るいので、文字に影をつけて読みやすくする */
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

/* --- ヘッダー部分 --- */
.sq-uber-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sq-uber-tag {
    /* ★ポイントカラー：緑 */
    background-color: #009950;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    line-height: 1;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-shadow: none; /* タグの中は影なし */
}

.sq-uber-sub {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

/* --- メイン部分 --- */
.sq-uber-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.sq-uber-brand {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
}
.uber-text { color: #fff; }
.eats-text { 
    /* Uber Eatsのロゴ色である緑を使用 */
    color: #009950; 
    /* 文字の輪郭を白くして読みやすく（袋文字風） */
    text-shadow: 
        1px 1px 0 #fff, -1px -1px 0 #fff,
        -1px 1px 0 #fff, 1px -1px 0 #fff,
        0 2px 5px rgba(0,0,0,0.5);
}

.sq-uber-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.highlight-text {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    /* 下線マーカー風に緑を敷く */
    background: linear-gradient(transparent 60%, #009950 60%);
    display: inline-block;
    padding: 0 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* --- フッター部分 --- */
.sq-uber-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sq-uber-desc {
    font-size: 13px;
    margin: 0;
    font-weight: 700;
}

.sq-uber-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 240px;
    padding: 14px 0;
    /* ★ポイントカラー：緑ボタン */
    background-color: #009950;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-shadow: none;
    border: 1px solid rgba(255,255,255,0.2);
}

.arrow { margin-left: 8px; font-weight: bold; }

/* --- ホバーエフェクト --- */
.sq-uber-clear-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: #00b35e;
}

.sq-uber-clear-banner:hover .sq-uber-bg {
    transform: scale(1.05);
}

.sq-uber-clear-banner:hover .sq-uber-btn {
    background-color: #00b35e; /* ホバーで少し明るく */
    box-shadow: 0 6px 20px rgba(0, 153, 80, 0.4);
}

