@charset "utf-8";
/* CSS Q & A */
.navbar{
    margin-bottom: 0;
}

/* アンカーリンク位置調整 */
section[id] {
    scroll-margin-top: 60px; /* モバイル用の基本値 */
}

/* タブレット以上 */
@media (min-width: 576px) {
    section[id] {
        scroll-margin-top: 70px;
    }
}

/* デスクトップ以上 */
@media (min-width: 768px) {
    section[id] {
        scroll-margin-top: 80px;
    }
}

/* 大画面デスクトップ */
@media (min-width: 992px) {
    section[id] {
        scroll-margin-top: 90px;
    }
}

.page-header{
    padding: calc(30px + 30 * (100vw - 320px) / 920);
    text-align: center;
    margin-bottom: 0;
}
.entry-title{
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}
.wrap.contentclass{
    margin-top: 50px;
    margin-bottom: 0;
}
@media (min-width:576px){
    .wrap.contentclass{
        margin-top: 0;
    }
}
.support-wp{
    background: var(--bs-medium-gray);
    padding-top: 5em;
    padding-bottom: 100px;
}
.item-category {
    font-size: calc(16px + 12 * (100vw - 320px)/920);
    font-weight: normal;
}
.qa-item {
    position: relative;
}
/*Question Setting*/
.qa-item .item-title {
    display: flex;
    font-size: calc(13px + 3 * (100vw - 320px)/920);
    line-height: 1.5em;
    border-bottom: 1px solid var(--bs-dark-gray);
    padding: 1em 0;
    position: relative;
}
.qa-item .item-title span {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bs-white);
    background: var(--bs-black);
    height: 36px;
    width: 36px;
}
.item-title a {
    display: flex;
    align-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    width: 100%;
    position: relative;
    padding-right: 1em;
    padding-left: 1em;
    transition: all 0.5s;
}
.item-title a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    color: var(--bs-dark-gray);
    font-weight: 900;
    position: absolute;
    top: 25%;
    right: 0;
    border: 0;
    transition: all 0.5s;
}
.item-title a:hover{
    color: var(--bs-orange);
}
/*Answer Setting*/
.qa-item .item-title-answer {
    display: flex;
    font-size: calc(13px + 3 * (100vw - 320px)/920);
    line-height: 1.65em;
    padding: 1em 0;
    position: relative;
}
.qa-item .item-body-answer {
    display: flex;
    font-size: calc(13px + 3 * (100vw - 320px)/920);
    line-height: 1.65em;
    padding: 1em 1em 1em calc(36px + 1em);
    /*padding: 3em 1em 1em calc(36px + 1em);*/
    background: #FFF;
    position: relative;
}
.qa-item .item-title-answer span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    color: var(--bs-white);
    background: var(--bs-black);
    height: 36px;
    width: 100%;
    max-width: 36px;
    margin-right: 1em;
}
.qa-item .item-body-answer span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    color: var(--bs-white);
    background: var(--bs-orange);
    width: 100%;
    height: 36px;
    max-height: 36px;
    max-width: 36px;
    /*margin-right: 1em;*/
    position: absolute;
    top:0;
    left: 0;
}
/*.qa-item .item-body-answer span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    color: var(--bs-white);
    background: var(--bs-orange);
    width: 100%;
    height: 36px;
    max-height: 36px;
    max-width: 36px;
    margin-right: 1em;
    position: absolute;
    top: 0;
    left: 0;
}*/
.item-link a {
    display: flex;
    align-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
    width: 100%;
    position: relative;
    padding-right: 2em;
    padding-left: 1em;
    transition: all 0.5s;
}
.item-link a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    color: var(--bs-dark-gray);
    font-weight: 900;
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
}
.item-link a:hover {
    color: var(--bs-orange);
}

.qa-item ol, .qa-item ul{
        list-style: decimal;
        list-style-position: inside;
        font-size: calc(14px + 4 * (100vw - 320px)/920);
        padding-left: calc(36px + 1em);
        line-height: 2em;
        background: var(--bs-white);
    }
    .item-body-answer.second-body{
        padding-left: calc(36px + 1em);
    }