.entry-header {
    margin-top: -120px !important;
}

/***** eyecatch section ******/

.mi-hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: #ffffff;
}

/* 背景画像設定 */
.mi-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* スマホ用背景 (SP) */
    background-image: url('https://teamorder.jp/wp-content/themes/wp-dcafe/maker/adidas/mi-uniform/img/bg-sp.jpg');
    /* 適切なパスに変更してください */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* 背景の暗幕（文字を見やすくするため） */
.mi-hero__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    /* 下半分くらいにグラデーション */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

/* コンテンツコンテナ */
.mi-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 25px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

/* 1. Adidas Logo */
.mi-hero__logo {
    width: 60px;
    /* SPサイズ */
    height: auto;
    margin-bottom: 20px;
}

.mi-hero__logo img {
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto;
}

/* 2. JAPAN MODEL SVG */
.mi-hero__japan-model {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
    z-index: 2;
}

.mi-hero__japan-model img {
    display: block;
    width: 100%;
    height: auto;
}

/* 3. Wear Image */
.mi-hero__wear {
    width: 115%;
    height: auto;
    margin-bottom: -70px;
    z-index: 1;
}

.mi-hero__wear img {
    width: 100%;
    height: auto;
    display: block;
}

/* 4. Title Area */
.mi-hero__title-area {
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
    width: 100%;
    white-space: nowrap;
}

.mi-hero__sub-title {
    font-size: 14px;
    font-weight: 700;
    text-align: right;
    margin: 0;
    margin-bottom: -5px;
}

.mi-hero__main-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 79px;
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin: 0;
    text-transform: lowercase;
    color: #ffffff;
}

/* 5. Features Icons */
.mi-hero__features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
}

.mi-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.mi-feature-item__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.mi-feature-item__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mi-feature-item__text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
}

.mi-feature-item__note {
    font-size: 9px;
    line-height: 1.2;
    margin-top: 5px;
    opacity: 0.8;
}

/* 仕切り線 */
.mi-feature-item__divider {
    width: 3px;
    height: 40px;
    /* 仕切りの高さ */
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    margin-top: 10px;
    /* アイコンの位置に合わせる */
}

/* ============================================
   Tablet Responsiveness (Tablet)
   ============================================ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .mi-hero {
        min-height: 600px;
    }

    .mi-hero__logo {
        width: 65px;
    }

    .mi-hero__japan-model {
        width: 300px;
    }

    .mi-hero__wear {
        max-width: 600px;
    }

    .mi-hero__title-area {
        margin-top: -50px;
    }

    .mi-hero__main-title {
        font-size: 100px;
    }

    .mi-feature-item__icon {
        width: 50px;
        height: 50px;
    }

    .mi-feature-item__divider {
        height: 50px;
    }
}

/* ============================================
   Desktop Responsiveness (PC)
   ============================================ */
@media screen and (min-width: 1025px) {

    .mi-hero {
        min-height: 700px;
        /* PCでの最小高さ確保 */
    }

    /* 背景画像切り替え */
    .mi-hero__bg {
        background-image: url('https://teamorder.jp/wp-content/themes/wp-dcafe/maker/adidas/mi-uniform/img/bg-pc.jpg');
        /* PC用画像パス */
        background-position: center center;
    }

    .mi-hero__bg::after {
        height: 50%;
        /* PCはもう少しグラデーション控えめでもOK */
    }

    .mi-hero__container {
        padding-top: 50px;
        padding-bottom: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ロゴサイズ調整 */
    .mi-hero__logo {
        width: 70px;
    }

    /* JAPAN MODEL ロゴ */
    .mi-hero__japan-model {
        width: 350px;
        margin-top: 40px;
    }

    /* ウェア画像 */
    .mi-hero__wear {
        max-width: 660px;
        margin-top: 30px;
    }

    .mi-hero__wear img {
        width: 80%;
        margin: 0 auto;
    }

    /* タイトルエリア */
    .mi-hero__title-area {
        margin-bottom: 30px;
        margin-top: -70px;
    }

    .mi-hero__sub-title {
        font-size: 28px;
        padding-right: 27%;
        margin-bottom: -11px;
        font-weight: 700;
    }

    .mi-hero__main-title {
        font-size: 130px;
        color: #fff;
    }

    /* アイコンエリア */
    .mi-hero__features {
        max-width: 550px;
    }

    .mi-feature-item__icon {
        width: 60px;
        height: 60px;
    }

    .mi-feature-item__text {
        font-size: 16px;
    }

    .mi-feature-item__note {
        font-size: 11px;
    }

    .mi-feature-item__divider {
        height: 60px;
    }
}


/***** about section ******/

/* ============================================
   Utility Classes (汎用クラス)
   ============================================ */
/* PCでのみ改行させたい場合などに使用 */
.u-hide-sp {
    display: none;
}

@media screen and (min-width: 768px) {
    .u-hide-sp {
        display: inline;
    }
}

/* 太字強調 */
.u-bold {
    font-weight: 700;
}

/* ============================================
   mi-about Section Styles
   ============================================ */
.mi-about {
    position: relative;
    width: 100%;
    padding: 20px 20px;
    overflow: hidden;
    color: #262626;
    text-align: center;
}

/* 背景画像設定 */
.mi-about__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* スマホ用背景 (SP) */
    background-image: url('https://teamorder.jp/wp-content/themes/wp-dcafe/maker/adidas/mi-uniform/img/bg-about-sp.jpg');
    /* 適切なパスに変更 */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* コンテンツコンテナ */
.mi-about__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* 縦の装飾線 */
.mi-about__line {
    width: 3px;
    height: 40px;
    background-color: #020405;
    margin: 0 auto 20px;
    /* 中央寄せ & 下余白 */
}

/* タイトル周り */
.mi-about__sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #020405;
}

