@charset "UTF-8";

/* rec_common.cssのhtml,body{height:100%}・#wrapper{min-height:100%}により
   コンテンツ量が少ないこのページだけフッター上下に余白ができるため、このページに限り無効化 */
html:has(.faThanks),
body:has(.faThanks) {
    height: auto;
}

body:has(.faThanks) #wrapper {
    min-height: 0;
}

.faThanks {
    color: #222;
}

.faThanks_complete {
    padding: 64px 24px;
    background: #f5f5f5;
    text-align: center;
}

.faThanks_complete--contact {
    background: #fff;
}

.faThanks_title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
}

.faThanks_message {
    max-width: 500px;
    margin: 24px auto 0;
    padding: 28px 24px;
    background: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.faThanks_downloadLink {
    display: inline-block;
    margin-top: 22px;
    color: #1b7fbe;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.faThanks_downloadLink:hover {
    text-decoration: underline;
}

.faThanks_text {
    max-width: 500px;
    margin: 24px auto 0;
    font-size: 16px;
    line-height: 1.8;
}

.faThanks_note {
    max-width: 500px;
    margin: 16px auto 0;
    font-size: 15px;
    line-height: 1.8;
}

.faThanks_link {
    display: inline-block;
    margin-top: 4px;
    color: #1b7fbe;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.faThanks_link:hover {
    text-decoration: underline;
}

.faThanks_box {
    max-width: 500px;
    margin: 24px auto 0;
    padding: 24px 32px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: left;
}

.faThanks_boxTitle {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.faThanks_boxList {
    margin: 12px 0 0;
}

.faThanks_boxList div {
    display: flex;
    gap: 8px;
}

.faThanks_boxList div + div {
    margin-top: 4px;
}

.faThanks_boxList dt {
    flex-shrink: 0;
    margin: 0;
    font-weight: 700;
}

.faThanks_boxList dt::after {
    content: "：";
}

.faThanks_boxList dd {
    margin: 0;
}

/* 今後使用予定のため非表示（リンク先確定まで） */
.faThanks_services {
    display: none;
}

.faThanks_servicesTitle {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.faThanks_cardList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 72px 24px 0;
    list-style: none;
}

@media screen and (min-width: 1000px) {
    .faThanks_cardList {
        grid-template-columns: repeat(2, 332px);
        column-gap: 30px;
        justify-content: center;
    }
}

.faThanks_cardLink {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 16px 32px;
    background: #e5eef6;
    color: #222;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.faThanks_cardLink::before {
    display: grid;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    border-radius: 50%;
    background: #2f83c7;
    color: #fff;
    content: '›';
    font-size: 20px;
    font-weight: 400;
    line-height: 16px;
    place-items: center;
}

@media screen and (max-width: 999px) {
    .faThanks_complete {
        padding: 48px 16px;
    }

    .faThanks_title {
        font-size: 22px;
    }

    .faThanks_message {
        padding: 24px 16px;
        font-size: 15px;
    }

    .faThanks_text {
        font-size: 15px;
    }

    .faThanks_cardList {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 56px 16px 0;
    }

    .faThanks_cardLink {
        min-height: 64px;
        padding: 14px 20px;
        font-size: 16px;
    }

    .faThanks_box {
        padding: 20px 24px;
    }
}
