@charset "UTF-8";

/* =================================================================
   目次 (Table of Contents)
    1.  基本設定 & リセット
    2.  ヘッダー & ナビゲーション
    3.  ハンバーガーメニュー
    4.  ヒーローセクション
    5.  セクション共通設定
    6.  TOPページ コンテンツ
    7.  パララックス背景 (CTA / 選考フロー)
    8.  フッター
    9.  下層ページ共通 (ヘッダー / パンくず)
   10.  業務内容ページ
   11.  会社案内ページ
   12.  採用情報ページ
   13.  お問い合わせページ
   14.  1日のスケジュール
   15.  レスポンシブ: PC のみ (1025px 以上)
   16.  レスポンシブ: タブレット (1024px 以下)
   17.  レスポンシブ: スマホ (768px 以下)
   18.  レスポンシブ: 補足調整 (769px 以上)
================================================================= */

/* =================================================================
   1. 基本設定 & リセット
================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  padding-top: 0;
}

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

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

ul {
  list-style: none;
}

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

/* =================================================================
   2. ヘッダー & ナビゲーション
================================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  backdrop-filter: none;
  z-index: 1000;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* hero をスクロールで抜けた後 / 下層ページ: 背景を表示 */
.header.scrolled {
  background-color: rgba(40, 40, 40, 0.9);
  backdrop-filter: blur(5px);
}

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

/* ロゴ */
.logo-img {
  height: 60px;
  transition: height 0.4s ease, opacity 0.3s ease;
  filter: brightness(0) invert(1);
}
.logo-img:hover { opacity: 0.8; }

.header.scrolled .logo-img {
  height: 50px;
}

/* スマホ: ヘッダーは常に黒背景 & ロゴは常に50px固定 */
@media (max-width: 1024px) {
  .header {
    background-color: rgba(40, 40, 40, 0.9) !important;
    backdrop-filter: blur(5px) !important;
  }
  .logo-img,
  .header.scrolled .logo-img {
    height: 50px;
    transition: opacity 0.3s ease;
  }
}

/* PCナビゲーション */
.nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  color: #fff;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* お問い合わせボタン（ヘッダー用） */
.btn-contact {
  background: #fff;
  color: #282828 !important;
  padding: 12px 28px !important;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-contact::after { display: none; }

.btn-contact:hover {
  background-color: #c9c3bc !important;
  color: #fff !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

/* =================================================================
   3. ハンバーガーメニュー
================================================================= */
.hamburger {
  display: none;
  position: relative;
  z-index: 1001;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  width: 50px;
  height: 50px;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

/* =================================================================
   4. ヒーローセクション
================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #282828;
}

/* ノイズテクスチャオーバーレイ */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* スライダー */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: elegantMove 15s linear forwards;
  animation-play-state: paused;
}

.hero-slide.active img {
  animation-play-state: running;
}

@keyframes elegantMove {
  0%   { transform: scale(1.1) translate(0, 0); }
  100% { transform: scale(1.25) translate(-20px, -10px); }
}

/* シネマティックグラデーション (底部強め + 四隅ビネット) */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    /* 底部: テキスト可読性 */
    linear-gradient(to top,  rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 70%),
    /* 左端: コンテンツ側を少し暗く */
    linear-gradient(to right, rgba(0, 0, 0, 0.22) 0%, transparent 60%),
    /* 天部: 微かな暗さ */
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, transparent 30%);
}

