@charset "UTF-8";
/* ====================
   Google Fonts 読み込み (強調文・見出し用のNoto Sans JP)
==================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700;900&display=swap');

/* ====================
   Variables (カラー設定)
==================== */
:root {
    --color-bg-main: #000000; /* 背景：黒 */
    --color-bg-card: rgba(30, 30, 30, 0.7); /* ボックス背景：黒ぼかし風 */
    --color-main-blue: #00BFFF; /* 各見出し・アクセント：水色（黒に映える明るめ） */
    --color-accent-orange: #FF4500; /* エントリーボタン等のアクセント */
    --color-text-main: #FFFFFF; /* 文字色：白 */
    --color-footer-bg: #0A0A0A; /* フッター：漆黒 */
}

/* ====================
   Base & Reset
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* 通常文面：游ゴシック */
    font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
}

/* 強調文：Noto Sans JP */
strong, b, .font-noto {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

/* 各見出し設定：水色 + Noto Sans JP */
h1, h2, h3, h4, h5, h6, .section-title, .page-title, .faq-category-title {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-main-blue);
    font-weight: 900;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ====================
   HEADER
==================== */
.site-header {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 191, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.site-logo img {
    height: 40px;
    width: auto;
}

/* PC用メニュー表示 */
.global-nav {
    display: block !important;
}

.global-nav ul {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.global-nav a {
    font-size: 13px;
    font-weight: bold;
    color: #FFFFFF;
    transition: color 0.3s;
    white-space: nowrap;
}

.global-nav a:hover {
    color: var(--color-main-blue);
}

.header-contact {
    margin-left: 10px;
}

.btn-contact {
    display: inline-block;
    background-color: var(--color-main-blue);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.btn-contact:hover {
    opacity: 0.8;
}

/* メニュー開閉ボタン（PC非表示） */
.menu-toggle {
    display: none !important; 
}

/* ====================
   共通レイアウト・背景リセット
==================== */
.section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-lead {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* 白背景だったセクションを黒背景に透過 */
.promise-section, .sns-section, .service-features, .service-flow, 
.cta-section, .company-philosophy, .company-profile-section, 
.message-section, .staff-section, .video-section, .contact-section, .bg-warm,
.recruit-message, .job-description-section, .faq-section, .privacy-section,
.about-mvv-section, .news-section, .thanks-section {
    background-color: transparent !important;
}

.page-header {
    background-color: rgba(0, 191, 255, 0.05);
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
}

/* ====================
   カード系デザイン（黒ぼかし化）
==================== */
.promise-card, .sns-item, .faq-item, .flow-step, 
.philosophy-card, .contact-form, .faq-contact-box,
.staff-card, .video-card, .recruit-message-text, .entry-box,
.privacy-container, .privacy-contact-info, .thanks-message-box,
.mvv-block, .news-list li {
    background-color: var(--color-bg-card) !important;
    border: 1px solid rgba(0, 191, 255, 0.3);
    color: var(--color-text-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-radius: 15px;
}

.promise-card h3, .faq-q, .flow-step h3, 
.philosophy-card h3, .staff-name, .video-title, .contact-intro p,
.faq-contact-box h3, .entry-box h3, .thanks-title, .privacy-content h3 {
    color: var(--color-main-blue);
}

/* ====================
   ボタン系
==================== */
.btn-primary, .btn-recruit, .btn-entry, .btn-submit, .btn-contact-large {
    display: inline-block;
    background-color: var(--color-main-blue);
    color: #000;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    transition: transform 0.3s, background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .btn-recruit:hover, .btn-entry:hover, .btn-submit:hover, .btn-contact-large:hover {
    transform: scale(1.05);
    background-color: #33CCFF;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-main-blue);
    border: 2px solid var(--color-main-blue);
    padding: 13px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--color-main-blue);
    color: #000;
}

/* ====================
   各ページ個別パーツ
==================== */
/* トップページ Hero */
.hero-section {
    background-image: url('img/hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: relative;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hero-text-box {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 191, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
}
.hero-title {
    font-size: 36px;
    color: var(--color-main-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}
.hero-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
}

/* リクルートページ Hero */
.recruit-hero {
    background-color: #000; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/recruit-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    text-align: center;
    padding: 120px 20px;
}
.recruit-hero-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 191, 255, 0.5);
}
.recruit-hero-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-accent-orange);
}
.recruit-message-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    line-height: 2;
    padding: 40px;
    border-left: 5px solid var(--color-accent-orange);
}

/* テーブル（会社概要・募集要項） */
.company-table, .job-table {
    max-width: 800px;
    margin: 40px auto 0;
    width: 100%;
    background-color: var(--color-bg-card);
    border-radius: 10px;
    overflow: hidden;
    border-collapse: collapse;
}
.company-table th, .company-table td, 
.job-table th, .job-table td {
    padding: 20px 25px;
    text-align: left;
    font-size: 15px;
    border: 1px solid rgba(0, 191, 255, 0.2);
}
.company-table th, .job-table th {
    width: 30%;
    background-color: rgba(0, 191, 255, 0.15);
    color: var(--color-main-blue);
    font-family: 'Noto Sans JP', sans-serif;
}

/* 業務内容 */
.feature-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
}
.feature-item.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
    text-align: left;
}
.feature-text h3 {
    font-size: 22px;
    color: var(--color-main-blue);
    margin-bottom: 15px;
    line-height: 1.4;
}
.feature-image { flex: 1; }
.feature-image img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}
.flow-steps {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.flow-step {
    padding: 30px;
    position: relative;
}
.step-number {
    background-color: var(--color-accent-orange);
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}
.flow-arrow {
    color: var(--color-main-blue);
    font-size: 24px;
    margin: 15px 0;
}

/* スタッフ・メッセージ */
.message-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}
.message-image { flex: 1; }
.message-image img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(0, 191, 255, 0.3);
}
.message-text {
    flex: 1;
    text-align: left;
}
.message-title {
    font-size: 22px;
    color: var(--color-main-blue);
    margin-bottom: 20px;
    line-height: 1.5;
}
.message-sign {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}
.staff-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.staff-card {
    width: calc(33.333% - 20px);
    overflow: hidden;
    transition: transform 0.3s;
}
.staff-card:hover { transform: translateY(-5px); }
.staff-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.staff-info {
    padding: 25px;
    text-align: left;
}
.staff-name {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 191, 255, 0.2);
    padding-bottom: 10px;
}
.staff-name span {
    font-size: 13px;
    color: #CCC;
    margin-left: 5px;
}
.creed-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}
.creed-badge {
    background-color: var(--color-main-blue);
    color: #000;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
}

