* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 0.67vw;
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-size: 1.6rem;
    color: #290d11;
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f4f0f1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    flex: 1;
    padding-top: 12rem;
}

#main-contents {
    scroll-margin-top: 12rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.container {
    width: 120rem;
    margin: auto;
}

.sp-only {
    display: none;
}

.underline {
    text-decoration: underline;
}

a {
    transition: 0.3s;
}

a:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.skip-link {
    position: absolute;
    top: -4rem;
    left: 0;
    background: #000;
    color: #fff;
    padding: 0.8rem;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #b5152e;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 12rem;
}

header .logo {
    width: 23.7rem;
    margin-right: auto;
    margin-left: 6.4rem;
}

header .app-btn {
    background-color: #b5152e;
    color: #fff;
    font-weight: bold;
    font-size: 2.5rem;
    width: 25.3rem;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.navi-btn-wrap {
    display: none;
}

footer {
    text-align: center;
    background-color: #fff;
}

.home footer {
    background-color: #f4f0f1;
}

footer h2 {
    background-color: #fff;
    height: 7.4rem;
    padding: 0 2.4rem;
    display: flex;
    align-items: center;
    font-size: 2.7rem;
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
}

.footer-contents {
    padding: 6.4rem 0 7.2rem;
}

.home .footer-contents {
    padding: 9.6rem 0 7.2rem;
}

.footer-contents .contact {
    display: inline-block;
}

footer .contact .contact-name {
    font-size: 3.6rem;
    line-height: 5.4rem;
    font-weight: bold;
    margin-bottom: 3.2rem;
}

.footer-contents .contact table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    font-size: 1.8rem;
}

.footer-contents .contact table th {
    font-weight: 600;
    border-bottom: 1px solid #ced1ce;
    padding: 2.4rem 0;
    width: 18.8rem;
    vertical-align: top;
}

.footer-contents .contact table th::before {
    content: "■";
    margin-right: 0.8rem;
}

.footer-contents .contact table td {
    border-bottom: 1px solid #ced1ce;
    padding: 2.4rem 0;
    font-weight: 600;
}

.footer-contents .contact table td a:not(.tel) {
    text-decoration: none;
    color: #290d11;
}

.footer-contents .contact table tr:last-child th,
.footer-contents .contact table tr:last-child td {
    border-bottom: none;
}

footer .contact .tel {
    color: #b5152e;
    text-decoration: none;
    font-size: 8.7rem;
    line-height: 8rem;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0.8rem;
    display: inline-block;
}

footer .contact .time {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

footer .contact .time dt {
    background-color: #290d11;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 900;
    width: 10.4rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2.6rem;
    padding-bottom: 0.1rem;
    letter-spacing: 0.1em;
    margin-top: 0.1rem;
}

footer .contact .time dd {
    font-size: 2.2rem;
    font-weight: 900;
}

footer .copyright {
    background-color: #290d11;
    color: #fff;
    font-size: 1.4rem;
    line-height: 3rem;
    padding: 0.8rem 0;
}

.gnav {
    margin-right: 4rem;
}

.gnav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4.8rem;
}

.gnav ul li {
    text-align: center;
}

.gnav ul li a {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: #290d11;
    font-weight: 800;
    line-height: 2.7rem;
}

.breadcrumb {
    position: absolute;
    top: 2.4rem;
    left: 6.4rem;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 3.1rem;
    font-weight: 500;
}

