/* ========================
   Reset
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    /* 中黒を消す */
    padding: 0;
    margin: 0;
}

body {
    font-family: "Sofia Sans Extra Condensed", yu-gothic-pr6n, sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
}

/* デフォルトでは改行タグを無効化 */
.sp-br {
    display: none;
}

.pc-br {
    display: none;
}

/* ========================
     Header
  ======================== */
.site-header {
    width: 100%;
    padding: 10px 20px;
    position: relative;
}

.header-pc {
    display: none;
}

.header-sp {
    display: block;
    text-align: center;
}

.header-pc .logo,
.header-sp .logo {
    max-width: 300px;
    margin: 0 auto;
}

.header-text {
    font-family: rocky-extra-condensed, serif;
    font-weight: 300;
    font-style: normal;
    margin-top: 8px;
}



/* ========================
     Main Visual
  ======================== */
/* Main Visual */
.main-visual {
    position: relative;
    background: url("../img/mv_bg_pc.jpg") no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 40px 20px;
    background-position: top center;
    /*min-height: 100vh;*/
    /* ファーストビュー全体に表示 */
}

/* Header inside main visual */
.site-header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo img {
    height: 60px;
}

.site-header .header-text {
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
    font-weight: bold;
    color: #fff;
}

/* Main copy */
.main-copy {
    position: relative;
    margin-top: 100px;
    /* ヘッダーの下に余白 */
    text-align: center;
}

.main-copy .main-logo img {
    max-width: 500px;
    /* ロゴの大きさ調整 */
    width: 80%;
    height: auto;
    margin: 50px auto 80px auto;
}

.main-copy h2 {
    font-size: 32px;
    margin-bottom: 10px;
}


.read {
    font-size: 1.1rem;
    line-height: 2rem;
}



/* ========================
     Brand Sections
  ======================== */
.brand-block {
    padding: 40px 20px 200px;
    /* 区切り線を削除 */
}

.brand-title img {
    max-height: 100px;
    /* 200px を上限に縮小 */
    width: auto;
    margin: 30px auto 30px;
}

.item-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* SP: 2カラム */
    gap: 20px;
}

.item-link {
    display: block;
    text-align: left;
    /*padding: 15px;*/
    border-radius: 6px;
    background: #fff;
    transition: transform 0.3s;
}

.item-link:hover {
    transform: translateY(-3px);
}

/* item内の横並び調整 */
.item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.item-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.item-name {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
}

.item-cap {
    color: #e1041b;
    margin-top: 4px;
}

.buy-btn {
    display: inline-block;
    padding: 10px 35px;
    background: #e1041b;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    border-radius: 50px;
    /* 完全に丸く */
}

.tax {
    font-size: 1.2rem;
}

/* ========================
     CTA Buttons
  ======================== */
.btn-area {
    text-align: center;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    /* 縦積み */
    gap: 15px;
}

.cta-btn {
    display: block;
    margin: 10px auto;
    width: 30%;
    transition: opacity 0.3s ease;
}

.cta-btn:hover {
    opacity: 0.6;
}

/* ========================
   Footer
======================== */
/* Footer base */
.site-footer {
    background: url("../img/footer_bg.jpg") no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;

}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* ← 縦中央で揃える */
}

/* 左側 (Coca-Cola) */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-left: 30px;
}

.footer-left img {
    max-height: 80px;
}

.footer-left .copyright {
    font-size: 10px;
    color: #fff;
}

/* 右側 (JUN) */
.footer-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-right img {
    max-height: 40px;
}

.footer-right .copyright {
    font-size: 12px;
    color: #fff;
}

/* SP版（縦積み） */
@media screen and (max-width: 767px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Coca-Cola ロゴ：中央寄りのまま少し左にずらす */
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 中央寄せをキープ */
        transform: translateX(-10px);
        /* ← 左へ10px移動（調整可） */
        margin-bottom: 20px;

    }

    .footer-right {
        flex-direction: column;
        /* JUNは縦積み */
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .footer-right .copyright {
        font-size: 10px;
        margin-top: 5px;
    }

    .footer-right img {
        max-height: 50px;
        /* ← 40px から拡大 */
    }

    .cta-btn {
        width: 85%;
    }
}


/* PC版 */
@media screen and (min-width: 768px) {

    .header-pc {
        display: flex;
    }

    .header-sp {
        display: none;
    }

    .header-pc {
        justify-content: space-between;
        align-items: center;
    }

    .header-pc .logo img {
        max-width: 220px;
    }

    .header-text {
        font-size: 16px;
    }

    .mv-logo {
        max-width: 400px;
    }

    .mv-lead {
        font-size: 18px;
        max-width: 600px;
    }

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

    .item-list {
        grid-template-columns: repeat(3, 1fr);
        /* PCは3カラム */
    }

    .pc-br {
        display: inline;
    }
}

/* SP版 */
@media screen and (max-width: 767px) {
    .item-name {
        font-size: 1.1rem;
        font-weight: bold;
        letter-spacing: 0.05rem;
    }

    .item-cap {
        color: #e1041b;
        margin-top: 4px;
        font-size: 1rem;
        letter-spacing: 0.02rem;
    }

    .buy-btn {
        display: inline-block;
        padding: 3px 13px;
        background: #e1041b;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 30px;
        /* 完全に丸く */
    }

    .tax {
        font-size: 0.9rem;
    }

    .brand-block {
        padding: 40px 15px 100px;
        /* 区切り線を削除 */
    }

    .sp-br {
        display: inline;
        /* br を有効化 */
    }

    .read {
        font-size: 0.9rem;
        line-height: 1.4rem;
    }

    .site-header .logo img {
        height: 40px;
    }

    .site-header .header-text {
        font-size: 1.2rem;
    }

    .brand-title img {
        max-height: 50px;
        /* 200px を上限に縮小 */
        width: auto;
        margin: 0px auto 30px;
    }
}