@charset "UTF-8";

.gift-leisure-bag_separator {
    margin: 30px auto;
}

.gift-leisure-bag_contents {
    background-color: #F9F9F9;
    padding: 60px 120px;
}

.gift-leisure-bag_inner {
    display: flex;
    column-gap: 40px;
    margin-bottom: 20px;
}

.gift-leisure-bag_inner:last-of-type {
    margin-bottom: 0px;
}

.gift-leisure-bag_top-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.gift-leisure-bag_image,
.gift-leisure-bag_image-02 {
    width: 200px;
    height: auto;
    min-width: 200px;
}

.gift-leisure-bag_text {
    display: flex;
    flex-direction: column;
}

.gift-leisure-bag_p-title {
    margin-bottom: 5px;
    text-decoration: underline;
}

.gift-leisure-bag_mb {
    margin-bottom: 15px;
}

.btn--navy {
    color: #fff;
    background: #2c2e33;
    display: block;
    width: 630px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    margin: auto;
    margin-top: 3rem;
    padding: 12px 50px;
    position: relative;
}

.btn--navy::after {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    content: '';
    -webkit-transform: rotate(0deg) translate(-50%, -50%);
    transform: rotate(0deg) translate(-50%, -50%);
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn--navy:hover {
    color: #fff;
    transition: .5s;
    opacity: .8;
}

@media screen and (max-width: 768px) {
    .gift-leisure-bag_contents {
        padding: 40px 18px;
    }

    .gift-leisure-bag_inner {
        flex-direction: column;
        column-gap: 0;
        margin-bottom: 0px;
    }

    .gift-leisure-bag_top-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .gift-leisure-bag_image {
        width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
    }

    .gift-leisure-bag_image-02 {
        width: 200px;
        max-width: 100%;
        margin: 0 auto 10px auto;
    }

    .btn--navy {
        display: block;
        width: 100%;
        margin-top: 4rem;
    }
}

@media screen and (max-width: 240px) {
    .gift-leisure-bag_image-02 {
        width: 100%;
        min-width: 100%;
        margin: 0 auto 10px auto;
    }
}