@charset "utf-8";

/* タブ
------------------------------------------------------------ */
.ab_tab_list{
    display:flex;
    justify-content:space-between;
    background:#fff;
}
.ab_tab_list li{
    width:calc(100% / 2);
    padding:10px 2px;
    background:#f6f6f6;
    text-align:center;
    cursor:pointer;
}
.ab_tab_list li:not(:last-of-type){
    border-right:2px solid #eee;
}
/* タブ選択時 */
.ab_tab_list li.current{
    position:relative;
    background:#fff;
    pointer-events:none;
}
/* 選択時の黒帯（top_tabは上、under_tabは下） */
.ab_tab_list li.current::after{
    position:absolute;
    left:0;
    content:'';
    width:100%;
    height:4px;
    background:#333;
}
.ab_tab_list.top_tab li.current::after{
    top:0;
}
.ab_tab_list.under_tab li.current::after{
    bottom:0;
}
/* 選択時の三角（top_tabは下、under_tabは上） */
.ab_tab_list li.current::before{
    position:absolute;
    content:'';
    bottom:-8px;
    left:50%;
    width:0;
    height:0;
    border-style:solid;
    border-width:8px 6px 0 6px;
    border-color:#333 transparent transparent transparent;
    transform:translateX(-50%);
}
.ab_tab_list.under_tab li.current::before{
    top:-8px;
    border-width:0 6px 8px 6px;
    border-color:transparent transparent #333 transparent;
}
/* タブに対応のコンテンツ表示・非表示 */
.ab_test_tab{
    display:none;
}
.ab_test_tab.show{
    display:block;
}

/* コンテンツ共通
------------------------------------------------------------ */
.contents_wrap{
    margin:0 0 20px;
    background:#fff;
    color:#595757;
}
.contents_wrap .ct_box {
    padding: 10px 15px 20px;
    border-bottom: none;
}
.contents_wrap .main_heading{
    padding: 15px 0 5px;
    margin: 0 0 20px;
}
/* 画像 */
.contents_wrap img{
    display: block;
    height: auto;
}
/* スクロール要素 */
.contents_wrap .scroll_note{
    font-size: 12px;
    margin: 0 0 5px;
}
.contents_wrap .scroll_wrap{
    overflow: auto;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    margin: 0 0 20px;
}
/* 注意事項 */
.contents_wrap .attention li,
.contents_wrap p.attention{
    display: table;
}
.contents_wrap .attention li{
    margin: 0;
}
.contents_wrap .attention{
    margin: 0 0 20px;
}
.contents_wrap .attention span{
    display: table-cell;
    white-space: nowrap;
}
/* 強調 */
.contents_wrap strong{
    font-weight: bold;
    display: contents;
}
.contents_wrap mark{
    background-color: transparent;
}
.contents_wrap em{
    font-weight: bold;
}
/* 上付き文字・小文字 */
.contents_wrap sup{
    font-size: 12px;
    display: contents;
}
.contents_wrap small{
    font-size: 14px;
    display: contents;
}

