@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
    --color-font-base: #204066;
    --color-background-base: #f5fafe;
    --color-border-base: #e9e9e9;
    --color-font-background: #4781b6;
    --color-white: #fff;
    --color-light-gray: #fafafa;
    --color-light-gray02: #e3e9ed;
    --color-light-blue: #e7f1f9;
    --color-light-blue02: #d1e0ef;
    --color-dark-blue: #003b80;
    --color-dark-blue02: #005099;
    --color-dark-blue03: #2365a1;
    --color-dark-blue04: #003d76;
    --color-yellow: #f5f767;
    --color-orange: #cc6b24;
    --color-orange-gradient: linear-gradient(128deg, #ffae73 -17.25%, #f37012 98.26%);
    --color-red: #bb3838;
    --color-error: #d63737;
    --color-link: #255eb2;
}

/*!
global > content-width
------------------------------
*/
:root {
    --width-content-s: 920px;
    --width-content: 1100px;
}

/*!
global > font
------------------------------
*/
:root {
    --font-family-base: "Noto Sans JP", sans-serif;
    --font-vujahday: "Vujahday Script", cursive;
    --font-shippori: "Shippori Mincho B1", serif;
}

/*!
global > mixin
------------------------------
*/
/*!
global > z-index
------------------------------
*/
:root {
    --z-index-modal: 100;
    --z-index-header: 30;
    --z-index-menu: 10;
    --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
------------------------------
*/
html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.8;
    font-size: 16px;
    color: var(--color-font-base);
    font-family: var(--font-family-base);
    background-color: var(--color-background-base);
}

body:has(dialog[open]) {
    overflow: hidden;
}

/*!
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;
}

.u-hidden-sp {
    display: none;
}
@media screen and (min-width: 768px) {
    .u-hidden-sp {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .u-hidden-pc {
        display: none;
    }
}

/*!
component > accordion
------------------------------
*/
.c-accordion {
    max-width: 760px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
@media screen and (min-width: 1080px) {
    .c-accordion {
        max-width: 1000px;
    }
}

.c-accordion-summary {
    cursor: pointer;
    background-color: var(--color-white);
    display: block;
    padding: 17px 80px 17px 54px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    font-weight: bold;
    position: relative;
}
.c-accordion-summary::-webkit-details-marker {
    display: none;
}
@media screen and (min-width: 1080px) {
    .c-accordion-summary {
        padding: 27px 105px 27px 89px;
        font-size: 18px;
    }
}

.c-accordion-summary::before {
    content: "Q.";
    display: block;
    color: var(--color-dark-blue02);
    position: absolute;
    left: 20px;
    top: 12px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
    .c-accordion-summary::before {
        font-size: 25px;
        left: 40px;
        top: 17px;
    }
}

.c-accordion-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-color: var(--color-dark-blue02);
    border-radius: 50%;
}
@media screen and (min-width: 1080px) {
    .c-accordion-icon {
        width: 45px;
        height: 45px;
        right: 40px;
    }
}

.c-accordion-icon span {
    content: "";
    display: block;
    background-color: var(--color-white);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.c-accordion-icon span:nth-child(1) {
    width: 50%;
    height: 2px;
    border-radius: 2px;
}
@media screen and (min-width: 1080px) {
    .c-accordion-icon span:nth-child(1) {
        width: 15px;
    }
}

.c-accordion-icon span:nth-child(2) {
    width: 2px;
    height: 50%;
    transition: 0.3s;
    border-radius: 2px;
}
@media screen and (min-width: 1080px) {
    .c-accordion-icon span:nth-child(2) {
        height: 15px;
    }
}

.c-accordion-details.is-open .c-accordion-icon span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.c-accordion-contents {
    overflow: hidden;
    background: var(--color-white);
}

.c-accordion-contents-inner {
    padding-inline: 20px;
}

.c-accordion-contents-text {
    border-top: 1px solid var(--color-light-gray02);
    padding: 16px 0 16px 31px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
}
@media screen and (min-width: 1080px) {
    .c-accordion-contents-text {
        padding: 25px 0 25px 68px;
        font-size: 16px;
        line-height: 2.2;
    }
}

.c-accordion-contents-text::before {
    content: "A.";
    display: block;
    color: var(--color-red);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
    .c-accordion-contents-text::before {
        font-size: 25px;
        left: 22px;
    }
}

/*!
component > button
------------------------------ */
.c-button {
    display: flex;
    padding: 12px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--color-orange);
    background: var(--color-orange-gradient);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4615384615;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
    .c-button {
        padding: 15px 30px;
        font-size: 15px;
        line-height: 1.4666666667;
    }
}

.c-button--dot::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0.1em;
    background-image: radial-gradient(circle at center, var(--color-white) 30%, transparent 30%);
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 1.09em 0.3em;
    padding-top: 0.4em;
    margin-top: -0.4em;
}
@media screen and (min-width: 1080px) {
    .c-button--dot::before {
        background-image: radial-gradient(circle at center, var(--color-white) 15%, transparent 15%);
        background-size: 1.09em 0.18em;
        padding-top: 0.2em;
        margin-top: -0.2em;
    }
}

@media (any-hover: hover) {
    .c-button:hover {
        opacity: 0.8;
    }
}

.c-button.--large {
    padding: 22px 60px 22px 20px;
    font-size: 18px;
    line-height: 1.4444444444;
    max-width: 554px;
    margin-inline: auto;
}
@media screen and (min-width: 1080px) {
    .c-button.--large {
        font-size: 22px;
        padding: 30px 130px 30px 90px;
    }
}

.c-button.--arrow {
    position: relative;
}

.c-button.--arrow::after {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    position: absolute;
    right: 38px;
    background: var(--color-white);
}
@media screen and (min-width: 1080px) {
    .c-button.--arrow::after {
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
        right: 130px;
        width: 10px;
    }
}

@media screen and (min-width: 1080px) {
    .c-button.--first::after {
        clip-path: polygon(100% 0, 0 0, 50% 100%);
    }
}

