@charset "UTF-8";
/* CSS Document */
/* =========================================
   カラーカップ特設エリア (Color Cup)
   ========================================= */
.color-cup-wrapper {
    /* max-width: 1000px; */
    margin: 0 0 60px;
    padding: 4% 8%;
    background: #ffffff;
}

/* --- 1. 導入エリア --- */
.color-cup-intro {
    margin-bottom: 60px;
}

/* タイトル周り */
.intro-header {
    margin-bottom: 40px;
}
.intro-header .color-main-ttl {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0F1D4E; /* 濃紺色 */
    line-height: 1.5;
    margin: 20px 0;
}
.intro-header .deco-dots {
    max-width: 100%; /* ドット線の幅調整 */
    height: auto;
    display: inline-block;
}

/* コンテンツ（テキスト左・画像右） */
.intro-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.intro-content-flex .intro-txt {
    width: 69%;
    font-size: 16px;
    line-height: 2.2;
    color: #333;
}
.intro-content-flex .intro-img {
    maz-width: 100%;
}
.intro-content-flex .intro-img img {
    width: 100%;
    height: auto;
    display: block;
}


/* --- 2. オリジナル印刷エリア --- */
.color-cup-original {
    margin-top: 60px;
}

/* ピンクの帯タイトル */
.pink-banner-ttl {
    background: #FA988D; /* サーモンピンク */
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 3px 0;
    border-radius: 50px;
    margin-bottom: 30px;
}
.color-cup-wrapper p {
    font-weight: 400;
}
/* コンテンツ（画像左・テキスト右） */
.original-content-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.original-content-flex .img_left {
    max-width: 100%;
    text-align: center;
}
.original-content-flex .img_left img {
    width: 100%;
    max-width: 350px;
    height: auto;
}
.original-content-flex .txt-right {
    width: 60%;
    font-size: 16px;
    line-height: 1.9;
}
h3.ttl-uline-pink {
      font-size: 1.4em;
      /* padding-bottom: 0.1em; */
      border-bottom: 4px solid #fa988d;
      margin: 0 auto 1.6rem;
      text-align: center;
      width: 6em;
}

/* =========================================
   SP対応 (max-width: 768px)
   ========================================= */
@media screen and (max-width: 768px) {
    /* 導入エリア */
    .intro-header .color-main-ttl {
        font-size: 1.4rem;
    }
    .intro-content-flex {
        flex-direction: column-reverse; /* 画像を上に */
        gap: 30px;
    }
    .intro-content-flex .intro-txt,
    .intro-content-flex .intro-img {
        width: 100%;
    }
.color-cup-intro {
    margin-bottom: 2em;
}

    /* オリジナル印刷エリア */
    .pink-banner-ttl {
        font-size: 0.9rem;
        padding: 6px 10px;
        border-radius: 30px;
    }
    .original-content-flex {
        flex-direction: column;
        gap: 20px;
        text-align: left;
    }
    .original-content-flex .img_left,
    .original-content-flex .txt-right {
        width: 100%;
    }
}


/* =========================================
   タブ切り替えスタイル (Color Cup)
   ========================================= */

/* タブナビゲーション */
.tab-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px; /* タブ間の隙間 */
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
}

.tab-nav li {
    width: 32%; /* 3等分 */
    text-align: center;
    padding: 15px 0;
    background: #C4C4C4; /* 非アクティブ時のグレー */
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 10px 10px 0 0; /* 上部の角丸 */
    cursor: pointer;
    transition: background 0.3s;
}

/* アクティブなタブ */
.tab-nav li.active {
    background: #FA988D; /* サーモンピンク */
}

/* ホバー時 */
.tab-nav li:hover {
    opacity: 0.8;
}

/* タブコンテンツ */
.tab-content {
    display: none; /* 初期状態は非表示 */
    animation: fadeIn 0.5s ease;
}

/* アクティブなコンテンツのみ表示 */
.tab-content.active {
    display: block;
}

.special .special_items_list.-fourline .flex {
    gap: 1.5%;
    margin-bottom: 3em;
    justify-content: space-between;
}
/* フェードインアニメーション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ボタンのカラー追加 (-pink-btn) */
.more_btn.-pink-btn a {
    background: #FA988D; /* サーモンピンク */
    color: #ffffff;
    border-radius: 50px;
    padding: 1em 3em;
    text-decoration: none;
    display: inline-block;
    width: auto;
    min-width: 300px;
}
.more_btn.-pink-btn a:hover {
    opacity: 0.8;
}

/* SP対応 */
@media screen and (max-width: 768px) {
    .tab-nav li {
        font-size: 1rem;
        padding: 10px 0;
    }
    .more_btn.-pink-btn a {
        width: 90%;
        min-width: auto;
    }
}