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


body {
    font-family:
        "Yu Gothic",
        "Yu Gothic Medium",
        "游ゴシック体",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
}


.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease-out;
}

.splash-screen.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    width: 80%;
    max-width: 640px;
}


.before-reveal .header,
.before-reveal .hero-banner,
.before-reveal .hero-title,
.before-reveal .scroll-indicator {
    opacity: 0;
}

.main-reveal .header {
    opacity: 1;
    transition: opacity .5s ease-out 1.0s;
}

.main-reveal .hero-banner {
    opacity: 1;
    transition: opacity .5s ease-out .6s;
}

.main-reveal .hero-title {
    opacity: 1;
    transition: opacity .5s ease-out 1.5s;
}


.hero-title-line {
    display: block;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.0s ease-out;
}

.main-reveal .hero-title .hero-title-line:nth-child(1) {
    clip-path: inset(0 0 0 0);
    transition-delay: 1.5s;
}

.main-reveal .hero-title .hero-title-line:nth-child(2) {
    clip-path: inset(0 0 0 0);
    transition-delay: 2.4s;
}

.main-reveal .hero-title .hero-title-line:nth-child(3) {
    clip-path: inset(0 0 0 0);
    transition-delay: 2.9s;
}

.main-reveal .scroll-indicator {
    opacity: 1;
    transition: opacity 0.5s ease-out 4.0s;
}

/* フォント設定 */
.logo-text,
.section-title,
.handbook-title,
.people-block-title,
.video-title,
.faq-q,
.footer-nav-title,
.footer-slogan,
.footer-copyright,
.footer-home-link,
.scroll-text {
    font-family: 'Montserrat', sans-serif;
}


.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}


.header.is-menu-open {
    z-index: 2001;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #222;
    position: relative;
    height: 32px;
    min-width: 120px;
}


.logo img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo a:first-child {
    opacity: 1;
}


.header.is-over-hero .logo a:first-child {
    opacity: 0;
}

.header.is-over-hero .logo a:last-child {
    opacity: 1;
}

.logo a:last-child {
    opacity: 0;
}


.logo-icon {
    font-size: 24px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.entry-button {
    background: #fff;
    border: 1px solid #0D386B;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.entry-button:hover {
    background: #0D386B;
    color: #fff;
}

.entry-button-link {
    text-decoration: none;
    padding: 14px 28px;
    display: block;
    color: #0D386B;
}

.entry-button:hover .entry-button-link {
    background: #0D386B;
    color: #fff;
}

.menu-button {
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 4px;
    width: 48px;
    height: 48px;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #0D386B;
}


.menu-button span {
    height: 2px;
    background: #0D386B;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.menu-button span:nth-child(1) {
    width: 20px;
}

.menu-button span:nth-child(2) {
    width: 16px;
    margin-left: 4px;
}

.menu-button span:nth-child(3) {
    width: 10px;
    margin-left: 10px;
}

.menu-button.is-active {
    gap: 4px;
}

.menu-button.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    width: 28px;
}

.menu-button.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    width: 28px;
    margin-left: 0;
}


.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a3a5c;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity .8s ease, visibility .6s ease;
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 16px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s .1s, visibility .5s .1s;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 64px;
    padding-top: 16px;
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.logo-recruit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-left: 8px;
}

.menu-main {
    margin: 0 auto;
    max-width: 992px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity .3s 0s, transform .3s 0s, visibility .3s 0s;
    padding-bottom: 120px;
}

.menu-nav-section {
    margin-bottom: 48px;
}

.menu-nav-link:hover {
    opacity: 0.8;
}

.menu-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 100px;
    margin-bottom: 80px;
}

.menu-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(20% - 40px);
}

.menu-nav-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.4vw, 24px);
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow-x: hidden;
}

.menu-nav-title-link {
    text-decoration: none;
    color: #fff;
}

.menu-nav-link {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}


.menu-nav-external {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 6px;
    vertical-align: middle;
}

.menu-footer-external, .support-note-external {
    font-size: 14px;
    margin-left: 4px;
}


.menu-buttons {
    display: grid;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 760px;
    margin-inline: auto;
    grid-template-columns: 2fr 1fr;
}