.breadcrumb ol li {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb ol li:not(:last-child)::after {
    content: "";
    background-image: url(../img/breadcrumbs_arrow.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 1.3rem;
    width: 0.8rem;
    display: inline-block;
    position: absolute;
    right: -2rem;
}

.breadcrumb ol li a {
    color: #290d11;
}

.main-title-wrap {
    background-color: #fff;
    padding: 10rem 6.4rem;
    position: relative;
}

.main-title {
    font-size: 4rem;
    line-height: 6rem;
    letter-spacing: 0.04em;
    text-align: center;
}

.main-title-wrap .extension {
    color: #B5152E;
    font-weight: bold;
    text-align: center;
    font-size: 3.5rem;
    letter-spacing: 0.03em;
    margin-top: 4rem;
}

.main-title-wrap .extension.p20,
.application-period-section .p24 {
    font-size: 35px;
    letter-spacing: 3%;
}

.form-contents {
    padding: 5.6rem 0 12rem;
    width: 108rem;
    margin: auto;
}

.form-contents.complete {
    text-align: center;
    padding-top: 12rem;
}

.form-contents .lead {
    text-align: center;
    line-height: 3rem;
    margin-bottom: 4.8rem;
}

.form-contents .lead .bold {
    font-weight: 900;
}

.form-contents .lead a {
    font-weight: bold;
    color: #355aed;
}

.form-contents .lead a:hover {
    opacity: 1;
    text-decoration: none;
}

.form-contents .cat-area {
    margin-bottom: 4.8rem;
}

.form-contents .cat-title {
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: 0.1em;
    font-size: 2.3rem;
}

.form-contents .cat-guide {
    letter-spacing: 0.1em;
}

.form-contents .form-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    margin-top: 1.6rem;
}

.form-contents .form-row {
    display: flex;
}

.form-contents .form-table .form-head {
    padding: 2.4rem 0 2.4rem 2.4rem;
    width: 30.2rem;
    border-bottom: 0.4rem solid #f4f0f1;
    font-size: 1.8rem;
    line-height: 2.2rem;
    letter-spacing: 0.1rem;
    text-align: left;
    font-weight: bold;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-contents .form-table .form-head .item-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.form-contents .form-table .form-head .required {
    background-color: #950017;
    color: #fff;
    width: 5.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    border-radius: 0.2rem;
}

.form-contents .form-table .form-head .notes {
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-top: 1.2rem;
    text-indent: -1em;
    padding-left: 1em;
    letter-spacing: 0.1em;
}

.form-contents .form-table .form-body {
    padding: 2.4rem 2.4rem 2.4rem 3.6rem;
    border-bottom: 0.4rem solid #f4f0f1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-contents .form-table .form-body .tel-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-contents .form-table .guide {
    margin-bottom: 1.6rem;
    letter-spacing: 0.1em;
}

.form-contents .document .form-table .guide {
    letter-spacing: 0;
    line-height: 2.7rem;
    margin-bottom: 0;
}

.form-contents .form-table .supplement {
    font-size: 1.4rem;
    margin-top: 0.8rem;
    line-height: 2.1rem;
    font-weight: normal;
}

.form-contents .document .form-table .supplement {
    margin-top: 1.6rem;
}

.form-contents .form-table .form-head .supplement {
    line-height: 2.1rem;
    letter-spacing: 0;
}

.form-contents .input-text {
    appearance: none;
    border: 0.1rem solid #6b6b6b;
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: 0.6rem 1.2rem;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    border-radius: 0.2rem;
    color: #290d11;
    resize: vertical;
}

.form-contents .zip {
    width: 24rem;
}

.form-contents .wpcf7-list-item {
    margin: 0;
}

.form-contents .wpcf7-radio {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.form-contents .wpcf7-radio label {
    display: flex;
    cursor: pointer;
    gap: 0 0.4rem;
    position: relative;
}

.form-contents .wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    padding-left: 2.8rem;
    font-weight: 500;
}

.form-contents .wpcf7-radio .wpcf7-list-item-label::before,
.form-contents .wpcf7-radio .wpcf7-list-item-label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
}

.form-contents .wpcf7-radio .wpcf7-list-item-label::before {
    background-color: #fff;
    border: 0.1rem solid #6b6b6b;
    width: 2.2rem;
    height: 2.2rem;
    left: 0;
    top: 0;
}

.form-contents .wpcf7-radio .wpcf7-list-item-label::after {
    background-color: #950017;
    opacity: 0;
    width: 1.6rem;
    height: 1.6rem;
    left: 0.4rem;
    top: 0.4rem;
}

.form-contents .wpcf7-radio input,
.form-contents .wpcf7-checkbox input {
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 2.2rem;
    height: 2.2rem;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.form-contents .wpcf7-radio input:checked+.wpcf7-list-item-label::after {
    opacity: 1;
}

.form-contents .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.form-contents .wpcf7-checkbox label {
    display: flex;
    cursor: pointer;
    gap: 0 0.4rem;
    position: relative;
}

.form-contents .wpcf7-checkbox .wpcf7-list-item-label {
    position: relative;
    padding-left: 2.8rem;
    font-weight: 500;
}

.form-contents .wpcf7-checkbox .wpcf7-list-item-label::before,
.form-contents .wpcf7-checkbox .wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.form-contents .wpcf7-checkbox .wpcf7-list-item-label::before {
    background-color: #fff;
    border: 0.1rem solid #6b6b6b;
    border-radius: 0.2rem;
    width: 2.2rem;
    height: 2.2rem;
    left: 0;
}

.form-contents .wpcf7-checkbox .wpcf7-list-item-label::after {
    background-image: url(../img/ico_check.svg);
    width: 1.5rem;
    height: 1rem;
    left: 0.4rem;
    background-size: cover;
    opacity: 0;
}

.form-contents .wpcf7-checkbox input:checked+.wpcf7-list-item-label::before {
    background-color: #950017;
}

.form-contents .wpcf7-checkbox input:checked+.wpcf7-list-item-label::after {
    opacity: 1;
}

.form-contents .wpcf7-radio input:focus-visible+.wpcf7-list-item-label::before,
.form-contents .wpcf7-checkbox input:focus-visible+.wpcf7-list-item-label::before {
    outline: 2px solid #005fcc;
    outline-offset: 3px;
}

.form-contents .select-wrap {
    position: relative;
}

.form-contents .select-wrap::before {
    content: "";
    width: 1.4rem;
    height: 0.8rem;
    pointer-events: none;
    background-image: url(../img/select_arrow.svg);
    background-size: cover;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 2;
}

.form-contents .select-wrap select {
    width: 100%;
    appearance: none;
    border: 0.1rem solid #6b6b6b;
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: 0.6rem 1.2rem;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    border-radius: 0.2rem;
    color: #290d11;
    box-shadow: 0 4px 4px rgb(0 0 0 / 15%);
    background-color: #fff;
}

.form-contents .has-error .select-wrap select {
    border-color: #d33f1b;
    background-color: #ffe1e1;
}

.form-contents .error-msg {
    display: none;
    color: #d33f1b;
    font-size: 1.4rem;
    line-height: 2.1rem;
    margin-top: 0.8rem;
    font-weight: normal;
}

.form-contents .btn-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    margin-top: 6.4rem;
}

.form-contents.complete .btn-wrap {
    margin-top: 5.6rem;
}

.form-contents .btn {
    width: 31.6rem;
    height: 5.6rem;
    appearance: none;
    background-color: #950017;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    border: none;
    border-radius: 5.2rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.form-contents .btn:hover {
    transition: 0.3s;
    opacity: 0.5;
}

.form-contents .btn.back {
    background-color: #5c6070;
}

.form-contents .wpcf7-spinner {
    display: none;
}

.form-row.has-error .error-msg {
    display: block;
}

.form-row.has-error .input-text {
    background-color: #ffe1e1;
    border-color: #d33f1b;
}

.form-contents .input-file {
    width: 100%;
    font-size: 1.6rem;
    color: #290d11;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 1.6rem;
}

.form-contents .input-file::file-selector-button {
    margin-right: 1.4rem;
    width: 16.8rem;
    height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #290d11;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form-contents .input-file::file-selector-button:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.form-contents .file-control-wrap {
    display: block;
    width: 100%;
    position: relative;
    margin-top: 1.6rem;
}

.form-contents .file-control-wrap .input-file {
    margin-top: 0;
    color: transparent;
    width: 16.8rem;
    max-width: 16.8rem;
    overflow: hidden;
}

.form-contents .file-control-wrap .input-file::file-selector-button {
    color: #fff;
}

.form-contents .file-control-wrap .input-file::-webkit-file-upload-button {
    color: #fff;
}

.form-contents .file-control-wrap .input-file:hover+.file-select-button {
    opacity: 0.5;
    transition: 0.3s;
}

.form-contents .selected-file-info {
    position: absolute;
    left: 18.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #290d11;
    pointer-events: none;
}

.form-contents .file-control-wrap {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    margin-top: 1.6rem;
}

.form-contents .file-control-wrap .input-file {
    position: absolute !important;
    left: 0;
    top: 0;
    z-index: 2;
    width: 16.8rem !important;
    height: 4.4rem !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    cursor: pointer;
}

.form-contents .file-select-button {
    width: 16.8rem;
    height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: #290d11;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.form-contents .file-control-wrap .input-file:focus-visible+.file-select-button {
    outline: 3px solid #005fcc;
}

.form-contents .selected-file-info {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    flex: 1;
    font-size: 1.6rem;
    color: #290d11;
    word-break: break-all;
    pointer-events: none;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
    display: none;
}

.hidden-fields-container {
    display: none;
}

.confirm-title {
    text-align: center;
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.confirm-lead {
    text-align: center;
    margin-bottom: 3.2rem;
    line-height: 3rem;
}

.cat-area .confirm-lead {
    margin-bottom: 2.2rem;
}

.attention-for-all-owner {
    text-align: center;
    font-size: 1.8rem;
}

.attention-for-all-owner .title-to {
    font-size: 2.1rem;
    margin-bottom: 15px;
}

.attention-for-all-owner .paragraph .paragraph-attention {
    color: #b5152e;
    text-decoration: underline;
    margin-bottom: 10px;
}

.confirm-remarks-text {
    white-space: pre-wrap;
    display: block;
}

.form-contents .comp-title {
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 2.4rem;
}

.form-contents .comp-msg {
    line-height: 3rem;
}

.form-contents .comp-msg .underline {
    color: #355AED;
}

.form-contents .comp-msg .notes {
    list-style: none;
    margin-top: 3.2rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
}

.form-contents .comp-msg .notes li:not(:last-child) {
    margin-bottom: 1.2rem;
}

.form-sending-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
}

.form-sending-overlay.is-active {
    display: flex;
}

.form-sending-box {
    text-align: center;
    color: #290d11;
    font-weight: bold;
}

.form-sending-title {
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
}

.form-sending-text {
    line-height: 2.6rem;
}

body.is-form-sending {
    overflow: hidden;
}

.top-section {
    padding: 9.6rem 0;
    position: relative;
}

.dates {
    position: absolute;
    right: 5rem;
    top: 4rem;
    letter-spacing: 0.05em;
}

.dates>div {
    display: flex;
    justify-content: flex-end;
    color: #434343;
    line-height: 2.8rem;
}

.dates dt::after {
    content: "：";
}

.top .catch {
    text-align: center;
    font-size: 3.2rem;
    line-height: 4.8rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 3.2rem;
}

.top .catch .emphasis {
    color: #b5152e;
}

.top .lead {
    text-align: center;
    font-size: 1.8rem;
    line-height: 3.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 9.6rem;
}

.grant-section {
    letter-spacing: 0.05em;
}

.grant-section h2 {
    background-color: #fff;
    font-size: 2.7rem;
    display: flex;
    align-items: center;
    height: 7.4rem;
    gap: 1.6rem;
    margin-bottom: 4rem;
}

.grant-section h2 span {
    background-color: #b5152e;
    width: 7.4rem;
    height: 7.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 600;
}

.grant-card-list {
    display: flex;
    gap: 2.4rem;
}

.grant-card {
    background-color: #fff;
    width: 100%;
    padding: 1.6rem 2.4rem 2.4rem;
}

.grant-card h3 {
    color: #b5152e;
    border-bottom: 0.1rem solid #ced1ce;
    text-align: center;
    padding-bottom: 1.6rem;
    font-size: 2.2rem;
    line-height: 3.2rem;
    margin-bottom: 2.4rem;
}

.grant-guide {
    font-size: 1.8rem;
    line-height: 3.2rem;
}

.grant-target {
    margin-top: 2.4rem;
    letter-spacing: 0.05em;
}

.grant-target-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.grant-target-title::before {
    content: "■";
    margin-right: 0.8rem;
}

.grant-target ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.grant-target ul li {
    background-color: #ffe6ea;
    padding: 0 1.6rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    font-size: 1.8rem;
    border-radius: 0.3rem;
}

.grant-target .notes {
    color: #757575;
    margin-top: 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
    letter-spacing: 0.05em;
}

.grant-target .notes::before {
    content: "※";
}

.grant-section .section-link-wrap {
    text-align: center;
    margin-top: 4rem;
}

.grant-section .section-link {
    background-color: #b5152e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48.9rem;
    height: 8rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 2.2rem;
    border-radius: 4.8rem;
    position: relative;
    max-width: 100%;
    letter-spacing: 0.05em;
}

.grant-section .section-link::after {
    content: "";
    position: absolute;
    background-image: url(../img/ico_link_arrow.svg);
    width: 2.6rem;
    height: 1.7rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    right: 3.2rem;
}

#grant-price {
    margin-top: 9.6rem;
}

#grant-price .grant-target {
    background-color: #fff;
    padding: 2.4rem;
    margin-top: 4rem;
}

