/* ============================================
   リセット・基本スタイル
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6,
.mainSection-title,
.page-header,
.subSection-title,
.veu_leadTxt,
dt {
    font-family: 'Noto Sans JP', sans-serif !important;
}

/* 元のテーマのモバイルナビゲーションを非表示 */
.vk-mobile-nav-menu-btn,
.mobile-fix-nav {
    display: none !important;
}

.no-scroll {
    overflow: hidden;
}

/* ============================================
   ヘッダー
   ============================================ */
.recruit-top__header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
}

.recruit-top__header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recruit-top__header-logo-img {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.recruit-top__header-logo-separator {
    width: 1px;
    height: 30px;
    background: rgb(51, 51, 51);
    margin: 0px 8px;
}

.recruit-top__header-logo-sub {
    font-size: 12px;
    color: rgb(51, 51, 51);
    letter-spacing: 1px;
    font-weight: 400;
}

.recruit-top__header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.recruit-top__header-nav-link {
    color: rgb(51, 51, 51);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.recruit-top__header-nav-link:hover {
    color: #0066cc;
}

.recruit-top__header-entry-btn {
    background: #ff6600;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s;
    text-decoration: none;
}

.recruit-top__header-entry-btn:hover {
    background: #e55a00;
    color: white;
    text-decoration: none;
}

.recruit-top__header-entry-btn:visited,
.recruit-top__header-entry-btn:active,
.recruit-top__header-entry-btn:focus {
    color: white;
    text-decoration: none;
}

.recruit-top__header-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
    background: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 8px;
}

.recruit-top__header-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: rgb(51, 51, 51);
    border-radius: 2px;
    transition: 0.3s;
}

.recruit-top__header-hamburger--active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.recruit-top__header-hamburger--active span:nth-child(2) {
    opacity: 0;
}

.recruit-top__header-hamburger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* モバイルメニュー */
.recruit-top__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #f5f5f5;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.recruit-top__mobile-menu--active {
    right: 0;
}

.recruit-top__mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    background: white;
}

.recruit-top__mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recruit-top__mobile-menu-logo-img {
    height: 25px;
    width: 120px;
    width: auto;
}

.recruit-top__mobile-menu-logo-separator {
    width: 1px;
    height: 30px;
    background: #ddd;
}

.recruit-top__mobile-menu-logo-sub {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #333;
}

.recruit-top__mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
    color: #333;
    padding: 0;
    line-height: 1;
}

.recruit-top__mobile-menu-content {
    padding: 40px 20px;
}

.recruit-top__mobile-menu-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.recruit-top__mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.recruit-top__mobile-menu-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}

.recruit-top__mobile-menu-nav-item:active {
    background: #eee;
}

.recruit-top__mobile-menu-nav-item-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recruit-top__mobile-menu-nav-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.recruit-top__mobile-menu-nav-item-subtitle {
    font-size: 12px;
    color: #666;
}

.recruit-top__mobile-menu-nav-item-arrow {
    font-size: 20px;
    color: #666;
}

.recruit-top__mobile-menu-entry-btn {
    display: block;
    width: 100%;
    background: #ff6600;
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 30px;
    text-decoration: none;
}

.recruit-top__mobile-menu-entry-btn:hover,
.recruit-top__mobile-menu-entry-btn:visited,
.recruit-top__mobile-menu-entry-btn:active,
.recruit-top__mobile-menu-entry-btn:focus {
    color: white;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .recruit-top__header-logo img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .recruit-top__header-logo-img {
        width: 120px;
        height: auto;
    }
}

/* ============================================
   メインビジュアル
   ============================================ */
.recruit-top__hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.recruit-top__hero-slides {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 1;
}

.recruit-top__hero-slide {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0;
    filter: blur(3px);
    background-position: center center;
    transition: opacity 1s ease-in-out;
}

.recruit-top__hero-slide--active {
    opacity: 1;
}

.recruit-top__hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 1200px;
    margin-left: 0px;
    margin-right: auto;
    padding: 0px 60px;
}

.recruit-top__hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: left;
    background: white;
    padding: 8px 20px;
}

.recruit-top__hero-label-line {
    display: inline-block;
}

.recruit-top__hero-label-accent {
    color: #005BAC;
}

.recruit-top__hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
}

.recruit-top__hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    text-align: left;
    margin: 0px;
}

.recruit-top__hero-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    z-index: 3;
    text-align: center;
    line-height: 1.4;
    box-shadow: rgba(255, 51, 51, 0.4) 0px 4px 15px;
    background: rgb(255, 51, 51);
    border-radius: 50%;
}

