@charset "UTF-8";

/* --- 1. 基本設定 --- */
body {
  background-color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  overflow-x: hidden; /* 横揺れ防止 */
}

/* 共通パーツ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* PCでの基本余白 */
}

/* セクション余白 */
.top-about, .top-value, .top-interview, .top-recruit { padding: 150px 0; }
.top-work-renewal { padding: 150px 0; position: relative; background: #111; overflow: hidden; }

.bg-black { background: #111; color: #fff; }
.bg-white { background: #fff; color: #111; }

/* 豪快な見出し */
.goukai-head {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 80px;
  border-bottom: 10px solid var(--primary);
  padding-bottom: 20px;
}
.huge-num {
  font-size: 100px;
  font-weight: 900;
  font-family: "Oswald", sans-serif;
  line-height: 0.8;
  color: var(--primary);
}
.huge-num.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--dark);
}
.goukai-head h2 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

/* 汎用ボタン (幅固定・中央配置) */
.btn-hero, .btn-border-white, .btn-black-solid {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 320px; /* PCでの固定幅 */
  padding: 24px 0;
  font-weight: 900;
  transition: 0.3s;
  text-decoration: none;
  font-size: 18px;
  box-sizing: border-box;
}

/* 黄色ボタン */
.btn-hero {
  background: var(--primary);
  color: #000;
  border: 2px solid var(--primary);
}
.btn-hero:hover { background: transparent; color: #fff; }
.btn-hero .en { font-family: "Oswald", sans-serif; font-size: 24px; line-height: 1; }
.btn-hero .jp { font-size: 14px; font-weight: bold; margin-top: 5px; }

/* 白枠ボタン */
.btn-border-white {
  border: 2px solid #fff;
  color: #fff;
}
.btn-border-white:hover { background: #fff; color: #000; }

/* 黒ボタン */
.btn-black-solid {
  background: #000;
  color: #fff;
}
.btn-black-solid:hover { background: #333; transform: translateY(-3px); }


/* --- 2. HERO SECTION --- */
.hero-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
}
/* メインコピー */
.hero-main-copy {
  font-family: "Oswald", sans-serif;
  font-size: 130px;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  text-shadow: 4px 3px 0 rgba(0,0,0,0.5);
}
.text-outline {
  color: transparent;
  -webkit-text-stroke: 3px #fff;
}
.text-stroke { -webkit-text-stroke: 3px #fff; color: transparent; }

.hero-sub-copy {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
  margin-bottom: 60px;
}
.scroll-down {
  position: absolute;
  bottom: 50px; right: 80px; z-index: 2;
  color: #fff; writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 20px;
}
.scroll-down .line {
  width: 1px; height: 100px; background: #fff;
  animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* --- 3. ABOUT --- */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}
.about-img { width: 50%; }
.about-img img {
  width: 100%;
  box-shadow: 30px 30px 0 var(--primary);
  filter: grayscale(100%);
  transition: 0.5s;
}
.about-wrapper:hover .about-img img { filter: grayscale(0%); }

.about-text { width: 50%; }
.about-catch {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 40px;
}
.about-text p {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 50px;
  color: #333;
}
.btn-arrow-link {
  font-weight: 900;
  font-size: 18px;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  display: inline-flex; align-items: center; gap: 10px;
}


/* --- 4. WORK (Renewed) --- */
.bg-deco-text {
  position: absolute;
  top: -50px; right: -50px;
  font-size: 400px;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  color: #222; /* 黒背景に溶け込む暗いグレー */
  line-height: 1;
  z-index: 0;
  user-select: none;
}
.work-renewal-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end; /* 下揃えで重ねる */
  justify-content: flex-end; /* 右寄せ */
  padding-right: 50px;
}

/* 写真 */
.work-img-box {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 600px;
  z-index: 1;
}
.work-img-box img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
}

/* テキストボックス（写真の上に被せる） */
.work-txt-box {
  width: 50%;
  background: rgba(0,0,0,0.9);
  border: 1px solid #333;
  padding: 60px;
  position: relative;
  z-index: 2; /* 写真より上 */
  margin-top: 100px; /* 写真の上部を空ける */
  box-shadow: -20px 20px 0 var(--primary);
}
.work-head {
  margin-bottom: 30px;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 20px;
}
.work-head .label {
  font-family: "Oswald", sans-serif;
  color: var(--primary);
  letter-spacing: 0.1em;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}
.work-head h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
}
.work-desc {
  color: #ccc;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 50px;
}
.work-btn-area { text-align: left; }


/* --- 5. VALUE --- */
.top-value {
  background: var(--primary);
  text-align: center;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.05) 10px, rgba(0,0,0,0.05) 20px);
}
.value-box {
  background: #fff;
  padding: 80px;
  max-width: 900px;
  margin: 0 auto;
  border: 6px solid #000;
  box-shadow: 20px 20px 0 #000;
}
.value-label {
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  font-size: 20px;
  display: block; margin-bottom: 20px;
  color: #aaa; letter-spacing: 0.2em;
}
.value-box h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 40px;
}
.value-box p {
  font-size: 18px;
  line-height: 2.2;
  font-weight: bold;
  margin-bottom: 50px;
}


