@charset "UTF-8";
/* ============================================================
// contact.scss (お問い合わせ)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 16vw + 180px, 500px);
  padding-top: clamp(80px, 1.2307692308vw + 75.3846153846px, 100px);
  overflow: hidden;
  background-color: #fff;
  background-image: url(../images/contact/bg-page-header.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header__title-area {
  color: #333;
}
.page-header__en {
  display: block;
  font-size: clamp(34px, 1.6vw + 28px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header__en::first-letter {
  color: #3380cc;
}
.page-header__jp {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(14px, 0.1230769231vw + 13.5384615385px, 16px);
  font-weight: 500;
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 20px;
}
.page-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #24e5b2, #0093e9);
}

/* ------------------------------------------------------------
// 共通設定
------------------------------------------------------------ */
.c-contact-text {
  margin-bottom: 20px;
}

.c-contact-caution-text {
  font-size: clamp(14px, 0.1230769231vw + 13.5384615385px, 16px);
  color: #d33838;
  text-align: center;
  margin-top: 40px;
  padding: 10px clamp(0px, 0.9230769231vw + -3.4615384615px, 15px);
  border-top: 1px solid #d33838;
  border-bottom: 1px solid #d33838;
}

/* ============================================================
// contact.scss (BEM適合・ブラッシュアップ版)
============================================================ */
.contact-tel {
  margin-bottom: 80px;
}
.contact-tel__box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}
.contact-tel__number {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.contact-tel__number a {
  text-align: center;
}
.contact-tel__prefix--tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #333;
  padding: clamp(2px, 0.1230769231vw + 1.5384615385px, 4px) clamp(8px, 0.7384615385vw + 5.2307692308px, 20px);
  border-radius: 2px;
}
.contact-tel__prefix--fax {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  background: #eee;
  padding: clamp(2px, 0.1230769231vw + 1.5384615385px, 4px) clamp(8px, 0.7384615385vw + 5.2307692308px, 20px);
  border-radius: 2px;
}
.contact-tel__value--tel {
  font-size: clamp(32px, 0.6153846154vw + 29.6923076923px, 42px);
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 3px;
}
.contact-tel__value--fax {
  font-size: clamp(24px, 0.4923076923vw + 22.1538461538px, 32px);
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 3px;
}
.contact-tel__info {
  text-align: center;
}
.contact-tel__info p {
  margin-bottom: 8px;
  line-height: 1.6;
}
.contact-tel__info p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact-tel {
    padding: 0 15px;
  }
  .contact-tel__box {
    padding: 30px 20px;
  }
  .contact-tel__number {
    flex-direction: column;
    gap: 5px;
  }
}

.contact-text-box {
  line-height: 2.2;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(30px, 1.8461538462vw + 23.0769230769px, 60px) clamp(20px, 2.4615384615vw + 10.7692307692px, 60px);
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .contact-text-box {
    line-height: 1.7;
  }
}

.contact-form {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
.contact-form .form-list {
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid #ddd;
}
.contact-form .form-list__row {
  border-bottom: 1px solid #ddd;
  padding: 32px 0;
}
.contact-form .form-list__label {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-form .form-list__data {
  width: 100%;
}
.contact-form .form-list__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-form .form-list__check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
}
.contact-form .form-list__check-group li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.c-label-required {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  background: #d33838;
  height: 20px;
  padding: 0 8px;
  border-radius: 4px;
}

.privacy-policy {
  margin-top: 64px;
}
.privacy-policy__title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.privacy-policy__content {
  overflow-y: auto;
  height: 300px;
  padding: 32px;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  scrollbar-width: thin;
}
.privacy-policy__content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.privacy-policy__content ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.privacy-policy__content .privacy-item-title {
  font-size: 14px;
  font-weight: 700;
  background: #666;
  color: #fff;
  padding: 5px 10px;
  margin: 2em 0 1em;
}
.privacy-policy__check {
  text-align: center;
  margin-top: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .privacy-policy__content {
    height: 240px;
    padding: 20px;
  }
}