.c-page-cta {
  margin-top: 30px;
}

.c-page-cta-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

.c-page-cta__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.c-page-cta__tel {
  text-align: center;
}

.c-page-cta__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-page-cta__tel-link:hover {
  opacity: 0.7;
}

.c-page-cta__tel-icon {
  width: 36px;
  height: 36px;
}

.c-page-cta__tel-number {
  margin-top: 0;
  margin-bottom: 12px;
}

.c-page-cta__tel-img {
  width: 334px;
}

.c-page-cta__tel-note {
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
  color: var(--color-text);
}

.c-page-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.c-page-cta__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border: 2px solid var(--color-text);
  text-decoration: none;
  background-color: var(--color-white);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 16px 28px;
  border-radius: 4px;
  width: 260px;
}
.c-page-cta__btn:hover span {
  color: #fff;
}
.c-page-cta__btn.c-page-cta__btn--mail:hover {
  background-color: #1A73B4;
  border-color: #1A73B4;
}
.c-page-cta__btn.c-page-cta__btn--line:hover {
  background-color: #3ACC00;
  border-color: #3ACC00;
}

.c-page-cta__btn-icon-wrap {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 48px;
}

.c-page-cta__btn-icon {
  width: 48px;
  height: 48px;
}
.c-page-cta__btn-icon--hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-page-cta__btn:hover .c-page-cta__btn-icon--hover {
  opacity: 1;
}

.c-page-cta__btn-arrow-wrap {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.c-page-cta__btn-arrow--hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-page-cta__btn:hover .c-page-cta__btn-arrow--hover {
  opacity: 1;
}

.c-page-cta__btn-text {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.2;
}

.c-page-cta__btn-text-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.c-page-cta__btn-arrow {
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.p-page-lead {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .c-page-cta .c-page-cta__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-page-cta .c-page-cta__tel {
    margin-inline: auto;
  }
  .c-page-cta .c-page-cta__tel-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-page-cta .c-page-cta__btn-icon-wrap,
  .c-page-cta .c-page-cta__tel-icon {
    width: 32px;
    height: 32px;
  }
  .c-page-cta .c-page-cta__tel-number {
    margin-bottom: 4px;
  }
  .c-page-cta .c-page-cta__tel-img {
    width: auto;
    height: 36px;
  }
  .c-page-cta .c-page-cta__tel-note {
    font-size: 14px;
  }
  .c-page-cta .c-page-cta__buttons {
    width: 100%;
    gap: 4px;
  }
  .c-page-cta .c-page-cta__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 1%;
    border-radius: 6px;
    gap: 8px;
  }
  .c-page-cta .c-page-cta__btn-icon {
    width: 34px;
    height: 34px;
  }
  .c-page-cta .c-page-cta__btn-text {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: clamp(11px, 2.8vw, 14px);
    text-align: center;
  }
  .c-page-cta .c-page-cta__btn-text-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .c-page-cta .c-page-cta__banners {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 4px;
  }
  .c-page-cta .c-page-cta__banner-wrap {
    overflow: visible;
  }
  .c-page-cta .c-page-cta__banner-link {
    height: auto;
    min-height: 80px;
    padding: 12px 48px 12px 80px;
    gap: 8px;
  }
  .c-page-cta .c-page-cta__banner-link--orange .c-page-cta__banner-illust {
    left: 14px;
  }
  .c-page-cta .c-page-cta__banner-link--orange .c-page-cta__banner-illust-img {
    width: 54px;
  }
  .c-page-cta .c-page-cta__banner-link--green .c-page-cta__banner-illust {
    left: 26px;
    bottom: 13px;
  }
  .c-page-cta .c-page-cta__banner-link--green .c-page-cta__banner-illust-img {
    width: 49px;
  }
  .c-page-cta .c-page-cta__banner-lead {
    font-size: 13px;
    line-height: 1.3;
  }
  .c-page-cta .c-page-cta__banner-lead strong {
    font-size: 14px;
  }
  .c-page-cta .c-page-cta__banner-body {
    gap: 8px;
  }
  .c-page-cta .c-page-cta__banner-detail {
    font-size: 12px;
    gap: 4px;
  }
  .c-page-cta .c-page-cta__banner-free {
    width: 34px;
  }
  .c-page-cta .c-page-cta__banner-keyword {
    font-size: 16px;
    padding: 1px 6px;
  }
  .c-page-cta .c-page-cta__banner-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 28px;
    height: 28px;
  }
}
.c-box02,
.c-box03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.c-box02__head > :first-child,
.c-box02__detail > :first-child,
.c-box03__head > :first-child,
.c-box03__detail > :first-child {
  margin-top: 0 !important;
}
.c-box02__head > :last-child,
.c-box02__detail > :last-child,
.c-box03__head > :last-child,
.c-box03__detail > :last-child {
  margin-bottom: 0 !important;
}