.menu-button-main {
    background: url("img/bg-button.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-family:
        "Yu Gothic",
        "Yu Gothic Medium",
        "游ゴシック体",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}

.menu-button-main-link {
    display: block;
    padding: 28px 0;
    text-decoration: none;
    color: #fff;
}

.menu-button-white {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-family:
        "Yu Gothic",
        "Yu Gothic Medium",
        "游ゴシック体",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
}

.menu-button-white-link {
    display: block;
    padding: 28px 0;
    text-decoration: none;
    color: #fff;
}

.menu-button-main:hover, .menu-button-white:hover {
    background-image: none;
    background-color: #fff;
    color: #0D386B;
}

.menu-button-main:hover .menu-button-main-link {
    color: #0D386B;
}

.menu-button-white:hover .menu-button-white-link {
    color: #0D386B;
}

.menu-button-external, .menu-button-external-blue {
    margin-left: 14px;
}

.menu-button-external-blue {
    display: none;
}

.menu-button-main:hover .menu-button-external, .menu-button-white:hover .menu-button-external {
    display: none;
}

.menu-button-main:hover .menu-button-external-blue, .menu-button-white:hover .menu-button-external-blue {
    display: inline;
    width: 13px;
}

.menu-footer {
    padding-top: 32px;
    max-width: 992px;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity .3s 0s, transform .3s 0s, visibility .3s 0s;
}

.menu-footer-link {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.menu-footer-link:hover {
    opacity: 0.8;
}


.hero-banner {
    padding: 120px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-banner .container {
    z-index: 1;
}

.hero-banner-overlay {
    background-image: url("img/bg-first-noise.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: clamp(48px, 14vw, 80px);
    font-weight: 700;
    line-height: 1.4;
    position: absolute;
    top: 85%;
    transform: translateY(-85%);
    margin-left: -4px;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.8;
    position: absolute;
    top: 90%;
    transform: translateY(-90%);
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    right: 74px;
    bottom: 40px;
    text-align: right;
    color: #fff;
    writing-mode: vertical-rl;
}

.scroll-indicator::before {
    animation: scroll 2s infinite;
    background-color: #fff;
    bottom: -40px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 27px;
    width: 2px;
    z-index: 2;
}

.scroll-indicator::after {
    background-color: rgba(255,255,255,0.5);
    bottom: -40px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 27px;
    width: 2px;
}

@keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}


.hero-cityscape {
    background: rgba(0, 0, 0);
    padding: 120px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-cityscape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(img/bg-second.jpg);
    background-size: cover;
    background-position: bottom;
    opacity: 0.5;
}


.hero-cityscape-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-cityscape.is-inview .hero-cityscape-content {
    opacity: 1;
    transform: translateY(0);
}

.cityscape-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.4;
}

.cityscape-text {
    font-size: 16px;
    line-height: 2;
    margin-inline: auto;
    max-width: 950px;
    letter-spacing: 0.1em;
}

.cityscape-text p {
    margin-bottom: 32px;
}

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


.sub-hero {
    padding: 120px 0 130px;
    color: #fff;
    position: relative;
}

.sub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("img/bg-sub-noise.png");
    background-size: cover;
}

.sub-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.2);
    background-size: cover;
}

.sub-hero-inner {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sub-hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.8;
}

.sub-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1;
    margin-top: 80px;
    margin-bottom: -20px;
}

.sub-hero-title.ja {
    font-family:
        "Yu Gothic",
        "Yu Gothic Medium",
        "游ゴシック体",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    font-size: 60px;
}

.sub-hero-lead {
    font-size: 14px;
    line-height: 2;
    max-width: 640px;
    width: 100%;
}


.sub-hero-jobs {
    background-image: url("img/cafe.jpg");
    background-size: cover;
    background-position: 0 40%;
}
.jobs-category {
    background: #fff;
    padding: 80px 0;
}

.jobs-category-lead {
    font-size: 16px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: #222;
    width: 100%;
}

.jobs-category-link {
    color: #222;
}

.jobs-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.jobs-category-column {
    background: #f7f8fb;
    border-radius: 12px;
    padding: 20px 20px 24px 20px;
}

.jobs-category-column-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #0d386b;
}

.jobs-category-list {
    list-style: none;
}

.jobs-category-item {
    font-size: 13px;
    line-height: 1.8;
    padding: 6px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.jobs-category-item:first-child {
    border-top: none;
}

.jobs-category-image {
    width: 100%;
    display: block;
    margin-inline: auto;
    max-width: 1240px;
}

.jobs-detail {
    padding: 80px 0 120px;
}

.jobs-detail-item:nth-of-type(2) {
    margin-top: 118px;
}

.jobs-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}


.jobs-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #50bbd0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.75s cubic-bezier(0.5, 0, 0.2, 1),
                color 0.5s cubic-bezier(0.5, 0, 0.2, 1) 0.7s;
}

.jobs-detail-item.is-inview .jobs-detail-title {
    clip-path: inset(0 0 0 0);
    color: #222;
}

.jobs-detail-text {
    margin-top: 40px;
}

.jobs-detail-link {
    color: #222;
}

.jobs-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 32px 36px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.jobs-card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0d386b;
    margin-bottom: 8px;
}

.jobs-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.jobs-card-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.jobs-card-text {
    font-size: 14px;
    line-height: 2;
    color: #555;
}


.sub-hero-members {
    background-image: url("img/bg-hero.png");
    background-size: cover;
    background-position: 0 25%;
}
.sub-hero-members.sub-hero::after {
    content: none;
}
.members-voice-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.members-voice-lead {
    font-size: 16px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
    color: #222;
    width: 100%;
}

.members-voice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.members-voice-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #50bbd0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.75s cubic-bezier(0.5, 0, 0.2, 1),
                color 0.5s cubic-bezier(0.5, 0, 0.2, 1) 0.7s;
}

.members-voice-section.is-inview .members-voice-title {
    clip-path: inset(0 0 0 0);
    color: #222;
}

.members-voice-item {
    background: #fff;
    border-radius: 8px;
    padding: 64px 80px;
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    column-gap: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.members-voice-item-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: transparent;
    background-image: linear-gradient(180deg, #778ce1 0%, #5baed5 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.members-voice-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.members-voice-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #50bbd0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.75s cubic-bezier(0.5, 0, 0.2, 1),
                color 0.5s cubic-bezier(0.5, 0, 0.2, 1) 0.7s;
}


.members-voice-item.is-inview .members-voice-item-title {
    clip-path: inset(0 0 0 0);
    color: #222;
    transition-delay: .3s;
}

.members-voice-item-title__large {
    font-size: 32px;
}

.members-voice-item-text {
    font-size: 16px;
    color: #222;
}

.hr-voice-section {
    background: #f5f5f5;
    padding: 40px 0 120px;
}

.hr-voice-card {
    border-radius: 16px;
    padding: 128px 32px;
    background-image: url("img/bg-hrvoice.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    position: relative;
}

.hr-voice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.35);
    border-radius: 16px;
}
.hr-voice-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 12px;
}

