@charset "UTF-8";
/* ============================================================
// contact.scss (お問い合わせ)
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// Page Header / ページトップ画像見出し
------------------------------------------------------------ */
.page-header-01,
.page-header-02,
.page-header-03 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(240px, 16vw + 180px, 500px);
  margin-bottom: clamp(60px, 3.6923076923vw + 46.1538461538px, 120px);
  padding-top: clamp(76px, 3.3230769231vw + 63.5384615385px, 130px);
  overflow: hidden;
  background-color: #333333;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}
.page-header-01::before,
.page-header-02::before,
.page-header-03::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-header-01__inner,
.page-header-02__inner,
.page-header-03__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  text-align: center;
}
.page-header-01__title-area,
.page-header-02__title-area,
.page-header-03__title-area {
  color: #ffffff;
}
.page-header-01__en,
.page-header-02__en,
.page-header-03__en {
  display: block;
  font-size: clamp(34px, 1.6vw + 28px, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.page-header-01__jp,
.page-header-02__jp,
.page-header-03__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: 5px;
}
.page-header-01__jp::after,
.page-header-02__jp::after,
.page-header-03__jp::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #1068c0;
}

.page-header-01 {
  background-image: url(../images/contact/bg-page-header-01.webp);
}

.page-header-02 {
  background-image: url(../images/contact/bg-page-header-02.webp);
}

.page-header-03 {
  background-image: url(../images/contact/bg-page-header-03.webp);
}

/* ------------------------------------------------------------
// 共通設定
------------------------------------------------------------ */
.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.html）
------------------------------------------------------------ */
.c-payment,
.c-insurance {
  width: 100%;
  padding: 10px;
  border: 1px solid #00a0e9;
  border-radius: 4px;
}
.c-payment__inner,
.c-insurance__inner {
  display: flex;
  align-items: stretch;
  gap: 30px;
}
@media (max-width: 767px) {
  .c-payment__inner,
  .c-insurance__inner {
    flex-direction: column;
    gap: 15px;
  }
}
.c-payment__label,
.c-insurance__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  width: 220px;
  min-height: 130px;
  padding: 20px;
  background-color: #00a0e9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .c-payment__label,
  .c-insurance__label {
    width: 100%;
    min-height: auto;
    padding: 15px;
  }
}
.c-payment__content,
.c-insurance__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 15px 10px 0;
}
.c-payment__content p,
.c-insurance__content p {
  margin-bottom: 5px;
}
.c-payment__content p:last-of-type,
.c-insurance__content p:last-of-type {
  margin-bottom: 0;
}
.c-payment__content .c-payment__link,
.c-insurance__content .c-payment__link {
  font-weight: 700;
  color: #1068c0;
  margin-top: 20px;
}

.contact-cancel__item {
  background-color: #ffffff;
  border: 2px solid #00a0e9;
  border-radius: 4px;
  overflow: hidden;
}
.contact-cancel__head {
  display: flex;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #00a0e9, #1cb5e0);
}
.contact-cancel__head div {
  flex: 1;
  font-size: clamp(16px, 0.1230769231vw + 15.5384615385px, 18px);
  padding: 15px 10px;
}
.contact-cancel__head div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-cancel__table {
  width: 100%;
  border-collapse: collapse;
}
.contact-cancel__table tr {
  border-bottom: 1px solid #dddddd;
}
.contact-cancel__table tr:last-child {
  border-bottom: none;
}
.contact-cancel__table td {
  padding: 20px;
  font-size: clamp(14px, 0.1230769231vw + 13.5384615385px, 16px);
  text-align: center;
  width: 50%;
}
.contact-cancel__table td:first-child {
  font-weight: 700;
  border-right: 1px solid #dddddd;
}
.contact-cancel__table td .percent {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
  margin-left: 2px;
}

.estimate-form-text {
  font-size: clamp(18px, 0.3692307692vw + 16.6153846154px, 24px);
  text-align: center;
  padding: 15px 15px;
  border-top: 2px solid #1068c0;
  border-bottom: 2px solid #1068c0;
}

/* ------------------------------------------------------------
// よくあるご質問・お問い合わせ（contact3.html）
------------------------------------------------------------ */
.faq {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
.faq__item:not(:last-child) {
  margin-bottom: 40px;
}
.faq__question {
  display: flex;
  align-items: stretch;
  border: 1px solid #1068c0;
  background-color: #ffffff;
  overflow: hidden;
}
.faq__q-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: clamp(18px, 0.1230769231vw + 17.5384615385px, 20px);
  font-weight: 700;
  color: #ffffff;
  width: clamp(40px, 0.6153846154vw + 37.6923076923px, 50px);
  min-height: 54px;
  background-color: #1068c0;
}
.faq__q-text {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #1068c0;
  line-height: 1.4;
  padding: 12px clamp(15px, 0.3076923077vw + 13.8461538462px, 20px);
}
.faq__answer {
  padding: 15px clamp(0px, 1.2307692308vw + -4.6153846154px, 20px) 0 clamp(0px, 5.5384615385vw + -20.7692307692px, 90px);
}
.faq__answer p {
  margin: 0;
  line-height: 1.8;
}
.faq__answer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #a8d179 0%, #1cb5e0 100%);
  border-radius: 50px;
  transition: opacity 0.3s;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(28, 181, 224, 0.3);
}
.faq__answer a:hover {
  color: #ffffff;
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 181, 224, 0.5);
}

/* ============================================================
// contact.scss (BEM適合・ブラッシュアップ版)
============================================================ */
.content-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 320px;
  background: url(../images/contact/page-title.png) no-repeat center center/cover;
  border-radius: 4px;
}
.content-header__box {
  text-align: center;
  padding: 40px 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.content-header__en {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
  color: #333333;
}
.content-header__jp {
  font-size: 13px;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .content-header {
    height: 200px;
  }
  .content-header__box {
    padding: 20px 40px;
  }
  .content-header__en {
    font-size: 28px;
  }
  .content-header__jp {
    font-size: 11px;
  }
}

.c-subttl {
  text-align: center;
  margin: 80px 0 40px;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.c-subttl span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-subttl {
    margin: 60px 0 30px;
    font-size: 20px;
  }
}

.contact-tel {
  margin-bottom: 80px;
}
.contact-tel__box {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 50px 30px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  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: #ffffff;
  background: #333;
  padding: 4px 8px;
  border-radius: 2px;
}
.contact-tel__value {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: #333333;
  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: 5px;
  }
  .contact-tel__value {
    font-size: 32px;
  }
}

.contact-text-box {
  line-height: 2.2;
  margin-inline: clamp(0px, 3.6923076923vw + -13.8461538462px, 60px);
  padding: clamp(30px, 1.8461538462vw + 23.0769230769px, 60px) clamp(20px, 2.4615384615vw + 10.7692307692px, 60px);
  background: #f5f5f5;
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.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;
  }
}

.contact-form {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
.contact-form .form-list {
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid #dddddd;
}
.contact-form .form-list__row {
  border-bottom: 1px solid #dddddd;
  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: #ffffff;
  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 #dddddd;
  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: #555;
  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;
  }
}