/* =========================
   フェードイン
========================= */
.fade-in {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.fade-up {
  transform: translateY(20px);
}
.fade-left {
  transform: translateX(-20px);
}
.fade-right {
  transform: translateX(20px);
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes title-text-slide-right {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-up {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================
   ファーストビュー
========================= */
.mv {
  position: relative;
  margin-bottom: 150px;
}

.mv__bg {
  position: absolute;
  z-index: 1;
  inset: 0;
}
.mv__bg .bg__sp {
  display: none;
}

.mv__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv__inner {
  position: relative;
  z-index: 1;
  padding: 150px 150px 80px;
}

.mv__copy {
  width: fit-content;
  margin: 0;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-shadow: 0 0 25px rgba(0, 0, 0, 1);
  transform: translateX(-5%);
  opacity: 0;
  animation: title-text-slide-right 0.6s 0.2s ease-out forwards;
}

.mv__copy span {
  display: inline-block;
  font-size: 3.5rem;
}

.mv__copy::after {
  content: "";
  display: block;
  width: 100%;
  height: 43px;
  background-image: url("../images/underline.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 12px;
}

.mv__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0 45px;
  margin-top: 100px;
  padding-left: 50px;
}

.mv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 55px;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.mv__button--outline {
  border: 4px solid var(--main-color);
  background: #fff;
  color: var(--main-color);
}

.mv__button--fill {
  border: 4px solid #fff;
  background: var(--main-color);
  color: #fff;
}

.mv__button:hover,
.mv__button:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}

.mv__message-box {
  position: absolute;
  bottom: -80px;
  right: 54px;
  left: 54px;
  z-index: 2;
  padding: 20px 50px;
  border-radius: 25px;
  background: #f4eee8;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  opacity: 0;
  animation: slide-up 0.3s 0.8s ease-out forwards;
}

.mv__message {
  margin: 0;
  color: var(--font-black);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.mv__message span {
  color: var(--main-color);
}

/* =========================
   バナー
========================= */
.banner_area {
  width: fit-content;
  max-width: 1100px;
  margin: 65px auto;
}
.banner_area img {
  width: 100%;
  object-fit: contain;
}

/* =========================
   カレンダー
========================= */
.calender__inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #fff;
  padding: 40px 50px;
}
.calender__title {
  color: var(--font-black);
  font-size: 2.4rem;
  font-weight: bold;
}
.calender__box {
  width: 100%;
  margin: 40px auto 0;
}
.calender__box iframe {
  border: 0;
  width: 100%;
  height: 600px;
}
.calender__status {
  font-size: 1.6rem;
  display: flex;
  gap: 0 55px;
  margin-top: 20px;
}
.calender__status-item {
  padding-left: 40px;
  position: relative;
}
.calender__status-item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.calender__status-item.is-available::before {
  background-color: #ef6000;
}
.calender__status-item.is-unavailable::before {
  background-color: #2e2e2e;
}

/* =========================
   Next-selfとは？
========================= */
@keyframes draw-line {
  to {
    transform: scaleX(1);
  }
}
@keyframes pencil-visible {
  to {
    opacity: 1;
  }
}

.about-message {
  position: relative;
  padding: 40px 0 100px;
  background-color: #fff;
  overflow: hidden;
}
.about-message::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 80px);
  height: calc(100% - 40px);
  background-image: url("../images/about_back.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.03;
}

.about-message__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about-message__heading {
  position: relative;
  max-width: fit-content;
  margin: 0 auto;
  padding-top: 4px;
  color: var(--font-black);
}

.about-message__lead {
  position: relative;
  margin: 0 auto;
  padding: 0 40px 5px;
  width: fit-content;
  font-size: 2.4rem;
}

.about-message__heading.is-visible .about-message__lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: var(--font-black);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 0.8s ease-out forwards;
}

.about-message__title {
  position: relative;
  margin: 15px auto 0;
  padding: 0 40px 5px;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: bold;
}

.about-message__title span {
  color: var(--main-color);
}

.about-message__heading.is-visible .about-message__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background: var(--font-black);
  transform: scaleX(0);
  transform-origin: left;
  animation: draw-line 0.8s 0.8s ease-out forwards;
}

