

@charset "UTF-8";

/* 共通ルールの上書き */
#contents {
    margin-bottom: 0;
}
body > header + div {
    overflow-x: hidden;
}
.txGuardRed {
    color: #FF0000;
}
.hdg1.index {
    text-align: center;
}
@media print, screen and (min-width: 768px) {   /* PC */
    .hdg1.index {
        margin: 73px 0 2px;
    }
}
.hdg1.index .hdgLabel {
    border: none;
    padding: 0;
    color: #333333;
}

.hdLevel2 {
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}
@media print, screen and (min-width: 768px) {   /* PC */
    .hdLevel2 {
        font-size: 26px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    .hdLevel2 {
        font-size: 24px;
    }
}


/* #bloSelectCategory 絞込エリア標題
----------------------------------------------- */
#headSelectCategory {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #1F497D;
}
#headSelectCategory.isHidden {
    display: none;
}


/* #bloSelectCategory 絞込エリア
----------------------------------------------- */
#bloSelectCategory.isHidden {
    display: none;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloSelectCategory {
        display: flex;
        flex-flow: row wrap;
    }
    #bloSelectCategory > .buttonSelectCategory {
        margin: 0 15px 15px 0;
        width: 321px;
    }
    #bloSelectCategory > #wrapRadioCategoryChronic.buttonSelectCategory{
        width: 658px;
    }
    #bloSelectCategory > #wrapRadioCategoryWoman.buttonSelectCategory,
    #bloSelectCategory > #wrapRadioCategoryChronic.buttonSelectCategory,
    #bloSelectCategory > #wrapRadioCategoryRecommend.buttonSelectCategory {
        margin-bottom: 0;
    }
    #bloSelectCategory > .buttonSelectCategory.modSpacer {
        width: 154px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloSelectCategory {
        display: grid;
        grid-template-columns: 2fr 2fr;
        grid-auto-rows: 40px;
        grid-template-areas:
            " all   gan"
            " iryo shisan"
            " kaigo syushin";
        gap: 10px;
        margin-bottom: 40px;
    }
    #bloSelectCategory > .buttonSelectCategory.modSpacer {
        display: none
    }
}
/* 配置指定 */
@media only screen and (max-width: 767px) {     /* SP */
    #bloSelectCategory > #wrapRadioCategoryAll {
        grid-area: all;
    }
    #bloSelectCategory > #wrapRadioCategoryGan {
        grid-area: gan;
    }
    #bloSelectCategory > #wrapRadioCategoryIryo {
        grid-area: iryo;
    }
    #bloSelectCategory > #wrapRadioCategoryShisan {
        grid-area: shisan;
    }
    #bloSelectCategory > #wrapRadioCategoryKaigo {
        grid-area: kaigo;
    }
    #bloSelectCategory > #wrapRadioCategorySyushin {
        grid-area: syushin;
    }
    #bloSelectCategory > #wrapRadioCategoryEducation {
        grid-area: education;
    }
    #bloSelectCategory > #wrapRadioCategoryKsupport {
        grid-area: ksupport;
    }
    #bloSelectCategory > #wrapRadioCategoryWoman {
        grid-area: women;
    }
    #bloSelectCategory > #wrapRadioCategoryChronic {
        grid-area: chronic;
    }
    #bloSelectCategory > #wrapRadioCategoryRecommend {
        grid-area: recommend;
    }
    .text12SP {
        font-size: 12px !important;
    }
}
.kyushokuCategory {
    display:contents;
    margin: auto 0;
}

#bloSelectCategory .radioSelectCategory {
    display: none;
}
#bloSelectCategory .labelSelectCategory {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border: 2px solid #d9d9d9;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloSelectCategory .labelSelectCategory {
        height: 48px;
        align-items: flex-end;
        padding: 0 42px 5px;
        font-size: 21px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloSelectCategory .labelSelectCategory {
        height: 100%;
        align-items: center;
        font-size: 14px;
    }
}
#bloSelectCategory .radioSelectCategory:checked + .labelSelectCategory {
    border-color: #00a5d9;
    color: #00a5d9;
}


