@charset "UTF-8";
/* ============================================================
// contact.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header
------------------------------------------------------------ */
.page-header-section {
  width: 100%;
}

.page-header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 400px;
  padding-top: clamp(80px, 4.1841004184vw + 38.4937238494px, 100px);
  background-image: url("../images/contact/page-header-bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-header {
    height: 200px;
  }
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 36, 26, 0.6) 0%, rgba(15, 36, 26, 0.2) 25%, rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-header::before {
    background: rgba(15, 36, 26, 0.85);
  }
}
.page-header__inner {
  position: relative;
  width: 100%;
  max-width: 1960px;
  margin-inline: auto;
  padding-inline: 20px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-header__inner {
    padding-inline: 20px;
  }
}
.page-header__title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-header__jp {
  font-size: clamp(32px, 2.0091324201vw + 24.4657534247px, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin: 0 0 12px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .page-header__jp {
    font-size: 32px;
    margin-bottom: 8px;
  }
}
.page-header__en {
  position: relative;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
  padding-left: 24px;
}
.page-header__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .page-header__en {
    font-size: 12px;
    padding-left: 18px;
  }
  .page-header__en::before {
    width: 8px;
  }
}

/* ============================================================
// content
============================================================ */
.contact-tel__box {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 30px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}
.contact-tel__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.contact-tel__prefix {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #222;
  padding: 4px 12px;
  border-radius: 6px;
}
.contact-tel__value {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #333;
  text-decoration: none;
}
.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: 10px;
  }
  .contact-tel__value {
    font-size: 32px;
  }
}

.contact-text-box {
  line-height: 2.2;
  margin-inline: clamp(0px, 5.4794520548vw + -20.5479452055px, 60px);
  padding: clamp(30px, 2.7397260274vw + 19.7260273973px, 60px) clamp(20px, 3.6529680365vw + 6.301369863px, 60px);
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.contact-text-box p.c-contact-text {
  margin-bottom: 0;
}
.contact-text-box p.c-contact-text span {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact-text-box {
    line-height: 1.7;
  }
}

.c-contact-caution-text {
  color: #d33838;
  text-align: center;
  margin-top: 20px;
  padding: 20px clamp(10px, 0.9132420091vw + 6.5753424658px, 20px);
  border-top: 1px solid #d33838;
  border-bottom: 1px solid #d33838;
}
@media screen and (max-width: 767px) {
  .c-contact-caution-text {
    text-align: left;
  }
}

.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;
  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;
  }
}