.about-message__heading.is-visible .about-message__title::after {
  content: "";
  position: absolute;
  top: 40%;
  right: -60px;
  width: 55px;
  height: 55px;
  background: url("../images/pencil.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
  opacity: 0;
  animation: pencil-visible 0.1s 1.6s ease-out forwards;
}

.about-message__intro {
  margin-top: 50px;
  position: relative;
  color: var(--font-black);
  font-size: 2rem;
  line-height: 2.4;
}
.about-message__intro::before {
  content: "";
  display: block;
  width: 202px;
  height: 234px;
  position: absolute;
  top: -40px;
  left: 45px;
  background-image: url("../images/about_logo1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.about-message__intro::after {
  content: "";
  display: block;
  width: 202px;
  height: 234px;
  position: absolute;
  bottom: -40px;
  right: 45px;
  background-image: url("../images/about_logo2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.about-message__intro strong {
  font-weight: bold;
}

.about-message__conclusion {
  margin-top: 30px;
}

.about-message__conclusion-lead {
  font-size: 2.4rem;
  font-weight: bold;
}

.about-message__conclusion-text {
  margin: 10px 0 0;
  font-size: 2.4rem;
  font-weight: normal;
}

.about-message__conclusion-text span {
  color: var(--main-color);
  font-weight: bold;
}

/* =========================
   ポイント！
========================= */
.points {
  padding: 80px 0 100px;
  background: #f4eee8;
}

.points__inner {
  max-width: 900px;
  margin: 0 auto;
}

.points__title {
  margin-bottom: 90px;
  text-align: center;
  color: var(--font-black);
  font-size: 2.4rem;
  font-weight: bold;
}

.points__title span {
  position: relative;
}
.points__title span::after {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  right: -60px;
  width: 50px;
  height: 92px;
  background: url("../images/point_logo.png") no-repeat center / contain;
}

.points__item {
  position: relative;
  margin-top: 50px;
}

.points__item:first-child {
  margin-top: 0;
}

.points__deco {
  position: absolute;
  z-index: 2;
}

.points__deco img {
  display: block;
  width: 100%;
  height: auto;
}

.points__deco--right-top {
  top: -30px;
  right: -50px;
  width: 190px;
}

.points__deco--left-middle {
  top: -55px;
  left: -85px;
  width: 167px;
}

.points__deco--right-bottom {
  top: -10px;
  right: 0;
  width: 140px;
}

.point-card {
  position: relative;
  z-index: 1;
  padding: 35px 50px;
  border-radius: 20px;
  background: #fff;
}

.point-card__number {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: bold;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.point-card__title {
  color: var(--font-black);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 55px;
}
.point-card__title span {
  position: relative;
  display: inline-block;
}
.point-card__title span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 22px;
  margin: 12px auto 0;
  background: url("../images/underline.png") no-repeat center / contain;
}
.point-card__title span::after {
  content: "";
  display: block;
  width: 38px;
  height: 55px;
  transform: rotate(20deg);
  background: url("../images/pencil.png") no-repeat center/ contain;
  position: absolute;
  right: -100px;
  top: 0;
}

.point-card__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  margin-top: 20px;
}

.point-card__image {
  margin: 0;
}

.point-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.point-card__body p {
  color: var(--font-black);
  font-size: 1.6rem;
  line-height: 2;
}

.point-card__body p + p {
  margin-top: 5px;
}

/* =========================
   代表メッセージ
========================= */
.message-section {
  padding: 55px 0;
}

.message-section__inner {
  max-width: 1260px;
  margin: 0 auto;
}

.message-card {
  padding: 25px 95px;
  border-radius: 20px;
  background: #fff;
}

.message-card__title {
  color: var(--font-black);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 55px;
}

.message-card__title span {
  position: relative;
  display: inline-block;
}

.message-card__title span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 195px;
  height: 15px;
  background: url("../images/underline.png") no-repeat center / contain;
}

.message-card__title span::after {
  content: "";
  display: block;
  width: 22px;
  height: 32px;
  transform: rotate(20deg);
  background: url("../images/pencil.png") no-repeat center/ contain;
  position: absolute;
  right: -50px;
  top: 20px;
}

.message-card__body p {
  color: var(--font-black);
  font-size: 1.6rem;
  line-height: 2;
}

.message-card__signature {
  margin-top: 30px;
  text-align: left;
  width: fit-content;
  margin-left: auto;
}

.message-card__signature-ja {
  color: var(--font-black);
  font-size: 1.6rem;
  font-weight: bold;
}

.message-card__signature-en {
  margin: 2px 0 0;
  color: var(--font-black);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}

/* =========================
   お問い合わせ
========================= */
.contact-section {
  position: relative;
  padding: 80px 0;
  background: #f4eee8;
  overflow: hidden;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-section__heading {
  margin: 0 auto 50px;
  text-align: center;
}

.contact-section__title {
  color: var(--font-black);
  font-size: 2.4rem;
  font-weight: bold;
}

.contact-section__title br {
  display: none;
}

.contact-section__title span {
  position: relative;
  display: inline-block;
}

.contact-section__title span::before,
.contact-section__title span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 左 */
.contact-section__title span::before {
  left: -45px;
  background-image: url("../images/lines_right.png");
}

/* 右 */
.contact-section__title span::after {
  right: -45px;
  background-image: url("../images/lines_left.png");
}

.contact-section__lead {
  margin: 45px 0 0;
  color: var(--font-black);
  font-size: 1.6rem;
  line-height: 2;
}

.contact-section__lead p {
  margin: 0;
}

.contact-section__lead p + p {
  margin-top: 15px;
}

.contact-section__deco {
  position: absolute;
  z-index: 0;
}

.contact-section__deco img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-section__deco.glass {
  width: 230px;
  top: 50px;
  left: 40px;
}

.contact-section__deco.book {
  width: 88px;
  top: 320px;
  left: 40px;
}

.contact-section__deco.comment {
  width: 126px;
  top: 500px;
  left: 60px;
}

.contact-section__deco.book2 {
  width: 156px;
  top: 720px;
  left: 40px;
}

.contact-section__deco.pencil {
  width: 70px;
  top: 1150px;
  left: 40px;
}

.contact-section__deco.pencil2 {
  width: 70px;
  top: 50px;
  right: 40px;
}

.contact-section__deco.check {
  width: 70px;
  top: 320px;
  right: 40px;
}

.contact-section__deco.triangle {
  width: 88px;
  top: 500px;
  right: 60px;
}

.contact-section__deco.book3 {
  width: 156px;
  top: 720px;
  right: 40px;
}

.contact-section__deco.book4 {
  width: 156px;
  top: 920px;
  right: 40px;
}

/* Contact Form 7 全体 */
.contact-section__form {
  padding: 70px 100px;
  background: #fff;
  font-size: 1.6rem;
}
.contact-section__form br {
  display: none;
}

.form__title {
  display: block;
  font-weight: bold;
  margin: 25px 0 10px;
}

.form__title span:not(.title-contactform7) {
  font-size: 1.2rem;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
  margin-left: 10px;
  display: inline-block;
}
.form__title .required {
  background-color: #e93737;
}
.form__title .any {
  background-color: #888888;
}
.wpcf7-turnstile {
  margin: 10px 0;
}
.form__text-supplement {
  color: #6f6f6f;
  margin-top: 10px;
}

.contact-section__form .wpcf7-list-item {
  margin: 0 25px 0 0;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}

.contact-section__form .wpcf7-list-item label {
  display: flex;
  align-items: center;
}

.contact-section__form .wpcf7 input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--main-color);
  cursor: pointer;
  margin: 0 10px 0 0;
}

