body {
  font-family: "Noto Serif JP", serif;
}
.text-noto-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.text-libre {
  font-family: "Libre Baskerville", serif;
}
.section-title-wrapper {
  margin-bottom: 80px;
}
.section-title {
  font-family: "Libre Baskerville", serif;
  font-size: 36px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
  text-align: center;
}

.section-subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
  text-align: center;
  font-weight: bold;
}

.view-more-btn {
  width: 360px;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 40px;
  border-radius: 128px;
  margin: 100px auto 0;
  letter-spacing: 0.15em;
  line-height: 1.6em;
}

.two-column-page-title-section {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.two-column-page-title-section .title-wrapper {
  display: flex;
  align-items: center;
  width: 1260px;
  max-width: 100%;
  padding: 0 80px 0 80px;
  margin: auto;
  gap: 80px;
}
.two-column-page-title-section .title-wrapper .title {
  font-family: "Libre Baskerville", serif;
  font-size: 42px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
}
.two-column-page-title-section .title-wrapper .sub-title {
  letter-spacing: 0.3em;
  line-height: 1.8em;
  font-size: 20px;
  font-weight: bold;
  margin-left: 5px;
}
.two-column-page-title-section .title-wrapper .text-section {
  width: 38%;
}
.two-column-page-title-section .image-section {
  height: 370px;
  width: 55%;
  flex: 1;
}
.two-column-page-title-section .image-section img {
  border-radius: 20px;
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.5s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-opacity {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animate-opacity.visible {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .section-title-wrapper {
    margin-bottom: 60px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-subtitle {
    font-size: 14px;
  }
  .view-more-btn {
    margin: 60px auto 0;
  }

  .two-column-page-title-section {
    padding: 60px 0 0;
  }

  .two-column-page-title-section .title-wrapper {
    padding: 0;
    flex-direction: column;
    align-items: start;
    width: 100%;
    gap: 60px;
  }
  .two-column-page-title-section .title-wrapper .text-section {
    width: 100%;
    padding: 0 40px;
    text-align: center;
    margin: auto;
  }
  .two-column-page-title-section .title-wrapper .title {
    font-size: 28px;
  }
  .two-column-page-title-section .title-wrapper .sub-title {
    font-size: 14px;
    margin: 0;
  }

  .two-column-page-title-section .image-section {
    width: 100%;
    max-height: 370px;
    min-height: 370px;
    height: 370px;
    display: flex;
  }

  .two-column-page-title-section .image-section img {
    border-radius: 0;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 540px) {
  .section-title-wrapper {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 24px;
  }
  .view-more-btn {
    padding: 20px 40px;
    width: 90%;
    font-size: 14px;
  }

  .two-column-page-title-section .title-wrapper .title {
    font-size: 24px;
  }
  .two-column-page-title-section .image-section {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
  }
}
