footer a:hover{
	opacity: 0.6;
}

/* =========================================
   Footer (image + contents)
========================================= */
footer {
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
}
/* 共通インナー */
.footer-inner {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}
/* -------------------------
   上段：画像バナー2枚
------------------------- */
.footer-banners {
    padding: 5rem 0;
    border-bottom: 1px solid #D7D7D7;
}
.footer-banners .footer-inner {
    display: flex;
    gap: 20px;
    justify-content: center; /* 2つまとめて中央 */
    align-items: center;
    flex-wrap: wrap; /* SPで折り返し */
}
.footer-banner {
    display: block;
}
.footer-banner img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
}
/* -------------------------
   中段：CONTENTS + ブランド
------------------------- */
.footer-contents {
    padding: 64px 0 56px;
}
/* SP：縦積み */
.footer-contents-grid {
    display: grid;
    gap: 48px;
}
/* ===== CONTENTS（左） ===== */
.footer-nav {
    display: grid;
    gap: 24px;
}
.footer-nav-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #DF003A;
}


/* CONTENTS + ブランド：横 */
.footer-nav-inner {
    display: grid;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    grid-template-columns: auto 1fr;
    align-items: start;
}
.footer-nav-top a {
    color: #DF003A;
    text-decoration: none;
}
.footer-nav-body {
    position: relative;
    padding-left: 30px;
}
.footer-nav-body::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #c81f3a;
    opacity: 0.8;
}


/* STORY LIST */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}
.footer-nav-list a {
    display: flex;
    gap: 8px;
    text-decoration: none;
    line-height: 1.6;
}
/* STORYテキスト */
.footer-nav-text {
    color: #333;
}
/* ===== ブランド（右） ===== */
.footer-brand {
    display: grid;
    gap: 24px;
}
/* banner-03 */
/* logo */
.footer-brand-logo img {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* legal */
.footer-legal {
    background: #2f2f2f;
    color: #fff;
}
.footer-legal-inner {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0;
    display: grid;
    gap: 20px;
}
/* リンク */
.footer-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.footer-legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
}
.footer-legal-links a:hover {
    opacity: 1;
}
/* コピーライト */
.footer-copyright {
    margin: 0;
    font-size: 12px;
    text-align: center;
	opacity: 0.5;
}
/* -------------------------
   PC
------------------------- */
@media (min-width: 768px) {
    .footer-inner {
        width: min(1200px, calc(100% - 80px));
    }
    /* CONTENTS + ブランド：横 */
    .footer-contents-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
        align-items: stretch;
    }
    .footer-nav-inner {
        margin-bottom: 0;
    }
    .footer-nav-body {
        padding-left: 44px;
    }
    .footer-nav-body::before {
        content: "";
        position: absolute;
        left: 18px;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #c81f3a;
        opacity: 0.8;
    }
    /* STORY LIST */
    .footer-nav-list {
        gap: 8px;
    }
    /* ブランド右寄せ */
    .footer-brand {
        display: grid;
        gap: 24px;
        justify-items: end;
        align-content: end;
    }
    .footer-brand-logo img {
        width: 340px;
        height: 36px;
        margin: 0;
    }
    /* legal */
    .footer-legal-inner {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 32px;
        padding: 16px 0;
    }
    .footer-legal-links {
        display: flex;
        justify-content: flex-start;
        gap: 32px;
    }
    .footer-copyright {
        text-align: right;
        white-space: nowrap;
    }
}