/* #bloCategoryOverview 説明エリア
----------------------------------------------- */
#bloCategoryOverview {
    position: relative;

    padding: 20px;
    margin-bottom: 35px;

    font-size: 16px;
    background: #ffffff;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloCategoryOverview {
        display: flex;
        gap: 10px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloCategoryOverview {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon name"
            " txt  txt";
        gap: 10px 5px;
    }
    #bloCategoryOverview.modOverviewAll {
        display: block;
    }
}
#bloCategoryOverview > * {
    display: none;
}
#bloCategoryOverview > .icoOverviewInfo {
    display: block;
    width: 22px;
    height: 22px;
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloCategoryOverview > .icoOverviewInfo {
        float: left;
        margin-right: 5px;
    }
}
#bloCategoryOverview > .txtCategoryName {
    flex-shrink: 0;
    font-weight: bold;
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloCategoryOverview > .txtOverview {
        grid-area: txt;
    }
}
#bloCategoryOverview.modOverviewAll > .txtOverviewAll,
#bloCategoryOverview.modOverviewGan > .txtOverviewGan,
#bloCategoryOverview.modOverviewIryo > .txtOverviewIryo,
#bloCategoryOverview.modOverviewKaigo > .txtOverviewKaigo,
#bloCategoryOverview.modOverviewShisan > .txtOverviewShisan,
#bloCategoryOverview.modOverviewSyushin > .txtOverviewSyushin,
#bloCategoryOverview.modOverviewKsupport > .txtOverviewKsupport,
#bloCategoryOverview.modOverviewEducation > .txtOverviewEducation,
#bloCategoryOverview.modOverviewWoman > .txtOverviewWoman,
#bloCategoryOverview.modOverviewChronic > .txtOverviewChronic,
#bloCategoryOverview.modOverviewRecommend > .txtOverviewRecommend
{
    display: inline;
}


/* #headQuestionLinks
----------------------------------------------*/
#headQuestionLinks {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}


/* #bloQuestionLinks
----------------------------------------------*/
#bloQuestionLinks {
    display: grid;
    gap: 15px;

    margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloQuestionLinks {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 65px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloQuestionLinks {
        grid-template-rows: repeat(4, 65px);
    }
}
#bloQuestionLinks > .linkQuestion {
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50px;

    font-size: 16px;
    font-weight: bold;
    color: #333333;
    background: #ffffff;
    text-align: center;
    text-decoration: none;

    box-shadow: 0px 1.5px 3px 2px rgba(4, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloQuestionLinks br {
        display: none;
    }
}


/* #bloCtaTokuyaku 契約者向け商品
----------------------------------------------- */
#bloCtaTokuyaku {
    padding: 30px 20px;
    margin-bottom: 45px;
    background: #FFF;
}


