@charset "utf-8";
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
    }
    #main {
      background-color: #f0f0f0;
      width: 76%;
    }
    h1 {
      text-align: center;
      color: #fff !important;
    }
    .grid-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* PC: 3列固定 */
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
     .grid-container2 {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* PC: 3列固定 */
      gap: 5px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 900px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr); /* タブレット: 2列 */
      }
    }

    @media (max-width: 600px) {
      .grid-container {
        grid-template-columns: 1fr; /* スマホ: 1列 */
      }
    }

    .profile-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 15px;
      display: flex;
      flex-direction: column;
      line-height: 150%;
    }
    .profile-card2 {
      background: #f4ffff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 15px;
      display: flex;
      flex-direction: column;
      line-height: 150%;
    }
    .profile-card3 {
      background: #fff9fc;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 15px;
      display: flex;
      flex-direction: column;
      line-height: 150%;
    }
    .profile-card4 {
      background: #fffff4;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 15px;
      display: flex;
      flex-direction: column;
      line-height: 150%;
    }


    .profile-header {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .profile-header img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .profile-info h2 {
      margin: 0;
      font-size: 1.1em;
    }

    .profile-info p {
      margin: 5px 0 0;
      color: #666;
      font-size: 0.95em;
    }

    .profile-comment {
      font-size: 0.9em;
      color: #444;
      margin-top: 10px;
    }
      
    .profile-header2 {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .profile-header2 img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .profile-comment {
      font-size: 0.9em;
      color: #444;
      margin-top: 10px;
    }
      
    .arrow-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}

.arrow-group {
  display: flex;
  gap: 12px;
  padding: 20px;
}

.kunoji-arrow {
  width: 20px;
  height: 20px;
  border-right: 3px solid black;
  border-bottom: 3px solid black;
  transform: rotate(45deg) skew(20deg, 20deg);
}
      .page-title {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
    }

    .page-title img {
      width: 40px;
      height: 40px;
      margin-right: 15px;
    }

    .page-title h1 {
      margin: 0;
      font-size: 1.8em;
    }
    .page-title h2 {
      font-size: 1.8em;
    }
      /* ▼ 画像グリッド（2列×2行） */
    .image-grid {
      display: grid;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px;
      grid-template-columns: repeat(2, 1fr);
    }

    .image-grid img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
      .job-section {
  max-width: 1200px;
  margin: 50px auto 0;
  padding: 0 10px;
}

.job-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.job-buttons a {
  flex: 1 1 calc(25% - 15px); /* 4等分 - gap */
  min-width: 120px;
  text-align: center;
  background-color: #0073e6;
  color: #fff;
  padding: 12px 3px 12px 1px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.2s;
}

.job-buttons a:hover {
  background-color: #005bb5;
}

.flow-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.flow-image {
  background-color: #fff;
}

/* 🔸 スマホ対応（縦に並ぶ） */
@media (max-width: 600px) {
  .job-buttons {
    flex-direction: column;
  }

  .job-buttons a {
    flex: none;
    width: 100%;
  }
  .image-grid {
    grid-template-columns: none;
  }
}
    /* ▼ 上部に追加するCSS */
.hero-section {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 60%;
  left: 0%;
  bottom: 0;
  right: 0;
  color: #fff;
  text-align: center;
  text-shadow:
    0 0 3px rgba(0, 0, 0, 1),
    0 0 6px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.8);
}
}

.hero-text h1 {
  font-size: 2em;
  margin: 0;
}

.hero-text p {
  font-size: 1em;
  margin-top: 10px;
}
    .points-section {
  padding: 60px 20px;
  text-align: center;
}

.points-section h2 {
  font-size: 1.8em;
  color: #333;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PC時は4列 */
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* スマホ・タブレット対応（2列） */
@media (max-width: 768px) {
  .points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.point-card {
  background: #f9f9f9;
  padding: 20px 5px;;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.point-card h3 {
  font-size: 1.2em;
  color: #0073e6;
  border-bottom:none;
  box-shadow:none;
  padding: 0;
  margin: 0 0 10px 0;
}

h3::after {
    display: none;
}

.point-card p {
  font-size: 0.95em;
  color: #555;
}

/* ぼかした背景の丸 */
.circle-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,115,230,0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(10px);
}
   .marquee-container {
  overflow: hidden;
  width: 100%;
  background: #f7f7f7;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  animation: scroll-left 40s linear infinite;
  gap: 20px;
  width: max-content;
}

.marquee-track img {
  width: 180px;           /* 横幅を固定 */
  height: auto;           /* 高さは自動 */
  flex-shrink: 0;
  object-fit: contain;    /* 縦横比を保持 */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
    .recruit-contact {
  text-align: center;
  background-color: #f1f1f1;
  color: #333;
  padding: 30px 15px;
  font-size: 1.3em;           /* ← 少し大きく */
  font-weight: bold;          /* ← 太字で視認性UP */
  margin-top: 60px;
  line-height: 1.8;
  border-top: 2px solid #ccc;
}

.recruit-contact .tel-link {
  color: #0073e6;
  font-size: 1.4em;           /* ← 電話番号はさらに大きく */
  text-decoration: none;
}

.recruit-contact .tel-link:hover {
  text-decoration: underline;
}
    .interview-button {
  text-align: center;
  margin: 60px auto 40px;
}

.orange-button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  width: 90%;
  height: 100px;
  margin: 0 auto;
  background-color: #ff7f27; /* オレンジ色 */
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
}

.orange-button:hover {
  background-color: #e56700; /* 少し濃く */
  transform: scale(1.02);
}

.interview-text {
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  text-align: center;
  padding: 0 10px;
}

    .timeline {
      max-width: 800px;
      margin: auto;
      position: relative;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 2px;
      background-color: #007bff;
      transform: translateX(-50%);
      z-index: 0;
    }

    .timeline-event {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 40px 0;
      position: relative;
      z-index: 1;
    }
    .event-left,
    .event-right {
      width: 45%;
    }

    .event-center {
      width: 10%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2;
    }

    .event-center img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%;
      background: white;
      padding: 2px;
      box-shadow: 0 0 4px rgba(0,0,0,0.2);
    }

    .event-content {
      display: flex;
      align-items: center;
      gap: 10px;
      background: white;
      padding: 12px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .event-content .time {
      font-weight: bold;
      color: #007bff;
      margin-bottom: 4px;
    }

    .event-content-text {
      flex: 1;
    }

    .event-content img.content-image {
      width: 140px;
      height: auto;
      border-radius: 6px;
      flex-shrink: 0;
    }

    @media screen and (max-width: 768px) {
      .timeline-event {
        flex-direction: column;
        align-items: center;
        margin: 0;
      }

      .event-left,
      .event-right,
      .event-center {
        width: 100%;
        margin-bottom: 6px;
      }

      .timeline::before {
        display: none;
      }

      .event-center {
        display: none;
      }

      .event-content {
        flex-direction: row;
      }

      .event-content img.content-image {
        width: 120px;
      }
    }
      .qa-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qa-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #007bff;
}

.qa {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.qa-left {
  flex-direction: row;
}

.qa-right {
  flex-direction: row-reverse;
}

.qa-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 12px;
  flex-shrink: 0;
}

.qa-bubble {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  max-width: 600px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.qa-bubble p {
  margin: 0 0 6px;
}

@media screen and (max-width: 768px) {
  .qa {
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 16px;
    gap: 10px;
  }

  .qa-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .qa-bubble {
    max-width: calc(100% - 70px);
    word-break: break-word;
  }

  .qa-left,
  .qa-right {
    flex-direction: row !important; /* 両方統一方向に */
  }
}