.form__privacypolicy {
  margin-top: 60px;
  text-align: center;
}
.form__privacypolicy p + p {
  margin-top: 10px;
}
.form__privacypolicy a {
  color: var(--main-color);
}

.contact-section__form .submit__btn {
  margin-top: 60px;
  text-align: center;
}

.contact-section button,
.contact-section input[type="submit"] {
  position: relative;
  padding: 15px 60px;
  border: 0;
  background: var(--main-color);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  appearance: none;
}

.contact-section button::after {
  content: ">";
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%) scale(1);
  width: 25px;
  height: 25px;
  background: #fff;
  border-radius: 50%;
  border: solid 1px var(--main-color);
  color: var(--main-color);
}

.contact-section input[type="submit"]:hover,
.contact-section input[type="submit"]:focus-visible,
.contact-section button:hover,
.contact-section button:focus-visible {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* テキスト入力共通 */
.contact-section .wpcf7 input[type="text"],
.contact-section .wpcf7 input[type="email"],
.contact-section .wpcf7 input[type="tel"],
.contact-section .wpcf7 input[type="number"],
.contact-section .wpcf7 input[type="url"],
.contact-section .wpcf7 select,
.contact-section .wpcf7 textarea {
  width: 100%;
  border: 2px solid #d4d4d4;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.5;
  appearance: none;
}

.contact-section .wpcf7 input[type="text"],
.contact-section .wpcf7 input[type="email"],
.contact-section .wpcf7 input[type="tel"],
.contact-section .wpcf7 input[type="number"],
.contact-section .wpcf7 input[type="url"],
.contact-section .wpcf7 select {
  height: 40px;
  padding: 0 12px;
}

.contact-section .wpcf7 textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.contact-section .wpcf7 input[type="text"]:focus,
.contact-section .wpcf7 input[type="email"]:focus,
.contact-section .wpcf7 input[type="tel"]:focus,
.contact-section .wpcf7 input[type="number"]:focus,
.contact-section .wpcf7 input[type="url"]:focus,
.contact-section .wpcf7 select:focus,
.contact-section .wpcf7 textarea:focus {
  border-color: var(--main-color);
  outline: none;
}

/* プレースホルダー */
.contact-section .wpcf7 input::placeholder,
.contact-section .wpcf7 textarea::placeholder {
  color: #999;
}

/* エラー表示 */
.contact-section .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--main-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.contact-section .wpcf7 form.invalid .wpcf7-response-output,
.contact-section .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-section .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 1.3rem;
  line-height: 1.7;
}