.c-button.--medium {
    padding: 15px 10px;
    font-size: 15px;
    letter-spacing: 0.1em;
    max-width: 500px;
    margin-inline: auto;
}
@media screen and (min-width: 375px) {
    .c-button.--medium {
        padding: 15px;
    }
}

.c-button.--online {
    padding: 22px 20px 22px 20px;
}
@media screen and (min-width: 1080px) {
    .c-button.--online {
        font-size: 22px;
        padding: 30px 130px 30px 90px;
    }
}

.c-button.--online.--arrow::after {
    right: 20px;
}
@media screen and (min-width: 1080px) {
    .c-button.--online.--arrow::after {
        clip-path: polygon(0 0, 0% 100%, 100% 50%);
        right: 90px;
        width: 10px;
    }
}

/*!
component > modal
------------------------------
*/
.c-modal-bg {
    content: "";
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    cursor: pointer;
    z-index: 1000;
}

.c-modal {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: grid;
    visibility: hidden;
}

.c-modal[open] {
    visibility: visible;
}

.c-modal::-webkit-scrollbar {
    display: none;
}

/* モーダル背景 */
.c-modal::backdrop {
    background-color: transparent;
}

.c-modal-inner {
    max-width: 850px;
    margin-inline: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-modal-contents {
    background-color: var(--color-white);
    position: relative;
    opacity: 0;
}

.c-modal-contents a {
    text-decoration: underline;
    color: rgb(69, 130, 215);
}

.close-button {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s;
    z-index: 102;
    background-color: var(--color-white);
}

.close-button::before,
.close-button::after {
    content: "";
    display: block;
    width: 14px;
    height: 1px;
    background-color: var(--color-dark-blue02);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.close-button::before {
    transform: rotate(45deg);
}

.close-button::after {
    transform: rotate(-45deg);
}

.c-modal--head {
    background-color: var(--color-background-base);
    padding: 15px 20px;
}
@media screen and (min-width: 768px) {
    .c-modal--head {
        padding: 25px 40px;
    }
}

.c-modal--head-company {
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-dark-blue02);
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .c-modal--head-company {
        font-size: 16px;
    }
}

.c-modal--head-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--color-dark-blue02);
}
@media screen and (min-width: 768px) {
    .c-modal--head-title {
        font-size: 22px;
    }
}

.c-modal--head-salary {
    font-family: var(--font-shippori);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4666666667;
    letter-spacing: 0.05;
    display: flex;
    align-items: baseline;
}

.c-modal--head-number {
    color: var(--color-red);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.4333333333;
}

.c-modal--body {
    padding: 15px 20px;
}
@media screen and (min-width: 768px) {
    .c-modal--body {
        padding: 25px 40px;
    }
}

.c-modal--terms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media screen and (min-width: 768px) {
    .c-modal--terms {
        align-items: center;
        flex-direction: row;
    }
}

.c-modal--terms-title {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
    background: var(--color-dark-blue02);
    padding-inline: 10px;
    border-radius: 999px;
    width: fit-content;
}

.c-modal--terms-lists {
    gap: 15px;
}
@media screen and (min-width: 768px) {
    .c-modal--terms-lists {
        display: flex;
        align-items: center;
    }
}

.c-modal--terms-list {
    display: flex;
    align-items: center;
}

.c-modal--terms-term {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.c-modal--terms-term::after {
    content: "：";
}

.c-modal--terms-description {
    font-weight: 700;
    line-height: 1.8;
}

.c-modal--description {
    margin-top: 15px;
}

.c-modal--description-title {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    background: var(--color-font-base);
    padding-inline: 10px;
    border-radius: 999px;
    width: fit-content;
}

.c-modal--description-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 5px;
}
.c-modal--description-text ul {
    padding-left: 20px;
    margin-top: 8px;
}
.c-modal--description-text li {
    list-style: disc;
}

.c-modal--area {
    margin-top: 15px;
    background: var(--color-light-gray);
    padding: 10px 20px;
}

.c-modal--area-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
}

.c-modal--area-lists {
    margin-top: 5px;
}

.c-modal--area-list {
    padding-left: 1em;
    position: relative;
}

.c-modal--area-list::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: var(--color-font-base);
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    border-radius: 50%;
}

.c-modal--note {
    font-size: 12px;
    margin-top: 6px;
}

/*!
component > section-heading
------------------------------
*/
.c-section-heading {
    color: var(--color-white);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4583333333;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    padding: 30px 5.3%;
    margin-block: -30px;
    margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 1080px) {
    .c-section-heading {
        padding: 30px 20px;
        font-size: 32px;
    }
}

.c-section-heading::after {
    content: var(--background-text);
    position: absolute;
    inset: 50% auto 0 50%;
    margin: auto;
    color: var(--color-white);
    opacity: 0.1;
    font-family: var(--font-vujahday);
    font-size: 70px;
    line-height: 1.3571428571;
    text-wrap: nowrap;
    rotate: -2.21deg;
    translate: -50% -50%;
    width: 100%;
    display: grid;
    place-content: center;
}
@media screen and (min-width: 1080px) {
    .c-section-heading::after {
        font-size: 100px;
    }
}

.c-section-heading.--blue {
    color: var(--color-dark-blue02);
}

.c-section-heading.--blue::after {
    color: var(--color-dark-blue03);
}

/*!
component > section-heading
------------------------------
*/
.c-section-heading02 {
    text-align: center;
}

.c-section-heading02--sub {
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-dark-blue02);
}
@media screen and (min-width: 1080px) {
    .c-section-heading02--sub {
        font-size: 20px;
        line-height: 1.45;
    }
}
.c-section-heading02--sub.--white {
    color: var(--color-white);
}

.c-section-heading02--main {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
    .c-section-heading02--main {
        margin-top: 8px;
        font-size: 32px;
        line-height: 1.4375;
    }
}

.c-section-heading02.--white {
    color: var(--color-white);
}

/*!
component > title
------------------------------
*/
/*!
layout > container
------------------------------
*/
.l-container,
.l-container-s {
    width: 90%;
    margin: 0 auto;
}

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

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

