/* ============================================
   TOP PAGE
   ============================================ */

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-notice {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(232, 130, 30, 0.9);
  padding: 8px 20px;
  text-align: center;
  font-size: 11px;
  color: white;
  font-weight: 500;
  z-index: 10;
}

/* .hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  z-index: 10;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
} */

/* Mission */
.mission {
  padding: 80px 30px 80px 60px;
  display: grid;
  grid-template-columns: .6fr 1fr;
  /* gap: 20px; */
  align-items: center;
}

.mission-body p.body-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
}

.mission-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 20px;
}

.mission-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mission-image {
  display: flex;
  justify-content: center;
}

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

/* Service */
.service {
  padding: 80px 60px;
  /* background: var(--white); */
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.service-card {
  border: 3px solid #000;
  border-radius: 150px;
  /* overflow: hidden; */
  background-color: #F7F7F7;
  transition: box-shadow 0.3s, transform 0.3s;
}

/* .service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
} */

.service-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-img img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  width: calc(60% + 60px);
  margin: 20px auto 0;
  height: auto;
}

.service-card-body {
  padding: 20px;
}

.service-card-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: center;
  height: 60px;
}
.lh_1{
  line-height: 2.8;
}
.service-card-text {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  margin-bottom: 10px;
  height: 80px;
}

.service-card-link {
  width: calc(100% + 40px);
  margin: 20px -20px 0;
  bottom: 0px;
  position: relative;
  /* display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #FF6C00;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--orange);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.2s; */
}

/* .service-card-link:hover {
  background: var(--orange);
  color: white;
} */

/* .service-card-link::after {
  content: '›';
  font-size: 14px;
} */

/* Manual Banner */
.manual-banner{
  width: 80%;
  margin: 0 auto;
}
.manual-banner:hover{
    opacity: 0.8;
}
/* .manual-banner {
  margin: 0 60px 60px;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  gap: 20px;
}

.manual-banner-logo {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 3px;
  line-height: 1;
}

.manual-banner-logo span {
  display: block;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: 2px;
}

.manual-banner-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.manual-banner-text .banner-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.manual-banner-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.manual-banner-text h3 em {
  color: #FF6C00;
  font-style: normal;
}

.manual-banner-action {
  position: relative;
  z-index: 1;
} */

.manual-banner-action a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF6C00;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}

.manual-banner-action a:hover {
  background: #c96a10;
}

.manual-banner-action a svg {
  width: 16px;
  height: 16px;
  fill: white;
  flex-shrink: 0;
}
@media (max-width: 768px) {


}

