/* ============================================
   リセット & ベース設定
   ============================================ */

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

html {
    font-size: 16px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    cursor: url('https://buzzmedia.co.jp/aibee/wp-content/uploads/2025/12/AIbeeマウスカーソル.png') 15 15, auto !important;
}

body {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    cursor: url('https://buzzmedia.co.jp/aibee/wp-content/uploads/2025/12/AIbeeマウスカーソル.png') 15 15, auto !important;
}

/* カスタムカーソル画像の背景透過とサイズ最適化 */
@supports (cursor: url('')) {
    html, body {
        cursor: url('https://buzzmedia.co.jp/aibee/wp-content/uploads/2025/12/AIbeeマウスカーソル.png') 15 15, auto !important;
    }
}

/* カスタムカーソルを継承（クリック可能な要素で上書きされる） */
div,
section,
article,
header,
footer,
main,
p,
h1, h2, h3, h4, h5, h6,
span,
li,
ul,
ol {
    cursor: inherit;
}

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

/* 入力フィールドのカーソル設定 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
    cursor: text !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

ul {
    list-style: none;
}

/* ============================================
   左サイド固定ナビゲーション
   ============================================ */

.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    height: 100vh;
    z-index: 1000;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
}

.side-nav__inner {
    width: 100%;
    padding: 30px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.side-nav__logo {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-bottom: 80px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* デスクトップ版ではside-nav__header内のロゴを表示 */
.side-nav__header .side-nav__logo {
    display: block !important;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-bottom: 40px;
    margin-right: 0;
}

.side-nav__logo-link {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #FFFFFF !important;
    transition: color 0.3s ease;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.side-nav__logo-link:hover {
    color: #FFFFFF !important;
    opacity: 0.7;
}

.side-nav__menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
    flex: 1;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.side-nav__item {
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 0 1px;
    overflow: hidden;
}

.side-nav__link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #FFD700 !important;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    cursor: pointer !important;
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 2px;
    box-sizing: border-box;
}

.side-nav__link::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background-color: #fff;
    transition: height 0.3s ease;
}

.side-nav__link:hover,
.side-nav__link.active {
    color: #FFD700 !important;
    opacity: 0.7;
}

.side-nav__link:hover::after,
.side-nav__link.active::after {
    height: 100%;
}

@media (max-width: 1024px) {
    .side-nav {
        width: 80px;
    }
    
    .side-nav__inner {
        padding: 30px 15px;
    }
    
    .side-nav__logo-link {
        font-size: 0.875rem;
    }
    
    .side-nav__link {
        font-size: 0.625rem;
    }
}

/* ハンバーガーメニューボタン（デスクトップでは非表示） */
.side-nav__header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* デスクトップ版ではハンバーガーボタンだけ非表示 */
.side-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer !important;
    padding: 8px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
    position: relative;
    visibility: hidden;
    opacity: 0;
}

.side-nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.side-nav__toggle[aria-expanded="true"] .side-nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.side-nav__toggle[aria-expanded="true"] .side-nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.side-nav__toggle[aria-expanded="true"] .side-nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .side-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        min-height: 70px !important;
        background-color: #000000 !important;
        z-index: 10000 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .side-nav__inner {
        width: 100% !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .side-nav__header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 0 16px !important;
        height: 70px !important;
        min-height: 70px !important;
    }
    
    .side-nav__logo {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        margin-bottom: 0 !important;
        margin-right: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .side-nav__logo-link {
        font-size: clamp(1rem, 4vw, 1.125rem) !important;
        font-weight: 900 !important;
        white-space: nowrap !important;
        letter-spacing: 0.05em !important;
        padding: 8px 0 !important;
        display: block !important;
        color: #ffffff !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
    }
    
    .side-nav__toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: transparent !important;
    }
    
    .side-nav__toggle-line {
        display: block !important;
        width: 24px !important;
        height: 2px !important;
        background-color: #ffffff !important;
    }
    
    .side-nav__menu {
        display: none !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
        width: 100% !important;
        background-color: #000000 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .side-nav__menu.is-open {
        display: flex !important;
        max-height: 100vh !important;
        padding: 20px 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
        width: 100% !important;
    }
    
    .side-nav__item {
        writing-mode: horizontal-tb !important;
        text-orientation: upright !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        display: block !important;
    }
    
    .side-nav__item:last-child {
        border-bottom: none;
    }
    
    .side-nav__link {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        font-weight: 500;
        padding: 18px 24px;
        white-space: nowrap;
        display: block;
        transition: all 0.3s ease;
        letter-spacing: 0.1em;
        text-align: left;
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .side-nav__link:hover,
    .side-nav__link.active {
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
        padding-left: 32px;
    }
    
    .side-nav__link::after {
        display: none;
    }
    
    .side-nav__link.active {
        background-color: rgba(255, 255, 255, 0.15);
        font-weight: 600;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .side-nav__header {
        padding: 0 12px;
        height: 60px;
        min-height: 60px;
    }
    
    .side-nav__logo {
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
    }
    
    .side-nav__logo-link {
        font-size: clamp(0.9375rem, 4.5vw, 1.0625rem) !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
    }
    
    .side-nav__toggle {
        width: 40px;
        height: 40px;
    }
    
    .side-nav__toggle-line {
        width: 20px;
    }
    
    .side-nav__menu.is-open {
        padding: 16px 0;
    }
    
    .side-nav__link {
        font-size: clamp(0.8125rem, 4vw, 0.9375rem);
        padding: 16px 20px;
    }
    
    .side-nav__link:hover,
    .side-nav__link.active {
        padding-left: 28px;
    }
}

/* ============================================
   メインコンテンツ
   ============================================ */

.main-content {
    margin-left: 120px;
    width: calc(100% - 120px);
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .main-content {
        margin-left: 80px;
        width: calc(100% - 80px);
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding-top: 70px !important; /* 上部ナビの高さ分のパディングを追加 */
    }
}

/* ============================================
   FV (First View) セクション
   ============================================ */

.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible !important;
    padding-right: 120px;
    padding-top: 120px;
    background-color: #000000 !important;
    background-image: none !important;
}


/* Heroセクションのテキストの強制適用 */
.fv h1,
.fv h2,
.fv h3,
.fv p,
.fv span,
.fv__title,
.fv__title-line,
.fv__subtitle,
.fv__content,
.fv__text-wrapper,
.fv__scroll-text {
    color: #FFFFFF !important;
}

.fv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #000000 !important;
    background-image: none !important;
}

.fv__bg-image {
    display: none !important;
    /* 背景画像を完全に削除 */
}

/* Canvas背景アニメーション */
.fv-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.fv__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 40px;
    text-align: center;
}

.fv__logo-wrapper {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.fv__logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fv__text-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.fv__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #ffffff !important;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15em;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.fv__title-line {
    display: block;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
    overflow-wrap: normal;
}

.fv__title-line:last-child {
    margin-bottom: 0;
}

.fv__subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffffff !important;
    line-height: 1.8;
}

/* FVセクション内のテキストを確実に白にする */
.fv h1,
.fv h2,
.fv h3,
.fv p,
.fv span,
.fv__title,
.fv__title-line,
.fv__subtitle,
.fv__scroll-text {
    color: #ffffff !important;
}

.fv__scroll-indicator {
    position: absolute;
    right: 60px;
    bottom: 60px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.fv__scroll-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.fv__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(20px);
    }
}

@media (max-width: 1024px) {
    .fv {
        padding-right: 80px;
        padding-top: 100px;
    }
    
    .fv__logo {
        max-width: 300px;
    }
    
    .fv__title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        width: 100%;
        text-align: center;
    }
    
    .fv__title-line {
        white-space: nowrap;
    }
    
    .fv__subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .fv {
        padding-right: 20px !important;
        padding-left: 20px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        min-height: calc(100vh - 70px) !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .fv__content {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }
    
    .fv__logo-wrapper {
        margin-bottom: 20px !important;
    }
    
    .fv__logo {
        max-width: min(240px, 65vw) !important;
        width: 100%;
        height: auto;
    }
    
    .fv__title {
        font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
        white-space: normal;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
        word-break: keep-all;
        overflow-wrap: break-word;
        width: 100% !important;
        text-align: center !important;
    }
    
    .fv__title-line {
        white-space: nowrap !important;
        display: block !important;
        width: 100% !important;
    }
    
    .fv__subtitle {
        font-size: clamp(0.8125rem, 3vw, 0.9375rem) !important;
        line-height: 1.6 !important;
        padding: 0 !important;
    }
    
    .fv__scroll-indicator {
        right: 12px !important;
        bottom: 20px !important;
        width: 20px !important;
        height: auto !important;
        gap: 8px !important;
        opacity: 1 !important;
    }
    
    .fv__scroll-text {
        font-size: clamp(0.625rem, 2.5vw, 0.6875rem) !important;
        letter-spacing: 0.1em !important;
        writing-mode: vertical-rl !important;
        text-orientation: upright !important;
    }
    
    .fv__scroll-line {
        width: 1px !important;
        height: 30px !important;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .fv {
        padding-right: 16px !important;
        padding-left: 16px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .fv__logo-wrapper {
        margin-bottom: 16px !important;
    }
    
    .fv__logo {
        max-width: min(200px, 60vw) !important;
    }
    
    .fv__title {
        font-size: clamp(1.375rem, 7vw, 1.75rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .fv__title-line {
        white-space: normal !important;
        display: block !important;
    }
    
    .fv__subtitle {
        font-size: clamp(0.75rem, 3vw, 0.875rem) !important;
        line-height: 1.5 !important;
        padding: 0 !important;
    }
    
    .fv__scroll-indicator {
        right: 10px !important;
        bottom: 16px !important;
        width: 18px !important;
        height: auto !important;
        gap: 6px !important;
        opacity: 1 !important;
    }
    
    .fv__scroll-text {
        font-size: clamp(0.5625rem, 2.2vw, 0.625rem) !important;
        letter-spacing: 0.08em !important;
    }
    
    .fv__scroll-line {
        width: 1px !important;
        height: 24px !important;
    }
}

/* ============================================
   Service セクション（タイポグラフィ特化版）
   ============================================ */

.section-services-type {
    position: relative;
    padding: 200px 120px 200px 0;
    min-height: auto;
}

.section-services-type .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 80px;
}

.section-services-type .section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: uppercase;
    position: absolute;
    left: -80px;
    top: 200px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    opacity: 0;
    transform: translateY(30px);
}

/* サービスリスト（タイポグラフィ特化） */
.service-type-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ccc; /* 一番上の線 */
}

.service-type-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    border-bottom: 1px solid #ccc; /* 各行の下線 */
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    opacity: 0;
    cursor: pointer !important;
}