/*!
layout > header
------------------------------
*/
.header {
    padding: 10px 10px 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 40, 88, 0.36);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
@media screen and (min-width: 1080px) {
    .header {
        padding: 10px 20px;
    }
}
@media screen and (min-width: 1200px) {
    .header {
        padding: 10px 80px;
    }
}

.header--logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media screen and (min-width: 1440px) {
    .header--logo {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
}

.header--logo-main {
    max-width: 90px;
    width: 100%;
}
@media screen and (min-width: 375px) {
    .header--logo-main {
        max-width: 112px;
    }
}
@media screen and (min-width: 1200px) {
    .header--logo-main {
        max-width: 167px;
    }
}

.header--logo-sub {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4166666667;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}
@media screen and (min-width: 1440px) {
    .header--logo-sub {
        font-size: 15px;
        margin-top: 5px;
    }
}

@media screen and (min-width: 1080px) {
    .header--nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

.header--lists {
    display: none;
}
@media screen and (min-width: 1080px) {
    .header--lists {
        display: flex;
        gap: 20px;
    }
}

.header--link {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4666666667;
    letter-spacing: 0.1em;
}

@media (any-hover: hover) {
    .header--link:hover {
        opacity: 0.8;
    }
}

/*!
layout > footer
------------------------------
*/
.footer {
    padding: 15px 20px 130px 20px;
    background: var(--color-white);
}
@media screen and (min-width: 1080px) {
    .footer {
        padding: 20px 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.footer--content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer--mark {
    display: block;
    width: 51px;
}
@media screen and (min-width: 1080px) {
    .footer--mark {
        width: 70px;
    }
}

.footer--text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4166666667;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
    .footer--text {
        font-size: 14px;
        line-height: 1.4285714286;
    }
}

.footer--copy {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4166666667;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
    .footer--copy {
        font-size: 14px;
        line-height: 1.4285714286;
    }
}

/*!
layout > main
------------------------------
*/
.l-main {
    width: 100%;
    overflow: hidden;
}

/*!
page > top > top-common
------------------------------
*/
/*!
page > top > top-company
------------------------------
*/
.top-company {
    background: var(--color-light-blue);
}

.top-company--content {
    padding: 40px 20px;
}

.top-company--title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4736842105;
    letter-spacing: 0.1em;
    background: linear-gradient(transparent 80%, var(--color-yellow) 20%);
    width: fit-content;
    margin-inline: auto;
}
@media screen and (min-width: 375px) {
    .top-company--title {
        font-size: 19px;
    }
}
@media screen and (min-width: 1080px) {
    .top-company--title {
        font-size: 28px;
    }
}

.top-company--image {
    margin-top: 25px;
    max-width: 500px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .top-company--image {
        max-width: 892px;
        grid-template-columns: repeat(6, 1fr);
    }
}
.top-company--image li {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
}

.top-company--button {
    padding: 30px 20px;
    background: var(--color-light-blue02);
}
@media screen and (min-width: 1080px) {
    .top-company--button {
        padding: 40px 20px;
    }
}

/*!
page > top > top-faq
------------------------------
*/
.top-contact {
    padding-bottom: 75px;
}

.top-contact--heading {
    background: url("../img/top/top-offer-background.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 20px 75px 20px;
}
@media screen and (min-width: 1080px) {
    .top-contact--heading {
        padding: 80px 20px 100px 20px;
    }
}

.top-contact--body {
    padding: 40px 20px;
    margin-inline: 20px;
    background-color: var(--color-white);
    margin-top: -45px;
}
@media screen and (min-width: 1080px) {
    .top-contact--body {
        max-width: 1100px;
        margin-inline: auto;
        margin-top: -60px;
    }
}

.top-contact--description {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    margin-top: 25px;
}
@media screen and (min-width: 500px) {
    .top-contact--description {
        text-align: center;
    }
}
@media screen and (min-width: 1080px) {
    .top-contact--description {
        font-size: 17px;
        line-height: 2.2;
    }
}

.top-contact--body-inner {
    max-width: 900px;
    margin: 0 auto;
}
.top-contact--body-inner dl {
    margin-top: 15px;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner dl {
        margin-top: 25px;
        display: grid;
        grid-template-columns: 210px 1fr;
    }
}
.top-contact--body-inner dt {
    font-size: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner dt {
        font-size: 18px;
    }
}
.top-contact--body-inner dt .small {
    font-size: 12px;
    color: var(--color-error);
}
.top-contact--body-inner dt .small::before {
    content: "*";
}
.top-contact--body-inner .privacy-link {
    color: var(--color-link);
    text-decoration: underline;
}
.top-contact--body-inner .confirm {
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    margin-top: 30px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner .confirm {
        margin-top: 50px;
    }
}
.top-contact--body-inner .button {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner .button {
        margin-top: 50px;
    }
}
.top-contact--body-inner .button button {
    font-size: 18px;
    width: 100%;
    max-width: 576px;
    padding: 22px 16px;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner .button button {
        font-size: 22px;
        padding: 24px 16px;
    }
}
.top-contact--body-inner input[type="text"] {
    width: 100%;
    padding: 10px 15px;
    background-color: #f9fbfd;
    box-shadow: 0 0 0 1px #ededed inset;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner input[type="text"] {
        padding: 15px 30px;
    }
}
.top-contact--body-inner input[type="text"]:focus {
    outline: 0;
    box-shadow: 0 0 0 2px #619cd4 inset;
}
.top-contact--body-inner input[type="text"]::placeholder {
    color: #cbd5de;
}
.top-contact--body-inner .select-item {
    position: relative;
}
.top-contact--body-inner .select-item:before {
    position: absolute;
    top: 21px;
    right: 12px;
    content: "";
    display: block;
    width: 10px;
    height: 8px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background: #333;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner .select-item:before {
        right: 24px;
        top: 27px;
    }
}
.top-contact--body-inner .select-item select {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    background-color: #f9fbfd;
    box-shadow: 0 0 0 1px #ededed inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    .top-contact--body-inner .select-item select {
        padding: 15px 30px;
    }
}
.top-contact--body-inner .select-item select::-ms-expand {
    display: none;
}
.top-contact--body-inner .select-item select:focus {
    outline: 0;
    box-shadow: 0 0 0 2px #619cd4 inset;
}
.top-contact--body-inner .select-item.--full-size {
    width: 100%;
}
.top-contact--body-inner .select.--birthyear {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.top-contact--body-inner .select.--birthyear .select-item:nth-child(1) {
    width: 200px;
}
.top-contact--body-inner .select.--birthyear .select-item:nth-child(2),
.top-contact--body-inner .select.--birthyear .select-item:nth-child(3) {
    width: 120px;
}

/*!
page > top > top-faq
------------------------------
*/
.top-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-dark-blue);
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
@media screen and (min-width: 1080px) {
    .top-cta {
        left: auto;
        right: 24px;
        bottom: 18px;
        width: auto;
        border-radius: 20px 20px 0 20px;
        box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
        z-index: 2;
    }
}
.top-cta.is-active {
    opacity: 1;
    visibility: visible;
}

