@charset "UTF-8";
/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  /* ヘッダー */
  /* 説明文 */
  /* 電話番号エリア */
  /* メールセクション */
}
.contact-section .contact-container {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.contact-section p:not(.section-title-en) {
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 5%;
  text-align: center;
}
.contact-section .contact-header {
  margin-bottom: 40px;
  position: relative;
}
.contact-section .contact-description {
  margin-bottom: 50px;
}
.contact-section .contact-description p {
  color: var(--black);
  margin: 5px 0;
  font-weight: 400;
}
.contact-section .phone-area {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  gap: 60px;
  /* 区切り線 */
}
.contact-section .phone-area .phone-block {
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 400px;
}
.contact-section .phone-area .phone-block .school-name {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 15px;
}
.contact-section .phone-area .phone-block .phone-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.contact-section .phone-area .phone-block .tel-label {
  font-family: "Anuphan", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
.contact-section .phone-area .phone-block .phone-slash {
  font-family: "Anuphan", sans-serif;
  font-weight: 500;
  font-size: 24px;
}
.contact-section .phone-area .phone-block .phone-number {
  font-family: "Anuphan", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-section .phone-area .phone-block .phone-number:hover {
  transform: scale(1.05);
}
.contact-section .phone-area .phone-block .business-hours {
  color: var(--black);
  font-weight: 500;
  margin-top: 5px;
}
.contact-section .phone-area .phone-divider {
  width: 0.5px;
  height: 80px;
  background: var(--black);
  flex-shrink: 0;
}
.contact-section .email-section {
  padding: 40px 20px;
  background-color: var(--bg-blue);
  width: 900px;
  margin: auto;
}
.contact-section .email-section .email-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
}
.contact-section .email-section .email-description {
  margin-top: 20px;
}
.contact-section .email-section .email-description p {
  font-weight: 400;
}
.contact-section .email-section .email-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}
.contact-section .email-section .email-button a {
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 70px;
}

@media (max-width: 960px) {
  /* Contact Section */
  .contact-section {
    padding: 50px 20px;
    /* ヘッダー */
    /* 説明文 */
    /* 電話番号エリア */
    /* メールセクション */
  }
  .contact-section .contact-container {
    margin: 0 auto;
    padding: 0;
  }
  .contact-section p:not(.section-title-en) {
    font-size: 16px;
  }
  .contact-section .contact-header {
    margin-bottom: 20px;
  }
  .contact-section .contact-description {
    margin-bottom: 20px;
  }
  .contact-section .contact-description p {
    color: var(--black);
    margin: 5px 0;
    font-weight: 400;
  }
  .contact-section .phone-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 20px;
    align-items: center;
    justify-content: center;
  }
  .contact-section .phone-area .phone-block {
    flex: 1;
    max-width: 300px;
  }
  .contact-section .phone-area .phone-block .school-name {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .contact-section .phone-area .phone-block .tel-label {
    font-size: 18px;
  }
  .contact-section .phone-area .phone-block .phone-slash {
    font-size: 18px;
  }
  .contact-section .phone-area .phone-block .phone-number {
    font-size: 32px;
  }
  .contact-section .phone-area .phone-block .phone-number:hover {
    transform: scale(1.05);
  }
  .contact-section .phone-area .phone-block .business-hours {
    color: var(--black);
    font-weight: 500;
    margin-top: 10px;
  }
  .contact-section .phone-area .phone-divider {
    width: 100%;
    height: 1px;
  }
  .contact-section .email-section {
    padding: 30px 20px;
    width: 100%;
    max-width: 800px;
    background-color: var(--bg-blue);
    margin: auto;
  }
  .contact-section .email-section .email-title {
    font-size: 24px;
  }
  .contact-section .email-section .email-description {
    margin-top: 10px;
  }
  .contact-section .email-section .email-button a {
    margin-top: 20px;
    width: 300px;
    height: 50px;
    padding: 8px 0;
  }
}
@media (max-width: 768px) {
  /* Contact Section */
  .contact-section {
    /* メールセクション */
  }
  .contact-section .email-section .email-description p {
    text-align: left;
  }
}/*# sourceMappingURL=contact.css.map */