.hr-voice-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 72px;
    position: relative;
    z-index: 2;
}

.hr-voice-text {
    font-size: 16px;
    line-height: 2.5;
    position: relative;
    z-index: 2;
    font-weight: 700;
}


.sub-hero-support {
    background-image: url("img/bg-support.jpg");
    background-size: cover;
    background-position: 0 62%;
}

.support-intro-section {
    background: #f5f5f5;
    padding: 80px 0 60px;
}

.support-intro-lead {
    font-size: 16px;
    line-height: 2;
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    color: #222;
    width: 100%;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.support-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    display: grid;
    grid-template-rows: 1fr 144px;
    justify-content: center;
    gap: 40px;
}

.support-card-icon {
    height: 144px;
    display: block;
    margin-inline: auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1) 0.2s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.2s;
}

.support-card.is-inview .support-card-icon {
    opacity: 1;
    transform: translateY(0);
}

.support-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1) 0s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0s;
    position: relative;
}

.support-card-title-small {
    font-size: clamp(16px, 1.5vw, 20px)
}

.support-card-title-note {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    right: 40px;
    bottom: -16px;
}

.support-card.is-inview .support-card-title {
    opacity: 1;
    transform: translateY(0);
}

.support-card-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
}

.support-note {
    font-size: 14px;
    line-height: 2;
    color: #222;
    padding-bottom: 80px;
    margin-top: 40px;
}

.support-note a {
    color: #222;
    text-decoration: underline;
}

.sub-hero-data {
    background-image: url("img/bg-data.jpg");
    background-size: cover;
    background-position: 0 62%;
}

.data-intro-section {
    background: #f5f5f5;
    padding: 80px 0 60px;
}

.data-intro-lead {
    font-size: 16px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #222;
    width: 100%;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.data-card-grid.wide {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 26px;
}

.data-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    min-height: 418px;
}

.data-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
    text-align: center;
}

.data-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
}

.data-card-content {
   margin-top: 60px;
}


.data-card-values {
    font-size: 24px;
    text-align: center;
    line-height: 1;
    margin-top: 40px;
    font-weight: 700;
}

.data-card-content .data-card-values {
    margin-top: 48px;
}


.data-card-values__small {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.data-card-grid.wide .data-card-values__small {
    margin-bottom: 16px;
}

.data-card-values__large {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
}

.data-card-note {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.data-card-content .data-card-values__large, .data-card-grid.wide .data-card-values__large {
    font-size: 48px;
}

.data-card-grid.delta{
    width: 150px;
    margin-inline: auto;
}

.data-card-grid.delta .data-card-icon {
    grid-column: 1 / 3;
}

.data-card-grid.delta .data-card-values:nth-of-type(1){
    grid-column: 1;
    grid-row: 2;
}

.data-card-grid.delta .data-card-values:nth-of-type(2){
    grid-column: 2;
    grid-row: 2;
}

.data-card-title {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1) 0s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0s;
}

.data-card.is-inview .data-card-title {
    opacity: 1;
    transform: translateY(0);
}

.data-card-icon {
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1) 0.2s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.2s;
    height: 104px;
}

.data-card.is-inview .data-card-icon {
    opacity: 1;
    transform: translateY(0);
}

.data-card-values {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s cubic-bezier(0.5, 0, 0, 1) 0.4s, transform 0.5s cubic-bezier(0.5, 0, 0, 1) 0.4s;
}

.data-card.is-inview .data-card-values {
    opacity: 1;
    transform: translateY(0);
}


.data-card-values p {
    margin-bottom: 4px;
}

.data-card-values p:last-child {
    margin-bottom: 0;
}

.data-card-wide {
    grid-column: span 2;
}

.data-date {
    font-size: 16px;
    color: #222;
    text-align: right;
    padding-bottom: 80px;
    margin-top: 24px;
}

.data-card-circle {
    width: 224px;
    margin-inline: auto;
    position: relative;
    text-align: center;
}

.data-card-circle-label {
    color: #fff;
    position: absolute;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s cubic-bezier(0.5, 0, 0, 1) 1.4s, transform 0.4s cubic-bezier(0.5, 0, 0, 1) 1.4s;
}

.data-card.is-inview .data-card-circle-label {
    opacity: 1;
    transform: translateY(0);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.data-card-circle-label:nth-of-type(1) {
    top: 71px;
    right: 22%;
}
.data-card-circle-label:nth-of-type(2) {
    top: 175px;
    right: 34%;
}
.data-card-circle-label:nth-of-type(3) {
    top: 94px;
    left: 14%;
}
.data-card-circle-label:nth-of-type(4) {
    top: -2px;
    left: 12%;
}
.data-card-circle-label:nth-of-type(4) img {
    position: absolute;
    top: 24px;
    margin-left: 8px;
}
.data-card-circle-value__block {
    display: block;
    margin-bottom: -7px;
    font-family:
    "Yu Gothic",
    "Yu Gothic Medium",
    "游ゴシック体",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}
.data-card-circle-value__large {
    font-size: 24px;
    font-weight: 700;
}
.data-card-circle-label.blue {
    color: #6FC7DB;
}

.sub-hero-faq {
    background-image: url("img/bg-hero.png");
    background-size: cover;
    background-position: center;
}
.sub-hero-faq.sub-hero::after {
    content: none;
}

.faq-intro-section {
    padding: 80px 0 48px;
}

.faq-intro-lead {
    font-size: 16px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto 32px auto;
    text-align: center;
    color: #222;
}

.faq-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
}

