

@charset "UTF-8";

/*

    Aflac CSS
    家族に毎月届く生命保険 ＧＩＦＴ - ダイアログ

*/

* {
    box-sizing: border-box;
}
body {
    background: #e9f1f3;
}
.txStrong {
    font-weight: bold;
}

#content {
    max-width: 768px;
    margin: 0 auto;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #content {
        padding: 20px;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #content {
        padding: 20px 10px;
    }
}
.headingLogo {
    margin-bottom: 40px;
    text-align: center;
}
.headingTxt {
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
@media print, screen and (min-width: 768px) {   /* PC */
    .headingTxt {
        width: 600px;;
    }
}

/* #tableExemptionReason
----------------------------------------------- */
#tableExemptionReason {
    border: 1px solid #d6d6d6;
    margin-bottom: 20px;
    font-size: 12px;
}
#tableExemptionReason > .tableHead {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 5px;
    background: #f6f6f6;
    font-weight: bold;
}
#tableExemptionReason > .tableBody {
    background: #ffffff;
}
#tableExemptionReason > .tableBody > .tableData {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;

    padding: 5px;
}
@media print, screen and (min-width: 768px) {   /* PC */
    #tableExemptionReason > .tableHead {
        border-bottom: 1px solid #d6d6d6;
    }
    #tableExemptionReason > .tableBody {
        display: flex;
    }
    #tableExemptionReason > .tableBody > .tableData:not(:last-child) {
        border-right: 1px solid #d6d6d6;
    }
}
@media only screen and (max-width: 767px) {     /* SP */
    #tableExemptionReason {
        display: flex;
    }
    #tableExemptionReason > .tableHead {
        border-right: 1px solid #d6d6d6;
    }
    #tableExemptionReason > .tableBody {
        flex: 1;
    }
    #tableExemptionReason > .tableBody > .tableData:not(:last-child) {
        border-bottom: 1px solid #d6d6d6;
    }
}


/* .listAnnotation
----------------------------------------------- */
.listAnnotation {
    width: 100%;

    padding: 0;
    margin: 0;
    list-style: none;
}
.listAnnotation > * {
    position: relative;
    padding-left: 1.2em;
}
.listAnnotation > *::before {
    content: "※";
    position: absolute;
    left: 0;
    display: inline;
}


/* .footerClose 閉じるボタン
----------------------------------------------- */
a.footerClose {
    position: fixed;
    bottom: 0;
    left: 0;

    display: block;
    width: 100%;

    padding: 13px 10px 12px;
    background: rgba(0, 0, 0, 0.6);

    color: #ffffff;
    font-size: 122%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}