/* 数字 */
.service-num {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin-right: 40px;
    opacity: 0.5;
    min-width: 60px;
}

/* テキスト情報 */
.service-info {
    flex: 1;
    background-color: transparent;
}

.service-type-item .service-name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem; /* 巨大な文字 */
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: inherit;
}

.service-type-item .service-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.7;
    color: inherit;
}

/* 矢印 */
.service-arrow {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    transition: transform 0.4s ease;
    color: inherit;
    margin-left: 40px;
}

/* ホバーエフェクト（黒背景・黄色文字） */
.service-type-item:hover {
    background-color: #000000 !important;
    color: #FFD700 !important;
    border-color: #000000 !important;
    padding-left: 40px; /* 少し右にずれる演出 */
}

/* ホバー時のservice-infoの背景を透明に */
.service-type-item:hover .service-info {
    background-color: transparent !important;
}

/* 内部のテキスト要素も個別に黄色を指定（より具体的なセレクタで確実に適用） */
.service-type-item:hover .service-num,
.service-type-item:hover .service-name,
.service-type-item:hover .service-desc,
.service-type-item:hover .service-arrow,
.service-type-item:hover .service-info,
.service-type-item:hover .service-info h3,
.service-type-item:hover .service-info p,
.service-type-item:hover h3,
.service-type-item:hover p,
.service-type-item:hover span {
    color: #FFD700 !important;
    opacity: 1 !important; /* 半透明だったものもハッキリ見せる */
}

.service-type-item:hover .service-arrow {
    transform: translateX(20px); /* 矢印が右に動く */
    color: #FFD700 !important;
}

/* もし矢印などがSVGの場合は fill も黄色にする */
.service-type-item:hover svg {
    fill: #FFD700 !important;
}

@media (max-width: 1024px) {
    .section-services-type {
        padding: 120px 80px 120px 0;
    }
    
    .section-services-type .container {
        padding-left: 60px;
    }
    
    .section-services-type .section-title {
        left: -60px;
        font-size: 1.625rem;
    }
    
    .service-type-item .service-name {
        font-size: 2rem;
    }
    
    .service-type-item .service-desc {
        font-size: 1rem;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .section-services-type {
        padding: 40px 12px 40px 0 !important;
    }
    
    .section-services-type .container {
        padding-left: 0;
        width: 100%;
    }
    
    .section-services-type .section-title {
        position: static;
        writing-mode: horizontal-tb;
        text-orientation: upright;
        margin-bottom: 24px !important;
        padding-left: 12px !important;
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .service-type-list {
        gap: 0;
        border-top-width: 2px;
    }
    
    .service-type-item {
        padding: 20px 12px !important;
        flex-wrap: wrap;
        gap: 10px !important;
        border-bottom-width: 2px;
        min-height: auto !important;
        align-items: flex-start;
    }
    
    .service-type-item .service-name {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem) !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .service-type-item .service-desc {
        font-size: clamp(0.8125rem, 3vw, 0.9375rem) !important;
        line-height: 1.6 !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .service-arrow {
        display: none;
    }
    
    .service-num {
        margin-right: 10px !important;
        min-width: 28px !important;
        font-size: clamp(0.9375rem, 3.5vw, 1.125rem) !important;
        flex-shrink: 0;
    }
    
    .service-info {
        flex: 1;
        min-width: 0;
    }
    
    .service-type-item:hover {
        padding-left: 16px !important;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .section-services-type {
        padding: 32px 12px 32px 0 !important;
    }
    
    .section-services-type .section-title {
        padding-left: 12px !important;
        margin-bottom: 20px !important;
        font-size: clamp(1rem, 5vw, 1.25rem) !important;
    }
    
    .service-type-item {
        padding: 16px 12px !important;
        gap: 8px !important;
        min-height: auto !important;
    }
    
    .service-type-item .service-name {
        font-size: clamp(1rem, 5vw, 1.375rem) !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }
    
    .service-type-item .service-desc {
        font-size: clamp(0.75rem, 3vw, 0.875rem) !important;
        line-height: 1.5 !important;
    }
    
    .service-num {
        margin-right: 8px !important;
        min-width: 24px !important;
        font-size: clamp(0.875rem, 3.5vw, 1rem) !important;
    }
    
    .service-type-item:hover {
        padding-left: 14px !important;
    }
}

/* ============================================
   Mission & Vision セクション
   ============================================ */

.mission-vision {
    position: relative;
    padding: 120px 120px 120px 0;
    background-color: #f8f8f6;
    min-height: auto;
    overflow: hidden;
}

/* ホワイトボード風の背景テクスチャ */
.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/whiteboard-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

/* 左から右への黒色のグラデーション（4:6の比率でグラデーション）+ 上下境界のぼかし */
.mission-vision::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, 
            rgba(248, 248, 246, 1) 0%, 
            rgba(248, 248, 246, 0.95) 3%, 
            rgba(248, 248, 246, 0.7) 6%, 
            rgba(248, 248, 246, 0.3) 10%, 
            rgba(248, 248, 246, 0) 15%, 
            rgba(248, 248, 246, 0) 85%, 
            rgba(248, 248, 246, 0) 90%, 
            rgba(248, 248, 246, 0.3) 94%, 
            rgba(248, 248, 246, 0.7) 97%, 
            rgba(248, 248, 246, 0.95) 99%, 
            rgba(248, 248, 246, 1) 100%
        ),
        linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.mission-vision__header {
    position: absolute;
    left: -60px;
    top: 120px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    z-index: 2;
}

.mission-vision__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.mission-vision__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background: linear-gradient(180deg, #1a1a1a 0%, #333 100%);
    margin-left: -10px;
}

.mission-vision__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
    position: relative;
    z-index: 2;
}

.mission-vision__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}


.mission-vision__item {
    padding: 40px 32px;
    background-color: #fafafa;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mission-vision__item:hover {
    transform: translateY(-4px);
    border-color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.mission-vision__item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.mission-vision__item-number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
    opacity: 0.15;
}

.mission-vision__item-label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #666;
    text-transform: uppercase;
}

.mission-vision__item-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
}

.mission-vision__item--vision {
    min-width: 420px;
}

.mission-vision__item-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .mission-vision {
        padding: 120px 80px 120px 0;
    }
    
    .mission-vision__header {
        left: -50px;
        top: 120px;
    }
    
    .mission-vision__container {
        padding-left: 60px;
    }
    
    .mission-vision__section-title {
        font-size: 1.375rem;
    }
    
    .mission-vision__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .mission-vision__item {
        padding: 36px 28px;
    }
    
    .mission-vision__item {
        padding: 36px 28px;
    }
    
    .mission-vision__item-title {
        font-size: 1.375rem;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 20px 60px 0 !important;
    }
    
    .mission-vision__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 32px !important;
        padding-left: 20px !important;
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .mission-vision__section-title::before {
        width: 4px;
        height: clamp(20px, 5vw, 26px);
    }
    
    .mission-vision__container {
        padding-left: 0 !important;
        padding-right: 20px !important;
    }
    
    .mission-vision__content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .mission-vision__item {
        padding: 28px 20px !important;
    }
    
    .mission-vision__item-number {
        font-size: 1.5rem !important;
    }
    
    .mission-vision__item-label {
        font-size: clamp(0.625rem, 2.5vw, 0.6875rem) !important;
    }
    
    .mission-vision__item-title {
        font-size: clamp(1.125rem, 4.5vw, 1.25rem) !important;
        margin-bottom: 12px !important;
    }
    
    .mission-vision__item-text {
        font-size: clamp(0.8125rem, 3vw, 0.875rem) !important;
        line-height: 1.7 !important;
    }
}

@media (max-width: 480px) {
    .mission-vision {
        padding: 40px 16px 40px 0 !important;
    }
    
    .mission-vision__header {
        padding-left: 16px !important;
        margin-bottom: 24px !important;
    }
    
    .mission-vision__container {
        padding-right: 16px !important;
    }
    
    .mission-vision__item {
        padding: 24px 20px;
    }
}

/* ============================================
   Our Message セクション
   ============================================ */

.our-message {
    position: relative;
    padding: 120px 120px 120px 0;
    background: #f8f8f6;
    min-height: auto;
    overflow: hidden;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* ホワイトボード風の背景テクスチャ */
.our-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/whiteboard-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

/* 左から右への黒色のグラデーション（4:6の比率でグラデーション：反対方向）+ 上下境界のぼかし */
.our-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to bottom, 
            rgba(248, 248, 246, 1) 0%, 
            rgba(248, 248, 246, 0.95) 3%, 
            rgba(248, 248, 246, 0.7) 6%, 
            rgba(248, 248, 246, 0.3) 10%, 
            rgba(248, 248, 246, 0) 15%, 
            rgba(248, 248, 246, 0) 85%, 
            rgba(248, 248, 246, 0) 90%, 
            rgba(248, 248, 246, 0.3) 94%, 
            rgba(248, 248, 246, 0.7) 97%, 
            rgba(248, 248, 246, 0.95) 99%, 
            rgba(248, 248, 246, 1) 100%
        ),
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.our-message__header {
    position: absolute;
    left: -60px;
    top: 120px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    z-index: 2;
}