.application-period-section {
    margin-top: 9.6rem;
    text-align: center;
}

.application-period-section h2 {
    font-size: 2.7rem;
    height: 7.4rem;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 0 2.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
}

.application-period-section p {
    font-size: 4.1rem;
    letter-spacing: 0.12em;
    font-weight: bold;
    color: #b5152e;
}

.application-period-section p .emphasis {
    color: #003ee5;
}

.contents-section {
    background-color: #fff;
}

.requirements-section {
    padding: 9.6rem 0;
}

.requirements-section:not(:last-child) {
    border-bottom: 0.1rem solid #757575;
}

.requirements-block:not(:last-child) {
    margin-bottom: 9.6rem;
}

.requirements-block>section:not(:last-child) {
    margin-bottom: 9.6rem;
}

.requirements-section h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    font-size: 3rem;
    letter-spacing: 0.05em;
    font-family: "Poppins", sans-serif;
    margin-bottom: 6.4rem;
}

.requirements-section h2 .num {
    background-color: #b5152e;
    color: #fff;
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    font-weight: 600;
}

.requirements-section h3 {
    background-color: #f4f0f1;
    height: 7.4rem;
    display: flex;
    align-items: center;
    padding: 0 2.4rem;
    font-size: 2.7rem;
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
}

.requirements-section h4 {
    color: #b5152e;
    text-align: center;
    font-size: 2.4rem;
    line-height: 3.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 5.6rem;
}