.faq-category-btn {
    display: inline-flex;
    align-items: center;
    padding: 24px 32px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    width: 100%;
    max-width: 320px;
    position: relative;
}

.faq-category-btn:hover {
    border-color: #222;
    color: #222;
    border: 2px solid #222;
}

.faq-category-btn-arrow {
    right: 24px;
    position: absolute;
}
.faq-page .faq.section {
    padding: 72px 0 48px;
}
#faq-workstyle {
    padding-bottom: 120px;
}

.faq-page .faq .section-title {
    margin-bottom: 0;
}

.faq-page .faq .faq-list {
    margin-bottom: 0;
}

.about-us {
    background: #fff;
    padding: 120px 0;
}

.about-us-content {
    display: grid;
    grid-template-columns: 0.64fr 1fr;
    gap: 80px;
}

.about-us .section-title {
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
    color: #50bbd0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.75s cubic-bezier(0.5, 0, 0.2, 1),
                color 0.5s cubic-bezier(0.5, 0, 0.2, 1) 0.3s;
}

.about-us.is-inview .section-title,
.people.is-inview .section-title,
.our-jobs.is-inview .section-title,
.faq.is-inview .section-title {
    clip-path: inset(0 0 0 0);
    color: #222;
}

.other.is-inview .section-title-white,
.entry.is-inview .section-title-white {
    clip-path: inset(0 0 0 0);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .section-title {
        clip-path: none;
        color: #222;
        transition: none;
    }

    .members-voice-item-title {
        clip-path: none;
        color: #222;
        transition: none;
    }

    .jobs-detail-title {
        clip-path: none;
        color: #222;
        transition: none;
    }

    .faq-subtitle {
        clip-path: none;
        color: #222;
        transition: none;
    }

    .members-voice-title {
        clip-path: none;
        color: #222;
        transition: none;
    }

    .other .section-title-white,
    .entry .section-title-white {
        color: #fff;
    }

    .about-us,
    .people,
    .our-jobs,
    .faq,
    .entry {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.section-title-center {
    text-align: center;
}


.about-us,
.people,
.our-jobs,
.faq,
.entry {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s cubic-bezier(0.5, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.5, 0, 0.2, 1);
}

.about-us.is-inview,
.people.is-inview,
.our-jobs.is-inview,
.faq.is-inview,
.entry.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.about-us-text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 32px;
    color: #666;
}

.about-us-text p {
    margin-bottom: 16px;
}

.view-more-button {
    background-image: url("img/bg-button.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s;
    position: relative;
    padding: 12px 44px 12px 32px;
}

.view-more-button a {
    text-decoration: none;
    color: #fff;
}
.view-more-arrow, .view-more-external {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    transition: 0.3s;
}

.view-more-button:hover a .view-more-arrow, .view-more-button:hover a .view-more-external {
    position: absolute;
    transform: translate(4px, -50%);
}

.handbook-placeholder {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 8px;
    padding: 32px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.handbook-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 40px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 40px);
    opacity: 0.3;
}

.handbook-header {
    position: relative;
    z-index: 1;
}

.handbook-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.handbook-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.handbook-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    text-align: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #4a90e2;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: scale(1.1);
}


.people {
    background: #f5f5f5;
    padding: 120px 0 0;
}

.people-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 48px;
    line-height: 2;
}

.people .section-title {
    margin-bottom: 40px;
}

.people-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    margin-top: 48px;
}

.people-block {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.people-block-link {
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.people-block-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}

.people-block-content:hover {
    background-color: transparent;
}

.members-voice {
    background-image: url("img/people-insight.jpg");
    background-size: cover;
}

.member-interview {
    background-image: url("img/people-interview.jpg");
    background-size: cover;
}

.people-block-third {
    background-image: url("img/people-hrblog.jpg");
    background-size: cover;
}

.people-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    position: relative;
    z-index: 1;
}

.people-block-title-sub {
    color: #fff;
}

.people-block-external {
    margin-left: 4px;
}

.our-jobs {
    background: #fff;
    padding: 120px 0;
}

.our-jobs-content {
    display: grid;
    grid-template-columns: 0.64fr 1fr;
    gap: 80px;
}

.our-jobs .section-title {
    margin-bottom: 40px;
}

.our-jobs-text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 32px;
    color: #666;
}

.our-jobs-text p {
    margin-bottom: 16px;
}

.our-jobs-right img {
    width: 100%;
}
.our-jobs-right  img:hover {
    opacity: 0.7;
}

.office-placeholder {
    background: #e8e8e8;
    border-radius: 8px;
    min-height: 400px;
    position: relative;
}

.office-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,0.05) 40px, rgba(0,0,0,0.05) 41px),
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0,0,0,0.05) 40px, rgba(0,0,0,0.05) 41px);
}

.other {
    position: relative;
    overflow-x: clip;
}


html.st-booting .other-horizontal-scroll {
    visibility: hidden;
}

.other-horizontal-scroll {
    box-sizing: border-box;
    padding: 120px 0 170px 0;
    background: #1a3a5c;
    overflow: hidden;
}

.other-sticky {
    display: flex;
    flex-direction: column;
}

.other-scroller-wrap {
    margin: 40px 0;
    overflow: hidden;
}

.other-scroller {
    display: flex;
    margin-left: calc((100vw - 1240px) / 2);
}


.other-scroller > * {
    flex-shrink: 0;
    width: 604px;
    min-width: 604px;
    height: 340px;
    min-height: 340px;
}

.other-scroller > *:not(:first-child) {
    margin-left: 48px;
}

.other-block {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}


.other-block-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.25s ease;
}