.top-cta--inner {
    position: relative;
    padding: 10px 90px 15px 10px;
}
@media screen and (min-width: 375px) {
    .top-cta--inner {
        padding: 10px 90px 15px 20px;
    }
}

.top-cta--content {
    position: relative;
    z-index: 1;
}

.top-cta--text {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.top-cta--text-strong {
    font-family: var(--font-shippori);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.top-cta--button {
    margin-top: 5px;
}

.top-cta-image {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 127px;
    display: block;
    overflow: hidden;
    z-index: 0;
}

/*!
page > top > top-example
------------------------------
*/
.top-example {
    padding-bottom: 75px;
}
@media screen and (min-width: 1080px) {
    .top-example {
        padding-block: 0 125px 100px;
    }
}

.top-example--top {
    background: url(../img/top/top-example-background.webp) center center/cover no-repeat;
    padding: 60px 20px 75px 20px;
}
@media screen and (min-width: 1080px) {
    .top-example--top {
        padding: 100px 20px 100px 20px;
    }
}

@media screen and (min-width: 1080px) {
    .top-example--heading {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
    }
}

@media screen and (min-width: 1080px) {
    .top-example--heading .c-section-heading {
        overflow: visible;
    }
}

.top-example--heading .c-section-heading::after {
    translate: -50% 0;
}
@media screen and (min-width: 1080px) {
    .top-example--heading .c-section-heading::after {
        translate: -50% -50%;
        left: 55%;
    }
}

.top-example--heading-icon {
    max-width: 143px;
    display: block;
    margin-inline: auto;
}
@media screen and (min-width: 1080px) {
    .top-example--heading-icon {
        margin-inline: 0;
        max-width: 180px;
    }
}

.top-example--text {
    color: var(--color-white);
    font-weight: 500;
    line-height: 2;
    margin-top: 10px;
}
@media screen and (min-width: 500px) {
    .top-example--text {
        text-align: center;
    }
}
@media screen and (min-width: 1080px) {
    .top-example--text {
        margin-top: 40px;
    }
}

.top-example--company-image {
    margin-top: 20px;
    max-width: 500px;
    margin-inline: auto;
}
@media screen and (min-width: 1080px) {
    .top-example--company-image {
        max-width: 892px;
        margin-top: 30px;
    }
}

.top-example--sample {
    margin: -45px 20px 0;
    padding: 50px 20px;
    background: var(--color-white);
}
@media screen and (min-width: 1080px) {
    .top-example--sample {
        padding-block: 60px;
        max-width: 1100px;
        margin-inline: auto;
    }
}

.top-example--sample-heading {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.1em;
    padding-inline: 10px;
}
@media screen and (min-width: 1080px) {
    .top-example--sample-heading {
        font-size: 26px;
        line-height: 1.4615384615;
    }
}

.top-example--lists {
    margin-top: 25px;
    display: grid;
    gap: 15px;
    max-width: 850px;
    margin-inline: auto;
}
@media screen and (min-width: 1080px) {
    .top-example--lists {
        margin-top: 40px;
    }
}

.top-example--list-link {
    background: var(--color-background-base);
    display: grid;
    grid-template-columns: 1fr 40px;
    position: relative;
}
@media screen and (min-width: 1080px) {
    .top-example--list-link {
        grid-template-columns: 1fr 62px;
    }
}

.top-example--list-content {
    padding: 10px 10px 15px 20px;
}
@media screen and (min-width: 1080px) {
    .top-example--list-content {
        padding: 25px 40px;
    }
}

.top-example--list-company {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-dark-blue02);
}
@media screen and (min-width: 1080px) {
    .top-example--list-company {
        font-size: 16px;
        line-height: 1.92;
    }
}

.top-example--list-job {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    color: var(--color-dark-blue02);
}
@media screen and (min-width: 1080px) {
    .top-example--list-job {
        font-size: 20px;
        line-height: 1.8;
    }
}

@media screen and (min-width: 1080px) {
    .top-example--list-term-wrap {
        display: flex;
        align-items: center;
        margin-top: 12px;
        gap: 10px;
    }
}

.top-example--list-title {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;
    background: var(--color-dark-blue02);
    padding-inline: 10px;
    border-radius: 999px;
    margin-top: 5px;
    width: fit-content;
}
@media screen and (min-width: 1080px) {
    .top-example--list-title {
        margin-top: 0;
        font-size: 14px;
    }
}

.top-example--terms {
    margin-top: 2px;
}
@media screen and (min-width: 1080px) {
    .top-example--terms {
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

.top-example--terms-item {
    display: flex;
}

.top-example--terms-term {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
}

.top-example--terms-term::after {
    content: "：";
}

.top-example--terms-description {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.top-example--note {
    font-size: 12px;
    margin-top: 6px;
}

.top-example--list-arrow {
    background: var(--color-dark-blue02);
    display: grid;
    place-content: center;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
}

.top-example--sample-remarks {
    margin-top: 25px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
    .top-example--sample-remarks {
        text-align: center;
    }
}
@media screen and (min-width: 1080px) {
    .top-example--sample-remarks {
        margin-top: 40px;
        font-size: 14px;
    }
}

.top-example--bottom-text {
    margin-top: 40px;
    text-align: center;
    font-size: 20px;
    color: var(--color-dark-blue02);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    padding-inline: 20px;
}
@media screen and (min-width: 1080px) {
    .top-example--bottom-text {
        margin-top: 80px;
        font-size: 26px;
        line-height: 1.8;
    }
}

.top-example--button {
    margin-top: 25px;
    padding-inline: 20px;
}
@media screen and (min-width: 1080px) {
    .top-example--button {
        margin-top: 40px;
    }
}

/*!
page > top > top-faq
------------------------------
*/
.top-faq {
    padding: 60px 20px 75px 20px;
}
@media screen and (min-width: 1080px) {
    .top-faq {
        padding: 100px 20px 125px 20px;
    }
}

.top-faq--accordions {
    margin-top: 40px;
    display: grid;
    gap: 12px;
}
@media screen and (min-width: 1080px) {
    .top-faq--accordions {
        margin-top: 50px;
        gap: 20px;
    }
}

/*!
page > top > top-info
------------------------------
*/
.top-info {
    background: var(--color-dark-blue02);
    padding: 50px 20px;
    color: var(--color-white);
    position: relative;
    z-index: 0;
}
@media screen and (min-width: 1080px) {
    .top-info {
        padding-block: 80px;
    }
}

.top-info::before {
    content: var(--background-text);
    position: absolute;
    transform: rotate(-7.215deg);
    color: var(--color-font-background);
    font-family: var(--font-vujahday);
    font-size: 120px;
    font-weight: 400;
    z-index: -1;
    inset: 0 auto 0 50%;
    translate: -50% 0;
    margin: auto;
    white-space: nowrap;
    height: fit-content;
    opacity: 0.3;
}
@media screen and (min-width: 1200px) {
    .top-info::before {
        font-size: 180px;
    }
}

.top-info--title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
    .top-info--title {
        font-size: 24px;
        line-height: 1.4583333333;
    }
}

.top-info--description {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4444444444;
    letter-spacing: 0.1em;
    margin-top: 25px;
}
@media screen and (min-width: 1080px) {
    .top-info--description {
        font-size: 26px;
        line-height: 1.4615384615;
    }
}

@media screen and (min-width: 1080px) {
    .top-info--salary {
        display: flex;
        align-items: baseline;
        justify-content: center;
    }
}

.top-info--salary-top {
    font-family: var(--font-shippori);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 5px;
}
@media screen and (min-width: 1080px) {
    .top-info--salary-top {
        font-size: 24px;
        line-height: 1.4583333333;
    }
}

.top-info--number {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4210526316;
}
@media screen and (min-width: 1080px) {
    .top-info--number {
        font-size: 44px;
        line-height: 1.4545454545;
    }
}

.top-info--salary-bottom {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.1em;
    margin-top: 3px;
    text-align: center;
    display: block;
}
@media screen and (min-width: 1080px) {
    .top-info--salary-bottom {
        font-size: 30px;
        line-height: 1.4333333333;
    }
}

.top-info--button {
    margin-top: 25px;
}

/*!
page > top > top-kv
------------------------------
*/
@media screen and (min-width: 768px) {
    .top-kv {
        display: grid;
        grid-template-columns: 1fr 45.8333333333vw;
        grid-template-areas: "content background";
    }
}
@media screen and (min-width: 768px) {
    .top-kv {
        grid-template-columns: 1fr 50%;
    }
}
@media screen and (min-width: 1080px) {
    .top-kv {
        grid-template-columns: 1fr 40%;
    }
}
.top-kv--background {
    display: block;
}
@media screen and (min-width: 768px) {
    .top-kv--background {
        grid-area: background;
        z-index: 2;
        background-color: var(--color-dark-blue02);
        margin-left: -9%;
    }
}
@media screen and (min-width: 1080px) {
    .top-kv--background {
        margin-left: -7%;
    }
}
@media screen and (min-width: 1200px) {
    .top-kv--background {
        margin-left: 0;
    }
}

.top-kv--background img {
    width: 106%;
    height: 100%;
    object-fit: cover;
}
.top-kv--content {
    display: flex;
    padding: 70px 10px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: -280px;
    background: linear-gradient(180deg, rgba(0, 80, 153, 0) 0%, var(--color-dark-blue02) 18%, var(--color-dark-blue02) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .top-kv--content {
        padding: 100px 10px 32px;
        grid-area: content;
        justify-content: center;
        margin-top: 0;
        background-color: var(--color-dark-blue02);
    }
}
@media screen and (min-width: 1080px) {
    .top-kv--content {
        padding: 120px 10px 32px;
    }
}
@media screen and (min-width: 1200px) {
    .top-kv--content {
        padding: 110px 10px 32px;
    }
}
@media screen and (min-width: 1440px) {
    .top-kv--content {
        padding-left: calc(50vw - 650px);
    }
}

@media screen and (min-width: 768px) {
    .top-kv--content-wrap {
        margin-inline: auto;
    }
}
@media screen and (min-width: 1440px) {
    .top-kv--content-wrap {
        margin-inline: 0;
    }
}

.top-kv--catch-sub {
    background-color: var(--color-white);
    padding: 0 6px;
    width: fit-content;
}
@media screen and (min-width: 768px) {
    .top-kv--catch-sub {
        padding: 0;
        background-color: transparent;
        display: inline-grid;
        align-items: flex-start;
        gap: 5px;
    }
}
@media screen and (min-width: 1080px) {
    .top-kv--catch-sub {
        grid-template-columns: auto auto;
        gap: 0;
        background-color: var(--color-white);
        padding-inline: 6px;
    }
}

.top-kv--catch-sub-text {
    font-size: 3.8vw;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
    .top-kv--catch-sub-text {
        display: inline-block;
        width: fit-content;
        background-color: var(--color-white);
        padding: 3px 6px;
        font-size: 22px;
    }
}
@media screen and (min-width: 1080px) {
    .top-kv--catch-sub-text {
        padding: 3px 0;
        background: transparent;
    }
}
@media screen and (min-width: 1200px) {
    .top-kv--catch-sub-text {
        font-size: 24px;
    }
}

.top-kv--catch-main {
    display: grid;
    gap: 6px;
    margin-top: 10px;
}
@media screen and (min-width: 1200px) {
    .top-kv--catch-main {
        margin-top: 20px;
        gap: 10px 0;
        grid-template-areas: "text1 text1" "text2 text3";
        grid-template-columns: auto 1fr;
    }
}

.top-kv--catch-main-text {
    color: var(--color-white);
    font-size: 6vw;
    font-weight: 500;
    line-height: 1.4375;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 5px;
}
@media screen and (min-width: 768px) {
    .top-kv--catch-main-text {
        font-size: 32px;
    }
}
@media screen and (min-width: 1080px) {
    .top-kv--catch-main-text {
        font-size: 46px;
        gap: 15px;
    }
}

@media screen and (min-width: 768px) {
    .top-kv--catch-main-pc-none {
        display: none;
    }
}

.top-kv--catch-main-sp-none {
    display: none;
}
@media screen and (min-width: 768px) {
    .top-kv--catch-main-sp-none {
        display: block;
    }
}

@media screen and (min-width: 1200px) {
    .top-kv--catch-main-text:first-child {
        grid-area: text1;
    }
}

@media screen and (min-width: 1200px) {
    .top-kv--catch-main-text:nth-child(2) {
        grid-area: text2;
    }
}

@media screen and (min-width: 1200px) {
    .top-kv--catch-main-text:last-child {
        grid-area: text3;
    }
}

.top-kv-catch-main-border {
    font-size: 8vw;
    font-weight: 500;
    line-height: 1.4411764706;
    letter-spacing: 0.05em;
    padding: 0px 8px;
    border: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
    .top-kv-catch-main-border {
        font-size: 40px;
    }
}
@media screen and (min-width: 1080px) {
    .top-kv-catch-main-border {
        font-size: 48px;
    }
}

.top-kv--awards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
    min-width: 260px;
    width: 65%;
    max-width: 300px;
}
@media screen and (min-width: 768px) {
    .top-kv--awards {
        width: 80%;
        margin-inline: auto;
        max-width: 440px;
    }
}
@media screen and (min-width: 1200px) {
    .top-kv--awards {
        margin-top: 30px;
    }
}
@media screen and (min-width: 1440px) {
    .top-kv--awards {
        margin-inline: 0;
    }
}

.top-kv--award {
    display: block;
}

.top-kv--awards-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--color-white);
    width: 80%;
    max-width: 440px;
}
@media screen and (min-width: 768px) {
    .top-kv--awards-note {
        margin-inline: auto;
    }
}
@media screen and (min-width: 1440px) {
    .top-kv--awards-note {
        margin-inline: 0;
    }
}

/*!
page > top > top-offer
------------------------------
*/
.top-offer {
    overflow: hidden;
}

.top-offer--heading {
    background: url(../img/top/top-offer-background.webp) no-repeat;
    background-size: cover;
    padding: 60px 20px 75px 20px;
}
@media screen and (min-width: 1080px) {
    .top-offer--heading {
        background: url(../img/top/top-offer-background-pc.webp) no-repeat;
        background-size: cover;
        padding-block: 100px;
    }
}

.top-offer--description {
    color: var(--color-white);
    font-weight: 500;
    line-height: 2;
    margin-top: 20px;
}
@media screen and (min-width: 500px) {
    .top-offer--description {
        text-align: center;
    }
}

.top-offer--splide {
    margin-top: -45px;
    padding-bottom: 75px;
}
@media screen and (min-width: 1080px) {
    .top-offer--splide {
        padding-bottom: 125px;
    }
}

.top-offer--splide .splide__arrow {
    background: transparent;
    width: 37px;
    height: 74px;
    border-radius: 0;
}

.top-offer--splide .splide__arrow svg {
    width: 100%;
    height: 100%;
}

.top-offer--splide .splide__arrow--prev {
    left: 0.5em;
}

.top-offer--splide .splide__arrow--next {
    right: 0.5em;
}

.top-offer--card {
    background: var(--color-white);
    height: 100%;
}

.top-offer--card-heading {
    background: var(--color-dark-blue);
    color: var(--color-white);
    display: grid;
    gap: 4px;
    padding: 15px 10px;
    text-align: center;
}
@media screen and (min-width: 1080px) {
    .top-offer--card-heading {
        gap: 9px;
        padding: 20px 10px;
    }
}

.top-offer--card-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4444444444;
    letter-spacing: 0.05em;
}
@media screen and (min-width: 500px) {
    .top-offer--card-name {
        font-size: 18px;
    }
}
@media screen and (min-width: 1080px) {
    .top-offer--card-name {
        font-size: 20px;
        line-height: 1.45;
    }
}

