@charset "UTF-8";

/*** らくらくカスタムパーツ ***/

/* 確認事項タイトル */
.support-wiring-title-lv2 {
    display: flex;
    align-items: stretch;
    gap: 20px;
    max-width: 950px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}
.support-wiring-title-lv2 span {
    display: flex;
    align-items: flex-start;
}
.support-wiring-title-lv2 span + span {
    align-items: center;
}
@media screen and (max-width: 900px) {
    .support-wiring-title-lv2 {
        max-width: 100%;
        gap: 10px;
    }
    .support-wiring-title-lv2 img {
        width: 90px;
    }
}

/* 確認事項2 */
.support-wiring-checkpoint {
    display: flex;
    gap: 10px;
    max-width: 950px;
    margin: 40px auto 0;
}
.support-wiring-checkpoint > li {
    width: 33.3%;
    background-color: white;
    padding: 20px;
}

.support-wiring-checkpoint-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    margin-bottom: 20px;
}
.support-wiring-checkpoint-img > img {
    max-width: 280px;
}
.support-wiring-checkpoint_txt {
    text-align: justify;
}
@media screen and (max-width: 900px) {
    .support-wiring-checkpoint {
        flex-direction: column;
        gap: 20px;
    }
    .support-wiring-checkpoint > li {
        width: auto;
    }
    .support-wiring-checkpoint-img {
        height: auto;
    }
    .support-wiring-checkpoint-img > img {
        max-height: 200px;
    }
}

/* ホバー */
@media (hover: hover) {
    .support-link-text:hover,
    .support-button-type01 > a:hover,
    .support-input-type01 .support-input-item:hover,
    .support-input-type02 .support-input-item:hover,
    .support-input-type01 .support-input-item:hover::before,
    .support-input-checkbox input:hover::before,
    .support-accordion-trigger:hover {
        opacity: 0.6;
    }
}

/* 10gボタン */
.support-button-type-radio a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 40px 60px;
    box-sizing: border-box;
    color: #333;
    font-weight: bold;
    opacity: 1;
    background-color: white;
    outline: 8px solid #e0e0e0;
    outline-offset: -8px;
    transition: 0.4s;
    cursor: pointer;
}
.support-button-type-radio a:hover {
    opacity: 0.6;
}
.support-button-type-radio a:after {
    position: absolute;
    right: 20px;
    content: url(/internet/set/data/support/common-ms/img/shared/button-arrow.svg);
    display: block;
    line-height: 1;
    width: 28px;
    height: 28px;
    filter: brightness(400%);
}
@media screen and (max-width: 900px) {
    .support-button-type-radio a {
        padding: 20px 46px;
        min-height: 100px;
        outline-width: 4px;
        outline-offset: -4px;
    }
    .support-button-type-radio a:after {
        right: 16px;
        width: 20px;
        height: 20px;
    }
}

/* 機器選択 */
.wiring-model-item {
    flex-direction: column;
}
.wiring-model-item div {
    width: 100%;
}
.wiring-model-item img {
    height: 220px;
}
.wiring-model-item .wiring-model-item-title {
    width: 100%;
    margin-top: 10px;
    white-space: pre;
    text-align: left;
}
.wiring-model-item .wiring-model-item-text {
    width: 100%;
    text-align: left;
    font-weight: normal;
}
.wiring-model-pre-item {
    font-weight: normal !important;
}
.wiring-model-pre-item span {
    font-weight: bold !important;
}
@media screen and (max-width: 900px) {
    .support-input-type01 .wiring-model-item {
        flex-direction: row;
        padding: 15px 30px 15px 10px;
    }
    .wiring-model-item div {
        width: 100%;
    }
    .wiring-model-item img {
        height: 100px;
    }
    .wiring-model-item .wiring-model-item-title {
        margin-top: 0;
    }
    .wiring-model-pre-item {
        max-height: 100px;
    }
}

/* 分岐ページ */

.custom-listitem01 {
    counter-reset: connectNumber;
}
.custom-listitem01 > li {
    counter-increment: connectNumber;
    list-style: none;
}
.custom-listitem01 > li::before {
    display: block;
    width: 22px;
    height: 22px;
    content: counter(connectNumber);
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #ff3333;
}
.cc-close {
    pointer-events: none;
    opacity: 0.6;
}
.chat-closed-text {
    display: none;
}
.cc-close + .chat-closed-text {
    display: block;
    margin-top: 10px;
}
.yes-content,
.no-content {
    display: none;
}
.autonumber {
    counter-reset: autoNumber;
}
.autonumber > li > section > .autonumber-items {
    counter-increment: autoNumber;
}
.autonumber > li > section > .autonumber-items::after {
    content: " " counter(autoNumber, decimal-leading-zero);
}