.our-message__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.our-message__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background: linear-gradient(180deg, #1a1a1a 0%, #333 100%);
    margin-left: -10px;
}

.our-message__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
    position: relative;
    z-index: 2;
}

.our-message__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    opacity: 0;
    transform: translateY(30px);
}

.our-message__item {
    padding: 56px 48px 56px 64px;
    background-color: #ffffff;
    border-radius: 0;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
    min-height: auto;
}

.our-message__item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.our-message__item:active::after {
    width: 300px;
    height: 300px;
}

.our-message__item::before {
    display: none;
}

.our-message__item--01.is-expanded,
.our-message__item--01:has(.our-message__item-toggle[aria-expanded="true"]) {
    border-left-color: transparent !important;
}

.our-message__item--01::before {
    display: none;
}

.our-message__item--02.is-expanded,
.our-message__item--02:has(.our-message__item-toggle[aria-expanded="true"]) {
    border-left-color: transparent !important;
}

.our-message__item--02::before {
    display: none;
}

.our-message__item--03.is-expanded,
.our-message__item--03:has(.our-message__item-toggle[aria-expanded="true"]) {
    border-left-color: transparent !important;
}

.our-message__item--03::before {
    display: none;
}

.our-message__item:hover {
    transform: translateY(-6px) rotateX(2deg);
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
}

.our-message__item:hover::before {
    display: none;
}

.our-message__item.is-expanded:hover::before {
    display: none !important;
}

.our-message__item.is-expanded {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    outline: none !important;
}

.our-message__item.is-expanded::before {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.our-message__item.is-expanded:hover {
    border: none !important;
    outline: none !important;
}

.our-message__item.is-expanded:hover::before {
    display: none !important;
}

/* aria-expanded="true"の状態でも枠線を削除 */
.our-message__item-toggle[aria-expanded="true"] {
    border: none !important;
    outline: none !important;
}

.our-message__item-toggle[aria-expanded="true"] + .our-message__item-content {
    border: none !important;
    outline: none !important;
}

.our-message__item:has(.our-message__item-toggle[aria-expanded="true"]) {
    border: none !important;
    outline: none !important;
}

.our-message__item:has(.our-message__item-toggle[aria-expanded="true"])::before {
    display: none !important;
}

.our-message__item-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    min-height: 0;
}

.our-message__item-number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1;
    opacity: 1;
    position: absolute;
    top: 20px;
    right: 32px;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.05em;
    transform-origin: center center;
}

.our-message__item--01 .our-message__item-number {
    color: #f5f5f5;
}

.our-message__item--02 .our-message__item-number {
    color: #e8e8e8;
}

.our-message__item--03 .our-message__item-number {
    color: #e0e0e0;
}

.our-message__item:hover .our-message__item-number {
    color: #d0d0d0;
    transform: scale(1.1) translate(-5px, -5px);
}

.our-message__item.is-expanded .our-message__item-number {
    color: #c0c0c0;
    transform: scale(1.15) translate(-10px, -10px);
    opacity: 0.8;
}

.our-message__item-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-message__item-toggle::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a1a;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-message__item-toggle:hover::before {
    width: 100%;
}

.our-message__item-toggle:hover {
    transform: translateX(4px);
}

.our-message__item-toggle:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 4px;
    border-radius: 2px;
}

.our-message__item-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
}

.our-message__item-toggle:hover .our-message__item-title {
    color: #000000;
    transform: translateX(4px);
}

.our-message__item-toggle[aria-expanded="true"] .our-message__item-title {
    color: #000000;
    font-weight: 800;
}

.our-message__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: #1a1a1a;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    position: relative;
}

.our-message__item-toggle:hover .our-message__item-icon {
    transform: scale(1.2);
    color: #000000;
}

.our-message__item-toggle[aria-expanded="true"] .our-message__item-icon {
    transform: rotate(180deg) scale(1.1);
    color: #000000;
}

.our-message__item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding-top: 0;
    padding-left: 0;
    transform: translateY(-10px);
    position: relative;
    z-index: 2;
}

.our-message__item-toggle[aria-expanded="true"] + .our-message__item-content {
    max-height: none;
    opacity: 1;
    padding-top: 32px;
    padding-left: 0;
    padding-bottom: 0;
    transform: translateY(0);
    overflow: visible;
}

.our-message__item-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 2;
    color: #666;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.our-message__item-toggle[aria-expanded="true"] + .our-message__item-content .our-message__item-text {
    opacity: 1;
    transform: translateY(0);
}

.our-message__item:hover .our-message__item-text {
    color: #555;
}