.top-offer--card-job {
    font-size: 12px;
    line-height: 1.4615384615;
}

.top-offer--card-salary {
    font-family: var(--font-shippori);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 0.05em;
    display: flex;
    padding-block: 15px 20px;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.top-offer--card-number {
    color: var(--color-red);
    font-size: 30px;
    line-height: 1.4333333333;
}

.top-offer--card-content {
    display: flex;
    padding-block: 20px 30px;
    margin-inline: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    border-top: 1px solid var(--color-border-base);
}

.top-offer--card-content-title {
    font-weight: 700;
    line-height: 1.4375;
}

.top-offer--card-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
}

/*!
page > top > top-pro
------------------------------
*/
.top-pro {
    padding: 60px 0 120px;
    background: url(../img/top/top-pro-background.webp) center center/cover no-repeat;
}
@media screen and (min-width: 1080px) {
    .top-pro {
        padding: 100px 0 175px;
    }
}

.top-pro--top {
    padding-inline: 20px;
}

.top-pro--description {
    color: var(--color-white);
    font-weight: 500;
    line-height: 2;
    margin-top: 25px;
}
@media screen and (min-width: 500px) {
    .top-pro--description {
        text-align: center;
    }
}
@media screen and (min-width: 1080px) {
    .top-pro--description {
        font-size: 17px;
        line-height: 2.2;
    }
}