.other-block-link:hover {
    opacity: 0.92;
}


.video-block {
    position: relative;
    cursor: pointer;
}

.video-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    z-index: 2;
    transition: all 1.0s ease;
}

.video-block:hover:before {
    background: rgba(0,0,0,.05);
}

.video-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-block-thumbnail {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 115px;
    text-align: center;
    width: 100%;
    height: 100%;
}


.video-block-icon__before, .video-block-icon__after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(60px, 20vw, 115px);
    height: clamp(60px, 20vw, 115px);
    transform: translate(-50%, -50%);
    transition: all 1.0s ease;
}

.video-block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 16px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 65%;

}

.video-block-icon__before {
    opacity: 1;
}

.video-block-icon__after {
    opacity: 0;
}

.video-block:hover .video-block-icon__before {
    opacity: 0;
}

.video-block:hover .video-block-icon__after {
    opacity: 0.9;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.video-modal-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.video-modal-close::before,
.video-modal-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal-iframe-wrap {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.company-profile-button {
    background: #1a3a5c;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.company-profile-button:hover {
    background: #fff;
    color: #1a3a5c;
}


.interview-block {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.interview-block:before, .data-block:before, .support-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    z-index: 2;
}

.interview-block:hover:before, .data-block:hover:before, .support-block:hover:before {
    background: none;
}

.other-interview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.interview-external {
    margin-left: 6px;
    width: 24px;
    vertical-align: middle;
}


.data-block {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.data-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.data-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}


.support-block {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.support-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.other-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
    width: 32px;
    border-radius: 8px;
}


.faq {
    background: #fff;
    padding: 120px 0;
}


.faq-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #50bbd0;
    margin-bottom: 32px;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.75s cubic-bezier(0.5, 0, 0.2, 1),
                color 0.5s cubic-bezier(0.5, 0, 0.2, 1) 0.3s;
}

.faq.is-inview .faq-subtitle {
    clip-path: inset(0 0 0 0);
    color: #222;
}

.faq .section-title {
    padding-bottom: 10px;
    margin-bottom: 70px;
}

.faq-list {
    margin: 0 auto 40px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 12px;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #222;
}

.faq-q {
    width:24px;
}

.faq-question-text {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.faq-toggle-line {
    background-color: #222;
    position: absolute;
}

.faq-toggle-line-h {
    width: 20px;
    height: 1px;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: 2px;
}

.faq-toggle-line-v {
    width: 1px;
    height: 20px;
    left: 50%;
    top: 50%;
    margin-left: -1px;
    margin-top: -8px;
    transition: transform 0.4s ease-in-out;
}

.faq-item.active .faq-toggle-line-v {
    transform: rotate(90deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
    padding-left: 48px;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    padding-bottom: 24px;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
}

.faq-answer-inner p + p {
    margin-top: 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 2;
    color: #222;
}

.faq-answer a {
    color: #0d386b;
    text-decoration: underline;
}

.faq-answer a:hover {
    opacity: 0.8;
}

.entry {
    background: #1a3a5c;
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}
.entry .section-title {
    margin-bottom: 110px;
}

.entry::before {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    width: 102%;
    height: 220px;
    background: #fff;
    clip-path: polygon(100% 0, -1% 0, 100% 100%);
    z-index: 2;
}

.entry.gray:before {
    background: #f5f5f5;
}

.entry::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 102%;
    height: 220px;
    background: #E8F2F5;
    clip-path: polygon(0 4%, 0 100%, 102% 100%);
    z-index: 2;
}

.entry-content {
    display: grid;
    grid-template-columns: 1fr 496px;
    position: relative;
    z-index: 1;
}

.entry-left {
    margin-right: 64px;
}

.entry-buttons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}



.entry-buttons-external, .entry-buttons-external-blue {
    margin-left: 8px;
}

.entry-buttons-external-blue {
    display: none;
}


.entry-main-button {
    background-image: url("img/bg-button.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
}

.entry-main-button-link {
    display: block;
    padding: 42px 48px;
    text-decoration: none;
    color: #fff;
}

.entry-main-button .entry-buttons-external, .entry-buttons-external-blue {
    width: 22px;
    vertical-align: middle;
}

.entry-main-button:hover {
    background-image: none;
    background-color: #fff;
    color: #0D386B;
}

.entry-main-button:hover .entry-main-button-link {
    color: #0D386B;
}

.entry-sub-button {
    background: transparent;
    color: #fff;
    border: 2px solid #1a3a5c;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    font-family: inherit;
    border: 1px solid #fff;
}

.entry-sub-button-link {
    display: block;
    padding: 44px 48px;
    text-decoration: none;
    color: #fff;
}

.entry-sub-button:hover {
    background: #fff;
    color: #1a3a5c;
}

.entry-sub-button:hover .entry-sub-button-link {
    color: #1a3a5c;
}


.entry-sub-button .entry-buttons-external, .entry-sub-button .entry-buttons-external-blue {
    width: 16px;
    vertical-align: middle;
}

.entry-main-button:hover .entry-buttons-external, .entry-sub-button:hover .entry-buttons-external {
    display: none;
}

.entry-main-button:hover .entry-buttons-external-blue, .entry-sub-button:hover .entry-buttons-external-blue {
    display: inline;
}

.entry-right {
    position: relative;
    height: 100%;
    height: 800px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.entry-image-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
    position: relative;
    animation: scrollVertical 20s linear infinite;
}

.entry-image-grid--reverse {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
    position: relative;
    animation: scrollVerticalReverse 20s linear infinite;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 8px));
    }
}

