@charset "UTF-8";
html{
    scroll-behavior: smooth;
}
body{
    width: 100%;
    margin: 0;
}
#container {
    max-width: 100%;
    width: 100%;
}

#container a {
    letter-spacing: 0;
    color: #0073be;
}

#faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 50px;
    font-family: "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.content_title,
.select-lang {
    display: none;
}

/*nav*/
.__nav {
    position: fixed;
    z-index: 2;
    top: 70px;
    left: 0;
    overflow-y: auto;
    box-sizing: border-box;
    width: 250px;
    height: calc(100% - 70px);
    padding:10px;
    padding-bottom: 60px;
    border-right: 1px solid #ddd;
    background: #f4f4f4;
}
.__nav::after{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 70px;
    background: #f4f4f4;
}
@media screen and (max-width:768px) {
    .__nav {
        top:0;
        overflow-y: hidden;
        width: 50px;
        height: 100% ;
        padding: 70px 5px 10px 5px;
        transition: transform 0.5s ease;
        transform: translateX(calc(-100% + 50px));
    }
    .__nav.is-open {
        overflow-y: auto;
        width: 250px;
        transform: translateX(0);
    }
    .__nav::after{
        display: none;
    }
}
@media screen and (max-width:480px) {
    .__nav {
        padding: 56px 5px 10px 5px;
    }
}
.__sp_btn{
    display: block;
}
@media screen and (max-width:768px) {
    .icon-menu,
    .icon-close {
        position: relative;
        display: flex;
        justify-content: center;
        cursor: pointer;
    }
    .icon-close{
        display: none;
    }
    .icon-menu::before,
    .icon-close::before{
        content:"\f138";
        position: absolute;
        top: 10px;
        right: 0;
        left: 0;
        display: inline-flex;
        justify-content: center;
        margin: auto;
        cursor: pointer;
        font-family:"font awesome 6 free";
        font-weight: 600;
    }
    .icon-close::before{
        content:"\f137";
    }
    .__nav.is-open .icon-menu {
        display: none;
    }
    .__nav.is-open .icon-close {
        display: flex;
    }
}
.__overlay {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width:768px) {
    .__nav.is-open + .__overlay {
        pointer-events: auto;
        opacity: 1;
    }
}
ul.__parent_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    counter-reset: my-counter;
}
@media screen and (max-width:768px) {
    ul.__parent_list {
        display: none;
    }
    .__nav.is-open .__parent_list {
        display: block;
        margin-top: 40px;
    }
}
ul.__parent_list li.nmb {
    position: relative;
    padding-left: 1.25rem;
    list-style: none;
    font-size: .875rem;
}

ul.__parent_list li.nmb::before {
    content: counter(my-counter)",";
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: my-counter;
}

ul.__child_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    padding-left: 1.25rem;
}

ul.__child_list li {
    list-style: disc;
    font-size: .8125rem;
}

ul.__parent_list li a,
ul.__child_list li a {
    text-decoration: none;
}

