@charset "UTF-8";

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

/* ==========================================
   全体的なフォント設定の刷新（確実な適用）
   ========================================== */
body, 
input, 
button, 
textarea, 
select {
    font-family: 'Noto Sans JP', 'Montserrat', sans-serif !important;
    color: #1f2937;
    font-weight: 400;
    letter-spacing: 0.04em; /* 文字間を少し広げて高級感アップ */
    -webkit-font-smoothing: antialiased;
}

/* 英字や見出しの英語部分をスタイリッシュにする */
.section-en, 
.pillar-label, 
.feature-number, 
.footer-logo,
.tadoras-logo-en,
.header-tel,
.info-date {
    font-family: 'Cinzel', 'Montserrat', sans-serif !important;
    letter-spacing: 0.15em;
}

/* ロゴ部分のスタイリング調整 */
.tadoras-logo-en {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.2em;
}

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

ul {
    list-style: none;
}

/* ==========================================
   ヘッダー全体
   ========================================== */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

/* 左側：営業時間 ＆ 電話番号（PC用） */
.header-left-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-hours {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: #666;
    border-right: 1px solid #e5e7eb;
    padding-right: 20px;
    line-height: 1.3;
}

.hours-label {
    letter-spacing: 0.5px;
}

.hours-time {
    font-weight: 700;
    font-size: 13px;
    color: #111;
}

.header-tel-area {
    padding-left: 5px;
}

.header-tel {
    font-family: 'Cinzel', serif, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.header-tel:hover {
    color: #1d4ed8;
}

/* 中央：日本語ロゴ（PC用） */
.header-center-logo h1 a {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 2px;
}

/* 右側：英語ロゴ（PC用） */
.header-right-area {
    display: flex;
    align-items: center;
}

.header-logo h1 a {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #111111;
}

.sub-logo {
    font-size: 14px;
    color: #1d4ed8;
    letter-spacing: 2px;
}

/* ハンバーガーボタン（初期は非表示） */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111;
    transition: all 0.3s;
}

/* ==========================================
   グローバルナビゲーション
   ========================================== */
.global-nav {
    background-color: #111827;
    border-bottom: 3px solid #1d4ed8;
}

.global-nav ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.global-nav a {
    display: block;
    padding: 14px 22px;
    font-size: 13px;
    color: #e5e7eb;
    letter-spacing: 0.5px;
    transition: color 0.3s, background-color 0.3s;
}

.global-nav a:hover,
.global-nav a.active {
    color: #ffffff;
    background-color: rgba(29, 78, 216, 0.3);
}

/* モバイルメニュー内情報エリア（初期は非表示） */
.nav-mobile-info {
    display: none;
}

/* ==========================================
   メインビジュアル・セクション等
   ========================================== */
.hero {
    position: relative;
    height: 700px;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-sub {
    font-size: 14px;
    color: #93c5fd;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero-btn-primary {
    background-color: #1d4ed8;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.hero-btn-primary:hover {
    background-color: #1e40af;
}

.hero-btn-secondary-hero {
    background-color: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.3s, background-color 0.3s;
}

.hero-btn-secondary-hero:hover {
    border-color: #1d4ed8;
    background-color: #f3f4f6;
}

.section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-en {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: #1d4ed8;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section-ja {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111827;
}

/* ==========================================
   事業内容セクション（写真背景デザイン）
   ========================================== */
   .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* 写真の上に敷くグラデーション（文字を読みやすくするため） */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 20%, rgba(17, 24, 39, 0.2) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.service-en-sub {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: #93c5fd;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.service-card p {
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.7;
}

/* スマホ対応用 */
@media screen and (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        height: 350px;
        padding: 25px;
    }
}

