/* ===================================================
  資料ダウンロードフォーム
=================================================== */


/* ===================================================
  ヘッダー
=================================================== */

.download-header {
    position: static;
    height: 80px;
}

.download-header .maeq-header__inner {
    width: min(var(--contents-max-width), 100%);
    margin: 0 auto;
}

.download-header .header-logo {
    width: 87px;
}

@media screen and (max-width: 767px) {
    .download-header {
        height: 60px;
    }

    .download-header .maeq-header__inner {
        justify-content: flex-start;
    }

    .download-header .header-logo {
        width: 69px;
    }
}


/* ===================================================
  背景・2カラムレイアウト
=================================================== */

.maeq-download {
    position: relative;

    background-color: var(--maeq-bg01);
    background-image: linear-gradient(150deg,
            transparent 0%,
            transparent 49%,
            var(--maeq-bg02) 49%,
            var(--maeq-bg02) 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;

    overflow: hidden;
}

.download-layout {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: flex-start;
    gap: 60px;

    width: min(var(--contents-max-width),
            calc(100% - 40px));

    margin: 0 auto;
    padding: 62px 0 100px;
}

@media screen and (max-width: 1050px) {
    .download-layout {
        gap: 40px;
        width: calc(100% - 48px);
    }
}

@media screen and (max-width: 767px) {
    .download-layout {
        flex-direction: column;
        gap: 40px;

        width: calc(100% - 40px);
        padding: 40px 0 60px;
    }
}

@media screen and (max-width: 390px) {
    .download-layout {
        width: calc(100% - 28px);
    }
}


/* ===================================================
  資料紹介
=================================================== */

.download-intro {
    flex: 0 0 450px;
    width: 450px;
    text-align: center;
}

@media screen and (max-width: 1050px) {
    .download-intro {
        flex-basis: calc(50% - 20px);
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 767px) {
    .download-intro {
        flex: none;
        width: 100%;
    }
}

/* ---------- スマホで非表示 ---------- */
@media screen and (max-width: 767px) {
  .download-intro--sp-hidden {
    display: none;
  }
}

/* --------------------
資料タイトル
-------------------- */

.download-intro__heading h2 {
    margin: 0;

    color: var(--maeq-navy02);
    font-size: 28px;
    font-weight: var(--w-bold);
    line-height: 1.5;
}

.download-intro__heading p {
    margin-top: 12px;

    color: var(--maeq-navy02);
    font-size: 16px;
    font-weight: var(--w-regular);
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .download-intro__heading h2 {
        font-size: 24px;
    }

    .download-intro__heading p {
        font-size: 14px;
    }
}

@media screen and (max-width: 430px) {
    .download-intro__heading h2 {
        font-size: 21px;
    }
}


/* --------------------
資料画像
-------------------- */

.download-intro__image {
    width: 418px;
    margin: 32px auto 0;

    box-shadow: 3px 4px 12px #b0b0b0;
}

.download-intro__image img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1050px) {
    .download-intro__image {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .download-intro__image {
        width: min(418px, 100%);
        margin-top: 24px;
    }
}


/* ===================================================
  この資料でわかること
=================================================== */

.download-details {
    width: 418px;
    margin: 28px auto 0;
    text-align: left;
}

@media screen and (max-width: 1050px) {
    .download-details {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .download-details {
        width: min(418px, 100%);
        margin-top: 24px;
    }
}


/* --------------------
見出し
-------------------- */

.download-details h3 {
    position: relative;

    display: inline-block;
    margin: 0 0 8px;

    color: var(--maeq-navy02);
    font-size: 20px;
    font-weight: var(--w-bold);
    line-height: 1.5;
}

.download-details__deco {
    position: absolute;
    top: -7px;
    right: -20px;

    display: block;
    width: 29px;
    height: 29px;
    z-index: -1;
}

.download-details__deco img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 767px) {
    .download-details h3 {
        font-size: 18px;
    }
}


/* --------------------
資料内容ボックス
-------------------- */

.download-details__box {
    padding: 24px;

    border-radius: 4px;
    background-color: var(--maeq-white);
}

.download-details__box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.download-details__box li {
    position: relative;

    padding-left: 26px;

    color: var(--maeq-navy02);
    font-size: 16px;
    font-weight: var(--w-medium);
    line-height: 1.5;
}

.download-details__box li::before {
    content: "";

    position: absolute;
    top: 5px;
    left: 0;

    width: 16px;
    height: 16px;

    border-radius: 50%;
    background-color: var(--maeq-navy02);
}

.download-details__box li::after {
    content: "";

    position: absolute;
    top: 8px;
    left: 6px;

    width: 4px;
    height: 7px;

    border-right: 2px solid var(--maeq-white);
    border-bottom: 2px solid var(--maeq-white);

    transform: rotate(45deg);
}

.download-details__box li+li {
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .download-details__box {
        padding: 20px;
    }

    .download-details__box li {
        font-size: 14px;
    }
}


/* ===================================================
  フォームカード
=================================================== */

.form-section {
    flex: 0 0 470px;
    width: 470px;

    padding: 32px 40px;

    border-radius: 8px;
    background-color: var(--maeq-white);

    box-sizing: border-box;
}

@media screen and (max-width: 1050px) {
    .form-section {
        flex-basis: calc(50% - 20px);
        width: calc(50% - 20px);

        padding: 32px 28px;
    }
}

@media screen and (max-width: 767px) {
    .form-section {
        flex: none;
        width: 100%;

        padding: 28px 20px 60px;
    }
}

@media screen and (max-width: 390px) {
    .form-section {
        padding-right: 16px;
        padding-left: 16px;
    }
}


/* ===================================================
  ステータスバー
=================================================== */

.contact-step {
    width: 100%;
    margin: 0 auto 24px;

    --contact-step-progress: 0;
}

.contact-step--input {
    --contact-step-progress: 0;
}

.contact-step--confirm {
    --contact-step-progress: 0.5;
}

.contact-step--complete {
    --contact-step-progress: 1;
}

@media screen and (max-width: 767px) {
    .contact-step {
        margin-bottom: 28px;
    }
}


/* --------------------
ステータスバー横線
-------------------- */

.contact-step__list {
    position: relative;

    display: flex;
    justify-content: space-between;

    width: 292px;
    margin: 0 auto;
    padding: 0;

    list-style: none;
}

.contact-step__list::before,
.contact-step__list::after {
    content: "";

    position: absolute;
    top: 13px;
    left: 14px;
    right: 14px;

    height: 4px;

    border-radius: 999px;
}

.contact-step__list::before {
    background-color: #dddddd;
}

.contact-step__list::after {
    background-color: var(--maeq-navy03);

    transform:
        scaleX(var(--contact-step-progress));
    transform-origin: left center;
}

@media screen and (max-width: 1050px) {
    .contact-step__list {
        width: min(292px, 100%);
    }
}

@media screen and (max-width: 390px) {
    .contact-step__list {
        width: 260px;
    }
}


/* --------------------
ステータス
-------------------- */

.contact-step__item {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 28px;

    text-align: center;
}

.contact-step__circle {
    display: block;

    width: 28px;
    height: 28px;
    margin: 0 auto 7px;

    border: 8px solid #dddddd;
    border-radius: 50%;

    background-color: var(--maeq-white);

    box-sizing: border-box;
}

.contact-step__text {
    display: block;

    width: max-content;
    margin: 0;

    color: #dddddd;
    font-size: 12px;
    font-weight: var(--w-bold);
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.contact-step__item.is-current .contact-step__circle,
.contact-step__item.is-done .contact-step__circle {
    border-color: var(--maeq-navy03);
}

.contact-step__item.is-current .contact-step__text,
.contact-step__item.is-done .contact-step__text {
    color: var(--maeq-navy03);
}


/* ===================================================
  フォーム入力項目
=================================================== */

.contact-form {
    margin: 0;
}

.form-group {
    display: block;
    margin: 0 0 24px;
}

@media screen and (max-width: 767px) {
    .form-group {
        margin-bottom: 20px;
    }
}


/* --------------------
項目タイトル
-------------------- */

.form-label,
.form__ttl {
    display: flex;
    align-items: center;
    gap: 8px;

    width: 100%;
    margin: 0 0 8px;
    padding: 0;

    color: var(--maeq-navy02);
    font-size: 16px;
    font-weight: var(--w-bold);
    line-height: 1.5;
    white-space: normal;
}

.form__ttl::before {
    content: none;
}

.form__ttl span {
    color: var(--maeq-navy02);
    font-weight: var(--w-bold);
}


/* --------------------
必須・任意バッジ
-------------------- */

.mandatory,
.optional {
    position: static;

    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

    min-width: 30px;
    margin: 0;
    padding: 3px 6px;

    border: 1px solid var(--maeq-navy02);
    border-radius: 4px;

    color: var(--maeq-navy02);
    font-size: 14px;
    font-weight: var(--w-bold);
    line-height: 1.5;
    vertical-align: middle;

    box-sizing: border-box;
}

.mandatory {
    background-color: var(--maeq-yellow);
}

.optional {
    background-color: var(--maeq-white);
}

.description {
    margin-left: -8px;

    color: var(--maeq-gray02) !important;
    font-size: 12px !important;
    font-weight: var(--w-medium) !important;
}


/* --------------------
テキスト入力欄
-------------------- */

.form-input {
    display: block;

    width: 100%;
    min-height: 44px;
    padding: 8px 16px;

    border: 1px solid var(--maeq-gray02);
    border-radius: 4px;

    background-color: var(--maeq-white);

    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.5;

    box-sizing: border-box;
}

.form-input::placeholder {
    color: var(--maeq-gray03);
}

.form-input:focus {
    outline: 2px solid var(--maeq-navy02);
    box-shadow: 0 0 3px 2px var(--maeq-gray07);
}

@media screen and (max-width: 767px) {
    .form-input {
        font-size: 16px;
    }

    .form-input::placeholder {
        font-size: 13px;
    }
}


/* --------------------
部署名・役職
-------------------- */

.form-row {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;
}

.form-row .form-group {
    min-width: 0;
}

@media screen and (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* ===================================================
  同意欄・確認ボタン
=================================================== */

.privacy-section {
    width: 100%;
    margin-top: 32px;

    text-align: center;
}

@media screen and (max-width: 767px) {
    .privacy-section {
        margin-top: 24px;
    }
}


/* ===================================================
  個人情報同意チェック
=================================================== */

.privacy-checkbox {
    display: flex;
    justify-content: center;

    width: 100%;
}


/* 本来のチェックボックスを非表示 */

.privacy-checkbox>input[type="checkbox"] {
    position: absolute;

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);

    border: 0;

    white-space: nowrap;
}


/* チェックボックスと同意文 */

.privacy-checkbox>label {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--maeq-navy02);
    font-size: 13px;
    font-weight: var(--w-regular);
    line-height: 1.5;
    text-align: left;

    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .privacy-checkbox {
        justify-content: center;
    }

    .privacy-checkbox>label {
        align-items: flex-start;
        gap: 7px;

        width: fit-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
}


/* --------------------
カスタムチェックボックス
-------------------- */

.custom-checkbox {
    position: relative;

    display: inline-block;
    flex-shrink: 0;

    width: 18px;
    height: 18px;
    margin: 0;

    border: 1.7px solid var(--maeq-gray02);
    border-radius: 2px;

    background-color: var(--maeq-white);

    box-sizing: border-box;

    transition:
        background-color 0.01s ease-out,
        border-color 0.01s ease-out;
}

.privacy-checkbox>input[type="checkbox"]:checked+label .custom-checkbox {
    border-color: var(--maeq-navy02);
    background-color: var(--maeq-navy02);
}

.privacy-checkbox>input[type="checkbox"]:checked+label .custom-checkbox::after {
    content: "";

    position: absolute;
    top: 3px;
    left: 5px;

    width: 5px;
    height: 8px;

    border-right: 2px solid var(--maeq-white);
    border-bottom: 2px solid var(--maeq-white);

    transform: rotate(45deg);

    box-sizing: border-box;
}

.privacy-checkbox>label:hover .custom-checkbox {
    border-color: var(--maeq-navy02);
}

.privacy-checkbox>input[type="checkbox"]:focus-visible+label .custom-checkbox {
    outline: 2px solid rgba(23, 41, 79, 0.35);
    outline-offset: 2px;
}

@media screen and (max-width: 767px) {
    .custom-checkbox {
        margin-top: 2px;
    }
}


/* --------------------
同意文
-------------------- */

.privacy-checkbox__text {
    display: inline;

    color: var(--maeq-navy02);
    font-size: 14px;
    font-weight: var(--w-regular);
    line-height: 1.5;

    word-break: normal;
    overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
    .privacy-checkbox__text {
        flex: 0 1 auto;
        min-width: 0;

        font-size: 13px;
        line-height: 1.7;
        text-align: left;
    }
}


/* --------------------
同意文リンク
-------------------- */

.privacy-checkbox__text .maeq-link {
    display: inline;

    white-space: nowrap;

    transition: var(--tran-opacity-a);
}

.privacy-checkbox__text .maeq-link:hover {
    text-decoration: underline;
    opacity: 0.7;
}


/* ===================================================
  確認ボタン
=================================================== */

.submit-btn {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    width: min(390px, 100%);
    min-height: 50px;

    margin: 10px auto 0;
    padding: 10px 55px;

    border: none;
    border-radius: 100px;

    color: var(--maeq-white);
    background-color: var(--maeq-navy02);

    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: var(--w-semibold);
    line-height: 1.5;
    text-align: center;

    box-shadow:
        0 2px 4px rgba(23, 41, 79, 0.35);

    cursor: pointer;

    transition:
        opacity 0.15s ease-out,
        background-color 0.15s ease-out,
        box-shadow 0.15s ease-out;
}


/* 右側の矢印 */

.submit-btn::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 25px;

    width: 10px;
    height: 10px;

    border-top: 2px solid var(--maeq-white);
    border-right: 2px solid var(--maeq-white);

    transform:
        translateY(-50%) rotate(45deg);
}


/* 活性時 */

.submit-btn:not(:disabled):hover {
    opacity: 0.7;
}

.submit-btn:not(:disabled):active {
    opacity: 1;
    box-shadow: none;
}


/* 非活性状態 */

.submit-btn:disabled,
.submit-btn.disabled {
    background-color: var(--maeq-gray04);

    box-shadow: none;
    opacity: 1;

    cursor: not-allowed;
}

.submit-btn:disabled:hover,
.submit-btn.disabled:hover {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .submit-btn {
        width: 100%;
        max-width: 390px;
        min-height: 50px;

        margin: 18px auto 0;
        padding: 10px 45px 10px 30px;

        font-size: 16px;
    }

    .submit-btn::after {
        right: 22px;

        width: 9px;
        height: 9px;
    }
}


/* ===================================================
  SSLについての注記
=================================================== */

.privacy-ssl-note {
    width: min(390px, 100%);
    margin: 8px auto 0;

    font-size: 12px;
    font-weight: var(--w-regular);
    line-height: 1.5;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .privacy-ssl-note {
        width: 100%;
        max-width: 390px;

        margin: 10px auto 0;

        font-size: 11px;
        line-height: 1.6;
        text-align: left;
    }
}

/*---------------------------------------------
確認画面
---------------------------------------------*/
.read {
    margin-bottom: 34px;
}

.read p {
    font-size: 16px;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .read p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/*---------------------------------------------
確認画面：ダウンロード・戻るボタン
---------------------------------------------*/

.btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    width: 100%;
    margin: 16px 0;
}

.btn-contact p {
    width: 100%;
    margin: 0;
}


/*---------------------------------------------
ダウンロードボタン
---------------------------------------------*/

.btn-contact__btn {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    width: min(390px, 100%);
    min-height: 50px;
    margin: 0 auto;
    padding: 10px 55px;

    border: none;
    border-radius: 100px;

    color: var(--maeq-white);
    background-color: var(--maeq-navy02);

    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: var(--w-bold);
    line-height: 1.5;
    text-align: center;

    box-shadow: 0 2px 4px rgba(23, 41, 79, 0.35);

    cursor: pointer;

    transition:
        opacity 0.15s ease-out,
        background-color 0.15s ease-out,
        box-shadow 0.15s ease-out;
}


/* 右側の矢印 */

.btn-contact__btn::after {
    content: "";

    position: absolute;
    top: 50%;
    right: 25px;

    width: 10px;
    height: 10px;

    border-top: 2px solid var(--maeq-white);
    border-right: 2px solid var(--maeq-white);

    transform: translateY(-50%) rotate(45deg);
}


/* 活性時：ホバー */

.btn-contact__btn:not(:disabled):not(.disabled):hover {
    opacity: 0.7;
}


/* 活性時：押したとき */

.btn-contact__btn:not(:disabled):not(.disabled):active {
    opacity: 1;
    box-shadow: none;
}


/*---------------------------------------------
非活性状態
---------------------------------------------*/

.btn-contact__btn:disabled,
.btn-contact__btn.disabled {
    color: var(--maeq-white);
    background-color: var(--maeq-gray04);

    box-shadow: none;
    opacity: 1;

    cursor: not-allowed;
    transition: none;
}

.btn-contact__btn:disabled:hover,
.btn-contact__btn.disabled:hover {
    opacity: 1;
}


/*---------------------------------------------
戻るリンク
---------------------------------------------*/

.btn-contact__back {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    width: fit-content;
    margin: 0 auto;

    color: var(--maeq-gray02);
    font-size: 16px;
    font-weight: var(--w-semibold);
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 2px;

    transition: var(--tran-opacity-a);
}


/* 左向き矢印 */

.btn-contact__back::before {
    content: "";

    width: 8px;
    height: 8px;

    border-bottom: 2px solid var(--maeq-gray02);
    border-left: 2px solid var(--maeq-gray02);

    transform: rotate(45deg);
}

.btn-contact__back:hover {
    text-decoration: underline;
    opacity: 0.7;
}

.btn-contact__back:active {
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .btn-contact {
        gap: 12px;
        margin: 16px 0;
    }

    .btn-contact__btn {
        width: min(390px, 100%);
        min-height: 50px;
        padding: 10px 45px 10px 30px;
        font-size: 16px;
    }

    .btn-contact__btn::after {
        right: 22px;
        width: 9px;
        height: 9px;
    }

    .btn-contact__back {
        font-size: 14px;
    }
}

/* ===================================================
  PowerCMS自動生成ボタン
=================================================== */

.contact-form-submit {
    display: none;
}

/* ===================================================
  資料ダウンロード：サンクスページ
=================================================== */

.download-thanks {
    min-height: 603px;
}

@media screen and (max-width: 767px) {
    .download-thanks {
        min-height: auto;
    }
}


/* ===================================================
  サンクスページ本文
=================================================== */

.download-thanks__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    width: 100%;
}

@media screen and (max-width: 767px) {
    .download-thanks__body {
        gap: 28px;
    }
}


/* --------------------
メッセージ
-------------------- */

.download-thanks__message {
    width: 100%;
    text-align: center;
}

.download-thanks__title {
    margin: 0;

    color: var(--maeq-navy02);
    font-size: 24px;
    font-weight: var(--w-bold);
    line-height: 1.5;
}

.download-thanks__text {
    margin-top: 16px;

    color: var(--maeq-black02);
    font-size: 16px;
    font-weight: var(--w-regular);
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .download-thanks__title {
        font-size: 21px;
    }

    .download-thanks__text {
        font-size: 14px;
    }
}


/* ===================================================
  サンクスページボタンエリア
=================================================== */

.download-thanks__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    width: 100%;
}

