@charset "UTF-8";
.under_mv{
    background: url("../img/mv.png") center;
    -webkit-background-size: cover;
    background-size: cover;
}


.main_content{
}
.nav_box {
    max-width: 738px;
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}
.nav_btn {
    margin-top: 20px;
    max-width: 226px;
}
.nav_btn a {
    padding: 5px 0;
}
.btn--s.nav_btn a::after {
    transform: rotate(90deg);
}
.faq {
    max-width: 1024px;
    width: 90%;
    margin: auto;
    padding-top: 65px;
}
.faq_midashi {
    font-size: 2rem;
    font-weight: bold;
}
.faq_card {
    padding: 30px 0;
}
input[type="checkbox"] {
    display: none;
}
.question {
    display: flex;
    background: #F0F1F2;
    padding: 25px 20px;
    position: relative;
    align-items: center;
    cursor: pointer;
}
.q_num {
    display: inline-flex;
    min-width: 55px;
    min-height: 55px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #2F328D;
    font-size: 2rem;
    font-weight: bold;
    color: #FFFFFF;
}
.q_text {
    display: inline-flex;
    font-size: 2rem;
    font-weight: bold;
    color: #2F328D;
    margin-left: 20px;
}
.question::after{
    display: block;
    content: url("../img/arrow.svg");
    position: absolute;
    right: 20px;
}
.answer {
    display: flex;
    height: 0;
    padding: 0 20px;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.a_icon{
    display: inline-flex;
    min-width: 55px;
    min-height: 55px;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid #2F328D;
    font-size: 2rem;
    font-weight: bold;
    color: #2F328D;
}
.a_text{
    display: block;
    max-width: calc(100% - 60px);
    margin-left: 20px;
}
.table_box{
    display: block;
    width: 100%;
}
input[type="checkbox"]:checked ~ .question::after{
    transform: rotate(180deg);
    
}
input[type="checkbox"]:checked ~ .answer{
    height: auto;
    padding: 25px 20px;
    opacity: 1;
    visibility: visible;
}
table {
    width: 100%;
    border-top: 1px solid #2f328d;
    margin-top: 20px;
}
th {
    background: #9193c1;
    color: #fff;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #2f328d;
    border-right: 1px solid #2f328d;
    box-sizing: border-box;
}
td {
    background: #fff;
    border-bottom: 1px solid #2f328d;
    border-right: 1px solid #2f328d;
    padding: 10px;
    text-align: center;
}
th:last-child,td:last-child{
    border-right: none;
}
.red{
    color: #f00;
}
td.left{
    text-align: left;
}
@media screen and (max-width: 767px) {
.under_mv{
    background: url("../img/mv.png") center right -300px;
    -webkit-background-size: cover;
    background-size: cover;
}

.nav_box {
    flex-direction: column;
    align-items: center;
}
.question {
    padding-right: 40px;
    align-items: flex-start;
}
.faq_midashi{
    padding-bottom: 15px;
}
.faq_card {
    padding: 15px 0;
}
.q_num {
    min-width: 35px;
    min-height: 35px;
    font-size: 1.6rem;
}
.q_text {
    font-size: 1.6rem;
    line-height: 1.6;
}
.a_icon {
    min-width: 35px;
    min-height: 35px;
    font-size: 1.6rem;
}
.table_box{
    overflow: scroll;
}
table{
    min-width: 850px;
}
}