@keyframes scrollVerticalReverse {
    100% {
        transform: translateY(0);
    }
    0% {
        transform: translateY(calc(-50% - 8px));
    }
}

.entry-image-item {
    aspect-ratio: 1;
    flex-shrink: 0;
    width: 240px;
    height: 280px;
}

.entry-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.footer {
    background: #E8F2F5;
    padding: 4px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-main {
    margin: 0 auto 48px;
    max-width: 992px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    transition: background 0.3s;
    padding: 20px;
}

.social-icon:hover {
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.4);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-evenly
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: calc(20% - 40px);
}


.footer-nav-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.4vw, 24px);
    font-weight: 500;
    color: #222;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(22,22,22,0.3);
    position: relative;
    overflow-x: hidden;
}

.footer-nav-column:nth-child(3) .footer-nav-title:before, .footer-nav-column:last-child .footer-nav-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: #222;
    transition: transform 0.3s ease-in-out;
}

.footer-nav-column:nth-child(3):hover .footer-nav-title:before, .footer-nav-column:last-child:hover .footer-nav-title:before {
    transform: translateX(100%);
}

.footer-nav-title-link {
    text-decoration: none;
    color: #222;
}

.footer-nav-link {
    font-size: clamp(12px, 1.4vw, 14px);
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-nav-link:hover {
    opacity: 0.5;
}

.footer-nav-external {
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 48px;
    padding-bottom: 120px;
    position: relative;
}

.footer-logo-black {
    position: absolute;
    left: 4px;
    top: 56px;
}

.footer-slogan {
    font-family: 'YuMincho', serif;
    font-size: 32px;
    font-weight: 500;
    color: #222;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #222;
    margin-bottom: 16px;
}

.footer-texts {
    display: flex;
    justify-content: center;
}
.footer-copyright, .footer-home-link {
    font-size: 14px;
    color: #222;
    padding: 0 12px;
}
.footer-copyright {
    border-right: 1px solid #222;
    font-family: 'Montserrat', sans-serif;
}
.footer-home-link {
    font-family:
        "Yu Gothic",
        "Yu Gothic Medium",
        "游ゴシック体",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    text-decoration: none;
}

.footer-home-external {
    margin-left: 4px;
}

.menu-bg:before, .menu-bg:after {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    aspect-ratio: 1 / 1;
    clip-path: circle(0 at 100% 0);
    content: "";
    opacity: 0;
    height: 100%;
    z-index: 2;
}

.menu-bg:before {
    background-color: #008cd680;
    transition: opacity .5s .5s cubic-bezier(0, 0, 0, 1), width .6s .6s cubic-bezier(0, 0, 0, 1), height .6s .6s cubic-bezier(0, 0, 0, 1), clip-path .6s .4s cubic-bezier(0, 0, 0, 1);
}

.menu-bg:after {
    background-color: #0D386B;    ;
    transition: opacity .5s .4s cubic-bezier(0, 0, 0, 1), width .6s .6s cubic-bezier(0, 0, 0, 1), height .6s .6s cubic-bezier(0, 0, 0, 1), clip-path .6s .3s cubic-bezier(0, 0, 0, 1);
}

.menu-overlay.is-active .menu-bg:before {
    transition: opacity .5s cubic-bezier(0, 0, 0, 1), min-width .5s cubic-bezier(0, 0, 0, 1), min-height .5s cubic-bezier(0, 0, 0, 1), clip-path .5s cubic-bezier(0, 0, 0, 1);
}

.menu-overlay.is-active .menu-bg:after {
    transition: opacity .6s .1s cubic-bezier(0, 0, 0, 1), min-width .6s .1s cubic-bezier(0, 0, 0, 1), min-height .6s .1s cubic-bezier(0, 0, 0, 1), clip-path .6s .1s cubic-bezier(0, 0, 0, 1);
}

.menu-overlay.is-active .menu-bg:before, .menu-overlay.is-active .menu-bg:after {
    width: 100vw;
    height: 100vh;
    clip-path: circle(150% at 100% 0);
    opacity: 1;
}

.menu-overlay.is-active .menu-main, .menu-overlay.is-active .menu-footer {
    transition: opacity .3s .6s, transform .3s .6s, visibility .3s .6s;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-overlay.is-active .menu-content {
    opacity: 1;
    visibility: visible;
    transition: opacity .5s .5s, visibility .5s .5s;
}

.menu-nav-column:nth-child(3) .menu-nav-title:before, .menu-nav-column:last-child .menu-nav-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease-in-out;
}

.menu-nav-column:nth-child(3):hover .menu-nav-title:before, .menu-nav-column:last-child:hover .menu-nav-title:before {
    transform: translateX(100%);
}



.pieRevealSweep{
    transform-origin: 112px 150.734px;
    transform: rotate(-90deg);

    stroke-dasharray: 100;
    stroke-dashoffset: 100;

    animation: pieReveal 1.4s ease-out forwards;
}

@keyframes pieReveal {
    to { stroke-dashoffset: 0; }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .header {
        padding: 12px 0;
    }

    .header-content {
        gap: 12px;
    }

    .header .container {
        padding: 0 20px;
    }

    .logo {
        height: 28px;
        min-width: 100px;
    }

    .logo img {
        height: 28px;
    }

    .nav {
        gap: 12px;
    }
    .hero-title {
        font-size: 9vw;
    }
    .entry-button {
        font-size: 13px;
    }

    .entry-right {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .menu-button {
        width: 44px;
        height: 44px;
        padding: 6px;
    }

    .menu-button span:nth-child(1) {
        width: 18px;
    }

    .menu-button span:nth-child(2) {
        width: 14px;
    }

    .menu-button span:nth-child(3) {
        width: 8px;
    }

    .menu-button.is-active span:nth-child(1),
    .menu-button.is-active span:nth-child(3) {
        width: 24px;
    }

    .about-us-content,
    .our-jobs-content,
    .entry-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .people-content,
    .other-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 56px;
    }

    .hero-banner {
        padding: 100px 0 60px;
        min-height: 100vh;
    }

    .scroll-indicator {
        right: 32px;
    }

    .hero-cityscape {
        padding: 80px 0;
        min-height: 480px;
    }

    .cityscape-title {
        font-size: 32px;
    }

    .sub-hero {
        padding: 80px 0 100px;
    }

    .sub-hero-title {
        font-size: 56px;
        margin-top: 48px;
    }

    .sub-hero-title.ja {
        font-size: 48px;
    }

    .jobs-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .jobs-detail,
    .jobs-category {
        padding: 60px 0;
    }

    .members-voice-section {
        padding: 60px 0;
    }

    .members-voice-title {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .members-voice-item {
        padding: 40px 32px;
        grid-template-columns: 64px 1fr;
        column-gap: 20px;
    }

    .members-voice-item-number {
        font-size: 56px;
    }

    .members-voice-item-title {
        font-size: 20px;
    }

    .members-voice-item-title__large {
        font-size: 26px;
    }

    .hr-voice-card {
        padding: 80px 24px;
    }

    .hr-voice-title {
        font-size: 26px;
        margin-bottom: 48px;
    }

    .support-intro-section,
    .support-grid {
        padding: 60px 0 40px;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .data-intro-section {
        padding: 60px 0 40px;
    }

    .data-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-intro-section {
        padding: 60px 0 32px;
    }

    .faq-category-nav {
        gap: 24px;
        margin-top: 48px;
    }

    .faq-category-btn {
        padding: 20px 24px;
        font-size: 16px;
        max-width: 280px;
    }

    .faq-page .faq.section {
        padding: 48px 0 32px;
    }

    .faq-subtitle {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .faq-question {
        padding: 20px 12px;
    }

    .faq-question-text {
        font-size: 18px;
    }

    .entry {
        padding: 80px 0 0;
    }

    .entry::before, .entry::after {
        height: 120px;
    }

    .entry .section-title {
        margin-bottom: 64px;
    }

    .entry-left {
        margin-right: 0;
    }

    .entry-buttons {
        gap: 24px;
    }

    .entry-main-button,
    .entry-sub-button {
        font-size: 20px;
    }

    .entry-right {
        height: 560px;
    }

    .entry-image-item {
        width: calc((100vw / 3) - 30px);
        height: auto;
        aspect-ratio: 5 / 6;
    }

    .footer-top {
        margin-bottom: 80px;
    }

    .footer-main {
        margin-bottom: 40px;
    }

    .footer-logo-black {
        top: calc(100% - 56px);
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 10px 0;
    }

    .header-content {
        gap: 8px;
    }

    .header .container {
        padding: 0 16px;
    }

    .logo {
        height: 24px;
        min-width: 90px;
    }

    .logo img {
        height: 24px;
    }

    .nav {
        gap: 8px;
    }

    .entry-button {
        font-size: 12px;
    }

    .entry-button-link {
        padding: 12px 12px;
    }

    .entry::before, .entry::after {
        height: 80px;
    }

    .other-horizontal-scroll {
        padding: 48px 0 64px;
    }

    .other-scroller-wrap {
        overflow: visible;
        margin: 24px 0 32px;
        padding: 0 16px;
    }

    .other-scroller {
        flex-direction: column;
        margin-left: 0;
        align-items: stretch;
    }

    .other-scroller > * {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
        min-height: 0;
        margin-left: 0;
        margin-bottom: 24px;
    }

    .other-scroller > *:last-child {
        margin-bottom: 0;
    }

    .video-block iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .other-dots {
        display: none;
    }

    .entry-right {
        grid-template-columns: 1fr 1fr;
    }
    .menu-button {
        width: 40px;
        height: 40px;
        padding: 4px;
    }

    .menu-button span {
        height: 1.5px;
    }

    .menu-button span:nth-child(1) {
        width: 16px;
    }

    .menu-button span:nth-child(2) {
        width: 12px;
        margin-left: 2px;
    }

    .menu-button span:nth-child(3) {
        width: 8px;
        margin-left: 6px;
    }

    .menu-button.is-active span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
        width: 22px;
    }

    .menu-button.is-active span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
        width: 22px;
        margin-left: 0;
    }

    /* メニューオーバーレイ（SP） */
    .menu-content {
        padding: 64px 16px 48px;
    }

    .menu-header {
        margin-bottom: 40px;
        padding-top: 12px;
    }

    .menu-main {
        padding-bottom: 64px;
    }

    .menu-nav {
        margin-top: 48px;
        margin-bottom: 48px;
        gap: 24px;
        justify-content: flex-start;
    }

    .menu-nav-column {
        width: 100%;
        gap: 12px;
    }

    .menu-nav-title {
        font-size: 18px;
        margin-bottom: 6px;
        padding-bottom: 6px;
    }

    .menu-nav-link {
        font-size: 14px;
    }

    .menu-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: none;
    }

    .menu-button-main,
    .menu-button-white {
        font-size: 15px;
    }

    .menu-footer {
        padding-top: 24px;
    }

    .menu-footer-link {
        font-size: 14px;
    }

    .about-us,
    .our-jobs,
    .faq {
        padding: 48px 0;
    }

    .people {
        padding: 48px 0 0;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-banner {
        padding: 80px 0 48px;
    }

    .hero-title {
        font-size: 9vw;
    }

    .scroll-indicator {
        right: 16px;
    }

    .scroll-text {
        font-size: 9px;
    }
    

    .hero-cityscape {
        padding: 48px 0;
        min-height: 360px;
    }

    .cityscape-title {
        font-size: clamp(14px, 5.4vw, 24px);
        margin-bottom: 24px;
    }

    .cityscape-text {
        font-size: 14px;
    }

    .sub-hero {
        padding: 80px 0 64px;
    }

    .sub-hero-title {
        font-size: 36px;
        margin-top: 24px;
        margin-bottom: -12px;
    }

    .sub-hero-title.ja {
        font-size: 28px;
    }

    .sub-hero-lead {
        font-size: 13px;
    }

    .jobs-category {
        padding: 48px 0;
    }

    .jobs-category-lead {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .jobs-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jobs-detail {
        padding: 48px 0;
    }

    .jobs-detail-title {
        font-size: clamp(14px, 5.4vw, 24px);
        margin-bottom: 40px;
    }

    .jobs-card {
        padding: 24px 20px;
    }

    .jobs-card-title {
        font-size: 18px;
    }

    .about-us-content{
        gap: 0;
    }

    .about-us-text {
        margin-bottom: 48px;
    }

    .people-block {
        min-height: 240px;
    }

    .members-voice-section {
        padding: 48px 0;
    }

    .members-voice-lead {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .members-voice-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .members-voice-item {
        padding: 24px 20px;
        grid-template-columns: 48px 1fr;
        column-gap: 16px;
    }

    .members-voice-item-number {
        font-size: 40px;
    }

    .members-voice-item-title {
        font-size: 16px;
    }

    .members-voice-item-title__large {
        font-size: 20px;
    }

    .members-voice-item-text {
        font-size: 14px;
    }

    .hr-voice-section {
        padding: 32px 0 64px;
    }

    .hr-voice-card {
        padding: 48px 20px;
    }

    .hr-voice-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .hr-voice-text {
        font-size: 14px;
    }

    .support-intro-section {
        padding: 48px 0 32px;
    }

    .support-intro-lead {
        font-size: 14px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        padding: 0 0 40px;
        margin-top: 48px;
    }

    .support-card {
        padding: 24px 20px;
    }

    .support-card-title {
        font-size: 15px;
    }

    .support-note {
        font-size: 13px;
        padding-bottom: 48px;
        margin-top: 0;
    }

    .data-intro-section {
        padding: 48px 0 32px;
    }

    .data-intro-lead {
        font-size: 14px;
    }

    .data-grid {
        grid-template-columns: 1fr;
        padding: 0 0 32px;
        margin-top: 48px;
    }

    .data-card-wide {
        grid-column: span 1;
    }

    .data-card {
        padding: 28px 16px;
        min-height: 374px;
    }

    .data-card-grid.wide {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 28px;
    }

    .data-card-values__small.long {
        font-size: 13px;
        margin-top: 1px;
        margin-bottom: 18px;

    }

    .data-card-grid.wide .data-card-values__small.long {
        margin-bottom: 17px;
    }

    .data-card-note {
        bottom: 12px;
    }
    .data-date {
        padding-bottom: 48px;
    }

    .faq .section-title {
        margin-bottom: 30px;
    }
    .faq-intro-section {
        padding: 48px 0 24px;
    }

    .faq-intro-lead {
        font-size: 14px;
    }

    .faq-category-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 32px;
    }

    .faq-category-btn {
        max-width: none;
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-page .faq.section {
        padding: 32px 0 24px;
    }

    .faq-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 16px 12px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer {
        padding-left: 44px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .entry {
        padding: 64px 0 0;
    }

    .entry .section-title {
        margin-bottom: 40px;
    }

    .entry-buttons {
        gap: 16px;
    }

    .entry-main-button,
    .entry-sub-button {
        font-size: 16px;
    }

    .entry-main-button-link,
    .entry-sub-button-link {
        padding: 28px 0;
    }

    .entry-right {
        height: 400px;
    }

    .entry-image-item {
        width: calc((100vw / 2) - 24px);
        height: auto;
        aspect-ratio: 5 / 6;
    }

    .footer-top {
        flex-direction: column;
        margin-bottom: 48px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }

    .footer-nav-column {
        width: 100%;
    }

    .footer-nav-title {
        font-size: 24px;
    }

    .footer-nav-link {
        font-size: 14px;
    }

    .footer-main {
        margin-bottom: 32px;
    }

    .other-scroller-wrap {
        padding: 0 16px;
    }

    .other-scroller > * {
        max-width: 100%;
    }
    .other-scroller > *:not(:first-child) {
        margin-left: 0;
    }

    .view-more-button {
        font-size: 14px;
        padding: 12px 44px 12px 32px;
    }

    .data-block, .interview-block, .support-block {
        padding: 4px 12px;
    }

    .data-title, .interview-title, .support-title {
        font-size: 20px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
        padding: 12px;
    }
    .footer {
        padding-top: 24px;
    }
    .footer-slogan {
        font-size: 5.0vw;
    }
}

@media (min-width: 1272px) {
    .header .container {
        max-width: none;
        padding-inline: 32px;
    }
}



@media (prefers-reduced-motion: reduce) {
    .pieRevealSweep {
        animation: none;
        stroke-dashoffset: 0;
    }

    .data-card-circle-label {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


@media (min-width: 768px) and (max-width: 1239px) {
    .other-scroller {
        width: 500px;
        margin-left: 28px;
    }
}