/* .bloGoodsIndexAcArea Q&A
----------------------------------------------- */
.bloGoodsIndexAcArea {
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 3px 0px rgba(4, 0, 0, 0.25);
    box-shadow: 0px 2px 3px 0px rgba(4, 0, 0, 0.25);
}
.bloGoodsIndexAcArea.lastAcArea {
    margin-bottom: 80px;
}
.bloGoodsIndexAcArea .description > .list {
    padding-left: 1.3em;
}
.bloGoodsIndexAcArea .description > .list.komeNum {
    padding-left: 2.5em;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcBtn {
    padding: 10px 20px;
    display: table;
    width: 100%;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcBtn > div {
    display: table-cell;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcBtn > div:first-child {
    width: 36px;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcBtn > div:last-child {
    padding-left: 1em;
    padding-right: 2em;
    vertical-align: middle;
    background: url(/content/dam/aflac/jp/ja/static/iryo/images/icon_pc_iryo_index_ac_close.gif) no-repeat right center;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcBtn.open > div:last-child {
    background: url(/content/dam/aflac/jp/ja/static/iryo/images/icon_pc_iryo_index_ac_open.gif) no-repeat right center;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAc > div {
    margin: 0 20px 30px;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcQA  > div {
    display: table;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcQA  > div > div > a:link{
    outline: none;
    color: #33b0e3;
    text-decoration: none;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcQA > div > div {
    display: table-cell;
    vertical-align: top;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcQA > div > div:first-child {
    width: 36px;
}
.bloGoodsIndexAcArea > .bloGoodsIndexAcQA > div > div:last-child {
    padding-left: 1em;
}

@media only screen and ( max-width: 767px ) {
    .bloGoodsIndexAcArea > .bloGoodsIndexAcBtn > div {
        vertical-align: middle;
    }
    .bloGoodsIndexAcArea > .bloGoodsIndexAcBtn > div:last-child {
        padding-left: 0em;
        background: url(/content/dam/aflac/jp/ja/static/iryo/images/icon_sp_iryo_index_ac_close.png) no-repeat right center;
        background-size: 17px;
    }
    .bloGoodsIndexAcArea > .bloGoodsIndexAcBtn.open > div:last-child {
        background: url(/content/dam/aflac/jp/ja/static/iryo/images/icon_sp_iryo_index_ac_open.png) no-repeat right center;
        background-size: 17px;
    }
    .bloGoodsIndexAcArea > .bloGoodsIndexAcQA > div {
        border-top: solid 2px #e6e6e6;
        padding-top: 10px;
    }
    .bloGoodsIndexAcArea > .bloGoodsIndexAcQA > div > div:last-child {
        padding-left: 0;
    }
    .bloGoodsIndexAc > .bloGoodsIndexAcCloseBtn {
        display: block !important;
        padding: 13px 0;
        border-top: solid 2px #e6e6e6;
        background: url(/content/dam/aflac/jp/ja/static/iryo/images/icon_sp_iryo_index_ac_open.png) no-repeat right center;
        background-size: 17px;
    }
}


/* #footerCta
----------------------------------------------- */
#footerCta {
    padding: 30px 0 50px;
}

/* .footerTop
----------------------------------------------- */
.footerTop .btnRow1-footerTop {
    background: transparent;
}


/* #bloFloating フローティング
----------------------------------------------- */
#bloFloating {
    position: fixed;
    left: 0;
    bottom: 0;

    width: 100%;

    transition: bottom 0.5s ease-out;
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloFloating.isHidden {
        bottom: -57px;
    }
}
/* #bloBottomSubmit */
#bloFloating > #bloBottomSubmit {
    background: rgba(0, 0, 0, 0.5);
}
#bloFloating > #bloBottomSubmit.isHidden {
    display: none;
}
#bloFloating > #bloBottomSubmit.isBottom {
    display: none;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloFloating > #bloBottomSubmit {
        display: flex;
        align-items: center;
        height: 135px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloFloating > #bloBottomSubmit {
        display: grid;
        grid-template-rows: 1fr auto;
        grid-template-areas:
            "txt"
            "button";
        align-items: end;
        justify-content: center;
        gap: 6px;
        height: 124px;
        padding-bottom: 16px;
    }
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloFloating > #bloBottomSubmit > #imgBottomSubmit {
        text-align: right;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloFloating > #bloBottomSubmit > #imgBottomSubmit {
        display: none;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloFloating > #bloBottomSubmit > .buttonFormSubmit {
        grid-area: button;
    }
}
#bloFloating > #bloBottomSubmit > #txtBottomSubmit {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloFloating > #bloBottomSubmit > #txtBottomSubmit {
        padding-left: 30px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloFloating > #bloBottomSubmit > #txtBottomSubmit {
        text-align: center;
    }
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloFloating > #bloBottomSubmit > #imgBottomSubmit,
    #bloFloating > #bloBottomSubmit > #txtBottomSubmit {
        width: calc((100% - 400px) / 2);
    }
}
#bloFloating > #bloBottomSubmit #txtSelectCounter {
    font-size: 31px;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #bloFloating > #bloBottomSubmit #txtSelectCounter {
        padding: 0 7px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloFloating > #bloBottomSubmit #txtSelectCounter {
        padding: 0 8px;
    }
}
/* #bloBottomNavi */
@media print, screen and (min-width: 768px) {   /* PC */
    #bloFloating > #bloBottomNavi {
        display: none;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #bloFloating > #bloBottomNavi {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: 57px;

        background: #ffffff;
    }
}
#bloFloating > #bloBottomNavi > .linkBottomNavi {
    display: grid;
    grid-template-rows: 1fr 21px 22px;
    grid-template-areas:
        "blank"
        "img"
        "text";
    justify-items: center;
    gap: 4px;

    color: #333333;
    font-size: 10px;
    font-weight: bold;
    text-decoration: none;
}
#bloFloating > #bloBottomNavi > .linkBottomNavi > img {
    grid-area: img;
}
#bloFloating > #bloBottomNavi > .linkBottomNavi > span {
    grid-area: text;
}



