@charset "UTF-8";

/**************************************************************/
/* よくある質問/Faq メニュー*/
/**************************************************************/
.faq-list {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    margin:0px;
}

.faq-list a {
    display:inline-block;
    width:calc(49% - 20px);
    padding:10px 0 10px 10px;
    margin-right:10px;
    border-bottom: dotted 1px #aaa;
    background:#fff;
}

.faq-list a:nth-child(odd){
    width:calc(49% - 20px);
    margin-right:10px;
}

.faq-list a:nth-child(even) {
    width:calc(49% - 20px);
    margin-right:0;
}

.faq-list a:nth-child(1),
.faq-list a:nth-child(2) {
  border-top: dotted 1px #aaa;
}

.faq-list a:hover {
    background:#ccc;
    transition: 0.3s;
}

.faq-tcg a {
    display: block;
    color:#00acca;
    cursor: pointer;
    margin-top:20px;
    font-size: 18px;
    line-height: 1.2em;
}

.faq-tcg {
    padding:0 5px;
}
.faq-tcg a:hover{
    color: #007286;
    transition: 0.2s;
}

.faq-tcg a img {
    width:24px;
    margin:0 0 -1px 0;
}

@media screen and (max-width: 1110px) {
    .faq-list a:nth-child(odd){
        width:300px;
    }

    .faq-list a:nth-child(even) {
        width:calc(98% - 320px);
    }
}

@media screen and (max-width: 999px) {
    .faq-list a:nth-child(odd){
        width:270px;
    }

    .faq-list a:nth-child(even) {
        width:calc(98% - 290px);
    }

    .faq-tcg a {
        font-size: 16px;
    }

    .faq-tcg a img {
        width:20px;
        margin:0 0 -1px 0;
    }
}

@media screen and (max-width: 869px) {
    .faq-list a:nth-child(2) {
        border-top: dotted 0px #aaa;
    }

    .faq-list a:nth-child(odd){
        width:100%;
        margin-right: 0;
    }

    .faq-list a:nth-child(even) {
        width:100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 599px) {
    .faq-tcg a {
        font-size: 13px;
    }

    .faq-tcg a img {
        width:16px;
        margin:0 0 -1px 0;
    }
}

/**************************************************************/
/* QA上部メニュー*/
/**************************************************************/
.faq-top-menu-list {
    width:calc(100% - 20px);
    font-size: 20px;
    margin:0 auto 80px auto;
}

.faq-top-menu-list .widget_nav_menu ul {
    display: flex;
    flex-wrap: wrap;
}

.faq-top-menu-list .widget_nav_menu ul li {
    list-style: none !important;
}

.faq-top-menu-list .widget_nav_menu ul li::after {
    margin: 0 10px;
    content: '|';
    color: #bbb;
}

.faq-top-menu-list .widget_nav_menu ul li:last-child:after {
    content: '';
    color: #bbb;
}

.faq-top-menu-list .widget_nav_menu ul li a{
    transition: 0.3s;
    text-underline-offset: 2px;
}

.faq-top-menu-list .widget_nav_menu ul li a:hover {
    text-decoration: underline #333 1px;
}

@media screen and (max-width: 999px) {
    .faq-top-menu-list {
        font-size: 18px;
    }
}

@media screen and (max-width: 599px) {
    .faq-top-menu-list {
        width:calc(100% - 4px);
        font-size: 14px;
        margin:0 auto 50px auto;
    }
}


/**************************************************************/
/* QA一覧*/
/**************************************************************/
.faq-box {
    margin-bottom:50px;
    border-bottom:solid 1px #aaa;
}

.faq-box-flex {
    display: flex;
}

.faq-box-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom:20px;
}

.faq-box-text {
    font-size: 20px;
    line-height: 1.6em;
}

.faq-box-text p {
    margin:1em 0;
}

.faq-box-text a {
    color: #00acca;
    cursor: pointer;
}

.faq-box-text a:hover {
    color: #007286;
    transition: 0.2s;
}

.faq-box-title,
.faq-box-text {
    padding-top: 6px;
    width:calc(100% - 50px);
}

.faq-box-Q,
.faq-box-A {
    font-size: 16px;
    font-weight: bold;
    height: 35px;
    width: 35px;
    margin-right: 10px;
    color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-box-Q {
    background:linear-gradient(to right,#ff64de, #ff5328);
    padding-bottom:3px;
}

.faq-box-A {
    margin-top:1.4em;
    background:linear-gradient(to right,#31f6ca, #31d8f6);
    padding-bottom:1px;
}

.faq-box-menu-margin {
    margin-bottom:30px;
}

@media screen and (max-width: 999px) {
    .faq-box {
        margin-bottom:40px;
    }

    .faq-box-title {
        font-size: 20px;
        margin-bottom:15px;
        width:calc(100% - 40px);
    }

    .faq-box-text {
        font-size: 18px;
        line-height: 1.6em;
        width:calc(100% - 40px);
    }

    .faq-box-Q,
    .faq-box-A {
        font-size: 16px;
        font-weight: bold;
        height: 28px;
        width: 28px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 599px) {
    .faq-box {
        margin-bottom:30px;
    }

    .faq-box-title {
        font-size: 16px;
        margin-bottom:0px;
        width:calc(100% - 32px);
        padding-top: 3px;
    }

    .faq-box-text {
        font-size: 14px;
        line-height: 1.6em;
        width:calc(100% - 32px);
        padding-top: 3px;
    }

    .faq-box-Q,
    .faq-box-A {
        font-size: 12px;
        font-weight: bold;
        height: 22px;
        width: 22px;
        margin-right: 5px;
    }
}
