@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    touch-action: manipulation;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

img {
    pointer-events: none;
    user-select: none;
    -webkit-touch-callout: none;
}

a {
    text-decoration: none;
}

body {
    z-index: 1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.0rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #272727;
    background-image: url(../img/background.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vw;
    touch-action: pan-x pan-y;
}

main {
    display: flex;
    align-items: flex-start;
    min-height: 100vh;
}

.back_nav {
    position: fixed;
    z-index: 5;
    top: 20%;
    width: calc(85vw - 480px);
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    width: 450px;
    margin: 0 auto;
}

.nav_btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.nav_btn div {
    border: 1px solid #ffffff;
    border-radius: 4.0rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5);
    transition: border-color 0.5s ease;
}

.nav_btn div p {
    color: #ffffff;
    margin: 20px 50px 20px 35px;
}

.nav_btn img {
    margin-left: -1.5em;
    z-index: 2;
}

.nav_btn div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: -1;
}

.nav_btn div:hover::before {
    transform: scaleX(1);
}

.nav_btn div p {
    color: #ffffff;
    margin: 20px 50px 20px 35px;
    position: relative;
    z-index: 2;
    transition: color 0.5s ease;
}

.nav_btn div:hover p {
    color: #000000;
}

.article {
    width: 480px;
    right: 0;
    background-color: #ffffff;
    margin: -90px 15vw 0 0;
    top: 10vw;
    margin-left: auto;
    height: auto;
    position: relative;
    border-radius: 2.0em;
}

.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 2000;
}

.hamburger-morph {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2100;
}

.mobile-logo {
    display: none;
}

.hamburger-morph__icon {
    width: 100%;
    height: 100%;
}

.hamburger-morph__line {
    fill: none;
    stroke: #000;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke 600ms;
}

.hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke: #fff;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke: #fff;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke: #fff;
}

