@charset "UTF-8";
/* アコーディオン内のテーブルセンター揃え */
.table__center th,
.table__center td{
    text-align: center;
    background-clip: padding-box;/* テーブル固定firefox処理 */
}
.table__center td:first-child{
    text-align: left;
}

/* スクロール時のテーブル内_SP用フォントサイズ */
@media screen and (max-width: 767px){
    .sp__scroll_x table th,
    .sp__scroll_x table td{
        font-size: 0.7500rem;
    }
    .sp__w700{
        width: 700px !important;
    }
    .sp__wauto{
        width: auto !important;
    }
}

/* テーブル固定 */
@media screen and (max-width: 767px){
    .fixed {
        position: sticky;
        top: 0;
        left: 0;
        background: none;
        border-left: none;
        border-right: none;
    }
    .fixed::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-left: 1px solid #666666;
        border-right: 1px solid #666666;
        z-index: -1;
    }
    .sp__scroll_x{
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
}

/* テーブル固定_行ごとに色変え */
.table__zebra tr:nth-of-type(odd) th,
.table__zebra tr:nth-of-type(odd) td
{
    background-color: #f6f6f6;
}
.table__zebra tr:nth-of-type(even) th,
.table__zebra tr:nth-of-type(even) td
{
    background-color: #ffffff;
}
.bg__odd th{
    background-color: #edf3f3 !important;
}

/* アコーディオン内　表下ボタンの下余白調整 */
.box__accordion_contents__inbox .link__blocks_thin li{
    margin-bottom:0;
}
@media screen and (max-width: 767px){
    .box__accordion_contents__inbox .link__blocks_thin li{
        margin-bottom:20px;
    }
}

/* スクロールテーブルの調整　thの時 */
.table__normal th{
    width: auto;
}

/* tabの中のblock　スクロール非表示対応 */
.mreset{
    margin-left:0;
    margin-right:0;
}
@media screen and (max-width: 767px){
    .mreset{
        margin-left:-10px;
        margin-right:-10px;
    }
}

/* お問い合わせページのみ追従ボタン　削除 */
/*.fixed__block__bottom a.btn__link.btn__link_contactus {
    display: none;
}
@media screen and (max-width: 767px){
    .fixed__block__bottom a.btn__link.btn__mypage_login.disp_pc_flex{
        display: flex !important;
    }
    .fixed__block__bottom a.btn__link.btn__mypage_login{
        background-size: 33px auto !important;
    }
    .fixed__block__bottom .btn__mypage_login {
        transform: unset;
    }
}*/

/* よくあるご質問　ボタンセンター揃え */
.btn__center{
    text-align: center;
}
.btn__center .link__blocks_thin{
    display: block;
}
@media screen and (max-width: 767px){
    .btn__center .link__blocks_thin{
        display: unset;
    }
}
.btn__center .link__blocks_thin li{
    display: inline-block;
}
