@charset "UTF-8";
/*
    Template: swell
    Theme Name: esohrecruit
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

.roboto {
    font-family: "Roboto", sans-serif;
}

.serif {
    font-family: "Noto Serif JP", serif;
}

.tuffy {
    font-family: "Tuffy", sans-serif;
}

.kuren {
    font-family: "Zen Kurenaido", sans-serif;
}

.khand {
    font-family: "Khand", sans-serif;
}

.fw100 {
    font-weight: 100 !important;
}

.fw200 {
    font-weight: 200 !important;
}

.fw300 {
    font-weight: 300 !important;
}

.fw400 {
    font-weight: 400 !important;
}

.fw500 {
    font-weight: 500 !important;
}

.fw600 {
    font-weight: 600 !important;
}

.fw700 {
    font-weight: 700 !important;
}

.fw800 {
    font-weight: 800 !important;
}

.fw900 {
    font-weight: 900 !important;
}

.op8 {
    opacity: .8;
}

.lead-wrap {
    display: flex;
    justify-content: center;
}

.lead-wrap .wp-block-group__inner-container {
    max-width: 700px;
}

.center-contents {
    display: flex;
    justify-content: center;
}

.disnone {
    display: none;
}

/*header*/
.-series-right .l-header__inner {
    padding: 0;
}

.l-fixHeader__inner {
    padding: 0;
}

.-body-solid .l-fixHeader {
    box-shadow: 0 0 0;
}

/*アニメーション*/
.container {
    display: flex;
    justify-content: center;
}

.headline {
    position: relative;
    display: inline-block;
    color: #333;
}

.headline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: all 0.8s;
}

.headline.shine::after {
    left: 125%;
}

.text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 3rem;
    background-image: linear-gradient(70deg,
            rgba(0, 0, 0, 0.2) 45%,
            #333 50%,
            rgba(0, 0, 0, 0.2) 55%);
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
}

.text.shine {
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text.is-active {
    --opacity: 1;
}

.char {
    display: inline-block;
    opacity: var(--opacity, 0);
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.05s * var(--char-index));
}

.visuallyHidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/*横に流れるテキストアニメーション*/
.bg .bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
}

.bg {
    margin-top: 0 !important;
}

.bg.is-animated .bg-wrap::before {
    animation: bg 10.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: linear-gradient(to right, #ffffc1 0%, #ff0 50%, #f0f01d 100%);
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 30%;
    transform-origin: left center;
}

.bg .bg-wrap .inn {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-size: 1.4em;
    letter-spacing: 1px;
}

@keyframes bg {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-5%);
    }

    30% {
        transform: scaleX(1) translateX(0);
    }

    100% {
        transform: scaleX(1) translateX(0);
    }

    30%, 100% {
        opacity: 1;
    }
}

/*auto-scroll-gallery*/
.auto-scroll-gallery {
    overflow: hidden;
    position: relative;
    width: 100vw;
}

.scroll-track {
    display: flex;
    width: fit-content;
    will-change: transform;
    min-width: 3000px;
}

.scroll-items {
    display: flex;
}

.scroll-items img {
    aspect-ratio: 16 / 9;
    width: 300px;
    height: auto;
    object-fit: cover;
}

.left-flow .scroll-track {
    animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-30%);
    }
}

.right-flow .scroll-track {
    transform: translateX(-30%);
    visibility: hidden;
    display: flex;
    width: fit-content;
    min-width: 3000px;
    will-change: transform;
}

.right-flow .scroll-track.start {
    visibility: visible;
    animation: scroll-right 60s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-30%);
    }

    100% {
        transform: translateX(0%);
    }
}

/*section-tab-btn*/
.section-tab-btn {
    padding-bottom: 0 !important;
}

.tab-btn-columns {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    border-bottom: 3px solid var(--color_main);
}

.tab-btn-columns a {
    display: block;
    background: var(--color_main);
    color: #fff;
    padding: 1em;
    letter-spacing: 1px;
}

.tab-btn-columns a.part {
    background: #F6F6F6;
    color: #aaa;
}

/*section-cta*/
.section-cta .swell-block-column {
    background: #00AAEA;
    color: #fff;
    padding: 1.5em 2em;
}

.section-cta .swell-block-column h3 {
    font-size: xx-large;
    margin-bottom: .25em;
}