.nav-morph {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105vh;
    background: rgba(29, 29, 31, 0.95);
    z-index: 2050;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.nav-morph.active {
    pointer-events: auto;
    clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80%;
}

.nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
    transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__item:nth-child(2) {
    transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__item:nth-child(3) {
    transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__item:nth-child(4) {
    transition-delay: 0.6s;
}

.nav-morph__link {
    display: inline-block;
    padding: 25px 20px;
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
}

.nav-morph__text,
.nav-morph__text__policy {
    display: block;
    transition: color 0.3s ease;
}

.nav-morph__link:hover .nav-morph__text,
.nav-morph__link:hover .nav-morph__text__policy {
    color: #EF5A5A;
}

.nav-morph__text__policy {
    font-size: 1.2rem;
    opacity: 0.7;
}

.fv {
    overflow: hidden;
    border-radius: 2.0em;
}

.main_visual img {
    width: 100%;
    height: auto;
    display: block;
}

.infinite-scroll {
    display: flex;
    width: 100%;
    overflow: hidden;
    /* mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); */
    padding: 100px 0 100px;
}

.infinite-scroll__container {
    display: flex;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;

    @media screen and (max-width: 768px) {
        gap: 0.8rem;
        padding-right: 0.8rem;
    }
}

.infinite-scroll__img-wrap {
    flex-shrink: 0;
    width: 225px;
    height: 150px;
    /* -webkit-mask-image: radial-gradient(circle, black 60%, transparent 95%);
    mask-image: radial-gradient(circle, black 60%, transparent 95%); */
}

.infinite-scroll__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
}

@keyframes loop {
    0% {
        transform: translateX(-100%);
    }

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

@keyframes loop2 {
    0% {
        transform: translateX(-200%);
    }

    to {
        transform: translateX(0);
    }
}

.infinite-scroll__container:first-child {
    animation: loop 80s -40s linear infinite;
}

.infinite-scroll__container:last-child {
    animation: loop2 80s linear infinite;
}

.about {
    width: 100%;
    padding-left: 30px;
}

.sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #EF5A5A;
    padding-bottom: 5px;
}

.main-copy {
    font-size: 36px;
    line-height: 1.25;
    padding-bottom: 10px;
}

.description {
    margin-top: 30px;
}

.description p {
    margin-bottom: 18px;
}

.description p:last-child {
    margin-bottom: 0;
}

.about-img {
    width: 100%;
    text-align: right;
    padding: 50px 0 75px;
}

.about-img img {
    width: 330px;
    height: auto;
}

.data {
    width: 100%;
    background-color: #F0F0F0;
    padding: 50px 30px;
}

.data-card-wrapper {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.data-card {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.data-badge {
    background-color: #EF5A5A;
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 6px 24px;
    letter-spacing: 0.05em;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.data-content {
    background-color: #ffffff;
    width: 100%;
    border-radius: 10px;
    padding: 30px 15px;
    text-align: center;
    position: relative;
}

.data-catch {
    color: #EF5A5A;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: -10px;
    letter-spacing: 0.05em;
}

.data-number {
    color: #EF5A5A;
    font-size: 9.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.data-text {
    color: #272727;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.data-sub-number {
    font-size: 5rem;
    margin-right: 4px;
}

.data-unit {
    font-size: 3.2rem;
    margin-left: 4px;
}

.data-icons {
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
}

.data-icons img {
    width: 100%;
    height: auto;
    display: block;
}

.infinite-scroll-slider {
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 125px 0 125px;
}

.infinite-scroll__container-slider {
    display: flex;
    gap: 50px;
    padding-right: 50px;
    flex-shrink: 0;
    animation: infinite-scroll 55s linear infinite;
}

.annotation {
    font-size: 1.4rem;
    margin: 10px 0 -15px;
    color: #272727;
}

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

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

.infinite-scroll__img-wrap-slider:nth-child(even) {
    transform: translateY(20px);
}

.infinite-scroll__img-wrap-slider {
    flex-shrink: 0;
    width: 250px;
    height: auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

.infinite-scroll__img-wrap-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
}

.role {
    width: 100%;
    padding: 0 20px;
    overflow: hidden;
}

.role .sub-title,
.role .main-copy,
.role .description {
    padding: 0 10px;
}

.department-title {
    text-align: center;
    padding: 80px 0 40px;
}

.label {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: -5px;
}

.role .description p {
    margin-top: -20px;
}

.heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.underline {
    width: 80px;
    height: 2px;
    background-color: #333;
    margin: 0 auto;
}

.department-slider-section {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 20px;
    position: relative;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
    display: block;
    z-index: 1;
}

.card-content {
    padding-top: 15px;
}

.category {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 30px;
}

.job-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    padding-left: 30px;
}

.department-slider-section {
    width: calc(100% + 40px);
    background-color: #fff;
    margin: 0 -20px;
    padding: 0;
    position: relative;
    overflow: visible;
    box-shadow: 0 -5px 3px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.department-slider .slick-list {
    overflow: visible !important;
}

.department-slider {
    width: 440px;
    margin: 0 auto;
}

.slide-card {
    width: 350px;
    margin: 0 35px;
    outline: none;
    display: flex;
    flex-direction: column;
}

.card-content .category {
    margin-bottom: -5px;
}

.card-content .job-title {
    font-size: 2.4rem;
}

.text-box {
    background-color: #EDECF3;
    padding: 40px 30px 30px;
    margin-top: -35px;
    border-radius: 15px;
    line-height: 1.5;
    height: 150px;
}

.text-box p {
    font-size: 1.8rem;
    font-weight: 500;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-next {
    right: 0px;
    z-index: 10;
}

.slick-next:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #EF5A5A;
}

.slick-prev {
    left: 0px;
    z-index: 10;
}

.slick-prev:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 15px 0;
    border-color: transparent #EF5A5A transparent transparent;
}

.slick-prev,
.slick-next {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.btn-department {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: 50px auto 0;
    text-decoration: none;
    color: #272727;
    transition: color 0.3s ease;
}

.btn-text {
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.btn-arrow {
    width: 110%;
}

.btn-arrow img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.3s ease;
}

.btn-department:hover {
    color: #EF5A5A;
}

.btn-department:hover .btn-arrow img {
    filter: invert(47%) sepia(88%) saturate(1538%) hue-rotate(325deg) brightness(98%) contrast(93%);
}

.slide-button {
    margin-top: auto;
}

.slide-button .more-button-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EF5A5A;
    border-radius: 15px;
    padding: 40px 30px;
    margin-top: auto;
    height: 150px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.slide-button .more-button-inner:hover {
    background-color: #e63d3d;
}

.slide-button .more-text-box {
    display: flex;
    flex-direction: column;
}

.slide-button .more-category {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: -3px;
}

.slide-button .more-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0;
}

.slide-button .more-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.slide-button .more-button-inner:hover .more-icon {
    transform: scale(1.1);
}

.slide-button .more-icon svg {
    width: 100%;
    height: 100%;
}

.role>.card-image {
    max-width: 350px;
    margin: 0 auto;
}

.people {
    width: 100%;
    background-color: #ffffff;
    padding-top: 100px;
}

.people-title {
    background-color: #F0F0F0;
    height: 200px;
    padding-top: 50px;
    margin-bottom: -80px;
}

.people .sub-title {
    margin-left: 30px;
}

.people .main-copy {
    margin-left: 30px;
    margin-bottom: 40px;
}

.people .sub-title,
.people .main-copy {
    position: relative;
    z-index: 10;
}

.interview-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.interview-card {
    position: relative;
    width: 100%;
    padding: 40px 0;
    z-index: 1;
}

.interview-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 430px;
    background-color: #F0F0F0;
    transform: translateY(50%);
    z-index: 1;
}

.card-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-left: 30px;
    z-index: 2;
}

.catchphrase {
    writing-mode: vertical-rl;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background-color: #ffffff;
    padding: 0 10px 15px;
    margin-top: 20px;
    flex-shrink: 0;
    line-height: 1.4;
}

.image-wrapper {
    position: relative;
    margin-left: 25px;
    flex-grow: 1;
    max-width: 350px;
    text-decoration: none;
    color: inherit;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

.arrow-icon {
    position: absolute;
    bottom: 60px;
    left: 15px;
    width: 36px;
    height: 36px;
    display: block;
    cursor: pointer;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .arrow-icon svg {
    transform: scale(1.1);
}

.profile {
    text-align: right;
    margin-top: 5px;
    padding-right: 5px;
    font-size: 1.4rem;
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.image-wrapper:hover .hover-img {
    opacity: 1;
}

.job-description {
    width: 100%;
    background-color: #272727;
    padding: 30px 30px;
    margin-top: 100px;
}

.job-description .sub-title,
.job-description .main-copy {
    color: #ffffff;
}

.job-description {
    width: 100%;
    background-color: #1a1a1a;
    padding: 30px 30px 50px;
    box-sizing: border-box;
}

.job-description .sub-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: -5px;
    font-weight: bold;
}

.job-description .main-copy {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
    padding: 0;
}

.job-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.job-item {
    margin: 0 0 30px 0;
}

.job-item:last-child {
    margin-bottom: 0;
}

.job-item dt {
    font-weight: 700;
    font-size: 1.4rem;
    width: 75%;
    border-bottom: 1px solid #000000;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.job-item dd {
    margin-left: 0;
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 500;
}

/* =========================================
   募集要項：給与のリストデザイン
========================================= */
.salary-item {
    margin-bottom: 15px;
    /* 各職種の間に余白をあける */
}

/* 最後の職種の下の余白は少し狭くする */
.salary-item:last-of-type {
    margin-bottom: 15px;
}

/* 黒背景のバッジ */
.salary-badge {
    display: inline-block;
    background-color: #272727;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* 月給のテキスト */
.salary-item p {
    margin: 0;
}

/* 右寄せの注釈 */
.salary-note {
    text-align: right;
    display: block;
    width: 100%;
}

.note {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.entry {
    width: 100%;
    height: 450px;
    background-image: url(../img/entry-back.jpg);
    background-size: cover;
}

.gradation {
    width: auto;
    height: 50px;
    background-image: linear-gradient(#272727, transparent);
}

.entry-btn {
    width: 440px;
    height: 197px;
    margin: 0 auto;
    margin-top: 75px;
    margin-bottom: 130px;
    border-radius: 8px;
    background-color: rgba(255, 77, 77, 0.85);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
}

.entry-btn:hover {
    background-color: rgba(255, 77, 77, 1.0);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.entry-btn:active {
    transform: translateY(-1px);
}

.entry-btn img {
    width: 368px;
    height: auto;
    display: block;
}

.infinite-scroll-end .infinite-scroll {
    padding: 75px 0 75px;
}

.footer {
    background-color: #f2f2f2;
    padding: 60px 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-logo img {
    width: 90%;
    height: auto;
    margin-right: 5%;
}

.footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.nav-list li {
    margin-bottom: 24px;
}

.nav-list li:last-child {
    margin-bottom: 0;
}

.nav-list a {
    text-decoration: none;
    color: #272727;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    display: block;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #EF5A5A;
}

.nav-list a.policy {
    font-size: 13px;
    margin-top: 10px;
}

.copyright {
    font-size: 1.4rem;
    margin-top: 40px;
}

@media (max-width: 1100px) {

    /* ▼▼ PC用のナビゲーションは完全に消す ▼▼ */
    .back_nav {
        display: none;
        /* 追加：完全に非表示にする */
        opacity: 0;
        visibility: hidden;
    }

    main {
        display: block;
    }

    .article {
        /* width: 100%; */
        margin: 0 auto;
        margin-top: 0;
        top: 1vh;
    }

    .mobile-logo {
        display: block;
        position: absolute;
        top: 15px;
        left: 25px;
        width: 100px;
        /* 親要素の幅は100px */
        z-index: 2000;
    }

    /* ▼▼ スマホ用ロゴのバグ対策 ▼▼ */
    .mobile-logo img {
        width: 100%;
        /* autoから100%に変更（親の100pxに合わせる） */
        height: auto;
        /* 40pxからautoに変更（比率を維持） */
        display: block;
    }
}

@media (max-width: 480px) {
    .article {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        top: 0;
    }

    .fv {
        border-radius: 0;
    }

    .sub-title {
        font-size: 1.4rem;
    }

    .main-copy {
        font-size: 28px;
    }

    .description {
        font-size: 1.6rem;
    }

    .about-img {
        padding: 40px 0px 50px 0;
    }

    .about-img img {
        width: 100%;
        max-width: 330px;
    }

    .data-badge {
        font-size: 1.8rem;
        padding: 5px 24px;
    }

    .data-catch {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: -15px;
        letter-spacing: 0.05em;
    }

    .data-number {
        font-size: 9.0rem;
        margin-bottom: 10px;
    }

    .data-text {
        color: #272727;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 20px;
        letter-spacing: 0.02em;
    }

    .label {
        font-size: 1.6rem;
        margin-bottom: -5px;
    }

    .btn-text {
        font-size: 1.6rem;
        margin-bottom: 0px;
    }

    .btn-arrow {
        width: 90%;
    }

    .catchphrase {
        font-size: 2.2rem;
    }

    .interview-card {
        padding-right: 15px;
    }

    .interview-card::before {
        height: 80%;
        transform: translateY(18%);
    }

    .department-slider-section,
    .department-slider {
        width: 100%;
    }

    .department-slider {
        width: 100%;
    }

    .department-slider-section {
        width: calc(100% + 40px);
    }

    .slide-card {
        width: 80vw;
    }

    .slide-button .more-button-inner {
        height: 140px;
    }

    .role>.card-image {
        max-width: 80vw;
    }

    .card-content .category {
        font-size: 1.6rem;
    }

    .card-content .job-title {
        font-size: 2.4rem;
    }

    .text-box {
        height: 140px;
    }

    .text-box p {
        font-size: 1.6rem;
    }

    .slick-prev {
        left: 10px;
        z-index: 10;
    }

    .slick-next {
        right: 10px;
        z-index: 10;
    }

    .job-description .sub-title {
        font-size: 1.4rem;
        margin-bottom: -5px;
    }

    .job-description .main-copy {
        font-size: 2.8rem;
        margin-bottom: 30px;
        font-weight: 600;
        padding: 0;
    }

    .entry-btn {
        width: 90%;
    }

    .entry-btn img {
        width: 100%;
        max-width: 368px;
    }
}


/* =========================================
スクロールアニメーション（フワッと表示）
========================================= */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.img-fade {
    opacity: 0;
    transition: opacity 2s ease;
}

.img-fade.is-visible {
    opacity: 1;
}

/* =========================================================
ここから下は「社員インタビュー（下層ページ）」
========================================================= */

.subpage-people {
    border-bottom: solid #D9D9D9 1px;
    padding: 120px 0 40px;
    margin-bottom: 80px;
    border-radius: 2.0em 2.0em 0 0;
}

.pe-con-back {
    background-color: #F0F0F0;
    width: 90%;
    padding: 0 0 100px 30px;
    margin-top: 30px;
}

.number {
    transform: translateY(-50%);
    padding: 2px 20px;
    background-color: #EF5A5A;
    width: fit-content;
    border-radius: 0.25em;
    position: relative;
    z-index: 10;
}

.number p {
    font-size: 1.8rem;
    color: #fff;
}

.subpage-catchphrase {
    writing-mode: horizontal-tb;
    width: fit-content;
    font-size: 2.0rem;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    margin-top: 20px;
}

.sub-pe-img {
    height: 100%;
    width: auto;
    margin-top: 20px;
}

.sub-pe-img img {
    width: 100%;
    border-radius: 0.4em 0 0 0.4em;
}

.department-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.department-subtext {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 5px;
}

.people-data {
    display: grid;
    gap: 8px;
    padding-right: 10px;
}

.people-data h3 {
    background-color: #272727;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 2px 8px;
    width: fit-content;
    margin-top: 40px;
}

.people-data p {
    font-size: 1.8rem;
    font-weight: 400;
}

.people-data .note {
    display: revert;
}

.dotted-line {
    border: none;
    border-top: 2px dashed #272727;
    width: 90%;
    margin: 40px 0;
}

.interview-qa-wrapper {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.qa-q {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #DE3030;
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
    padding-right: 20px;
}

.icon-q {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    margin-top: 2px;
}

.qa-a {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 0 20px 0 34px;
}

.pe-con-back.is-right {
    background-color: transparent;
    width: 100%;
    padding: 0;
    position: relative;
    margin-top: 50px;
}

.pe-con-back.is-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 100%;
    background-color: #F0F0F0;
    z-index: 1;
}

.pe-con-white {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    width: 90%;
    margin-left: auto;
    padding: 0 0 100px 30px;
    margin: -50px auto -30px 30px;
}

.pe-con-white .subpage-catchphrase {
    background-color: #F0F0F0;
}

.pe-con-back.is-last {
    padding-bottom: 60px;
    margin-bottom: 100px;
}

.breadcrumb {
    padding: 0 30px;
    margin-bottom: 20px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.breadcrumb li {
    font-size: 1.4rem;
    font-weight: 600;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb li a {
    color: #666666;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: #EF5A5A;
}

.breadcrumb li:not(:last-child)::after {
    content: ">";
    color: #999999;
    font-size: 1.4rem;
    font-weight: bold;
}

.entry.subpage-entry {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.entry.subpage-entry .entry-btn {
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 480px) {

    .pc-only {
        display: none;
    }

    .number p {
        font-size: 1.4rem;
    }

    .subpage-catchphrase {
        font-size: 1.8rem;
        padding: 8px 18px;
    }

    .department-text {
        font-size: 1.6rem;
    }

    .department-subtext {
        font-size: 1.6rem;
        margin-top: 0px;
    }

    .people-data h3 {
        font-weight: 600;
        margin: 30px 0 5px;
    }

    .people-data p {
        font-size: 1.6rem;
    }

    .people-data {
        gap: 5px;
        padding-right: 5px;
    }

    .qa-q {
        font-size: 1.8rem;
        margin-bottom: 10px;
        padding-right: 10px;
    }

    .qa-a {
        margin: 0;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 1.6;
        padding: 0 20px 0 34px;
    }
}


/* =========================================
お問い合わせ / エントリーページ
========================================= */

.subpage-entrypage {
    border-bottom: solid #D9D9D9 1px;
    padding: 120px 0 40px;
    margin-bottom: 50px;
    border-radius: 2.0em 2.0em 0 0;
}

.contact-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 0 50px;
    padding: 0 30px 50px;
    border-bottom: solid #D9D9D9 1px;
}

.intro-text {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 500;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto 100px;
    padding: 0 30px;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.form-row dt {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.row-item {
    padding-bottom: 25px;
}

.form-row dt label {
    font-size: 1.6rem;
    font-weight: 700;
}

.badge-req,
.badge-opt {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.badge-req {
    background-color: #EF5A5A;
}

.badge-opt {
    background-color: #999999;
}

.dt-note {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333333;
}

.form-row dd {
    width: 100%;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 1.6rem;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #EF5A5A;
}

.radio-wrap {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.radio-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    margin-top: 5px;
    transform: scale(1.2);
    cursor: pointer;
}

.radio-text {
    font-size: 1.5rem;
    line-height: 1.6;
}

.radio-text .bold {
    font-weight: 700;
}

.privacy-wrap {
    margin: 60px 0 40px;
}

.privacy-note {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.policy-link {
    color: #272727;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #2CA02C;
}

.checkbox-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

.checkbox-text {
    font-size: 1.5rem;
    font-weight: 500;
}

.submit-wrap {
    text-align: center;
}

.btn-submit {
    background-color: #2CA02C;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    border: none;
    width: 100%;
    padding: 18px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #248B24;
}


/* =========================================
プライバシーポリシー ページ
========================================= */

.policy-section {
    width: 100%;
    margin-bottom: 80px;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.policy-intro {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 500;
    color: #272727;
    margin-bottom: 100px;
}

.policy-block {
    margin-bottom: 100px;
}

.policy-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #272727;
    border-bottom: 2px solid #D9D9D9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.policy-text {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 400;
    color: #272727;
}

.policy-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.policy-btn {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #272727;
    padding: 10px 20px;
    border-bottom: 2px solid #272727;
    transition: color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.policy-btn:hover {
    color: #EF5A5A;
    border-bottom-color: #EF5A5A;
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: 0 20px;
    }

    .policy-intro {
        font-size: 1.5rem;
        margin-bottom: 50px;
    }

    .policy-block {
        margin-bottom: 40px;
    }

    .policy-heading {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .policy-text {
        font-size: 1.5rem;
    }
}

.d-block {
    display: block;
}

/* =========================================
   それぞれの役割 ページ（role.html）
========================================= */

/* 各事業セクションの大枠 */
.role-detail-section {
    max-width: 800px;
    margin: 0 auto 150px;
    padding: 0 30px;
}

/* 見出し部分（左揃え・バッジデザイン） */
.role-section-header {
    margin-bottom: 50px;
    text-align: left;
}

.role-badge {
    display: inline-block;
    background-color: #252525;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.role-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: #272727;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

/* ステップのリスト全体 */
.role-step-list {
    display: flex;
    flex-direction: column;
}

/* 各ステップのブロック */
.role-step-item {
    margin-bottom: 0;
}

/* ナンバーとタイトルの行 */
.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 72px;
    /* 上の境界線からの余白 */
}

.role-step-item:first-child .step-header {
    padding-top: 0;
    /* 1番目のステップは上の余白をなくす */
}

/* 黒い四角のナンバー */
.step-num {
    background-color: #272727;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    line-height: 1;
    display: inline-block;
}

/* ステップのタイトル */
.step-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #272727;
    letter-spacing: 0.05em;
}

/* タイトル下の破線 */
.step-line {
    border: none;
    border-top: 2px dashed #272727;
    margin-bottom: 20px;
}

/* 画像とテキストが入るエリア（下線付き） */
.step-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid #272727;
    /* 次のステップとの区切り（実線） */
}

/* 写真 */
.step-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* 説明テキスト */
.step-text {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 400;
    color: #272727;
}

/* =========================================
対応職種エリア
========================================= */
.step-job-section {
    margin-top: 10px;
}

/* タイトル部分（●とテキスト） */
.step-job-title {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #252525;
    /* 赤色テキスト */
    margin-bottom: 10px;
}

.step-job-title img {
    width: 14px;
    height: auto;
}

/* バッジを並べる枠 */
.step-job-list {
    display: flex;
    flex-wrap: wrap;
    /* 画面端にきたら自動で改行させる */
    gap: 10px 10px;
    /* 上下の隙間8px、左右の隙間10px */
}

/* 職種バッジ（.role-badgeと同じデザイン） */
.job-badge {
    display: inline-block;
    background-color: #EF5A5A;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

/* グレーアウト用のクラス */
.job-badge.is-grey {
    background-color: #999999;
}

/* ▼ スマホ向けレスポンシブ調整 ▼ */
@media (max-width: 480px) {
    .subpage-role {
        padding: 100px 0 30px;
        margin-bottom: 40px;
    }

    .role-detail-section {
        padding: 0 30px;
        margin-bottom: 150px;
    }

    .role-section-header {
        margin-bottom: 50px;
    }

    .role-badge {
        font-size: 1.2rem;
        padding: 3px 10px;
    }

    .role-heading {
        font-size: 2.4rem;
    }

    .step-header {
        padding-top: 64px;
        margin-bottom: 15px;
    }

    .step-num {
        background-color: #272727;
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 700;
        padding: 5px 5px;
        border-radius: 3px;
        line-height: 1;
        display: inline-block;
    }

    .step-body {
        padding-bottom: 15px;
    }

    .step-title {
        font-size: 1.8rem;
    }

    .step-line {
        margin-bottom: 15px;
    }

    .step-text {
        font-size: 1.4rem;
    }

    /* 既存のスマホ用コードが並んでいる箇所に追加 */

    .step-job-section {
        margin-top: 10px;
    }

    .step-job-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .step-job-title img {
        width: 12px;
    }

    .job-badge {
        font-size: 1.4rem;
        padding: 3px 10px;
    }
    .dt-note {
        font-size: 1.1rem;
        font-weight: 500;
        color: #333333;
    }
}

/* =========================================
   Coming Soon フィルター（社員インタビュー用）
========================================= */

/* フィルターをこのセクション全体にぴったり被せるための基準設定 */
.people {
    position: relative;
}

/* セクション全体を覆う背景フィルター */
.coming-soon-filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* 背景色（以下のrgbaの数値を変更して調整できます） */
    background-color: rgba(255, 255, 255, 0.75);
    /* 白の半透明(75%) */
    /* 黒っぽくしたい場合は rgba(0, 0, 0, 0.6) などにしてください */

    /* 背景をすりガラスのように少しぼかす（高級感が出ます） */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    z-index: 50;
    /* 下のボタンなどをクリックできないように手前に配置 */

    padding: 150px 0 100px 0;
}

/* スクロールに合わせて画面中央に追従する枠 */
.coming-soon-sticky {
    position: sticky;
    top: 50vh;
    /* 画面の上から45%（ほぼ中央）の位置で固定 */
    text-align: center;
    /* 画像を横並びの中央に */
}

/* Coming Soonの画像サイズ */
.coming-soon-sticky img {
    width: 80%;
    /* スマホの時は画面の80%幅に */
    max-width: 400px;
    /* PCの時の最大幅 */
    height: auto;
    /* 画像に少し影を落として目立たせる（不要なら削除OK） */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

/* =========================================
   非公開リンク用（社員インタビューなど）
========================================= */
.disabled-link {
    pointer-events: none;
    /* クリックやホバーの反応を完全に無効化する */
    opacity: 0.3;
    /* テキストを50%の半透明にする */
    cursor: default;
    /* マウスカーソルを指マークにならないようにする */
}

/* =========================================
   コーポレートサイトへのリンク（外部への導線）
========================================= */

/* 外部リンクアイコンの共通サイズ */
.external-icon {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
    /* 少し上にずらして文字と高さを合わせる */
}

/* 1. 左側固定ナビ用のデザイン */
.corp-link-wrapper {
    margin-top: 20px;
    /* エントリーボタンとの余白 */
}

.corp-link {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
    /* 少し透かして控えめに */
    transition: opacity 0.3s ease;
}

.corp-link:hover {
    opacity: 1;
    /* マウスオーバーでくっきりさせる */
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 2. ハンバーガーメニュー用のデザイン */
.nav-morph__text__corp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.6rem;
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease;
    padding-top: 50px;
}

.nav-morph__link:hover .nav-morph__text__corp {
    color: #EF5A5A;
    opacity: 1;
}

/* ハンバーガーメニューのリストが5つに増えたため、表示アニメーションの順番を追加 */
.nav-morph.active .nav-morph__item:nth-child(5) {
    transition-delay: 0.7s;
}

/* 3. フッター用のデザイン */
.corp-link-footer {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    /* 上のメニューから少し離す */
    font-weight: bold;
    /* 少しだけ強調 */
    border-top: 1px solid #d9d9d9;
    /* 上に薄い線を引いて区切る */
    padding-top: 30px;
}