/* --- 6. INTERVIEW --- */
.interview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.int-card {
  display: flex;
  border: 1px solid #eaeaea;
  background: #fff;
  transition: 0.3s;
}
.int-card:hover { transform: translateY(-5px); box-shadow: 10px 10px 0 var(--primary); }
.int-thumb { width: 45%; }
.int-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.int-data { width: 55%; padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.int-role { font-size: 12px; font-weight: bold; color: #888; display: block; margin-bottom: 5px; }
.int-name { font-family: "Oswald", sans-serif; font-size: 30px; font-weight: 700; margin-bottom: 15px; }
.int-msg { font-size: 14px; font-weight: bold; line-height: 1.6; margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 15px; }
.read-more { font-size: 12px; font-weight: 900; border-bottom: 2px solid var(--primary); align-self: flex-start; }
.center-btn-area { text-align: center; margin-top: 40px; }

/* --- 7. RECRUIT CTA --- */
.recruit-wrapper {
  /* border: 4px solid #fff;  ← 削除 */
  /* padding: 60px;           ← 削除 */
  
  width: 100%; /* コンテナ幅いっぱいに */
  display: flex;
  align-items: center; /* 上下中央揃え */
  justify-content: space-between;
  gap: 60px;
}

.rec-left {
  width: 45%;
}

.rec-right {
  width: 55%;
}

.recruit-copy {
  font-family: "Oswald", sans-serif;
  font-size: 100px; /* 少し大きくしてインパクト調整 */
  font-weight: 900;
  line-height: 0.9;
  color: var(--primary);
}

.rec-desc {
  font-size: 18px;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 2;
  color: #ccc; /* 黒背景なので文字色を少しグレーに */
}

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



/* ==============================================
   ★スマホ対応 (Responsive) - 抜本修正
   ============================================== */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section-spacer { height: 60px; }
  
  /* セクション余白を縮小 */
  .top-about, .top-work-renewal, .top-value, .top-interview, .top-recruit {
    padding: 80px 0;
  }

  /* 豪快見出しの調整 */
  .goukai-head { margin-bottom: 40px; border-bottom-width: 6px; }
  .huge-num { font-size: 60px; }
  .goukai-head h2 { font-size: 28px; }

  /* 汎用ボタン：スマホでは100%幅 */
  .btn-hero, .btn-border-white, .btn-black-solid { width: 100%; padding: 20px 0; }

  /* Hero */
  .hero-section { min-height: 100vh; /* 高さ確保 */ }
  .hero-main-copy { font-size: 16vw; margin-bottom: 30px; } /* 画面幅に合わせて可変 */
  .text-stroke { -webkit-text-stroke: 1px #fff; }
  
  .hero-sub-copy {
    font-size: 15px;
    border-left-width: 5px;
    margin-bottom: 40px;
  }
  .scroll-down { display: none; }

  /* About */
  .about-wrapper { flex-direction: column; gap: 40px; }
  .about-img, .about-text { width: 100%; }
  .about-catch { font-size: 28px; margin-bottom: 20px; }
  .about-text p { font-size: 15px; margin-bottom: 30px; }

  /* Work (Renewal) */
  .bg-deco-text { font-size: 150px; top: -20px; right: -20px; opacity: 0.1; color: #fff; }
  .work-renewal-inner { flex-direction: column; padding-right: 0; }
  
  .work-img-box {
    position: relative; /* absolute解除 */
    width: 100%; height: 250px;
    margin-bottom: 0;
  }
  
  .work-txt-box {
    width: 100%;
    margin-top: -30px; /* 写真に少し重ねる */
    padding: 30px 20px;
    box-shadow: none; /* スマホでは影なしでスッキリ */
    border-top: 4px solid var(--primary); /* 代わりにボーダーで強調 */
  }
  .work-head h3 { font-size: 26px; }
  .work-desc { font-size: 14px; margin-bottom: 30px; }
  .work-btn-area { text-align: center; } /* ボタン中央寄せ */

  /* Value */
  .value-box { padding: 40px 20px; border-width: 3px; box-shadow: 10px 10px 0 #000; }
  .value-box h2 { font-size: 28px; }
  .value-box p { font-size: 15px; text-align: left; }

  /* Interview */
  .interview-grid { grid-template-columns: 1fr; gap: 30px; }
  .int-card { flex-direction: column; }
  .int-thumb { width: 100%; height: 200px; }
  .int-data { width: 100%; padding: 25px; }



/* スマホ対応（既存のメディアクエリ内にあるrecruit-wrapper部分も修正してください） */

  .recruit-wrapper {
    flex-direction: column;
    text-align: center; /* スマホでは中央揃え */
    gap: 40px;
  }
  .rec-left, .rec-right { width: 100%; }
  
  .recruit-copy { font-size: 60px; margin-bottom: 0; }
  
  .rec-desc {
    font-size: 15px;
    text-align: center; /* スマホでは中央揃えの方が見やすい */
    margin-bottom: 30px;
  }
  
  .recruit-btns {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
}