@charset "UTF-8";

/*setting*/
/*function*/
/*mixin*/
/* svgアイコン
引数のcolorCodeには#記号を除いた6進数の数値を入れてください
========================================================================== */
/*Reset*/
/* ------------------------
    reset
------------------------ */
:link,
:visited {
    text-decoration: none;
}

html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
form,
fieldset,
input,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
p,
blockquote,
hr,
table,
th,
td {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img,
abbr,
acronym,
table {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
b,
u,
s,
i,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
    border-style: none;
}

caption,
th {
    text-align: left;
}

a {
    outline: none;
    text-decoration: underline;
}

a img,
:link img,
:visited img {
    border: none;
}

a:active {
    outline: none;
}

a:focus {
    -moz-outline-style: none;
}

address {
    display: inline;
    font-style: normal;
}

* html #selectorName-inner {
    height: 1%;
}

#selectorName-inner {
    display: block;
}

* html #selectorName {
    margin: 0;
}

*+html #selectorName {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

hr {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    vertical-align: bottom;
}

/*base*/
body {
    min-width: 980px;
    margin: 0 auto;
    padding: 0;
    -webkit-text-size-adjust: none;
    font-family: "ゴシックMB101 M", Meiryo, "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #EBF4FB;
    color: #333;
    scroll-behavior: smooth;
}

@media only screen and (max-width: 980px) {
    body {
        min-width: inherit;
    }
}

a {
    -webkit-transition: opacity ease 0.3s;
    transition: opacity ease 0.3s;
}

@media (min-width: 980px) {
    a:hover {
        opacity: 0.6;
    }
}

@media (min-width: 980px) {
    #tbgcHeader {
        background: #fff;
        /* -webkit-filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
                filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1)); */
        border-bottom: none !important;
    }
}


#tbgcHeaderInner {
    width: 100% !important;

    @media (min-width: 980px) {
        width: 100%;
        min-width: 980px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/*components*/
/*-----------------------------------------------

component
再利用可能な最小単位のパーツのクラス
接頭辞は'c'
例:c-button

-----------------------------------------------*/


.c-caption {
    display: flex;
    padding: 8px 0 8px 14px;
    font-weight: bold;
    font-size: 20px;
    color: #494b4d;
    line-height: 1;
    border-left: #0B68B3 solid 6px;
    @media (max-width: 768px) {
        padding: 8px 0 4px 14px;
        border-left: #0B68B3 solid 4px;
    }
}

.c-bg-white {
    background: #fff;
}

.c-contentContainer {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    max-width: 1020px;
    margin: 0 auto;

    @media (max-width: 1036px) {
        margin: 0 16px;
    }

    @media (max-width: 768px) {
        display: block;
    }
}

.c-sideCtaLink {
    position: relative;
    display: block;
    padding: 10px 10px 12px;
    color: #fff;
    background: #066EB8;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);

    &:after {
        content: '';
        position: absolute;
        bottom: 15px;
        right: 13px;
        display: inline-block;
        background: url(/idl/assets/icon_blank.svg) no-repeat left top /100% auto;
        width: 14px;
        height: 14px;
    }

    &+& {
        margin-top: 12px;
    }

    .label {
        text-align: center;

        &>span {
            display: inline-block;
            line-height: 30px;
            height: 30px;
            padding: 0 20px;
            font-size: 13px;
            letter-spacing: 0.02em;
            text-align: center;
            color: #fff;
            border-radius: 30px;
            background: #0455A4;

        }
    }

    .pic {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        background: #fff;
        border-radius: 8px;
        height: 70px;

        img {
            width: 100%;
            height: auto;
        }
    }

    .textBlock {
        margin-top: 10px;
        letter-spacing: 0.02em;
        padding: 0 10px;

        .title {
            font-size: 15px;
        }

        .text {
            font-size: 16px;
            font-weight: bold;
        }
    }

    &.-ouchiDoctor {
        .pic {
            img {
                width: 174px;

                @media (max-width: 1036px) {
                    width: calc(174px / 1020 * 100vw);
                }
            }
        }
    }

    &.-chintai {
        background: #509E39;

        .label span {
            background: #3A8628;
        }

        .pic {
            img {
                width: 200px;

            }
        }
    }
}

.c-table_wrapper {
    @media (max-width: 768px) {
        overflow-x: auto;
        table {
            width: 600px;
        }
    }
}

.c-blockCtaLink {
    position: relative;
    display: grid;
    gap: 20px;
    grid-template-columns: auto 1fr;
    padding: 10px 10px 10px;
    color: #fff;
    background: #066EB8;
    border-radius: 15px;
    filter: drop-shadow(0px 2px 10px rgba(11, 104, 179, 0.2));


    @media (max-width: 768px) {
        display: block;
        text-align: center;
        padding: 16px;
    }
    
    @media (max-width: 576px) {
        padding: 10px;
        border-radius: 10px;
    }

    &+& {
        @media (max-width: 576px) {
            margin-top: calc(16 / 375 * 100vw);
        }
    }

    &:after {
        content: '';
        position: absolute;
        bottom: 20px;
        right: 18px;
        display: inline-block;
        background: url(/idl/assets/icon_blank.svg) no-repeat left top /100% auto;
        width: 16px;
        height: 16px;

        @media (max-width: 576px) {
            width: 14px;
            height: 14px;
        }
    }

    .pic {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 10px;
        max-width: 200px;
        width: 100%;
        height: 110px;
        padding: 0 10px;

        @media (max-width: 768px) {
            margin-top: 10px;
            max-width: none;
            padding: 0 30px;
        }

        @media (max-width: 576px) {
            margin-top: 10px;
            height: calc(70 / 375 * 100vw);
            padding: 0 10px;
        }

        img {
            width: 100%;
            height: auto;
        }
    }

    .label {
        @media (max-width: 576px) {
            text-align: center;
        }

        &>span {
            display: inline-block;
            line-height: 30px;
            height: 30px;
            padding: 0 16px;
            font-size: 14px;
            letter-spacing: 0.02em;
            text-align: center;
            color: #fff;
            border-radius: 30px;
            background: #0455A4;

            @media (max-width: 1036px) {
                font-size: calc(14 / 1020 * 100vw);
            }

            @media (max-width: 768px) {
                font-size: 14px;
            }

            @media (max-width: 576px) {
                /* line-height: calc(30 / 375 * 100vw);
                height: calc(30 / 375 * 100vw);
                padding: 0 calc(20 / 375 * 100vw);
                font-size: calc(13 / 375 * 100vw); */
                line-height: 30px;
                height: 30px;
                padding: 0 20px;
                font-size: 13px;
            }
        }
    }

    .textBlock {
        display: flex;
        flex-flow: column;
        justify-content: center;
        letter-spacing: 0.02em;

        .title {
            margin-top: 8px;
            font-size: 18px;

            @media (max-width: 1036px) {
                font-size: calc(18 / 1020 * 100vw);
            }

            @media (max-width: 768px) {
                font-size: 18px;
            }

            @media (max-width: 576px) {
                /* margin-top: calc(14 / 375 * 100vw);
                font-size: calc(16 / 375 * 100vw);
                text-align: center; */
                margin-top: 14px;
                font-size: 16px;
                text-align: center;
            }
        }

        .text {
            font-size: 22px;
            font-weight: bold;

            @media (max-width: 1036px) {
                font-size: calc(22 / 1020 * 100vw);
            }

            @media (max-width: 768px) {
                font-size: 22px;
            }

            @media (max-width: 576px) {
                /* font-size: calc(18 / 375 * 100vw); */
                text-align: center;
                font-size: 18px;
            }

        }
    }

    &.-ouchiDoctor {
        filter: drop-shadow(0px 2px 10px rgba(11, 104, 179, 0.2));
        .pic {
            img {
                width: 178px;

                @media (max-width: 1036px) {
                    width: calc(174 / 1020 * 100vw);
                }

                @media (max-width: 768px) {
                    width: 100%;
                }

                @media (max-width: 576px) {
                    width: calc(174 / 375 * 100vw);
                }
            }
        }
    }

    &.-chintai {
        background: #509E39;

        .label span {
            background: #3A8628;
        }

        .pic {
            img {
                width: 200px;

                @media (max-width: 1036px) {
                    width: calc(200 / 1020 * 100vw);
                }

                @media (max-width: 768px) {
                    width: 100%;
                }

                @media (max-width: 576px) {
                    width: calc(200 / 375 * 100vw);
                }
            }
        }
    }
}

.c-ctaArticleBanner {
    .l-articleFixedBanner .inner &.-chintai {
        background: #509E39;
    }
}

.c-articleDate_created {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    font-size: 12px;

    @media (min-width: 980px) {
        padding-left: 20px;
    }

    @media (max-width: 768px) {
        font-size: 12px;
    }

    &::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        bottom: 0;
        display: inline-block;
        margin: auto;
        width: 12px;
        height: 12px;
        background: url(/idl/assets/icon_calendar.svg) no-repeat left top/100% auto;
    }
}