.mi-about__main-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    margin: 0 0 10px;
    letter-spacing: 0.02em;
    color: #020405;

}

/* テキストエリア */
.mi-about__content {
    font-size: 13px;
    line-height: 1.8;
}

.mi-about__text {
    margin-bottom: 30px;
    text-align: left;
}

.mi-about__note {
    font-size: 11px;
    display: block;
    color: #666;
}

/* 見出し：国内モデルの安心感 */
.mi-about__heading {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px;
    letter-spacing: 0.05em;
    border-left: none;
    padding: 0;
    color: #020405;
}


/* ============================================
   Tablet Responsiveness (Tablet)
   ============================================ */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    .mi-about {
        padding: 30px 20px;
    }

    .mi-about__line {
        height: 50px;
    }

    .mi-about__main-title {
        font-size: 50px;
    }

    .mi-about__content {
        font-size: 13px;
        line-height: 1.8;
    }

    .mi-about__text {
        text-align: center;
    }
}

/* ============================================
   Desktop Responsiveness (PC)
   ============================================ */
@media screen and (min-width: 1025px) {

    .mi-about {
        padding: 30px 20px;
    }

    /* 背景画像切り替え */
    .mi-about__bg {
        background-image: url('https://teamorder.jp/wp-content/themes/wp-dcafe/maker/adidas/mi-uniform/img/bg-about-pc.jpg');
        /* PC用画像パス */
    }

    /* 縦線 */
    .mi-about__line {
        height: 60px;
        margin-bottom: 30px;
    }

    .mi-about__container {
        display: flex;
        flex-direction: column;
    }

    /* タイトル */
    .mi-about__sub-title {
        font-size: 15px;
    }

    .mi-about__main-title {
        font-size: 60px;
        margin-bottom: 10px;
    }

    /* テキスト */
    .mi-about__content {
        font-size: 14px;
        line-height: 2;
    }

    .mi-about__text {
        margin-bottom: 50px;
        text-align: center;
    }

    .mi-about__note {
        font-size: 12px;
    }

    /* 見出し */
    .mi-about__heading {
        font-size: 26px;
        margin: 40px 0 10px;
    }
}


/***** menu section ******/

/* ============================================
   mi-menu Section Styles
   ============================================ */
.mi-menu {
    background-color: #020405;
    padding: 25px 20px;
    width: 100%;
    box-sizing: border-box;
}

.mi-menu__container {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* ボタン間の隙間 */
    max-width: 600px;
    /* PCで広がりすぎないように制限 */
    margin: 0 auto;
}

.mi-menu__link {
    display: flex;
    flex-direction: column;
    /* 縦並び (テキスト上がアイコン下) */
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 12px;
    width: 50%;
    padding: 12px 10px;
    text-decoration: none;
    color: #020405;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mi-menu__link:hover {
    opacity: 0.85;
    /* ホバー時に少し薄く */
}

.mi-menu__label {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    /* アイコンとの距離 */
    letter-spacing: 0.05em;
}

.mi-menu__icon {
    width: 24px;
    height: 24px;
    display: block;
}

.mi-menu__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================
   Desktop Responsiveness (PC)
   ============================================ */