/* ==========================================
   レスポンシブ対応（スマートフォン）
   ========================================== */
   @media screen and (max-width: 768px) {
    .header-inner {
        padding: 0 15px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center; /* 中央寄せの基準にする */
        position: relative;     /* ハンバーガーの絶対配置の基準にする */
    }

    /* スマホ時はPC用左側情報と中央日本語ロゴを非表示 */
    .header-left-info,
    .header-center-logo {
        display: none !important;
    }

    /* スマホ時は右側エリアを中央配置用に調整 */
    .header-right-area {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .header-logo h1 a {
        font-size: 20px;
        letter-spacing: 2px;
    }

    /* ハンバーガーメニューを右端に固定 */
    .hamburger {
        display: flex !important;
        position: absolute;
        right: 15px;
    }

    /* ハンバーガー展開時のアニメーション */
    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* モバイル用ナビゲーション（スライド表示） */
    .global-nav {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background-color: #111827;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
        border-bottom: none;
    }

    .global-nav.active {
        transform: translateX(0);
    }

    /* ハンバーガーメニュー上部の営業時間・電話番号 */
    .nav-mobile-info {
        display: block;
        padding: 25px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background-color: rgba(17, 24, 39, 0.95);
    }

    .nav-mobile-hours {
        font-size: 11px;
        color: #9ca3af;
        margin-bottom: 8px;
    }

    .nav-mobile-hours .hours-time {
        font-size: 14px;
        color: #ffffff;
        font-weight: 700;
        margin-left: 8px;
    }

    .nav-mobile-tel a {
        font-family: 'Cinzel', serif, sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 1px;
    }

    .global-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .global-nav li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .global-nav a {
        padding: 16px 0;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .hero {
        height: 550px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-sub {
        font-size: 12px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
        width: 85%;
        margin: 0 auto;
    }

    .section {
        padding: 50px 15px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PHILOSOPHY セクション（洗練されたモダンデザイン）
   ========================================== */
   .philosophy-section {
    background-color: #f8fafc; /* ごくわずかにクールなトーンの背景 */
}

.philosophy-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 上部ブロック（外側の大きな白い箱を廃止し、フラットで美しいレイアウトに） */
.philosophy-top-block {
    display: flex;
    align-items: center;
    gap: 50px;
}

.philosophy-main-image {
    flex: 1.1;
}

.philosophy-main-image img {
    width: 100%;
    height: 380px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.philosophy-top-text {
    flex: 1;
}

.philosophy-lead {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.philosophy-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.9;
}

/* 下部グリッド（Mission / Vision / Value カード） */
.philosophy-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 35px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.pillar-label {
    display: inline-block;
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 11px;
    font-weight: 700;
    color: #1d4ed8;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.pillar-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.4;
}

.pillar-card p {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.8;
}

/* レスポンシブ対応（スマホ用） */
@media screen and (max-width: 900px) {
    .philosophy-top-block {
        flex-direction: column;
        gap: 30px;
    }

    .philosophy-main-image img {
        height: 250px;
    }

    .philosophy-lead {
        font-size: 20px;
    }

    .philosophy-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   OUR CORE VALUES（3つの特徴）セクション
   ========================================== */
   .features-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 100px; /* セクション間の余裕をたっぷり持たせる */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 70px;
}

/* 2番目のアイテムを左右反転 */
.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1.1;
}

.feature-image img {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* 影を上品に調整 */
    object-fit: cover;
}

.feature-text {
    flex: 1;
    position: relative;
}

/* 数字（01, 02）のデザインを洗練されたものに変更 */
.feature-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 700;
    color: #e2e8f0; /* 薄いグレーにして背景に馴染ませる */
    line-height: 1;
    margin-bottom: -15px; /* タイトルと少し重ねてデザイン性を出す */
    letter-spacing: 0.05em;
    user-select: none;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.feature-title span {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    display: block;
    margin-top: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
}

.feature-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.9;
}

/* ==========================================
   レスポンシブ対応（スマートフォン）
   ========================================== */
@media screen and (max-width: 900px) {
    .features-list {
        gap: 60px;
    }

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .feature-image img {
        height: 280px;
    }

    .feature-number {
        font-size: 48px;
        margin-bottom: -10px;
    }

    .feature-title {
        font-size: 19px;
        margin-bottom: 15px;
    }
}

/* ==========================================
   アクセントバナー ＋ CTA エリアのスタイル
   ========================================== */
   .section-accent-banner {
    width: 100%;
    overflow: hidden;
    margin: 60px 0;
}

.accent-banner-image {
    position: relative;
    width: 100%;
    height: 480px; /* バナーの高さ */
}

.accent-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 写真の上に敷くダークグラデーション */
.banner-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.banner-cta-inner {
    max-width: 900px;
    width: 100%;
    color: #ffffff;
}

.banner-cta-en {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    color: #93c5fd;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
}

.banner-cta-inner h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.banner-cta-inner p {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 35px;
    letter-spacing: 0.03em;
}

/* ボタンと電話番号の並び */
.banner-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 企業情報・お問い合わせボタン共通スタイル */
.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    min-width: 180px;
}

.banner-btn-primary {
    background-color: #1d4ed8;
    color: #ffffff;
    border: 1px solid #1d4ed8;
}

.banner-btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
}

.banner-btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.banner-btn-outline:hover {
    background-color: #ffffff;
    color: #111827;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* 電話番号カードのスタイル */
.banner-tel-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.banner-tel-box:hover {
    background-color: rgba(255, 255, 255, 0.18);
}

.banner-tel-label {
    font-size: 10px;
    color: #93c5fd;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.banner-tel-number {
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
}

/* ==========================================
   レスポンシブ対応（スマートフォン）
   ========================================== */
@media screen and (max-width: 768px) {
    .accent-banner-image {
        height: auto;
        min-height: 420px;
    }
    
    .banner-cta-overlay {
        padding: 40px 15px;
    }

    .banner-cta-inner h3 {
        font-size: 20px;
    }

    .banner-cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .banner-btn,
    .banner-tel-box {
        width: 100%;
    }
}

/* ==========================================
   レスポンシブ対応（スマートフォン）
   ========================================== */
@media screen and (max-width: 900px) {
    .features-list {
        gap: 50px;
    }

    .feature-item,
    .feature-item.reverse {
        flex-direction: column;
        gap: 25px;
    }

    .feature-number {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .accent-banner-image {
        height: 250px; /* スマホ時は少し高さを抑える */
    }
}

/* ==========================================
   INFORMATION セクション
   ========================================== */
   .information-section {
    background-color: #fcfbf9; /* わずかに温かみのある白背景 */
}

.info-list {
    max-width: 900px;
    margin: 0 auto 40px auto;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 22px 15px;
    border-bottom: 1px solid #e5e7eb;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    background-color: rgba(0, 0, 0, 0.015);
}

.info-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
}

.info-date {
    font-size: 14px;
    color: #6b7280;
    font-family: 'Cinzel', serif, sans-serif;
    letter-spacing: 1px;
}

.info-category {
    display: inline-block;
    padding: 3px 12px;
    font-size: 11px;
    color: #ffffff;
    background-color: #8c7b6c; /* 落ち着いたブラウン・グレー系のバッジカラー */
    border-radius: 2px;
    letter-spacing: 1px;
}

.info-title {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    flex: 1;
}

/* 一覧ボタン */
.info-more-btn-wrap {
    text-align: center;
}

.info-more-btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 13px;
    color: #555555;
    background-color: #e5e2db;
    border: 1px solid #dcd7ce;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: background-color 0.3s, color 0.3s;
}

.info-more-btn:hover {
    background-color: #3b4238; /* ホバー時に深みのあるグリーンやカラーに変化 */
    color: #ffffff;
    border-color: #3b4238;
}

/* ==========================================
   レスポンシブ対応（スマートフォン）
   ========================================== */
@media screen and (max-width: 768px) {
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px 10px;
    }

    .info-meta {
        min-width: auto;
        gap: 10px;
    }

    .info-title {
        font-size: 13px;
    }
}

/* ==========================================
   下層ページ共通スタイル（会社概要など）
   ========================================== */
   .subpage-header {
    background-color: #f8fafc;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.company-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.company-table-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.company-table th,
.company-table td {
    padding: 24px 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}

.company-table th {
    width: 25%;
    color: #4b5563;
    font-weight: 500;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.company-table td {
    width: 75%;
    color: #111827;
    font-weight: 400;
    border-bottom: 1px solid #e2e8f0;
}

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

/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 12px 15px;
    }
    .company-table th {
        background-color: transparent;
        border-bottom: none;
        padding-bottom: 2px;
        color: #1d4ed8;
        font-family: 'Cinzel', serif;
        font-size: 12px;
        letter-spacing: 0.1em;
    }
    .company-table td {
        padding-top: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f5f9;
    }
}

/* ==========================================
   求人情報（RECRUIT）ページ用スタイル
   ========================================== */
   .recruit-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.recruit-table-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.recruit-table th,
.recruit-table td {
    padding: 24px 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}

.recruit-table th {
    width: 28%;
    color: #4b5563;
    font-weight: 500;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    white-space: nowrap;
}

.recruit-table td {
    width: 72%;
    color: #111827;
    font-weight: 400;
    border-bottom: 1px solid #e2e8f0;
}

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

/* スキル・経験欄の内部ブロック調整 */
.recruit-sub-block {
    margin-bottom: 20px;
}

.recruit-sub-block:last-child {
    margin-bottom: 0;
}

.recruit-sub-title {
    display: block;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 6px;
    font-size: 14px;
}

/* スマホ用レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
        padding: 12px 15px;
    }
    .recruit-table th {
        background-color: transparent;
        border-bottom: none;
        padding-bottom: 2px;
        color: #1d4ed8;
        font-family: 'Cinzel', serif;
        font-size: 12px;
        letter-spacing: 0.1em;
    }
    .recruit-table td {
        padding-top: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f5f9;
    }
}

/* ==========================================
   お問い合わせ（CONTACT）ページ用スタイル
   ========================================== */
   .contact-section {
    background-color: #ffffff;
    padding: 80px 20px;
}

.contact-lead {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 14px;
    line-height: 2;
    color: #4b5563;
}

.contact-lead p:first-child {
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.contact-form-wrap {
    max-width: 860px;
    margin: 0 auto;
    background-color: #fcfcfd;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 50px 60px;
}

.form-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #edf2f7;
}

.form-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-label {
    width: 30%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    padding-top: 10px;
}

.form-input {
    width: 70%;
}

/* 必須・任意バッジ */
.badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 500;
}

