@charset "UTF-8";

:root {
  --kellch-font-sans: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "Yu Gothic", Arial, sans-serif;
  --kellch-font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", Georgia, serif;
  --kellch-font-latin-serif: Georgia, "Times New Roman", serif;
}

.kellch-common,
.kellch-common * {
  box-sizing: border-box;
}

.kellch-common {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #333333;
  font-family: var(--kellch-font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  text-align: left;
}

.kellch-common-container {
  width: min(calc(100% - 48px), 1120px);
  margin-inline: auto;
}

.kellch-common-contact {
  padding-block: clamp(56px, 7vw, 104px);
  background: #f7f8f7;
}

.kellch-common-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(352px, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

.kellch-common-contact-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px 24px 12px 24px;
  box-shadow: 0 18px 46px rgba(37, 48, 37, 0.09);
}

.kellch-common-kicker {
  margin: 0 0 12px;
  color: #323c32;
  font-family: var(--kellch-font-latin-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kellch-common-contact-copy h2 {
  margin: 0 0 20px;
  padding: 0;
  color: #333333;
  background: transparent;
  border: 0;
  font-family: var(--kellch-font-serif);
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.35;
}

.kellch-common-contact-copy p {
  margin: 0 0 16px;
}

.kellch-common-contact-copy address {
  margin-block: 28px 6px;
  padding-left: 16px;
  font-style: normal;
  border-left: 4px solid #323c32;
}

.kellch-common-contact-copy address a,
.kellch-common-text-link {
  color: #0044cc !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-underline-offset: 0.18em;
}

.kellch-common-note {
  color: #676b67;
  font-size: 14px;
}

.kellch-common-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.kellch-common-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px !important;
  border: 1px solid #323c32;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
}

.kellch-common-button-primary {
  color: #253025 !important;
  background: #fff36f !important;
  border-color: #fff36f !important;
}

.kellch-common-button-outline {
  color: #323c32 !important;
  background: #ffffff !important;
}

.kellch-common-contact-actions .kellch-common-text-link {
  flex-basis: 100%;
  min-height: 44px;
}

.kellch-common-footer {
  padding-top: clamp(48px, 6vw, 72px);
  color: #e6ebe6;
  background: #253025;
}

.kellch-common-footer-grid {
  display: grid;
  grid-template-columns: minmax(256px, 1.2fr) minmax(224px, 0.9fr) minmax(224px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}

.kellch-common-footer-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--kellch-font-latin-serif);
  font-size: 24px;
  font-weight: 700;
}

.kellch-common-footer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kellch-common-footer-services > p {
  margin: 0 0 12px;
  color: #ffffff;
  font-weight: 700;
}

.kellch-common-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.kellch-common-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

@media (max-width: 800px) {
  .kellch-common-container {
    width: min(calc(100% - 32px), 1120px);
  }

  .kellch-common-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .kellch-common-contact-media {
    width: min(100%, 640px);
  }

  .kellch-common-footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .kellch-common-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .kellch-common-contact-actions,
  .kellch-common-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .kellch-common-button {
    width: 100%;
  }

  .kellch-common-footer-brand {
    grid-column: auto;
  }

  .kellch-common-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  .kellch-common-contact-actions,
  .kellch-common-footer {
    display: none;
  }
}