@media (max-width: 1024px) {
    .our-message {
        padding: 120px 80px 120px 0;
    }
    
    .our-message__header {
        left: -50px;
        top: 120px;
    }
    
    .our-message__container {
        padding-left: 60px;
    }
    
    .our-message__section-title {
        font-size: 1.375rem;
    }
    
    .our-message__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .our-message__item {
        padding: 48px 40px 48px 56px;
    }
    
    .our-message__item-number {
        font-size: 3rem;
        top: 16px;
        right: 24px;
    }
    
    .our-message__item-title {
        font-size: 1.375rem;
    }
    
    .our-message__item-icon {
        width: 28px;
        height: 28px;
    }
    
    .our-message__item-toggle[aria-expanded="true"] + .our-message__item-content {
        padding-top: 20px;
    }
    
    .our-message__item-text {
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .our-message {
        padding: 60px 20px 60px 0 !important;
    }
    
    .our-message__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 32px !important;
        padding-left: 20px !important;
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .our-message__section-title::before {
        width: 4px;
        height: clamp(20px, 5vw, 26px);
    }
    
    .our-message__container {
        padding-left: 0 !important;
        padding-right: 20px !important;
    }
    
    .our-message__content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .our-message__item {
        padding: 40px 28px 40px 44px !important;
    }
    
    .our-message__item-number {
        font-size: 2.5rem !important;
        top: 12px !important;
        right: 20px !important;
    }
    
    .our-message__item-title {
        font-size: clamp(1.25rem, 5vw, 1.375rem) !important;
        line-height: 1.6 !important;
    }
    
    .our-message__item-icon {
        width: 24px !important;
        height: 24px !important;
    }
    
    .our-message__item-toggle[aria-expanded="true"] + .our-message__item-content {
        padding-top: 18px !important;
    }
    
    .our-message__item-text {
        font-size: clamp(0.875rem, 3.5vw, 0.9375rem) !important;
        line-height: 1.9 !important;
    }
}

@media (max-width: 480px) {
    .our-message {
        padding: 40px 16px 40px 0 !important;
    }
    
    .our-message__header {
        padding-left: 16px !important;
        margin-bottom: 24px !important;
    }
    
    .our-message__container {
        padding-right: 16px !important;
    }
    
    .our-message__item {
        padding: 24px 20px;
    }
}

/* サービスページ用のMission & VisionとOur Messageのレスポンシブ */
@media (max-width: 1024px) {
    .mission-vision-grid,
    .our-message-items {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid,
    .our-message-items {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .mission-vision-card,
    .our-message-item {
        padding: 28px 20px !important;
    }
}

/* ============================================
   News セクション
   ============================================ */

.news {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #ffffff;
    min-height: 100vh;
    border-top: 4px solid #1a1a1a;
    border-bottom: 4px solid #1a1a1a;
    margin-top: 80px;
    margin-bottom: 80px;
    box-shadow: 
        0 -10px 40px rgba(0, 0, 0, 0.05),
        0 10px 40px rgba(0, 0, 0, 0.05);
}

.news__header {
    position: absolute;
    left: -80px;
    top: 200px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.news__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    padding-left: 20px;
}

.news__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    border-radius: 3px;
}

.news__container {
    max-width: 1000px;
    margin: 0 auto;
}

.news__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    position: relative;
    padding: 60px 40px;
    margin: 0 0 20px 0;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    background-color: #ffffff;
    cursor: pointer !important;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.news-item:hover {
    border-color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.news-item__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-radius: 6px;
}

.news-item:hover .news-item__bg {
    width: 100%;
}

.news-item__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: color 0.3s ease;
}

.news-item:hover .news-item__content {
    color: #ffffff;
}

.news-item__date {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    min-width: 120px;
    flex-shrink: 0;
    color: #666666;
    transition: color 0.3s ease;
}

.news-item:hover .news-item__date {
    color: #FFD700;
}

.news-item__category {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border: 2px solid currentColor;
    border-radius: 4px;
    min-width: 100px;
    text-align: center;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover .news-item__category {
    border-color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.news-item__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.3s ease;
}

.news-item__title a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-item:hover .news-item__title a {
    color: #ffffff;
}

.news__more {
    margin-top: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.news__more-link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    display: inline-block;
    padding: 16px 32px;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.news__more-link:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .news {
        padding: 120px 80px 120px 0;
        margin-top: 60px;
        margin-bottom: 60px;
    }
    
    .news__header {
        left: -60px;
        font-size: 1.625rem;
    }
    
    .news__section-title::before {
        height: 35px;
    }
    
    .news-item {
        padding: 48px 30px;
        margin-bottom: 16px;
    }
    
    .news-item__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 40px 20px 40px 20px !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
        border-top-width: 3px;
        border-bottom-width: 3px;
    }
    
    .news__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 24px !important;
        padding-left: 0 !important;
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .news__section-title::before {
        width: 4px;
        height: clamp(20px, 5vw, 26px);
    }
    
    .news__container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .news-item {
        padding: 20px 20px !important;
        margin-bottom: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-width: 2px;
        border-radius: 6px;
        min-height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .news-item:hover {
        transform: translateY(-2px) !important;
        padding-left: 24px !important;
        padding-right: 18px !important;
    }
    
    .news-item__content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .news-item__date {
        min-width: auto !important;
        font-size: clamp(0.625rem, 2.5vw, 0.6875rem) !important;
        order: 1;
        width: 100% !important;
        margin-bottom: 4px !important;
        padding: 0 !important;
    }
    
    .news-item__category {
        min-width: auto !important;
        font-size: clamp(0.5625rem, 2.2vw, 0.625rem) !important;
        padding: 3px 10px !important;
        order: 2;
        align-self: flex-start !important;
        margin-bottom: 4px !important;
        border-radius: 4px !important;
    }
    
    .news-item__title {
        font-size: clamp(0.875rem, 3.5vw, 1rem) !important;
        line-height: 1.6 !important;
        order: 3;
        width: 100% !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .news-item__title a {
        display: block !important;
        width: 100% !important;
        color: inherit !important;
        text-decoration: none !important;
        padding: 0 !important;
    }
    
    .news-item:hover .news-item__title a {
        color: #ffffff !important;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .news {
        padding: 32px 16px 32px 16px !important;
        margin-top: 24px !important;
        margin-bottom: 24px !important;
    }
    
    .news__header {
        padding-left: 0 !important;
        margin-bottom: 20px !important;
        font-size: clamp(1rem, 5vw, 1.25rem) !important;
    }
    
    .news__section-title::before {
        width: 3px !important;
        height: clamp(18px, 6vw, 22px) !important;
    }
    
    .news__container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .news-item {
        padding: 18px 18px !important;
        margin-bottom: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-width: 1.5px !important;
        min-height: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .news-item:hover {
        transform: translateY(-1px) !important;
        padding-left: 22px !important;
        padding-right: 16px !important;
    }
    
    .news-item__content {
        gap: 6px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .news-item__date {
        font-size: clamp(0.5625rem, 2.2vw, 0.625rem) !important;
        order: 1 !important;
        width: 100% !important;
        margin-bottom: 3px !important;
        padding: 0 !important;
    }
    
    .news-item__category {
        font-size: clamp(0.5rem, 2vw, 0.5625rem) !important;
        padding: 2px 8px !important;
        order: 2 !important;
        align-self: flex-start !important;
        margin-bottom: 3px !important;
        border-radius: 3px !important;
        border-width: 1.5px !important;
    }
    
    .news-item__title {
        font-size: clamp(0.8125rem, 3.2vw, 0.9375rem) !important;
        line-height: 1.6 !important;
        order: 3 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .news-item__title a {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }
}

/* ============================================
   Recruit セクション
   ============================================ */

.recruit {
    position: relative;
    padding: 200px 120px 200px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 0 0;
}

.recruit__header {
    position: absolute;
    left: -80px;
    top: 200px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.recruit__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.recruit__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.recruit__content {
    opacity: 0;
    transform: translateY(30px);
}

.recruit__catch {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 40px;
}

.recruit__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.recruit__button {
    display: inline-block;
}

.recruit__link {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ffffff;
    display: inline-block;
    padding: 20px 48px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    cursor: pointer !important;
    background-color: transparent;
}

.recruit__link:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .recruit {
        padding: 150px 80px 150px 0;
    }
    
    .recruit__header {
        left: -60px;
    }
    
    .recruit__catch {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .recruit {
        padding: 40px 20px 40px 20px !important;
        min-height: auto !important;
        display: block !important;
    }
    
    .recruit__header {
        position: static !important;
        writing-mode: horizontal-tb !important;
        text-orientation: mixed !important;
        margin-bottom: 24px !important;
        padding-left: 0 !important;
        left: auto !important;
        top: auto !important;
    }
    
    .recruit__section-title {
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .recruit__container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .recruit__content {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .recruit__catch {
        font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
        line-height: 1.4 !important;
        margin-bottom: 24px !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        padding: 0 !important;
    }
    
    .recruit__text {
        font-size: clamp(0.875rem, 3vw, 1rem) !important;
        line-height: 1.8 !important;
        margin-bottom: 32px !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        padding: 0 !important;
    }
    
    .recruit__button {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .recruit__link {
        padding: 16px 32px !important;
        font-size: clamp(0.875rem, 3vw, 0.9375rem) !important;
        min-height: 44px !important;
        display: inline-flex !important;
        width: auto !important;
        max-width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .recruit {
        padding: 32px 16px 32px 16px !important;
        min-height: auto !important;
    }
    
    .recruit__header {
        margin-bottom: 20px !important;
        padding-left: 0 !important;
    }
    
    .recruit__section-title {
        font-size: clamp(1rem, 5vw, 1.25rem) !important;
    }
    
    .recruit__container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .recruit__catch {
        font-size: clamp(1.375rem, 5vw, 1.75rem) !important;
        margin-bottom: 20px !important;
        line-height: 1.3 !important;
    }
    
    .recruit__text {
        font-size: clamp(0.8125rem, 2.8vw, 0.9375rem) !important;
        line-height: 1.7 !important;
        margin-bottom: 28px !important;
    }
    
    .recruit__link {
        padding: 14px 28px !important;
        font-size: clamp(0.8125rem, 2.8vw, 0.875rem) !important;
        min-height: 44px !important;
    }
}


/* ============================================
   学生インターン募集ページ（page-recruit.php）
   コンセプト：「主役は、君の『行動』だ。」
   ============================================ */

/* A. ヒーローセクション */
.recruit-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

.recruit-hero__hexagon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.recruit-hero__content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.recruit-hero__catch {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    word-break: keep-all;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    gap: 0;
}

.recruit-hero__catch-line1,
.recruit-hero__catch-line2 {
    display: block;
    white-space: nowrap;
    line-height: 0.9;
    margin: 0;
    padding: 0;
}

.recruit-hero__sub {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 2.2;
    margin-bottom: 80px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.recruit-hero__cta {
    margin-top: 60px;
}

.recruit-hero__button {
    display: inline-block;
    padding: 28px 80px;
    background-color: transparent;
    border: 4px solid #FFD700;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    cursor: pointer !important;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

.recruit-hero__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    z-index: -1;
}

.recruit-hero__button::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    z-index: -2;
    animation: borderGlow 3s linear infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
    }
}

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

.recruit-hero__button:hover {
    color: #000000;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 60px rgba(255, 215, 0, 0.8);
}

.recruit-hero__button:hover::before {
    opacity: 1;
}

.recruit-hero__button:hover::after {
    opacity: 1;
}

.recruit-hero__button-text {
    display: block;
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
}

.recruit-hero__button-sub {
    display: block;
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 8px;
}

/* B. MISSION / CONCEPT */
.recruit-mission {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #000000;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.recruit-mission__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 80px;
}

.recruit-mission__content {
    text-align: left;
}

.recruit-mission__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 7.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.6),
        0 0 90px rgba(255, 215, 0, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.recruit-mission__title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #ffffff 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    opacity: 0.4;
}

.recruit-mission__text {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.5;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
}

/* C. WHAT WE DO（仕事内容） */
.recruit-weapons {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #000000;
}

.recruit-weapons__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 80px;
}

.recruit-weapons__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #FFD700;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.recruit-weapons__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.weapon-card {
    text-align: center;
    padding: 100px 60px;
    border: 4px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.weapon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    animation: rotateGlow 8s linear infinite;
}

.weapon-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.weapon-card:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    transform: translateY(-20px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 0 40px rgba(255, 215, 0, 0.1);
    border-color: #FFA500;
    border-width: 5px;
}

.weapon-card:hover::before {
    opacity: 1;
}

.weapon-card:hover::after {
    opacity: 1;
}

.weapon-card > * {
    position: relative;
    z-index: 1;
}

.weapon-card__icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

.weapon-card:hover .weapon-card__icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
}

.weapon-icon {
    width: 100%;
    height: 100%;
    transition: all 0.6s ease;
}

.weapon-card:hover .weapon-icon {
    filter: brightness(1.2);
}

.weapon-card__number {
    font-family: 'Genkai Mincho', '源界明朝', serif;
        font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #FFD700;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transition: all 0.6s ease;
}

.weapon-card:hover .weapon-card__number {
    color: #FFA500;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
    transform: scale(1.1);
}

.weapon-card__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.6s ease;
}

.weapon-card:hover .weapon-card__title {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    transform: translateY(-5px);
}

.weapon-card__desc {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 2.2;
    color: #e0e0e0;
    transition: all 0.6s ease;
}

.weapon-card:hover .weapon-card__desc {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* D. EXPERIENCE（得られる経験） */
.recruit-experience {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #000000;
}

.recruit-experience__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 80px;
}

.recruit-experience__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.recruit-experience__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.experience-item {
    text-align: center;
    padding: 40px 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, transparent 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.experience-item:hover {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.experience-item:hover::before {
    left: 100%;
}

.experience-item__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.experience-icon {
    width: 100%;
    height: 100%;
}

.experience-item__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #FFD700;
    margin-bottom: 16px;
}

.experience-item__desc {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #ffffff;
}

/* E. MEMBER / OFFICE（働く環境） */
.recruit-environment {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #000000;
}

.recruit-environment__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 80px;
}

.recruit-environment__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #FFD700;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.recruit-environment__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.environment-item {
    padding: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background-color: rgba(255, 215, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.environment-item__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #FFD700;
    margin-bottom: 24px;
}

.environment-item__desc {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #ffffff;
    margin-bottom: 20px;
}

.environment-item__address {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 2;
    color: #cccccc;
}

/* F. RECRUIT INFO（募集要項・応募） */
.recruit-info {
    position: relative;
    padding: 200px 120px 200px 0;
    background-color: #000000;
}

.recruit-info__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding-left: 80px;
}

.recruit-info__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #FFD700;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.recruit-info__details {
    margin-bottom: 100px;
}

.recruit-info__list {
    display: grid;
    gap: 40px;
}

.recruit-info__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
}

.recruit-info__term {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1rem;
    font-weight: 400;
    color: #FFD700;
}

.recruit-info__desc {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #ffffff;
}

/* 応募フロー */
.recruit-flow {
    margin-bottom: 100px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.recruit-flow__title {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 60px;
}

.recruit-flow__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.flow-step {
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-step:hover {
    transform: translateY(-10px);
}

.flow-step__number {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #000000;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 10px 40px rgba(255, 215, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.flow-step__number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flow-step:hover .flow-step__number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 0 50px rgba(255, 215, 0, 0.8),
        0 15px 60px rgba(255, 215, 0, 0.6),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.flow-step:hover .flow-step__number::before {
    opacity: 1;
}

.flow-step__text {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.flow-step:hover .flow-step__text {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

.flow-step__arrow {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

.flow-step__arrow::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flow-step:hover + .flow-step__arrow,
.flow-step__arrow:hover {
    transform: scale(1.3) translateX(5px);
    color: #FFA500;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.9);
}

.flow-step:hover + .flow-step__arrow::before,
.flow-step__arrow:hover::before {
    opacity: 1;
}

/* 最終CTA */
.recruit-final-cta {
    text-align: center;
    padding: 120px 60px;
    border: 4px solid #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.recruit-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.recruit-final-cta > * {
    position: relative;
    z-index: 1;
}

.recruit-final-cta__text {
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.6;
}

.recruit-final-cta__button {
    margin-top: 40px;
}

.recruit-final-cta__link {
    display: inline-block;
    padding: 28px 80px;
    background-color: #FFD700;
    color: #000000;
    text-decoration: none;
    font-family: 'Genkai Mincho', '源界明朝', serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    cursor: pointer !important;
}

.recruit-final-cta__link:hover {
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 100%);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    color: #000000;
}

.recruit-final-cta__link-text {
    display: block;
}

/* レスポンシブ対応 */

/* iPad横向き・小型タブレット (768px - 1024px) */
@media (max-width: 1024px) {
    /* サイドナビゲーション */
    .side-nav {
        width: 60px;
    }
    
    .side-nav__logo-link {
        font-size: 0.75rem;
    }
    
    .side-nav__link {
        font-size: 0.7rem;
        padding: 8px 4px;
    }
    
    /* ヒーローセクション */
    .recruit-hero {
        height: 85vh;
        min-height: 650px;
        padding: 0 40px;
    }
    
    .recruit-hero__catch {
        font-size: clamp(2.5rem, 6vw, 4rem);
        line-height: 1;
        gap: 0;
        margin-bottom: 40px;
    }
    
    .recruit-hero__catch-line1,
    .recruit-hero__catch-line2 {
        white-space: normal;
        line-height: 0.9;
    }
    
    .recruit-hero__sub {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
        line-height: 2;
        margin-bottom: 60px;
    }
    
    .recruit-hero__button {
        padding: 24px 60px;
    }
    
    .recruit-hero__button-text {
        font-size: 1.375rem;
    }
    
    .recruit-hero__button-sub {
        font-size: 0.8rem;
    }
    
    /* 各セクション共通 */
    .recruit-mission,
    .recruit-weapons,
    .recruit-experience,
    .recruit-info {
        padding: 120px 60px 120px 0;
    }
    
    .recruit-mission__container,
    .recruit-weapons__container,
    .recruit-experience__container,
    .recruit-info__container {
        padding-left: 50px;
    }
    
    /* MISSIONセクション */
    .recruit-mission__title {
        font-size: clamp(3.5rem, 8vw, 5rem);
        margin-bottom: 60px;
    }
    
    .recruit-mission__text {
        font-size: clamp(1.125rem, 2vw, 1.375rem);
        line-height: 2.2;
    }
    
    /* WEAPONSセクション */
    .recruit-weapons__title,
    .recruit-experience__title,
    .recruit-info__title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 60px;
    }
    
    .recruit-weapons__list {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .weapon-card {
        padding: 60px 40px;
    }
    
    .weapon-card__icon {
        width: 80px;
        height: 80px;
        margin-bottom: 30px;
    }
    
    .weapon-card__number {
        font-size: 0.875rem;
        margin-bottom: 20px;
    }
    
    .weapon-card__title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 30px;
    }
    
    .weapon-card__desc {
        font-size: clamp(0.95rem, 1.8vw, 1.125rem);
        line-height: 2;
    }
    
    /* EXPERIENCEセクション */
    .recruit-experience__list {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .experience-item {
        padding: 50px 30px;
    }
    
    .experience-item__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 30px;
    }
    
    .experience-item__title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        margin-bottom: 20px;
    }
    
    .experience-item__desc {
        font-size: clamp(0.95rem, 1.8vw, 1.125rem);
        line-height: 2;
    }
    
    /* RECRUIT INFOセクション */
    .recruit-info__item {
        grid-template-columns: 120px 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    
    .recruit-info__term {
        font-size: clamp(0.95rem, 1.8vw, 1.125rem);
    }
    
    .recruit-info__desc {
        font-size: clamp(0.875rem, 1.6vw, 1rem);
        line-height: 2;
    }
    
    /* 応募フロー */
    .recruit-flow {
        margin-top: 80px;
    }
    
    .recruit-flow__title {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
        margin-bottom: 50px;
    }
    
    .recruit-flow__steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .flow-step {
        flex: 0 0 auto;
    }
    
    .flow-step__number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .flow-step__text {
        font-size: clamp(1rem, 2vw, 1.125rem);
        margin-top: 15px;
    }
    
    .flow-step__arrow {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    /* 最終CTA */
    .recruit-final-cta {
        padding: 80px 40px;
        margin-top: 80px;
    }
    
    .recruit-final-cta__text {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
        margin-bottom: 50px;
        line-height: 1.8;
    }
    
    .recruit-final-cta__link {
        padding: 24px 60px;
        font-size: clamp(1rem, 2vw, 1.125rem);
    }
}

/* スマートフォン・小型タブレット (480px - 768px) */
@media (max-width: 768px) {
    /* サイドナビゲーションはグローバルスタイルで既に定義されているため、ここでは削除 */
    
    .main-content {
        padding-top: 70px;
    }
    
    /* ヒーローセクション */
    .recruit-hero {
        height: 75vh;
        min-height: 500px;
        padding: 0 20px;
    }
    
    .recruit-hero__content {
        padding: 0 10px;
    }
    
    .recruit-hero__catch {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1;
        gap: 0;
        margin-bottom: 30px;
    }
    
    .recruit-hero__catch-line1,
    .recruit-hero__catch-line2 {
        white-space: normal;
        line-height: 0.9;
    }
    
    .recruit-hero__sub {
        font-size: clamp(1rem, 3vw, 1.25rem);
        line-height: 1.8;
        margin-bottom: 40px;
    }
    
    .recruit-hero__button {
        padding: 18px 40px;
    }
    
    .recruit-hero__button-text {
        font-size: 1.125rem;
    }
    
    .recruit-hero__button-sub {
        font-size: 0.75rem;
        margin-top: 6px;
    }
    
    /* 各セクション共通 */
    .recruit-mission,
    .recruit-weapons,
    .recruit-experience,
    .recruit-info {
        padding: 80px 20px 80px 0;
    }
    
    .recruit-mission__container,
    .recruit-weapons__container,
    .recruit-experience__container,
    .recruit-info__container {
        padding-left: 20px;
    }
    
    /* MISSIONセクション */
    .recruit-mission {
        min-height: auto;
    }
    
    .recruit-mission__title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 40px;
        line-height: 1.2;
    }
    
    .recruit-mission__text {
        font-size: clamp(1rem, 3vw, 1.125rem);
        line-height: 2;
    }
    
    /* WEAPONSセクション */
    .recruit-weapons__title,
    .recruit-experience__title,
    .recruit-info__title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: 40px;
    }
    
    .recruit-weapons__list {
        grid-template-columns: 1fr;
        gap: 24px !important;
    }
    
    .weapon-card {
        padding: 24px 16px !important;
        border-width: 3px;
    }
    
    .weapon-card__icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 12px !important;
    }
    
    .weapon-card__number {
        font-size: 0.6875rem !important;
        margin-bottom: 10px !important;
    }
    
    .weapon-card__title {
        font-size: clamp(1.125rem, 3.5vw, 1.375rem) !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }
    
    .weapon-card__desc {
        font-size: clamp(0.8125rem, 2.5vw, 0.9375rem) !important;
        line-height: 1.6 !important;
    }
    
    /* EXPERIENCEセクション */
    .recruit-experience__list {
        grid-template-columns: 1fr;
        gap: 24px !important;
    }
    
    .experience-item {
        padding: 24px 16px !important;
        border-width: 3px;
    }
    
    .experience-item__icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 12px !important;
    }
    
    .experience-item__title {
        font-size: clamp(1.125rem, 3.5vw, 1.375rem) !important;
        margin-bottom: 10px !important;
    }
    
    .experience-item__desc {
        font-size: clamp(0.8125rem, 2.5vw, 0.9375rem) !important;
        line-height: 1.6 !important;
    }
    
    /* RECRUIT INFOセクション */
    .recruit-info__item {
        grid-template-columns: 1fr;
        gap: 10px !important;
        padding: 16px 0 !important;
    }
    
    .recruit-info__term {
        font-size: clamp(0.8125rem, 2.5vw, 0.9375rem) !important;
        font-weight: 500;
        padding-bottom: 6px !important;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    .recruit-info__desc {
        font-size: clamp(0.75rem, 2.2vw, 0.875rem) !important;
        line-height: 1.6 !important;
    }
    
    /* 応募フロー */
    .recruit-flow {
        margin-top: 40px !important;
    }
    
    .recruit-flow__title {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem) !important;
        margin-bottom: 28px !important;
    }
    
    .recruit-flow__steps {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
        align-items: center !important;
        justify-content: center !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 16px 0 !important;
    }
    
    .flow-step {
        flex: 0 0 auto !important;
        min-width: 70px !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .flow-step__number {
        width: 50px !important;
        height: 50px !important;
        font-size: clamp(0.875rem, 3.5vw, 1rem) !important;
        margin-bottom: 8px !important;
    }
    
    .flow-step__text {
        font-size: clamp(0.6875rem, 2.8vw, 0.8125rem) !important;
        margin-top: 6px !important;
        white-space: nowrap !important;
    }
    
    .flow-step__arrow {
        font-size: clamp(1rem, 3.5vw, 1.25rem) !important;
        transform: none !important;
        padding: 0 6px !important;
        flex-shrink: 0 !important;
    }
    
    /* 最終CTA */
    .recruit-final-cta {
        padding: 40px 16px !important;
        margin-top: 40px !important;
        border-width: 3px;
    }
    
    .recruit-final-cta__text {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem) !important;
        margin-bottom: 28px !important;
        line-height: 1.5 !important;
    }
    
    .recruit-final-cta__link {
        padding: 16px 32px !important;
        font-size: clamp(0.875rem, 2.5vw, 1rem) !important;
        letter-spacing: 0.15em;
    }
}

/* 小型スマートフォン (480px以下) */
@media (max-width: 480px) {
    /* サイドナビゲーション */
    .side-nav {
        height: 60px;
        padding: 0 15px;
    }
    
    .side-nav__logo-link {
        font-size: 0.875rem;
    }
    
    .side-nav__link {
        font-size: 0.6875rem;
        padding: 6px 10px;
    }
    
    .main-content {
        padding-top: 60px;
    }
    
    /* ヒーローセクション */
    .recruit-hero {
        height: 70vh;
        min-height: 450px;
        padding: 0 15px;
    }
    
    .recruit-hero__catch {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 25px;
    }
    
    .recruit-hero__sub {
        font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
        margin-bottom: 35px;
    }
    
    .recruit-hero__button {
        padding: 16px 35px;
    }
    
    .recruit-hero__button-text {
        font-size: 1rem;
    }
    
    .recruit-hero__button-sub {
        font-size: 0.6875rem;
    }
    
    /* 各セクション共通 */
    .recruit-mission,
    .recruit-weapons,
    .recruit-experience,
    .recruit-info {
        padding: 32px 12px 32px 0 !important;
    }
    
    .recruit-mission__container,
    .recruit-weapons__container,
    .recruit-experience__container,
    .recruit-info__container {
        padding-left: 12px !important;
    }
    
    /* MISSIONセクション */
    .recruit-mission__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
        margin-bottom: 24px !important;
    }
    
    .recruit-mission__text {
        font-size: clamp(0.875rem, 3vw, 1rem) !important;
        line-height: 1.8 !important;
    }
    
    /* WEAPONSセクション */
    .recruit-weapons__title,
    .recruit-experience__title,
    .recruit-info__title {
        font-size: clamp(1.25rem, 5vw, 1.5rem) !important;
        margin-bottom: 24px !important;
    }
    
    .weapon-card {
        padding: 20px 12px !important;
    }
    
    .weapon-card__icon {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 10px !important;
    }
    
    .weapon-card__title {
        font-size: clamp(1rem, 4vw, 1.25rem) !important;
        margin-bottom: 8px !important;
    }
    
    .weapon-card__desc {
        font-size: clamp(0.75rem, 2.8vw, 0.875rem) !important;
        line-height: 1.5 !important;
    }
    
    /* EXPERIENCEセクション */
    .experience-item {
        padding: 20px 12px !important;
    }
    
    .experience-item__icon {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 10px !important;
    }
    
    .experience-item__title {
        font-size: clamp(1rem, 4vw, 1.25rem) !important;
        margin-bottom: 8px !important;
    }
    
    .experience-item__desc {
        font-size: clamp(0.75rem, 2.8vw, 0.875rem) !important;
        line-height: 1.5 !important;
    }
    
    /* RECRUIT INFOセクション */
    .recruit-info__item {
        padding: 12px 0 !important;
    }
    
    .recruit-info__term {
        font-size: clamp(0.75rem, 2.8vw, 0.875rem) !important;
        padding-bottom: 4px !important;
    }
    
    .recruit-info__desc {
        font-size: clamp(0.6875rem, 2.5vw, 0.8125rem) !important;
        line-height: 1.5 !important;
    }
    
    /* 応募フロー */
    .recruit-flow {
        margin-top: 32px !important;
    }
    
    .recruit-flow__title {
        font-size: clamp(1.125rem, 4vw, 1.375rem) !important;
        margin-bottom: 24px !important;
    }
    
    .recruit-flow__steps {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        align-items: center !important;
        justify-content: center !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 15px 0 !important;
        scrollbar-width: none !important;
    }
    
    .recruit-flow__steps::-webkit-scrollbar {
        display: none !important;
    }
    
    .flow-step {
        flex: 0 0 auto !important;
        min-width: 60px !important;
        max-width: none !important;
        width: auto !important;
    }
    
    .flow-step__number {
        width: 50px !important;
        height: 50px !important;
        font-size: clamp(0.875rem, 3.5vw, 1rem) !important;
        margin-bottom: 8px !important;
    }
    
    .flow-step__text {
        font-size: clamp(0.625rem, 2.8vw, 0.75rem) !important;
        white-space: nowrap !important;
        margin-top: 4px !important;
    }
    
    .flow-step__arrow {
        font-size: clamp(0.875rem, 3vw, 1rem) !important;
        transform: none !important;
        padding: 0 4px !important;
        flex-shrink: 0 !important;
    }
    
    /* 最終CTA */
    .recruit-final-cta {
        padding: 50px 15px;
        margin-top: 50px;
    }
    
    .recruit-final-cta__text {
        font-size: clamp(1.375rem, 5.5vw, 1.5rem);
        margin-bottom: 35px;
    }
    
    .recruit-final-cta__link {
        padding: 16px 35px;
        font-size: clamp(0.875rem, 3vw, 1rem);
    }
}

/* ============================================
   About セクション
   ============================================ */

.about {
    position: relative;
    padding: 20px 120px 80px 0;
    background-color: #ffffff;
    min-height: auto;
}

.about__header {
    position: absolute;
    left: -80px;
    top: 20px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.about__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.about__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.about__content {
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
}

.about__logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 25px auto;
    /* 背景を透過させる */
    background: transparent;
    /* 画像の白背景を透過させる（白背景の場合） */
    mix-blend-mode: multiply;
    /* 白背景をより効果的に削除 */
    filter: contrast(1.2) brightness(1.1);
    /* 画像の背景色を削除するための追加設定 */
    image-rendering: -webkit-optimize-contrast;
}

.about__logo-divider {
    width: 300px;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto 30px auto;
    display: block;
}

.about__info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.about__info-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.about__info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about__info-term {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 0 20px 8px 0;
    border-bottom: none;
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
    display: block;
}

.about__info-desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: #666;
    margin: 0;
    padding: 0 0 8px 0;
    border-bottom: none;
    line-height: 1.8;
    flex: 1;
    display: block;
}

.about__info-item:last-child .about__info-desc {
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .about {
        padding: 80px 80px 80px 0;
    }
    
    .about__header {
        left: -60px;
        top: 80px;
        font-size: 1.625rem;
    }
    
    .about__logo {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 12px 40px 0 !important;
    }
    
    .about__header {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 24px !important;
        padding-left: 12px !important;
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .about__container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .about__logo {
        max-width: min(85%, 350px) !important;
        margin: 0 auto 20px auto !important;
    }
    
    .about__logo-divider {
        width: min(180px, 55%) !important;
        margin-bottom: 24px !important;
    }
    
    .about__info-list {
        gap: 0;
    }
    
    .about__info-item {
        flex-direction: column;
        padding-bottom: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .about__info-term {
        font-size: clamp(0.8125rem, 3vw, 0.9375rem) !important;
        width: 100%;
        min-width: 100%;
        padding-right: 0;
        padding-bottom: 6px !important;
        margin-bottom: 4px !important;
    }
    
    .about__info-desc {
        font-size: clamp(0.8125rem, 3vw, 0.9375rem) !important;
        padding-left: 0;
        padding-bottom: 0;
        width: 100%;
        line-height: 1.6 !important;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .about {
        padding: 32px 12px 32px 0 !important;
    }
    
    .about__header {
        padding-left: 12px !important;
        margin-bottom: 20px !important;
        font-size: clamp(1rem, 5vw, 1.25rem) !important;
    }
    
    .about__container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .about__logo {
        max-width: min(80%, 300px) !important;
        margin-bottom: 16px !important;
    }
    
    .about__logo-divider {
        width: min(160px, 50%) !important;
        margin-bottom: 20px !important;
    }
    
    .about__info-item {
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .about__info-term {
        font-size: clamp(0.75rem, 3.5vw, 0.875rem) !important;
        padding-bottom: 4px !important;
        margin-bottom: 3px !important;
    }
    
    .about__info-desc {
        font-size: clamp(0.75rem, 3.5vw, 0.875rem) !important;
        line-height: 1.5 !important;
    }
}

/* ============================================
   Contact セクション
   ============================================ */

.contact {
    position: relative;
    padding: 60px 120px 60px 0;
    background-color: #1a1a1a;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact__header {
    position: absolute;
    left: -80px;
    top: 120px;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.contact__section-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.contact__container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact__content {
    opacity: 0;
    transform: translateY(30px);
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 20px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.contact__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
    width: 100%;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact__buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact__btn {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 20px 48px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer !important;
}

.contact__btn--primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.contact__btn--primary:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact__btn--secondary {
    background-color: transparent;
    color: #ffffff;
}

.contact__btn--secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact {
        padding: 150px 80px 150px 0;
    }
    
    .contact__header {
        left: -60px;
    }
    
    .contact__inner {
        flex-direction: column;
        gap: 60px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact__title {
        font-size: 2.5rem;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 12px 40px 0 !important;
        min-height: auto !important;
        display: block !important;
    }
    
    .contact__header {
        position: static !important;
        writing-mode: horizontal-tb !important;
        text-orientation: upright !important;
        margin-bottom: 24px !important;
        padding-left: 12px !important;
        left: auto !important;
        top: auto !important;
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .contact__container {
        padding-left: 12px !important;
        padding-right: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact__inner {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        width: 100% !important;
    }
    
    .contact__content {
        width: 100% !important;
        order: 1;
    }
    
    .contact-form-wrapper {
        width: 100% !important;
        order: 2;
    }
    
    .contact__title {
        font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }
    
    .contact__text {
        font-size: clamp(0.8125rem, 3vw, 0.9375rem) !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
    }
    
    .contact__buttons {
        gap: 16px;
        flex-direction: column;
    }
    
    .contact__btn {
        padding: 18px 36px;
        font-size: clamp(0.9375rem, 3.5vw, 1rem);
        min-height: 44px;
        width: 100%;
        max-width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .contact {
        padding: 32px 12px 32px 0 !important;
    }
    
    .contact__header {
        padding-left: 12px !important;
        margin-bottom: 20px !important;
        font-size: clamp(1rem, 5vw, 1.25rem) !important;
    }
    
    .contact__container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    
    .contact__inner {
        gap: 24px !important;
        flex-direction: column !important;
    }
    
    .contact__content {
        width: 100% !important;
    }
    
    .contact-form-wrapper {
        width: 100% !important;
    }
    
    .contact__title {
        font-size: clamp(1.375rem, 7vw, 1.75rem) !important;
        margin-bottom: 20px !important;
    }
    
    .contact__text {
        font-size: clamp(0.8125rem, 4vw, 0.9375rem) !important;
        margin-bottom: 28px !important;
    }
    
    .contact__buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .contact__btn {
        padding: 16px 32px !important;
        font-size: clamp(0.875rem, 4vw, 0.9375rem) !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ============================================
   フッター
   ============================================ */

.footer {
    padding: 80px 120px 20px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    margin-bottom: 0;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    justify-content: flex-end; /* 右寄せにする（ロゴがなくなったため） */
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.copyright {
    text-align: center; /* コピーライトは中央揃え */
    font-size: 0.8rem;
    color: #666;
    font-family: 'Noto Sans JP', sans-serif;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 80px 20px 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 16px 20px 0;
    }
    
    .footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .footer-inner {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .footer-nav a {
        font-size: clamp(0.8125rem, 3.5vw, 0.9rem);
        padding: 8px 16px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .copyright {
        font-size: clamp(0.6875rem, 3vw, 0.75rem);
        margin-top: 24px;
    }
}

/* 小型スマホ対応 (480px以下) */
@media (max-width: 480px) {
    .footer {
        padding: 40px 12px 16px 0;
    }
    
    .footer .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .footer-inner {
        margin-bottom: 20px;
    }
    
    .footer-nav {
        gap: 12px;
    }
    
    .footer-nav a {
        font-size: clamp(0.75rem, 4vw, 0.8125rem);
        padding: 10px 20px;
    }
    
    .copyright {
        font-size: clamp(0.625rem, 3.5vw, 0.6875rem);
        margin-top: 20px;
    }
}

/* ============================================
   アニメーション用ユーティリティ
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

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

/* ============================================
   サービス詳細ページ用スタイル
   ============================================ */

/* サービスヒーローセクション */
.service-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding-right: 120px;
}

.service-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero__bg-image {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.service-hero__content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 40px;
}

.service-hero__inner {
    opacity: 0;
    transform: translateY(30px);
}

.service-hero__number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-hero__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 32px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.service-hero__catch {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 16px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.service-hero__subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* サービス概要セクション */
.service-about {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-about__content {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.service-about__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.service-about__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #666;
}

.service-about__text p {
    margin-bottom: 24px;
}

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

/* メリットセクション */
.service-benefits {
    padding: 120px 120px 120px 0;
    background-color: #fafafa;
}

.service-benefits__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #ffffff;
    padding: 48px 40px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card__number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 24px;
}

.benefit-card__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.benefit-card__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* 料金プランセクション */
.service-pricing {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-pricing__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #fafafa;
    padding: 48px 40px;
    border-radius: 8px;
    border: 2px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card--featured {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4px 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.pricing-card--featured .pricing-card__badge {
    background-color: #ffffff;
    color: #1a1a1a;
}

.pricing-card__name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.pricing-card--featured .pricing-card__name {
    color: #ffffff;
}

.pricing-card__price {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card__amount {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.pricing-card--featured .pricing-card__amount {
    color: #ffffff;
}

.pricing-card__period {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    margin-left: 8px;
}

.pricing-card--featured .pricing-card__period {
    color: #cccccc;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-card__features li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    color: #666;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.pricing-card--featured .pricing-card__features li {
    color: #cccccc;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-card--featured .pricing-card__features li::before {
    color: #ffffff;
}

.pricing-card__button {
    display: block;
    width: 100%;
    padding: 16px 32px;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer !important;
}

.pricing-card__button:hover {
    background-color: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.pricing-card--featured .pricing-card__button {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.pricing-card--featured .pricing-card__button:hover {
    background-color: transparent;
    color: #ffffff;
}

/* CTAセクション */
.service-cta {
    padding: 120px 120px 120px 0;
    background-color: #1a1a1a;
}

.service-cta__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-cta__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 32px;
}

.service-cta__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #cccccc;
    margin-bottom: 48px;
}

.service-cta__buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta__btn {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 20px 48px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer !important;
}

.service-cta__btn--primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.service-cta__btn--primary:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-cta__btn--secondary {
    background-color: transparent;
    color: #ffffff;
}

.service-cta__btn--secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-hero {
        padding-right: 80px;
    }
    
    .service-hero__title {
        font-size: 3rem;
    }
    
    .service-about,
    .service-benefits,
    .service-pricing,
    .service-cta {
        padding: 100px 80px 100px 0;
    }
    
    .service-benefits__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-pricing__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding-right: 20px;
        padding-left: 20px;
        height: 70vh;
        min-height: 500px;
        justify-content: center;
    }
    
    .service-hero__content {
        max-width: 100%;
        padding: 0;
    }
    
    .service-hero__title {
        font-size: 2.5rem;
    }
    
    .service-hero__subtitle {
        font-size: 1rem;
    }
    
    .service-about,
    .service-benefits,
    .service-pricing,
    .service-cta {
        padding: 80px 20px 80px 0;
    }
    
    .service-about__title,
    .service-benefits__title,
    .service-pricing__title,
    .service-cta__title {
        font-size: 2rem;
    }
    
    .service-about__text {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .benefit-card__title {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card__amount {
        font-size: 2rem;
    }
    
    .service-cta__buttons {
        flex-direction: column;
    }
    
    .service-cta__btn {
        width: 100%;
    }
}

/* Reasonセクションのタイトル改行制御 */
.reason-card__title {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ============================================
   サービス詳細ページ追加スタイル（service-biz.html用）
   ============================================ */

/* サービスの特徴セクション */
.service-features {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-features__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__number {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 16px;
}

.feature-card__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.feature-card__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* カリキュラム例セクション */
.service-curriculum {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-curriculum__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

/* 親タブ（カリキュラム種別）のスタイル */
.curriculum-type-tabs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.curriculum-type-tab {
    padding: 16px 32px;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 8px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    position: relative;
}

.curriculum-type-tab:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.curriculum-type-tab.active {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.curriculum-type-content {
    display: none;
}

.curriculum-type-content.active {
    display: block;
}

/* 子タブボタン */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    min-width: 200px;
    padding: 20px 10px;
    cursor: pointer;
    border: 2px solid #e5e5e5;
    background: #fff;
    color: #333;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: center;
    position: relative;
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.tab-button .text-sm {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    margin-top: 2px;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

.tab-button:hover {
    border-color: #333;
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.tab-button.active {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.tab-button.active .text-sm {
    opacity: 0.9;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 旧スタイル（互換性のため残す） */
.curriculum-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.curriculum-tab {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #666;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.curriculum-tab:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.curriculum-tab.active {
    background-color: transparent;
    color: #1a1a1a;
    border-color: transparent;
    border-bottom-color: #1a1a1a;
}

.tab-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.8;
}

.curriculum-tab.active .tab-subtitle {
    opacity: 0.9;
}

/* タブコンテンツ */
.curriculum-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.curriculum-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.curriculum-timeline {
    max-width: 1000px;
    margin: 0 auto 48px;
    height: auto;
    min-height: auto;
}

.curriculum-day {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
}

.curriculum-day:last-child {
    margin-bottom: 0;
}

.curriculum-day__header {
    margin-bottom: 20px;
}

.curriculum-day__label {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    padding-bottom: 12px;
    border-bottom: 3px solid #1a1a1a;
    display: inline-block;
}

.curriculum-day__schedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto;
    gap: 20px;
    align-items: center;
    padding: 12px 16px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #1a1a1a;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.schedule-item__time {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9375rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #1a1a1a;
    text-align: center;
    padding: 6px 12px;
    background-color: #fafafa;
    border-radius: 4px;
}

.schedule-item__content {
    flex: 1;
}

.schedule-item__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1a1a;
}

.curriculum-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: #666;
    text-align: center;
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
}

/* 料金・場所セクション */
.service-info {
    padding: 120px 120px 120px 0;
    background-color: #ffffff;
}

.service-info__content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-item {
    opacity: 0;
    transform: translateY(30px);
}

.info-item__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #1a1a1a;
}

.info-item__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 2;
    color: #666;
}

.info-location {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.info-address {
    margin-bottom: 24px;
    line-height: 1.8;
}

.info-alternative {
    font-size: 1rem;
    color: #999;
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-features,
    .service-curriculum,
    .service-info {
        padding: 100px 80px 100px 0;
    }
    
    .service-features__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-info__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .service-hero__catch {
        font-size: 1.25rem;
    }
    
    .service-hero__subtitle {
        font-size: 1rem;
    }
    
    .service-features,
    .service-curriculum,
    .service-info {
        padding: 80px 20px 80px 0;
    }
    
    .service-features__title,
    .service-curriculum__title {
        font-size: 2rem;
        margin-bottom: 60px;
    }
    
    .curriculum-day__label {
        font-size: 1.5rem;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .schedule-item__time {
        text-align: left;
    }
    
    .info-item__title {
        font-size: 2rem;
    }
    
    .info-item__text {
        font-size: 1rem;
    }
    
    .curriculum-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .curriculum-tab {
        width: 100%;
        min-width: auto;
        padding: 16px 24px;
    }
    
    .tab-subtitle {
        font-size: 0.7rem;
    }
}

/* 緊急表示用 */
.service-type-list, .service-type-item {
    opacity: 1 !important;
    visibility: visible !important;
}

/* 偶数番目（2, 4...）のレイアウト反転 */
.service-type-item:nth-child(even) {
    flex-direction: row-reverse; /* 要素の並びを逆にする（矢印 ← テキスト ← 数字） */
    text-align: right; /* テキストを右揃えにする */
}

/* 偶数番目の数字のマージン調整 */
.service-type-item:nth-child(even) .service-num {
    margin-right: 0;
    margin-left: 40px; /* 数字の左側に余白を移す */
}

/* 偶数番目の矢印の向きを反転（←にする演出） */
.service-type-item:nth-child(even) .service-arrow {
    display: inline-block;
    transform: rotate(180deg); /* 左向き矢印にする */
}

/* 偶数番目のホバー時の動き（左へ動く） */
.service-type-item:nth-child(even):hover .service-arrow {
    transform: translateX(-20px) rotate(180deg) !important; /* 左方向にスライド */
    color: #FFD700 !important; /* 黄色を確実に適用 */
}

/* ============================================
   Contact Form 7 スタイル
   ============================================ */

.contact-form-wrapper {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 8px;
}

.contact-form-wrapper label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.contact-form-wrapper label .required {
    color: #ff6666;
    margin-left: 4px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: text !important;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-form-wrapper input[type="text"]::placeholder,
.contact-form-wrapper input[type="email"]::placeholder,
.contact-form-wrapper input[type="tel"]::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form-wrapper textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-submit,
.contact-form-wrapper input[type="submit"],
.contact-form-wrapper button[type="submit"] {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    color: #1a1a1a !important;
    background-color: #ffffff !important;
    border: 2px solid #ffffff !important;
    padding: 20px 48px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.contact-form-wrapper .wpcf7-submit:hover,
.contact-form-wrapper input[type="submit"]:hover,
.contact-form-wrapper button[type="submit"]:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.contact-form-wrapper .wpcf7-response-output {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form-wrapper .wpcf7-mail-sent-ng,
.contact-form-wrapper .wpcf7-aborted,
.contact-form-wrapper .wpcf7-spam {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form-wrapper .wpcf7-validation-errors {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    color: #ff6666;
    margin-top: 4px;
    display: block;
}

.contact-form-wrapper .wpcf7-not-valid {
    border-color: #ff6666 !important;
    background-color: rgba(255, 102, 102, 0.1) !important;
}

.contact-form-error {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    color: #ff3333;
    text-align: center;
    padding: 40px 20px;
}

/* Contact Form 7 レスポンシブ対応 */
@media (max-width: 1024px) {
    .contact-form-wrapper .wpcf7-form {
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .contact-form-wrapper .wpcf7-form {
        gap: 24px !important;
        width: 100% !important;
    }
    
    .contact-form-wrapper label {
        font-size: clamp(0.875rem, 3.5vw, 0.9375rem) !important;
        margin-bottom: 8px !important;
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper textarea {
        padding: 14px 16px !important;
        font-size: clamp(0.875rem, 3.5vw, 1rem) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-form-wrapper textarea {
        min-height: 150px !important;
        width: 100% !important;
    }
    
    .contact-form-wrapper .wpcf7-submit,
    .contact-form-wrapper input[type="submit"],
    .contact-form-wrapper button[type="submit"] {
        padding: 18px 24px !important;
        font-size: clamp(0.9375rem, 3.5vw, 1rem) !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-form-wrapper .wpcf7-form {
        gap: 24px;
    }
    
    .contact-form-wrapper .wpcf7-submit,
    .contact-form-wrapper input[type="submit"],
    .contact-form-wrapper button[type="submit"] {
        padding: 18px 24px;
    }
}

/* ============================================
   お問い合わせフォーム送信ボタンの文字色を白に固定（Contact Form 7用）
   ============================================ */

/* ============================================
   クリック可能な要素のカーソル設定
   ============================================ */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.curriculum-module-header,
.pricing-card__button,
.service-cta__btn,
.contact__btn,
.recruit__link,
.news__more-link,
[role="button"] {
    cursor: pointer !important;
}

/* ============================================
   サービスページ: Mission & Vision セクション
   ============================================ */
.service-mission-vision {
    position: relative;
    padding: 120px 120px 120px 0;
    background: #1a1a1a;
    min-height: auto;
    overflow: hidden;
}

.service-mission-vision .section-label {
    position: absolute;
    left: -60px;
    top: 120px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #ffffff;
    white-space: nowrap;
}

.service-mission-vision .section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 35px;
    background: linear-gradient(180deg, #1a1a1a 0%, #333 100%);
    margin-left: -10px;
}

.service-mission-vision__content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision-card {
    padding: 40px 32px;
    background-color: #fafafa;
    border-radius: 12px;
    border: 2px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-width: 0;
}

.mission-vision-card:nth-child(2) {
    min-width: 420px;
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    border-color: #1a1a1a;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.mission-vision-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
}

.mission-vision-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    margin-top: auto;
}

/* ============================================
   サービスページ: Our Message セクション
   ============================================ */
.our-message-section {
    margin-top: 80px;
}

.our-message-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.our-message-item {
    padding: 56px 48px 56px 64px;
    background-color: transparent;
    border-radius: 0;
    border: none;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
    min-height: auto;
}

.our-message-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.our-message-item:nth-child(1) {
    border-left-color: rgba(255, 255, 255, 0.4);
}

.our-message-item:nth-child(1)::before {
    background: rgba(255, 255, 255, 0.4);
}

.our-message-item:nth-child(2) {
    border-left-color: rgba(255, 255, 255, 0.3);
}

.our-message-item:nth-child(2)::before {
    background: rgba(255, 255, 255, 0.3);
}

.our-message-item:nth-child(3) {
    border-left-color: rgba(255, 255, 255, 0.2);
}

.our-message-item:nth-child(3)::before {
    background: rgba(255, 255, 255, 0.2);
}

.our-message-item:hover {
    transform: translateY(-6px) rotateX(2deg);
    border-left-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
    background-color: transparent;
}

.our-message-item:hover::before {
    width: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.5);
}

.our-message-item.is-expanded {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.15);
}

.our-message-item.is-expanded::before {
    width: 5px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.6);
}

.our-message-item-number {
    font-family: 'Kalam', 'ヒラギノ丸ゴ ProN', 'Hiragino Maru Gothic ProN', '游ゴシック体', 'Yu Gothic', 'メイリオ', Meiryo, cursive;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    opacity: 1;
    position: absolute;
    top: 20px;
    right: 32px;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.05em;
}

.our-message-item:nth-child(1) .our-message-item-number {
    color: rgba(255, 255, 255, 0.2);
}

.our-message-item:nth-child(2) .our-message-item-number {
    color: rgba(255, 255, 255, 0.15);
}

.our-message-item:nth-child(3) .our-message-item-number {
    color: rgba(255, 255, 255, 0.1);
}

.our-message-item:hover .our-message-item-number {
    color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) translate(-5px, -5px);
}

.our-message-item.is-expanded .our-message-item-number {
    color: rgba(255, 255, 255, 0.3);
    transform: scale(1.15) translate(-10px, -10px);
    opacity: 0.8;
}

.our-message-item-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-message-item-toggle::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-message-item-toggle:hover::before {
    width: 100%;
}

.our-message-item-toggle:hover {
    transform: translateX(4px);
}

.our-message-item-title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #ffffff;
    line-height: 1.5;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 2;
}

.our-message-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    position: relative;
}

.our-message-item-toggle:hover .our-message-item-icon {
    transform: scale(1.2);
    color: #ffffff;
}

.our-message-item-toggle[aria-expanded="true"] .our-message-item-icon {
    transform: rotate(180deg) scale(1.1);
    color: #ffffff;
}

.our-message-item-content {
    display: none;
}

.our-message-item-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 2;
    color: #ffffff;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 2;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .service-mission-vision {
        padding: 120px 80px 120px 0;
    }
    
    .service-mission-vision .section-label {
        left: -50px;
        top: 120px;
        font-size: 1.375rem;
    }
    
    .service-mission-vision__content {
        padding-left: 60px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .our-message-item {
        padding: 48px 40px 48px 56px;
    }
    
    .our-message-item-number {
        font-size: 3rem;
        top: 16px;
        right: 24px;
    }
    
    .our-message-item-title {
        font-size: 1.375rem;
    }
    
    .our-message-item-icon {
        width: 28px;
        height: 28px;
    }
    
    .our-message-item-toggle[aria-expanded="true"] + .our-message-item-content {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .service-mission-vision {
        padding: 60px 20px 60px 0 !important;
    }
    
    .service-mission-vision .section-label {
        position: static;
        writing-mode: horizontal-tb;
        margin-bottom: 32px !important;
        padding-left: 20px !important;
        font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    }
    
    .service-mission-vision__content {
        padding-left: 0 !important;
        padding-right: 20px !important;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .our-message-item {
        padding: 40px 28px 40px 44px !important;
    }
    
    .our-message-item-number {
        font-size: 2.5rem !important;
        top: 12px !important;
        right: 20px !important;
    }
    
    .our-message-item-title {
        font-size: clamp(1.25rem, 5vw, 1.375rem) !important;
        line-height: 1.6 !important;
    }
    
    .our-message-item-icon {
        width: 24px !important;
        height: 24px !important;
    }
    
    .our-message-item-toggle[aria-expanded="true"] + .our-message-item-content {
        padding-top: 18px !important;
    }
    
    .our-message-item-text {
        font-size: clamp(0.875rem, 3.5vw, 0.9375rem) !important;
        line-height: 1.9 !important;
    }
}