.recruit-top__hero-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border: 3px solid white;
    border-radius: 50%;
}

.recruit-top__hero-pagination {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    z-index: 3;
    gap: 10px;
}

.recruit-top__hero-pagination-dot {
    width: 10px;
    height: 10px;
    cursor: pointer;
    border-radius: 50%;
    background: rgb(153, 153, 153);
    transition: background 0.3s;
}

.recruit-top__hero-pagination-dot--active {
    background: #ff6600;
}

/* ============================================
   MESSAGEセクション
   ============================================ */
.recruit-top__message {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.recruit-top__message::before,
.recruit-top__message::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

.recruit-top__message::before {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/message-bg.png');
    background-size: contain;
    opacity: 0.6;
}

.recruit-top__message::after {
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background-image: url('../images/message-bg.png');
    background-size: contain;
    opacity: 0.4;
}

.recruit-top__message-bg-text {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 700;
    color: rgba(240, 240, 240, 0.5);
    z-index: 1;
    letter-spacing: 10px;
    white-space: nowrap;
}

.recruit-top__message-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.recruit-top__message-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgb(51, 51, 51);
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
}

.recruit-top__message-subtitle em {
    font-style: normal !important;
    font-weight: 700;
}

.recruit-top__message-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.recruit-top__message-text p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.recruit-top__message-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    width: 90%;
    margin-left: -40px;
    margin-right: 10%;
    position: relative;
    left: 0px;
    gap: 0px;
}

.recruit-top__message-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* ============================================
   IDEALセクション
   ============================================ */
.recruit-top__ideal {
    padding: 100px 40px;
    background: #f8f9fa;
}

.recruit-top__ideal-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.recruit-top__ideal-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.recruit-top__ideal-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0066cc;
}

.recruit-top__ideal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6600;
}

.recruit-top__ideal-title-en {
    color: #ff6600;
}

.recruit-top__ideal-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.recruit-top__ideal-list-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    border:none;
}

.recruit-top__ideal-list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 10%;
    padding-right: 10%;
}

.recruit-top__ideal-list-item-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #ff6600;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    margin-right: 15px;
}

.recruit-top__ideal-list-item-number--negative {
    background: #17a2b8;
}

.recruit-top__ideal-list li {
    background: white;
    padding: 20px;
    border-radius: 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.8;
}

.recruit-top__ideal-highlight {
    color: #ff6600;
    font-weight: 700;
    font-style: normal !important;
}

/* ============================================
   ABOUTセクション
   ============================================ */
.recruit-top__about {
    padding: 100px 40px;
    background: white;
    position: relative;
    overflow-x: hidden;
}

.recruit-top__about-bg-text {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    font-family: 'Lato', sans-serif;
    line-height: 1.2;
    z-index: 0;
}

.recruit-top__about-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.recruit-top__about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.recruit-top__about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
}

.recruit-top__about-title-en {
    font-size: 32px;
    color: #ff6600;
}

.recruit-top__about-left p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 20px;
}

.recruit-top__about-btn {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    margin-top: 30px;
    transition: background 0.3s;
    text-decoration: none;
}

.recruit-top__about-btn:hover {
    background: #e55a00;
    color: white;
    text-decoration: none;
}

.recruit-top__about-btn:visited,
.recruit-top__about-btn:active,
.recruit-top__about-btn:focus {
    color: white;
    text-decoration: none;
}

.recruit-top__about-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.recruit-top__about-image-bottom {
    margin-top: 40px;
    aspect-ratio: 16 / 4;
    width: 90vw;
    margin-left: 10vw;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.recruit-top__about-image-bottom img {
    width: 100%;
    height: auto;
}

/* ============================================
   PEOPLEセクション
   ============================================ */
.recruit-top__people {
    padding: 100px 40px;
    background: #f8f9fa;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.recruit-top__people-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.recruit-top__people-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.recruit-top__people-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0066cc;
}

.recruit-top__people-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6600;
}

.recruit-top__people-title-en {
    font-size: 32px;
    color: #ff6600;
}

.recruit-top__people-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.recruit-top__people-item {
    position: relative;
    background: transparent;
    padding-left: 40px;
}

.recruit-top__people-item-number {
    position: absolute;
    top: 140px;
    left: 10px;
    font-size: 16px;
    font-weight: 700;
    color: rgb(102, 102, 102);
    letter-spacing: 2px;
    z-index: 2;
    transform: rotate(-90deg);
    transform-origin: left top;
    padding: 0px;
    white-space: nowrap;
}

.recruit-top__people-item-number-num {
    color: #ff6600;
}