/* ======プライバシーポリシー========= */
.contact-section .contact-modal__close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #1f4878;
  border-radius: 50%;
  background: #fff;
  color: #1f4878;
  font-size: 2.4rem;
  cursor: pointer;
}

.contact-section .contact-modal__close-btn:hover,
.contact-section .contact-modal__close-btn:focus-visible {
  background: #f0f6fb;
  transform: none;
}
.contact-section .contact-modal__close-btn::after {
  display: none;
}

/* ======確認画面========= */
.u-hidden {
  display: none;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-modal__content {
  position: absolute;
  box-sizing: border-box;
  inset: 0;
  width: 100%;
  max-width: 850px;
  height: fit-content;
  max-height: 85%;
  background: #edf6fa;
  margin: auto;
  padding: 50px 30px;
  border-radius: 20px;
  overflow-y: auto;
}

.contact-modal__title {
  text-align: center;
  color: #1f4878;
  font-size: 2.4rem;
  width: fit-content;
  border-bottom: solid 1px #000;
  padding-bottom: 10px;
  margin: 0 auto;
}
.contact-modal__title.complete {
  position: relative;
  border-bottom: none;
  padding-bottom: 0;
}

.contact-modal__title.complete::before,
.contact-modal__title.complete::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 2px;
  background: #1f4878;
}

.contact-modal__title.complete::before {
  left: -26px;
  transform: translateY(-50%) rotate(58deg);
}

.contact-modal__title.complete::after {
  right: -26px;
  transform: translateY(-50%) rotate(-58deg);
}

