@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
    --color-text: #333;
    --color-text-light: #888888;
    --color-border: #e0e1e7;
    --color-form-outline: #2c84cb;
    --color-form-outline02: #b5defb;
    --color-white: #fff;
    --color-red: #cb4545;
    --color-link: #0000ff;
    --color-decoration-text: #e6eefd;
    --color-bg: #f7f7f7;
    --color-bg-dark: #e9edf5;
}

/*!
global > content-width
------------------------------
*/
:root {
    --width-content: 1000px;
    --width-content-l: 1200px;
}

/*!
global > z-index
------------------------------
*/
:root {
    --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
    color: #000;
    background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: "";
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
textarea,
select,
button {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-size: 100%;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: inherit;
}

input,
textarea,
select {
    font-size: 16px;
}

textarea {
    resize: vertical;
    display: block;
}

button {
    padding: 0;
    cursor: pointer;
}

legend {
    color: #000;
}

tbody {
    -webkit-text-size-adjust: 100%;
}

main {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

svg {
    display: block;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
    line-height: 1.7;
    font-size: 14px;
    color: var(--color-text);
    font-family: "Noto Sans JP", serif;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 15px;
    }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    border: 0 !important;
    padding: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    margin: -1px !important;
}

/*!
layout > container
------------------------------
*/
.l-wrap {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.l-main {
    flex: 1;
}

.l-container,
.l-container-l {
    width: 90%;
    margin: 0 auto;
}

.l-container {
    max-width: var(--width-content);
}

.l-container-l {
    max-width: var(--width-content-l);
}

/*!
layout > header
------------------------------
*/
.header {
    padding-top: 32px;
}

@media screen and (min-width: 768px) {
    .header {
        padding-top: 40px;
    }
}

.header-logo {
    display: block;
    width: 100%;
    max-width: 300px;
}

@media screen and (min-width: 768px) {
    .header-logo {
        max-width: 395px;
    }
}

/*!
layout > footer
------------------------------
*/
.footer {
    text-align: center;
    padding: 24px 0px;
    opacity: 0.6;
    font-size: 14px;
}

/*!
common(flow)
------------------------------
*/
.c-flow {
    padding-top: 80px;
}

@media screen and (min-width: 768px) {
    .c-flow {
        padding-top: 100px;
    }
}

.c-flow-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
}

@media screen and (min-width: 768px) {
    .c-flow-title {
        font-size: 30px;
    }
}

.c-flow-title-ja {
    position: relative;
    z-index: 2;
}

.c-flow-title-en {
    display: block;
    letter-spacing: 0.1em;
    font-size: min(10vw, 80px);
    color: var(--color-decoration-text);
    font-weight: normal;
    position: absolute;
    left: 0px;
    bottom: 15px;
    line-height: 1;
    z-index: 1;
    font-family: "Courier Prime", serif;
}

@media screen and (min-width: 768px) {
    .c-flow-title-en {
        left: -23px;
        bottom: 0;
    }
}

.c-flow-step-wrap {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
}

@media screen and (min-width: 768px) {
    .c-flow-step-wrap {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 40px;
    }
}

@media screen and (min-width: 1200px) {
    .c-flow-step-wrap {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
}

.c-flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0 16px;
    grid-template-rows: auto auto 1fr;
    align-items: center;
    position: relative;
}

@media screen and (min-width: 1200px) {
    .c-flow-step {
        display: block;
    }
}

.c-flow-step:not(:last-child)::after {
    content: "";
    display: block;
    background: #0b184b;
    height: calc(tan(60deg) * 16px / 2);
    width: 16px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
    .c-flow-step:not(:last-child)::after {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .c-flow-step:not(:last-child)::after {
        display: block;
        height: calc(tan(60deg) * 26px / 2);
        width: 18px;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        left: auto;
        right: -37px;
        bottom: auto;
        top: 114px;
        transform: translateX(0);
    }
}

.c-flow-step-icon {
    aspect-ratio: 1/1;
    background-color: var(--color-white);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    grid-column: 1/2;
    grid-row: 1/2;
    max-width: 85px;
}

.c-flow-step-icon img {
    width: 60%;
}

.c-flow-step-title-wrap {
    grid-column: 2/3;
    grid-row: 1/2;
}

.c-flow-step-title-wrap.--singular {
    grid-column: 1/3;
    grid-row: 1/2;
}

.c-flow-step-number {
    display: block;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
    color: #0b184b;
    font-family: "Courier Prime", serif;
}

@media screen and (min-width: 1200px) {
    .c-flow-step-number {
        margin-top: 8px;
        text-align: center;
    }
}

.c-flow-step-title {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.1em;
    padding-left: 0.1em;
    line-height: 1.4;
}

@media screen and (min-width: 1200px) {
    .c-flow-step-title {
        font-size: 24px;
        text-align: center;
    }
}

.c-flow-step-text-wrap {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: 8px;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 1200px) {
    .c-flow-step-text-wrap {
        /* margin-top: 16px; */
    }
}

.c-flow-step-text span {
    display: block;
}

.c-flow-step-note {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 4px;
}

@media screen and (min-width: 1200px) {
    .c-flow-step-note {
        font-size: 14px;
    }
}

.c-flow-note-wrap {
    margin-top: 32px;
}

@media screen and (min-width: 768px) {
    .c-flow-note-wrap {
        margin-top: 24px;
    }
}

.c-flow-note {
    background-color: var(--color-bg-dark);
    padding: 16px 16px;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .c-flow-note {
        padding: 16px 40px;
        border-radius: 16px;
    }
}

.top-flow-note-title {
    font-weight: bold;
    color: #0b184b;
    letter-spacing: 0.1em;
    font-size: 18px;
}

@media screen and (min-width: 768px) {
    .top-flow-note-title {
        font-size: 20px;
    }
}

.top-flow-note-list {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-flow-note-item {
    position: relative;
    padding-left: 17px;
}

.top-flow-note-item::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #0b184b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/*!
common(entry-button)
------------------------------
*/
.c-entry {
    margin-top: 32px;
    text-align: center;
    padding: 32px 0;
    background-color: rgba(11, 24, 75, 10%);
}

@media screen and (min-width: 768px) {
    .c-entry {
        padding: 40px 0;
        margin-top: 40px;
    }
}

.c-entry-button {
    display: block;
    max-width: 600px;
    background-color: #e60012;
    padding: 16px 12px;
    margin-inline: auto;
    margin-top: 16px;
    border-radius: 100vh;
    font-weight: bold;
    font-size: 18px;
    color: var(--color-white);
    letter-spacing: 0.05em;
    transition: 0.3s;
}

@media (any-hover: hover) {
    .c-entry-button:hover {
        background-color: #cc0011;
    }
}

@media screen and (min-width: 768px) {
    .c-entry-button {
        padding: 20px 12px;
        font-size: 24px;
    }
}

.c-entry-privacy {
    text-decoration: underline;
    color: var(--color-link);
}

@media (any-hover: hover) {
    .c-entry-privacy:hover {
        text-decoration: none;
    }
}

.c-fixed-cta {
    position: fixed;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: calc(100% - 16px);
    padding: 16px;
    border-radius: 8px;
    color: #fff;
    background-color: #e60012;
    z-index: 5;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    max-width: 400px;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.c-fixed-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (min-width: 768px) {
    .c-fixed-cta {
        font-size: 20px;
    }
}

@media (any-hover: hover) {
    .c-fixed-cta:hover {
        background-color: #cc0011;
    }
}

.c-fixed-cta:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

@media screen and (min-width: 768px) {
    .c-fixed-cta:after {
        width: 10px;
        height: 10px;
    }
}

/*!
top
------------------------------
*/
.top-title {
    margin-top: 40px;
    font-size: 26px;
    color: #0b184b;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.55;
}

@media screen and (min-width: 768px) {
    .top-title {
        margin-top: 48px;
        font-size: 32px;
    }
}

.top-title span {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .top-title span {
        display: inline-block;
    }
}

.top-text {
    margin-top: 16px;
    letter-spacing: 0.05em;
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .top-text {
        font-size: 18px;
    }
}

.top-job {
    margin-top: 80px;
}

@media screen and (min-width: 768px) {
    .top-job {
        margin-top: 100px;
    }
}

.top-job-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
}

@media screen and (min-width: 768px) {
    .top-job-title {
        font-size: 30px;
    }
}

.top-job-title-ja {
    position: relative;
    z-index: 2;
}

.top-job-title-en {
    display: block;
    letter-spacing: 0.1em;
    font-size: min(10vw, 80px);
    color: var(--color-decoration-text);
    font-weight: normal;
    position: absolute;
    left: 0px;
    bottom: 15px;
    line-height: 1;
    z-index: 1;
    font-family: "Courier Prime", serif;
}

@media screen and (min-width: 768px) {
    .top-job-title-en {
        left: -23px;
        bottom: 0;
    }
}

.top-job-article-wrap {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px 24px;
    grid-auto-rows: 1fr;
}

@media screen and (min-width: 768px) {
    .top-job-article-wrap {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px;
    }
}

@media screen and (min-width: 1200px) {
    .top-job-article-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

.top-job-article {
    background-color: var(--color-bg-dark);
    border-radius: 8px;
}

.top-job-article-title {
    height: 100%;
}

.top-job-article a {
    display: flex;
    align-items: center;
    padding: 16px 40px 16px 16px;
    color: #0b184b;
    font-size: 16px;
    letter-spacing: 0.05em;
    position: relative;
    height: 100%;
    transition: 0.3s;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .top-job-article a {
        font-size: 17px;
        padding: 16px 48px 16px 24px;
    }
}

@media (any-hover: hover) {
    .top-job-article a:hover {
        text-decoration: none;
        background-color: rgba(11, 24, 75, 3%);
    }
}

.top-job-article a::after {
    content: "";
    display: block;
    background: #0b184b;
    height: calc(tan(60deg) * 12px / 2);
    width: 10px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
    .top-job-article a::after {
        right: 24px;
    }
}

/*!
single
------------------------------
*/
.single-head {
    margin-top: 48px;
}

@media screen and (min-width: 768px) {
    .single-head {
        margin-top: 64px;
    }
}

.single-head-title {
    font-weight: bold;
    font-size: 26px;
    color: #0b184b;
    letter-spacing: 0.05em;
    line-height: 1.55;
}

@media screen and (min-width: 768px) {
    .single-head-title {
        font-size: 32px;
    }
}

.single-head-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 12px;
}

@media screen and (min-width: 768px) {
    .single-head-tags {
        font-size: 16px;
    }
}

.single-head-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0b184b;
}

.single-head-tag img {
    width: 24px;
}

.single-main {
    margin-top: 64px;
}

@media screen and (min-width: 768px) {
    .single-main {
        margin-top: 80px;
    }
}

.single-section {
    line-height: 2.2;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .single-section {
        padding: 0 16px 40px;
    }
}

.single-section:not(:first-child) {
    padding-top: 24px;
}

@media screen and (min-width: 768px) {
    .single-section:not(:first-child) {
        padding-top: 40px;
    }
}

.single-title {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
    .single-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.single-contents h3 {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.55;
    position: relative;
    padding-left: 14px;
    color: #0b184b;
    margin: 8px 0 16px;
}

@media screen and (min-width: 768px) {
    .single-contents h3 {
        font-size: 18px;
    }
}

.single-contents h3::before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background-color: #0b184b;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}

.single-contents h4 {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.55;
    position: relative;
    padding-left: 18px;
    color: #0b184b;
    margin: 8px 0;
}

@media screen and (min-width: 768px) {
    .single-contents h4 {
        font-size: 16px;
    }
}

.single-contents h4::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background-color: #0b184b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

@media screen and (min-width: 768px) {
    .single-contents h4::before {
        top: 7px;
    }
}

.single-contents a {
    text-decoration: underline;
    color: var(--color-link);
}

@media (hover: hover) {
    .single-contents a:hover {
        text-decoration: none;
    }
}

.single-contents strong {
    font-weight: bold;
}

.single-contents ul,
.single-contents ol {
    padding: 16px;
    background-color: var(--color-bg-dark);
    border-radius: 10px;
    margin: 8px 0;
    color: #0b184b;
    letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
    .single-contents ul,
    .single-contents ol {
        padding: 16px 24px;
        border-radius: 16px;
    }
}

.single-contents ul li ul,
.single-contents ol li ol {
    padding: 0;
    margin: 0;
}

.single-contents ul li {
    position: relative;
    padding-left: 17px;
}

.single-contents ul li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #0b184b;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

@media screen and (min-width: 768px) {
    .single-contents ul li::before {
        top: 12px;
    }
}

.single-contents ul li ul li {
    padding-left: 14px;
}

.single-contents ul li ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 2px;
    background-color: #0b184b;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 15px;
}

@media screen and (min-width: 768px) {
    .single-contents ul li ul li::before {
        top: 16px;
    }
}

.single-contents ol li {
    counter-increment: mycounter;
    position: relative;
    padding-left: 30px;
}

.single-contents ol li::before {
    content: counter(mycounter, decimal-leading-zero) ".";
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: 0;
}

.single-contents table {
    width: 100%;
    color: #0b184b;
    display: block;
}

.single-contents tbody {
    width: 100%;
    display: block;
}

.single-contents table tr {
    width: 100%;
    display: block;
}

@media screen and (min-width: 500px) {
    .single-contents table tr {
        display: grid;
        grid-template-columns: 30% 1fr;
    }
}

.single-contents table th,
.single-contents table td {
    padding: 8px 12px;
    border-bottom: 2px solid #f7fdff;
    display: block;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .single-contents table th,
    .single-contents table td {
        padding: 16px;
    }
}

.single-contents table th {
    background-color: var(--color-bg-dark);
}

.single-contents table td {
    background-color: var(--color-white);
}

/*!
entry
------------------------------
*/
.entry-title {
    margin-top: 40px;
    font-size: 26px;
    color: #0b184b;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.55;
}

@media screen and (min-width: 768px) {
    .entry-title {
        margin-top: 48px;
        font-size: 32px;
    }
}

.entry-title span {
    display: block;
}

@media screen and (min-width: 500px) {
    .entry-title span:nth-child(2),
    .entry-title span:nth-child(3) {
        display: inline;
    }
}

._formrun_gotcha {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.formrun {
    padding: 64px 0;
    margin-inline: auto;
    max-width: 800px;
}

@media screen and (min-width: 768px) {
    .formrun {
        padding: 80px 0;
    }
}

.form-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.labe-required {
    display: inline-block;
    letter-spacing: 0.05em;
    font-size: 12px;
    margin-left: 7px;
    color: var(--color-red);
}

.labe-any {
    display: inline-block;
    letter-spacing: 0.05em;
    font-size: 12px;
    margin-left: 7px;
    color: #828282;
}

.birthday {
    display: grid;
}

.birthday-select-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
}

@media screen and (min-width: 500px) {
    .birthday-select-wrap {
        grid-template-columns: 160px 120px 120px;
    }
}

.work-history {
    margin-bottom: 6px;
}

.characters {
    margin-top: 6px;
    margin-left: 12px;
}

.characters span {
    display: inline-block;
    margin: 0 2px;
}

.consent {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}

@media screen and (min-width: 768px) {
    .consent {
        margin-top: 56px;
    }
}

.consent-link {
    text-decoration: underline;
    color: var(--color-link);
}

@media (hover: hover) {
    .consent-link:hover {
        text-decoration: none;
    }
}

.submit {
    margin-top: 24px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .submit {
        margin-top: 32px;
    }
}

.error {
    margin-top: 6px;
    padding-left: 12px;
    color: var(--color-red);
    font-weight: bold;
}

.error + .error {
    margin-top: 0;
}

.form-text {
    width: 100%;
    padding: 16px 12px;
    border: none;
    box-shadow: 0 0 0 1px var(--color-border) inset, 0 0 0 4px transparent inset;
    background-color: var(--color-white);
    appearance: none;
    outline: 0;
}

.form-text::placeholder {
    opacity: 0.4;
}

.form-text:focus {
    box-shadow: 0 0 0 1px var(--color-form-outline) inset, 0 0 0 4px var(--color-form-outline02);
}

.form-textarea {
    height: auto;
    min-height: 400px;
    field-sizing: content;
}

.form-select-wrap {
    position: relative;
    width: 100%;
}

.form-select-wrap.--experienced-occupation,
.form-select-wrap.--current-situation {
    max-width: 360px;
}

.form-select-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
    z-index: 100;
    transform: rotate(135deg);
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid var(--color-text);
    border-right: 2px solid var(--color-text);
    pointer-events: none;
}

.form-select {
    width: 100%;
    padding: 16px 12px;
    border: none;
    box-shadow: 0 0 0 1px var(--color-border) inset, 0 0 0 4px transparent inset;
    background-color: var(--color-white);
    appearance: none;
    outline: 0;
    cursor: pointer;
}

.form-select::-ms-expand {
    display: none;
}

.form-select:focus {
    box-shadow: 0 0 0 1px var(--color-form-outline) inset, 0 0 0 4px var(--color-form-outline02);
}

.form-file-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 0 0 1px var(--color-border) inset, 0 0 0 4px transparent inset;
    background-color: var(--color-white);
    padding: 16px 12px;
}