.section-cta .swell-block-column a {
    background: #fff;
    color: #12aaea;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 1.15em;
    padding: .5em 1em .5em 2em;
}

.section-cta .swell-block-column:nth-child(2) {
    background: #32c755;
}

.section-cta .swell-block-column:nth-child(2) a {
    color: #32c755;
    line-height: 1;
}

.section-cta .swell-block-column:nth-child(2) a span.swl-fz {
    letter-spacing: 1px;
}

.section-cta .swell-block-column:last-child {
    background: #EB2B00;
}

.section-cta .swell-block-column:last-child a {
    color: #EB2B00;
}

/*section-training*/
.section-training .swell-block-column {
    background: #fff;
    padding: 1.5em;
    border-radius: 10px;
}

.section-training .swell-block-column h3 {
    font-weight: 400;
    text-align: center;
    background: var(--color_main);
    color: #fff;
    border-radius: 100vmax;
    padding: .25em;
    margin-bottom: 1em;
    letter-spacing: 2px;
}

.section-training .swell-block-column img {
    border-radius: 10px;
}

/*section-interview*/
.section-interview .img-adjustment .c-bannerLink__figure .c-bannerLink__img {
    object-position: right center;
}

.section-interview .c-bannerLink__title {
    background: #fff;
    font-size: .85em;
    padding: 1em;
    opacity: .9;
    font-weight: 600;
}

.section-interview .c-bannerLink__description {
    background: #fff;
    margin-top: 0;
    color: var(--color_text);
    line-height: 1.5;
    font-size: .85em;
    text-align: left;
    padding: 0 1em 1em;
    opacity: .9;
}

.section-interview .c-bannerLink__text {
    justify-content: flex-end;
    color: unset;
    padding: 1em;
}

/*section-environment*/
.section-environment .swell-block-columns__inner {
    justify-content: space-between;
}

.environment-left-column {
    width: 25% !important;
}

.environment-right-column {
    width: 65% !important;
}

.environment-columns .swell-block-column {
    background: #fff;
    border-radius: 10px;
    padding: 1.5em 1em;
}

.environment-columns .swell-block-column .center-contents {
    margin-bottom: 0;
}

.environment-columns .swell-block-column svg {
    width: 150px !important;
    height: 50px !important;
}

.environment-columns .swell-block-column .wp-block-group {
    align-items: baseline;
    margin: -3em auto -1em;
}

/*section-working-flow*/
.section-working-flow img {
    border-radius: 10px;
}

/*section-event*/
.section-event img {
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/*section-recruit-flow*/
.section-recruit-flow img {
    border-radius: 10px;
}

.section-recruit-flow ul {
    padding: 0;
}

.section-recruit-flow li {
    list-style-type: none;
}

.section-recruit-flow dd {
    margin-left: 0;
    font-size: .85em;
}

.flow {
    padding-left: 120px;
    position: relative;
}

.flow::before {
    content: "";
    width: 15px;
    height: 100%;
    background: #eee;
    margin-left: -8px;
    display: block;
    position: absolute;
    top: 0;
}

.flow>li {
    position: relative;
}

.flow>li:not(:last-child) {
    margin-bottom: 8vh;
}

.flow>li .icon {
    font-size: 12px;
    color: #fff;
    background: var(--color_main);
    padding: 8px 20px;
    display: block;
    position: absolute;
    top: 0;
    left: -120px;
    z-index: 100;
}

.flow>li .icon::after {
    content: "";
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent var(--color_main);
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.flow>li dl {
    padding-left: 70px;
    position: relative;
}

.flow>li dl::before,
.flow>li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
}

.flow>li dl::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    background: var(--color_main);
    border-radius: 50%;
    left: -4px;
}

.flow>li dl::after {
    width: 50px;
    border-bottom: 1px dashed #999;
    position: absolute;
    left: 5px;
}

.flow>li dl dt {
    font-size: 20px;
    font-weight: 600;
    color: var(--color_main);
    margin-bottom: 1vh;
}

/*section-message*/
.section-message img {
    border-radius: 10px;
}

.section-message .wp-block-media-text {
    gap: 3em;
}

/*section-company*/
.section-company th, .section-company td {
    font-weight: 400;
    padding: 1em;
    font-size: .9em;
}