.c-articleDate_update {
    position: relative;
    display: inline-block;
    padding-left: 18px;
    font-size: 12px;

    @media (min-width: 980px) {
        padding-left: 20px;
    }

    @media (max-width: 768px) {
        font-size: 12px;
    }

    &::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 0;
        bottom: 0;
        display: inline-block;
        margin: auto;
        width: 12px;
        height: 12px;
        background: url(/idl/assets/icon_update.svg) no-repeat left top/100% auto;
    }
}

.c-articles_list {}

.c-articles_listItem {
    &+& {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px dashed #b8c2cc;

        @media (max-width: 768px) {
            margin-top: 20px;
            padding-top: 20px;
        }
    }

    a {
        display: grid;
        grid-template-columns: 200px 1fr;
        grid-template-rows: auto 1fr;
        gap: 8px 24px;

        @media (max-width: 768px) {
            grid-template-columns: calc(110 / 375 * 100vw) 1fr;
            gap: 8px;
            gap: 10px 12px;
        }
    }

    .thumbBlock {
        width: 100%;
        grid-row: 1 / 3;
        grid-column: 1 / 2;

        @media (max-width: 768px) {
            grid-row: 1 / 2;
        }

        .thumbnail {
            overFlow: hidden;
            border-radius: 10px;
            aspect-ratio: 3/2;

            @media (max-width: 768px) {
                border-radius: 8px;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
    }

    *:not(.titleBlock) .textTitle,
    .titleBlock {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        font-weight: bold;
        font-size: 18px;
        line-height: 1.562;
        color: #333;
        padding-top: 10px;

        @media (max-width: 768px) {
            grid-row: 1 / 2;
            font-size: 16px;
            padding-top: 0;
        }

        .date {
            display: block;
            padding-top: 5px;
            font-size: 14px;
            font-weight: normal;
            line-height: 1;
            color: #0B68B3;
        }
    }

    .titleBlock {
        padding-top: 0;
    }

    .textLead {
        font-size: 15px;
        letter-spacing: 0.02em;
        line-height: 1.65;
        color: #666;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
        max-height: calc(1.5em * 2);
        @media (max-width: 768px) {
            font-size: 12px;
        }
    }

    *:not(.leadBlock) .textLead,
    .leadBlock {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        grid-row: 2 / 3;
        grid-column: 2 / 3;

        @media (max-width: 768px) {
            grid-column: 1 / 3;
        }

        .date {
            display: block;
            margin-top: 8px;
            text-align: right;
            font-size: 12px;
            line-height: 1;
            color: #0B68B3;
        }
    }
}

.c-bannerArea {
    text-align: center;

    .inner {
        display: inline-block;
        max-width: 760px;
        margin: 0 20px;

        img {
            width: 100%;
            height: auto;
        }
    }
}

.c-pageTop {
    display: none;
}

@media (min-width: 980px) {
    .c-pageTop {
        opacity: 0;
        pointer-events: none;
        cursor: pointer;
        display: inline-block;
        position: fixed;
        bottom: 30px;
        right: 30px;
        -webkit-transition: opacity ease 0.3s;
        transition: opacity ease 0.3s;
    }

    .c-pageTop.is-pageTop-view {
        opacity: 1;
        pointer-events: inherit;
    }

    .c-pageTop:hover {
        opacity: 0.6;
    }

    .c-pageTop img {
        width: 60px;
        height: auto;
    }
}


/*layout*/
/*-----------------------------------------------

layout
大枠のレイアウトを決定するクラス
接頭辞は'l'
例:l-header

-----------------------------------------------*/
.l-header {
    position: relative;
    z-index: 1;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.l-breadcrumb {
    position: relative;
    z-index: 0;
    padding: 5px 10px 6px;
    margin: 0 auto;
    font-size: 10px;
    color: #666 !important;
    background: #EBF5FF;

    @media (min-width: 767px) {
        width: 100%;
        padding: 6px 0;
        margin: 0 auto;
        font-size: 12px;
    }
}

.l-breadcrumb_list {
    padding: 0 14px;
    max-width: 1020px;
    margin-inline: auto;
    @media (max-width: 1020px) {
        padding: 0;
    }
}

.l-breadcrumb_list_item {
    display: inline-block;
    position: relative;
    padding-right: 1.4em;
    font-size: 10px;
    padding: 0 16px 0 0;

    @media (min-width: 768px) {
        font-size: 12px;
    }

    a {
        color: #666 !important;

        &:hover {
            text-decoration: underline;
        }
    }

    &::after {
        content: "＞";
        position: absolute;
        right: 0;
    }

    &:last-child {
        padding-right: 0;
    }

    &:last-child::after {
        content: none;
    }
}

.l-footer {
}

/* MT記事レイアウト */
.page-article {
    background: #EBF4FB;
    main {
        overflow: hidden;
    }
}

.l-articleContent {
    box-sizing: border-box;
    max-width: 1020px;
    margin: 40px auto 40px;
    padding: 48px 0;
    border-radius: 40px;
    background: #fff;

    @media (max-width: 1020px) {
        margin: 40px 16px 0;
    }

    @media (max-width: 768px) {
        margin: 0;
        padding: 24px 16px 40px;
        border-radius: 0 0 20px 20px;
    }

    .articleInner {
        min-width: 600px;
        width: 74.5098%;
        margin: 0 auto;

        @media (max-width: 768px) {
            min-width: 0;
            width: 100%;
        }
    }
}

.l-articleContentHead {
    .articleCategory {
        display: flex;

        a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 38px;
            height: 40px;
            border-radius: 20px;
            background: #fff;
            border: 1px solid #01a4f3;
            font-weight: bold;
            font-size: 16px;
            line-height: 1;
            text-align: center;
            color: #01a4f3;

            @media (max-width: 768px) {
                padding: 0 24px;
                height: 32px;
                font-size: 14px;
            }

            &:hover,
            &:visited {
                color: #01a4f3;

            }
        }
    }

    .articleTitle {
        margin-top: 20px;
        font-weight: bold;
        font-size: 30px;
        letter-spacing: 0.06em;
        line-height: 1.333;
        text-align: left;
        color: #333;

        @media (max-width: 768px) {
            margin-top: 10px;
            font-size: 20px;
            line-height: 1.5;
        }
    }

    .articlePicture {
        overflow: hidden;
        margin-top: 36px;
        border-radius: 15px;

        @media (max-width: 768px) {
            margin-top: 16px;
        }

        img {
            width: 100%;
            height: auto;
        }
    }

    .articleDate {
        display: flex;
        justify-content: flex-end;
        gap: 15px;
        margin-top: 23px;
        color: #666;

        @media (max-width: 768px) {
            margin-top: 16px;
            letter-spacing: 0.05em;
        }
    }

    .articleLead {
        margin-top: 46px;
        font-size: 16px;
        letter-spacing: 0.02em;
        line-height: 1.75;
        text-align: left;
        color: #333;

        @media (max-width: 768px) {
            margin-top: 24px;
        }
    }
}


.l-articleAnchor {
    margin-top: 42px;

    @media (max-width: 768px) {
        margin-top: 40px;
    }

    &:before,
    &:after {
        content: '';
        display: block;
        border-radius: 2px;
        background: #dae1e6;
        height: 2px;
    }
}

.l-articleAnchor_title {
    margin: 25px 32px 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    color: #333;

    @media (max-width: 768px) {
        margin: 20px 18px 0;
        font-size: 18px;
    }
}

.l-articleAnchor_list {
    margin: 14px 30px 0;
    padding-bottom: 24px;

    @media (max-width: 768px) {
        margin: 12px 18px 0;
    }

    .listItem {
        &.-lv-1 {
            a {
                position: relative;
                padding-left: 24px;

                @media (max-width: 768px) {
                    padding-left: 20px;
                }

                &:before {
                    content: '';
                    position: absolute;
                    display: inline-block;
                    width: 4px;
                    height: 4px;
                    border-radius: 10px;
                    background: #B8C2CC;
                    left: 0.5em;
                    top: 0.55em;
                    line-height: 0;
                    @media (max-width: 768px) {
                    left: 0.25em; 
                    }
                }
            }
        }

        &.-lv-2 {
            padding-left: 40px;

            @media (max-width: 768px) {
                padding-left: 40px;
            }
        }

        &+& {
            margin-top: 8px;
        }

        a,
        a:visited {
            display: inline-block;
            text-decoration: underline;
            font-size: 16px;
            line-height: 26px;
            color: #0b68b3;

            @media (max-width: 768px) {
                font-size: 16px;
            }
        }

        a:hover {
            text-decoration: none;
        }
    }
}

.l-articleBody {
    margin-top: 48px;
    padding-bottom: 48px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #CFDCE6;

    @media (max-width: 768px) {
        margin-top: 40px;
    }

    section {
        & {
            margin-top: 40px;

            @media (max-width: 768px) {
                margin-top: 32px;
            }
        }

        &+& {
            margin-top: 48px;

            @media (max-width: 768px) {
                margin-top: 32px;
            }
        }
    }

    h2 {
        display: block;
        padding: 12px 20px 11px;
        font-size: 26px;
        font-weight: bold;
        border-left: 8px solid #0B68B3;
        background: #F2F5F7;

        @media (max-width: 768px) {
            padding: 10px 16px;
            font-size: 22px;
            margin-bottom: 16px;
        }

        *+& {
            margin-top: 48px;

            @media (max-width: 768px) {
                margin-top: 32px;
            }
        }
    }

    h3 {
        position: relative;
        display: block;
        padding: 0 0 12px;
        font-size: 22px;
        font-weight: bold;

        @media (max-width: 768px) {
            padding: 0 0 12px;
            font-size: 20px;
            margin-bottom: 16px;
        }

        *+& {
            margin-top: 30px;

            @media (max-width: 768px) {
                margin-top: 32px;
            }
        }

        &:before,
        &:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 4px;
            background: #E6E9EC;
        }

        &:after {
            width: 26.31578%;
            background: #0B68B3;
            @media (max-width: 768px) {
                width: 29%;
            }
        }
    }

    h4 {
        position: relative;
        display: block;
        padding: 0 0 0 28px;
        font-size: 20px;
        font-weight: bold;

        @media (max-width: 768px) {
            padding: 0 0 0 24px;
            font-size: 18px;
        }

        *+& {
            margin-top: 40px;

            @media (max-width: 768px) {
                margin-top: 32px;
            }
        }

        &:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.5em;
            margin-top: -3px;
            width: 12px;
            height: 12px;
            background: #0B68B3;
        }
    }

    h5 {
        font-size: 18px;
        font-weight: bold;

        *+& {
            margin-top: 40px;
        }

        @media (max-width: 768px) {
            margin-top: 32px;
        }
    }

    a[target="_blank"]::after {
        content: "";
        mask-image: url(/idl/assets/icon_blank.svg);
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        width: 14px;
        height: 14px;
        display: inline-block;
        background: #0B68B3;
        margin-left: 4px;
    }

    p {
        letter-spacing: 0.02em;
        line-height: 1.75;

        *+& {
            margin-top: 16px;

            @media (max-width: 768px) {
                margin-top: 8px;
            }
        }

        h2 + &,
        h3 + & {
            margin-top: 20px;
        }

        h4 + &,
        h5 + & {
            margin-top: 10px;
        }
    }

    dl {
        display: flex;
        margin: 1em 0 1em;
        line-height: 1.75;

        dt {
            word-break: auto-phrase;
            font-weight: bold;
        }
    }

    ul,
    ol {
        font-weight: 400;
        margin-top: 1em;
    }

    li {
        position: relative;
    }

    li+li {
        margin-top: 0.5rem;
    }

    ul:not(.none-style) li {
        padding-left: 1.25rem;
    }

    ul:not(.none-style) li::before {
        background-color: #B8C2CC;
        border-radius: 50%;
        content: "";
        height: 0.5rem;
        left: 0;
        position: absolute;
        top: 0.45em;
        width: 0.5rem;
    }

    ol {
        counter-reset: item;
        list-style-type: none;
    }

    ol:not(.none-style) li {
        padding-left: 1.5rem;
    }

    ol:not(.none-style) li::before {
        content: counter(item) "　";
        counter-increment: item;
        font-weight: 700;
        left: 0;
        position: absolute;
        top: 0rem;
    }

    table {
        margin: 1.2em 0 1.2em;
        border: 1px solid #999999;
        @media (max-width: 768px) {
            font-size: 14px;
        }

        th,
        td {
            border: 1px solid #0B68B3;
            padding: 0.5rem;
            line-height: 1.75;
        }

        th {
            word-break: auto-phrase;
            font-weight: bold;
            background: #F2F5F7;
            color: #0B68B3;
        }
    }
}

