@charset "utf-8";
:root {
    --black: #333;
    --white: #fff;
    --green: #30574E;
}
/* ------------------------------
ヘッダータイトル
------------------------------ */
.title {
    margin-top: 100px;
}
/* ------------------------------
キャンペーンバナー
------------------------------ */
.campaign-banner {
    box-sizing: border-box;
    background: var(--green);
    padding: 16px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}
.campaign-banner p {
    text-align: center;
    font-weight: 600;
}
/* ------------------------------
ショップ
------------------------------ */
.shop-container {
    width: 100%;
    max-width: 1440px;
    margin: 0px auto;
}
.shop-container ul {
    padding: 0 8%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px;
}
.shop-item {
    width: 30%;
    min-width: 268px;
}
.shop-item a:first-child:hover {
    opacity: 0.5;
}
.shop-img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.shop-text {
    width: 100%;
    padding: 0 8%;
    margin: 16px 0;
    box-sizing: border-box;
}
.shop-text p {
    margin: 8px 0 0;
    text-align: right;
}
.shop-item .button {
    display: block;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .shop-container ul {
        padding: 0 8%;
        gap: 40px;
        overflow: hidden;
    }
    .shop-container ul li {
        flex-direction: column;
    }
}
/* ------------------------------
ショッピングガイド
------------------------------ */
.guide-container {
    padding: 50px 8%;
}
.guide-container {
    padding: 50px 8%;
}
.guide-container ul {
    max-width: 1440px;
    padding: 0 8%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.guide-container ul:first-of-type {
    margin-bottom: 60px;
}
.guide-index {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 40px 8%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}
.guide-index::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -120px;
    width: 260px;
    height: 260px;
    background-image: url(../assets/img/Leucocoryne.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}
.guide-container ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color 0.6s ease;
}
.guide-item {
    scroll-margin-top: 120px;
}
.guide-toggle {
    all: unset;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid var(--white);
    position: relative;
}
.guide-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%) rotate(0deg);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--white);
    transition: transform 0.6s ease-in-out;
}
.guide-item.open .guide-toggle::after {
    transform: translateY(-50%) rotate(-180deg);
}
.guide-toggle .guide-title {
    text-align: left;
    padding: 0 40px 8px 16px;
}
.guide-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 8%;
    transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.4s ease;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    display: flex;
}
.faq-index {
    display: block;
    width: 30px;
}
.guide-item.open .guide-content {
    opacity: 1;
    padding: 24px 8%;
}
@media (max-width: 767px) {
    .guide-container {
        padding: 50px 0 100px;
    }
    .guide-toggle {
        flex-direction: column;
    }
}