/* FAQ */
.faq-box { margin-bottom: 50px; text-align: left;}
.faq-category-title {
    font-size: 20px;
    border-bottom: 2px solid var(--color-main-blue);
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.faq-item {
    padding: 25px;
    margin-bottom: 20px;
}
.faq-q {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.faq-badge {
    background-color: var(--color-main-blue);
    color: #000;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    flex-shrink: 0;
    font-weight: bold;
}
.faq-a {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 34px;
    position: relative;
    color: #DDD;
}
.faq-a::before {
    content: "A";
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color-accent-orange);
    color: #FFF;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
}
.faq-contact-box {
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
    border: 2px dashed var(--color-main-blue) !important;
}

/* SNS/動画コンテンツ */
.sns-grid, .video-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.sns-item, .video-card {
    width: calc(33.333% - 14px);
    overflow: hidden;
    display: block;
    transition: transform 0.3s;
}
.sns-item:hover, .video-card:hover { transform: translateY(-5px); }
.sns-item img { width: 100%; height: auto; display: block; }
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
}
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.video-card:hover .video-thumbnail img { transform: scale(1.05); }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    padding-left: 5px;
    opacity: 0.8;
    transition: opacity 0.3s;
    border: 2px solid var(--color-main-blue);
}
.video-card:hover .play-btn {
    opacity: 1;
    background-color: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
}
.video-title {
    padding: 20px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: bold;
}
.btn-tiktok, .btn-youtube {
    display: inline-block;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    transition: opacity 0.3s;
}
.btn-tiktok { background-color: #333333; border: 1px solid #555; }
.btn-youtube { background-color: #FF0000; }
.btn-tiktok:hover, .btn-youtube:hover { opacity: 0.8; }

/* 3つのお約束 / 理念 */
.promise-cards, .philosophy-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.promise-card, .philosophy-card {
    padding: 30px 20px;
    width: calc(33.333% - 20px);
    text-align: left;
}
.promise-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid var(--color-accent-orange);
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}
.philosophy-card {
    border-left: 4px solid var(--color-main-blue) !important;
}

/* お問い合わせフォーム */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    text-align: left;
}
.form-group { margin-bottom: 30px; }
.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-main-blue);
    font-size: 16px;
}
.required {
    background-color: #E74C3C;
    color: #FFF;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}
.optional {
    background-color: #555;
    color: #FFF;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 15px;
    background-color: #111;
    color: #FFF;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-main-blue);
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.3);
}
.radio-group {
    display: flex; flex-wrap: wrap; gap: 20px; padding: 10px 0;
}
.radio-group label { cursor: pointer; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.form-privacy { text-align: center; margin: 40px 0 30px; font-size: 15px; }
.privacy-link { color: var(--color-main-blue); text-decoration: underline; margin: 0 5px; }
.form-submit { text-align: center; }

/* プライバシーポリシー */
.privacy-container {
    max-width: 800px !important;
    padding: 50px;
    margin-top: -30px;
    text-align: left;
}
.privacy-intro { font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
.privacy-content h3 {
    font-size: 18px;
    border-left: 4px solid var(--color-accent-orange);
    padding-left: 10px;
    margin: 30px 0 15px;
}
.privacy-list { margin: 10px 0 20px 20px; }
.privacy-contact-info {
    padding: 20px;
    margin-top: 20px;
}

/* 私たちについて (ABOUT US) */
.mvv-container {
    display: flex; flex-direction: column; gap: 60px; margin-top: 40px;
}
.mvv-block {
    display: flex; align-items: stretch; overflow: hidden;
}
.mvv-block.reverse { flex-direction: row-reverse; }
.mvv-image { flex: 1; width: 100%; }
.mvv-image img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 300px; }
.mvv-text {
    flex: 1; padding: 50px 40px; text-align: left; display: flex; flex-direction: column; justify-content: center;
}
.mvv-text h3 { font-size: 36px; margin-bottom: 5px; letter-spacing: 2px; }
.mvv-text strong { display: block; font-size: 14px; color: #AAAAAA; margin-bottom: 25px; letter-spacing: 2px; }
.mvv-text p { font-size: 16px; line-height: 2; color: #DDD; }

/* お知らせ (NEWS) */
.news-container { max-width: 800px !important; }
.news-list { display: flex; flex-direction: column; gap: 15px; }
.news-list li { transition: transform 0.3s, box-shadow 0.3s; }
.news-list li:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0, 191, 255, 0.2); }
.news-list a { display: flex; align-items: center; padding: 25px; gap: 20px; }
.news-meta { display: flex; align-items: center; gap: 15px; flex-shrink: 0; width: 220px; }
.news-date { font-family: 'Noto Sans JP', sans-serif; color: #AAAAAA; font-size: 15px; }
.news-category { font-size: 12px; font-weight: bold; padding: 4px 12px; border-radius: 20px; color: #000; text-align: center; min-width: 80px; }
.category-info { background-color: var(--color-main-blue); }
.category-event { background-color: var(--color-accent-orange); color: #FFF; }
.category-recruit { background-color: #2ECC71; color: #FFF; }
.news-title { font-size: 16px; line-height: 1.5; font-weight: bold; text-align: left; }

/* 送信完了 (THANKS) */
.thanks-message-box {
    max-width: 700px; margin: 0 auto; padding: 60px 40px; text-align: center;
}
.thanks-title { font-size: 24px; margin-bottom: 30px; }

/* ====================
   FOOTER
==================== */
.site-footer {
    background-color: var(--color-footer-bg);
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-address {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}
.footer-sns a {
    display: inline-block;
    margin-right: 15px;
    color: var(--color-main-blue);
    font-weight: bold;
}
.footer-links { display: flex; gap: 40px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--color-main-blue); }
.footer-bottom {
    text-align: center; padding-top: 20px; font-size: 12px; color: #666;
}

/* ====================
   Responsive (スマホ・タブレット対応)
==================== */
@media screen and (max-width: 1000px) {
    
    /* ハンバーガーメニュー表示 */
    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 101;
        position: relative;
    }
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #FFFFFF !important;
        margin: 5px 0;
        transition: all 0.3s;
    }
    .menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* スマホ用ナビゲーション */
    .global-nav {
        display: none !important; 
        position: absolute;
        top: 70px; left: 0; width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        border-bottom: 1px solid rgba(0, 191, 255, 0.3);
        z-index: 100;
    }
    .global-nav.is-active { display: block !important; }
    .global-nav ul { flex-direction: column; gap: 0; }
    .global-nav li { border-top: 1px solid #222; width: 100%; text-align: left;}
    .global-nav a { display: block; padding: 15px 20px; font-size: 16px; white-space: normal;}
    .header-contact { display: none; }
    
    /* レイアウトの縦積み調整 */
    .footer-inner, .footer-links { flex-direction: column; gap: 30px; }
    .promise-card, .sns-item, .staff-card, .video-card, .philosophy-card { width: 100%; }
    .feature-item, .feature-item.reverse, .message-wrap, .mvv-block, .mvv-block.reverse { flex-direction: column; gap: 20px; }
    
    .company-table th, .company-table td, .job-table th, .job-table td { display: block; width: 100%; }
    .company-table th, .job-table th { border-bottom: none; }
    .radio-group { flex-direction: column; gap: 15px; }
    .btn-submit, .btn-contact-large { width: 100%; padding: 15px 0; }
    
    .news-list a { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
    .news-meta { width: 100%; }
    
    .contact-form, .privacy-container, .thanks-message-box { padding: 30px 20px; }
    .mvv-text { padding: 35px 25px; }
    .mvv-image img { min-height: 220px; }
}

/* ====================
   フッターロゴのサイズ調整
==================== */
.footer-logo img {
    width: 140px; /* PC版のロゴサイズ（お好みで数値を変更してください） */
    height: auto;
    margin-bottom: 15px;
}

/* スマホ版のロゴサイズ調整 */
@media screen and (max-width: 1000px) {
    .footer-logo img {
        width: 110px; /* スマホ版では少し小さめに表示 */
        margin-bottom: 15px;
    }
}

/* ====================
   リクルートページ エントリーエリアの余白調整
==================== */
.entry-box {
    margin-top: 60px; /* テーブルとの間に間隔をあける */
    padding: 40px 20px; /* ボックス内の余白も整えて見やすくする */
    text-align: center;
}

.entry-box h3 {
    margin-bottom: 15px; /* タイトルとテキストの間隔 */
}

.entry-box p {
    margin-bottom: 30px; /* テキストとボタンの間隔 */
}