@charset "UTF-8";

/* =========================================
    Reset & Base Styles
========================================= */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    letter-spacing: 0.5px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* =========================================
    Header
========================================= */
header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}
.header-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
}
.logo a {
    display: inline-block;
    transition: opacity 0.3s;
}
.logo a:hover {
    opacity: 0.7;
}
.logo img {
    height: 55px;
    width: auto;
}

/* =========================================
    lp Section
========================================= */
.lp-image-wrapper {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
}
.lp-image-wrapper img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/*リンク位置調整*/
.lp-image-wrapper a[class$="-link"],
.js-modal-btn {
    position: absolute;
    display: block;
    z-index: 2;
    background: none;
}
.lp-image-wrapper a.series-link {
    width: 18%;
    height: 9.5%;
    border-radius: 50%;
    right: 2%;
    top: 37.4%;
}

.lp-image-wrapper a.buy-link {
    width: 27.7%;
    height: 3.2%;
    right: 11.8%;
    bottom: 1.2%;
}

/*pr動画*/
.lp-image-wrapper button.js-modal-btn {
    position: fixed;
    right: 30px;
    bottom: 80px;
    width: 19vw;
    max-width: 220px;
    aspect-ratio: 9 / 16;
    border: 4px solid #fff;
    border-radius: 15px;
    background: url(../image/pr_btn.png) center / cover no-repeat;
    box-shadow: 1px 1px 6px 0px rgba(0, 0, 0, 0.7);
    cursor: pointer;
    text-indent: -9999px;
    opacity: 1;
    transition: opacity 0.4s ease;
}
.lp-image-wrapper button.js-modal-btn.hide {
    opacity: 0;
    pointer-events: none;
}
.modal-overlay {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}
.modal-video-body {
    padding: 0 !important;
}
.modal-video-inner {
    max-height: 100%;
    position: relative;
    width: calc(56.25vh - 100px) !important;
}
.modal-video-movie-wrap {
    aspect-ratio: 9 / 16 !important;
    height: auto !important;
}
@media (orientation: landscape) {
    .modal-video-inner {
        padding: inherit !important;
    }
}

/* =========================================
    shop-list Section
========================================= */
.shop-list {
    background-color: #e0e0e0;
    padding: 20px 20px 60px;
}
.shop-list p {
    text-align: center;
    font-weight: bold;
    color: #333;
    font-size: clamp(21px, 2.5vw, 28px);
}
.country-con {
    max-width: 960px;
    margin: 0 auto;
}

/* アニメーション定義 */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

.country-con .btn-box button {
    width: 100%;
    padding: 0 20px;
    background: #333;
    border: none;
    border-radius: 8px;
    font-size: clamp(16px, 1.5vw, 25px);
    height: 6.5vw;
    margin-top: 10px;
    max-height: 60px;
    font-weight: bold;
    color: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
}
.country-con .btn-box button::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-20%) rotate(-135deg);
    transition: transform 0.3s ease;
}
.country-con .more {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: none;
    border-radius: 0 0 8px 8px;
}
.country-con .more.appear {
    max-height: fit-content;
    animation: fadeIn 0.4s ease;
    margin-bottom: 10px;
}

/* 開閉アイコン */
.country-con:has(.more.appear) .btn-box button::after {
    transform: translateY(-70%) rotate(45deg);
}

/*店舗一覧テーブル*/
.more table {
    width: 95%;
    margin: 2vw auto;
}
.more table tr {
    display: table;
    width: 100%;
    border-bottom: 1px solid #fff;
}
.more table tr.prefecture {
    background-color: #545454;
    text-align: left;
    color: #fff;
    font-weight: bold;
    border-bottom: none;
}
.more table tr.prefecture th {
    padding: 4px 10px;
}
.more table td {
    padding: 0px 10px;
}
.more table tr td:nth-of-type(1),
.more table tr td:nth-of-type(2) {
    width: 40%;
}
.more table tr td:nth-of-type(3) {
    width: 20%;
    text-align: right;
}

/* =========================================
    Footer
========================================= */
footer {
    font-size: 12px;
    color: var(--text-gray);
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}
.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}
.footer-logo a {
    display: inline-block;
    transition: opacity 0.3s;
}
.footer-logo a:hover {
    opacity: 0.7;
}
/* 【修正】フッターロゴも二回り大きく（30px → 55px付近） */
.footer-logo img {
    height: 55px;
    width: auto;
    margin: 0 auto 15px;
}
.p-footer__info__text {
    font-size: 12px;
    margin-bottom: 15px;
}
.copyright {
    font-size: 10px;
    color: #999;
}

/* =========================================
    Page Top Button
========================================= */
.page-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #f990bd;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition:
        opacity 0.3s,
        transform 0.3s;
}
.page-top-btn::before {
    content: "";
    width: 16px;
    height: 16px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(45deg);
    margin-top: 6px;
}
.page-top-btn:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

/* =========================================
    Responsive
========================================= */
@media (max-width: 768px) {
    .more table tr:not(.prefecture) {
        display: grid;
        padding: 4px 0;
    }
    .more table tr td {
        width: inherit !important;
        line-height: 1.4em;
    }
    .more table tr td:nth-of-type(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        font-size: 1.1em;
        font-weight: bold;
    }
    .more table tr td:nth-of-type(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .more table tr td:nth-of-type(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        vertical-align: middle;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .country-con .btn-box button {
        min-height: 50px;
    }
}
