@charset "UTF-8";

/* =========================================
   First View
========================================= */
.first-view {
  position: relative;
  height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ぼかした背景（PC） */
.first-view::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/index/bg-main.jpg) no-repeat center center / cover;
  filter: blur(5px);
  transform: scale(1.05);
  z-index: 0;
}

/* テキストは前面 */
.first-view-text {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 80px 40px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  line-height: 72px;
}

.first-view-text p {
  font-size: 18px;
  margin-top: 20px;
}

/* =========================================
   Section base
========================================= */
.section-block {
  padding: 60px 0;
}

/* =========================================
   About
========================================= */
.lead p {
  line-height: 2;
  text-align: center;
}

/* （使うなら残す：今回はボタンを外してる想定だけど、残してOK） */
.link-button-area {
  text-align: center;
  margin-top: 40px;
}

.link-button {
  background: #f4dd64;
  display: inline-block;
  width: 180px;
  line-height: 40px;
  border-radius: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.link-button:hover {
  background-color: #d8b500;
}

/* =========================================
   Features
========================================= */
.recommended {
  background-color: #f8f8f8;
  padding: 60px 0 70px;
}

.recommended h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.recommended h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin: 20px auto 0 auto;
}

/* item-list（幅は .inner に任せる） */
.item-list {
  list-style: none;
  margin: 0;
  padding: 40px 0 10px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;

  overflow: visible;
}

.item-list li {
  width: 260px;
  margin: 0;
  flex-shrink: 0;
}

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

/* =========================================
   Services
========================================= */
.services h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.services h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin: 20px auto 0 auto;
}

.services-grid {
  width: 100%;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #333333;
}

.service-card ul,
.service-card ol {
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.9;
}

.services-note {
  text-align: center;
  font-size: 13px;
  margin-top: 18px;
  color: #333333;
}

/* =========================================
   Info
========================================= */
.info h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.info h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin: 20px auto 0 auto;
}

.info-table {
  width: 100%;
  margin-top: 36px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.info-row:last-child {
  border-bottom: none;
}

.info-th {
  background: #f4f1ea;
  padding: 14px 16px;
  font-weight: bold;
  font-size: 13px;
}

.info-td {
  padding: 14px 16px;
  font-size: 13px;
}

.tel-link {
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================
   Contact
========================================= */
.contact {
  background: #f8f8f8;
  padding: 60px 0 70px;
}

.contact h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.contact h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin: 20px auto 0 auto;
}

.contact-card {
  width: 100%;
  margin: 36px auto 0;
  padding: 26px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-lead {
  font-size: 14px;
  line-height: 2;
}

.contact-actions {
  margin-top: 18px;
}

.contact-tel {
  display: inline-block;
  background: #f4dd64;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.contact-tel:hover {
  background-color: #d8b500;
}

.contact-time {
  margin-top: 10px;
  font-size: 13px;
  color: #333333;
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 800px) {
  .first-view {
    height: calc(100vh - 50px);
    align-items: flex-start;
  }

  .first-view::before {
    background-image: url(../images/index/bg-main.jpg);
  }

  .first-view-text {
    padding: 60px 0 0 20px;
  }

  .first-view-text h1 {
    font-size: 36px;
    line-height: 48px;
  }

  .first-view-text p {
    font-size: 14px;
    margin-top: 15px;
  }

  .section-block {
    padding: 44px 0;
  }

  .lead p {
    text-align: left;
  }

  .item-list {
    padding: 20px 0 10px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .item-list li {
    width: 100%;
    max-width: 420px;
  }

  .item-list img {
    width: 100%;
    height: auto;
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .info-th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}