@media screen and (max-width: 767px) {
    .download-thanks__actions {
        gap: 24px;
    }
}


/* ===================================================
  PDFダウンロードボタン
=================================================== */

.download-thanks__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    width: min(390px, 100%);
    min-height: 56px;
    padding: 12px 24px;

    border: 2px solid var(--maeq-navy02);
    border-radius: 100px;

    color: var(--maeq-navy02);
    background-color: var(--maeq-yellow);

    font-size: 18px;
    font-weight: var(--w-bold);
    line-height: 1.5;
    text-align: center;
    text-decoration: none;

    box-shadow:
        0 2px 4px rgba(23, 41, 79, 0.35);

    transition: var(--tran-opacity-a);

    box-sizing: border-box;
}

.download-thanks__button-text {
  font-weight: var(--w-semibold);
}


/* ホバー時 */

.download-thanks__button:hover {
    opacity: 0.7;
}


/* クリック時 */

.download-thanks__button:active {
    opacity: 1;
    box-shadow: none;
}

@media screen and (max-width: 767px) {
    .download-thanks__button {
        min-height: 54px;
        padding: 10px 18px;

        font-size: 15px;
    }
}


/* ===================================================
  ダウンロードアイコン
=================================================== */

.download-icon {
    position: relative;

    display: block;
    flex: 0 0 18px;

    width: 18px;
    height: 22px;
}