.requirements-section h5,
.requirements-section .common-heading {
    font-size: 2rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    padding-left: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.4rem;
    line-height: 3rem;
    position: relative;
}

.requirements-section h5::before,
.requirements-section .common-heading::before {
    content: "";
    display: inline-block;
    height: calc(100% - 0.8rem);
    width: 0.4rem;
    background-color: #b5152e;
    border-radius: 0.4rem;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.requirements-list {
    list-style: none;
}

.requirements-list>li {
    border-bottom: 0.1rem solid #ced1ce;
    padding: 1.6rem 0 1.6rem 4rem;
    font-size: 1.8rem;
    line-height: 3.2rem;
    letter-spacing: 0.05em;
    position: relative;
}

.requirements-list>li:first-child {
    padding-top: 0;
}

.requirements-list>li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.requirements-list>li::before {
    content: counter(list-item);
    position: absolute;
    left: 0;
    background-color: #290d11;
    color: #fff;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 0.4rem;
}

.requirements-list>li>ul {
    margin-top: 0.8rem;
}

.requirements-list>li>ul>li {
    list-style: none;
    position: relative;
    padding-left: 2.8rem;
}

.requirements-list>li>ul>li::before {
    content: "・";
    flex-shrink: 0;
    font-weight: bold;
    margin: 0 0.4rem;
    position: absolute;
    left: 0;
}

.requirements-list>li>ul>li .notes {
    margin-top: 0.8rem;
    font-size: 1.6rem;
    line-height: 2.8rem;
    display: flex;
}

.requirements-list>li>ul>li .notes .num {
    flex-shrink: 0;
}

.requirements-section .grant-target {
    border: 0.1rem solid #b5152e;
    padding: 2.4rem;
}

.requirements-program>section:not(:last-child) {
    margin-bottom: 6.4rem;
}

#wage-improvement-content .img-wrap {
    text-align: center;
}

#wage-improvement-content .img-wrap img {
    width: 101.2rem;
}

#wage-support-judgment-flowchart .img-wrap {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.requirements-section table {
    width: 100%;
    border-collapse: collapse;
    letter-spacing: 0.05em;
    text-align: center;
    font-size: 1.8rem;
}

.requirements-section table th {
    border: 0.1rem solid #b5152e;
    height: 5.6rem;
    font-weight: 500;
}