@media screen and (min-width: 768px) {
    .mi-menu {
        padding: 30px 20px;
    }

    .mi-menu__container {
        gap: 30px;
        /* PCでは隙間を広めに */
    }

    .mi-menu__link {
        border-radius: 16px;
        padding: 20px 20px;
    }

    .mi-menu__label {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .mi-menu__icon {
        width: 28px;
        height: 28px;
    }
}

/***** series section ******/

/* ============================================
   mi-series Section (UNIFORM) Styles
   ============================================ */
.mi-series {
    background-color: #F8F8FA;
    /* 指定の背景色 */
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

.mi-series__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* タイトルエリア */
.mi-series__header {
    margin-bottom: 20px;
}

.mi-series__title-en {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 80px;
    color: #020405;
    margin: 0;
    line-height: 1;
    letter-spacing: 0.02em;
}

.mi-series__title-jp {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #020405;
    margin: 5px 0 0;
    letter-spacing: 0.05em;
}

/* グリッドレイアウト (SPファースト: 2列) */
.mi-series__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    /* 5つ目は自動的に左寄せになります */
}

/* カードスタイル */
.mi-series-card {
    background: #fff;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 画像エリア */
.mi-series-card__image-box {
    width: 100%;
    padding-top: 100%;
    /* 正方形 */
    position: relative;
    background: #fff;
    /* ベースは白 */
}

/* ★色付きの斜め背景（擬似要素で作成）★ */
.mi-series-card__image-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

    /* 斜めの切り抜き形状 (左側75%まで、右側55%まで) */
    /* Component 49.png を忠実に再現 */
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0 75%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 55%, 0 75%);

    /* デフォルトの背景（個別指定で上書きされます） */
    background: #ccc;
}

.mi-series-card__image-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    /* 背景より上に */
}

/* テキストエリア */
.mi-series-card__body {
    padding: 0px 10px 10px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mi-series-card__desc {
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #555;
}

.mi-series-card__sub {
    font-size: 10px;
    color: #999;
    margin: 0;
    font-family: 'Barlow Condensed', sans-serif;
    margin-top: -3px;
    margin-bottom: -4px;
}

.mi-series-card__name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 25px;
    margin: 0;
    padding: 0;
    border-left: none;
}

.mi-series-card__name-jp {
    font-size: 10px;
    font-weight: 700;
    margin: 0 0 10px;
    color: inherit;
}

.mi-series-card__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: inherit;
}

.mi-series-card__icon svg {
    width: 14px;
    height: 14px;
}

/* --- シリーズごとのカラー設定 --- */
/* 中身のグラデーションは横向き(to right)に設定 */

/* ENTRADA (Blue) */
.mi-series-card--entrada .mi-series-card__name,
.mi-series-card--entrada .mi-series-card__name-jp,
.mi-series-card--entrada .mi-series-card__icon {
    color: #1168AB;
}

.mi-series-card--entrada .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #1168AB 0%, rgba(17, 104, 171, 0.70) 100%);
}

/* TIRO (Red/Pink) */
.mi-series-card--tiro .mi-series-card__name,
.mi-series-card--tiro .mi-series-card__name-jp,
.mi-series-card--tiro .mi-series-card__icon {
    color: #DC6B89;
}

.mi-series-card--tiro .mi-series-card__image-box::before {
    background: linear-gradient(270deg, rgba(220, 107, 137, 0.70) 0%, #DC6B89 100%);
}

/* GRAPHIC (Green) */
.mi-series-card--graphic .mi-series-card__name,
.mi-series-card--graphic .mi-series-card__name-jp,
.mi-series-card--graphic .mi-series-card__icon {
    color: #026537;
}

.mi-series-card--graphic .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #026537 0%, rgba(2, 101, 55, 0.70) 100%);
}

/* ENTRADA GK (Grey) */
.mi-series-card--gk .mi-series-card__name,
.mi-series-card--gk .mi-series-card__name-jp,
.mi-series-card--gk .mi-series-card__icon {
    color: #7E849F;
}

.mi-series-card--gk .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #7E849F 0%, rgba(126, 132, 159, 0.70) 100%);
}

/* SOCKS (Yellow) */
.mi-series-card--socks .mi-series-card__name,
.mi-series-card--socks .mi-series-card__name-jp,
.mi-series-card--socks .mi-series-card__icon {
    color: #CFC036;
}

.mi-series-card--socks .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #CFC036 0%, rgba(207, 192, 54, 0.70) 100%);
}

/* TRACK (Orange) */
.mi-series-card--track .mi-series-card__name,
.mi-series-card--track .mi-series-card__name-jp,
.mi-series-card--track .mi-series-card__icon {
    color: #DF972A;
}

.mi-series-card--track .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #DF972A 0%, rgba(223, 151, 42, 0.70) 100%);
}

