@charset "utf-8";
/* CSS Document */

/* style.css - 株式会社ウイズダム採用サイト共通スタイル */

/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

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

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #0078d7;
}

section {
    padding: 80px 0;
}
/*いじくったとこ
/* style.css またはPC用のメインCSSに追加 */
.slide {
    position: relative; /* .pc, .sp, .slide-content の基準位置となります */
    /* .slide の高さは、親要素である .fv-slider や .fv で制御されているか、
       内容に応じて決まります。もしこの変更で高さが0になる場合は、
       .slide または親要素に適切な高さを設定する必要があります。 */
}

.slide .pc,
.slide .sp {
    position: absolute; /* 親要素 .slide に対して絶対配置 */
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-size: cover;   /* 画像が要素全体を覆うように */
    background-position: center; /* 画像を中央に配置 */
    z-index: 0; /* slide-content よりも奥に配置 */
}

.slide .pc {
    display: block; /* PCでは .pc を表示 */
}

.slide .sp {
    display: none;  /* PCでは .sp を非表示 */
}

.slide-content {
    position: relative; /* 画像の上に重なるように */
    z-index: 1;         /* .pc や .sp よりも手前に表示 */
    /* 既存の .slide-content のスタイル（bottom, leftなど）は活かされます */
}
/*おわり

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 30px;
}

.logo {
    width: 180px;
}

.global-nav ul {
    display: flex;
    list-style: none;
}

.global-nav li {
    margin-left: 30px;
}

.global-nav a {
    font-weight: 500;
    position: relative;
}

.global-nav a:hover {
    color: #0078d7;
}

.global-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0078d7;
    transition: all 0.3s ease;
}

.global-nav a:hover:after {
    width: 100%;
}

.entry-btn a {
    display: inline-block;
    background-color: #0078d7;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
}

.entry-btn a:hover {
    background-color: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.menu-trigger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-trigger span:nth-child(1) {
    top: 0;
}

.menu-trigger span:nth-child(2) {
    top: 9px;
}

.menu-trigger span:nth-child(3) {
    bottom: 0;
}

/* ファーストビュー */
.fv {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.fv-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
}