.l-articleSns {
    ul {
        display: flex;
        justify-content: center;
        margin-top: 48px;
        gap: 0 20px;

        @media (max-width: 768px) {
            gap: 12px;
            margin-top: 32px;
        }
    }
}

.l-articleContentFooter {
    box-sizing: border-box;
    max-width: 1020px;
    margin: 40px auto 64px;
    padding: 48px 0;
    border-radius: 40px;
    background: #fff;

    @media (max-width: 1020px) {
        margin: 40px 16px 64px;
    }

    @media (max-width: 768px) {
        margin: 32px 0px 0;
        padding: 40px 16px 0;
        border-radius: 20px 20px 0 0;
    }

    .articleInner {
        min-width: 600px;
        width: 74.5098%;
        margin: 0 auto;

        @media (max-width: 768px) {
            min-width: 0;
            width: 100%;
            padding-bottom: 80px;
        }
    }
}

.l-articleContentFooter_author {
    .container {
        display: flex;
        gap: 32px;
        margin-top: 16px;
        padding-bottom: 32px;
        border-bottom: 1px solid #CFDCE6;

        @media (max-width: 768px) {
            justify-content: center;
            gap: 16px;
        }
    }

    .thumbnail {
        overflow: hidden;
        width: 120px;
        height: 120px;
        min-width: 120px;
        min-height: 120px;
        border-radius: 9999px;

        img {
            width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            min-width: 80px;
            min-height: 80px;
            width: 80px;
            height: 80px;

        }
    }

    .info {
        .name {
            font-size: 20px;
            font-weight: bold;
            color: #333;

            @media (max-width: 768px) {
                font-size: 18px;
            }
        }

        .role {
            margin-top: 12px;
            font-size: 14px;
            font-weight: normal;
            color: #666;

            @media (max-width: 768px) {
                margin-top: 8px;
            }

        }

        .link {
            margin-top: 0px;

            a,
            a:visited {
                text-decoration: underline;
                font-size: 14px;
                line-height: 29px;
                text-align: left;
                color: #0b68b3;

                @media (max-width: 768px) {
                    margin-top: 4px;
                }

                &:hover {
                    text-decoration: none;
                }
            }
        }
    }

    .skill {
        display: flex;
        gap: 16px;
        margin-top: 12px;
        font-size: 14px;
        @media (max-width: 768px) {
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            display: block;
        }

        dt {
            font-weight: bold;
        }

        dd {
            line-height: 1.75;
            @media (max-width: 768px) {
                margin-top: 8px;
                line-height: 1.625;
            }
        }
    }
}