.badge.required {
    background-color: #d97706; /* 落ち着いたオレンジ系 */
    color: #ffffff;
}

.badge.optional {
    background-color: #64748b; /* グレー系 */
    color: #ffffff;
}

/* 入力フィールド共通 */
.form-input input[type="text"],
.form-input input[type="tel"],
.form-input input[type="email"],
.form-input select,
.form-input textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 14px;
    color: #111827;
    transition: all 0.3s ease;
}

.form-input input:focus,
.form-input select:focus,
.form-input textarea:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.form-input select {
    cursor: pointer;
}

/* 送信ボタンエリア */
.form-submit-area {
    margin-top: 50px;
    text-align: center;
}

.submit-btn {
    background-color: #111827; /* 全体のトーンに合わせた高級感のあるダークカラー */
    color: #ffffff;
    border: none;
    padding: 16px 60px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background-color: #1d4ed8; /* ホバー時にブランドカラーのロイヤルブルーへ */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(29, 78, 216, 0.2);
}

/* ==========================================
   レスポンシブ対応（スマートフォン）
   ========================================== */
@media screen and (max-width: 768px) {
    .contact-form-wrap {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .form-label {
        width: 100%;
        padding-top: 0;
    }

    .form-input {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
        padding: 16px 20px;
    }
}

/* ==========================================
   フッターのスタイル
   ========================================== */
   .footer {
    background-color: #0b0f19; /* 全体のトーンに合わせた深みのあるダークカラー */
    color: #ffffff;
    padding-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 左側：会社情報・営業時間 */
.footer-left {
    flex: 1.2;
}

.footer-brand {
    margin-bottom: 15px;
}

.footer-logo-ja {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-logo-en {
    display: block;
    font-family: 'Cinzel', 'Montserrat', serif;
    font-size: 12px;
    color: #93c5fd;
    letter-spacing: 0.2em;
}

.footer-address {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-hours {
    font-size: 12px;
    color: #9ca3af;
}

.footer-hours .hours-time {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
}

.footer-tel a {
    font-family: 'Cinzel', 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-tel a:hover {
    color: #93c5fd;
}

/* 中央：フッターナビゲーション */
.footer-nav {
    flex: 1;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: #93c5fd;
    transform: translateX(4px);
}

/* 右側：ボタンエリア */
.footer-actions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-action-btn .btn-en {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 2px;
}

.footer-action-btn .btn-ja {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* 採用情報ボタン */
.recruit-btn {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.recruit-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

/* お問い合わせボタン */
.contact-btn {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

.contact-btn:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-2px);
}

/* コピーライト部分 */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.05em;
}

/* ==========================================
   スマートフォン表示時のフッター調整
   ========================================== */
   @media screen and (max-width: 768px) {
    .footer {
        padding-top: 50px;
        text-align: center; /* フッター全体のテキストを中央揃えに */
    }

    .footer-container {
        flex-direction: column;
        align-items: center; /* コンテナ内を中央に配置 */
        gap: 30px;
        padding-bottom: 35px;
    }

    .footer-left,
    .footer-nav,
    .footer-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* 各ブロックの中身も中央に寄せる */
    }

    .footer-contact-info {
        flex-direction: column;
        align-items: center; /* 営業時間と電話番号を中央揃え */
        gap: 6px;
        margin-top: 15px;
    }

    /* フッターメニューの中央配置 */
    .footer-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
    }

    .footer-nav a {
        display: inline-block;
        font-size: 14px;
    }

    /* ボタンが横幅いっぱいにならないよう、適度な幅（最大280pxなど）に制限して中央配置 */
    .footer-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .footer-action-btn {
        width: 80%;           /* 画面幅の80%程度にする */
        max-width: 280px;     /* 大きくなりすぎないよう最大幅を制限 */
        padding: 12px 20px;
        margin: 0 auto;       /* センターに配置 */
    }
}