.main-copy {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.scroll-btn a {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    padding: 12px 30px;
    background-color: rgba(0, 120, 215, 0.8);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-btn a:hover {
    background-color: rgba(0, 120, 215, 1);
    transform: translateY(-2px);
}

.scroll-btn i {
    margin-left: 8px;
}

.fv-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    color: #fff;
}

.slide-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 18px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* ウイズダムについて */
.about {
    background-color: #f9f9f9;
}

.about-desc {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.company-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.info-card {
    width: calc(25% - 30px);
    min-width: 200px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 36px;
    color: #0078d7;
    margin-bottom: 20px;
}

.info-body h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #666;
}

.info-body p {
    font-size: 24px;
    font-weight: 700;
}


/* 募集中の事業一覧 */
.job-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.job-card {
    width: calc(50% - 30px);
    min-width: 250px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.job-img {
    height: 200px;
    overflow: hidden;
}

.job-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.job-card:hover .job-img img {
    transform: scale(1.05);
}

.job-body {
    padding: 25px;
}

.job-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.job-type {
    color: #0078d7;
    font-weight: 500;
    margin-bottom: 15px;
}

.job-desc {
    color: #666;
}

/* 数字で見るウイズダム */
.stats {
    background-color: #0078d7;
    color: #fff;
}

.stats .section-title:after {
    background-color: #fff;
}

.stats-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stats-item {
    width: calc(20% - 40px);
    min-width: 150px;
    text-align: center;
}

.stats-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stats-num {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-num span {
    font-size: 24px;
    margin-left: 2px;
}

.stats-label {
    font-size: 16px;
    font-weight: 500;
}

/* スタッフインタビュー */
.interview-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.interview-card {
    width: calc(50% - 30px);
    min-width: 250px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

}

.interview-img {
    height: 250px;
    overflow: hidden;
}

.interview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.interview-body h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.interview-job {
    color: #0078d7;
    font-weight: 500;
    margin-bottom: 15px;
}

.interview-quote {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-weight: 500;
    align-self: flex-start;
}

.btn-more:hover {
    background-color: #e0e0e0;
}

/* よくある質問 */
.faq {
    background-color: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background-color: #0078d7;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}


/* FAQもっと見るボタン */

.view-more-wrapper {
  text-align: center; /* ボタンを中央に配置します */
  margin-top: 40px; /* FAQリストとの間に余白を作ります */
}

.btn-view-more {
  display: inline-block;
  padding: 12px 40px;
  background-color: #0078d7; /* サイトのテーマカラーです */
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-view-more:hover {
  background-color: #005fa3; /* マウスを乗せた時の色 */
  transform: translateY(-2px); /* 少し浮き上がるアニメーション */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


/* 応募・お問い合わせ */
.entry {
    background-color: #f0f8ff;
    text-align: center;
}

.entry-lead {
    font-size: 18px;
    margin-bottom: 40px;
}

.entry-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-entry {
    display: inline-block;
    min-width: 250px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-entry:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-entry i {
    margin-right: 10px;
}

.btn-entry.line {
    background-color: #06c755;
    color: #fff;
}

.btn-entry.line:hover {
    background-color: #05b24c;
}

.btn-entry.form {
    background-color: #0078d7;
    color: #fff;
}

.btn-entry.form:hover {
    background-color: #005fa3;
}


/* お知らせセクション全体のスタイル調整（任意） */
.info-list {
    list-style: none;
    padding: 0;
}

.info-item {
    border-bottom: 1px solid #eee; /* 各お知らせの区切り線 */
}

.info-item:last-child {
    border-bottom: none; /* 最後のお知らせの区切り線は消す */
}

/* お知らせアイテムのリンク部分のスタイル */
.info-item-link {
    display: block; /* リンクエリアをブロック要素に */
    padding: 20px 15px; /* 上下の余白を少し広めに、左右の余白 */
    text-decoration: none;
    color: #333; /* 通常時の文字色 */
    transition: background-color 0.3s ease; /* 背景色の変化をスムーズに */
}



/* お知らせアイテムのヘッダー（日付とカテゴリを囲む部分） */
.info-item-header {
    display: flex; /* 日付とカテゴリを横並びにする */
    align-items: center; /* 垂直方向中央揃え */
    margin-bottom: 8px; /* タイトルとの間隔 */
    font-size: 0.9em; /* 少し小さめのフォント */
}

.info-date {
    color: #777; /* 日付の文字色 */
    margin-right: 15px; /* 日付とカテゴリの間隔 */
}

/* カテゴリ共通の基本デザイン */


.info-category {
    display: inline-block; /* インラインブロック要素に */
    padding: 3px 10px;     /* 内側の余白 */
    font-size: 0.8em;      /* フォントサイズ */
    font-weight: bold;       /* 太字 */
    color: #fff;             /* 文字色 (白) */
    border-radius: 4px;    /* 角を少し丸くする */
    line-height: 1.4;        /* 行の高さ */
}


/* カテゴリごとの色分け */
.info-category.category-news {
    background-color: #007bff; /* お知らせ (例: 青系) */
    /* border: 1px solid #0056b3; */ /* 枠線を付ける場合 (任意) */
}

.info-category.category-event {
    background-color: #28a745; /* イベント (例: 緑系) */
    /* border: 1px solid #1e7e34; */
}

.info-category.category-important {
    background-color: #dc3545; /* 重要 (例: 赤系) */
    /* border: 1px solid #b21f2d; */
}

/* 他のカテゴリを追加する場合 (例) */
.info-category.category-update {
    background-color: #ffc107; /* 更新情報 (例: 黄色系) */
    color: #333; /* 黄色背景の場合、文字色は濃い方が見やすいことも */
    /* border: 1px solid #dda600; */
}

.info-title {
    margin: 0; /* タイトルの上下マージンをリセット（.info-item-link のpaddingで調整） */
    font-size: 1em;
    line-height: 1.6;
}

/* 矢印アイコンのスタイル（任意） */
.info-arrow {
    float: right; /* 右寄せにする場合 */
    color: #ccc; /* 通常時の矢印の色 */
    transition: color 0.3s ease;
}

/* aタグである info-item-link にのみホバーエフェクトを適用 */
a.info-item-link:hover {
    background-color: #f8f8f8;
    /* color: #007bff; */ /* (もしあれば) */
}

/* aタグである info-item-link の中の矢印にのみホバーエフェクトを適用 */
a.info-item-link:hover .info-arrow {
    color: #888;
}
/* Font Awesome を使用している場合、アイコンサイズ調整など */
.info-arrow .fas {
    font-size: 0.9em;
}


/* レスポンシブ対応でスマホの場合は、日付とカテゴリを縦積みにする例 */
@media screen and (max-width: 768px) {
    .info-item-header {
        /* flex-direction: column; */ /* 縦積みにする場合 */
        /* align-items: flex-start; */ /* 左寄せにする場合 */
    }
    /*
    .info-date {
        margin-right: 0;
        margin-bottom: 5px; // 日付とカテゴリの間のマージン
    }
    .info-category {
        font-size: 0.75em; // スマホでは少し小さく
    }
    .info-item-link {
        padding: 15px 10px;
    }
    */
}

/* 会社概要セクションの基本的なスタイル */
.company-profile {
    padding: 60px 0; /* 上下の余白 */
}

.profile-layout {
    display: flex;
    flex-wrap: wrap; /* スマホなどで折り返す場合 */
    gap: 30px;       /* カラム間の隙間 */
}

.profile-column {
    flex: 1; /* カラムが利用可能なスペースを均等に分け合う */
    min-width: 300px; /* カラムの最小幅（折り返しのため） */
}

.profile-left h3,
.profile-right h3 {
    font-size: 1.5em; /* 小見出しのフォントサイズ */
    margin-bottom: 20px;
    border-bottom: 2px solid #eee; /* 下線など（任意） */
    padding-bottom: 10px;
}

/* Googleマップコンテナの基本的なスタイル */
.map-container {
    width: 100%;
    /* アスペクト比を保つ場合 (例: 16:9) */
    /* position: relative; */
    /* padding-bottom: 56.25%; */ /* 16:9 の場合 (9/16*100) */
    /* height: 0; */
    /* overflow: hidden; */
}

.map-container iframe {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    height: 400px; /* 高さは適宜調整 */
    border: none;
}

/* 詳細情報リストのスタイル */
.company-details dt {
    font-weight: bold;
    margin-top: 10px;
    padding-left: 15px; /* インデントっぽく（任意） */
    position: relative;
}

.company-details dt::before { /* 先頭にアクセント（任意） */
    content: "■";
    color: #333; /* アイコンの色 */
    position: absolute;
    left: 0;
    font-size: 0.8em;
}

.company-details dd {
    margin-left: 15px; /* dtのインデントと合わせる（任意） */
    padding-left: 15px; /* さらにインデント（任意） */
    margin-bottom: 10px;
    line-height: 1.6;
}

/* アクセス情報のコンテナ */
.access-info {
    margin-top: 20px; /* マップとの間隔 */
    padding: 15px;
    border-top: 1px solid #eee; /* 上に区切り線を入れる場合 (任意) */
}

.access-info h4 {
    font-size: 1.1em; /* 小見出しのフォントサイズ */
    margin-bottom: 10px;
    color: #333; /* 文字色 */
}

.access-info h4 i {
    margin-right: 8px; /* アイコンとテキストの間隔 */
    color: #555; /* アイコンの色 (任意) */
}

.access-info ul {
    list-style: none; /* デフォルトの黒丸を消す場合 */
    padding-left: 20px; /* 少しインデント */
}

.access-info ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 0.95em;
}

/* レスポンシブ対応 (スマホなど画面幅が狭い場合) */
@media screen and (max-width: 768px) {
    .profile-layout {
        flex-direction: column; /* 縦積みに変更 */
    }
    .map-container iframe {
        height: 300px; /* スマホでは少し高さを抑えるなど */
    }
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding-top: 60px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap; /* 画面幅に応じて折り返す */
    justify-content: space-between; /* 各カラムを均等に配置 */
    gap: 20px; /* カラム間の隙間 */
    padding: 0 30px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1; /* 各カラムが利用可能なスペースを分け合う */
    min-width: 220px; /* カラムの最小幅（これより狭くなると折り返す） */
    margin-bottom: 30px; /* 折り返した際の縦の余白 */
}

.footer-column h4 {
    font-size: 1.1em; /* 16px相当など */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555; /* 見出しの下線 */
    font-weight: 600; /* 少し太めに */
}

.footer-logo img {
    max-width: 180px; /* 元の指定を維持 */
    height: auto;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 0.875em; /* 14px相当 */
    line-height: 1.7;
}
.footer-info a { /* 電話番号のリンクスタイル */
    color: #fff;
    text-decoration: none;
}
.footer-info a:hover {
    text-decoration: underline;
}


.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column ul a { /* 共通のリンクターゲット */
    color: #ccc; /* 少し明るめのグレーに変更 */
    font-size: 0.875em; /* 14px相当 */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-column ul a:hover {
    color: #0078d7; /* ホバー時の色は維持 */
    text-decoration: underline;
}

/* SNSリンクのスタイル */
.social-links li {
    margin-bottom: 12px; /* SNSリンク間の余白を少し広めに */
}
.social-links a {
    display: inline-flex; /* アイコンとテキストを横並びにして中央揃え */
    align-items: center;
}

.social-links .fab.fa-instagram { /* Font Awesomeのアイコン */
    font-size: 1.2em; /* アイコンサイズ */
    margin-right: 8px; /* アイコンとテキストの間隔 */
    color: #fff; /* アイコンの色 */
    transition: color 0.2s ease-in-out;
}
.social-links a:hover .fab.fa-instagram {
    color: #e1306c; /* インスタグラムのブランドカラーなどに変化 (任意) */
}


/* フッター下部 */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px; /* 要素間の隙間 */
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8125em; /* 13px相当 */
}

.footer-legal-links a {
    color: #ccc;
    text-decoration: none;
    margin-right: 20px; /* 複数の法的リンクがある場合の間隔 */
}
.footer-legal-links a:last-child {
    margin-right: 0;
}

.footer-legal-links a:hover {
    color: #0078d7;
    text-decoration: underline;
}

.copyright p {
    margin: 0; /* pタグのデフォルトマージンをリセット */
    text-align: right;
}

/* レスポンシブ対応 (スマートフォンなど) */
@media screen and (max-width: 992px) { /* タブレットサイズでカラム調整 */
    .footer-column {
        min-width: calc(50% - 20px); /* 2カラムに近づける */
    }
}

@media screen and (max-width: 768px) {
    .footer-inner {
        flex-direction: column; /* スマートフォンではカラムを縦積みに */
        align-items: flex-start; /* 内容を左寄せに */
    }
    .footer-column {
        width: 100%; /* 各カラムの幅を100%に */
        min-width: unset; /* min-widthをリセット */
        margin-bottom: 30px;
    }
    .footer-column:last-child {
        margin-bottom: 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center; /* 中央揃えに */
    }
    .copyright p {
        text-align: center; /* コピーライトも中央揃えに */
        margin-top: 10px;
    }
    .footer-legal-links {
        margin-bottom: 10px; /* 法的リンクとコピーライトの間のマージン */
    }
}