.fs-guide-wrapper {
    max-width: 1600px;
}
.guide__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 60px;
    background-color: #E7EAEA;
    border-radius: 50px;
}
.guide__tab a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "YuGothic-B";
    padding: 20px min(2vw ,44px) 16px min(2vw ,44px);
    background-color: #E7EAEA;
    border-radius: 50px;
    cursor: pointer;
}
.guide__tab.is-active a {
    color: #fff;
    background-color: #000;
}

.guide__container {
    max-width: 1160px;
    padding: 0 60px;
    margin: 0 auto;
}
.guide__item {
    display: none;
}
.guide__item.is-active {
    display: block;
}
.guide__block {
    padding: 50px 0 30px;
    border-top: 1px solid #DDDDDD;
}
.guide__item[data-guide="delivery"] .guide__block:first-child,
.guide__item[data-guide="change"] .guide__block:first-child {
    padding-top: 0;
    border-top: none;
}
.guide__item p {
    line-height: 1.6;
    margin-bottom: 30px;
}
.guide__item .guide__ttl {
    font-family: "YuGothic-B";
    font-size: 2.0rem;
    margin-bottom: 25px;
}
.guide__item img {
    margin-bottom: 50px;
}
.guide__item .guide__link {
    color: #FF3700;
    text-decoration: underline;
}

.guide__item[data-guide="gift"] img {
    width: 100%;
    margin-bottom: 0;
}
.guide__item[data-guide="gift"] .guide__lead {
    margin: 50px 0;
}
.guide__item .guide__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.guide__special .guide__img {
    width: 38%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.guide__special .guide__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guide__special .guide__txt {
    width: 55%;
}
.guide__special .guide__special__ttl {
    font-family: "YuGothic-B";
    font-size: 2.0rem;
}
.guide__special .guide__special__desc {
    margin-bottom: 0;
}
.guide__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 50px;
    border-radius: 50px;
    font-size: 1.4rem;
    color: #fff;
    background-color: #000;
    margin: 0 auto 80px;
}
.guide__item[data-guide="gift"] .guide__btn img {
    width: 16px;
    object-fit: contain;
    margin-bottom: 5px;
    margin-right: 5px;
}
.guide__wrapping {
    width: 47%;
    max-width: 470px;
}
.guide__wrapping__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
}
.guide__item[data-guide="gift"] .guide__wrapping__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guide__item .guide__wrapping__ttl {
    font-family: "YuGothic-B";
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.fs-guide-wrapper .guide__item .guide__btn img {
    margin-bottom: 3px;
    margin-right: 10px;
}
.guide__block__table-wrap {
    overflow-x: scroll;
}
.guide__block table {
    width: 100%;
    min-width: 830px;
}
.guide__block table th {
    padding: 16px 5px;
    background-color: #E8EAEA;
    border: 1px solid #cecece;
}
.guide__block table td {
    vertical-align: middle;
    padding: 16px 5px;
    border: 1px solid #cecece;
}

@media screen and (max-width:1024px) {
    .guide__tabs {
        flex-flow: column;
        width: 100%;
        border-radius: 25px;
    }
    .guide__tab {
        width: 100%;
    }
    .guide__tab a {
        width: 100%;
        padding: 17px 0 13px;
    }
    .guide__container {
        padding: 0;
    }
}
@media screen and (max-width:768px) {
    .guide__item .guide__flex {
        display: block;
    }
    .guide__special .guide__img {
        width: 100%;
        margin-bottom: 25px;
    }
    .guide__special .guide__txt {
        width: 100%;
    }
    .guide__special .guide__special__ttl {
        font-size: 1.6rem;
        margin-bottom: 14px;
    }
    .guide__wrapping {
        width: 100%;
        max-width: none;
    }
    .guide__block table {
        font-size: 1.2rem;
    }
}