/* 募集要項 */
.application_requirements {
    text-align: center;
    width: 100%;
}

.application_requirements h1 {
    text-align: center;
    font-size: 4rem;
    font-family: "Italianno","Adobe Handwriting Ernie", 'BIZ UDPGothic', sans-serif;
    opacity: 20%;
    margin-top: 115px;
}

.application_requirements p {
    font-size: 2.5rem;
    margin-top: 30px;
}

.ar_1 {
    margin: 35px 0;
}

.ar_1 h2 {
    font-size: 1.5rem;
}

.ar_1 img {
    width: 90%;
    max-width: 1250px;
    margin: 50px 5% 0;
}

.ar_2 h2 {
    font-size: 2rem;
}

.ar_2 img {
    width: 90%;
    max-width: 1250px;
    margin: 50px 5% 0;
}

/* FAQ */
.faq {
    margin: 140px 0;
}

.faq h1 {
    font-size: 4rem;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 96%;
    max-width: 1260px;
    margin: 0 auto;
}

.accordion-area li {
    margin: 10px 0;
}

.accordion-area section {
    border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.faq_title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

section .box p {
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 35px;
}

/*アイコンの＋と×*/
.faq_title::before,
.faq_title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #333;

}

.faq_title::before {
    top: 48%;
    left: 15px;
    transform: rotate(0deg);

}

.faq_title::after {
    top: 48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/
.faq_title.close::before {
    transform: rotate(45deg);
}

.faq_title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;
    /*はじめは非表示*/
    background: #f3f3f3;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

@media screen and (max-width:1080px) {
    .application_requirements h1 {
        font-size: 3rem;
    }

    .application_requirements p {
        font-size: 2rem;
    }

    .ar_1 h2 {
        font-size: 1rem;
    }

    .ar_2 h2 {
        font-size: 2rem;
    }

    .faq h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width:769px) {
    .application_requirements h1 {
        font-size: 2rem;
    }

    .application_requirements p {
        font-size: 1.5rem;
    }

    .ar_1 h2 {
        font-size: 0.9rem;
    }

    .ar_2 h2 {
        font-size: 1.5rem;
    }

    .faq h1 {
        font-size: 2rem;
    }

    .faq_title {
        font-size: 1rem;
    }

    section .box p {
        font-size: 1rem;
        line-height: 20px;
    }

    .box {
        padding: 1%;
    }
}

@media screen and (max-width:550px) {
    .application_requirements h1 {
        font-size: 1.5rem;
    }

    section .box p {
        font-size: 0.8rem;
        line-height: 20px;
    }


    /* 画像拡大 */


    /* ここまで画像拡大 */
}

@media screen and (max-width:401px) {
    .application_requirements h1 {
        font-size: 1rem;
        margin-top: 35px;
    }

    .application_requirements p {
        font-size: 1rem;
    }

    .ar_1 {
        margin-top: 15px;
    }

    .ar_1 h2 {
        font-size: 0.6rem;
    }

    .ar_2 h2 {
        font-size: 1rem;
    }

    .faq {
        margin: 60px auto;
    }

    .faq h1 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .faq_title {
        font-size: 0.7rem;
    }

    .ar_1 img {
        margin-top: 25px;
    }

    .ar_2 img {
        margin-top: 20px;
    }
}