/* コンテンツ (左下配置) */
.hero-content {
  position: absolute;
  bottom: 90px;
  left: calc(3% + 24px);
  z-index: 10;
  width: 90%;
  max-width: 1000px;
  text-align: left;
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

/* 左装飾ライン: 非表示 */
.hero-content::before {
  display: none;
}

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

@keyframes accentLineGrow {
  to { height: 100%; }
}

/* キャッチラベル (タイトル上) */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.hero-label::before,
.hero-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #fff;
  opacity: 0.7;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 28px;
  text-shadow: none;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.hero-title span {
  background-color: rgba(255, 255, 255, 0.9);
  color: #282828;
  padding: 5px 22px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-text-box {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 2;
  font-weight: 400;
  margin-left: 0;
  opacity: 0;
  letter-spacing: 0.3em;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

/* スクロールインジケーター */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1.4s forwards;
}

.hero-scroll span {
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLineDrop 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.4s infinite;
  transform-origin: top center;
}

@keyframes scrollLineDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ドットインジケーター (ピル形状) */
.slider-dots {
  position: absolute;
  bottom: 44px;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
  align-items: center;
}

.slider-dot {
  width: 3px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-dot.active {
  height: 44px;
  background-color: #fff;
  transform: none;
}

/* =================================================================
   5. セクション共通設定
================================================================= */
.news-preview,
.services-preview,
.strengths,
.recruit-banner-section,
.cta,
.apply-section,
section {
  padding-top: 160px;
  padding-bottom: 160px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  color: #333;
  position: relative;
  margin-bottom: 60px !important;
  padding-bottom: 20px;
  margin-top: 0 !important;
  border: none !important;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.is-active::after { width: 60px; }

/* 背景色 & タイトル下線カラー */
.bg-white { background-color: #fff; }
.bg-beige { background-color: #c9c3bc; }
.bg-white .section-title::after { background: #c9c3bc; }
.bg-beige .section-title::after { background: #fff; }

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-top: -40px;
  margin-bottom: 60px;
}

/* 共通ボタン */
.btn-center {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0 !important;
}

.btn-secondary,
.btn-secondary-dark,
.btn-recruit,
.btn-primary-large,
.btn-submit-pro {
  display: inline-block;
  background-color: #fff;
  color: #282828;
  border: 2px solid #282828;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary-dark:hover,
.btn-recruit:hover,
.btn-primary-large:hover,
.btn-submit-pro:hover {
  background-color: #282828;
  color: #fff;
  transform: none !important;
}

/* =================================================================
   6. TOPページ コンテンツ
================================================================= */

/* --- お知らせ --- */
.news-list-simple { max-width: 900px; margin: 0 auto; }

.news-row {
  display: flex;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid #e0e0e0;
  gap: 20px;
  transition: opacity 0.3s;
}
.news-row:hover { opacity: 0.7; }

.news-meta {
  display: inline-flex;
  align-items: baseline;
  min-width: 180px;
  gap: 15px;
}

.news-meta time {
  color: #888;
  font-size: 0.95rem;
  font-family: 'Arial', sans-serif;
}

.news-cat-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #282828;
  padding-left: 10px;
  border-left: 2px solid #282828;
  line-height: 1;
}

.news-row-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  flex: 1;
  line-height: 1.2;
}

/* --- 業務内容カード --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.service-card:hover {
  transform: none !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-image { width: 100%; height: 250px; overflow: hidden; }
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image img { transform: scale(1.1); }

.service-card h3 { font-size: 1.5rem; color: #282828; margin: 25px 0 15px; padding: 0 20px; }
.service-card p  { font-size: 0.95rem; color: #666; line-height: 1.8; text-align: left; padding: 0 25px 25px; }

/* --- 選ばれる理由 --- */
.strengths-grid-pro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.strength-card-pro {
  position: relative;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 40px 30px;
  border-top: 5px solid #282828;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.strength-card-pro:hover {
  transform: none !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.strength-num {
  position: absolute;
  top: -25px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: #c9c3bc;
  line-height: 1;
  z-index: 0;
  font-family: 'Arial', sans-serif;
  text-shadow: 1px 1px 0 #ccc;
}

.strength-body { position: relative; z-index: 1; }
.strength-body h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #282828;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.strength-body p { font-size: 0.95rem; color: #666; line-height: 1.8; }

/* --- 採用バナー --- */
.recruit-banner-section { position: relative; overflow: hidden; text-align: center; margin-bottom: -1px; }

.recruit-banner-bg {
  position: absolute;
  top: -25%;  
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url('../images/back.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
  z-index: 0;
  will-change: transform;
}

.recruit-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.recruit-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 30px;
  color: #282828;
  font-family: 'Arial', sans-serif;
}

.recruit-jp {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #282828;
}

.recruit-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #282828;
}

.btn-recruit        { border-radius: 4px; padding: 18px 60px; font-size: 1.1rem; }
.btn-recruit .arrow { margin-left: 10px; font-weight: normal; }

/* =================================================================
   7. パララックス背景 (CTA / 選考フロー)
================================================================= */
.cta,
.apply-section {
  position: relative;
  background-color: transparent !important;
  background-image: none !important;
  overflow: hidden;
  z-index: 0;
  clip-path: inset(0);
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* 固定ロゴ */
.cta::before,
.apply-section::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/logomark.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

/* ベージュ背景 */
.cta::after,
.apply-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #c9c3bc;
  z-index: -2;
}

.cta .container,
.apply-section .container {
  position: relative;
  z-index: 1;
}

.cta-bg-logo { display: none !important; }

/* CTAレイアウト */
.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 0 !important;
}

.cta-text       { flex: 1; text-align: left; }
.cta-text h2    { font-size: 2rem; font-weight: 700; margin-bottom: 20px; color: #282828; }
.cta-text p     { font-size: 1.05rem; color: #444; margin-bottom: 10px; }
.cta-note       { font-size: 0.9rem; color: #666; margin-top: 10px; }

.cta-actions {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-tel-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #282828;
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  transition: opacity 0.3s;
  text-align: center;
}
.btn-tel-pro:hover { opacity: 0.9; }

.tel-label  { font-size: 0.8rem; opacity: 0.8; margin-bottom: 5px; }
.tel-number {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  line-height: 1;
}

.btn-mail-pro {
  display: block;
  background: #fff;
  color: #282828;
  padding: 15px;
  text-align: center;
  border: 2px solid #282828;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-mail-pro:hover { background: #282828; color: #fff; }

/* =================================================================
   8. フッター
================================================================= */
.footer {
  background-color: #282828;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-address { line-height: 2; color: #ccc; }

.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.footer-nav a       { color: #ccc; transition: color 0.3s ease; }
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
}
.footer-bottom p { color: #999; font-size: 0.9rem; }

/* =================================================================
   9. 下層ページ共通 (ヘッダー / パンくず)
================================================================= */
.page-header {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0;
  padding-top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-image {
  position: absolute;
  top: -25%;   
  left: 0;
  width: 100%;
  height: 150%;
  z-index: 0;
}
.page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.page-header-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-header-content {
  position: absolute;
  top: calc(50% + 40px);
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

.page-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.breadcrumb {
  background-color: #c9c3bc;
  padding: 15px 0;
  margin-top: -1px;
}
.breadcrumb a       { color: #282828; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span    { color: #666; }

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 80px;
}

.page-link {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  transition: all 0.3s ease;
}
.page-link:hover,
.page-link.active {
  background-color: #282828;
  color: #fff;
  border-color: #282828;
}

.news-item-simple {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
  scroll-margin-top: 100px;
}

.news-title-simple {
  font-size: 1.4rem;
  font-weight: 700;
  color: #282828;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
}

/* =================================================================
   10. 業務内容ページ
================================================================= */
.services-detail { padding-bottom: 100px; }

.intro-text {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 2.2;
  color: #444;
  font-weight: 500;
}

.service-detail-item {
  margin-bottom: 100px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.service-detail-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

#rooftop.service-detail-item,
#wall.service-detail-item {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

#veranda.service-detail-item {
  margin-bottom: 80px;
  padding-bottom: 0;
  border-bottom: none;
}

@media (max-width: 768px) {
  #rooftop.service-detail-item,
  #wall.service-detail-item {
    margin-bottom: 30px !important;
    padding-bottom: 30px !important;
  }
  #wall.service-detail-item    { padding-top: 60px !important; }
  #veranda.service-detail-item { padding-top: 60px !important; margin-bottom: 80px !important; }
  .service-detail-item { margin-top: 0 !important; }
}

@media (min-width: 769px) {
  #wall.service-detail-item    { padding-top: 40px !important; }
  #veranda.service-detail-item { padding-top: 40px !important; }
  .service-detail-item .service-header-row {
    margin-top: 0 !important;
    margin-bottom: 50px !important;
  }
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #282828;
  margin-bottom: 40px;
  display: flex;
  align-items: baseline;
  gap: 15px;
  border-left: 8px solid #282828;
  padding-left: 20px;
}

.service-title.center {
  border-left: none;
  justify-content: center;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  display: inline-block;
  width: 100%;
}

.service-title .en {
  font-size: 1rem;
  color: #999;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.1em;
}

.service-content-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 50px;
}
.service-content-row.reverse { flex-direction: row-reverse; }

.service-detail-image {
  flex: 0 0 40%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.service-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.service-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-desc p { font-size: 1.05rem; line-height: 2; color: #444; margin-bottom: 30px; }

.method-title {
  font-size: 1.5rem;
  color: #282828;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.method-title::before,
.method-title::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #ccc;
  vertical-align: middle;
  margin: 0 15px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.method-item {
  background-color: #fff;
  border: 2px solid #c9c3bc;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
}
.method-item:hover { transform: none !important; }

.method-item h4 {
  font-size: 1.25rem;
  color: #282828;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.other-service {
  background-color: #f9f9f9;
  border: none;
  border-left: 5px solid #c9c3bc;
  padding: 30px;
  border-radius: 4px;
  text-align: left;
}
.other-service h3 { font-size: 1.3rem; margin-bottom: 10px; }

.workflow {
  background-color: #fff;
  border: 2px solid #c9c3bc;
  padding: 60px;
  border-radius: 15px;
  margin-top: 100px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.workflow-step {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid #282828;
  padding-bottom: 10px;
}

.step-num {
  font-size: 2rem;
  font-weight: 700;
  color: #c9c3bc;
  font-family: 'Arial', sans-serif;
  line-height: 1;
}

.workflow-step h3 { font-size: 1.2rem; margin: 0; color: #282828; }

/* =================================================================
   11. 会社案内ページ
================================================================= */
.philosophy-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-image {
  flex: 0 0 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.philosophy-image img { width: 100%; height: auto; display: block; }

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

.philosophy-head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: #282828;
  margin-bottom: 30px;
  text-align: left;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.philosophy-desc { text-align: left; }
.philosophy-desc p { font-size: 1.05rem; line-height: 2; margin-bottom: 1.5rem; color: #444; }

.philosophy-signature {
  text-align: right !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: #282828;
  margin-top: 40px !important;
}

.company-section { padding: 100px 0; background-color: #fff; }

.company-table-pro { max-width: 900px; margin: 0 auto; }

.company-row {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
  align-items: baseline;
}

.company-row dt {
  width: 200px;
  font-weight: 700;
  color: #282828;
  padding-left: 20px;
  position: relative;
  display: flex;
  align-items: center;
}

.company-row dt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #c9c3bc;
  border-radius: 50%;
}

.company-row dd { flex: 1; line-height: 1.8; color: #444; }

.access-wrapper {
  background-color: #fff;
  padding: 50px;
  border-radius: 8px;
  border: 2px solid #c9c3bc;
}

.access-map-pro {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 400px;
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.access-map-pro iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  border: none;
}

.access-name         { font-size: 1.5rem; margin-bottom: 15px; color: #282828; }
.access-address-text { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 30px; }
.access-tel          { display: block; font-weight: 700; font-size: 1.3rem; margin-top: 5px; color: #282828; }

.access-routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.route-label {
  display: inline-block;
  background-color: #c9c3bc;
  color: #282828;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.access-route p { font-size: 0.95rem; color: #555; line-height: 1.6; }

.sp-br { display: none; }

/* =================================================================
   12. 採用情報ページ
================================================================= */
.recruit-message { padding: 100px 0; background-color: #fff; }

.message-content-pro {
  display: flex;
  align-items: center;
  gap: 60px;
}

.message-text { flex: 1; }

.message-head {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #282828;
  margin-bottom: 30px;
}

.message-head br { display: block; }

.message-text p { font-size: 1.05rem; line-height: 2; color: #444; margin-bottom: 20px; }

.message-image-pro {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.message-image-pro img { width: 100%; height: auto; display: block; }

.recruit-positions { padding: 100px 200px; background-color: #fff; }

.position-card {
  margin-bottom: 60px;
  border: 2px solid #c9c3bc;
  border-radius: 10px;
  overflow: hidden;
}

.position-header {
  background-color: #c9c3bc;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.position-title { font-size: 1.5rem; color: #282828; margin: 0; }

.position-tag {
  background-color: #282828;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.position-body { padding: 20px; }

.recruit-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.recruit-row:last-child { border-bottom: none; }

.recruit-row dt {
  width: 180px;
  font-weight: 700;
  color: #282828;
  padding-left: 15px;
  position: relative;
}

.recruit-row dt::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #c9c3bc;
  border-radius: 50%;
}

.recruit-row dd { flex: 1; line-height: 1.8; color: #444; }

.work-environment { padding: 100px 0; background-color: #c9c3bc; }

.environment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.environment-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.environment-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}
.environment-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.environment-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #282828;
  text-align: center;
  font-weight: 700;
}
.environment-item p { font-size: 0.95rem; color: #555; line-height: 1.8; text-align: left; padding: 0 10px; }

.flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.flow-step {
  background-color: #fff;
  width: 200px;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
}

.flow-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e0e0e0;
  line-height: 1;
  margin-bottom: 5px;
}

.flow-step h3 { font-size: 1.2rem; color: #282828; margin-bottom: 5px; }
.flow-step p  { font-size: 0.85rem; color: #666; }

.flow-arrow {
  flex: 1;
  height: 2px;
  background-color: #282828;
  position: relative;
  margin: 0 10px;
}

.flow-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #282828;
}

.apply-contact-box {
  background-color: #fff;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 60px 40px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #c9c3bc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.apply-contact-box h3 { font-size: 1.8rem; font-weight: 700; color: #282828; margin-bottom: 20px; }
.apply-info-text      { font-size: 1.1rem; color: #666; line-height: 1.8; margin-bottom: 35px; }

.apply-tel {
  font-size: 2.5rem;
  font-weight: 700;
  color: #282828;
  font-family: 'Arial', sans-serif;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.apply-tel .time {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #888;
  margin-top: 10px;
}

.btn-primary-large {
  display: inline-block;
  background-color: #fff;
  color: #282828;
  border: 2px solid #282828;
  padding: 18px 80px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.btn-primary-large:hover {
  background-color: #282828;
  color: #fff;
  transform: none !important;
}

/* =================================================================
   13. お問い合わせページ
================================================================= */
.contact-intro-pro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.contact-intro-pro p { font-size: 1.1rem; line-height: 2; color: #444; }

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

.contact-info-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
}
.contact-info-card:hover { transform: none !important; box-shadow: none !important; }

.tel-card,
.fax-card { border-top: 4px solid #282828; }

.icon-box             { font-size: 2.5rem; color: #c9c3bc; margin-bottom: 20px; }
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #282828; }
.info-desc            { font-size: 0.9rem; color: #666; margin-bottom: 20px; }

.tel-link,
.fax-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #282828;
  font-family: 'Arial', sans-serif;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 10px;
}

.breadcrumb + section { padding-top: 80px !important; }

.news-section {
  padding-top: 80px !important;
  padding-bottom: 100px !important;
}

.contact-form-wrapper { max-width: 900px; margin: 100px auto 0; background-color: #fff; }

.form-header          { text-align: center; margin-bottom: 30px; padding-bottom: 30px; }
.form-header h2       { font-size: 1.8rem; margin-bottom: 15px; color: #282828; }
.form-header p        { font-size: 0.95rem; color: #666; }

.form-item { display: flex; flex-wrap: wrap; margin-bottom: 30px; align-items: center; }

.form-item label { width: 250px; font-weight: 700; color: #282828; padding-right: 20px; }

.required { background-color: #cc0000; color: #fff; font-size: 0.7rem; padding: 2px 6px; border-radius: 3px; margin-left: 8px; vertical-align: middle; }
.optional { background-color: #999;    color: #fff; font-size: 0.7rem; padding: 2px 6px; border-radius: 3px; margin-left: 8px; vertical-align: middle; }

.form-input { flex: 1; }

.form-input input,
.form-input select,
.form-input textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fcfcfc;
  transition: all 0.3s;
}

.form-input input:focus,
.form-input select:focus,
.form-input textarea:focus {
  background-color: #fff;
  border-color: #282828;
  box-shadow: 0 0 0 3px rgba(40, 40, 40, 0.1);
  outline: none;
}

.input-short { width: 200px !important; }

.privacy-check-area {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin-top: 50px;
}

.privacy-box    { margin-bottom: 20px; }
.privacy-box h4 { font-size: 1.1rem; margin-bottom: 10px; text-align: center; }

.privacy-scroll {
  height: 150px;
  overflow-y: scroll;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 0.85rem;
  color: #666;
  border-radius: 4px;
}

.privacy-checkbox       { text-align: center; font-size: 1.1rem; font-weight: 700; }
.privacy-checkbox input { transform: scale(1.5); margin-right: 10px; }

.form-submit-area { text-align: center; margin-top: 50px; }

.btn-submit-pro {
  background-color: #fff;
  color: #282828;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 20px 80px;
  border: 2px solid #282828;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit-pro:hover {
  background-color: #282828;
  color: #fff;
  transform: none !important;
}

/* =================================================================
   14. 1日のスケジュール
================================================================= */
.daily-schedule {
  background-color: #fff !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.schedule-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.schedule-list::before {
  content: '';
  position: absolute;
  left: 150px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background-color: #eee;
}

.schedule-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}
.schedule-item:last-child { margin-bottom: 0; }

.schedule-time {
  flex: 0 0 130px;
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #282828;
  text-align: right;
  padding-right: 40px;
  padding-top: 2px;
}
.schedule-time span { font-size: 0.8rem; font-weight: normal; margin-left: 4px; }

.schedule-item::after {
  content: '';
  position: absolute;
  left: 150px;
  top: 12px;
  width: 12px;
  height: 12px;
  background-color: #c9c3bc;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 2px solid #fff;
}

.schedule-content {
  flex: 1;
  padding-left: 40px;
  text-align: left;
}

.schedule-content h3 {
  font-size: 1.15rem;
  color: #282828;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.4;
}

.schedule-content p { font-size: 0.95rem; color: #666; line-height: 1.7; margin: 0; }

.sp-block { display: inline; }

/* =================================================================
   15. レスポンシブ: PC のみ (1025px 以上)
================================================================= */
@media (min-width: 1025px) {
  .hamburger { display: none; }
  .nav       { display: block; }
}

/* =================================================================
   16. レスポンシブ: タブレット (1024px 以下)
================================================================= */
@media (max-width: 1024px) {
  .header-container { height: 70px; }

  .nav {
    position: fixed;
    top: 70px; left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(40, 40, 40, 0.98);
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
    padding-bottom: 50px;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }
  .nav.active { transform: translateX(0); opacity: 1; pointer-events: auto; }

  .nav-list { flex-direction: column; padding: 40px 0; gap: 0; }
  .nav-list li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav-list a  { display: block; padding: 20px 0; font-size: 1.2rem; color: #fff; text-align: center; }

  .btn-contact {
    margin: 30px auto;
    width: 80% !important;
    background: #fff;
    color: #282828 !important;
    border-radius: 4px;
  }

  .hamburger               { display: block; }
  .hamburger span:nth-child(1) { top: 15px; }
  .hamburger span:nth-child(2) { top: 24px; }
  .hamburger span:nth-child(3) { top: 33px; }

  .hamburger.active span:nth-child(1) { top: 24px; transform: translateX(-50%) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { top: 24px; transform: translateX(-50%) rotate(-45deg); }

  .services-grid,
  .strengths-grid,
  .strengths-grid-pro,
  .method-grid,
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }

  .cta-layout  { flex-direction: column; text-align: center; gap: 40px; }
  .cta-text    { text-align: center; }
  .cta-actions { width: 100%; flex: 0 0 auto; max-width: 500px; margin: 0 auto; }

  .recruit-banner-content { flex-direction: column; text-align: center; }
  .recruit-desc           { margin: 0 auto; }
}

/* =================================================================
   17. レスポンシブ: スマホ (768px 以下)
================================================================= */
@media (max-width: 768px) {

  .hero { height: 100svh; min-height: 500px; }

  .hero-content {
    top: calc(50% + 35px);
    bottom: auto;
    transform: translateY(-50%);
    left: 24px;
    width: calc(100% - 48px);
    animation: heroFadeUpMobile 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  }

  @keyframes heroFadeUpMobile {
    from { opacity: 0; transform: translateY(calc(-50% + 22px)); }
    to   { opacity: 1; transform: translateY(-50%); }
  }

  .hero-content::before { display: none; }

  .hero-label      { font-size: 0.68rem; margin-bottom: 12px; }
  .hero-title      { font-size: 2.2rem; line-height: 1.65; margin-bottom: 16px; }
  .hero-title span { padding: 4px 14px; background-color: #fff; }
  .hero-text-box   { font-size: 0.9rem; line-height: 1.9; letter-spacing: 0.08em; }

  .hero-scroll {
    display: flex;
    bottom: 28px;
    left: 0;
    right: 0;
    transform: none;
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero-scroll-line { height: 36px; }

  .slider-dots {
    flex-direction: column;
    right: 16px;
    left: auto;
    top: auto;
    bottom: 20px;
    transform: none;
    gap: 8px;
  }

  .slider-dot        { width: 3px; height: 20px; }
  .slider-dot.active { width: 3px; height: 36px; }

  .page-header {
    height: 250px;
    padding-top: 0;
  }
  .page-header-content {
    position: absolute;
    top: calc(50% + 35px);
    transform: translateY(-50%);
    margin-top: 0;
    width: 100%;
  }
  .page-title    { font-size: 2rem; }
  .section-title { font-size: 2rem; }

  .news-preview,
  .services-preview,
  .strengths,
  .recruit-banner-section,
  .cta,
  .apply-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .services-grid,
  .strengths-grid,
  .strengths-grid-pro,
  .method-grid,
  .other-services-grid,
  .workflow-steps,
  .environment-grid,
  .footer-content,
  .footer-nav ul,
  .contact-info-grid { grid-template-columns: 1fr; }

  .news-row  { flex-direction: column !important; align-items: flex-start !important; gap: 5px !important; }
  .news-meta { width: 100%; min-width: auto; }

  .strengths-grid-pro { gap: 50px; margin-top: 50px; }
  .strength-card-pro  { padding: 40px 25px 30px; }
  .strength-num       { font-size: 2.5rem; top: 10px; right: 15px; }
  .strength-body h3   { font-size: 1.25rem; margin-bottom: 15px; }
  .strength-body p    { font-size: 0.9rem; line-height: 1.7; }

  .service-content-row,
  .service-content-row.reverse { flex-direction: column; gap: 30px; }
  .service-title                { font-size: 1.6rem; flex-direction: column; gap: 5px; }
  .service-detail-image         { flex: none; width: 100%; height: 250px; }
  .workflow                     { padding: 30px 20px; margin-top: 40px; }
  .workflow-step                { padding: 20px; }

  .philosophy-flex  { flex-direction: column; gap: 40px; }
  .philosophy-image { flex: none; width: 100%; max-width: 400px; margin: 0 auto; }

  .company-section,
  .access-section  { padding-top: 40px !important; }
  .company-section .section-title,
  .access-section .section-title { margin-bottom: 30px !important; }

  .company-row    { flex-direction: column; }
  .company-row dt { width: 100%; margin-bottom: 8px; padding-left: 15px; align-items: flex-start; }
  .company-row dt::before { top: 13px !important; transform: none !important; }

  .access-routes  { gap: 20px; }
  .access-wrapper { padding: 30px 20px; }

  .sp-br { display: block; }

  .message-content-pro { flex-direction: column; gap: 30px; }
  .message-head        { font-size: 1.6rem; }

  .recruit-positions { padding: 60px 20px; }
  .position-header   { flex-direction: column; align-items: flex-start; gap: 10px; }

  .recruit-row    { flex-direction: column; padding: 15px 0; }
  .recruit-row dt { width: 100%; margin-bottom: 8px; padding-left: 15px; }
  .recruit-row dt::before { top: 9px; }
  .recruit-row dd { padding-left: 15px; }

  .environment-item p { padding: 0; }

  .flow-steps { flex-direction: column; gap: 20px; align-items: stretch; }
  .flow-step  { width: 100%; display: flex; align-items: center; text-align: left; padding: 20px; gap: 20px; }
  .flow-num   { margin-bottom: 0; font-size: 2rem; flex: 0 0 50px; }
  .flow-arrow { display: none; }

  .flow-step::after {
    content: '▼';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #c9c3bc;
    font-size: 14px;
  }
  .flow-step:last-child::after { display: none; }

  .recruit-btn-area  { margin-top: 20px; }
  .recruit-jp        { font-size: 1.5rem; }
  .apply-contact-box { padding: 40px 20px; }
  .apply-tel         { font-size: 1.5rem; }
  .btn-primary-large { display: block; width: 100%; padding: 15px; text-align: center; border-radius: 4px; }

  .cta::before,
  .apply-section::before,
  .services-preview::before { background-size: 100% !important; }

  .contact-page-section .container { padding-left: 30px; padding-right: 30px; }
  .contact-form-wrapper            { padding: 0; width: 100%; }

  .form-input input,
  .form-input select,
  .form-input textarea { width: 100% !important; max-width: none; box-sizing: border-box; }

  .form-item label { width: 100%; margin-bottom: 8px; padding-right: 0; }

  .daily-schedule         { padding-top: 60px !important; padding-bottom: 60px !important; }
  .schedule-list::before  { left: 20px; }
  .schedule-item          { flex-direction: column; padding-left: 45px; }
  .schedule-item::after   { left: 20px; top: 8px; }
  .schedule-time          { flex: none; text-align: left; padding-right: 0; margin-bottom: 5px; font-size: 1rem; }
  .schedule-content       { padding-left: 0; }

  .footer-logo    { margin-top: 30px; }
  .sp-block       { display: block !important; width: 100%; }
  .intro-text br  { display: none; }

  .hero-gradient-overlay {
    background:
      linear-gradient(to top,  rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.08) 45%, transparent 70%),
      linear-gradient(to right, rgba(0,0,0,0.12) 0%, transparent 60%),
      linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, transparent 30%);
  }

  .hero-label {
    color: #fff;
    justify-content: center;
    width: 100%;
  }
  .hero-label::before,
  .hero-label::after {
    background-color: #fff;
    opacity: 1;
  }
  .hero-content { text-align: center; }

  .hero-title      { font-size: 2.2rem; }
  .hero-title span {
    display: inline;          
    background-color: #fff;   
    box-shadow: none;
    padding: 4px 16px;
  }
  .hero-title br   { display: none; }

  .logo-img,
  .header.scrolled .logo-img {
    height: 40px;
    margin-left: -6px;
  }

  .hamburger { margin-right: -6px; }

  .cta-text h2 {
    text-align: center;
    font-size: 1.75rem;
    line-height: 1.55;
    word-break: keep-all;
    overflow-wrap: anywhere;
    margin-top: -20px;
  }

  /* ---- 会社案内アクセスセクション: 上下余白を他ページと揃える ---- */
  .access-section {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  /* ---- 募集要項: 左右余白を他コンテンツと揃える ---- */
  .recruit-positions { padding: 60px 20px !important; }

  /* ---- 1日のスケジュール: 上下余白を他セクションと揃える ---- */
  .daily-schedule {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  /* ---- 下層ページH1: PC版と同じシャドウ ---- */
  .page-title {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  }
}

/* =================================================================
   18. レスポンシブ: 補足調整 (769px 以上)
================================================================= */
@media (min-width: 769px) {
  .company-section,
  .access-section { padding-top: 60px !important; }

  .sp-br { display: none !important; }

  .work-environment { padding-bottom: 130px !important; }
  .daily-schedule   { padding-top: 100px !important; }
}