@charset "UTF-8";
/* リセットcss */
@import url(https://unpkg.com/ress/dist/ress.min.css);
/* Google Fonts */
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap);

[hidden] {
    display: none !important;
}

:root {
    --unnamed-color-313131: #313131;
    --unnamed-color-c4a436: #C4A436;
    --unnamed-color-fffbf4: #FFFBF4;
    --unnamed-color-084b72: #084B72;
    --fs-base: clamp(16px, 1.5vw, 19px);
    --fs-heading-lg: clamp(28px, 3vw, 40px);
    --fs-heading-md: clamp(20px, 2vw, 24px);
    --fs-label: clamp(18px, 2vw, 24px);
    --fs-card: clamp(18px, 2vw, 24px);
    --fs-note: clamp(15px, 2vw, 18px);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--unnamed-color-fffbf4);
    color: var(--unnamed-color-313131);
    line-height: 1.7;
    font-size: var(--fs-base);
}

.thanks {
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

.thanks__inner {
    width: 100%;
    max-width: 1110px;
    padding: 30px 0 100px 0;
}

.thanks__section {
    margin-bottom: 56px;
    text-align: center;
}

.thanks__section h2 {
    font-family: "Zen Old Mincho", serif;
    font-size: var(--fs-heading-lg);
    font-weight: 600;
    color: var(--unnamed-color-084b72);
    margin-bottom: 24px;
}

.thanks__section p {
    font-size: var(--fs-label);
}

.thanks__notes {
    margin-top: 56px;
    text-align: center;
}

.thanks__notes h3 {
    font-family: "Zen Old Mincho", serif;
    font-size: var(--fs-heading-lg);
    font-weight: 600;
    color: var(--unnamed-color-084b72);
    margin-bottom: 16px;
}

.thanks__notes p {
    margin: 0;
    font-size: var(--fs-label);
}

a {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .thanks__section p {
        font-size: var(--fs-note);
    }
    .thanks__notes p {
        font-size: var(--fs-note);
    }
}