@charset 'utf-8';

/*----------------------------------------
    このCSSファイルには「機器をご利用の皆さまへ」で掲載しているページ（request_○○.html）で使用されるCSSを記述する
----------------------------------------*/

/* ▼ スマホ（大） / 小型タブレット向け (540px以上） */
@media (min-width: 540px) {
    .main {
        margin-top: 135px;
    }
}

/* ▼ タブレット / 小型ノートPC向け （768px以上） */
@media (min-width: 768px) {
    .main {
        margin-top: 155px;
    }
}

/* ▼ デスクトップPC向け (992px以上) */
@media (min-width: 992px) {
    .main {
        margin-top: 175px;
        margin-bottom: 120px;
    }
}

/* ▼ フルサイズ用（1140px以上） */
@media (min-width: 1140px) {
    .main {
        margin-top: 140px;
    }
}


/*========= section-1 =========*/

.section-1 .section-inner {
    font-size: 1.5rem;
    line-height: 1.7;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.button {
    width: 220px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fefdfc;
    background-color: #7aacc7;
    border: 3px solid #7aacc7;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button span {
    font-weight: 600;
}

.note-icon {
    width: 65px;
    padding-bottom: 10px;
}

.button:hover {
    color: #7aacc7;
    background-color: #fefdfc;
}

/* 強調させたい文字の装飾 */
.red {
    font-weight: 700;
    color: #e22f4d;
}

/* リンク用下線 */
.decoration-link {
    font-weight: 700;
    color: #5aa5bd;
    border-bottom: 2px dotted #5aa5bd;
    padding-bottom: 1.5px;
    transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.decoration-link:hover {
    color: #669e31;
    border-bottom: 2px dotted #669e31;
}


/* ▼ スマホ（大） / 小型タブレット向け (540px以上） */
@media (min-width: 540px) {
    .section-1 .section-inner {
        padding-left: 12px;
        padding-right: 12px;
        margin-top: 25px;
    }
}

/* ▼ タブレット / 小型ノートPC向け （768px以上） */
@media (min-width: 768px) {
    .section-1 .section-inner {
        font-size: 1.6rem;
    }

    .button-wrap {
        margin-top: 50px;
    }
}

/* ▼ デスクトップPC向け (992px以上) */
@media (min-width: 992px) {
    .section-1 .section-inner {
        line-height: 1.8;
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* 確認OK（2025.8.9_12:08） */
