/* =============================================
   facility-tour.css - 保育施設見学ページ
   ============================================= */

/* ---- main：背景・レイアウト ---- */

.facility-tour main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  padding: 118px 0 150px;
  background: url('../img/blue-bg.jpg') center top / cover;
}

/* ---- ページタイトル ---- */

.facility-tour .lower-page-title {
  display: flex;
  padding: 100px 0 70px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.facility-tour .lower-page-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -8px;
}

.facility-tour .lower-page-title-container img {
  width: 100px;
  height: 100px;
}

.facility-tour .lower-page-subtitle {
  color: #9E6A41;
  text-align: center;
  font-family: "Baloo Tamma 2", sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.facility-tour .lower-page-heading {
  color: #6F380B;
  text-align: center;
  font-family: "Potta One", sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
}

/* ---- コンテンツセクション ---- */

.facility-tour .lower-page-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.facility-tour .lower-page-inner {
  display: flex;
  width: 1040px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* ---- ホワイトコンテナ ---- */

.facility-tour .white-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 60px 40px;
  border-radius: 30px;
  background: #FFF;
}

.facility-tour .white-container-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 800px;
  gap: 60px;
}

/* ---- セクションタイトル ---- */

.facility-tour .container-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: -60px;
}

.facility-tour .container-title img {
  width: 50px;
  height: 80px;
  aspect-ratio: 5 / 8;
}

.facility-tour .container-title-textbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.facility-tour .container-title-text {
  color: #754620;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.facility-tour .container-title-underline {
  display: inline-block;
  height: 3px;
  align-self: stretch;
  border-radius: 2px;
  background: #754620;
  margin-top: -2px;
}

/* ---- インナーコンテナ ---- */

.facility-tour .inner-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 800px;
  gap: 30px;
}

/* ---- テキスト ---- */

.facility-tour .description-title {
  color: #574B38;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 26px;
  font-weight: 500;
}

.facility-tour .description-text {
  color: #5C4635;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  align-self: stretch;
}

/* ---- 対象者リスト ---- */

.facility-tour .treatment-point-list {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: flex-start;
  margin: 0 auto;
}

.facility-tour .treatment-point-item {
  position: relative;
  padding-left: 32px;
  color: #7A400F;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.facility-tour .treatment-point-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background: url('../img/treatment-check.svg') center / contain no-repeat;
}

/* ---- 連絡先ボックス ---- */

.facility-tour .contact-box {
  width: auto;
}

/* =============================================
   Responsive：タブレット (max-width: 1040px)
   ============================================= */

@media (max-width: 1040px) {
  .facility-tour .lower-page-inner {
    width: calc(100% - 48px);
  }

  .facility-tour .white-container-area,
  .facility-tour .inner-container {
    width: 100%;
  }
}

/* =============================================
   Responsive：SP (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
  .facility-tour main {
    padding: 70px 0 80px;
  }

  .facility-tour .lower-page-title {
    padding: 48px 0 36px;
  }

  .facility-tour .lower-page-title-container img {
    width: 70px;
    height: 70px;
  }

  .facility-tour .lower-page-subtitle {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.6px;
  }

  .facility-tour .lower-page-heading {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .facility-tour .lower-page-inner {
    width: calc(100% - 32px);
    gap: 40px;
  }

  .facility-tour .white-container {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .facility-tour .white-container-area {
    width: 100%;
    gap: 36px;
  }

  .facility-tour .container-title {
    flex-direction: column;
    margin-left: 0;
  }

  .facility-tour .container-title img {
    width: 40px;
    height: auto;
  }

  .facility-tour .container-title-text {
    font-size: 22px;
  }

  .facility-tour .inner-container {
    width: 100%;
    gap: 20px;
  }

  .facility-tour .description-title {
    font-size: 20px;
  }

  .facility-tour .description-text {
    font-size: 15px;
    line-height: 26px;
  }

  .facility-tour .treatment-point-list {
    max-width: 100%;
  }

  .facility-tour .treatment-point-item {
    font-size: 16px;
  }

  .facility-tour .contact-box {
    width: 100%;
    max-width: 418px;
  }
}

.contact-box {
  border: 1px solid #6f380b;
  border-radius: 10px;
  overflow: hidden;
  width: auto;
}

.contact-box__header {
  background: #6f380b;
  color: #fff;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 6px 0;
  line-height: 1.5;
}

.contact-box__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 24px;
  text-align: center;
  background: #fff;
}

.contact-box__org {
  color: #6f380b;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  margin: 0;
}

.contact-box__address {
  color: #6f380b;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  margin: 0;
}

.contact-box__tel {
  color: #6f380b;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}

.contact-box__hours {
  color: #6f380b;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin: 0;
}