@font-face {
    font-family: "Nunito Sans";
    src: url("../font/Nunito_Sans/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype")
}
@font-face {
    font-family: "Nunito";
    src: url("../font/Nunito/Nunito-VariableFont_wght.ttf") format("truetype")
}
@font-face {
    font-family: "Noto Sans JP";
    src: url("../font/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}

/* ----------- common ----------- */
:root {
    scroll-behavior: smooth;
    transition: .3s;
}
#header {
    position: sticky;
}
#main {
    padding: 0;
}
body {
    font-family: "Hiragino Sans",sans-serif;
    font-weight: 400;
}
.recruit__content {
    width: 93.33333%;
    max-width: 1080px;
    margin-inline: auto;
}
.recruit__sec-ttl--en {
    width: max-content;
    margin: 0 auto 20px;
    font-family: "Nunito Sans",sans-serif;
    font-size: .875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: .08em;
    padding: 8px 9px;
    background: #60c2db;
    border: 1px solid #333;
    border-radius: 10vh;
}
.recruit__sec-ttl {
    font-size: 2.375rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-bottom: 48px;
}
.splide__slide img{
    border-radius: 16px;
}
.splide__buttons {
    width: max-content;
    margin: 20px auto 0;
    height: 24px;
    display: grid;
    align-items: center;
    border-radius: 4px;
    position: relative;
}
.splide__arrows {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top:0;
    z-index: 1;
}
.splide__arrow {
    width: 45px;
    height: 24px;
    background: url(../img/icn_arrow04_sp.svg) no-repeat center/cover;
    border: none;
    padding: 0;
}
.splide__arrow svg {
    display: none;
}
.splide__arrow:disabled {
    opacity: .3;
    cursor: default
}
.splide__arrow--prev {
    scale: -1 1;
}
.splide__arrow svg {
    fill: #60c2db;
}
.splide__pagination {
    gap: 10px;
    padding: 8px 15px;
    margin-inline: 45px;
    position: relative;
    z-index: 2;
}
.splide__pagination__page {
    display: block;
    width: 8px;
    height: 8px;
    background: rgb(0 0 0 /.2);
    border: none;
    padding: 0;
    border-radius: 50%;
}
.splide__pagination__page.is-active {
    background: #60c2db;
}
.recruit__sec__btn  {
    display: block;
    color: #333;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    padding-block: 30px;
    background: #f7e733;
    border-radius: 10vh;
    position: relative;
}
.recruit__sec__btn::after {
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    background: url(../img/icn_arrow.png) no-repeat center center/10px 6px ,#fff;
    border: 1px solid #333;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 32px;
    translate: 0 -50%;
    rotate: -90deg;
    transition: all .3s ease-in-out;
}
.recruit__sec__btn:hover {
    color: #333;
}
.recruit__sec__btn:hover::after {
    translate: 8px -50%;
}
.recruit__faq-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}
.recruit__faq-accortion {
    background: #60c2db;
    color: #fff;
    border-radius: 16px;
}
.recruit__faq-accortion[open] {
    height: 100%;
}
.recruit__faq-accortion__ttl {
    list-style: none;
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 32px 93px 32px 32px;
    position: relative;
    min-height: 112px;
}
.recruit__faq-accortion[open] .recruit__faq-accortion__ttl {
    padding: 32px 93px 24px 32px;
    height: auto;
}
.recruit__faq-accortion__ttl h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .08em;
}
.recruit__faq-accortion__ttl__ico {
    display: block;
    width: 29px;
    height: 29px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 36px;
    right: 32px;
}
.recruit__faq-accortion__ttl__ico::before,
.recruit__faq-accortion__ttl__ico::after {
    content: "";
    display: block;
    width: 13px;
    height: 2px;
    background: #60c2db;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.recruit__faq-accortion__ttl__ico::after {
    rotate: 90deg;
    transition: rotate .3s ease-in-out;
}
.recruit__faq-accortion[open] .recruit__faq-accortion__ttl__ico::after {
    rotate: 0deg;
}
.recruit__faq-accortion__ttl span:first-child {
    color: #f7e733;
    font-size: 2.25rem;
    font-weight: 600;
    font-family: "Nunito Sans",sans-serif;
    line-height: 1;
}
.recruit__faq-accortion__ttl:hover {
    cursor: pointer;
}
.recruit__faq-accortion__ttl::-webkit-details-marker {
	display: none;
}
.recruit__faq-accortion::details-content {
    height: 0;
    opacity: 0;
    transition: height .3s, opacity .3s, content-visibility .3s allow-discrete;
    interpolate-size: allow-keywords;
}
.recruit__faq-accortion[open]::details-content {
    height: auto;
    opacity: 1;
}
.recruit__faq-accortion__content {
    padding-block: 24px 32px;
    margin-inline: 32px;
    border-top: 1px dashed #fff;
}
.recruit__faq-accortion__txt {
    display: flex;
    gap: 14px;
    align-items: start;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: .08em;
}
.recruit__faq-accortion__txt span:first-child {
    font-size: 2.25rem;
    font-weight: 600;
    font-family: "Nunito Sans",sans-serif;
    line-height: .6;
}
.recruit__faq-accortion__txt a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.recruit__faq-accortion__img {
    display: block;
    margin-top: 20px;
}

/* ----------- recruit__anchor ----------- */
.recruit__anchor {
    background: #60c2db;
}
.recruit__anchor__inner {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    max-width: 1080px;
    margin-inline: auto;
}
.recruit__anchor__inner__items a {
    display: block;
    padding-block: 27px 65px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: .08em;
    color: #fff;
    font-size: 1rem;
    position: relative;
}
.recruit__anchor__inner__items--2row a{
    padding-block: 16px 54px;
    position: relative;
}
.recruit__anchor__inner__items a::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background: url(../img/icn_arrow.png) no-repeat center center/10px 6px,#fff;
    border-radius: 50%;
    position: absolute;
    bottom: 16px;
    left: 50%;
    translate: -50% 0;
    transition: .3s ease-out;
}
.recruit__anchor__inner__items:not(:last-child) a::after {
    content: "";
    display: block;
    width: 1px;
    height: 82px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
}
.recruit__anchor__inner__items a:hover::before {
    translate: -50% 8px;
}