.recruit-top__people-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.recruit-top__people-item-link:hover {
    transform: translateY(-5px);
}

.recruit-top__people-item-card {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recruit-top__people-item-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
}

.recruit-top__people-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit-top__people-item-quote-box {
    position: absolute;
    bottom: 80px;
    left: 28px;
    right: 20px;
    z-index: 1;
    background: transparent;
    padding: 0px;
}

.recruit-top__people-item-quote {
    font-size: 14px;
    line-height: 2.3;
    color: rgb(51, 51, 51);
    font-weight: 500;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    margin: 0px;
    background: white;
    padding: 4px 8px;
}

.recruit-top__people-item-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    z-index: 2;
}

.recruit-top__people-item-info {
    font-size: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.recruit-top__people-item-name {
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.recruit-top__people-btn {
    display: block;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    width: fit-content;
    background: rgb(255, 102, 0);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s;
    margin: 60px auto 0px;
}

.recruit-top__people-btn:hover {
    background: #f5f5f5;
    border-color: #0066cc;
    color: #0066cc;
}

/* ============================================
   FAQセクション
   ============================================ */
.recruit-top__faq {
    padding: 100px 40px;
    background: #E8EDEE;
}

.recruit-top__faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

.recruit-top__faq-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recruit-top__faq-title {
    font-size: 28px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    margin-bottom: 30px;
    line-height: 1.6;
}

.recruit-top__faq-title-en {
    font-size: 32px;
    color: #ff6600;
}

.recruit-top__faq-view-all {
    display: inline-flex;
    align-items: center;
    color: rgb(51, 51, 51);
    font-size: 14px;
    font-weight: 500;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.recruit-top__faq-view-all::after {
    content: "→";
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    border-image: initial;
    border-radius: 50%;
    transition: 0.3s;
}

/* .recruit-top__faq-view-all:hover {
    background: #f5f5f5;
    border-color: #0066cc;
    color: #0066cc;
} */

.recruit-top__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recruit-top__faq-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
}

.recruit-top__faq-item-question {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    outline: none;
}

.recruit-top__faq-item-question:focus,
.recruit-top__faq-item-question:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.recruit-top__faq-item-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #5B8490;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.recruit-top__faq-item-answer .recruit-top__faq-item-icon {
    background: transparent;
    color: #FF5409;
}

.recruit-top__faq-item-question-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    flex: 1;
}

.recruit-top__faq-item-toggle {
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    margin-right: 5px;
    border-right: 2px solid rgb(102, 102, 102);
    border-bottom: 2px solid rgb(102, 102, 102);
    transition: transform 0.3s;
}

.recruit-top__faq-item--active .recruit-top__faq-item-toggle {
    transform: rotate(225deg);
}

.recruit-top__faq-item-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-top: 0px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
}

.recruit-top__faq-item--active .recruit-top__faq-item-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 30px;
}

.recruit-top__faq-item-answer-text {
    flex: 1;
}

.recruit-top__faq-item-answer-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ============================================
   ENTRYセクション
   ============================================ */
.recruit-top__entry {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: -170px;
    padding: 0px 0px 100px;
}

.recruit-top__entry-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(../images/entry-bg.jpg) center center / cover;
}

.recruit-top__entry-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.recruit-top__entry-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.recruit-top__entry-card {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 90%;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 40px;
    display: flex;
    align-items: center;
    background: white;
    padding: 40px 80px;
    border-radius: 16px;
    gap: 60px;
}

.recruit-top__entry-left {
    flex: 1;
}