.l-articleContentFooter_otherArticles {
    *+& {
        margin-top: 40px;

        @media (max-width: 768px) {
            margin-top: 32px;
        }
    }

    .otherArticles_list {
        margin-top: 16px;
    }
}

.l-articleFixedBanner {
    .inner {
        box-sizing: border-box;
        opacity: 1;
        position: fixed;
        bottom: 30px;
        z-index: 500;
        width: 100%;
        text-align: center;
        pointer-events: none;
        transform: translateY(0);
        transition: opacity 0.5s, transform 0.5s, display 0.5s;
        transition-behavior: allow-discrete;
        @media (max-width: 500px) {
            /* padding: 0 16px; */
        }

        .is-view-l-footer & {
            display: none;
            opacity: 0;
            transform: translateY(100%);
        }

        a {
            box-sizing: border-box;
            display: inline-flex;
            gap: 20px;
            padding: 10px;
            margin: 0 12px;
            max-width: 600px;
            width: calc(100% - 24px);
            border-radius: 15px;
            background: #066EB8;
            pointer-events: auto;
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
            color: #fff;

            @media (max-width: 500px) {
                /* padding: calc(8 / 375 * 100vw);
                width: calc(343 / 375 * 100vw);
                gap: calc(10 / 375 * 100vw); */
                padding: 8px;
                margin: 0;
                max-width: 340px;
                width: 100%;
                gap: 10px;
                border-radius: 10px;
            }
        }

        .thumbnail {
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 280px;
            height: 70px;
            padding: 10px 53px;
            background: #fff;
            border-radius: 10px;

            @media (max-width: 500px) {
                /* width: calc(137 / 375 * 100vw);
                min-width: 170px;
                padding: calc(8 / 375 * 100vw) calc(20 / 375 * 100vw); */
                width: 135px;
                flex: 0 0 auto;
                padding: 8px 20px;
                height: 44px;
                border-radius: 8px;
            }

            img {
                width: 100%;
                height: auto;
            }
        }

        .textBlock {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            width: 272px;

            &::after {
                content: '';
                position: absolute;
                right: 0;
                display: inline-block;
                width: 16px;
                height: 16px;
                background: url(/idl/assets/icon_blank.svg) no-repeat left top/100% auto;
                @media (max-width: 500px) {
                    right: 2px;
                    width: 14px;
                    height: 14px;
                }
            }
        }

        .title {
            font-size: 18px;
            line-height: 1;

            @media (max-width: 500px) {
                /* font-size: calc(12 / 375 * 100vw); */
                font-size: 12px;
            }
        }

        .text {
            font-size: 22px;
            font-weight: bold;
            line-height: 1;
            margin-top: 10px;

            @media (max-width: 500px) {
                /* font-size: calc(14 / 375 * 100vw); */
                font-size: 14px;
            }
        }
    }
}

.l-articleBanner {
    margin-bottom: 80px;

    @media (max-width: 768px) {
        padding: 40px 0 0;
        margin-bottom: 0;
        background: #fff;
    }
}


.l-archiveHead {
    @media (max-width: 1036px) {
        padding: 0 16px 0;
    }

    @media (max-width: 768px) {
        text-align: center;
        padding: 24px 16px 0;
    }

    .title {
        display: flex;
        align-items: center;
        gap: 20px;
        max-width: 1020px;
        min-height: 170px;
        margin: 0 auto;
        line-height: 1;
        @media (max-width: 1036px) {
            margin: 0 16px;
        }

        @media (max-width: 768px) {
            position: relative;
            z-index: 1;
            display: inline-block;
            min-height: 0;
            padding-top: 50px;
        }

        .icon {
            content: '';
            display: inline-block;
            width: 40px;
            transform: translateY(-3px);
            @media (max-width: 768px) {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                margin-inline: auto;
            }
            img {
                width: 100%;
                height: auto;
            }
        }

        &:after {
            @media (max-width: 768px) {
                content: '';
                position: absolute;
                z-index: -1;
                left: 50%;
                bottom: -45px;
                display: inline-block;
                margin-inline: auto;
                width: calc(415 / 375 * 100vw);
                height: 100px;
                border-radius: 100%;
                background: #EBF4FB;
                transform: translateX(-50%);
            }
        }

        .text {
            font-weight: bold;
            font-size: 30px;
            letter-spacing: 0.02em;
            color: #333;

            @media (max-width: 768px) {
                font-size: 22px;
            }
        }
    }
}

.l-archiveContent {
    padding-bottom: 120px;

    @media (max-width: 768px) {
        padding-bottom: 32px;
    }
}

.l-archiveContainer {
    padding: 64px 0 0;

    @media (max-width: 768px) {
        /* padding: calc(84 / 375 * 100vw) 0 0; */
        padding: 84px 0 0;
    }
}

.l-sideCategory {
    position: relative;
    padding: 15px 27px 25px;
    border-radius: 15px;
    background: #fff;
    border: 3px solid #e6e9ec;

    @media (max-width: 768px) {
        margin-top: 64px;
    }

    &:before {
        content: '';
        position: absolute;
        top: -3px;
        left: 0;
        right: 0;
        margin: auto;
        display: inline-block;
        width: 120px;
        height: 5px;
        border-radius: 0px 0px 5px 5px;
        background: #01a4f3;
    }

    .title {
        padding: 0 0 12px;
        font-weight: bold;
        font-size: 18px;
        color: #333;
        text-align: center;
        border-bottom: 1px solid #CDD3D9;

    }

    .category_list {
        margin-top: 20px;
    }

    .category_listItem {
        position: relative;
        margin-top: 16px;
        padding-left: 24px;

        &+& {
            margin-top: 12px;
        }

        &:before {
            content: "";
            display: inline-block;
            position: absolute;
            top: 0.6em;
            left: 0;
            height: 3px;
            width: 13px;
            border-radius: 10px;
            background: #CDD3D9;
        }
        &.is-current:before {
            background: #01a4f3;
        }

        a {
            font-size: 16px;
            letter-spacing: 0.02em;
            color: #333;

            &:hover {
                opacity: 0.6;
            }
        }

        span {
            font-weight: bold;
        }
    }
}

.l-sideEstimate {
    margin-top: 32px;
    padding: 20px;
    border-radius: 15px;
    background: #F0F3F5;

    &>.title {
        font-weight: bold;
        font-size: 18px;
        text-align: center;
    }

    .inner {
        margin-top: 12px;
    }
}

.l-pageBannerArea {
    padding: 32px;
    background: #EBF4FB;
    @media (max-width: 768px) {
        padding: 32px 0;
    }
    .inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 1020px;
        margin-inline: auto;

        @media (max-width: 1036px) {
            margin: 0 16px;
        }

        @media (max-width: 576px) {
            display: block;
        }
    }
}

/* pagenation */
.l-pagenation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0 0;
    padding: 0 20px;
    @media (max-width: 768px) {
        margin-top: 37px;
    }

    span {
        display: inline-block;
        font-size: 18px;
        height: 40px;
        line-height: 40px;
        width: 36px;
        font-weight: bold;
        text-align: center;

        @media (max-width: 768px) {
            font-size: 16px;
            ;
        }

        &.current_page {
            border-radius: 8px;
            background: #0B68B3;
            color: #fff;
        }

        a,
        a:visited {
            display: inline-block;
            height: 40px;
            line-height: 40px;
            width: 36px;
            border: 1px solid #0B68B3;
            border-radius: 10px;
            color: #0B68B3;
        }

        a:hover {
            opacity: 0.6;
        }
    }
}

/* Topページレイアウト */
.page-top {
    background: #fff;

}