.form-checkbox-label {
    cursor: pointer;
    display: flex;
    gap: 4px;
}

.form-checkbox {
    appearance: none;
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 6px;
    flex-shrink: 0;
    position: relative;
    background-color: var(--color-white);
}

.form-checkbox:checked {
    border: 1px solid rgb(33, 150, 243);
    background-color: rgb(33, 150, 243);
}

.form-checkbox:checked::after {
    content: "";
    position: absolute;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    left: 8px;
    top: 0px;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 13px;
    transform: translateY(-1px) rotate(45deg);
}

.form-checkbox-text {
    position: relative;
}

.form-button {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 16px 48px 16px calc(48px + 0.1em);
    border-radius: 100vh;
    background-color: #0b184b;
    color: var(--color-white);
    font-weight: 700;
    transition: 0.3s;
    min-width: 240px;
    width: 100%;
    max-width: 520px;
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .form-button {
        font-size: 18px;
        padding: 20px 48px 20px calc(48px + 0.1em);
    }
}

@media (hover: hover) {
    .form-button:hover {
        background-color: #15297a;
    }
}

.form-button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-45%) rotate(-135deg);
    width: 10px;
    height: 10px;
    margin-left: 28px;
    border-bottom: 2px solid var(--color-white);
    border-left: 2px solid var(--color-white);
}

/*!
thanks
------------------------------
*/
.thanks-title {
    margin-top: 40px;
    font-size: 26px;
    color: #0b184b;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.55;
}

@media screen and (min-width: 768px) {
    .thanks-title {
        margin-top: 48px;
        font-size: 32px;
    }
}

.thanks-title span {
    display: block;
}

.thanks-text {
    line-height: 2;
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .thanks-text {
        font-size: 18px;
    }
}

@media screen and (min-width: 768px) {
    .thanks-text span {
        display: block;
    }
}

.thanks-text02 {
    margin-top: 16px;
}

.thanks-main {
    padding: 64px 0;
}

@media screen and (min-width: 768px) {
    .thanks-main {
        padding: 80px 0;
    }
}

.thanks-flow-note {
    margin-top: 48px;
}