/* おすすめポイント ---------------------------------------- */
.main_title_wrap{
    padding: 20px 0 0;
}
.main_title_wrap .text{
    margin: 0 0 5px;
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #00ac9b;
    line-height: 1.3;
}
.main_title_wrap .logo{
    display: flex;
    align-items: baseline;
}
.main_title_wrap .logo img{
    width: 85%;
    max-width: 494px;
    min-width: 200px;
    height: auto;
    margin: 5px 0;
}
/* しくみ・重視していること 共通 */
.contents_wrap .title_wrap{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
}
.contents_wrap .title_wrap .sub_title{
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    color: #fff;
    width: 100%;
    margin: 0 0 15px;
}
.contents_wrap .title_wrap .sub_title .number{
    font-size: 40px;
    font-weight: normal;
    display: block;
}
.contents_wrap .title_wrap .title{
    font-weight: bold;
    line-height: 1.5;
    padding: 10px 0;
}
.contents_wrap .title_wrap .title p{
    display: contents;
}
.structure_wrap .title_wrap .title figure{
    display: contents;
}
.contents_wrap .title_wrap .title sup{
    position: relative;
    right: 10px;
    top: -3px;
    margin: 0 -10px 0 0;
    display: initial;
}
/* しくみ */
.structure_wrap .title_wrap .sub_title{
    background: #00ac9b;
}
.structure_wrap .title_wrap .title img{
    display: inline-block;
    width: 250px;
    height: 34px;
    margin: 0 0 5px;
}
.structure_wrap .text{
    margin: 0 0 20px;
}
.structure_wrap .text em{
    color: #00ac9b;
}
.structure_wrap .section_title{
    flex-wrap: wrap;
}
.structure_wrap figcaption:not(.section_title)::before,
.structure_wrap .section_title span::before{
    content: '';
    min-width: 10px;
    height: 10px;
    background: #00ac9b;
    margin: 0 5px 0 0;
}
.structure_wrap figcaption span{
    margin: 0 0 5px;
}
.structure_wrap figcaption small{
    margin: 0 15px;
    display: block;
    font-weight: normal;
}
/* しくみ3 */
.structure_wrap .point{
    padding: 0 0 0 10px;
    margin: 0 0 20px;
}
.structure_wrap .section_title{
    margin: 0 0 10px;
}
.structure_wrap li{
    font-size: 15px;
    display: flex;
    margin: 0 0 5px;
}
.structure_wrap li mark{
    background: #00ac9b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    min-width: 25px;
    font-weight: bold;
    margin: 0 8px 0 0;
    border-radius: 3px;
}
.structure_wrap .case_wrap{
    margin: 0 0 20px;
}
.structure_wrap figcaption,
.structure_wrap .section_title span{
    display: flex;
    align-items: baseline;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.2;
}
.structure_wrap .benefits_type{
    background: #ebe9e8;
    padding: 15px;
    margin: 0 0 20px;
}
.structure_wrap .benefits_type .benefits_title{
    font-weight: bold;
    margin: 0 0 10px;
}
.structure_wrap .benefits_type .benefits_title mark{
    border: 1px solid #595757;
    padding: 3px;
    color: #595757;
    margin: 0 5px 0 0;
}
.structure_wrap .benefits_type table{
    width: 100%;
}
.structure_wrap .benefits_type table,
.structure_wrap .benefits_type table th,
.structure_wrap .benefits_type table td{
    border: 1px solid #595757;
    text-align: center;
    padding: 5px;
}
.structure_wrap .benefits_type table td{
    background: #fff;
    width: 30%;
}
.structure_wrap .benefits_type table td em{
    color: #00ac9b;
}
.structure_wrap .benefits_type table td small{
    display: inline-block;
    margin: 0 3px;
}
.structure_wrap .benefits_type table td span{
    border: 3px solid #ec6d74;
    padding: 3px 5px;
    color: #ec6d74;
    display: block;
    font-weight: bold;
}
/* しくみ4 */
.structure_wrap .support_wrap .lifestyle_disease,
.structure_wrap .support_wrap .female_cancer{
    margin: 0 0 20px;
}
.structure_wrap .support_wrap dl{
    margin: 0 0 20px;
}
.structure_wrap .support_wrap dt{
    background: #ddeeec;
    color: #00ac9b;
    font-weight: bold;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    margin: 0 0 20px;
    font-size: 18px;
}
.structure_wrap .support_wrap dd{
    display: flex;
    flex-wrap: wrap;
}
.structure_wrap .support_wrap .female_cancer dd{
    justify-content: space-around;
    flex-wrap: nowrap;
}
.structure_wrap .support_wrap .female_cancer .logo img{
    margin: 0 0 0 10px;
    width: 80px;
    height: 94px;
}
.structure_wrap .support_wrap dd mark{
    display: flex;
    align-items: baseline;
    border-bottom: 2px dotted #00ac9b;
    width: fit-content;
    font-weight: bold;
    color: #595757;
}
.structure_wrap .support_wrap dd mark::before{
    content: '';
    min-width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ac9b;
    margin: 0 5px 0 0;
}
.structure_wrap .support_wrap dd em{
    display: contents;
    color: #00ac9b;
}
.structure_wrap .support_wrap .lifestyle_disease img,
.structure_wrap .support_wrap .female_cancer img{
    margin: 0 auto 10px;
    max-width: 495px;
    width: 100%;
    height: auto;
}
.structure_wrap .support_wrap .sp_contract_name{
    border: 2px solid #ee781f;
    padding: 5px 10px;
    color: #ee781f;
    font-weight: bold;
    text-align: center;
}
/* 重視していること */
.emphasis_wrap .sub_title{
    background: #fabe00;
}
.emphasis_wrap .title_wrap .title{
    display: flex;
    align-items: center;
}
/* ご加入時・ご加入後 */
.emphasis_wrap .subscription .box{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10px;
}
.emphasis_wrap .subscription .box:first-of-type{
    align-items: baseline;
}
.emphasis_wrap .subscription .box:last-of-type{
    align-items: flex-start;
}
.emphasis_wrap .subscription .box dt{
    border: 2px solid #00ac9b;
    padding: 5px 10px;
    color: #00ac9b;
    font-weight: bold;
    margin: 0 0 10px;
    display: inline-block;
    margin: 0 0 10px;
    min-width: fit-content;
}
.emphasis_wrap .subscription .box dd{
    margin: 0 0 15px;
}
.emphasis_wrap .subscription .box dd em{
    color: #00ac9b;
}
/* アフターフォロー */
.emphasis_wrap .after_follow_wrap{
    margin: 0 0 30px;
}
.after_follow_wrap .after_follow{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10px;
}
.after_follow .title{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 10px 15px;
    line-height: 1.2;
}
.after_follow .title br{
    display: none;
}
.after_follow_wrap .follow_1 .title{
    background: #f4a340;
}
.after_follow_wrap .follow_2 .title{
    background: #9ac83c;
}
.after_follow_wrap .follow_3 .title{
    background: #15a68d;
}
.after_follow_wrap .follow_4 .title{
    background: #a26Fab;
}
.after_follow_wrap .after_follow .about{
    background: #fef5e1;
    padding: 15px;
    width: 100%;
}
.after_follow_wrap .after_follow .about .text{
    font-weight: bold;
    margin: 0 0 10px;
}
.after_follow_wrap .after_follow .about img{
    width: 100%;
    height: auto;
}
.after_follow_wrap .follow_2 .about img:first-of-type{
    max-width: 628px;
    margin: 0 0 15px;
}
.after_follow_wrap .follow_2 .about img:last-of-type{
    max-width: 490px;
}
.after_follow_wrap .follow_4 .about img{
    max-width: 565px;
    margin: 0 auto 10px;
}
.after_follow_wrap .follow_4 .about .attention{
    text-align: right;
    display: block;
    margin: 0;
}
.after_follow_wrap .after_follow .list{
    padding: 0 0 0 20px;
    margin: 0 0 10px;
}
.after_follow_wrap .after_follow .list span{
    display: inline-flex;
    align-items: baseline;
    margin: 0 10px 0 0;
}
.after_follow_wrap .after_follow .list span::before{
    content: '';
    min-width: 10px;
    height: 10px;
    margin: 0 5px 0 0;
}
.after_follow_wrap .after_follow .list span:not(.follow_3 span):last-child::before{
    display: none;
}
.after_follow_wrap .follow_1 .list span::before{
    background: #f4a340;
}
.after_follow_wrap .follow_3 .list span::before{
    background: #15a68d;
}
.after_follow_wrap .follow_4 .list span::before{
    background: #a26Fab;
}
.after_follow_wrap .follow_1 .supplement{
    background: #fff;
    padding: 10px;
    border: 1px solid #f4a340;
}
.after_follow_wrap .supplement em{
    color: #f4a340;
}
.emphasis_wrap .dividend dl{
    margin: 0 0 20px;
}
.emphasis_wrap .dividend dl>dt{
    color: #00ac9b;
    font-weight: bold;
    margin: 0 0 10px;
}
.emphasis_wrap .dividend figcaption{
    margin: 0 0 10px;
}
/* 特約ラインナップ */
.special_contract_wrap .text{
    margin: 0 0 20px;
}
.special_contract_wrap .text span{
    margin: 0 0 10px;
    display: block;
}
.special_contract_wrap .text mark{
    border: 2px solid #eb6110;
    padding: 5px;
    color: #eb6110;
    font-weight: bold;
    display: block;
}
.special_contract_wrap .special_contract_list{
    margin: 0 0 30px;
}
.special_contract_wrap .special_contract_list .category{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #7a706b;
    border-bottom: 1px solid #7a706b;
    margin: 0 0 20px;
    line-height: 1.5;
}
.special_contract_wrap .about_title{
    display: flex;
    justify-content: center;
    align-items: center;
}
.special_contract_wrap .about_title .title{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 auto;
}
.special_contract_wrap .about_title .title strong{
    font-size: 20px;
}
.special_contract_wrap .about_title .title small{
    font-size: 15px;
}
.special_contract_wrap .about_title,
.special_contract_wrap .about_title .title{
    font-weight: bold;
}
.special_contract_wrap .title,
.special_contract_wrap .update .about_title,
.special_contract_wrap .others .about_title,
.special_contract_wrap .about,
.special_contract_wrap ul{
    width: 100%;
}
.special_contract_wrap .about_title .about{
    padding: 10px 15px;
    display: flex;
    align-items: center;
    font-weight: normal;
}
.special_contract_wrap .about_title .about em{
    display: contents;
}
.special_contract_wrap li{
    border-bottom: 1px solid #d3d3d4;
    padding: 8px 0 8px 15px;
}
.special_contract_wrap li.new{
    display: flex;
    align-items: center;
}
.special_contract_wrap li.new img{
    margin: 0 0 0 5px;
    width: 50px;
    height: 20px;
}
.special_contract_wrap li:last-child{
    border: 0;
}
.special_contract_wrap .category_a .about_title .title{
    background: #fef3f1;
}
.special_contract_wrap .category_a .about_title .about em,
.special_contract_wrap .category_a li,
.special_contract_wrap .category_a .about_title .title{
    color: #ec6d74;
}
.special_contract_wrap .category_b .about_title .title{
    background: #fdedde;
    color: #ee781f;
}
.special_contract_wrap .category_b .about_title .about em,
.special_contract_wrap .category_b li{
    color: #ee781f;
}
.special_contract_wrap .update .about_title{
    background: #edecf6;
    color: #6e61a9;
    padding: 10px 0;
}
.special_contract_wrap .update ul{
    display: flex;
    align-items: center;
}
.special_contract_wrap .update li{
    color: #6e61a9;
    padding: 8px 0 8px 15px;
}
.special_contract_wrap .others .about_title{
    background: #eeefef;
    color: #7a706b;
    padding: 10px
}
.special_contract_wrap .others li{
    color: #7a706b;
}
.special_contract_wrap .supplement{
    font-weight: bold;
    text-decoration: underline;
}