.top-pro--figure {
    margin-top: 25px;
    display: block;
    padding-inline: 20px;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
}
@media screen and (min-width: 1080px) {
    .top-pro--figure {
        max-width: 745px;
        margin-top: 50px;
    }
}

.top-pro--splide {
    margin-top: 30px;
}
@media screen and (min-width: 1080px) {
    .top-pro--splide {
        margin-top: 50px;
        max-width: 1100px;
        margin-inline: auto;
    }
}

.top-pro--splide .splide__arrow {
    background: transparent;
    width: 37px;
    height: 74px;
    border-radius: 0;
}

.top-pro--splide .splide__arrow svg {
    width: 100%;
    height: 100%;
}

.top-pro--splide .splide__arrow svg rect {
    fill: var(--color-dark-blue04);
}
@media screen and (min-width: 1080px) {
    .top-pro--splide .splide__arrow svg rect {
        fill: transparent;
    }
}

.top-pro--splide .splide__arrow--next {
    right: 0.5em;
}
@media screen and (min-width: 1080px) {
    .top-pro--splide .splide__arrow--next {
        right: -3.5em;
    }
}

.top-pro--splide .splide__arrow--prev {
    left: 0.5em;
}
@media screen and (min-width: 1080px) {
    .top-pro--splide .splide__arrow--prev {
        left: -3.5em;
    }
}

