@charset "utf-8";
/* =====================
   BASE DESIGN
===================== */
:root {
  --primary: #0d6efd;
  --primary-dark: #004ad1;
  --text: #333;
  --bg: #f7f9fc;
  --radius: 10px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}
/* =====================
   header
===================== */
.site-header {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  /* float: left; */
}

/* .site-header::after {
  content: "";
  display: table;
  clear: both;
} */

.logo {
  margin-top: 10px;
  margin-left: 10px;
  width: 250px;
  height: auto;
}


/* =====================
   HERO
===================== */
.hero-shell {
  position: relative;
  height: 420px;
  height: auto;
}

/* .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.hero-container {
  position: relative; 
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 400px; 
  overflow: hidden;
/*	
  background-image: url('../images/header-pic.jpg'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat;
*/
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 全面にフィット */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  color: #fff;
  z-index: 1;
}

.hero-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  transition: 0.4s;
}

.hero-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================
   BUTTONS
===================== */
.btn-main,
.btn-ghost {
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 16px;
  text-decoration: none;
}

.btn-main {
  background: var(--primary);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

.btn-main:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

/* LINEボタン用 */
.btn-subline {
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px dashed var(--primary);
  background: #e7f0ff;
  color: var(--primary-dark);
  font-size: 14px;
  cursor: pointer;
}

/* =====================
   NAV
===================== */

.nav-row {
  display: flex;
  gap: 18px;
  margin: 32px 0;
  margin-right: 10px;
  flex-wrap: wrap;
  list-style: none;

} 

.nav a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 14px;
} 


.header__btn,
.nav__btn  {
  display: none;
}

/* nav pc→sp*/
@media (max-width: 768px) {

.nav {
  background-color: rgba(234, 242, 255, 0.9);
  width: 30%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s;
  float: right;
}


.nav-row {
  display: block;
  margin-top: 30px;
  margin-left: 20px;
  
}

.nav a {
text-decoration: none;
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 1.2rem;
}


.nav__btn {
  display: block;
  margin-top: 15px;
  margin-left: 10px;
  width: 40px;
  height: 40px;
}

.header__btn {
 display: block;
 margin-top: 12px;
 width: 40px;
 height: 40px;
 margin-right: 15px;
}

.nav.active {
  transform: translateX(0);
}

}

@media (max-width: 426px) {
.nav {
  width: 50%;
}
}

@media (max-width: 992px) {

.nav {
  margin-left: 220px;
  margin-right: 5px;
  gap: 10px;
}
}


/* =====================
   SECTION LAYOUT
===================== */
section {
  margin-top: 80px;
}

h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* =====================
   OVERVIEW
===================== */
.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}

.overview-main p + p {
  margin-top: 8px;
}

.fact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fact-card {
  background: #fff;
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.fact-label {
  font-size: 12px;
  color: #555;
  margin-bottom: 4px;
}

.fact-main {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.fact-sub {
  font-size: 13px;
  color: #555;
}

/* =====================
   TIMELINE
===================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  background: #eaf2ff;
  padding: 16px;
  border-radius: var(--radius);
  align-items: flex-start;
}

.timeline-time {
  font-weight: bold;
  color: var(--primary-dark);
  min-width: 70px;
}

.timeline-body {
  display: block;
  gap: 16px;
  flex: 1;
}

.timeline-text {
  flex: 1;
  font-size: 14px;
}

.timeline-photo img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* =====================
   FEATURE
===================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

/* =====================
   DAILY（今日の現場カード）
===================== */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.daily-card {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 12px;
  border-radius: var(--radius);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
}

.daily-image {
  width: 110px;
  height: 80px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  flex-shrink: 0;
}

.daily-content {
  flex: 1;
}

.daily-meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.tag {
  padding: 2px 8px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--primary-dark);
  font-size: 11px;
}

.daily-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.daily-text {
  font-size: 13px;
  color: #555;
}

/* =====================
   VOICE
===================== */
.voice-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
}

.voice-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

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

.voice-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.voice-name {
  font-weight: bold;
}

.voice-role {
  font-size: 13px;
  color: #555;
}

.voice-text {
  font-size: 14px;
  color: #444;
}

.voice-photo img {
  width: 100%;
  border-radius: var(--radius);
  height: 100%;
  object-fit: cover;
}

/* =====================
   WORKSTYLE
===================== */
.workstyle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 20px;
}

.check-card,
.support-card {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.06);
}

.check-card h3,
.support-card h3 {
  margin-bottom: 10px;
}

.check-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-card li {
  font-size: 14px;
  margin-bottom: 4px;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-list li {
  font-size: 14px;
  margin-bottom: 8px;
}

.support-label {
  font-weight: bold;
}

/* =====================
   TERMS TABLE
===================== */
.terms-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.terms-table th,
.terms-table td {
  border: 1px solid #ddd;
  padding: 14px;
  font-size: 14px;
}

.terms-table th {
  background: #eaf2ff;
  width: 30%;
  text-align: left;
}

/* =====================
   COMPANY
===================== */
.company-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
}

.company-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.company-name {
  font-size: 18px;
  font-weight: 700;
}

.company-meta {
  font-size: 14px;
  color: #555;
}

.company-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--primary-dark);
  font-size: 13px;
}

/* =====================
   FAQ
===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  padding: 14px 16px;
  border-radius: var(--radius);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.06);
}

.faq-q {
  font-weight: bold;
  margin-bottom: 4px;
}

.faq-a {
  font-size: 14px;
  color: #555;
}

/* =====================
   FORM
===================== */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form input,
form select,
form textarea {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid #ccc;
  font-size: 16px;
}

form textarea {
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#submitResult {
  font-size: 14px;
  color: green;
  margin-top: 4px;
}

/* =====================
   FOOTER & FLOAT CTA
===================== */
footer {
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

footer a {
  color: var(--primary-dark);
  text-decoration: none;
}

.float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 16px;
  z-index: 100;
}

.float-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.float-cta-text {
  font-size: 13px;
  color: #444;
}

body.with-float-cta {
  padding-bottom: 70px;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .voice-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .workstyle-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-shell {
    height: 320px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-body {
    flex-direction: column;
  }

  .daily-card {
    flex-direction: row;
  }

  .logo {
    margin-top: 10px;
    margin-left: 10px;
    width: 150px;
    height: auto;
  }

.hero-container {  
  height: 350px;
}

}