.requirements-section table .bg-color {
    background-color: #fff5f7;
}

.requirements-section table td {
    border: 0.1rem solid #b5152e;
    height: 5.6rem;
    font-weight: 500;
}

.requirements-section table thead th {
    color: #b5152e;
    font-weight: bold;
    font-size: 2rem;
    font-weight: bold;
}

.requirements-section table tbody tr:first-child th,
.requirements-section table tbody tr:first-child td {
    border-top: none;
}

#treatment-amount table tbody th:nth-child(2) {
    width: 29rem;
}

#treatment-amount table tbody td {
    width: calc(100% / 3);
}

.requirements-section .table-notes {
    list-style: none;
    margin-top: 1.6rem;
}

.requirements-section .table-notes li {
    display: flex;
    margin-bottom: 0.4rem;
    line-height: 2.6rem;
    letter-spacing: 0.05em;
}

.requirements-section .table-notes li:last-child {
    margin-bottom: 0;
}

.requirements-section .table-notes li .mark {
    flex-shrink: 0;
}

.requirements-section .notes-list {
    margin-top: 1.6rem;
    list-style: none;
}

.requirements-section .notes-list li {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    line-height: 2.6rem;
    letter-spacing: 0.05em;
}

.requirements-section .notes-list li:last-child {
    margin-bottom: 0;
}

.requirements-section .notes-list li::before {
    content: "※";
}

#price-amount table {
    table-layout: fixed;
}

.requirements-section .link-guide {
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    font-size: 1.8rem;
}

.requirements-section .download-link {
    color: #003ee5;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
}

.requirements-section .download-link::after {
    content: "";
    background-image: url(../img/ico_download.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.2rem;
    height: 1.8rem;
    display: inline-block;
    margin-left: 0.4rem;
    vertical-align: middle;
    margin-bottom: 0.4rem;
}

.requirements-section .guide-msg {
    letter-spacing: 0.05em;
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
    line-height: 3.2rem;
}

.requirements-section .kind-list {
    list-style: none;
}

.requirements-section .kind-list li {
    position: relative;
    padding-left: 3.2rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 3.2rem;
    margin-bottom: 0.8rem;
}

.requirements-section .kind-list li:last-child {
    margin-bottom: 0;
}

.requirements-section .kind-list li::before {
    content: counter(list-item);
    position: absolute;
    left: 0;
    background-color: #290d11;
    color: #fff;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-top: 0.4rem;
    font-size: 1.6rem;
}

#required-documents-flowchart .guide-msg {
    margin-bottom: 4rem;
}

#required-documents-flowchart .img-wrap {
    margin-top: 2.4rem;
}

.document-section {
    border: 1px solid #b5152e;
    background-color: #fff;
    padding: 2.4rem 3.2rem 3.2rem 2.4rem;
    margin-top: 4rem;
}

.document-list-wrap {
    display: flex;
    gap: 3.6rem;
}

.documents-title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.documents-title::before {
    content: "■";
    margin-right: 0.8rem;
}

.document-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.document-list:first-child {
    width: 31.2rem;
    flex-shrink: 0;
}

.document-list li {
    position: relative;
    padding-left: 2.4rem;
}

.document-list li::before {
    content: "・";
    position: absolute;
    left: 0.4rem;
    font-weight: bold;
    color: #003ee5;
}

.document-list li .download-link {
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.7rem;
    color: #003ee5;
}

.application-flow-list {
    list-style: none;
}

.application-flow-list>li {
    padding: 2.4rem 0;
    border-bottom: 0.1rem solid #ced1ce;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 3.2rem;
}

.application-flow-list>li:first-child {
    padding-top: 0;
}

.application-flow-list>li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.application-flow-list li .application-flow-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.application-flow-list li h4 {
    text-align: left;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: #290d11;
    margin-bottom: 0;
}

.application-flow-list li .application-flow-number {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #290d11;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    font-size: 1.6rem;
}

.application-flow-list li p:not(:last-child) {
    margin-bottom: 0.4rem;
}

.application-flow-list li dl {
    margin-top: 0.8rem;
}

.application-flow-list li dt {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 3.2rem;
    font-weight: bold;
}

.application-flow-list li dt::before {
    content: "■";
}

.application-flow-list li dd:not(:last-child) {
    margin-bottom: 0.8rem;
}

.application-flow-list li dd ul {
    list-style: none;
}

.application-flow-list li dd ul li::before {
    content: "・";
    font-weight: bold;
    padding: 0 0.4rem;
}

.application-flow-button-wrap {
    text-align: center;
    margin-top: 6.4rem;
}

#application-flow .app-button {
    background-color: #b5152e;
    color: #fff;
    height: 8rem;
    width: 48.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    letter-spacing: 0.03em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0.8rem;
    max-width: 100%;
}

#application-flow .app-button.disabled {
    background-color: #757575;
    pointer-events: none;
}

#treatment-support-grant,
#price-emergency-grant {
    scroll-margin-top: 12rem;
}

#application-flow,
#contact {
    scroll-margin-top: 21.6rem;
}