.recruit-top__entry-title-sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.recruit-top__entry-title {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.recruit-top__entry-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.recruit-top__entry-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recruit-top__entry-btn {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.recruit-top__entry-btn::after {
    content: '→';
    margin-left: 10px;
}

.recruit-top__entry-btn--outline {
    color: rgb(51, 51, 51);
    background: white;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(221, 221, 221);
    border-image: initial;
}

.recruit-top__entry-btn--outline:hover {
    background: #f5f5f5;
    border-color: #0066cc;
    color: #0066cc;
    text-decoration: none;
}

.recruit-top__entry-btn--primary {
    color: white;
    background: rgb(255, 102, 0);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 102, 0);
    border-image: initial;
}

.recruit-top__entry-btn--primary:hover {
    background: #e55a00!important;
    color: white!important;
    text-decoration: none!important;
}

/* ============================================
   フッター
   ============================================ */
.recruit-top__footer {
    background: #1F5C9A;
    color: white;
    padding: 160px 40px 30px;
    position: relative;
    z-index: 5;
}

.recruit-top__footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.recruit-top__footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.recruit-top__footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recruit-top__footer-logo-img {
    height: 40px;
    width: auto;
}

.recruit-top__footer-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.recruit-top__footer-logo-link:hover {
    opacity: 0.8;
}

.recruit-top__footer-logo-sub-link {
    text-decoration: none;
    color: white;
    display: inline-block;
}

.recruit-top__footer-logo-sub-link:hover,
.recruit-top__footer-logo-sub-link:visited,
.recruit-top__footer-logo-sub-link:active,
.recruit-top__footer-logo-sub-link:focus {
    color: white;
    opacity: 0.8;
}

.recruit-top__footer-logo-separator {
    font-size: 20px;
    opacity: 0.5;
}

.recruit-top__footer-logo-sub {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.recruit-top__footer-nav {
    display: flex;
    gap: 30px;
}

.recruit-top__footer-nav-link {
    font-size: 14px;
    color: white;
    transition: color 0.3s;
}

.recruit-top__footer-nav-link:hover {
    color: #FF5409;
}

.recruit-top__footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.recruit-top__footer-info {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.recruit-top__footer-info p {
    margin-bottom: 5px;
}

.recruit-top__footer-links {
    text-align: right;
}

.recruit-top__footer-site-link {
    display: inline-block;
    font-size: 14px;
    color: white;
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
    transition: color 0.3s;
}

.recruit-top__footer-site-link::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s;
}

.recruit-top__footer-site-link:hover {
    color: #FF5409;
}

.recruit-top__footer-site-link:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5409' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
}

.recruit-top__footer-copyright {
    font-size: 12px;
    opacity: 0.7;
}

/* ============================================
   下層ページ共通ヒーローセクション
   ============================================ */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 100px 40px 60px;
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/message-bg.png');
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.page-hero::before {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.5;
}

.page-hero::after {
    right: 30px;
    bottom: 30px;
    width: 250px;
    height: 250px;
    opacity: 0.4;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.page-hero-bg::before,
.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50vw;
    height: 100%;
    background-image: url('../images/message-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.page-hero-bg::before {
    left: 0;
    background-position: -100px center;
}

.page-hero-bg::after {
    right: 0;
    background-position: calc(100% + 100px) center;
    transform: scaleX(-1);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    width: 100%;
}

.page-hero-breadcrumb-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto 0;
    padding: 0 60px;
}

.page-hero-breadcrumb {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.page-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

.page-hero-title-en {
    font-size: 112px;
    font-weight: 900;
    color: #7BA4B0;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.05em;
}

/* ============================================
   レスポンシブ対応（タブレット: 1024px以下）
   ============================================ */
@media (max-width: 1024px) {
    .recruit-top__header {
        padding: 15px 30px;
    }

    .recruit-top__hero {
        height: 500px;
    }

    .recruit-top__hero-content {
        padding: 0 30px;
    }

    .recruit-top__message {
        padding: 80px 30px;
    }

    .recruit-top__message-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .recruit-top__ideal {
        padding: 80px 30px;
    }

    .recruit-top__about {
        padding: 80px 30px;
    }

    .recruit-top__people {
        padding: 80px 30px;
    }

    .recruit-top__people-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .recruit-top__faq {
        padding: 80px 30px;
    }

    .recruit-top__faq-inner {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }

    .recruit-top__entry {
        padding: 80px 30px;
        margin-bottom: -150px;
    }

    .recruit-top__entry-card {
        padding: 40px;
        gap: 40px;
    }

    .recruit-top__footer {
        padding: 150px 30px 30px;
    }

    .page-hero {
        padding: 80px 30px 60px;
        min-height: 350px;
    }

    .page-hero-title {
        font-size: 40px;
    }

    .page-hero-title-en {
        font-size: 90px;
    }
}

/* ============================================
   レスポンシブ対応（スマホ: 768px以下）
   ============================================ */
@media (max-width: 768px) {
    .recruit-top__header {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    .recruit-top__header-nav {
        display: none;
    }

    .recruit-top__header-entry-btn {
        display: none;
    }

    .recruit-top__header-hamburger {
        display: flex;
    }

    .recruit-top__hero {
        height: 400px;
        margin-top: 60px;
    }

    .recruit-top__hero-content {
        padding: 80px 20px 0;
    }

    .recruit-top__hero-label {
        display: flex;
        flex-direction: column;
        gap: 3px;
        background: transparent;
        padding: 0;
        align-items: flex-start;
    }

    .recruit-top__hero-label-line {
        display: inline-block;
        background: white;
        padding: 8px 20px;
    }

    .recruit-top__hero-subtitle {
        font-size: 18px;
    }

    .recruit-top__hero-badge {
        width: 150px;
        height: 150px;
        font-size: 24px;
        top: 20px;
        right: 20px;
    }

    .recruit-top__hero-badge::before {
        width: 120px;
        height: 120px;
    }

    .recruit-top__hero-pagination {
        bottom: 20px;
        right: 20px;
    }

    .recruit-top__message {
        padding: 60px 20px;
    }

    .recruit-top__message-bg-text {
        font-size: 60px;
        top: 20px;
    }

    .recruit-top__message-title {
        font-size: 32px;
    }

    .recruit-top__message-subtitle {
        font-size: 18px;
    }

    .recruit-top__message-gallery {
        grid-template-columns: 1fr;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .recruit-top__ideal {
        padding: 60px 20px;
    }

    .recruit-top__ideal-title {
        font-size: 24px;
    }

    .recruit-top__ideal-title-en {
        font-size: 18px;
    }

    .recruit-top__ideal-list ul {
        padding-left: 5%;
        padding-right: 5%;
    }

    .recruit-top__about {
        padding: 60px 20px;
    }

    .recruit-top__about-title {
        font-size: 24px;
    }

    .recruit-top__about-bg-text {
        top: 20px;
        font-size: 42px;
    }

    .recruit-top__about-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .recruit-top__about-left {
        display: contents;
    }

    .recruit-top__about-title {
        order: 1;
        margin-bottom: 30px;
    }

    .recruit-top__about-right {
        order: 2;
    }

    .recruit-top__about-text {
        order: 3;
    }

    .recruit-top__about-btn {
        order: 4;
    }

    .recruit-top__about-image-bottom {
        width: calc(100% + 20px);
        margin-left: 0;
        margin-right: -20px;
        margin-top: 40px;
        aspect-ratio: 2 / 1;
        border-radius: 0;
    }

    .recruit-top__about-image-bottom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .recruit-top__people {
        padding: 60px 20px;
        margin-top: 0;
    }

    .recruit-top__people-title {
        font-size: 24px;
    }

    .recruit-top__people-title-en {
        font-size: 18px;
    }

    .recruit-top__people-item-number {
        display: none;
    }

    .recruit-top__people-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recruit-top__people-item {
        padding-left: 0;
    }

    .recruit-top__people-item-image {
        height: 420px;
        aspect-ratio: auto;
    }

    .recruit-top__faq {
        padding: 60px 20px;
    }

    .recruit-top__faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .recruit-top__faq-left {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .recruit-top__faq-title {
        margin-bottom: 0;
    }

    .recruit-top__faq-list {
        gap: 20px;
    }

    .recruit-top__faq-item {
        padding: 10px;
    }

    .recruit-top__faq-item-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .recruit-top__faq-item-question-text {
        font-size: 16px;
    }

    .recruit-top__entry {
        padding: 60px 20px;
        margin-bottom: -120px;
    }

    .recruit-top__entry-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .recruit-top__entry-title {
        font-size: 36px;
    }

    .recruit-top__footer {
        padding: 120px 20px 20px;
    }

    .recruit-top__footer-logo-img {
        height: 30px;
    }

    .recruit-top__footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .recruit-top__footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .recruit-top__footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .recruit-top__footer-links {
        text-align: left;
    }

    .page-hero {
        padding: 60px 20px;
        min-height: 300px;
        margin-top: 60px;
    }

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

    .page-hero-title-en {
        font-size: 56px;
    }

    .page-hero-breadcrumb-wrapper {
        padding: 0 20px;
    }

    .page-hero-breadcrumb {
        font-size: 12px;
    }

    .page-hero-bg::before,
    .page-hero-bg::after {
        background-size: cover;
        background-position: center center;
        width: 100%;
        transform: none;
    }

    .page-hero-bg::after {
        display: none;
    }
}

/* ============================================
   レスポンシブ対応（極小スマホ: 480px以下）
   ============================================ */
@media (max-width: 480px) {
    .recruit-top__hero-badge {
        width: 100px;
        height: 100px;
        font-size: 20px;
    }

    .recruit-top__hero-badge::before {
        width: 100px;
        height: 100px;
    }

    .recruit-top__message-bg-text {
        font-size: 40px;
    }

    .recruit-top__ideal-title-en {
        font-size: 18px;
    }

    .recruit-top__about-title-en {
        font-size: 24px;
    }

    .recruit-top__people-title-en {
        font-size: 18px;
    }

    .page-hero-title {
        font-size: 24px;
    }

    .page-hero-title-en {
        font-size: 48px;
    }
}