.section-company th {
    color: var(--color_main);
}

/*footer*/
.w-beforeFooter {
    margin-top: 0;
}

.top #content {
    margin-bottom: 0;
}

/*page-part-time*/
.tab-btn-columns.part-tab a {
    background: #F6F6F6;
    color: #aaa;
}

.tab-btn-columns.part-tab a.part {
    display: block;
    background: var(--color_main);
    color: #fff;
    padding: 1em;
    letter-spacing: 1px;
}

.section-interview.employee .img-adjustment-left .c-bannerLink__figure .c-bannerLink__img {
    object-position: left center;
}

/*page-interview*/
.interview-wrap h2 {
    border-bottom: 1px solid;
    padding-bottom: .25em;
}

.interview-wrap h3 {
    font-weight: 500;
    color: var(--color_main);
    padding: .5em;
    background: #ecfaff;
}

/* お問い合わせフォーム */
.contact-wrap {
    border-radius: 20px;
}

.contact-table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.wpcf7-not-valid-tip {
    font-size: small;
}

.contact-table tr {
    border-top: 1px solid #eee;
}

.contact-table tr:last-child {
    border-bottom: 1px solid #eee;
}

.contact-table th, table.contact-table td, .contact-table tr:last-child td, .contact-table td:last-child {
    border: none;
}

.contact-table .td_to_th_ tbody tr>:first-child::before, .contact-table tbody th::before {
    background-color: unset;
}

.contact-table th {
    font-weight: 500;
    font-size: 14px;
    width: 30%;
    background: unset;
}

.contact-table th span {
    display: inline-block;
    background: #e60012;
    color: #fff;
    font-size: 85%;
    padding: 0 3px;
    border-radius: 2px;
    font-weight: 400;
    margin-right: 5px;
}

.contact-table th span.any {
    background: #999;
}

.contact-table td input[type="text"], .contact-table td input[type="url"], .contact-table td input[type="tel"], .contact-table td input[type="email"], .contact-table td textarea {
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-size: 18px;
}

.contact-table td.input2 input {
    width: 7em;
}

.contact-table td.input2 input:first-child {
    margin-right: 5px;
}

.contact-table td.wd-m input {
    width: 280px;
}

.contact-table td.wd-s input {
    width: 100px;
}

.contact-table input::placeholder, .contact-table textarea::placeholder {
    color: #b9b9b9;
    font-size: 16px;
}

.submit-box {
    margin-top: 2em;
    display: flex;
    justify-content: center;
}

.submit-box input[type='submit'] {
    background: var(--color_link);
    color: #fff;
    padding: 1em;
    border: none;
    border-radius: 5px;
}

.submit-box input[type='submit'][disabled] {
    background: #dcdcdc;
}

.submit-box span.wpcf7-spinner {
    display: none;
}

.contents-check .is-style-note_list li:before {
    content: '※';
}

.contents-check label {
    display: block;
    background: #dbf6ff;
    padding: 10px;
    font-size: .9em;
    border-radius: 5px;
    opacity: .9;
    letter-spacing: .5px;
}

.contents-check span.wpcf7-form-control.wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
    padding: .5em 0;
}

.contents-check span.wpcf7-form-control.wpcf7-checkbox span.wpcf7-list-item {
    margin: 0;
}

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-message {
    font-size: .75em;
    margin-top: 2em;
    text-align: right;
}

@media (max-width: 599px) {
    .contact-table th {
        display: block;
        width: 100%;
    }

    .contact-table td {
        display: block;
        width: 100%;
    }

    .recaptcha-message {
        text-align: unset;
    }
}

@media not all and (min-width: 960px) {
    .w-header.pc_ {
        display: block !important;
    }

    .l-header__customBtn.sp_ {
        display: none;
    }

    .sp-left {
        text-align: left;
    }

    .top #content {
        padding-top: 1.5em;
    }

    .bg .bg-wrap .inn {
        font-size: 1.4em;
    }

    .environment-left-column {
        width: unset !important;
    }

    .environment-right-column {
        width: unset !important;
    }

    .flow>li .icon {
        left: -8px;
        padding: 7px;
    }
}

@media not all and (min-width: 600px) {
    .section-message .wp-block-media-text {
        gap: unset;
    }
}