@charset "utf-8";
/* =========================================================
   基本設定・共通ラッパー
========================================================= */

.container_ { background-color:#FFF !important; }
.container_ .pc_only { display: inherit !important; }
.container_ .sp_only { display: none !important; }

.l_wrap { width: 100%; }
.l_wrap a:hover img { opacity: 0.8; filter: alpha(opacity=80); transition: 0.3s; }

.s_wrap {
    width: 100%;
    position: relative;
    z-index: 5;
    background: #fff;
    margin: 0 auto;
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

/* =========================================================
   テキスト・見出し (PC)
========================================================= */

.ttl_txtwrap03 {
    margin: 150px auto 0px auto;
    text-align: center;
    font-size: 30px;
    font-family: "Adobe Garamond Pro", "zen-old-mincho", serif;
    font-weight: 300;
    color: #1e1e1e;
    letter-spacing: 2.5px;
    line-height: 1.4;
}

.t_i_txt_03 {
    width: 65%;
    margin: 5% auto 10% auto;
    text-align: center;
    font-size: 17px;
    line-height: 2.2em;
    letter-spacing: 1.5px;
    font-family: "zen-old-mincho", "Adobe Garamond Pro", sans-serif;
    font-weight: 600;
    color: #1e1e1e;
}

.t_i_txt_03 p {
    margin: 0 0 1.3em 0;
}

/* =========================================================
   画像・レイアウト (PC)
========================================================= */

.img_wrap01 {
    width: 95%;
    display: flex;
    justify-content: center;
    margin: 50px auto 0px auto;
}
.img_wrap01 img {
    width: 100%;
    height: auto;
}

/* SUVIN POLO 専用 ギャラリーレイアウト */
.suvin_gallery {
    display: flex;
    justify-content: center;
    gap: 6%;
    max-width: 1000px;
    margin: 80px auto;
}
.suvin_col_l, .suvin_col_r {
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.suvin_col_r {
    padding-top: 15%; /* 段違いレイアウトを実現 */
}
.suvin_img_box img {
    width: 100%;
    height: auto;
    display: block;
}

/* キャプション（BUYボタン等） */
.suvin_caption {
    font-size: 16px;
    color: #1e1e1e;
    margin-top: 10px;
    text-align: right;
    font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-style: normal;
    letter-spacing: 1px;
}


.suvin_caption a {
    text-decoration: underline;
    color: #1e1e1e;
    margin-left: 5px;
}
.suvin_caption a:hover {
    opacity: 0.7;
}

/* PC版：4列×2段 (シャツ7枚用) */
.img4_wrap {
    display: flex;
    flex-wrap: wrap;             /* 折り返しを有効に */
    justify-content: flex-start; /* 左寄せ（2段目が左から並ぶように） */
    gap: 40px 2%;                /* 垂直方向40px、水平方向2%の間隔 */
    width: 100%;
    margin: 0 auto 100px auto;
}
.img4_wrap .d_box {
    width: 23.5%;                /* 4枚並び (100% - 間隔分) / 4 */
}
.img4_wrap .d_box img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   ボタン (PC)
========================================================= */

.btn_wrap {
    margin: 140px auto;
}

.btn_box {
    width: 600px;
    margin: 0 auto 50px auto;
    font-family: "zen-old-mincho", "Adobe Garamond Pro", sans-serif;
}

.btn_box a {
    text-decoration: none !important;
}

.view_btn {
    display: block;
    position: relative;
    padding: 25px 0;
    border: solid 1px #000;
    text-align: center;
    font-family: "zen-old-mincho", "Adobe Garamond Pro", sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 3px;
    color: #000 !important;
    text-decoration: none !important;
    transition: 0.3s;
}

.view_btn:hover {
    background-color: #000;
    color: #fff !important;
}

/* =========================================================
   アニメーション
========================================================= */

.fadein_img {
    animation: fadein 2s forwards;
}
@keyframes fadein {
    from { opacity: 0; transform: translateY(0); }
    to { opacity: 1; transform: translateY(0); }
}

/* スクロールふわっと表示 (HTML側で設定を外していますが、念のため定義だけ残しておきます) */
.fuwat, .fuwat02 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s ease-out;
}
.fuwat.scrollin, .fuwat02.scrollin {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   スマホ版 (SP) スタイル (980px以下)
========================================================= */
@media only screen and (max-width: 980px) {
    
    .container_ .pc_only { display: none !important; }
    .container_ .sp_only { display: block !important; }

    .l_wrap { padding-bottom: 10%; }
    .wrap { width: 100%; margin: 0 auto; }

    /* テキスト・見出し (SP) */
    .ttl_txtwrap03 {
        margin: 20% auto 4% auto;
        font-size: 21px;
        line-height: 1.3;
    }

    /* スマホ版はテキストを左揃えに */
    .t_i_txt_03 {
        width: 85%;
        margin: 8% auto 10% auto;
        text-align: left !important;
        font-size: 14px !important;
        line-height: 1.85em !important;
        letter-spacing: 1px !important;
    }
    .t_i_txt_03 p {
        text-align: left !important;
        font-size: 14px !important;
        line-height: 1.85em !important;
    }

    /* 画像・レイアウト (SP) */
    .img_wrap01 {
        width: 100%;
        margin: 0 auto 0 auto;
    }

    .suvin_gallery {
        margin: 5% auto 10%;
        gap: 5%;
        width: 95%;
    }
    .suvin_col_l, .suvin_col_r { gap: 80px; }
    .suvin_col_r { padding-top: 15%; }

    /* キャプション (SP) */
    .suvin_caption {
        font-size: 12px;
        margin-top: 5px;
        text-align: center; 
    }

    /* 7枚並びのシャツ (SP) */
    .img4_wrap {
        width: 95%;
        margin: 0 auto 15% auto;
        gap: 20px 2%;        /* スマホ用は間隔を少し狭める */
    }
    .img4_wrap .d_box {
        width: 49%;          /* 2枚並び */
    }

    /* ボタン (SP) */
    .btn_wrap { margin: 15% auto; }
    .btn_box { width: 90%; margin: 0 auto 40px auto; }
    .view_btn {
        padding: 5% 0;
        font-size: 110%;
    }
}