/* ----------- recruit-mv ----------- */
.recruit-mv {
    background: url(../img/bg_mv.png) no-repeat center/cover;
}
.recruit-mv__inner {
    max-width: 1400px;
    height: auto;
    aspect-ratio: 1400/530;
    margin-inline: auto;
    position: relative;
}
.recruit-mv__ttl {
    color: #55bfda;
    font-size: min(4.5715vw,64px);
    font-family: "Noto Sans JP",sans-serif;
    font-feature-settings: "palt";
    font-weight: 600;
    line-height: 1;
    letter-spacing: .12em;
    position: absolute;
    top: 7.521%;
    left: 2.2143%;
    z-index: 10;
    text-shadow: 0 0 min(1.14286vw,16px) rgb(243 250 253),
                min(.142857vw,2px) min(.142857vw,2px) min(1.14286vw,16px) rgb(243 250 253),
                min(.285714vw,4px) min(.285714vw,4px) min(1.14286vw,16px) rgb(243 250 253),
                min(.4285714vw,6px) min(.4285714vw,6px) min(1.14286vw,16px) rgb(243 250 253),
                min(.4285714vw,6px) min(.4285714vw,6px) min(1.14286vw,16px) rgb(243 250 253),
                min(-.142857vw,-2px) 0 min(1.14286vw,16px) rgb(243 250 253),
                min(-.142857vw,-2px) 0 min(1.14286vw,16px) rgb(243 250 253),
                min(-.142857vw,-2px) 0 min(1.14286vw,16px) rgb(243 250 253),
                min(-.142857vw,-2px) min(-.142857vw,-2px) min(1.14286vw,16px) rgb(243 250 253),
                min(-.285714vw,-4px) min(-.285714vw,-4px) min(1.14286vw,16px) rgb(243 250 253),
                min(-.285714vw,-4px) min(-.285714vw,-4px) min(1.14286vw,16px) rgb(243 250 253),
                min(-.4285714vw,-6px) min(-.4285714vw,-6px) min(1.14286vw,16px) rgb(243 250 253),
                min(-.4285714vw,-6px) min(-.4285714vw,-6px) min(1.14286vw,16px) rgb(243 250 253);
}
.recruit-mv__ttl__split {
    display: inline-block;
    opacity: 0;
    animation-name: mv-txt-split;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
.recruit-mv__ttl__split:last-child {
    margin-left: -.1em;
}
.loaded {
    .recruit-mv__ttl__split:first-child {
        animation-delay: 0.2s;
    }
    .recruit-mv__ttl__split:nth-child(2) {
        animation-delay: 0.3s;
    }
    .recruit-mv__ttl__split:nth-child(3) {
        animation-delay: 0.4s;
    }
    .recruit-mv__ttl__split:nth-child(4) {
        animation-delay: 0.5s;
    }
    .recruit-mv__ttl__split:nth-child(5) {
        animation-delay: 0.6s;
    }
    .recruit-mv__ttl__split:nth-child(6) {
        animation-delay: 0.7s;
    }
    .recruit-mv__ttl__split:nth-child(7) {
        animation-delay: 0.8s;
    }
    .recruit-mv__ttl__split:nth-child(8) {
        animation-delay: 0.9s;
    }
    .recruit-mv__ttl__split:nth-child(9) {
        animation-delay: 1s;
    }
    .recruit-mv__ttl__split:nth-child(10) {
        animation-delay: 1.1s;
    }
    .recruit-mv__ttl__split:nth-child(11) {
        animation-delay: 1.2s;
    }
    .recruit-mv__ttl__split:nth-child(12) {
        animation-delay: 1.3s;
    }
    .recruit-mv__ttl__split:nth-child(13) {
        animation-delay: 1.4s;
    }
    .recruit-mv__ttl__split:last-child {
        animation-delay: 1.5s;
    }
}
@keyframes mv-txt-split {
    0% {
        opacity: 0;
        scale: 1.2;
        translate: 20px;
    }
    100% {
        opacity: 1;
        scale: 1;
        translate: 0;
    }
}
.recruit-mv__animate {
    opacity: 0;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    will-change: opacity;
}
.recruit-mv__img-wrapper {
    position: absolute;
}
.recruit-mv__img-wrapper--01 {
    width: 39.5715%;
    top: 13.774%;
    left: 4.143%;
}
.recruit-mv__img-wrapper--02 {
    width: 30.7143%;
    bottom: 5.0944%;
    right: 24.5%;
}
.recruit-mv__img-wrapper--03 {
    width: 18%;
    top: 8.6982%;
    right: 10.2143%;
    aspect-ratio: 504 / 434;
}
.loaded {
    .recruit-mv__animate {
        opacity: 1;
    }
    .recruit-mv__animate--01 {
        transition-delay: 2s;
    }
    .recruit-mv__animate--02 {
        transition-delay: 3s;
    }
    .recruit-mv__animate--03 {
        transition-delay: 4s;
    }
}
.recruit-mv__img--01 {
    clip-path: url(#clip01);
}
.recruit-mv__img--02 {
    clip-path: url(#clip02);
}
.recruit-mv__img--03 {
    clip-path: url(#clip03);
}
.recruit-mv__clip-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.recruit-mv__list {
    display: grid;
    width: min(15.786%,220px);
    gap: 7px;
    position: absolute;
    bottom: 7.17%;
    right: 4.5%;
}
.recruit-mv__btn {
    display: block;
    width: 100%;
    padding: 11.8182%;
    border-radius: 8px;
    color: #fff;
    font-size: min(11.06667vw,18px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .08em;
    position: relative;
}
.recruit-mv__btn--01 {
    background: #60C2DB;
}
.recruit-mv__btn--02 {
    background: #306AC0;
}
.recruit-mv__btn::before {
    content: "";
    display: block;
    width: 11.579%;
    height: auto;
    aspect-ratio: 1/1;
    background: url(../img/icon_arrow02.svg) no-repeat center right 45%/31.8182% auto,#fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 7.3685%;
    translate: 0 -50%;
}
.recruit-mv__btn:hover {
    color: #fff;
}

/* ----------- recruit__sec--intro ----------- */
.recruit__sec--intro {
    padding-block: 44px;
}
.recruit__sec--intro__ttl {
    color: #306AC0;
    font-size: 2.875rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.07em;
    text-align: center;
    margin-bottom: 24px;
}
.recruit__sec--intro__txt {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-align: center;
}

/* ----------- recruit__sec--staff ----------- */
.recruit__sec--staff {
    background: #fdf5f6;
    padding-block: 88px 92px;
    scroll-margin-top: 82px;
}
.recruit__sec--staff .recruit__sec-ttl {
    margin-bottom: 62px;
}
.recruit__sec--staff__splide > .splide__track {
    overflow: visible;
}
.splide.is-initialized:not(.is-active) .recruit__sec--staff__list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 70px 40px;
}
.recruit__sec--staff__list__items > button {
    color: #333;
    font-family: inherit;
    text-align: left;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 19px 19px 24px;
    display: grid;
    grid-template-columns: 100%;
    align-content: start;
    height: 100%;
    box-shadow: 8px 8px 0 rgb(96 194 219/.36);
    background: url(../img/icn_arrow03.svg) no-repeat right 19px bottom 24px/26px,#fff;
    transition: .3s;
}
.recruit__sec--staff__list__items > button:hover {
    translate: 8px 8px;
    box-shadow: none;
    cursor: pointer;
}
.recruit__sec--staff__list__items__img {
    display: block;
    margin-bottom: -14px;
    border-radius: 10px;
    aspect-ratio: 293/250;
    object-fit: cover;
}
.recruit__sec--staff__list__items__tag {
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .06em;
    display: block;   
    width: fit-content;
    padding: 3px 8px;
    background: #60C2DB;
    border-radius: 0 4px 4px 0;
    translate: -19px;
    margin-bottom: 12px;
}
.recruit__sec--staff__list__items__label {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .06em;
}
.recruit__sec--staff__list__items__modal {
    width: 93.33%;
    max-width: 900px;
    max-height: calc(100vh - 96px);
    margin-inline: auto;
    padding: 120px 48px 48px;
    border: none;
    border-radius: 24px;
    position: fixed;
    color: #403d39;
    opacity: 1;
    transition: .3s opacity allow-discrete;
}
@starting-style {
    .recruit__sec--staff__list__items__modal {
        opacity: 0;
    }
}

.recruit__sec--staff__list__items__modal::backdrop {
    background: #5c5c5c;
}
.recruit__sec--staff__list__items__modal_close-btn--top {
    display: block;
    width: 48px;
    height: 48px;
    background: none;
    border: 2px solid #403d39;
    border-radius: 50%;
    position: absolute;
    top: 48px;
    right: 48px;
    transition: background-color .3s ease-in-out;
}
.recruit__sec--staff__list__items__modal_close-btn--top::before,
.recruit__sec--staff__list__items__modal_close-btn--top::after {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #403d39;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: background-color .3s ease-in-out;
}
.recruit__sec--staff__list__items__modal_close-btn--top::before {
    rotate: 45deg;
}
.recruit__sec--staff__list__items__modal_close-btn--top::after {
    rotate: -45deg;
}
.recruit__sec--staff__list__items__modal_close-btn--top:hover {
    cursor: pointer;
    background: #403d39;
}
.recruit__sec--staff__list__items__modal_close-btn--top:hover::before,
.recruit__sec--staff__list__items__modal_close-btn--top:hover::after {
    background: #fff;
}
.recruit__sec--staff__list__items__modal > article {
    margin-bottom: 64px;
}
.recruit__sec--staff__list__items__modal > article > hgroup {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.recruit__sec--staff__list__items__modal__ttl__job-comment {
    font-size: 1rem;
    letter-spacing: .1em;
    margin-bottom: 48px;
}
.recruit__sec--staff__list__items__modal__ttl__join {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .08em;
    background: #60c2db;
    border-radius: 4px;
    padding: 9px 8px 7px;
}
.recruit__sec--staff__list__items__modal__ttl__job {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .08em;
}
.recruit__sec--staff__list__items__modal__sec hgroup {
    border-bottom: 1px solid #60c2db;
    margin-bottom: 32px;
}
.splide.is-initialized:not(.is-active) .recruit__sec--staff__list__items__modal__splide .splide__list {
    display: flex;
}
.recruit__sec--staff__list__items__modal__splide {
    max-width: 740px;
    margin: 0 auto 48px;
}
.recruit__sec--staff__list__items__modal__splide .splide__buttons {
    height: auto;
    margin-top: 10px;
}
.recruit__sec--staff__list__items__modal__splide img {
    border-radius: 0;
}
.recruit__sec--staff__list__items__modal__splide figcaption{
    font-size: 1rem;
    margin-top: 12px;
}
.recruit__sec--staff__list__items__modal__sec__ttl--ja {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-bottom: 6px;
}
.recruit__sec--staff__list__items__modal__sec__ttl--en {
    color: #60c2db;
    font-weight: 800;
    font-size: .75rem;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.recruit__sec--staff__list__items__modal__sec__ttl--en::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #60c2db;
    border-radius: 50%;
    margin: 0 6px 1px 0;
}
.recruit__sec--staff__list__items__modal__sec__qa {
    margin-bottom: 24px;
}
.recruit__sec--staff__list__items__modal__sec__qa:last-of-type {
    margin-bottom: 48px;
}
.recruit__sec--staff__list__items__modal__sec__qa__q {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    line-height: 1.8;
    letter-spacing: .1em;
    margin-bottom: 24px;
}
.recruit__sec--staff__list__items__modal__sec__qa__q span {
    display: block;
    background: #fff100;
    border: 1px solid #000;
    border-radius: 10vh;
    padding: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "Nunito Sans",sans-serif;
    line-height: 1.2;
    letter-spacing: .08em;
    text-align: center;
}
.recruit__sec--staff__list__items__modal__sec__qa__a {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: .1em;
}
.recruit__sec--staff__list__items__modal__sec__qa__a--col {
    display: grid;
    gap: 0 1em;
    grid-template-columns: 7em 1fr;
}
.recruit__sec--staff__list__items__modal__sec:has(.recruit__sec--staff__list__items__modal__sec__time-line) hgroup {
    margin-bottom: 48px;
}
.recruit__sec--staff__list__items__modal__sec__time-line {
    position: relative
}
.recruit__sec--staff__list__items__modal__sec__time-line::after {
    content: "";
    display: block;
    width: 3px;
    height: calc(100% + 22px);
    background: #5082cc;
    position: absolute;
    left: 115px;
    top: -14px;
}
.recruit__sec--staff__list__items__modal__sec__time-line__row {
    display: flex;
    gap: 24px;

    margin-bottom: 32px;
}
.recruit__sec--staff__list__items__modal__sec__time-line__row:last-of-type {
    margin-bottom: 0;
}
.recruit__sec--staff__list__items__modal__sec__time-line__row__time {
    width: 124px;
    color: #5082cc;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "Nunito Sans",sans-serif;
    line-height: 1.2;
    letter-spacing: .08em;
    position: relative;
}
.recruit__sec--staff__list__items__modal__sec__time-line__row__time::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: #5082cc;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
}
.recruit__sec--staff__list__items__modal__sec__time-line__row:first-child .recruit__sec--staff__list__items__modal__sec__time-line__row__time {
    padding-left: .6em;
}
.recruit__sec--staff__list__items__modal__sec__time-line__row__work {
    flex: 1;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: .08em;
}
.recruit__sec--staff__list__items__modal__sec__time-line__row__work span {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-top: 8px;
}
.recruit__sec--staff__list__items__modal_close-btn--bottom {
    display: block;
    width: 100%;
    max-width: 173px;
    margin-inline: auto;
    padding-block: 8px;
    background: none;
    border-radius: 10vh;
    border: 1px solid #000;
    color: #403D39;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: .08em;
    position: relative;
    cursor: pointer;
    transition: all .3s ease-in-out,;
}
.recruit__sec--staff__list__items__modal_close-btn--bottom:hover {
    background: #403d39;
    color: #fff;
}
.recruit__sec--staff__list__items__modal_close-btn--bottom::before,
.recruit__sec--staff__list__items__modal_close-btn--bottom::after {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background: #403d39;
    position: absolute;
    top: 50%;
    left: 16px;
    translate: 0 -50%;
    transition: background-color .3s ease-in-out;
}
.recruit__sec--staff__list__items__modal_close-btn--bottom:hover::before,
.recruit__sec--staff__list__items__modal_close-btn--bottom:hover::after {
    background: #fff;
}
.recruit__sec--staff__list__items__modal_close-btn--bottom::before {
    rotate: 45deg;
}
.recruit__sec--staff__list__items__modal_close-btn--bottom::after {
    rotate: -45deg;
}

/* ----------- recruit__sec--message ----------- */
.recruit__sec--message {
    padding-block: 88px;
    scroll-margin-top: 82px;
}
.recruit__sec--message__col{
    display: grid;
    grid-template-columns: 1fr 55.74%;
    gap: 0 64px;
}
.recruit__sec--message__col__img img{
    border-radius: 16px;
}
.recruit__sec--message__col__img figcaption {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: .1em;
    text-align: left;
    margin-top: 32px;
}
.recruit__sec--message__col__img figcaption span {
    display: block;
    color: #868686;
    font-size: .875rem;
    font-weight: 400;
    letter-spacing: .1em;
}
.recruit__sec--message__col__txt p {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: .1em;
    margin-bottom: 1.8em;
}
.recruit__sec--message__col__txt p:last-child {
    margin-bottom: 0;
}

/* ----------- recruit__sec--company ----------- */
.recruit__sec--company {
    background: #fdf5f6;
    padding-block: 88px;
    scroll-margin-top: 82px;
}
.recruit__sec--company-section {
    margin-bottom: 48px;
}
.recruit__sec--company-section__ttl {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    letter-spacing: .08em;
    background: url(../img/bg_company_border.png) no-repeat left center/42.56% 1px,url(../img/bg_company_border.png) no-repeat right center/42.56% 1px;
    margin-bottom: 32px;
}
.recruit__sec--company__list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.recruit__sec--company__list__items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    padding: 24px;
    border: 1px solid #333;
    border-radius: 24px;
}
.recruit__sec--company__list__items__ttl {
    display: inline-block;
    width: fit-content;
    border-radius: 8px;
    background: #60c2db;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .08em;
    padding: 10px;
    margin-bottom: 17px;
}
.recruit__sec--company__list__items:nth-child(even) .recruit__sec--company__list__items__ttl {
    background: #5082cc;
}
.recruit__sec--company__list__items__txt {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.2;
    text-align: center;
}
.recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(4) .recruit__sec--company__list__items__txt {
    margin-top: -12px;
}
.recruit__sec--company__list__items__txt--ratio {
    display: flex;
    justify-content: center;
    align-items: end;
}
.recruit__sec--company__list__items__txt--ratio:not(:has(.recruit__sec--company__list__items__txt--ratio__mark)) {
    gap: 15px;
    margin-top: -16px;
}
.recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(6) .recruit__sec--company__list__items__txt--ratio {
    margin-top: -30px;
}
.recruit__sec--company-section--03 .recruit__sec--company__list__items:first-child .recruit__sec--company__list__items__txt--ratio__items:first-child {
    translate: -10px;
}
.recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt--ratio {
    translate: 0 -10px;
}
.recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt--ratio__label {
    margin-bottom: -10px;
}
.recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(3) .recruit__sec--company__list__items__txt--ratio {
    translate: 0 -10px;
}
.recruit__sec--company__list__items__txt__large-txt {
    font-size: 4.75rem;
    font-family: "Nunito Sans",sans-serif;
}
.recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt__large-txt {
    font-size: min(5.492vw,4.75rem);
}
.recruit__sec--company__list__items__txt__large-txt span:not(.js_count-up) {
    font-size: 3.875rem;
    font-family: "Hiragino Sans",sans-serif;
}
.recruit__sec--company__list__items__txt__large-txt span.recruit__sec--company__list__items__txt__large-txt__mark {
    font-size: 1.75rem;
}
.recruit__sec--company-section--03  .recruit__sec--company__list__items:first-child .recruit__sec--company__list__items__txt__large-txt{
font-size: 4rem;
}
.recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(6) .recruit__sec--company__list__items__txt__large-txt {
    font-size: 4.25rem;
}
.recruit__sec--company__list__items__txt--ratio__label {
    display: block;
    font-size: 1.0625rem;
}
.recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(6) .recruit__sec--company__list__items__txt--ratio__label {
    margin-bottom: -8px;
}
.recruit__sec--company-section--03 .recruit__sec--company__list__items:first-child .recruit__sec--company__list__items__txt--ratio__label {
    translate: -14px;
}
.recruit__sec--company__list__items__txt--ratio__mark {
    font-size: 4.5rem;
    font-family: "Nunito",sans-serif;
    margin: 0 .5em 6px;
}
.recruit__sec--company__list__items__txt__note {
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.2;
    display: block;
    translate: 0 -12px;
    margin-top: 15px;
}
.recruit__sec--company__list__items__img {
    margin-inline: auto;
    text-align: center;
}
.recruit__sec--company__list__items__img--01 {
    max-width: 246px;
    margin-top: -8px;
}
.recruit__sec--company__list__items__img--02 {
    max-width: 158px;
}
.recruit__sec--company__list__items__img--03 {
    max-width: 270px;
}
.recruit__sec--company__list__items__img--04 {
    max-width: 193px;
}
.recruit__sec--company__list__items__img--05 {
    max-width: 256px;
    margin-top: -9px;
}
.recruit__sec--company__list__items__img--06 {
    max-width: 180px;
    margin-bottom: 15px;
    translate: 16px;
}
.recruit__sec--company__list__items__img--07 {
    max-width: 152px;
    margin-top: 15px;
}
.recruit__sec--company__list__items__img--08 {
    max-width: 220px;
    margin-top: 20px;
}
.recruit__sec--company__list__items__img--09 {
    max-width: 190px;
    margin-top: 5px;
}
.recruit__sec--company__list__items__img--10 {
    max-width: 255px;  
    img {
        translate: 0 -14px;
    }
}
.recruit__sec--company__list__items__img--11 img {
    max-width: 150px;
    margin: 0 auto 0;
    translate: 0 -5px;
}
.recruit__sec--company__list__items__img--12 img {
    max-width: 255px;
    width: 100%;
    margin: 0 auto 0;
    translate: 0 -10px;
}
.recruit__sec--company__list__items__img figcaption {
    font-size: .75rem;
    font-weight: 500;
    font-family: "Noto Sans JP",sans-serif;
    text-align: center;
    margin-top: 10px;
}
.recruit__sec--company .recruit__sec__btn  {
    max-width: 800px;
    margin-inline: auto;
}

/* ----------- recruit__sec--office ----------- */
.recruit__sec--office {
    padding-block: 88px 272px;
    scroll-margin-top: 82px;
}
.recruit__sec--office .splide::before {
    content: "";
    display: block;
    width: 77.14vw;
    max-width: 1080px;
    height: 23.29vw;
    background: rgb(196 228 238/.6);
    border-radius: 16px;
    position: absolute;
    top: 70px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
}

/* ----------- recruit__sec--benefit ----------- */
.recruit__sec--benefit {
    background: #fdf5f6;
    border-radius: 48px;
    padding-block: 67px 88px;
    position: relative;
    scroll-margin-top: 228px;
}
.recruit__sec--benefit::before {
    content: "";
    display: block;
    width: 669px;
    height: 669px;
    background: inherit;
    border-radius: 50%;
    position: absolute;
    top: -148px;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
}
.recruit__sec--benefit hgroup {
    margin-top: -156px;
}
.recruit__sec--benefit .recruit__sec-ttl {
    margin-bottom: 59px;
}
.recruit__sec--benefit__col {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 48px 40px;
}
.recruit__sec--benefit__col__items__img {
    border: 1px solid #333;
    border-radius: 50%;
    overflow: hidden;
    max-width: 228px;
    margin: 0 auto 24px;
}
.recruit__sec--benefit__col__items__ttl {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .08em;
    text-align: center;
    margin-bottom: 24px;
}
.recruit__sec--benefit__col__items__txt {
    font-size: .9375rem;
    line-height: 1.5;
    letter-spacing: .08em;
}

/* ----------- recruit__sec--new-graduate ----------- */
.recruit__sec--new-graduate {
    padding-block: 88px;
    scroll-margin-top: 82px;
}
.recruit__sec--new-graduate__lead-txt {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: .1em;
    text-align: center;
    margin-bottom: 48px;
}
.recruit__sec--new-graduate__btn {
    display: block;
    width: fit-content;
    padding: 21px 70px;
    margin: 0 auto 88px;
    border: 1px solid #333;
    border-radius: 16px;
    img {
        max-width: 205px;
    }
}

/* ----------- recruit__sec--experienced ----------- */
.recruit__sec--experienced {
    padding-block: 88px;
    background: #fdf5f6;
    scroll-margin-top: 82px;
}
.recruit__sec--experienced .recruit__sec-ttl--en {
    background: #306AC0;
}
.recruit__sec--experienced__box {
    background: #fff;
    border: 1px solid #333;
    border-radius: 24px;
    padding: 56px;
    margin-bottom: 88px;
}
.recruit__sec--experienced__box__sec:not(:last-of-type) {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #333;
}
.recruit__sec--experienced__box__sec__ttl {
    font-size: 1.5rem;
    line-height: 1.2;
    letter-spacing: .08em;
    font-weight: 600;
    padding-left: 12px;
    margin-bottom: 40px;
    border-left: 5px solid #5082cc;
}
.recruit__sec--experienced__box__sec__lead-txt {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: .08em;
    margin-bottom: 16px;
    a {
        color: #487dc9;
        text-decoration: underline;
        text-underline-offset: 5px;
    }
}
.recruit__sec--experienced__box__sec__lead-txt--02 {
    font-weight: 400;
}
.recruit__sec--experienced__box__sec__list__ttl,
.recruit__sec--experienced__box__sec__list__dtl {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: .08em;
}
.recruit__sec--experienced__box__sec__dl__row:not(:last-child) {
    margin-bottom: 24px;
}
.recruit__sec--experienced__box__sec__dl__row__ttl {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-bottom: 10px;
}
.recruit__sec--experienced__box__sec__dl__row__txt {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: .08em;
}
.recruit__sec--experienced .recruit__sec__btn {
    width: 100%;
}
.recruit__sec--experienced__faq .recruit__faq-accortion {
    background: #306AC0;
}
.recruit__sec--experienced__faq .recruit__faq-accortion__ttl__ico::before,
.recruit__sec--experienced__faq .recruit__faq-accortion__ttl__ico::after {
    background: #306AC0;
}
.recruit__sec--experienced__btns {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    margin-top: 88px;
}

/* ----------- recruit__fixed__banner ----------- */
.recruit__fixed__banner {
    display: none;
    background: #c4e4ee;
    box-shadow: 0 1px 9px rgb(0 0 0/.2);
    position: fixed;
    bottom: 10px;
    right: 0;
}
.recruit__fixed__banner a {
    display: block;
    color: #333;
    padding: 13px 40px 13px 16px;
}
.recruit__fixed__banner.visible {
    display: block;
}
.recruit__fixed__banner:hover {
    color: #333;
}
.recruit__fixed__banner__txt {
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.recruit__fixed__banner__close-btn {
    width: 16px;
    height: 16px;
    padding: 0;
    background: none;
    border: none;
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer;
}
.recruit__fixed__banner__close-btn::before,
.recruit__fixed__banner__close-btn::after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: #909090;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.recruit__fixed__banner__close-btn::before {
    rotate: 45deg;
}
.recruit__fixed__banner__close-btn::after {
    rotate: -45deg;
}
.pc {
    display: block;
}
.sp {
    display: none;
}

@media screen and (max-width: 960px) {
    .recruit__sec--staff__list__items__img figcaption {
        font-size: 1.25rem;
        padding: 12px 0 6px 12px;
        border-radius: 16px 0 0 ;
    }
    .recruit__sec--staff__list__items__img figcaption span {
        font-size: .875rem;
    }

    /* ----------- recruit__sec--company ----------- */
    .recruit__sec--company__list {
        grid-template-columns: repeat(2,1fr);
    }
    .recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt__large-txt {
        font-size: 4.75rem;
    }

    /* ----------- recruit__sec--benefit ----------- */
    .recruit__sec--benefit__col {
        grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width: 888px ) {
    .recruit-mv__btn {
        font-size: min(1.576577vw,14px);
    }
}

@media screen and (max-width: 480px) {

    /* ----------- common ----------- */
    #main {
        padding: 0;
    }
    .recruit__sec-ttl {
        font-size: 1.625rem;
        margin-bottom: 40px;
    }
    .recruit__sec-ttl--en {
        font-size: .625rem;
        margin-bottom: 16px;
    }
    .recruit__sec__btn {
        font-size: 1rem;
        line-height: 1.4;
        letter-spacing: .08em;
        padding-block: 15px;
    }
    .recruit__sec__btn::after {
        right: 23px;
    }
    .recruit__faq-list {
        grid-template-columns: 100%;
    }
    .recruit__faq-accortion__ttl {
        padding: 18px 50px 18px 18px;
        min-height: 0;
    }
    .recruit__faq-accortion[open] .recruit__faq-accortion__ttl {
        padding: 18px 50px 18px 18px;
    }
    .recruit__faq-accortion__ttl h3 {
        font-size: .875rem;
    }
    .recruit__faq-accortion__txt {
        font-size: .875rem;
    }
    .recruit__faq-accortion__ttl__ico {
        width: 23px;
        height: 23px;
        top: 50%;
        translate: 0 -50%;
        right: 18px;
    }
    .recruit__faq-accortion__ttl__ico::before,
    .recruit__faq-accortion__ttl__ico::after {
        width: 10px;
    }
    .recruit__faq-accortion__content {
        margin-inline: 18px;
        padding-block: 18px;
    }

    /* ----------- mv ----------- */
    .recruit-mv {
        background: url(../img/bg_mv_sp.png) no-repeat center/cover;
    }
    .recruit-mv {
        background: url(../img/bg_mv.png) no-repeat center/cover;
    }
    .recruit-mv__inner {
        max-width: 1400px;
        height: auto;
        aspect-ratio: 750/755;
        margin-inline: auto;
        position: relative;
    }
    .recruit-mv__ttl {
        color: #55bfda;
        font-size: 9.3334vw;
        line-height: 1.25;
        position: absolute;
        top: 3.974%;
        left: 4.26667%;
        z-index: 10;
        text-shadow: 0 0 min(1.066667vw,4px) rgb(243 250 253),
                    min(.533334vw,2px) min(.533334vw,2px) min(1.066667vw,4px) rgb(243 250 253),
                    min(1.066667vw,4px) min(1.066667vw,4px) min(1.066667vw,4px) rgb(243 250 253),
                    min(-.533334vw,-2px) 0 min(1.066667vw,4px) rgb(243 250 253),
                    min(-.533334vw,-2px) 0 min(1.066667vw,4px) rgb(243 250 253),
                    min(-.533334vw,-2px) 0 min(1.066667vw,4px) rgb(243 250 253),
                    min(-.533334vw,-2px) min(-.533334vw,-2px) min(1.066667vw,4px) rgb(243 250 253),
                    min(-1.066667vw,-4px) min(-1.066667vw,-4px) min(1.066667vw,4px) rgb(243 250 253),
                    min(-1.066667vw,-4px) min(-1.066667vw,-4px) min(1.066667vw,4px) rgb(243 250 253);
    }
    .recruit-mv__img-wrapper--01 {
        width: 63.334%;
        top: 21.457%;
        left: 3.334%;
    }
    .recruit-mv__img-wrapper--02 {
        width: 50%;
        bottom: 2.1193%;
        right: 2.334%;
    }
    .recruit-mv__img-wrapper--03 {
        width: 25.334%;
        top: 35.563%;
        right: 4.134%;
    }
    .recruit-mv__list {
        width: max(32.8%,123px);
        gap: 5px;
        bottom: 6.358%;
        left: 3.734%;
    }
    .recruit-mv__btn {
        padding: 8px 13px;
        font-size: .75rem;
    }
    .recruit-mv__btn::before {
        width: 7px;
        height: 10px;
        background: url(../img/icon_arrow02_sp.svg) no-repeat center/cover;
        right: 9px;
    }

    /* ----------- recruit__anchor ----------- */
    .recruit__anchor {
        background: #fff;
        padding-top: 10px;
    }
    .recruit__anchor__inner {
        width: 93.334%;
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }
    .recruit__anchor__inner__items {
        width: calc((100% - 8px) / 3);
    }
    .recruit__anchor__inner__items:nth-child(-n+2) {
        width: calc(calc(100% - 4px) / 2);
    }
    .recruit__anchor__inner__items a {
        display: grid;
        align-items: center;
        background: #60c2db;
        font-size: .75rem;
        font-weight: 500;
        line-height: 1.4;
        letter-spacing: .04em;
        text-align: left;
        padding: 2px 24px 2px 8px;
        border-radius: 8px;
        min-height: 50px;
    }
    .recruit__anchor__inner__items a::before {
        width: 10px;
        height: 7px;
        background: url(../img/icn_arrow-white.png) no-repeat center/cover;
        bottom: 50%;
        left: auto;
        right: 8px;
        translate: 0 50%;
    }
    .recruit__anchor__inner__items a:hover::before {
        translate: 0 8px;
    }
    .recruit__anchor__inner__items:not(:last-child) a::after {
        display: none;
    }
    .recruit__anchor__inner__items__small-txt {
        font-size: .625rem;
    }

    /* ----------- recruit__sec--intro ----------- */
    .recruit__sec--intro {
        padding-block: 61px 29px;
    }
    .recruit__sec--intro__box {
        border-width: 1px;
        border-radius: 6px;
        padding: 0 12px 15px 13px;
    }
    .recruit__sec--intro__ttl {
        font-size: 1.4375rem;
        letter-spacing: 0.05em;
        margin-bottom: 21px;
    }
    .recruit__sec--intro__txt {
        font-size: 1rem;
        text-align: left;
    }

    /* ----------- recruit__sec--staff ----------- */
    .recruit__sec--staff {
        padding-block: 64px;
        scroll-margin-top: 55px;
    }
    .recruit__sec--staff .recruit__sec-ttl {
        margin-bottom: 44px;
    }
    .recruit__sec--staff__list {
        gap: 0;
    }
    .recruit__sec--staff__splide {
        display: grid;
        grid-template-columns: 100%;
    }
    .recruit__sec--staff__splide > .splide__track {
        padding-bottom: 6px;
        overflow: hidden;
    }
    .recruit__sec--staff__splide > .splide__buttons {
        order: 2;
        margin-top: 50px;
    }
    .recruit__sec--staff__list__items > button {
        padding: 14px 14px 18px;
        box-shadow: 6px 6px 0 rgb(96 194 219/.36);
        background-size: 20px;
        background-position: right 15px bottom 20px;
    }
    .recruit__sec--staff__list__items > button:hover {
        box-sizing: 0;
        translate: 0 6px;
    }
    .recruit__sec--staff__list__items__tag {
        color: #fff;
        font-size: .8125rem;
        translate: -14px;
        margin-bottom: 10px;
    }
    .recruit__sec--staff__list__items__label {
        font-size: 1.125rem;
    }
    .recruit__sec--staff__list__items__modal {
        width: 93.33333%;
        padding: 78px 20px 20px;
    }
    .recruit__sec--staff__list__items__modal_close-btn--top {
        width: 34px;
        height: 34px;
        top: 20px;
        right: 20px;
    }
    .recruit__sec--staff__list__items__modal_close-btn--top::before,
    .recruit__sec--staff__list__items__modal_close-btn--top::after {
        width: 14px;
    }
    .recruit__sec--staff__list__items__modal > article {
        margin-bottom: 48px;
    }
    .recruit__sec--staff__list__items__modal > article > hgroup {
        gap: 10px;
        align-items: start;
    }
    .recruit__sec--staff__list__items__modal__ttl__join {
        font-size: .875rem;
        padding: 8px;
    }
    .recruit__sec--staff__list__items__modal__ttl__job {
        font-size: 1.5rem;
        line-height: 1.2;
        letter-spacing: .08em;
        flex: 1;
    }
    .recruit__sec--staff__list__items__modal__ttl__job-comment {
        font-size: .875rem;
        margin-bottom: 32px;
    }
    .recruit__sec--staff__list__items__modal__splide {
        margin-bottom: 32px;
    }
    .recruit__sec--staff__list__items__modal__splide figcaption {
        font-size: .875rem;
    }
    .recruit__sec--staff__list__items__modal__sec__ttl--ja {
        font-size: 1.25rem;
        letter-spacing: .08em;
        line-height: 1.2;
    }
    .recruit__sec--staff__list__items__modal__sec__qa__q {
        font-size: 1rem;
        line-height: 1.4;
        letter-spacing: .1em;
    }
    .recruit__sec--staff__list__items__modal__sec__qa__q span{
        font-size: 1rem;
    }
    .recruit__sec--staff__list__items__modal__sec__qa__a {
        font-size: .875rem;
    }
    .recruit__sec--staff__list__items__modal__sec__qa:last-of-type {
        margin-bottom: 32px;
    }
    .recruit__sec--staff__list__items__modal__sec:has(.recruit__sec--staff__list__items__modal__sec__time-line) hgroup {
        margin-bottom: 32px;
    }
    .recruit__sec--staff__list__items__modal__sec__time-line::after {
        left: 82px;
    }
    .recruit__sec--staff__list__items__modal__sec__time-line__row {
        gap: 14px;
    }
    .recruit__sec--staff__list__items__modal__sec__time-line__row__time {
        width: 92px;
        font-size: 1rem;
        line-height: 1.2;
        letter-spacing: .08em;
    }
    .recruit__sec--staff__list__items__modal__sec__time-line__row__work {
        font-size: 1rem;
        letter-spacing: 1.2;
        letter-spacing: .08em;
    }
    .recruit__sec--staff__list__items__modal__sec__time-line__row__work span {
        font-size: .875rem;
    }

    /* ----------- recruit__sec--message ----------- */
    .recruit__sec--message {
        padding-block: 64px;
        scroll-margin-top: 55px;
    }
    .recruit__sec--message__col {
        grid-template-columns: 100%;
        gap: 48px;
    }
    .recruit__sec--message__col__img figcaption {
        font-size: 1rem;
        margin-top: 24px;
    }
    .recruit__sec--message__col__img figcaption span {
        font-size: .875rem;
    }
    .recruit__sec--message__col__txt {
        width: 97.14285%;
        margin-inline: auto;
    }
    .recruit__sec--message__col__txt__ttl {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    .recruit__sec--message__col__txt p {
        font-size: .9325rem;
        line-height: 1.8;
        letter-spacing: .1em;
    }
    .recruit__sec--message__col__txt p:last-child {
        margin-bottom: 0;
    }

    /* ----------- recruit__sec--office ----------- */
    .recruit__sec--company {
        padding-block: 64px;
        scroll-margin-top: 55px;
    }
    .recruit__sec--company-section__ttl {
        width: max-content;
        font-size: 1rem;
        padding-bottom: 8px;
        background: url(../img/bg_company_border.png) no-repeat bottom left/100% 1px;
        margin: 0 auto 24px;
    }
    .recruit__sec--company__list {
        gap: 10px;
    }
    .recruit__sec--company__list__items {
        padding: 11px;
        border-radius: 16px;
    }
    .recruit__sec--company__list__items__ttl {
        font-size: .875rem;
        font-feature-settings: "palt";
        letter-spacing: .04em;
        padding: 4px 8px;
        margin-bottom: 6px;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:last-child .recruit__sec--company__list__items__ttl {
        font-size: .8125rem;
        letter-spacing: 0;
    }
    .recruit__sec--company__list__items__txt {
        font-size: 1rem;
    }
    .recruit__sec--company__list__items__txt__large-txt {
        font-size: 2.125rem;
    }
    .recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt__large-txt {
        font-size: 2.125rem;
    }
    .recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(4) .recruit__sec--company__list__items__txt {
        margin: 0;
    }
    .recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(6) .recruit__sec--company__list__items__txt__large-txt {
        font-size: 1.75rem;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:first-child .recruit__sec--company__list__items__txt__large-txt {
        font-size: 2.125rem;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt__large-txt {
        font-size: 1.5rem;
    }
    .recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(6) .recruit__sec--company__list__items__txt--ratio {
        margin-top: -15px;
    }
    .recruit__sec--company__list__items__txt--ratio:not(:has(.recruit__sec--company__list__items__txt--ratio__mark)) {
        margin-top: 0;
    }
    .recruit__sec--company__list__items__txt--ratio__items:has(.recruit__sec--company__list__items__txt__large-txt__mark) .recruit__sec--company__list__items__txt__large-txt {
        line-height: 1;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:first-child .recruit__sec--company__list__items__txt--ratio__items:first-child {
        translate: -5px;
    }
    .recruit__sec--company__list__items__txt__large-txt span:not(.js_count-up) {
        font-size: 1.75rem;
    }
    .recruit__sec--company__list__items__txt--ratio__items:has(.recruit__sec--company__list__items__txt__large-txt__mark) .recruit__sec--company__list__items__txt__large-txt span:not(.recruit__sec--company__list__items__txt__large-txt__mark) {
        font-size: 1.75rem;
    }
    .recruit__sec--company__list__items__txt--ratio__label {
        font-size: .75rem;
    }
    .recruit__sec--company__list__items__txt--ratio__items:has(.recruit__sec--company__list__items__txt__large-txt__mark) .recruit__sec--company__list__items__txt--ratio__label {
        margin-bottom: -4px;
    }
    .recruit__sec--company-section--01 .recruit__sec--company__list__items:nth-child(6) .recruit__sec--company__list__items__txt--ratio__label {
        font-size: .625rem;
        margin-bottom: -4px;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt--ratio__label {
        font-size: .625rem;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:first-child .recruit__sec--company__list__items__txt--ratio__label {
        translate: 0 -3px;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt--ratio {
        translate: 0;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt--ratio__label {
        margin: 0;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(3) .recruit__sec--company__list__items__txt--ratio {
        translate: 0;
    }
    .recruit__sec--company__list__items__txt--ratio__mark {
        font-size: 2.25rem;
        margin: 0 .2em 2px;
    }
    .recruit__sec--company-section--03 .recruit__sec--company__list__items:nth-child(2) .recruit__sec--company__list__items__txt--ratio__mark {
        font-size: 1.75rem;
    }
    .recruit__sec--company__list__items__txt__large-txt span.recruit__sec--company__list__items__txt__large-txt__mark {
        font-size: .875rem;
    }
    .recruit__sec--company__list__items__txt__note {
        font-size: .625rem;
        font-weight: 500;
        margin-top: 10px;
    }
    .recruit__sec--company__list__items:nth-child(3) .recruit__sec--company__list__items__txt__note {
        font-size: .5625rem;
    }
    .recruit__sec--company__list__items__img--01 {
        max-width: 96px;
    }
    .recruit__sec--company__list__items__img--02 {
        max-width: 72px;
    }
    .recruit__sec--company__list__items__img--03 {
        max-width: 102px;
        margin-top: -10px;
    }
    .recruit__sec--company__list__items__img--04 {
        max-width: 90px;
        margin-top: 6px;
    }
    .recruit__sec--company__list__items__img--05 {
        max-width: 112px;
        margin-top: 0;
    }
    .recruit__sec--company__list__items__img--06 {
        max-width: 92px;
        margin-bottom: 5px;
        translate: 7px;
    }
    .recruit__sec--company__list__items__img--07 {
        max-width: 64px;
        margin-top: -7px;
    }
    .recruit__sec--company__list__items__img--08 {
        max-width: 98px;
        margin-top: 0;
    }
    .recruit__sec--company__list__items__img--09 {
        max-width: 80px;
        margin-top: -2px;
    }
    .recruit__sec--company__list__items__img--10 {
        max-width: 138px;
        margin-top: 0;
    }
    .recruit__sec--company__list__items__img--10 img {
        translate: 0;
    }
    .recruit__sec--company__list__items__img--11 img {
        max-width: 64px;
        translate: 0;
    }
    .recruit__sec--company__list__items__img--12 img {
        translate: 0;
    }
    .recruit__sec--company__list__items__img figcaption {
        font-size: .625rem;
        line-height: 1.5;
    }

    /* ----------- recruit__sec--office ----------- */
    .recruit__sec--office {
        padding-block: 64px 169px;
        scroll-margin-top: 55px;
    }
    .recruit__sec--office .splide::before {
        width: 90.666666%;
        height: calc(100% - 12.8vw);
        top: 23.58vw;
    }

    /* ----------- recruit__sec--benefit ----------- */
    .recruit__sec--benefit::before {
        width: 235px;
        height: 235px;
        top: -60px;
    }
    .recruit__sec--benefit {
        padding-block: 115px 64px;
        border-radius: 32px;
        scroll-margin-top: 115px;
    }
    .recruit__sec--benefit hgroup {
        margin-top: -115px;
    }
    .recruit__sec--benefit .recruit__sec-ttl {
        margin-bottom: 40px;
    }
    .recruit__sec--benefit__col {
        gap: 20px;
    }
    .recruit__sec--benefit__col__items__img {
        max-width: calc(100% - 5px);
        margin: 0 auto 16px;
    }
    .recruit__sec--benefit__col__items__ttl {
        font-size: 1.125rem;
    }
    .recruit__sec--benefit__col__items__txt {
        font-size: .875rem;
        letter-spacing: .04em;
    }

    /* ----------- recruit__sec--new-graduate ----------- */
    .recruit__sec--new-graduate {
        padding-block: 64px;
        scroll-margin-top: 55px;
    }
    .recruit__sec--new-graduate__btn {
        width: 100%;
        padding-block: 19px;
        margin-bottom: 64px;
    }
    .recruit__sec--new-graduate__lead-txt {
        font-size: .875rem;
        letter-spacing: .08em;
        margin-bottom: 24px;
    }

    /* ----------- recruit__sec--experienced ----------- */
    .recruit__sec--experienced {
        padding-block: 64px;
        scroll-margin-top: 55px;
    }
    .recruit__sec--experienced__box {
        width: 97.14285%;
        border-radius: 16px;
        padding: 20px;
        margin: 0 auto 64px;
    }
    .recruit__sec--experienced__box__sec__ttl {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
    .recruit__sec--experienced__box__sec__lead-txt {
        font-size: 1rem;
    }
    .recruit__sec--experienced__box__sec__lead-txt {
        font-size: 16px;
    }
    .recruit__sec--experienced__box__sec__list__ttl,
    .recruit__sec--experienced__box__sec__list__dtl {
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: .08em;
    }
    .recruit__sec--experienced__box__sec__dl__row:not(:last-child) {
        margin-bottom: 16px;
    }
    .recruit__sec--experienced__box__sec__dl__row__ttl {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .recruit__sec--experienced__box__sec__dl__row__txt {
        font-size: .875rem;
    }
    .recruit__sec--experienced__faq .recruit__sec-ttl {
        margin-bottom: 48px;
    }
    .recruit__sec--experienced__btns {
        gap: 10px;
        margin-top: 64px;
    }
    .recruit__sec--experienced__btns .recruit__sec__btn {
        font-size: .875rem;
        padding-right: 30px;
    }

    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

/*============================
scroll
============================*/
#scroll {
	position: fixed;
	right: 10px;
	bottom: 115px;
	opacity: 0;
    z-index: 10;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-ms-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}
#scroll.view {
	opacity: 1;
	-webkit-transition: all 0.35s;
	-moz-transition: all 0.35s;
	-ms-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
}
#scroll a {
	background: #00818a;
	color: #fff;
	display: flex;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border-radius: 30px;
	font-weight: bold;
	opacity: 1;
}
#scroll a span {
}
@media screen and (max-width: 1024px) {
	#scroll {
	}
	#scroll a {
	}
	#scroll a span {
	}
}
@media screen and (max-width: 480px) {
	#scroll {
		bottom: 40px;
	}
	#scroll a {
	}
	#scroll a span {
	}
}