/*section*/
section.main_section {
    display: flex;
    max-width: 900px;
    flex-direction: column;
    gap: 40px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 0 50px;
    counter-reset: my-counter;
}
@media screen and (max-width:1350px) {
    section.main_section {
        margin-left: 250px;
        padding: 0 10px 0 20px;
    }
}
@media screen and (max-width:1150px) {
    section.main_section {
        width: calc(100% - 250px);
    }
}
@media screen and (max-width:768px) {
    section.main_section {
        width: calc(100% - 50px);
        margin-left: 50px;
        padding:0 5px;
        font-size: .8125rem;
    }
}
@media screen and (max-width:480px) {
    section.main_section {
        letter-spacing: 0;
        font-size: .75rem;
    }
}
section.main_section article{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*ｈ*/
h2.h2_title {
    flex-basis: 100%;
    padding: 10px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}
@media screen and (max-width:768px) {
    h2.h2_title {
        font-size: 1.125rem;
    }
}
@media screen and (max-width:480px) {
    h2.h2_title {
        font-size: .875rem;
    }
}
h3.h3_nmb_title {
    position: relative;
    padding-left: 1.75rem;
    list-style: none;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
@media screen and (max-width:768px) {
    h3.h3_nmb_title {
        font-size: 1rem;
    }
}
@media screen and (max-width:480px) {
    h3.h3_nmb_title {
        font-size: .8125rem;
    }
}
article h3.h3_nmb_title::before {
    content: counter(my-counter)",";
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: my-counter;
}
/*FAQ*/

.option{
    position: relative;
    max-width: 100%;
    border: solid 1px #d6d6d6;
    border-radius: 10px;
    box-shadow: 4px 4px 6px #00000021;
    background: #fff;
    /*margin-bottom: 40px;*/
}
.toggle{
    display: none;
}
.toggle:checked+.title+.content {
    max-height: 500px;
    transition: all 1.5s;
}
.toggle:checked+.title:before {
    transform: rotate(90deg) !important;
}
.title{
    width: 93%;
    cursor: pointer;
    font-weight: 700;
    padding: 1rem 0 1rem .625rem;
    display: flex;
}
@media screen and (max-width:480px) {
    .title{
        width: 85%;
    }
}
.title:before,
.title:after {
    content: "";
    position: absolute;
    right: 2.25rem;
    top: 1.4em;
    width: 2px;
    height: 1.1em;
    background-color: #4468e2;
    transition: all .3s;
}
.title:after {
    transform: rotate(90deg)!important;
}
@media screen and (max-width:480px) {
    .title:before,
    .title:after {
        right: 1.5rem;
        top: 1.2rem;
    }
}
.faq_q{        
    color: #4468e2;
    font-size: 1.125rem;
}
@media screen and (max-width:480px) {
    .faq_q{        
        font-size: .8125rem;
    }
}
.q_txt{        
    font-size: 1.125rem;
    letter-spacing: 1.8px;
    padding-left: 4px;
    text-align: left;
}
@media screen and (max-width:480px) {
    .q_txt{        
        font-size: .8125rem;
    }
}
.content{
    max-height: 0;
    overflow: hidden;
    line-height: 1.5;
}
.content::after {
    display: block;
    content: "";
    clear: both;
}
.faq_a{        
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}
@media screen and (max-width:480px) {
    .faq_a{        
        padding: 0 10px 10px 15px;
    }
}
.h_line{
    color: #4468e2;
    font-size: 2rem;
    align-items: center;
    align-self: center;
    padding: 0 2rem;
}
@media screen and (max-width:480px) {
    .h_line{
        padding: 0;
        font-size: .8125rem;
    }
}
.txt{
    font-size: 1rem;
    letter-spacing: 1.6px;
    line-height: 1.5;
    align-self: center;
}
@media screen and (max-width:480px) {
    .txt{
        font-size: .8125rem;
    }
}

/*その他*/
#faq em {
    font-weight: 600;
    font-style: normal;
}

span.description {
    display: flex;
    padding: 5px 0 0 0;
    font-weight: normal;
}

.right_arrow {
    position: relative;
    /*display: block;*/
    padding-top: 20px;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.5;
}

@media screen and (max-width:1400px) {
    .right_arrow {
        font-size: 16px;
    }
}

@media screen and (max-width:480px) {
    .right_arrow {
        font-size: 14px;
    }
}

.right_arrow::before {
    content: "\f178";
    position: absolute;
    top: 45%;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/***** 補足指定 *****/
.__flex {
    display: flex!important;
}

.__flex_column {
    display: flex;
    flex-direction: column;
}

.__flex_start {
    display: flex;
    justify-content: flex-start !important;
}

.__flex_end {
    display: flex;
    justify-content: flex-end !important;
}

.__gap_10 {
    display: flex;
    gap: 10px !important;
}

.__gap_20 {
    display: flex;
    gap: 20px !important;
}

.__center {
    text-align: center;
}

.fb300 {
    flex-basis: 300px !important;
}
@media screen and (max-width:768px) {
    .fb300 {
        flex-basis: 250px !important;
    }
}
.fb250 {
    flex-basis: 250px !important;
}

.fb200 {
    flex-basis: 200px !important;
}

.fb150 {
    flex-basis: 150px !important;
}

@media screen and (max-width:768px) {
    .fb150 {
        flex-basis: 100px !important;
    }
}

@media screen and (max-width:480px) {
    .fb300,
    .fb250,
    .fb200,
    .fb150 {
        flex-basis: auto !important;
    }
}

.fb-auto {
    flex: 1 0 0;
}
@media screen and (max-width:480px) {
    .__sp_fd_row{
        flex-direction: row!important;
        flex-wrap: wrap!important;
    }
}
.__col_left,
.__col_right {
    flex-basis: calc(50% - 10px);
}

.mg-0{
    margin: 0;
}
.mg-10{
    margin: 10px;
}
.mg-top-10 {
    margin-top: 10px;
}
.mg-top-20 {
    margin-top: 20px;
}
.mg-top-40 {
    margin-top: 40px;
}
.mg-left-minus-1rem {
    margin-left: -1rem!important;
}
@media screen and (max-width:480px) {
    .mg-left-minus-1rem {
        margin-left: -.5rem;
    }
}
.mg-left-20 {
    margin-left: 20px;
}
@media screen and (max-width:480px) {
    .mg-left-20 {
        margin-left: 5px;
    }
}
.mg-left-40 {
    margin-left: 40px;
}
.mg-bottom-20 {
    margin-bottom: 20px;
}

.pd-top-10 {
    padding-top: 10px !important;
}

.pd-top-20 {
    padding-top: 20px !important;
}

.pd-top-30 {
    padding-top: 30px !important;
}

.pd-top-40 {
    padding-top: 40px !important;
}

.pd-top-50 {
    padding-top: 50px !important;
}
.pd-10 {
    padding: 10px !important;
}
.pd-20 {
    padding: 20px !important;
}

.pd-20-0 {
    padding: 20px 0 !important;
}

.pd-left-1rem {
    padding-left: 1rem !important;
}

.pd-left-20 {
    padding-left: 20px !important;
}
@media screen and (max-width:480px) {
    .pd-left-20 {
        padding-left: 5px !important;
    }
}
.pd-btm-20 {
    padding-bottom: 20px !important;
}
.pd-btm-50 {
    padding-bottom: 50px !important;
}

.pd-btm-100 {
    padding-bottom: 100px !important;
}

.__fs-small {
    font-size: 75%;
}

.__fslarge {
    font-size: 125%;
}

.__fsXlarge {
    font-size: 150%;
}
.__txt_small{
    font-size: .75rem;
}
.__asterisk {
    position: relative;
    display: block;
    padding-left: 1.125rem;
    color: #555;
    font-size: .875rem;
    line-height: 1.5;
}
@media screen and (max-width:480px) {
    .__asterisk {
        padding-left: 1rem;
        font-size: .7rem;
    }
}
.__asterisk::before {
    content: "※";
    position: absolute;
    left: 0;
}
.__example,
.__example-eng {
    position: relative;
    display: block;
    padding-left: 1.5rem;
    color: #555;
    font-size: .875rem;
    line-height: 1.5;
}
@media screen and (max-width:480px) {
    .__example,
    .__example-eng {
        padding-left: 1.25rem;
        font-size: .7rem;
    }
}
.__example::before {
    content: "例)";
    position: absolute;
    left: 0;
}
.__example-eng::before {
    content: "EXP)";
    position: absolute;
    left: 0;
}
.__disc_mark{
    position: relative;
    padding-left: 1.5rem;
}
.__disc_mark::before{
    content: "・";
    position: absolute;
    left: 0;
}
.__address,
.__tell,
.__fax,
.__email {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 30px;
}

.__address::before,
.__tell::before,
.__fax::before,
.__email::before {
    position: absolute;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.__address::before {
    content: "\f3c5";
}

.__tell::before {
    content: "\f095";
}

.__fax::before {
    content: "\f1ac";
}

.__email::before {
    content: "\f0e0";
}

.txt-center {
    text-align: center;
}

.red {
    color: red;
}
.__border_tb{
    padding: 20px 0!important;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}
.copyright {
    z-index: 3;
}