@media only screen and (min-width: 1500px) {
    html {
        font-size: 10px;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 2.67vw;
    }

    main {
        padding-top: 8rem;
    }

    #main-contents {
        scroll-margin-top: 6.4rem;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    .container {
        width: auto;
        padding: 0 2.4rem;
    }

    .header-inner {
        height: 8rem;
    }

    header .logo {
        text-align: left;
        margin: auto;
        width: 100%;
        padding: 0 2.4rem;
    }

    header .logo img {
        width: 15.2rem;
    }

    header .app-btn {
        font-size: 1.6rem;
        width: 9.2rem;
        height: 8rem;
        line-height: 2.4rem;
        text-align: center;
        flex-shrink: 0;
    }

    header .navi-btn-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 8rem;
        height: 8rem;
        flex-shrink: 0;
    }

    .navi-btn {
        width: 2.4rem;
        position: relative;
        cursor: pointer;
        display: inline-block;
        z-index: 1;
        height: 1.6rem;
        appearance: none;
        border: none;
        background: unset;
    }

    .navi-btn span {
        position: absolute;
        display: block;
        width: 100%;
        height: 0.2rem;
        background: #290d11;
        border-radius: 5px;
        transition: 0.3s;
        top: 0;
    }

    .navi-btn span:nth-of-type(2) {
        top: 0.8rem;
        opacity: 1;
    }

    .navi-btn span:last-of-type {
        top: 1.6rem;
    }

    .navi-btn-on span {
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        transition: 0.3s;
    }

    .navi-btn-on span:first-of-type {
        transform: rotate(-45deg);
        width: 100%;
    }

    .navi-btn-on span:nth-of-type(2) {
        transform: translateX(0);
        opacity: 0;
    }

    .navi-btn-on span:last-of-type {
        transform: rotate(45deg);
        width: 100%;
        top: 0;
    }

    .gnav {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        padding: 1.6rem 2.4rem;
        background-color: #fff;
        border-top: 1px solid #b5152e;
        box-shadow: 0 0.4rem 0.4rem rgb(0 0 0 / 20%);
    }

    .gnav ul {
        display: block;
    }

    .gnav ul li {
        position: relative;
        text-align: left;
        border-bottom: 0.1rem solid #ced1ce;
    }

    .gnav ul li:last-child {
        border-bottom: none;
    }

    .gnav ul li a {
        display: block;
        font-size: 1.8rem;
        letter-spacing: 0.09em;
        font-weight: 800;
        padding: 2.4rem 0 2.4rem 3.2rem;
        line-height: 2.7rem;
        position: relative;
    }

    .gnav ul li a::before {
        content: "■";
        position: absolute;
        top: 50%;
        left: 0%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        color: #b5152e;
    }

    .footer-contents,
    .home .footer-contents {
        padding: 5.6rem 2.4rem;
    }

    footer h2 {
        font-size: 1.8rem;
        height: 4.2rem;
        padding: 0 1.6rem;
        margin-bottom: 2.4rem;
    }

    footer .contact .contact-name {
        font-size: 2.2rem;
        line-height: 3.3rem;
        margin-bottom: 2.8rem;
    }

    .footer-contents .contact table {
        font-size: 1.6rem;
    }

    .footer-contents .contact table th {
        display: block;
        width: auto;
        border-bottom: none;
        padding-bottom: 0.4rem;
        padding-top: 1.6rem;
        font-size: 1.8rem;
    }

    .footer-contents .contact table tr:first-child th {
        padding-top: 0;
    }

    .footer-contents .contact table th::before {
        margin-right: 0.4rem;
    }

    .footer-contents .contact table td {
        display: block;
        padding: 0 0 1.6rem;
        font-size: 1.8rem;
    }

    .footer-contents .contact table tr:last-child td {
        padding-bottom: 0;
    }

    footer .contact .tel {
        font-size: 3.9rem;
        line-height: 5.2rem;
        margin-bottom: 0;
    }

    footer .contact .time {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    footer .contact .time dt {
        letter-spacing: 0;
        width: 8.4rem;
        font-size: 1.6rem;
    }

    footer .contact .time dd {
        font-size: 1.6rem;
    }

    footer .copyright {
        font-size: 1.2rem;
    }

    .main-title-wrap {
        padding: 10rem 2.4rem 5.6rem;
    }

    .main-title-wrap .extension {
        font-size: 2rem;
        margin-top: 3.2rem;
    }

    .main-title {
        font-size: 2.2rem;
        line-height: normal;
    }

    .breadcrumb {
        left: 2.4rem;
        top: 1.6rem;
    }

    .breadcrumb ol {
        font-size: 1.5rem;
        gap: 2.8rem;
    }

    .breadcrumb ol li:not(:last-child)::after {
        height: 1.1rem;
        width: 0.6rem;
        right: -1.8rem;
    }

    .form-contents {
        width: auto;
        padding: 4.8rem 2.4rem;
    }

    .form-contents .lead {
        text-align: left;
        margin-bottom: 3.2rem;
    }

    .form-contents .cat-area {
        margin-bottom: 3.2rem;
    }

    .attention-for-all-owner {
        letter-spacing: 0;
        font-size: 1.5rem;
    }

    .attention-for-all-owner .title-to {
        font-size: 1.8rem;
    }


    .form-contents .cat-title {
        font-size: 2rem;
    }

    .form-contents .cat-guide {
        letter-spacing: 0;
    }

    .form-contents .form-row {
        display: block;
    }

    .form-contents .form-table .form-head {
        width: auto;
        border-bottom: none;
        padding: 2rem 2rem 0;
    }

    .form-contents .form-table .form-head .item-title {
        font-size: 1.7rem;
    }

    .form-contents .form-table .form-head .required {
        margin-top: 0.2rem;
        width: 4rem;
        height: 2rem;
        letter-spacing: 0.1rem;
        font-size: 1.3rem;
    }

    .form-contents .form-table .form-body {
        padding: 1.6rem 2rem 2rem;
    }

    .form-contents .form-table .guide {
        letter-spacing: 0;
        font-size: 1.5rem;
    }

    .form-contents .file-control-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .form-contents .file-control-wrap .input-file {
        width: 100%;
        max-width: 100%;
    }

    .form-contents .input-file::file-selector-button,
    .form-contents .input-file::-webkit-file-upload-button {
        width: 100%;
    }

    .form-contents .selected-file-info {
        position: static;
        left: auto;
        top: auto;
        transform: unset;
        word-break: break-all;
    }

    .form-contents .file-control-wrap .input-file {
        width: 100% !important;
    }

    .form-contents .file-select-button {
        width: 100%;
    }

    .form-contents .selected-file-info {
        flex-basis: 100%;
    }

    .form-contents .btn-wrap {
        margin-top: 3.2rem;
    }

    .confirm-title {
        font-size: 2rem;
    }

    .confirm-lead {
        margin-bottom: 2rem;
    }

    .form-contents.complete {
        padding: 4.8rem 2.4rem;
    }

    .form-contents .comp-title {
        font-size: 2.2rem;
    }

    .form-contents .comp-msg {
        text-align: left;
    }

    .form-contents.complete .btn-wrap {
        margin-top: 4rem;
    }

    .top {
        position: relative;
    }

    .top-section {
        position: static;
        padding: 5.6rem 0;
    }

    .dates {
        right: 2.4rem;
        top: 9.6rem;
        font-size: 1.4rem;
    }

    .dates>div {
        line-height: 2.4rem;
    }

    .top .catch {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 2.4rem;
    }

    .top .lead {
        line-height: 2.7rem;
        text-align: left;
        margin-bottom: 5.6rem;
    }

    .grant-section h2 {
        font-size: 1.8rem;
        height: 7rem;
        padding-right: 1.6rem;
        margin-bottom: 2.4rem;
    }

    .grant-section h2 span {
        height: 7rem;
        width: 4.8rem;
        flex-shrink: 0;
        font-size: 2.5rem;
    }

    .grant-card-list {
        flex-direction: column;
    }

    .grant-card {
        padding: 1.6rem 1.6rem 2.4rem;
    }

    .grant-card h3 {
        font-size: 2rem;
        margin-bottom: 1.6rem;
    }

    .grant-guide {
        line-height: 2.7rem;
    }

    .grant-target ul li {
        height: auto;
        padding: 0.3rem 1.4rem;
    }

    .grant-target ul li.line-2 {
        padding: 1.2rem 1.4rem;
    }

    .grant-section .section-link-wrap {
        margin-top: 2.4rem;
    }

    .grant-section .section-link {
        height: 6.4rem;
        font-size: 2rem;
    }

    .grant-section .section-link::after {
        width: 1.7rem;
        height: 1rem;
        right: 2.4rem;
    }

    #grant-price {
        margin-top: 5.6rem;
    }

    #grant-price .grant-target {
        margin-top: 2.4rem;
        padding: 1.6rem 1.6rem 2.4rem;
    }

    .grant-target-title {
        display: flex;
        line-height: 2.7rem;
    }

    .grant-target-title::before {
        font-size: 1.6rem;
    }

    .application-period-section {
        margin-top: 5.6rem;
    }

    .application-period-section h2 {
        height: auto;
        font-size: 1.8rem;
        letter-spacing: 0.03em;
        padding: 0.8rem 1.6rem;
        margin-bottom: 2.4rem;
    }

    .application-period-section p {
        font-size: 2.4rem;
    }

    .main-title-wrap .extension.p20 {
        font-size: 20px;
    }

    .application-period-section p.p24 {
        font-size: 24px;
    }

    .requirements-section {
        padding: 5.5rem 0;
    }

    .requirements-section h2 {
        flex-direction: column;
        gap: 0.8rem;
        font-size: 2.2rem;
        line-height: 3.3rem;
        text-align: center;
        margin-bottom: 3.2rem;
    }

    .requirements-section h3 {
        font-size: 1.8rem;
        height: auto;
        padding: 0.8rem 1.6rem;
        margin-bottom: 2.4rem;
    }

    .requirements-section h4 {
        font-size: 2rem;
        margin-bottom: 2.4rem;
    }

    .requirements-section h5,
    .requirements-section .common-heading {
        font-size: 1.8rem;
        line-height: 2.8rem;
    }

    .requirements-list>li {
        line-height: 2.7rem;
        padding-left: 2.4rem;
    }

    .requirements-list>li::before {
        width: 2rem;
        height: 2rem;
        font-size: 1.4rem;
    }

    .requirements-list>li>ul {
        margin-top: 1.6rem;
    }

    .requirements-list>li>ul>li {
        padding-left: 3rem;
    }

    .requirements-list>li>ul>li .notes {
        display: block;
        line-height: 2.4rem;
        margin-top: 1.6rem;
    }

    .requirements-section .grant-target {
        padding: 2.4rem 1.6rem;
    }

    .requirements-program>section:not(:last-child) {
        margin-bottom: 5.6rem;
    }

    .requirements-section .download-link {
        font-size: 1.6rem;
        line-height: 2.4rem;
        display: inline-block;
    }

    .requirements-section .download-link::after {
        width: 1.8rem;
        height: 1.5rem;
        margin-left: 0;
    }

    .requirements-section .guide-msg {
        line-height: 2.7rem;
    }

    .requirements-section .img-wrap figcaption {
        font-size: 1.8rem;
        line-height: 2.7rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        margin-bottom: 0.8rem;
        display: flex;
        gap: 0.4rem;
    }

    .requirements-section .img-wrap figcaption::before {
        content: "▼";
        font-size: 1.6rem;
    }

    #wage-improvement-content .img-wrap {
        text-align: left;
    }

    .requirements-section .img-wrap .download-link {
        margin-top: 0.8rem;
    }

    #wage-support-judgment-flowchart .img-wrap {
        gap: 3.2rem;
    }

    #wage-support-judgment-flowchart .img-wrap :where(figure) {
        margin: 0;
    }

    .requirements-block>section:not(:last-child) {
        margin-bottom: 5.6rem;
    }

    .requirements-block:not(:last-child) {
        margin-bottom: 5.6rem;
    }

    .requirements-section .link-guide {
        margin-bottom: 1.6rem;
    }

    .requirements-section .kind-list li {
        font-size: 1.8rem;
        line-height: 2.7rem;
        padding-left: 2.4rem;
        margin-bottom: 1.6rem;
    }

    .requirements-section .kind-list li::before {
        width: 2rem;
        height: 2rem;
        font-size: 1.4rem;
    }

    .document-section {
        margin-top: 3.2rem;
        padding: 1.6rem 1.6rem 2.4rem;
    }

    .document-list-wrap {
        flex-direction: column;
        gap: 1.2rem;
    }

    .document-list:first-child {
        width: 100%;
    }

    .documents-title::before {
        font-size: 1.6rem;
    }

    .document-list li {
        padding-left: 2.2rem;
    }

    .application-flow-list>li {
        line-height: 2.7rem;
        padding: 1.6rem 0;
    }

    .application-flow-list li .application-flow-heading {
        gap: 0.4rem;
        align-items: flex-start;
    }

    .application-flow-list li h4 {
        font-size: 1.8rem;
    }

    .application-flow-list li .application-flow-number {
        width: 2rem;
        height: 2rem;
        font-size: 1.4rem;
        margin-top: 0.6rem;
        padding-top: 0.1rem;
        flex-shrink: 0;
    }

    .application-flow-list li dd ul li {
        display: flex;
    }

    .application-flow-list li dd ul li::before {
        flex-shrink: 0;
    }

    .application-flow-button-wrap {
        margin-top: 4rem;
    }

    #application-flow .app-button {
        height: 6.4rem;
        font-size: 2rem;
    }

    .scroll-hint-text {
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 2.4rem;
        font-family: "Noto Sans JP", sans-serif;
        margin-top: 0.6rem;
    }

    .scroll-hint-icon-wrap.is-active .scroll-hint-icon {
        opacity: 0.9;
    }

    .scroll-hint-icon {
        background-color: #2a2a2a;
        width: 13rem;
        height: 13rem;
        padding: 1.5rem 1.6rem 0.8rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .scroll-hint-icon:before {
        background-image: url(../img/icon_scroll.svg);
        width: 4rem;
        height: 5.3rem;
    }

    .scroll-hint-icon:after {
        background-image: url(../img/scroll_arrow.svg);
        width: 6.4rem;
        height: 1.8rem;
        left: 0;
        right: 0;
        margin: auto;
        top: 1.5rem;
    }

    .scroll-hint-shadow-wrap::after,
    .scroll-hint-shadow-wrap::before {
        display: none;
    }

    .requirements-section table {
        font-size: 1.6rem;
    }

    .requirements-section table thead th {
        font-size: 1.6rem;
    }

    #treatment-amount table {
        width: 79.6rem;
    }

    #treatment-amount table tbody td {
        width: 28.2rem;
    }

    #treatment-amount table tbody th:nth-child(2) {
        width: 16.2rem;
    }

    #price-amount table {
        width: 62.8rem;
        table-layout: auto;
    }

    #price-amount table td {
        width: 39.4rem;
    }

    .table-wrap::-webkit-scrollbar {
        height: 1.6rem;
    }

    .table-wrap::-webkit-scrollbar-track {
        background: #dfdfdf;
        border-radius: 0.8rem;
    }

    .table-wrap::-webkit-scrollbar-thumb {
        background: #290d11;
        border-radius: 0.8rem;
    }

    .table-wrap {
        padding-bottom: 2.4rem;
    }

    .requirements-section .table-notes {
        margin-top: 2.4rem;
    }

    .requirements-section .notes-list {
        margin-top: 2.4rem;
    }

    #treatment-support-grant,
    #price-emergency-grant {
        scroll-margin-top: 8rem;
    }

    #application-flow,
    #contact {
        scroll-margin-top: 13.6rem;
    }
}