@charset "utf-8";

/* 操作のポイント */
.--pointText {
    border: 2px solid #cc0000;
    padding: 8px;
}

/* ptページ 左:画像 右:テキスト */
.--col-L_Img-R_Text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
@media (min-width: 740px) {
    .--col-L_Img-R_Text {
        flex-wrap: nowrap;
        flex-direction: row;
    }
    .--col-L_Img-R_Text > div.responsivegrid:has(.img > .imgParts img) {
        margin-right: 20px;
        width: 60%;
    }
}

/* table (テキスト) */
.--textTbl-td table tr td:first-of-type {
    width: 0;
    white-space: nowrap;
}
.--textTbl-td table tr td {
    vertical-align: top;
}

/* 上余白 */
.--mgt-top-20{
    margin-top: 20px;
}

/* アンカーリンク、整列 */
.--ancLink-wrap .textlink .linkList {
    display: flex;
    flex-wrap: wrap;
}
.--ancLink-wrap .textlink .linkList li:not(:last-of-type) {
    margin-right: 30px;
}
@media (max-width: 739px) {
    .--ancLink-wrap .textlink .linkList li:not(:last-of-type) {
        margin: 0 7vw 10px 0;
    }
}

/* リンクボタン */
.linkbtn .--linkBtn-bg-w .btn {
    background-color: #ffffff;
}

/* 比率の異なるカラム */
@media (min-width: 740px) {
    .--col-raito2_1 .colWrap,
    .--col-raito1_2 .colWrap{
        justify-content: space-between;
    }
}

    /* 2カラム 比率 左2 : 右1 */
    @media (min-width: 740px) {
        .--col-raito2_1 .colWrap .col:nth-child(1) {
            width: 66%;
        }
        .--col-raito2_1 .colWrap .col:nth-child(2) {
            width: calc(34% - 20px);
            margin-left: 0;
        }
    }
    @media (max-width: 739px) {
        .column .colWrap .col:not(:first-of-type) {
            margin-top: 24px;
        }
    }

    /* 2カラム 比率 左1 : 右2 */
    @media (min-width: 740px) {
        .--col-raito1_2 .colWrap .col:nth-child(1) {
            width: calc(34% - 20px);
        }
        .--col-raito1_2 .colWrap .col:nth-child(2) {
            width: 66%;
            margin-left: 0;
        }
    }

/* SP 3カラム 余りの部分のマージン除去 */
@media (max-width: 739px) {
    .column .--col-sp-unused-delMgt .col:not(:first-of-type):has(.--col-sp-unused-delMgt-target) {
        margin-top: 0;
    }
}

/* リンクボタン (大) 整列 */
.--linkBtn-flexWrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
@media (min-width: 740px) {
    .--linkBtn-flexWrap > .linkbtn.btnBox.btnBig {
        width: unset;
    }
    .--linkBtn-flexWrap > .linkbtn.btnBox.btnBig:not(:first-of-type) {
        margin-left: 20px;
    }
}

/* 例 タブ切り替え 画像 */
.--img-size-example {
    text-align: center;
}
.--img-size-example img {
    width: 91%;
    box-shadow: 0px 0px 5px #ccc;
}
@media (min-width: 740px) {
    .--img-size-example img {
        width: 78%;
    }
}

/* 画像サイズ調整 */
.--img-size-sp-50 img {
    width: 50%;
}
.--img-size-sp-60 img {
    width: 60%;
}
.--img-size-sp-70 img {
    width: 70%;
}
.--img-size-sp-80 img {
    width: 80%;
}
.--img-size-sp-90 img {
    width: 90%;
}
@media (min-width: 740px) {
    .--img-size-pc-50 img {
        width: 50%;
    }
    .--img-size-pc-60 img {
        width: 60%;
    }
    .--img-size-pc-70 img {
        width: 70%;
    }
    .--img-size-pc-80 img {
        width: 80%;
    }
    .--img-size-pc-90 img {
        width: 90%;
    }
}