@charset "UTF-8";
/* CSS Document */
/* =========================================
   スープカップ特設エリア (Yellow Background)
   ========================================= */
.soup-feature-wrapper {
    background-color: #FFF8E1; /* 薄い黄色背景 */
    padding: 60px 10%;
    border-radius: 20px;
    margin-bottom: 60px;
}

/* --- 1. 上段：導入エリア --- */
.soup-intro-top {
    max-width: 1000px;
    margin: 0 auto 66px;
}
.soup-feature-wrapper p {
    font-weight: 400;
}

/* タイトル周り */
.intro-ttl-group {
    margin-bottom: 27px;
}
.intro-ttl-group .soup-main-ttl {
    font-size: 1.4rem;
    font-weight: bold;
    color: #003055; /* 濃いネイビー/黒 */
    line-height: 1.5;
    margin: 0.7em 0 1em;
}
.intro-ttl-group .deco-wave {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* フレックスレイアウト (テキスト左・画像右) */
.intro-content-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3em;
}
.intro-content-flex .intro-txt {
    width: 60%;
    font-size: 16px;
    line-height: 2.2;
}
.intro-content-flex .intro-img {
    width: 33%;
}
.intro-content-flex .intro-img img {
    width: 100%;
    height: auto;
}


/* --- 2. 下段：黄色枠ボックス (既存クラスの拡張) --- */
/* 元のクラス構造を維持しつつ、デザインを上書きするためのクラス -yellow-box を付与 */

.sec01_imgleft_container.-yellow-box {
    background: #ffffff;
    border: 4px solid #FCC800; /* 黄色の太枠 */
    border-radius: 30px;
    padding: 2px; /* 上余白を多めに（タイトル用） */
    position: relative; /* タイトル配置の基準 */
    margin-top: 50px;
    overflow: visible; /* 枠外にタイトルを出すため */
    align-items: center; /* 上下中央揃え */
    margin-bottom: 0;
}
.sec01_imgleft_container .border-double {
    border: 2px solid #FCC800;
    border-radius: 26px;
    padding: 64px 70px 29px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* タイトル (h3) を絶対配置で枠の上に移動 */
.sec01_imgleft_container.-yellow-box .txt-right h3 {
    position: absolute;
    top: -35px; /* 枠の上に引っ張り上げる */
    left: 50%;
    transform: translateX(-50%);
    background: #FCC800; /* 背景色 */
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 10px 40px;
    border-radius: 50px;
    white-space: nowrap;
    
    /* 既存スタイルの打ち消し */
    border-bottom: none;
    margin: 0;
    width: auto;
    text-align: center;
    box-shadow: 0 2px 0 rgba(0,0,0,0.1); /* 少し立体感 */
}
.sec01_imgleft_container.-yellow-box .txt-right h3:after {
    display: none; /* 下線を消す */
}

/* 左側の画像 */
.sec01_imgleft_container.-yellow-box .img_left {
    width: 30%; /* 画像サイズ調整 */
    text-align: center;
}

/* 右側のテキストエリア */
.sec01_imgleft_container.-yellow-box .txt-right {
    width: 60%;
}
.soup-feature-wrapper .sec01_imgleft_container .more_btn a {
    width: 100%;
}

.sec01_imgleft_container .txt-right p {
    font-size: 16px;
    line-height: 2.2;
    color: #333;
    margin-bottom: 1em;
}

.special .special_items_list h3 {
    margin: 0 auto 1.3rem;
}
/* =========================================
   SP対応 (max-width: 768px)
   ========================================= */
@media screen and (max-width: 768px) {
    .soup-feature-wrapper {
        padding: 40px 4%;
    }

    /* 上段 */
    .soup-intro-top .soup-main-ttl {
        font-size: 1.4rem;
    }
    .intro-content-flex {
        flex-direction: column-reverse; /* スマホでは画像を上に */
    }
    .intro-content-flex .intro-txt,
    .intro-content-flex .intro-img {
        width: 100%;
    }

    /* 下段：黄色枠 */
    .sec01_imgleft_container.-yellow-box {
        flex-direction: column;
        padding: 4px;
        text-align: center;
        gap: 20px;
    }
    
    .sec01_imgleft_container .border-double {
        flex-direction: column;
        padding: 9px;
        text-align: center;
        gap: 20px;
    }
    
    .sec01_imgleft_container.-yellow-box .txt-right h3 {
        font-size: 1.1rem;
        padding: 8px 20px;
        width: 80%; /* スマホでは幅を指定 */
        top: -30px;
    }

    .sec01_imgleft_container.-yellow-box .img_left {
        width: 70%;
        margin: 2rem auto 0;
    }
    .sec01_imgleft_container.-yellow-box .txt-right {
        width: 100%;
        text-align: left; /* テキストは左寄せが見やすい */
        margin-top: 0;
        padding-bottom: 2em;
    }
}