@charset "UTF-8";
/*======================================================= 
    よくあるご質問用スタイル
=======================================================*/
/* 共通 */
.page-tit-area{
    background-color: #f5f5f5;
    padding: 100px 0;
}
.page-tit-area h1{
    font-size: 24px;
}
.page-tit-area span{
    display: block;
    font-size: 84px;
    background: linear-gradient(to right, #BB171E, #F6B256);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}
h2{
    font-size: 32px;
    text-align: center;
}
p{
    line-height: 1.5;
}

.faq-link ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
}
.faq-link ul a{
    background-color: #BB171E;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    padding: 10px;
}

.faq-block{
    margin-top: 50px;
}
.faq-item{
    margin-bottom: 20px;
}
.faq-head{
    position: relative;
    background-color: #f5f5f5;
    font-weight: bold;
    padding: 15px 40px 15px 45px;
}
.faq-head::before, .faq-head::after {
    position: absolute;
    content: "";
    top: 0;
    right: 20px;
    bottom: 0;
    width: 15px;
    height: 3px;
    margin: auto;
    background-color: #BB171E;
}
.faq-head::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}
.faq-head.open::after {
    transform: rotate(0deg);
}
.faq-head p::before{
    position: absolute;
    content: "Q.";
    color: #BB171E;
    left: 15px;
}
.faq-body{
    display: none;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

/*1000px以下*/
@media screen and (max-width: 1000px){
    .faq-link ul{
        grid-template-columns: repeat(3, 1fr);
    }
}

/*750px以下*/
@media screen and (max-width: 750px){
    h2{
        font-size: 24px;
    }
    .page-tit-area{
        padding: 50px 0;
    }
    .page-tit-area span{
        font-size: 50px;
    }
    .faq-link ul{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/*480px以下*/
@media screen and (max-width: 480px){
    h2{
        font-size: 20px;
    }
    .page-tit-area{
        padding: 30px 0;
    }
    .page-tit-area h1{
        font-size: 20px;
    }
    .page-tit-area span{
        font-size: 35px;
    }
}