/* Color styles ------------*/
html {
  scroll-behavior: smooth;
}

#contact main article.contents {
  overflow: hidden;
}

/* ===== HERO / GREETING AREA ===== */
.greating_area {
  padding-top: 2rem;
}
@media (min-width: 600px) {
  .greating_area {
    padding-top: 3rem;
  }
}
.greating_area__hero {
  position: relative;
  width: 100%;
  height: 56vw;
  max-height: 520px;
  overflow: hidden;
}
.greating_area__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.greating_area__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  padding: 0 6vw;
}
@media (min-width: 960px) {
  .greating_area__overlay {
    padding: 0 80px;
  }
}
.greating_area__text {
  color: #fff;
  max-width: 620px;
}
.greating_area__label {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.8rem;
  opacity: 0.75;
}
.greating_area__title {
  font-size: 8vw;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
  margin-bottom: 0.6rem;
}
@media (min-width: 600px) {
  .greating_area__title {
    font-size: 3rem;
  }
}
.greating_area__sub {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.88;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
@media (min-width: 600px) {
  .greating_area__sub {
    font-size: 1rem;
  }
}

/* ===== SECTION HEAD ===== */
.section_head {
  margin-bottom: 2rem;
  text-align: center;
}
.section_head__en {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: #056509;
  margin-bottom: 0.5rem;
}
.section_head__ja {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #222;
  display: inline-block;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #056509;
}

/* ===== CONTACT AREA ===== */
.contact_area__container {
  width: 90vw;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .contact_area__container {
    width: 80vw;
  }
}
@media (min-width: 1280px) {
  .contact_area__container {
    width: 60vw;
  }
}
.contact_area__lead {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 3rem;
}

/* Phone cards */
.contact_tel_grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .contact_tel_grid {
    flex-direction: row;
    gap: 2rem;
  }
}
.contact_tel_card {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #dde8dd;
  border-top: 4px solid #056509;
  background-color: #f8f9f7;
}
.contact_tel_card__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #056509;
  margin-bottom: 0.8rem;
}
.contact_tel_card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-size: 7vw;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  text-decoration: none;
}
@media (min-width: 600px) {
  .contact_tel_card__num {
    font-size: 1.7rem;
  }
}
.contact_tel_card__num .icon-phone {
  font-size: 0.85em;
  color: #056509;
}
.contact_tel_card__num:hover {
  color: #056509;
}
.contact_tel_card__note {
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.03em;
}

/* Address / hours info */
.contact_info {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #e6e6e6;
}
.contact_info__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1.5rem;
  align-items: start;
}
@media (min-width: 600px) {
  .contact_info__list {
    gap: 1rem 2rem;
  }
}
.contact_info__list dt {
  font-size: 0.88rem;
  font-weight: 700;
  color: #056509;
  white-space: nowrap;
  padding-top: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.contact_info__list dd {
  font-size: 0.92rem;
  line-height: 1.9;
  color: #333;
}
.contact_info__list dd a {
  color: #056509;
  text-decoration: underline;
  font-size: 0.88rem;
}

/* Contact image */
.contact_img_box {
  text-align: center;
  margin-bottom: 2rem;
}
.contact_img_box img {
  width: 100%;
  max-width: 640px;
  height: auto;
  display: inline-block;
}
