@charset "UTF-8";

/* -------------------------------
ナビ
------------------------------- */
.ir__localNav {
    & .ir__localNav-active {
        pointer-events: none;
        background-color: #02A971;
        color: #fff;

        & .cmn-btn__text {
            color: #fff;
        }
        & .cmn-btn__arrow {
            background-color: #fff;
        }
        & .cmn-btn__arrow .arrow {
            background-color: #02A971;
        }
    }
    & a[target="_blank"].cmn-btn {
        & .arrow {
            width: 0.5rem;
            height: 0.5rem;
            -webkit-mask-image: url(../images/common/ic_external2.svg);
            mask-image: url(../images/common/ic_external2.svg);
        }
    }
}


/* -------------------------------
リンク
------------------------------- */
.ir__txtLink {
    color: #0600ee;
    text-decoration: underline;
    word-break: break-all;

    &:hover {
        text-decoration: none;
    }
}
a[target="_blank"].ir__txtLink {
    &::after {
        content: "";
        display: inline-block;
        width: 1rem;
        height: 1rem;
        background-color: #0600ee;
        -webkit-mask-image: url("../images/common/ic_external.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-image: url("../images/common/ic_external.svg");
        mask-repeat: no-repeat;
        mask-size: contain;
        margin-left: 0.25rem;
    }
}


/* -------------------------------
IRTOP
------------------------------- */
.irTop__newsSec {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.irTop__newsSec_ttl {
    color: #02A971;
    font-size: 1.3125rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
}
.irTop__newsSec_main {
    margin-top: 4.375rem;
    width: 100%;
}
@media (max-width: 640px) {
    .irTop__newsSec {
        align-items: flex-start;
        flex-direction: column;
    }
    .irTop__newsSec_ttl {
        order: 1;
    }
    .irTop__newsSec_main {
        order: 2;
        margin-top: 2.1875rem;
    }
    .irTop__newsSec_btn {
        order: 3;
        align-self: center;
        margin-top: 3.125rem;
    }
}

.irTop__cardSec {
    margin-top: 10rem;
}
.irTop__cardSec_list {
    display: flex;
    flex-wrap: wrap;
    gap: 6.25rem 5rem;
}
.irTop__cardSec_item {
    width: calc((100% - (5rem * 2)) / 3);
}
.irTop__cardSec_ttl {
    color: #02A971;
    font-size: 1.3125rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.irTop__cardSec_icon {
    background: #EFF9F6;
    border-radius: 0.625rem;
    padding: 1.25rem 1rem;

    & img {
        margin: 0 auto;
    }
}
.irTop__cardSec_linkList {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 1.25rem;
}
.irTop__cardSec_linkList_item {
    & .cmn-btn-secondary {
        justify-content: space-between;
    }
}
@media (max-width: 1080px) {
    .irTop__cardSec_list {
        gap: 6.25rem 2.5rem;
    }
    .irTop__cardSec_item {
        width: calc((100% - 2.5rem) / 2);
    }
}
@media (max-width: 640px) {
    .irTop__cardSec {
        margin-top: 5rem;
    }
    .irTop__cardSec_list {
        gap: 3.125rem;
    }
    .irTop__cardSec_item {
        width: 100%;
    }
    .irTop__cardSec_icon {
        & img {
            width: 6rem;
        }
    }
}

.irTop__btnSec {
    margin-top: 6.25rem;
}
.irTop__btnSec_list {
    display: flex;
    justify-content: center;
    gap: 3.75rem;
}
@media (max-width: 1080px) {
    .irTop__btnSec_list {
        gap: 1rem;
    }
}
@media (max-width: 830px) {
    .irTop__btnSec_list {
        flex-direction: column;
        align-items: center;
        gap: 1.75rem;
    }
}
@media (max-width: 640px) {
    .irTop__btnSec {
        margin-top: 5rem;
    }
}


/* -------------------------------
IRカレンダー
------------------------------- */
.irCalendar_img {
    display: flex;
    gap: 3px;
    margin-bottom: 2.5rem;

    & img {
        width: calc((100% - 3px) / 2);
    }
}
@media (max-width: 640px) {
    .irCalendar_img {
        flex-direction: column;
        gap: 1rem;

        & img {
            width: 100%;
        }
    }
}


/* -------------------------------
よくあるご質問
------------------------------- */
.irFaq_list {
    & + & {
        border-top: 0.0625rem solid #C3DDD4;
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
}
.irFaq_list_q {
    font-weight: 500;
    margin-bottom: 0.625rem;
    padding-left: 1.5rem;
    position: relative;

    &::before {
        content: "Q.";
        color: #02A971;
        position: absolute;
        left: 0;
    }
}
.irFaq_list_a {
    font-weight: 400;
    padding-left: 1.5rem;
    position: relative;

    &::before {
        content: "A.";
        color: #626262;
        font-weight: 500;
        position: absolute;
        left: 0;
    }
}