.top-pro--splide .splide__pagination {
    margin-bottom: -60px;
}
@media screen and (min-width: 1080px) {
    .top-pro--splide .splide__pagination {
        margin-bottom: -75px;
    }
}

.top-pro--splide .splide__pagination__page {
    height: 9px;
    width: 9px;
    margin: 6px;
}

.top-pro--splide .splide__pagination__page.is-active {
    transform: scale(1);
}

.top-pro--splide .splide:not(.is-overflow) .splide__pagination {
    display: flex;
}

.top-pro--card {
    background: var(--color-white);
    padding: 30px 20px;
    height: 100%;
}
@media screen and (min-width: 1080px) {
    .top-pro--card {
        padding: 30px;
    }
}

.top-pro--card-thumbnail {
    max-width: 140px;
    display: block;
    margin-inline: auto;
}
@media screen and (min-width: 1080px) {
    .top-pro--card-thumbnail {
        max-width: 161px;
    }
}

.top-pro--card-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.top-pro--card-content {
    margin-top: 10px;
}

.top-pro--card-profile {
    text-align: center;
}

.top-pro--card-job {
    color: var(--color-dark-blue04);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
}

.top-pro--card-name {
    color: var(--color-dark-blue02);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
    .top-pro--card-name {
        font-size: 20px;
        line-height: 1.8;
    }
}

.top-pro--card-english {
    color: var(--color-dark-blue02);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-top: -5px;
}
@media screen and (min-width: 1080px) {
    .top-pro--card-english {
        font-size: 12px;
    }
}

.top-pro--card-text {
    color: var(--color-dark-blue04);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 10px;
}
@media screen and (min-width: 1080px) {
    .top-pro--card-text {
        font-size: 14px;
        line-height: 1.8;
    }
}

/*!
page > top > top-special
------------------------------
*/
.top-special {
    padding: 75px 20px 75px;
}
@media screen and (min-width: 1080px) {
    .top-special {
        padding: 100px 20px 125px;
    }
}

.top-special--description {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    margin-top: 25px;
}
@media screen and (min-width: 500px) {
    .top-special--description {
        text-align: center;
    }
}

.top-special--lists {
    display: grid;
    gap: 60px;
    margin-top: 66px;
    margin-inline: -4px;
}
@media screen and (min-width: 768px) {
    .top-special--lists {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 1100px;
        margin-inline: auto;
    }
}
@media screen and (min-width: 1080px) {
    .top-special--lists {
        gap: 40px;
    }
}

.top-special--list {
    background: var(--color-dark-blue02);
    position: relative;
    padding: 70px 20px 20px 20px;
}
@media screen and (min-width: 1080px) {
    .top-special--list {
        padding: 20px 30px;
        display: grid;
        grid-template-areas: "image title title" "image salary salary" "reason reason reason";
        grid-template-columns: 112px auto auto;
    }
}

.top-special--image {
    position: absolute;
    max-width: 112px;
    max-height: 112px;
    inset: -45px auto 0 50%;
    translate: -50% 0;
}
@media screen and (min-width: 1080px) {
    .top-special--image {
        position: relative;
        inset: auto;
        translate: 0;
        grid-area: image;
    }
}

.top-special--title {
    color: var(--color-white);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.8;
}
@media screen and (min-width: 1080px) {
    .top-special--title {
        grid-area: title;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.8;
        justify-content: flex-start;
        margin-left: 20px;
    }
}

.top-special--profile {
    font-size: 16px;
    line-height: 1.8;
}
@media screen and (min-width: 1080px) {
    .top-special--profile {
        font-size: 18px;
        line-height: 0.1333333333;
    }
}

.top-special--salary {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin-top: 10px;
}
@media screen and (min-width: 1080px) {
    .top-special--salary {
        grid-area: salary;
        margin-left: 20px;
        gap: 35px;
    }
}

.top-special--before {
    position: relative;
    background: var(--color-font-base);
    color: var(--color-white);
    padding: 15px 10px 5px 10px;
    border-radius: 7px;
    flex-shrink: 0;
}
@media screen and (min-width: 1080px) {
    .top-special--before {
        max-width: 131px;
        width: 100%;
        padding: 15px 5px 5px;
    }
}

