@charset "UTF-8";
/* =========================
   variable
========================= */
/* =========================
   color variables（④）
========================= */
/* =========================
   mixin
========================= */
/* =========================
   unique
========================= */
.c-col3 {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  gap: 32px;
  list-style: none;
}

@media (min-width: 1024px) {
  .c-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .c-col3 {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin-inline: auto;
  }
}

.c-col3__item {
  text-align: left;
}

.c-col3__image {
  display: block;
  margin-bottom: 16px;
}

.c-col3__title {
  font-weight: 700;
  margin-bottom: 8px;
}

.c-col3__text {
  margin: 0;
}

/* =========================
   Office info
========================= */
.c-office-info {
  /* PC：2カラム */
  /* SP：縦積み */
}

.c-office-info__term, .c-office-info__desc {
  margin: 0;
  padding: 12px 0;
  line-height: 1.7;
  padding-inline-start: 1.4em;
}

.c-office-info__term {
  font-weight: 600;
  color: #222222;
}

.c-office-info__desc {
  color: #222222;
}

.c-office-info__desc a {
  color: inherit;
  text-decoration: none;
}

.c-office-info__desc a:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .c-office-info {
    display: grid;
    grid-template-columns: 160px 1fr;
    column-gap: 24px;
  }
  .c-office-info__term {
    border-bottom: 1px solid #E0E0E0;
  }
  .c-office-info__desc {
    border-bottom: 1px solid #E0E0E0;
  }
}

@media (max-width: 1023px) {
  .c-office-info__term {
    padding-bottom: 4px;
  }
  .c-office-info__desc {
    padding-top: 0;
    padding-bottom: 16px;
  }
}

.c-contact {
  max-width: 800px;
  margin-inline: auto;
}

.c-contact__title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.c-contact__lead {
  margin-bottom: 24px;
  color: #222222;
}

.c-contact__note {
  margin-bottom: 24px;
  color: #d93025;
}

.c-contact__form {
  overflow: hidden;
  /* 角丸を効かせる */
}

.c-contact__form iframe {
  width: 100%;
  height: 900px;
  /* 後述 */
  border: none;
}