/* ご契約例
----------------------------------------------------------------*/
.example_contract .example_note{
    font-weight: bold;
    margin: 0 0 20px;
}
.example_contract .example_table,
.example_result_table{
    font-size: 15px;
    margin: 0 0 20px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.example_contract table th,
.example_contract table td{
    padding: 10px;
}
.example_contract table tr td:nth-child(2){
    width: 40%;
}
.example_contract table tr td:nth-child(3){
    width: 20%;
}
.example_contract .example_table thead th{
    text-align: center;
    font-weight: bold;
    border-right: 0;
}
.example_contract .example_table th{
    width: 33%;
}
.example_contract table th{
    background: #fafafa;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.example_contract table td{
    border-bottom: 1px solid #d9d9d9;
    text-align: right;
}
.example_contract .example_result{
    font-weight: bold;
    margin: 0 0 10px;
}
.example_result_table{
    width: 100%;
}
.example_result_table th{
    width: 22%;
}

/* 画面サイズ別調整
----------------------------------------------------------------*/

@media screen and (min-width: 768px){
    .contents_wrap .ct_box{
        padding: 30px 15px 20px;
    }
    /* スクロール要素 */
    .contents_wrap .scroll_note{
        display: none;
    }
    .contents_wrap .scroll_wrap{
        border: 0;
    }
    /* 画像 */
    .contents_wrap img{
        width: 100%;
    }
    /* おすすめポイント
    ------------------------------------------------------------*/
    .main_title_wrap{
        margin: 20px 0;
    }
    .main_title_wrap .text{
        font-size: 24px;
        margin: 0 0 10px;
    }
    .main_title_wrap .logo img{
        margin: 0 0 20px;
    }
    /* しくみ・重視していること 共通 */
    .contents_wrap .title_wrap{
        display: flex;
        margin: 0 0 20px;
    }
    .contents_wrap .title_wrap .sub_title{
        display: block;
        padding: 10px;
        margin: 0;
    }
    .contents_wrap .title_wrap .sub_title .number{
        position: relative;
        display: block;
        font-size: 80px;
    }
    .contents_wrap .title_wrap .title{
        flex: 1;
        font-size: 22px;
    }
    .contents_wrap .title_wrap .title strong{
        font-size: 30px;
    }
    /* しくみ */
    .structure_wrap .title_wrap{
        align-items: center;
    }
    .structure_wrap .title_wrap .sub_title{
        width: 115px;
        height: 110px;
    }
    .structure_wrap .title_wrap .sub_title .number{
        top: -15px;
        text-align: right;
    }
    .structure_wrap .title_wrap .title{
        padding: 30px 15px 25px;
    }
    .structure_wrap .support_wrap .lifestyle_disease,
    .structure_wrap .support_wrap .female_cancer{
        width: 50%;
        margin: 0 20px 0 0;
    }
    .structure_wrap .support_wrap .female_cancer{
        margin: 0;
    }
    .structure_wrap .support_wrap dl{
        height: 160px;
    }
    /* しくみ3 */
    .structure_wrap .benefits_type table .type{
        width: 10%;
    }
    /* しくみ4 */
    .structure_wrap .support_wrap{
        display: flex;
        flex-wrap: wrap;
    }
    /* 重視していること */
    .emphasis_wrap .title_wrap .sub_title{
        width: 150px;
        height: 130px;
    }
    .emphasis_wrap .sub_title .number{
        top: -15px;
        text-align: right;
    }
    .emphasis_wrap .title_wrap .title{
        padding: 15px;
    }
    .emphasis_wrap .after_follow_wrap .after_follow{
        flex-wrap: nowrap;
    }
    /* ご加入時・ご加入後 */
    .emphasis_wrap .subscription .box{
        flex-wrap: nowrap;
    }
    .emphasis_wrap .subscription .box dt{
        margin: 0 10px 0 0;
    }
    /* アフターフォロー */
    .after_follow_wrap .after_follow .title{
        margin: 0 10px 0 0;
        width: 150px;
        flex-shrink: 0;
    }
    .after_follow .title br{
        display: block;
    }
    .contents_wrap .support_wrap{
        flex-wrap: nowrap;
        margin: 0 0 20px;
    }
    .after_follow_wrap .after_follow .list span:last-child{
        margin: 0 0 0 15px;
    }
    /* 特約ラインナップ */
    .special_contract_wrap .special_contract_list .category{
        flex-wrap: nowrap;
        margin: 0 0 10px;
    }
    .special_contract_wrap .about_title{
        margin: 0 15px 0 0;
    }
    .special_contract_wrap .others ul{
        width: 100%;
    }
    .special_contract_wrap .title,
    .special_contract_wrap .update .about_title,
    .special_contract_wrap .others .about_title{
        min-width: 200px;
        width: auto;
    }
    .special_contract_wrap .about_title .about{
        min-width: 150px;
        width: auto;
    }
    .special_contract_wrap ul{
        min-width: 400px;
        width: auto;
    }
    .special_contract_wrap strong{
        font-size: 24px;
    }
    /* ご契約例
    ------------------------------------------------------------*/
    .example_contract .example_table {
        width: 100%;
    }
    .example_contract .example_table,
    .example_result_table{
        font-size: 16px;
    }
    .example_contract .example_table th{
        width: 50%;
    }
    .example_contract table tr td{
        text-align: right;
        width: 30%;
    }
    .example_result_table th{
        width: 40%;
    }
}
@media screen and (min-width: 768px) and (max-width: 1040px){
    .main_heading {
        margin: 15px 0;
    }
}
@media screen and (max-width: 400px){
    .contents_wrap .scroll_wrap img{
        width: auto;
        max-height: 400px;
    }
}