/* --------------------
塗りつぶしの下向き矢印
-------------------- */

.download-icon__arrow {
    position: absolute;
    top: 0;
    left: 5px;

    width: 8px;
    height: 10px;

    border-radius: 2px 2px 0 0;
    background-color: var(--maeq-navy02);

    transition:
        transform 0.05s ease-out;
}


/* 矢印の三角部分 */

.download-icon__arrow::after {
    content: "";

    position: absolute;
    bottom: -8px;
    left: -4px;

    width: 0;
    height: 0;

    border-top:
        9px solid var(--maeq-navy02);
    border-right:
        8px solid transparent;
    border-left:
        8px solid transparent;
}


/* --------------------
矢印下の線
-------------------- */

.download-icon__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 3px;

    border-radius: 999px;
    background-color: var(--maeq-navy02);
}


/* --------------------
ホバー時
矢印の先端を下線へ付ける
-------------------- */

.download-thanks__button:hover
.download-icon__arrow {
    transform: translateY(2px);
}


/* クリック時 */

.download-thanks__button:active
.download-icon__arrow {
    transform: translateY(2px);
}


/* ===================================================
  トップへ戻るリンク
=================================================== */

.download-thanks__back {
    color: var(--maeq-navy02);
    font-size: 14px;
    font-weight: var(--w-regular);
    line-height: 1.5;

    text-decoration: underline;
    text-underline-offset: 2px;

    transition: var(--tran-opacity-a);
}

.download-thanks__back:hover {
    text-decoration: underline;
    opacity: 0.7;
}

.download-thanks__back:active {
    opacity: 1;
}


/* ===================================================
  動きを減らす設定を使用している場合
=================================================== */

@media (prefers-reduced-motion: reduce) {
    .download-icon__arrow {
        transition: none;
    }

    .download-thanks__button:hover
    .download-icon__arrow,
    .download-thanks__button:active
    .download-icon__arrow {
        transform: none;
    }
}