@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1.8;
}

/* hero */
.hero {
  background: url("../img/hero.jpg") center / cover no-repeat;
  padding: 120px 20px;
  color: #fff;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  color: #fff;
  line-height: 1.3;
  text-shadow:
    0 2px 4px rgba(0,0,0,.6),
    0 0 10px rgba(0,0,0,.35);
}

.hero p {
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  text-shadow:
    0 2px 4px rgba(0,0,0,.6),
    0 0 10px rgba(0,0,0,.35);
}

/* section */
.section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
  position: relative;
}

.section-title span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.section-title::before,
.section-title::after {
  content: "";
  display: block;
  height: 1px;
  background: #999;
  margin: 10px auto;
  width: 100%;
}

/* two column */
.two-column {
  display: flex;
  gap: 40px;
}

.two-column .text {
  flex: 1;
  font-size: 16px;
}

.two-column .image {
  flex: 1;
}

.two-column img {
  width: 100%;
  height: auto;
}

/* info */

.company-info {
  display: grid;
  grid-template-columns: 6em 1fr;
  column-gap: 16px;
  row-gap: 8px;
  font-size: 16px;
}

.company-info dt {
  font-weight: 600;
}

.company-info dd {
  margin: 0;
}
/* contact */
.contact {
  background: #eeeeee;
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.contact h2 {
  font-size: 20px;
}

.contact span {
  display: block;
  font-size: 12px;
}

.contact .tel {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

/* footer */
.footer {
  background: #f5f5f5;
  text-align: center;
  font-size: 14px;
  padding: 40px 20px;
  color: #555;
}
/* responsive */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }

  .hero {
    padding: 80px 20px;
  }
  .company-info {
    grid-template-columns: 1fr;
  }

  .company-info dt {
    margin-top: 8px;
  }
}

