@charset "utf-8";

*, *:before, *:after {
    box-sizing: border-box;
}
body{
    padding: 0;
}
.wrap{
    max-width: 100%;
    margin: 0;
}
.body-wrap{
    width: min(100%,650px);
    margin: 0 auto;
    & img{
        width: 100%;
    }
}

/*よくある質問*/
.faq{
    background: #c51d2e;
}
.faq-con {
    width: 90.5%;
    display: block;
    margin: 0 auto;
}
.faq-title{
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    background: #f7f4ef;
    padding: min(1vw, 0.3rem) min(2.5vw, 0.5rem) min(1vw, 0.35rem) min(1.5vw, 0.6rem);
    gap: min(1.8vw, 0.75rem);
    background-image: repeating-linear-gradient(-55deg, #836031, #6a5023 1% 2%, #856932 3%, #b79757 5%, #a28345 22%, #83642d 43% 34%, #967539 63%, #967539 70%, #bc9d5e 85%, #76562a 90%, #835c2f 96%, #76562a);
    &::before{
        content: "Q";
        font-style: italic;
        font-size: clamp(18px, 3vw, 36px);
        line-height: 1;
        font-weight: 800;
        position: relative;
        top: max(-0.35vw, -0.21rem);
        font-family: "Montserrat", sans-serif;
        color: #fff;
    }
    & span{
        color: #fff;
        width: 100%;
        line-height: 1;
        font-size: clamp(14px, 3vw, 23px);
        font-weight: 600;
        font-family: "LINE Seed JP", sans-serif;
        &::after{
            content: "＋";
            background: none;
            display: block;
            aspect-ratio: 1;
            width: auto;
            height: auto;
            position: absolute;
            top: 24%;
            font-weight: 600;
            right: min(1.5vw, 0.6rem);
            font-size: clamp(16px, 3vw, 27px);
            transition: 0.5s;
        }
    }
    &.rot span::after{
        transform: translatey(-4%) rotate(45deg);
    }
}
.faq-text{
    color: #000;
    font-weight: 400;
    font-size: clamp(13px, 3vw, 20px);
    font-family: "LINE Seed JP", sans-serif;
    display: none;
    padding: min(1.5vw, 0.7rem) min(5.5vw, 2.2rem) min(2.5vw, 0.8rem) min(2.2vw, 0.9rem);
    line-height: 1.55;
    background: #fff;
    & p{
        letter-spacing: min(0.45vw,0.15rem);
        & strong{
            font-weight: bold;
            display: block;
            margin-bottom: min(1vw, 0.4rem);
        }
    }
    & + .faq-title{
        /* margin-top: min(4vw, 30px); */
        margin-top: min(4vw, 12px)
    }
}
.faq-tt{
    position: relative;
    display: flex;
    gap: min(1.5vw, 0.75rem);
    &::before {
        content: "A";
        font-style: italic;
        font-size: clamp(18px, 3vw, 36px);
        font-weight: 100;
        line-height: 1;
        font-weight: 900;
        color: #ae0112;
        position: relative;
        top: 0.1rem;
        font-family: "Montserrat", sans-serif;
    }
}

/*ボタン*/
.purchase{
    background: #c41d2e;
    padding: min(5vw, 25px) min(2.5vw, 15px) min(6vw, 35px);
    & form{
        margin: 0 auto;
        border-radius: 25rem;
    }
    & input{
        background: none;
        border: none;
        padding: 0;
    }
}
.purchase-btn{
    display: block;
    text-decoration: none;
    transition: .2s all ease-in-out;
    -webkit-animation: anim_sc 1.5s infinite;
    animation: anim_sc 1.5s infinite;
    height: auto;
    width: 100%;
    filter: drop-shadow(4px 4px 4px rgb(0, 0, 0, 0.7));
    -o-object-fit: contain;
    object-fit: contain;
}

@-webkit-keyframes anim_sc {
    0% {
        transform: scale(1)
    }
    30% {
        transform: scale(1)
    }
    40% {
        transform: scale(1.03)
    }
    50% {
        transform: scale(1)
    }
    60% {
        transform: scale(1.03)
    }
    70% {
        transform: scale(1)
    }
    100% {
        transform: scale(1)
    }
}
@keyframes anim_sc {
    0% {
        transform: scale(1)
    }
    30% {
        transform: scale(1)
    }
    40% {
        transform: scale(1.03)
    }
    50% {
        transform: scale(1)
    }
    60% {
        transform: scale(1.03)
    }
    70% {
        transform: scale(1)
    }
    100% {
        transform: scale(1)
    }
}