.c-box02 {
  margin-top: 40px;
  padding: 40px;
  background-color: #FFF7DD;
  border-radius: 20px;
}

.c-box02--small {
  padding: 24px;
}

.c-box02__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-box02__detail {
  line-height: 1.5;
}

.c-box02__title {
  line-height: 1.5;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
}

.c-box02__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.c-box02__columns > .c-box03 {
  margin-top: 0;
}

.c-box03 {
  gap: 16px;
  margin-top: 40px;
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 20px;
}

.c-box03--small {
  padding: 30px 44px;
}

.c-box03__detail :where(p) {
  line-height: 1.5;
}

.c-box03__title {
  margin: 32px 0 16px;
  padding: 4px 14px;
  line-height: 1.5;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  background-color: #FFF7DD;
  border-left: 2px solid var(--color-accent);
}

.c-box03__media,
.wp-block-media-text.c-box03__media {
  gap: 20px;
}

.c-accent-title,
.c-accent-title02 {
  margin: 20px 0 0;
  line-height: 1.5;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
}
.c-accent-title > span,
.c-accent-title02 > span {
  position: relative;
  display: inline-block;
  padding: 0 44px;
}
.c-accent-title > span::before, .c-accent-title > span::after,
.c-accent-title02 > span::before,
.c-accent-title02 > span::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  width: 24px;
  height: 2px;
  background-color: #282828;
}
.c-accent-title > span::before,
.c-accent-title02 > span::before {
  left: 1px;
  -webkit-transform: rotate(75deg);
          transform: rotate(75deg);
}
.c-accent-title > span::after,
.c-accent-title02 > span::after {
  right: 1px;
  -webkit-transform: rotate(105deg);
          transform: rotate(105deg);
}

.c-accent-title02 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
}
.c-accent-title02 > span {
  padding: 0 32px;
}

.c-simple-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 20px 0 0;
  padding: 0;
}
.c-simple-list > li {
  position: relative;
  padding-left: 15px;
  list-style: none;
  line-height: 1.6;
  font-size: 16px;
  font-size: 1.6rem;
}
.c-simple-list > li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 3px;
  width: 4px;
  height: 4px;
  background-color: #282828;
  border-radius: 3px;
}

.c-lead {
  margin-top: 1.7em;
  line-height: 1.8;
  font-size: 18px;
  font-size: 1.8rem;
}

.u-text-proportional {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.c-button-v2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px;
  margin-top: 42px;
}

.c-button-v2 {
  position: relative;
}
.c-button-v2::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 4px;
  z-index: 1;
}

.c-button-v2__type {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  padding: 17px 59px;
  min-width: 400px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  background-color: #FF5E32;
  border: 1px solid #282828;
  border-radius: 4px;
  z-index: 2;
  -webkit-transition: top 0.15s ease, left 0.15s ease;
  transition: top 0.15s ease, left 0.15s ease;
}
.c-button-v2__type:hover {
  top: 4px;
  left: 4px;
}
.c-button-v2__type::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 26px;
  width: 20px;
  height: 20px;
  z-index: 2;
  background: url(../img/common/icon-arrow-circle-arrow-white.svg) no-repeat 0 0/contain;
}
.c-button-v2__type.c-button-v2__type--anc::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 767px) {
  .c-box02 {
    gap: 24px;
    padding: 24px;
  }
  .c-box02__columns {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 40px;
  }
  .c-box03 {
    padding: 16px;
  }
  .wp-block-media-text.c-box03__media .wp-block-media-text__media {
    margin-left: auto;
    margin-right: auto;
    max-width: 167px;
  }
  .c-accent-title02 > span {
    display: block;
    padding: 0 22px;
  }
  .c-accent-title02 > span::before {
    left: -9px;
  }
  .c-accent-title02 > span::after {
    right: -9px;
  }
  .c-simple-list > li {
    padding-left: 22px;
  }
  .c-simple-list > li::before {
    left: 8px;
  }
  .c-button-v2 {
    width: 100%;
  }
  .c-button-v2__type {
    padding: 17px 50px 17px 20px;
    min-width: auto;
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
  }
  .c-button-v2__type::after {
    right: 19px;
  }
}