.top-special--before::after {
    content: "";
    position: absolute;
    height: 15px;
    width: 13px;
    background: var(--color-red);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    top: 50%;
    right: -15px;
    translate: 0 -50%;
}
@media screen and (min-width: 1080px) {
    .top-special--before::after {
        right: -20%;
        height: 18px;
        width: 15px;
    }
}

.top-special--before-title {
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    padding-inline: 8px;
    border: 1px solid var(--color-white);
    border-radius: 999px;
    top: -9px;
    left: 50%;
    translate: -50% 0;
    background: var(--color-font-base);
}

.top-special--before-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
    .top-special--before-text {
        font-size: 12px;
    }
}
@media screen and (min-width: 1080px) {
    .top-special--before-text {
        font-size: 14px;
        text-align: center;
    }
}

.top-special--before-salary {
    font-family: var(--font-shippori);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4615384615;
    letter-spacing: 0.05em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.top-special--before-number {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4736842105;
}

.top-special--after {
    background: var(--color-white);
    border-radius: 7px;
    display: flex;
    width: 159px;
    padding: 15px 5px 5px 5px;
    flex-direction: column;
    align-items: center;
    position: relative;
}
@media screen and (min-width: 1080px) {
    .top-special--after {
        max-width: 170px;
        width: 100%;
    }
}

.top-special--after-title {
    position: absolute;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    background: var(--color-red);
    padding-inline: 8px;
    border-radius: 999px;
    top: -9px;
    left: 50%;
    translate: -50% 0;
}

.top-special--after-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.top-special--after-salary {
    font-family: var(--font-shippori);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4615384615;
    letter-spacing: 0.05em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.top-special--after-number {
    color: var(--color-red);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4642857143;
}
@media screen and (min-width: 1080px) {
    .top-special--after-number {
        font-size: 32px;
        line-height: 1.4375;
    }
}

.top-special--reason {
    margin-top: 15px;
    background: var(--color-white);
    padding: 14px 20px;
    border-radius: 7px;
}
@media screen and (min-width: 1080px) {
    .top-special--reason {
        grid-area: reason;
        position: relative;
        margin-top: 27px;
        padding: 20px 30px;
    }
}

@media screen and (min-width: 1080px) {
    .top-special--reason::after {
        content: "";
        position: absolute;
        height: 36px;
        width: 23px;
        background: var(--color-white);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        top: -27px;
        left: 46px;
    }
}

.top-special--reason-title {
    font-weight: 700;
    line-height: 1.8;
}

.top-special--reason-text {
    margin-top: 3px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.8;
}

/*!
page > top > top-value
------------------------------
*/
.top-value {
    padding: 60px 20px 75px 20px;
    background: url(../img/top/top-value-background.webp) no-repeat center/cover;
}
@media screen and (min-width: 1080px) {
    .top-value {
        padding: 100px 20px 125px 20px;
    }
}

.top-value--description {
    margin-top: 30px;
    font-weight: 500;
    line-height: 2;
}
@media screen and (min-width: 500px) {
    .top-value--description {
        text-align: center;
    }
}
@media screen and (min-width: 1080px) {
    .top-value--description {
        font-size: 17px;
        line-height: 2.2;
    }
}

.top-value--lists {
    margin-top: 40px;
    display: grid;
    gap: 50px;
}
@media screen and (min-width: 1080px) {
    .top-value--lists {
        margin-top: 77px;
        gap: 80px;
        max-width: 1100px;
        margin-inline: auto;
    }
}

@media screen and (min-width: 768px) {
    .top-value--list {
        display: grid;
        grid-template-columns: 1fr 41.6363636364%;
        grid-template-areas: "content thumbnail";
        gap: 40px;
        align-items: flex-start;
    }
}
@media screen and (min-width: 1080px) {
    .top-value--list {
        gap: 80px;
    }
}

@media screen and (min-width: 768px) {
    .top-value--list.--reverse {
        grid-template-areas: "thumbnail content";
        grid-template-columns: 41.6363636364% 1fr;
    }
}

@media screen and (min-width: 768px) {
    .top-value--list-thumbnail {
        grid-area: thumbnail;
    }
}

@media screen and (min-width: 768px) {
    .top-value--list-content {
        grid-area: content;
        margin-top: 0;
    }
}

.top-value--list-number {
    max-width: 83px;
    width: 100%;
    margin-top: 20px;
}
@media screen and (min-width: 1080px) {
    .top-value--list-number {
        margin-top: 0;
        max-width: 104px;
    }
}

.top-value--list-title {
    color: var(--color-dark-blue02);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-top: 15px;
}
@media screen and (min-width: 1080px) {
    .top-value--list-title {
        font-size: 26px;
        line-height: 1.7333333333;
        margin-top: 10px;
    }
}

.top-value--list-text {
    color: #204066;
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    margin-top: 15px;
}
@media screen and (min-width: 1080px) {
    .top-value--list-text {
        font-size: 16px;
        line-height: 2.2;
        margin-top: 10px;
    }
}

.top-value--awards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 50px;
    max-width: 564px;
    margin-inline: auto;
}
@media screen and (min-width: 1080px) {
    .top-value--awards {
        gap: 20px;
        margin-top: 100px;
    }
}

.top-value--text {
    color: var(--color-dark-blue02);
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-top: 25px;
}
@media screen and (min-width: 1080px) {
    .top-value--text {
        margin-top: 40px;
        font-size: 26px;
        line-height: 1.8;
    }
}

.top-value--text-strong {
    font-family: var(--font-shippori);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.1em;
    background: linear-gradient(transparent 80%, var(--color-yellow) 20%);
}
@media screen and (min-width: 375px) {
    .top-value--text-strong {
        font-size: 26px;
    }
}
@media screen and (min-width: 1080px) {
    .top-value--text-strong {
        font-size: 32px;
        line-height: 1.8;
    }
}

.top-value--button {
    margin-top: 25px;
}
@media screen and (min-width: 1080px) {
    .top-value--button {
        margin-top: 40px;
    }
}