.contact-modal__message {
  font-size: 1.6rem;
  margin: 30px auto;
  text-align: center;
  line-height: 2;
}

.confirm-list {
  background-color: #fff;
  padding: 50px;
  margin: 30px auto 50px;
  font-size: 1.6rem;
}

.confirm-list dt {
  font-weight: bold;
}

.confirm-list dt:not(:first-child) {
  margin-top: 15px;
}

.confirm-list dd {
  margin: 5px 0 0 20px;
  white-space: pre-wrap;
}

.is-modal-open {
  overflow: hidden;
}

.contact-modal__actions {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.contact-modal__actions button::after {
  border: solid 1px #1f4878;
  color: #1f4878;
}

.contact-modal__actions button.js-modal-close {
  color: #1f4878;
  background-color: #fff;
  border: 1px solid #1f4878;
}

.contact-modal__actions button.js-confirm-submit {
  background-color: #1f4878;
}

.contact-modal__actions.complete button {
  border-radius: 50pc;
  border: solid 3px #1f4878;
  color: #1f4878;
  background-color: #fff;
}
.contact-modal__actions.complete button::after {
  display: none;
}

/* =========================
   よくある質問
========================= */
.faq-section {
  padding: 70px 0;
}

.faq-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section__header {
  text-align: center;
}

.faq-section__title {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  color: var(--font-black);
  font-size: 2.4rem;
  font-weight: bold;
}

.faq-section__title::before,
.faq-section__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--font-black);
}

.faq-section__title::before {
  left: 0;
  transform: translateY(-50%) rotate(58deg);
}

.faq-section__title::after {
  right: 0;
  transform: translateY(-50%) rotate(-58deg);
}

.faq-section__lead {
  margin: 65px 0 0;
  color: var(--font-black);
  font-size: 1.6rem;
  font-weight: bold;
}

.faq-section__lead br {
  display: none;
}

.faq-list {
  margin-top: 40px;
}

.faq-card {
  margin-top: 30px;
  padding: 35px;
  border: 2px solid var(--font-black);
  border-radius: 10px;
  background: #fff;
}

.faq-card:first-child {
  margin-top: 0;
}

.faq-card__row {
  display: flex;
  align-items: flex-start;
  gap: 34px;
}

.faq-card__row + .faq-card__row {
  margin-top: 20px;
}

.faq-card__icon {
  display: inline-flex;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: bold;
  box-sizing: border-box;
}

.faq-card__icon--question {
  border: 2px solid var(--font-black);
  background: #fff;
  color: var(--font-black);
}

.faq-card__icon--answer {
  background: var(--main-color);
  color: #fff;
}

.faq-card__text {
  color: var(--font-black);
  font-size: 1.6rem;
  line-height: 2;
}

/* =========================
   お問い合わせへ
========================= */
.contact-cta {
  padding: 50px 0;
  background: #f4eee8;
}

.contact-cta__inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  background:
    url("../images/comment.png") left 50px top 10%,
    url("../images/book3.png") left 210px bottom 35%,
    url("../images/book2.png") right 210px top 10%,
    url("../images/pencil.png") right 40px bottom 35%;
  background-size:
    120px auto,
    160px auto,
    160px auto,
    70px auto;
  background-repeat: no-repeat;
}

.contact-cta__title {
  color: var(--font-black);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.contact-cta__title span {
  position: relative;
}

.contact-cta__title span::before,
.contact-cta__title span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 30px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 左 */
.contact-cta__title span::before {
  left: -45px;
  background-image: url("../images/lines_right.png");
}

/* 右 */
.contact-cta__title span::after {
  right: -45px;
  background-image: url("../images/lines_left.png");
}

.contact-cta__button-wrap {
  margin-top: 50px;
  text-align: center;
}

.contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 80px;
  border-radius: 50px;
  background: var(--main-color);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.contact-cta__button:hover,
.contact-cta__button:focus-visible {
  opacity: 0.9;
  transform: translateY(-1px);
}