/* WIND (purple) */
.mi-series-card--wind .mi-series-card__name,
.mi-series-card--wind .mi-series-card__name-jp,
.mi-series-card--wind .mi-series-card__icon {
    color: #690964;
}

.mi-series-card--wind .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #690964 0%, rgba(105, 9, 100, 0.70) 100%);
}

/* POLO (sax) */
.mi-series-card--polo .mi-series-card__name,
.mi-series-card--polo .mi-series-card__name-jp,
.mi-series-card--polo .mi-series-card__icon {
    color: #2CABB2;
}

.mi-series-card--polo .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #2CABB2 0%, rgba(44, 171, 178, 0.70) 100%);
}

/* WARMER (pink) */
.mi-series-card--warmer .mi-series-card__name,
.mi-series-card--warmer .mi-series-card__name-jp,
.mi-series-card--warmer .mi-series-card__icon {
    color: #C91869;
}

.mi-series-card--warmer .mi-series-card__image-box::before {
    background: linear-gradient(90deg, #C91869 0%, rgba(201, 24, 105, 0.70) 100%);
}


/* ============================================
   Desktop Responsiveness (PC)
   ============================================ */
@media screen and (min-width: 768px) {
    .mi-series {
        padding: 80px 20px;
    }

    .mi-series {
        padding: 80px 20px;
    }

    .mi-series__header {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
    }

    .mi-series__title-en {
        font-size: 120px;
    }

    .mi-series__title-jp {
        font-size: 24px;
        margin-top: 10px;
    }

    .mi-series__grid {
        grid-template-columns: repeat(5, 1fr);
        /* PCは5列 */
        gap: 20px;
    }

    .mi-series-card__body {
        padding: 20px 15px 30px;
    }

    .mi-series-card__desc {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .mi-series-card__name {
        font-size: 32px;
    }

    .mi-series-card__name-jp {
        font-size: 12px;
    }
}


/* ============================================
   mi-lineup Section Styles
   ============================================ */
.mi-lineup {
    background-color: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
    margin: 20px 20px 0px 20px;
    border-radius: 0 0 12px 12px;
    box-shadow: 2px 3px 6px 0 rgba(0, 0, 0, 0.08);
}

/* --- Top Blue Bar --- */
.mi-lineup__bar {
    background: linear-gradient(270deg, rgba(17, 104, 171, 0.70) 0%, #1168AB 100%);
    /* デザインに近い青 */
    width: 100%;
    padding: 10px 0;
    margin-bottom: 25px;
}

.mi-lineup__bar_tiro {
    background: linear-gradient(270deg, rgba(220, 107, 137, 0.70) 0%, #DC6B89 100%);
}

.mi-lineup__bar_graphic {
    background: linear-gradient(90deg, #026537 0%, rgba(2, 101, 55, 0.70) 100%);
}

.mi-lineup__bar_gk {
    background: linear-gradient(90deg, #7E849F 0%, rgba(126, 132, 159, 0.70) 100%);
}

.mi-lineup__bar_socks {
    background: linear-gradient(90deg, #CFC036 0%, rgba(207, 192, 54, 0.70) 100%);
}

.mi-lineup__bar_track {
    background: linear-gradient(90deg, #DF972A 0%, rgba(223, 151, 42, 0.70) 100%);
}

.mi-lineup__bar_wind {
    background: linear-gradient(90deg, #690964 0%, rgba(105, 9, 100, 0.70) 100%);
}

.mi-lineup__bar_polo {
    background: linear-gradient(90deg, #2CABB2 0%, rgba(44, 171, 178, 0.70) 100%);
}

.mi-lineup__bar_warmer {
    background: linear-gradient(90deg, #C91869 0%, rgba(201, 24, 105, 0.70) 100%);
}


.mi-lineup__bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mi-lineup__logo {
    width: 30px;
    height: auto;
}

.mi-lineup__logo svg {
    display: block;
    width: 100%;
    height: auto;
}

.mi-lineup__bar-text {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
}


/* --- Container --- */
.mi-lineup__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    /* SP用パディング */
    position: relative;
}

/* --- Header Area --- */
.mi-lineup__header {
    margin-bottom: 30px;
}

/* Title: ENTRADA */
.mi-lineup__title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    color: #0071BC;
    border-left: none;
    padding: 0;
}

.mi-lineup__title-jp {
    font-weight: 700;
    font-size: 16px;
    color: #0071BC;
    display: block;
    margin-bottom: 10px;
}

.tiro_pink {
    color: #DC6B89;
}

.graphic_green {
    color: #026537;
}

.gk_grey {
    color: #7E849F;
}

.socks_yellow {
    color: #CFC036;
}

.track_orange {
    color: #DF972A;
}

.wind_purple {
    color: #690964;
}

.polo_sax {
    color: #2CABB2;
}

.warmer_pink {
    color: #C91869;
}

.mi-lineup__desc {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
}

/* Tags List */
.mi-lineup__tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mi-lineup__tags li {
    font-size: 9px;
    color: #aaa;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 2px 4px 2px 4px !important;
    background: #fff;
    white-space: nowrap;
    line-height: 2;
}

/* --- Swiper Area --- */
.mi-lineup__slider-wrap {
    position: relative;
    /* SPでは左右端いっぱいまでスライドを見せるため、コンテナのpaddingを相殺 */
    margin: 0 -20px;
    padding: 0 20px;
    /* 内側にpadding戻し */
}

.mi-lineup__swiper {
    padding-bottom: 30px;
    /* 影などが切れないように */
}

/* Navigation Arrows (Custom Design) */
.mi-lineup-prev,
.mi-lineup-next {
    color: #ccc;
    /* 薄いグレー */
    width: 40px;
    height: 40px;
    margin-top: -40px;
    /* 縦位置調整（画像の中央あたりに） */
}

.mi-lineup-prev::after,
.mi-lineup-next::after {
    font-size: 30px;
    font-weight: bold;
}

/* --- Product Card --- */
.mi-product {
    background: #fff;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Image Link */
.mi-product__img-link {
    display: block;
    width: 100%;
    position: relative;
    padding-top: 100%;
    /* 正方形エリア確保 */
    margin-bottom: 10px;
}

.mi-product__img-link img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mi-product__img-link:hover img {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Product Body */
.mi-product__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mi-product__name {
    font-size: 12px;
    font-weight: 700;
    padding: 3px;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Price Box */
.mi-product__price-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.mi-product__discount {
    background-color: #FF6B6B;
    /* 薄い赤 */
    color: #fff;
    font-size: 10px;
    padding: 3px 5px;
    border-radius: 2px;
}

.mi-product__price {
    font-weight: 700;
    font-size: 20px;
    color: #009FE8;
    /* 水色 */
}

/* Actions (Buttons) */
.mi-product__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* ボタン間の隙間 */
}

/* 詳細ボタン（グレー） */
.mi-product__btn-detail {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #E6E6E6;
    color: #999;
    font-size: 11px;
    padding: 8px 0;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s;
}

/* カスタマイズボタン（濃い青） */
.mi-product__btn-custom {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #005F9E;
    color: #fff;
    font-size: 12px;
    padding: 12px 0;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.mi-product__btn-detail:hover,
.mi-product__btn-custom:hover {
    opacity: 0.8;
}


/* ============================================
   Desktop Responsiveness (PC)
   ============================================ */
@media screen and (min-width: 768px) {

    .mi-lineup {
        padding-bottom: 20px;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 40px;
    }

    .mi-lineup__bar-inner {
        padding: 0 70px;
    }

    .mi-lineup__container {
        padding: 0px 70px;
    }

    /* Top Bar Adjustment */
    .mi-lineup__bar {
        padding: 15px 0;
        margin-bottom: 50px;
    }

    .mi-lineup__bar_tiro {
        padding: 15px 0;
        margin-bottom: 50px;
    }

    .mi-lineup__logo {
        width: 35px;
    }

    .mi-lineup__bar-text {
        font-size: 18px;
    }

    /* Header */
    .mi-lineup__header {
        margin-bottom: 50px;
    }

    .mi-lineup__title {
        font-size: 80px;
    }

    .mi-lineup__title-jp {
        font-size: 24px;
    }

    .mi-lineup__desc {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .mi-lineup__tags li {
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Slider Layout */
    .mi-lineup__slider-wrap {
        margin: 0 -50px;
        /* 矢印スペース確保のため広げる */
        padding: 0 50px;
    }

    /* 矢印位置調整（PCではスライドの外側） */
    .mi-lineup-prev {
        left: 0;
    }

    .mi-lineup-next {
        right: 0;
    }

    /* Product Card Text Sizes */
    .mi-product__name {
        font-size: 14px;
    }

    .mi-product__price {
        font-size: 24px;
    }

}

.bg_gray {
    background-color: #F8F8FA;
    padding-bottom: 130px;
}



.bg_gray_diagonal {
    background: #EBEBEB;
    padding-bottom: 130px;
    padding-top: 60px;

}

.mi-series-diagonal {
    background-color: #EBEBEB;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}