@charset "utf-8";
/* CSS Document */

.top_caution_box {
    background-color: #FFEEEE;
    box-sizing: border-box;
    padding: 40px;

}
.top_caution_box a {
    text-decoration: underline;
}
.top_caution_box_ttl {
    font-size: 2.2rem;
    color: #E93030;
}
.top_caution_box_ttl span {
    display: inline-block;
    position: relative;
    padding-left: 47px;
}
.top_caution_box_ttl span:first-of-type::before {
    content: '';
    position: absolute;
    background-image: url(/products/faq/img/icon_top_caution.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 37px;
    height: 32px;
    top: -2px;
    left: 0;
}
.top_accordion_btn {
    display: none;
}
.top_caution_box_cnt ul {
    margin-top: 20px;
}
.top_caution_box_cnt ul li {
    font-size: 1.8rem;
    line-height: 3.4rem;
    margin-left: 20px;
    list-style: disc;
}
@media screen and (max-width: 767px) {
    .top_caution_box {
        padding: 20px 10px;
    }
    .top_caution_box_ttl {
        font-size: 1.8rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .top_caution_box_ttl span {
        padding-left: 40px;
    }
    .top_caution_box_ttl span:first-of-type::before {
        width: 34px;
        height: 29px;
        top: -6px;
        left: 0;
    }
    .top_accordion_btn {
        display: inline-block;
        background-color: #fff;
        border-radius: 5px;
        width: 36px;
        height: 36px;
        position: relative;
        margin-left: 10px;
        margin-right: -10px;
    }
    .top_accordion_btn::before,
    .top_accordion_btn::after {
        content: '';
        position: absolute;
        background-color: #7D7D7D;
        width: 18px;
        height: 2px;
        top: 50%;
        left: calc(50% - 9px);
    }
    .top_accordion_btn::after {
        transform: rotate(90deg);
    }
    .top_caution_box.op .top_accordion_btn::after {
        transform: rotate(0deg);
    }
    .top_caution_box_cnt ul li {
        font-size: 1.6rem;
        line-height: 3rem;
    }
    .top_caution_box_cnt {
        display: none;
    }
    .top_caution_box.op .top_caution_box_cnt {
        display: block;
    }
}

.top_general_box {
    width: 100%;
    box-sizing: border-box;
    background-color: #F4F5F8;
    padding: 40px 20px;
    text-align: center;
}
.top_general_box a {
    font-size: 1.8rem;
    padding-left: 26px;
    position: relative;
}
.top_general_box a:hover {
    text-decoration: underline;
}
.top_general_box a::before {
    content: '';
    position: absolute;
    background-image: url(/products/faq/img/icon_arrow_right_round_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
    top: calc(50% - 6px);
    left: 0;
}
@media screen and (max-width: 767px) {
    .top_general_box {
        text-align: left;
    }
    .top_general_box a {
        display: inline-block;
    }
}

.top_search_product_txt {
    font-size: 1.8rem;
}
.top_search_product_txt a {
    color: #3965D1;
    text-decoration: underline;
}
.product_list_initial_select_btn_area {
    display: flex;
    width: 100%;
    background-color: #F4F5F8;
    padding: 40px 33px;
    box-sizing: border-box;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 40px;
}
.product_list_initial_select_btn {
    border: 1px solid #CCCCCC;
    background-color: #fff;
    border-radius: 40px;
    cursor: pointer;
    box-sizing: border-box;
    width: calc((100% - 90px) / 10);
    text-align: center;
    padding: 8px;
    font-size: 2rem;
    font-weight: bold;
}
.product_list_initial_select_btn.active {
    background-color: #3965D1;
    color: #fff;
    border: 1px solid #3965D1;
}
.product_list_initial_select_btn.disabled {
    background-color: #D5D5D5;
    color: #fff;
    border: 1px solid #D5D5D5;
    cursor:default;
    pointer-events: none;
}
.product_list_initial_select_btn:hover {
    background-color: #3965D1;
    color: #fff;
    border: 1px solid #3965D1;
}

.product_list_initial {
    display: none;
}
.product_list_initial.show {
    display: block;
}

.product_list_initial_box {
    display: flex;
    flex-wrap: wrap;
}
.product_list_initial_item {
    width: 50%;
}
.product_list_initial_item a {
    color: #3965D1;
    font-size: 1.8rem;
    text-decoration: underline;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.product_list_initial_item a img {
    width: 35px;
    height: auto;
}
@media screen and (max-width: 767px) {
    .product_list_initial_select_btn_area {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 25px 20px 10px;
    }
    .product_list_initial_select_btn {
        width: calc((100% - 30px) / 4);
        margin-bottom: 15px;
        margin-right: 10px;
        font-size: 1.8rem;
        padding: 22px 8px;
    }
    .product_list_initial_select_btn:nth-of-type(4n){
        margin-right: 0;
    }
    .product_list_initial_item {
        width: 100%;
    }
}
.top_search_keyword p {
    font-size: 2.2rem;
    color: #3965D1;
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .top_search_keyword p {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }
}