.top-heroArea {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: calc(320 / 375 * 100vw);
    background: url(/idl/assets/top_bg_heroarea_sm.svg) no-repeat bottom right/100% auto, linear-gradient(to right, #00b2fc 0%, #00329c 100%);

    @media (min-width: 768px) {
        padding: 0;
        background: url(/idl/assets/top_bg_heroarea_lg.svg) no-repeat bottom left calc(50vw - 25px)/auto 320px, -webkit-gradient(linear, left top, right top, from(#00b2fc), to(#00329c));
        background: url(/idl/assets/top_bg_heroarea_lg.svg) no-repeat bottom left calc(50vw - 25px)/auto 320px, -webkit-linear-gradient(left, #00b2fc 0%, #00329c 100%);
        background: url(/idl/assets/top_bg_heroarea_lg.svg) no-repeat bottom left calc(50vw - 25px)/auto 320px, linear-gradient(to right, #00b2fc 0%, #00329c 100%);
    }

    .text {
        position: absolute;
        top: 5.333vw;
        left: 4.5333vw;
        color: #fff;
        line-height: 1.333;
        letter-spacing: 0.05em;

        @media (min-width: 768px) {
            top: 98px;
            left: 12px;
            font-size: 28px;
            letter-spacing: 0.02em;
        }

        strong {
            display: inline-block;
            margin-top: calc(10 / 375 * 100vw);
            font-size: calc(26 / 375 * 100vw);
            font-weight: bold;
            line-height: 1.384;

            @media (min-width: 768px) {
                margin-top: 10px;
                font-size: 36px;
                line-height: 1;
            }
        }

        .lead {
            margin-top: 12px;
            font-size: 20px;
            letter-spacing: 0.02em;
            line-height: 1.6;
            text-align: left;
            color: #fff;


            @media (max-width: 768px) {
                margin-top: calc(4 / 375 * 100vw);
                font-size: calc(16 / 375 * 100vw);
                letter-spacing: 0.03em;
                line-height: 1.75;
                text-align: left;
                color: #fff;
            }
        }
    }
}

.top-heroArea_container {
    @media (min-width: 768px) {
        position: relative;
        width: 1020px;
        height: 320px;
        margin: 0 16px;
        margin-inline: auto;
    }
}

.top-checkedArticle {
    position: relative;
    overflow-X: hidden;
    padding-bottom: 10px;

    @media (max-width: 768px) {
        padding-bottom: 72px;
    }

    &:before {
        content: '';
        z-index: 0;
        position: absolute;
        width: 100%;
        height: calc(100% - 140px);
        border-radius: 10px;
        background: #EBF4FB;

        @media (max-width: 768px) {
            height: calc(100% - 60px);
        }
    }

    &:after {
        content: '';
        z-index: -1;
        position: absolute;
        left: 50%;
        bottom: -40px;
        display: inline-block;
        width: calc(1960 / 1920 * 100vw);
        height: 200px;
        border-radius: 100%;
        background: #EBF4FB;
        transform: translateX(-50%) translateY(-100px);

        @media (max-width: 768px) {
            bottom: 0px;
            width: calc(415 / 375 * 100vw);
            height: 120px;
            transform: translateX(-50%) translateY(0);
        }
    }

    &>.title {
        text-align: center;

        span {
            position: relative;
            display: inline-block;
            margin-top: 50px;
            font-size: 26px;
            font-weight: bold;
            text-align: center;
            padding-bottom: 7px;

            @media (max-width: 768px) {
                margin-top: 32px;
                font-size: 22px;
            }

            &:after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 4px;
                border-radius: 10px;
                background: #01a4f3;
            }
        }
    }
}

.top-checkedArticle_list {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    padding: 0 16px;

    @media (max-width: 768px) {
        display: block;
        margin: 0;
    }
}

.top-checkedArticle_listItem {
    overflow: hidden;
    width: 470px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 15px rgba(11, 104, 179, 0.15);

    @media (max-width: 768px) {
        width: 100%;
        margin-top: 20px;
    }

    &+& {
        @media (max-width: 768px) {
            margin-top: 16px;
        }
    }

    .thumbnail {
        position: relative;

        img {
            width: 100%;
            height: auto;
        }

        .date {
            position: absolute;
            z-index: 1;
            bottom: 0;
            right: 0;
            display: inline-block;
            padding: 12px 16px 8px;
            background: #fff;
            border-radius: 20px 0 0 0;
            font-size: 14px;
            line-height: 1;
            color: #0b68b3;
            @media (max-width: 768px) {
                border-radius: 12px 0 0 0;
                padding: 9px 9px 4px;
                font-size: 12px;
            }

        }
    }

    .textContent {
        padding: 24px 30px;
        text-align: left;
        @media (max-width: 768px) {
            padding: 18px 16px;
        }

        &>.title {
            font-weight: bold;
            font-size: 20px;
            line-height: 1.5;
            color: #333;
            @media (max-width: 768px) {
                font-size: 17px;
            }
        }

        &>.lead {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            margin-top: 8px;
            font-size: 16px;
            letter-spacing: 0.02em;
            line-height: 1.625;
            text-align: left;
            color: #666;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-line-clamp: 3; /* ここを2や3に変更することで、行数を指定 */
            max-height: calc(1.5em * 3);
            @media (max-width: 768px) {
                margin-top: 7px;
                font-size: 14px;
            }
        }
    }
}

.top-contentContainer {
    margin-top: 110px;
    padding-bottom: 120px;
    @media (max-width: 768px) {
        margin-top: 64px;
        padding-bottom: 32px;
    }
}

.top-categoryArticleContainer {
    &+& {
        position: relative;
        margin-top: 64px;
        padding-top: 64px;
        &::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: calc(100% + ((100vw - 100%) / 2));
            height: 3px;
            background: #E6E9EC;
            @media (max-width: 768px) {
                right: auto;
                left: 0;
                width: calc(100% + ((100vw - 100%) / 2));
            }
        }

        @media (max-width: 768px) {
            margin-top: 48px;
            padding-top: 48px;
        }
    }

    .headding {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-bottom: 30px;
        font-weight: bold;
        font-size: 30px;
        letter-spacing: 0.04em;
        color: #333;
        line-height: 1;
        @media (max-width: 768px) {
            gap: 14px;
            font-size: 22px;
            margin-bottom: 22px;
        }

        span {
            content: '';
            display: inline-block;
            width: 40px;
            /*background: url(/idl/assets/icon_fire.svg) no-repeat;*/
            background-size: contain;
            @media (max-width: 768px) {
                width: 35px;
            }
            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

.top-archive_listItem {
    .thumbBlock {
        @media (max-width: 768px) {
            grid-row: 1/2;
        }
    }
    .leadBlock {
        @media (max-width: 768px) {
            grid-row: 2/3;
            grid-column: 1/3;
        }
    }
}

.top-categoryArticleMoreButton {
    margin-top: 30px;
    text-align: right;

    @media (max-width: 768px) {
        margin-top: 24px;
    }

    .button {
        box-sizing: border-box;
        display: inline-flex;
        gap: 15px;
        align-items: center;
        justify-content: center;
        width: 300px;
        height: 56px;
        border-radius: 10px;
        border: 1px solid #0b68b3;
        font-weight: bold;
        font-size: 16px;
        letter-spacing: 0.02em;
        line-height: 56px;
        text-align: center;
        color: #0b68b3;

        @media (max-width: 768px) {
            width: 100%;
        }

        &:after {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-top: 2px solid #0b68b3;
            border-right: 2px solid #0b68b3;
            transform: rotate(45deg);
        }

    }
}


/*utilities*/
/* ------------------------
    utilities Classes
------------------------ */
/* item */
.sp_in {
    display: none;
}

.mb1em {
    margin-bottom: 1em;
}

.mb2em {
    margin-bottom: 2em;
}

.mb3em {
    margin-bottom: 3em;
}

.mt1em {
    margin-top: 1em;
}

.ml1em {
    margin-left: 1em;
}

.fc_yellow {
    color: #faee00;
}

.fc_orange {
    color: #E2720D;
}

.fc_nb {
    color: #003e54;
}

.fw_b {
    font-weight: bold;
}

.ta_c {
    text-align: center;
}

sup {
    font-size: 70%;
}

img.w100p {
    width: 100%;
}

.u-hidden {
    display: none !important;
    visibility: hidden;
}

@media (max-width: 768px) {
    .u-hidden-sp {
        display: none !important;
        visibility: hidden;
    }
}

@media (min-width: 768px) {
    .u-hidden-pc {
        display: none !important;
        visibility: hidden;
    }
}

.u-visuallyhidden {
    position: absolute;
    overflow: hidden;
    border: 0;
    margin: -1px;
    padding: 0;
    height: 1px;
    width: 1px;
    clip: rect(0 0 0 0);
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
    position: static;
    overflow: visible;
    margin: 0;
    width: auto;
    height: auto;
    clip: auto;
}

.u-invisible {
    visibility: hidden;
}

.u-mt-1 {
    margin-top: 1px !important;
}

.u-mb-1 {
    margin-bottom: 1px !important;
}

.u-ml-1 {
    margin-left: 1px !important;
}

.u-mr-1 {
    margin-right: 1px !important;
}

.u-m-1 {
    margin: 1px !important;
}

.u-pt-1 {
    padding-top: 1px !important;
}

.u-pb-1 {
    padding-bottom: 1px !important;
}

.u-pl-1 {
    padding-left: 1px !important;
}

.u-pr-1 {
    padding-right: 1px !important;
}

.u-p-1 {
    padding: 1px !important;
}

.u-mt-2 {
    margin-top: 2px !important;
}

.u-mb-2 {
    margin-bottom: 2px !important;
}

.u-ml-2 {
    margin-left: 2px !important;
}

.u-mr-2 {
    margin-right: 2px !important;
}

.u-m-2 {
    margin: 2px !important;
}

.u-pt-2 {
    padding-top: 2px !important;
}

.u-pb-2 {
    padding-bottom: 2px !important;
}

.u-pl-2 {
    padding-left: 2px !important;
}

.u-pr-2 {
    padding-right: 2px !important;
}

.u-p-2 {
    padding: 2px !important;
}

.u-mt-3 {
    margin-top: 3px !important;
}

.u-mb-3 {
    margin-bottom: 3px !important;
}

.u-ml-3 {
    margin-left: 3px !important;
}

.u-mr-3 {
    margin-right: 3px !important;
}

.u-m-3 {
    margin: 3px !important;
}

.u-pt-3 {
    padding-top: 3px !important;
}

.u-pb-3 {
    padding-bottom: 3px !important;
}

.u-pl-3 {
    padding-left: 3px !important;
}

.u-pr-3 {
    padding-right: 3px !important;
}

.u-p-3 {
    padding: 3px !important;
}

.u-mt-4 {
    margin-top: 4px !important;
}

.u-mb-4 {
    margin-bottom: 4px !important;
}

.u-ml-4 {
    margin-left: 4px !important;
}

.u-mr-4 {
    margin-right: 4px !important;
}

.u-m-4 {
    margin: 4px !important;
}

.u-pt-4 {
    padding-top: 4px !important;
}

.u-pb-4 {
    padding-bottom: 4px !important;
}

.u-pl-4 {
    padding-left: 4px !important;
}

.u-pr-4 {
    padding-right: 4px !important;
}

.u-p-4 {
    padding: 4px !important;
}

.u-mt-5 {
    margin-top: 5px !important;
}

.u-mb-5 {
    margin-bottom: 5px !important;
}

.u-ml-5 {
    margin-left: 5px !important;
}

.u-mr-5 {
    margin-right: 5px !important;
}

.u-m-5 {
    margin: 5px !important;
}

.u-pt-5 {
    padding-top: 5px !important;
}

.u-pb-5 {
    padding-bottom: 5px !important;
}

.u-pl-5 {
    padding-left: 5px !important;
}

.u-pr-5 {
    padding-right: 5px !important;
}

.u-p-5 {
    padding: 5px !important;
}

.u-mt-6 {
    margin-top: 6px !important;
}

.u-mb-6 {
    margin-bottom: 6px !important;
}

.u-ml-6 {
    margin-left: 6px !important;
}

.u-mr-6 {
    margin-right: 6px !important;
}

.u-m-6 {
    margin: 6px !important;
}

.u-pt-6 {
    padding-top: 6px !important;
}

.u-pb-6 {
    padding-bottom: 6px !important;
}

.u-pl-6 {
    padding-left: 6px !important;
}

.u-pr-6 {
    padding-right: 6px !important;
}

.u-p-6 {
    padding: 6px !important;
}

.u-mt-7 {
    margin-top: 7px !important;
}

.u-mb-7 {
    margin-bottom: 7px !important;
}

.u-ml-7 {
    margin-left: 7px !important;
}

.u-mr-7 {
    margin-right: 7px !important;
}

.u-m-7 {
    margin: 7px !important;
}

.u-pt-7 {
    padding-top: 7px !important;
}

.u-pb-7 {
    padding-bottom: 7px !important;
}

.u-pl-7 {
    padding-left: 7px !important;
}

.u-pr-7 {
    padding-right: 7px !important;
}

.u-p-7 {
    padding: 7px !important;
}

.u-mt-8 {
    margin-top: 8px !important;
}

.u-mb-8 {
    margin-bottom: 8px !important;
}

.u-ml-8 {
    margin-left: 8px !important;
}

.u-mr-8 {
    margin-right: 8px !important;
}

.u-m-8 {
    margin: 8px !important;
}

.u-pt-8 {
    padding-top: 8px !important;
}

.u-pb-8 {
    padding-bottom: 8px !important;
}

.u-pl-8 {
    padding-left: 8px !important;
}

.u-pr-8 {
    padding-right: 8px !important;
}

.u-p-8 {
    padding: 8px !important;
}

.u-mt-9 {
    margin-top: 9px !important;
}

.u-mb-9 {
    margin-bottom: 9px !important;
}

.u-ml-9 {
    margin-left: 9px !important;
}

.u-mr-9 {
    margin-right: 9px !important;
}

.u-m-9 {
    margin: 9px !important;
}

.u-pt-9 {
    padding-top: 9px !important;
}

.u-pb-9 {
    padding-bottom: 9px !important;
}

.u-pl-9 {
    padding-left: 9px !important;
}

.u-pr-9 {
    padding-right: 9px !important;
}

.u-p-9 {
    padding: 9px !important;
}

.u-mt-10 {
    margin-top: 10px !important;
}

.u-mb-10 {
    margin-bottom: 10px !important;
}

.u-ml-10 {
    margin-left: 10px !important;
}

.u-mr-10 {
    margin-right: 10px !important;
}

.u-m-10 {
    margin: 10px !important;
}

.u-pt-10 {
    padding-top: 10px !important;
}

.u-pb-10 {
    padding-bottom: 10px !important;
}

.u-pl-10 {
    padding-left: 10px !important;
}

.u-pr-10 {
    padding-right: 10px !important;
}

.u-p-10 {
    padding: 10px !important;
}

.u-mt-20 {
    margin-top: 20px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

.u-ml-20 {
    margin-left: 20px !important;
}

.u-mr-20 {
    margin-right: 20px !important;
}

.u-m-20 {
    margin: 20px !important;
}

.u-pt-20 {
    padding-top: 20px !important;
}

.u-pb-20 {
    padding-bottom: 20px !important;
}

.u-pl-20 {
    padding-left: 20px !important;
}

.u-pr-20 {
    padding-right: 20px !important;
}

.u-p-20 {
    padding: 20px !important;
}

.u-mt-30 {
    margin-top: 30px !important;
}

.u-mb-30 {
    margin-bottom: 30px !important;
}

.u-ml-30 {
    margin-left: 30px !important;
}

.u-mr-30 {
    margin-right: 30px !important;
}

.u-m-30 {
    margin: 30px !important;
}

.u-pt-30 {
    padding-top: 30px !important;
}

.u-pb-30 {
    padding-bottom: 30px !important;
}

.u-pl-30 {
    padding-left: 30px !important;
}

.u-pr-30 {
    padding-right: 30px !important;
}

.u-p-30 {
    padding: 30px !important;
}

.u-mt-40 {
    margin-top: 40px !important;
}

.u-mb-40 {
    margin-bottom: 40px !important;
}

.u-ml-40 {
    margin-left: 40px !important;
}

.u-mr-40 {
    margin-right: 40px !important;
}

.u-m-40 {
    margin: 40px !important;
}

.u-pt-40 {
    padding-top: 40px !important;
}

.u-pb-40 {
    padding-bottom: 40px !important;
}

.u-pl-40 {
    padding-left: 40px !important;
}

.u-pr-40 {
    padding-right: 40px !important;
}

.u-p-40 {
    padding: 40px !important;
}

.u-mt-50 {
    margin-top: 50px !important;
}

.u-mb-50 {
    margin-bottom: 50px !important;
}

.u-ml-50 {
    margin-left: 50px !important;
}

.u-mr-50 {
    margin-right: 50px !important;
}

.u-m-50 {
    margin: 50px !important;
}

.u-pt-50 {
    padding-top: 50px !important;
}

.u-pb-50 {
    padding-bottom: 50px !important;
}

.u-pl-50 {
    padding-left: 50px !important;
}

.u-pr-50 {
    padding-right: 50px !important;
}

.u-p-50 {
    padding: 50px !important;
}

.u-mt-60 {
    margin-top: 60px !important;
}

.u-mb-60 {
    margin-bottom: 60px !important;
}

.u-ml-60 {
    margin-left: 60px !important;
}

.u-mr-60 {
    margin-right: 60px !important;
}

.u-m-60 {
    margin: 60px !important;
}

.u-pt-60 {
    padding-top: 60px !important;
}

.u-pb-60 {
    padding-bottom: 60px !important;
}

.u-pl-60 {
    padding-left: 60px !important;
}

.u-pr-60 {
    padding-right: 60px !important;
}

.u-p-60 {
    padding: 60px !important;
}

.u-mt-70 {
    margin-top: 70px !important;
}

.u-mb-70 {
    margin-bottom: 70px !important;
}

.u-ml-70 {
    margin-left: 70px !important;
}

.u-mr-70 {
    margin-right: 70px !important;
}

.u-m-70 {
    margin: 70px !important;
}

.u-pt-70 {
    padding-top: 70px !important;
}

.u-pb-70 {
    padding-bottom: 70px !important;
}

.u-pl-70 {
    padding-left: 70px !important;
}

.u-pr-70 {
    padding-right: 70px !important;
}

.u-p-70 {
    padding: 70px !important;
}

.u-mt-80 {
    margin-top: 80px !important;
}

.u-mb-80 {
    margin-bottom: 80px !important;
}

.u-ml-80 {
    margin-left: 80px !important;
}

.u-mr-80 {
    margin-right: 80px !important;
}

.u-m-80 {
    margin: 80px !important;
}

.u-pt-80 {
    padding-top: 80px !important;
}

.u-pb-80 {
    padding-bottom: 80px !important;
}

.u-pl-80 {
    padding-left: 80px !important;
}

.u-pr-80 {
    padding-right: 80px !important;
}

.u-p-80 {
    padding: 80px !important;
}

.u-mt-90 {
    margin-top: 90px !important;
}

.u-mb-90 {
    margin-bottom: 90px !important;
}

.u-ml-90 {
    margin-left: 90px !important;
}

.u-mr-90 {
    margin-right: 90px !important;
}

.u-m-90 {
    margin: 90px !important;
}

.u-pt-90 {
    padding-top: 90px !important;
}

.u-pb-90 {
    padding-bottom: 90px !important;
}

.u-pl-90 {
    padding-left: 90px !important;
}

.u-pr-90 {
    padding-right: 90px !important;
}

.u-p-90 {
    padding: 90px !important;
}

.u-mt-100 {
    margin-top: 100px !important;
}

.u-mb-100 {
    margin-bottom: 100px !important;
}

.u-ml-100 {
    margin-left: 100px !important;
}

.u-mr-100 {
    margin-right: 100px !important;
}

.u-m-100 {
    margin: 100px !important;
}

.u-pt-100 {
    padding-top: 100px !important;
}

.u-pb-100 {
    padding-bottom: 100px !important;
}

.u-pl-100 {
    padding-left: 100px !important;
}

.u-pr-100 {
    padding-right: 100px !important;
}

.u-p-100 {
    padding: 100px !important;
}

.u-mt-4 {
    margin-top: 4px !important;
}

.u-mb-4 {
    margin-bottom: 4px !important;
}

.u-ml-4 {
    margin-left: 4px !important;
}

.u-mr-4 {
    margin-right: 4px !important;
}

.u-m-4 {
    margin: 4px !important;
}

.u-pt-4 {
    margin-top: 4px !important;
}

.u-pb-4 {
    margin-bottom: 4px !important;
}

.u-pl-4 {
    margin-left: 4px !important;
}

.u-pr-4 {
    margin-right: 4px !important;
}

.u-p-4 {
    margin: 4px !important;
}

.u-mt-8 {
    margin-top: 8px !important;
}

.u-mb-8 {
    margin-bottom: 8px !important;
}

.u-ml-8 {
    margin-left: 8px !important;
}

.u-mr-8 {
    margin-right: 8px !important;
}

.u-m-8 {
    margin: 8px !important;
}

.u-pt-8 {
    margin-top: 8px !important;
}

.u-pb-8 {
    margin-bottom: 8px !important;
}

.u-pl-8 {
    margin-left: 8px !important;
}

.u-pr-8 {
    margin-right: 8px !important;
}

.u-p-8 {
    margin: 8px !important;
}

.u-mt-12 {
    margin-top: 12px !important;
}

.u-mb-12 {
    margin-bottom: 12px !important;
}

.u-ml-12 {
    margin-left: 12px !important;
}

.u-mr-12 {
    margin-right: 12px !important;
}

.u-m-12 {
    margin: 12px !important;
}

.u-pt-12 {
    margin-top: 12px !important;
}

.u-pb-12 {
    margin-bottom: 12px !important;
}

.u-pl-12 {
    margin-left: 12px !important;
}

.u-pr-12 {
    margin-right: 12px !important;
}

.u-p-12 {
    margin: 12px !important;
}

.u-mt-16 {
    margin-top: 16px !important;
}

.u-mb-16 {
    margin-bottom: 16px !important;
}

.u-ml-16 {
    margin-left: 16px !important;
}

.u-mr-16 {
    margin-right: 16px !important;
}

.u-m-16 {
    margin: 16px !important;
}

.u-pt-16 {
    margin-top: 16px !important;
}

.u-pb-16 {
    margin-bottom: 16px !important;
}

.u-pl-16 {
    margin-left: 16px !important;
}

.u-pr-16 {
    margin-right: 16px !important;
}

.u-p-16 {
    margin: 16px !important;
}

.u-mt-20 {
    margin-top: 20px !important;
}

.u-mb-20 {
    margin-bottom: 20px !important;
}

.u-ml-20 {
    margin-left: 20px !important;
}

.u-mr-20 {
    margin-right: 20px !important;
}

.u-m-20 {
    margin: 20px !important;
}

.u-pt-20 {
    margin-top: 20px !important;
}

.u-pb-20 {
    margin-bottom: 20px !important;
}

.u-pl-20 {
    margin-left: 20px !important;
}

.u-pr-20 {
    margin-right: 20px !important;
}

.u-p-20 {
    margin: 20px !important;
}

.u-mt-24 {
    margin-top: 24px !important;
}

.u-mb-24 {
    margin-bottom: 24px !important;
}

.u-ml-24 {
    margin-left: 24px !important;
}

.u-mr-24 {
    margin-right: 24px !important;
}

.u-m-24 {
    margin: 24px !important;
}

.u-pt-24 {
    margin-top: 24px !important;
}

.u-pb-24 {
    margin-bottom: 24px !important;
}

.u-pl-24 {
    margin-left: 24px !important;
}

.u-pr-24 {
    margin-right: 24px !important;
}

.u-p-24 {
    margin: 24px !important;
}

.u-mt-28 {
    margin-top: 28px !important;
}

.u-mb-28 {
    margin-bottom: 28px !important;
}

.u-ml-28 {
    margin-left: 28px !important;
}

.u-mr-28 {
    margin-right: 28px !important;
}

.u-m-28 {
    margin: 28px !important;
}

.u-pt-28 {
    margin-top: 28px !important;
}

.u-pb-28 {
    margin-bottom: 28px !important;
}

.u-pl-28 {
    margin-left: 28px !important;
}

.u-pr-28 {
    margin-right: 28px !important;
}

.u-p-28 {
    margin: 28px !important;
}

.u-mt-32 {
    margin-top: 32px !important;
}

.u-mb-32 {
    margin-bottom: 32px !important;
}

.u-ml-32 {
    margin-left: 32px !important;
}

.u-mr-32 {
    margin-right: 32px !important;
}

.u-m-32 {
    margin: 32px !important;
}

.u-pt-32 {
    margin-top: 32px !important;
}

.u-pb-32 {
    margin-bottom: 32px !important;
}

.u-pl-32 {
    margin-left: 32px !important;
}

.u-pr-32 {
    margin-right: 32px !important;
}

.u-p-32 {
    margin: 32px !important;
}

.u-mt-36 {
    margin-top: 36px !important;
}

.u-mb-36 {
    margin-bottom: 36px !important;
}

.u-ml-36 {
    margin-left: 36px !important;
}

.u-mr-36 {
    margin-right: 36px !important;
}

.u-m-36 {
    margin: 36px !important;
}

.u-pt-36 {
    margin-top: 36px !important;
}

.u-pb-36 {
    margin-bottom: 36px !important;
}

.u-pl-36 {
    margin-left: 36px !important;
}

.u-pr-36 {
    margin-right: 36px !important;
}

.u-p-36 {
    margin: 36px !important;
}

.u-mt-40 {
    margin-top: 40px !important;
}

.u-mb-40 {
    margin-bottom: 40px !important;
}

.u-ml-40 {
    margin-left: 40px !important;
}

.u-mr-40 {
    margin-right: 40px !important;
}

.u-m-40 {
    margin: 40px !important;
}

.u-pt-40 {
    margin-top: 40px !important;
}

.u-pb-40 {
    margin-bottom: 40px !important;
}

.u-pl-40 {
    margin-left: 40px !important;
}

.u-pr-40 {
    margin-right: 40px !important;
}

.u-p-40 {
    margin: 40px !important;
}

.u-mt-44 {
    margin-top: 44px !important;
}

.u-mb-44 {
    margin-bottom: 44px !important;
}

.u-ml-44 {
    margin-left: 44px !important;
}

.u-mr-44 {
    margin-right: 44px !important;
}

.u-m-44 {
    margin: 44px !important;
}

.u-pt-44 {
    margin-top: 44px !important;
}

.u-pb-44 {
    margin-bottom: 44px !important;
}

.u-pl-44 {
    margin-left: 44px !important;
}

.u-pr-44 {
    margin-right: 44px !important;
}

.u-p-44 {
    margin: 44px !important;
}

.u-mt-48 {
    margin-top: 48px !important;
}

.u-mb-48 {
    margin-bottom: 48px !important;
}

.u-ml-48 {
    margin-left: 48px !important;
}

.u-mr-48 {
    margin-right: 48px !important;
}

.u-m-48 {
    margin: 48px !important;
}

.u-pt-48 {
    margin-top: 48px !important;
}

.u-pb-48 {
    margin-bottom: 48px !important;
}

.u-pl-48 {
    margin-left: 48px !important;
}

.u-pr-48 {
    margin-right: 48px !important;
}

.u-p-48 {
    margin: 48px !important;
}

.u-mt-52 {
    margin-top: 52px !important;
}

.u-mb-52 {
    margin-bottom: 52px !important;
}

.u-ml-52 {
    margin-left: 52px !important;
}

.u-mr-52 {
    margin-right: 52px !important;
}

.u-m-52 {
    margin: 52px !important;
}

.u-pt-52 {
    margin-top: 52px !important;
}

.u-pb-52 {
    margin-bottom: 52px !important;
}

.u-pl-52 {
    margin-left: 52px !important;
}

.u-pr-52 {
    margin-right: 52px !important;
}

.u-p-52 {
    margin: 52px !important;
}

.u-mt-56 {
    margin-top: 56px !important;
}

.u-mb-56 {
    margin-bottom: 56px !important;
}

.u-ml-56 {
    margin-left: 56px !important;
}

.u-mr-56 {
    margin-right: 56px !important;
}

.u-m-56 {
    margin: 56px !important;
}

.u-pt-56 {
    margin-top: 56px !important;
}

.u-pb-56 {
    margin-bottom: 56px !important;
}

.u-pl-56 {
    margin-left: 56px !important;
}

.u-pr-56 {
    margin-right: 56px !important;
}

.u-p-56 {
    margin: 56px !important;
}

.u-mt-60 {
    margin-top: 60px !important;
}

.u-mb-60 {
    margin-bottom: 60px !important;
}

.u-ml-60 {
    margin-left: 60px !important;
}

.u-mr-60 {
    margin-right: 60px !important;
}

.u-m-60 {
    margin: 60px !important;
}

.u-pt-60 {
    margin-top: 60px !important;
}

.u-pb-60 {
    margin-bottom: 60px !important;
}

.u-pl-60 {
    margin-left: 60px !important;
}

.u-pr-60 {
    margin-right: 60px !important;
}

.u-p-60 {
    margin: 60px !important;
}

.u-mt-64 {
    margin-top: 64px !important;
}

.u-mb-64 {
    margin-bottom: 64px !important;
}

.u-ml-64 {
    margin-left: 64px !important;
}

.u-mr-64 {
    margin-right: 64px !important;
}

.u-m-64 {
    margin: 64px !important;
}

.u-pt-64 {
    margin-top: 64px !important;
}

.u-pb-64 {
    margin-bottom: 64px !important;
}

.u-pl-64 {
    margin-left: 64px !important;
}

.u-pr-64 {
    margin-right: 64px !important;
}

.u-p-64 {
    margin: 64px !important;
}

.u-mt-68 {
    margin-top: 68px !important;
}

.u-mb-68 {
    margin-bottom: 68px !important;
}

.u-ml-68 {
    margin-left: 68px !important;
}

.u-mr-68 {
    margin-right: 68px !important;
}

.u-m-68 {
    margin: 68px !important;
}

.u-pt-68 {
    margin-top: 68px !important;
}

.u-pb-68 {
    margin-bottom: 68px !important;
}

.u-pl-68 {
    margin-left: 68px !important;
}

.u-pr-68 {
    margin-right: 68px !important;
}

.u-p-68 {
    margin: 68px !important;
}

.u-mt-72 {
    margin-top: 72px !important;
}

.u-mb-72 {
    margin-bottom: 72px !important;
}

.u-ml-72 {
    margin-left: 72px !important;
}

.u-mr-72 {
    margin-right: 72px !important;
}

.u-m-72 {
    margin: 72px !important;
}

.u-pt-72 {
    margin-top: 72px !important;
}

.u-pb-72 {
    margin-bottom: 72px !important;
}

.u-pl-72 {
    margin-left: 72px !important;
}

.u-pr-72 {
    margin-right: 72px !important;
}

.u-p-72 {
    margin: 72px !important;
}

.u-mt-76 {
    margin-top: 76px !important;
}

.u-mb-76 {
    margin-bottom: 76px !important;
}

.u-ml-76 {
    margin-left: 76px !important;
}

.u-mr-76 {
    margin-right: 76px !important;
}

.u-m-76 {
    margin: 76px !important;
}

.u-pt-76 {
    margin-top: 76px !important;
}

.u-pb-76 {
    margin-bottom: 76px !important;
}

.u-pl-76 {
    margin-left: 76px !important;
}

.u-pr-76 {
    margin-right: 76px !important;
}

.u-p-76 {
    margin: 76px !important;
}

.u-mt-80 {
    margin-top: 80px !important;
}

.u-mb-80 {
    margin-bottom: 80px !important;
}

.u-ml-80 {
    margin-left: 80px !important;
}

.u-mr-80 {
    margin-right: 80px !important;
}

.u-m-80 {
    margin: 80px !important;
}

.u-pt-80 {
    margin-top: 80px !important;
}

.u-pb-80 {
    margin-bottom: 80px !important;
}

.u-pl-80 {
    margin-left: 80px !important;
}

.u-pr-80 {
    margin-right: 80px !important;
}

.u-p-80 {
    margin: 80px !important;
}

.u-textAlign-left {
    text-align: left !important;
}

.u-textAlign-center {
    text-align: center !important;
}

.u-textAlign-right {
    text-align: right !important;
}

.clearfix::after,
.u-clearfix::after {
    content: "";
    display: block;
    clear: both;
}