/* =============================================
ヘッダーの高さに合わせてコンテンツを下げる
============================================= */
.content-wrapper {
    margin-top: calc(77px + 48px);
}
@media screen and (max-width: 576px) {
    .content-wrapper {
        margin-top: calc(57px + 48px);
    }
}

/* =============================================
コンテンツの高さがウィンドウの高さに足りない場合
============================================= */
.container-small {
    min-height: 100svh;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.container-small > .content-wrapper {
    margin-bottom: 60px;
}
footer {
    margin-top: auto;
}

/* =============================================
Outputページ Thankyou, 404など
============================================= */
h1.output-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}
h1.error-title {
    font-size: 12rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #0077C8;
}
p.output-text {
    text-align: center;
    margin-top: 36px;
}
@media screen and (max-width: 576px) {
    h1.output-title {
        text-align: left;
    }
    p.output-text {
        text-align: left;
    }
    p.error-text {
        text-align: center;
    }
}
/* ポリシーページなど固定ページ内のテキストリンク */
.container > div > div > p > a {
    text-decoration: underline;
}

/* =============================================
Footer
============================================= */
footer {
    margin-top: 120px;
}