@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #070707;
}

body {
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
html {
  /* ベースのフォントサイズ */
  font-size: 16px;
  /* スマートフォン 375px以下 */
  /* タブレット 376px~inner */
  /* PC inner以上 */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input:not([type=checkbox]):not([type=radio]):not([type=submit]),
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

.btn {
  display: inline-block;
  position: relative;
  position: relative;
  max-width: 100%;
  padding-inline: 1.5rem 3.25rem;
  padding-block: 1.125rem;
  border: 1px solid #fffb00;
  border-radius: 2.125rem;
  background-color: #fffb00;
  color: #0d63a9;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  line-height: 1.25;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn.btn--submit {
  padding: 0;
  border: none;
  background-color: none;
  color: #ffffff;
  -webkit-filter: drop-shadow(4.608px 4.608px 9.216px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(4.608px 4.608px 9.216px rgba(0, 0, 0, 0.25));
}

.btn::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1.25rem;
  height: 1.25rem;
  translate: 0 -50%;
  border: 1px solid #0d63a9;
  background-color: #0d63a9;
  content: "";
  -webkit-mask-image: url(../images/btn_arrow.svg);
          mask-image: url(../images/btn_arrow.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn.btn--submit::before {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
}
/* ================================================
           Block: contact-form
================================================ */
.contact-form {
  margin-top: 2.5rem;
  padding: 1.5rem 1rem;
  border-radius: 1.25rem;
  background: #fffbfb;
}

/* ================================================
           Element: contact-form__field
================================================ */
.contact-form__field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.contact-form__field:not(:first-child) {
  margin-top: 1.75rem;
}

.contact-form__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}

.contact-form__input-wrapper {
  margin: 0;
}

/* ================================================
           Element: contact-form__required
           ================================================ */
.contact-form__required {
  min-width: 3rem;
  padding: 0.3125rem 0.5rem;
  border-radius: 0.25rem;
  background: #e1f2ff;
  color: #0d63a9;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
}

/* ================================================
           Element: contact-form__input, contact-form__textarea
           ================================================ */
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 0.625rem;
  border: 1px solid #d0e9f6 !important;
  border-radius: 0.3125rem !important;
  background: #fffbfb;
  font-size: 1rem;
  line-height: 1.875;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: #5a9fd4;
  outline: none;
}

.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: #a2a2a2;
}

.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #a2a2a2;
}

.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: #a2a2a2;
}

.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: #a2a2a2;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #a2a2a2;
}

.contact-form__textarea {
  min-height: 20.875rem;
  resize: vertical;
}

/* ================================================
           Element: contact-form__radio-group
           ================================================ */
.wpcf7-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  cursor: pointer;
}

.wpcf7-list-item input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  accent-color: #0d63a9;
}

.wpcf7-spinner {
  display: none;
}

/* ================================================
           Element: contact-form__consent
           ================================================ */
.contact-form__consent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

.wpcf7-list-item-label {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875;
}

.contact-form__consent-input {
  width: 1.0625rem;
  height: 1.0625rem;
  margin-right: 1rem;
  border: 2px solid #d0e9f6;
  accent-color: #0d63a9;
}

.contact-form__required.contact-form__required--consent {
  margin-left: 1rem;
  margin-left: 0.625rem;
}

/* ================================================
           Element: contact-form__submit
           ================================================ */
.contact-form__submit {
  margin-top: 1.5rem;
  text-align: center;
}

.contact-form__submit input {
  min-width: 17rem;
  padding: 1.125rem 3.9375rem;
  border: 1px solid #0d63a9;
  border-radius: 3.4375rem;
  background-color: #0d63a9;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.375rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ================================================
           Element: contact-form__notice
           ================================================ */
.contact-form__caution {
  margin-top: 2rem;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.03em;
  text-align: center;
}

.contact-form__caution a {
  color: #070707;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ================================================
           Contact Form 7 Error/Success Messages
           ================================================ */
.wpcf7-not-valid-tip {
  margin-top: 4px;
  color: #e74c3c;
  font-size: 12px;
}

.wpcf7-validation-errors {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #fed7d7;
  border-radius: 8px;
  background: #fff5f5;
  color: #e53e3e;
}

.wpcf7-mail-sent-ok {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #9ae6b4;
  border-radius: 8px;
  background: #f0fff4;
  color: #38a169;
}

/* 
お問い合わせ関係 */
/* メッセージが空のときは完全非表示にしておく */
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

/* エラーや成功時にだけ見せたい場合のスタイル例 */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 2px solid #ffb900; /* 黄 */
  background: #fffbe6;
  color: #333;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 2px solid #46b450; /* 緑 */
  background: #f1fff5;
  color: #065f3c;
}

/* ================================================
           Block: contact-section
================================================ */
.contact-section {
  padding-block: 3.0625rem 3.5rem;
  background-color: #e1f2ff;
}

.section-title.contact-section__title {
  text-align: center;
}

.cta-banner-second {
  margin-top: 3rem;
}

.cta-banner {
  position: relative;
  padding-top: 4rem;
  padding-block: 2.25rem;
  overflow: hidden;
  background-image: url(../images/cta_bg_sp.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
}

.cta-banner__content {
  margin-bottom: 1.25rem;
}

.cta-banner__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
}

.cta-banner__text {
  display: inline-block;
  position: relative;
  margin-top: 1rem;
  padding-inline: 0.8125rem;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.4583333333;
}
.cta-banner__text::before, .cta-banner__text::after {
  position: absolute;
  bottom: -0.125rem;
  width: 0.8125rem;
  height: 1.8125rem;
  background-image: url(../images/cta_title.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.cta-banner__text::before {
  left: -0.375rem;
}
.cta-banner__text::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.cta-banner__button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  margin-inline: auto;
}
.cta-banner__button::before, .cta-banner__button::after {
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.cta-banner__button::before {
  top: -2.6875rem;
  left: -0.9375rem;
  width: 3.5625rem;
  height: 2.6875rem;
  background-image: url(../images/cta_left.svg);
}
.cta-banner__button::after {
  top: -1.875rem;
  right: -0.625rem;
  width: 3.5rem;
  height: 2.6875rem;
  background-image: url(../images/cta_right.svg);
}

.cta-fixed-banner.cta-fixed-banner--active {
  opacity: 1;
}
.feature-points {
  margin-top: -10.8125rem;
  padding-bottom: 3.5625rem;
  background-image: url(../images/feature_points_bg.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.inner.feature-points__inner {
  width: 95.5223880597%;
  padding-top: 10rem;
}

.feature-points__lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5rem;
  margin-inline: auto;
  padding-inline: 3.3125rem;
  padding-block: 0.5rem;
  border-radius: 2rem;
  background-color: #0d63a9;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  text-align: center;
}

.feature-points__list {
  display: grid;
  row-gap: 4.375rem;
  width: 95.5223880597%;
  margin-top: 4.5625rem;
  margin-inline: auto;
}

.fv {
  aspect-ratio: 393/622;
  height: 100%;
}

.fv img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-padding-top: 6.5625rem;
}

.header {
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 6.5625rem;
  background-color: #0d63a9;
}

.header__info-bar {
  height: 4.625rem;
  padding-block: 1.1875rem;
}

.inner.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
}

.header__logo {
  max-width: 11.375rem;
}

.header__tel {
  position: relative;
  -webkit-padding-start: clamp(1.5rem, 1.593625498vw, 2rem);
          padding-inline-start: clamp(1.5rem, 1.593625498vw, 2rem);
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.3280212483vw, 2rem);
  line-height: 1.4;
  text-align: center;
}
.header__tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(1rem, 1.0624169987vw, 1.5rem);
  height: clamp(1rem, 1.0624169987vw, 1.5rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/tel.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.header__nav-item:not(:last-child) {
  position: relative;
}
.header__nav-item:not(:last-child)::before {
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 0.0625rem;
  height: 2.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/header_line.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
}

.header__nav-sp-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}

.header__nav-sp-item:not(:last-child) {
  position: relative;
  padding-right: 1rem;
}
.header__nav-sp-item:not(:last-child)::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.0625rem;
  height: 2.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/header_line.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ffffff;
  content: "";
}

.header__nav-sp-item img {
  width: 2rem;
}

.header__under {
  padding-block: 0.3125rem;
  background-color: #ffffff;
  color: #0d63a9;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.inner {
  width: 100%;
  max-width: rrem(480);
  margin-inline: auto;
  padding-inline: 20px;
}

.notice-feature {
  width: 95.5223880597%;
  margin-top: 3.4375rem;
  margin-inline: auto;
  padding-inline: 2rem;
  padding-block: 2rem 1rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
}

.notice-feature__icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.notice-feature__content {
  text-align: center;
}

.notice-feature__label {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 1rem;
  color: #0d63a9;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.375;
}
.notice-feature__label::before, .notice-feature__label::after {
  position: absolute;
  top: 50%;
  width: 0.9375rem;
  height: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/notice_label.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.notice-feature__label::before {
  left: 0;
}
.notice-feature__label::after {
  right: 0;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}

.notice-feature__title {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background-color: #0d63a9;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.5rem;
}

.notice-feature__text {
  margin-top: 1rem;
  color: #0d63a9;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: left;
}

.notice-feature__image {
  display: inline-block;
  max-width: 14.375rem;
  margin-top: 1.375rem;
  margin-inline: auto;
}

.notice-feature__image img {
  max-width: 14.375rem;
  margin-inline: auto;
}

.point-card {
  position: relative;
  border-radius: 8px;
}
.point-card::before {
  z-index: 1;
  position: absolute;
  top: -2.25rem;
  left: 0;
  width: 4.5625rem;
  height: 5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.point-card.point-card--1::before {
  background-image: url(../images/point01_sp.png);
}

.point-card.point-card--2::before {
  background-image: url(../images/point02_sp.png);
}

.point-card.point-card--3::before {
  background-image: url(../images/point03_sp.png);
}

.point-card.point-card--4::before {
  background-image: url(../images/point04_sp.png);
}

.point-card__image {
  border-radius: 8px 8px 0px 0px;
}

.point-card__image img {
  aspect-ratio: 320/224;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px 8px 0px 0px;
}

.point-card__body {
  padding-inline: 2rem;
  padding-block: 2rem;
  border-radius: 0px 0px 8px 8px;
  background-color: #ffffff;
  color: #0d63a9;
}

.point-card__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.375;
}

.point-card__text {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.point-card__text.point-card__text--small {
  font-size: 1rem;
}

.point-card__label {
  margin-top: 1.5rem;
  padding-inline: 1rem;
  padding-block: 1rem;
  background-color: #e1f2ff;
  font-size: 1rem;
  line-height: 1.1111111111;
}

.point-card__label.point-card__label--ribbon {
  position: relative;
  width: 100%;
  padding-block: 0.25rem;
  border-radius: 4px 4px 0px 4px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.point-card__label.point-card__label--ribbon::before {
  position: absolute;
  right: 0;
  bottom: -0.6875rem;
  width: 1.125rem;
  height: 0.6875rem;
  background-color: #57a5c2;
  content: "";
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.price-block {
  margin-top: 3.5rem;
}

.price-block__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 95.5223880597%;
  margin-top: 2.5rem;
  margin-inline: auto;
  gap: 2rem;
}

.price-block__title {
  display: inline-block;
  width: 100%;
  padding-block: 0.5rem;
  border-radius: 5rem;
  background-color: #0d63a9;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
}

.price-block__body {
  margin-top: 1rem;
}

.price-block__item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.price-block__highlight {
  color: #0d63a9;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.375;
}

.price-block__highlight strong {
  padding-inline: 0.5rem;
  background-color: #fffb00;
}

.price-block__text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.price-block__item.price-block__item--01 .price-block__text {
  margin-top: 0.4375rem;
}

.price-block__item.price-block__item--03 .price-block__text {
  margin-top: 0.875rem;
}

.price-block__sub-title {
  position: relative;
  margin-top: 1.5rem;
  padding-inline: 3.875rem;
  color: #0d63a9;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
.price-block__sub-title::before, .price-block__sub-title::after {
  display: inline;
  position: absolute;
  top: 50%;
  width: 4.6875rem;
  height: 0.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #0d63a9;
  content: "";
}
.price-block__sub-title::before {
  right: auto;
  left: 0;
}
.price-block__sub-title::after {
  right: 0;
  left: auto;
}

.price-block__image01 {
  max-width: 8.75rem;
  margin-inline: auto;
}

.price-block__image02 {
  max-width: 4.5625rem;
  margin-inline: auto;
}

.price-block__item--01 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.price-block__item--02 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.price-block__item--03 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.price-block__item--04 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}

.cta-fixed-banner.cta-fixed-banner--active {
  opacity: 1;
}
/* ================================================
           Block: privacy-policy
================================================ */
.privacy-policy {
  max-height: 27.1875rem;
  margin-top: 1.875rem;
  padding: 1.5rem;
  overflow-y: auto;
  border: 2px solid #d0e9f6;
  border-radius: 8px;
}
.privacy-policy::-webkit-scrollbar {
  width: 8px;
}
.privacy-policy::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #d0e9f6;
}
.privacy-policy::-webkit-scrollbar-track {
  border-radius: 8px;
  background: #f5f5f5;
}

.privacy-policy__title {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
}

.privacy-policy__lead {
  margin-top: 0.625rem;
  font-weight: 400;
}

.privacy-policy__content {
  display: grid;
  row-gap: 0.625rem;
  margin-top: 1.5rem;
}

.privacy-policy__heading {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}

.privacy-policy__text {
  margin-top: 0.4375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
}

.privacy-policy__notice {
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
}

.privacy-policy__sublist {
  display: grid;
  row-gap: 0.375rem;
  margin-top: 0.625rem;
  padding-left: 0.625rem;
}

.privacy-policy__subitem {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

.question__title {
  margin-top: 1.3125rem;
  color: #0d63a9;
  text-align: center;
}

.question__title-lead {
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.375;
}
.question__title-lead::before, .question__title-lead::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.question__title-lead::before {
  left: -1.6875rem;
  width: 1.25rem;
  height: 1.375rem;
  background-image: url(../images/question_title_left.svg);
}
.question__title-lead::after {
  right: -1.9375rem;
  width: 1.75rem;
  height: 1.625rem;
  background-image: url(../images/question_title_right.svg);
}

.question__emphasis {
  display: block;
  margin-top: 0.625rem;
  font-size: 1.875rem;
  line-height: 1.1666666667;
}

.question__options {
  display: grid;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  margin-inline: auto;
  gap: 1.5rem;
}
.question__options::before, .question__options::after {
  position: absolute;
  bottom: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.question__options::before {
  left: -6.0625rem;
  width: 5.75rem;
  height: 7.9375rem;
  background-image: url(../images/question_man.png);
}
.question__options::after {
  right: -6.375rem;
  width: 6.75rem;
  height: 7.625rem;
  background-image: url(../images/question_woman.png);
}

.question__option {
  position: relative;
}

.question__option-img {
  aspect-ratio: 148/48;
}

.question__option-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.question__option-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #0d63a9;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.375;
  letter-spacing: 0.05em;
  text-align: center;
}

.question__alert {
  position: relative;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.25rem;
  margin-inline: auto;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
}
.question__alert::before {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  width: 100%;
  height: 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fffb00;
  content: "";
}

.question__alert-text-strong {
  font-size: 1.625rem;
  line-height: 1.3461538462;
}

.question__description {
  max-width: 20.75rem;
  margin-top: 1.3125rem;
  margin-inline: auto;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: left;
}

.section-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 1.8125rem;
  color: #0d63a9;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.3666666667;
}
.section-title::before, .section-title::after {
  position: absolute;
  top: 40%;
  width: 1.4375rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.section-title::before {
  left: 0;
  background-image: url(../images/heading_left.svg);
}
.section-title::after {
  right: 0;
  background-image: url(../images/heading_right.svg);
}

.section-title.section-title--no-icon::before, .section-title.section-title--no-icon::after {
  display: none;
}

.site-footer {
  padding-block: 3.5rem 7.75rem;
  background-color: #ffffff;
  text-align: center;
}

.site-footer__logo img {
  max-width: 15.875rem;
  height: auto;
  margin-bottom: 1.5rem;
  margin-inline: auto;
}

.site-footer__info {
  margin-top: 2.3125rem;
}

.site-footer__info-inner {
  display: grid;
  row-gap: 0.5rem;
  margin-top: 0.5rem;
}

.site-footer__company {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 0.75;
}

.site-footer__text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7777777778;
}

.top-section {
  z-index: -1;
  position: relative;
  width: 100%;
  padding-bottom: 6.75rem;
  overflow: clip;
  background-image: url(../images/bg_sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.voice-block {
  padding-block: 3.5625rem;
  background-color: #e1f2ff;
}

.voice-block__list {
  display: grid;
  width: 95.5223880597%;
  margin-top: 4rem;
  margin-inline: auto;
  gap: 5rem;
}

.voice-card {
  position: relative;
  padding: 0 2rem 2rem 2rem;
  border-radius: 0.5rem;
  background-color: #ffffff;
}
.voice-card::before {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  width: 5rem;
  height: 5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.voice-card.voice-card--01::before {
  background-image: url(../images/voice01.png);
}

.voice-card.voice-card--02::before {
  background-image: url(../images/voice02.png);
}

.voice-card.voice-card--03::before {
  background-image: url(../images/voice03.png);
}

.voice-card.voice-card--04::before {
  background-image: url(../images/voice04.png);
}

.voice-card__head {
  margin-top: 3.75rem;
}

.voice-card__info {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
}

.voice-card__name {
  display: block;
  max-width: 5rem;
  margin-top: 0.25rem;
  margin-inline: auto;
  padding: 0.1875rem 0.375rem;
  border-radius: 2.5rem;
  background-color: #d5dc56;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8125rem;
  text-align: center;
}

.voice-card__info span {
  display: block;
  margin-top: 0.25rem;
  padding: 0.1875rem 0.375rem;
  border-radius: 2.5rem;
  background-color: #d5dc56;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.8125rem;
  text-align: center;
}

.voice-card__comments {
  margin-top: 1.125rem;
}

.voice-card__comment {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.9444444444;
  letter-spacing: 0em;
}

.voice-card__comment-strong {
  color: #0d63a9;
  font-weight: 600;
}

@media screen and (min-width: 768px){
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    font-size: 1.4814814815vw;
  }
  .btn {
    padding-inline: 2.25rem 4.5rem;
    padding-block: 1.5rem;
    border-radius: 4.6875rem;
    font-size: 1.75rem;
  }
  .btn.btn--header-cta {
    padding-inline: clamp(1rem, 1.0624169987vw, 1.5rem) 3rem;
    padding-block: 1rem;
    font-size: clamp(1rem, 1.0624169987vw, 1.25rem);
    line-height: 1.35;
  }
  .btn.btn--header-cta::before {
    width: clamp(1rem, 1.0624169987vw, 1.5rem);
    height: clamp(1rem, 1.0624169987vw, 1.5rem);
  }
  .btn::before {
    width: 2.25rem;
    height: 2.25rem;
  }
  .contact-form {
    margin-top: 3.375rem;
    padding: 4.25rem 10.625rem;
    border-radius: 1.875rem;
  }
  .contact-form__field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2.3125rem;
  }
  .contact-form__field.contact-form__field--comment {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact-form__label {
    width: 38.9189189189%;
  }
  .contact-form__input-wrapper {
    width: 56.0810810811%;
  }
  .contact-form__required {
    padding: 0.25rem 0.5rem;
    border-radius: 0.3125rem;
    font-size: 0.625rem;
  }
  .contact-form__input,
  .contact-form__textarea {
    padding: 0.3125rem 0.4375rem;
  }
  .wpcf7-radio {
    gap: 1.5rem;
  }
  .contact-form__consent {
    margin-top: 1.5rem;
  }
  .contact-form__submit {
    margin-top: 3rem;
  }
  .contact-form__caution {
    margin-top: 3rem;
    letter-spacing: 0.05em;
  }
  .contact-section {
    padding-block: 5.375rem;
  }
  .cta-banner-second {
    margin-top: 7rem;
  }
  .cta-banner {
    padding-block: 5.6875rem;
    background-image: url(../images/cta_bg.jpg);
  }
  .cta-banner__content {
    margin-bottom: 0;
  }
  .cta-banner__lead {
    font-size: 2.5rem;
    line-height: 1;
  }
  .cta-banner__text::before, .cta-banner__text::after {
    top: 50%;
    bottom: initial;
    width: 1rem;
    height: 2rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cta-banner__text::before {
    left: 0;
  }
  .cta-banner__text::after {
    -webkit-transform: translateY(-50%) scale(-1, 1);
            transform: translateY(-50%) scale(-1, 1);
  }
  .cta-banner__text {
    margin-top: 2rem;
    padding-inline: 1.5625rem;
    font-size: 1.5rem;
  }
  .cta-banner__button::before, .cta-banner__button::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cta-banner__button::before {
    top: 50%;
    left: -8.3125rem;
    width: 7.5rem;
    height: 6.25rem;
  }
  .cta-banner__button::after {
    top: 62%;
    right: -10rem;
    width: 7.6875rem;
    height: 8rem;
  }
  .cta-banner__button {
    margin-top: 2.5rem;
  }
  .feature-points {
    margin-top: -9.75rem;
    padding-bottom: 6.25rem;
    background-image: url(../images/feature_points_bg.png);
  }
  .inner.feature-points__inner {
    width: 100%;
    padding-top: 10.9375rem;
  }
  .feature-points__lead {
    margin-top: 1.125rem;
    padding-inline: 1.25rem 0.75rem;
    padding-block: 0.625rem;
    border-radius: 3.75rem;
    font-size: 1.5rem;
  }
  .feature-points__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 4.5625rem;
       -moz-column-gap: 4.5625rem;
            column-gap: 4.5625rem;
    row-gap: 7.3125rem;
    width: 100%;
    margin-top: 6.3125rem;
  }
  .fv {
    aspect-ratio: 1440/623;
  }
  html {
    scroll-padding-top: 7.5rem;
  }
  .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 7.5rem;
  }
  .header__info-bar {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: initial;
    padding-block: clamp(1rem, 1.0624169987vw, 1.5625rem);
  }
  .inner.header__inner {
    max-width: 94.125rem;
    padding-inline: 2.0625rem;
  }
  .header__logo {
    width: 17.3970783533%;
    max-width: 16.375rem;
  }
  .header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(2.5rem, 2.6560424967vw, 4rem);
  }
  .header__nav-item:not(:last-child)::before {
    right: clamp(-1.5rem, -1.593625498vw, -2rem);
    height: clamp(2.625rem, 2.7888446215vw, 5rem);
  }
  .header__nav-item.header__nav-item--tel {
    display: gird;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(0.5rem, 0.5312084993vw, 0.75rem);
  }
  .header__tel-time {
    display: block;
    padding-inline: clamp(0.5rem, 0.5312084993vw, 0.75rem);
    background-color: #ffffff;
    color: #0d63a9;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.796812749vw, 1rem);
    text-align: center;
  }
  .header__nav-item.header__nav-item--mail {
    position: relative;
    padding-left: clamp(1.5rem, 1.593625498vw, 2rem);
    color: #ffffff;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9296148738vw, 1.125rem);
    line-height: 1.8333333333;
  }
  .header__nav-item.header__nav-item--mail::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: clamp(1rem, 1.0624169987vw, 1.5rem);
    height: clamp(1rem, 1.0624169987vw, 1.5rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../images/mail.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  .inner {
    max-width: 1130px;
    padding-inline: 25px;
  }
  .notice-feature {
    width: 100%;
    margin-top: 5.125rem;
    padding-inline: 10.1875rem;
    padding-block: 3.125rem 4.125rem;
    border-radius: 1.25rem;
  }
  .notice-feature__icons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .notice-feature__content {
    position: relative;
  }
  .notice-feature__content::before, .notice-feature__content::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  .notice-feature__content::before {
    left: -4rem;
    width: 7.375rem;
    height: 12.875rem;
    background-image: url(../images/notice-feature_left.svg);
  }
  .notice-feature__content::after {
    right: -6.75rem;
    width: 11.0625rem;
    height: 11.5rem;
    background-image: url(../images/notice-feature_right.png);
  }
  .notice-feature__title {
    width: 19.875rem;
    padding-inline: 0.75rem;
    padding-block: 0.5rem;
  }
  .notice-feature__text {
    font-size: 1.25rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: center;
  }
  .notice-feature__image {
    display: none;
  }
  .point-card {
    border-radius: 20px;
  }
  .point-card::before {
    top: -3.75rem;
    left: 0.75rem;
    width: 6.25rem;
    height: 8.125rem;
  }
  .point-card.point-card--1::before {
    background-image: url(../images/point01.png);
  }
  .point-card.point-card--2::before {
    background-image: url(../images/point02.png);
  }
  .point-card.point-card--3::before {
    background-image: url(../images/point03.png);
  }
  .point-card.point-card--4::before {
    background-image: url(../images/point04.png);
  }
  .point-card__image {
    border-radius: 20px 20px 0px 0px;
  }
  .point-card__image img {
    aspect-ratio: 504/355;
    border-radius: 20px 20px 0px 0px;
  }
  .point-card__body {
    min-height: 26.1875rem;
    padding-inline: 3rem;
    padding-block: 2.25rem;
    border-radius: 0px 0px 20px 20px;
  }
  .point-card__title {
    font-size: 2rem;
  }
  .point-card__text {
    margin-top: 0.875rem;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .point-card__label {
    padding-inline: 0.75rem;
    padding-block: 0.75rem;
    font-size: 1.125rem;
  }
  .point-card__label.point-card__label--ribbon {
    padding-block: 0.75rem;
    border-radius: 10px 10px 0px 10px;
    line-height: 1.5625;
  }
  .point-card__label.point-card__label--ribbon {
    max-width: 25.5rem;
    padding-block: 0.4375rem;
    font-size: 1rem;
  }
  .price-block {
    margin-top: 5.625rem;
  }
  .price-block__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.75rem;
       -moz-column-gap: 2.75rem;
            column-gap: 2.75rem;
    row-gap: 2.8125rem;
    width: 100%;
    margin-top: 3.875rem;
  }
  .price-block__title {
    padding-inline: 1.1875rem;
    border-radius: 12.5rem;
    font-size: 1.5rem;
    text-align: left;
  }
  .price-block__body {
    margin-top: 1.3125rem;
    padding-left: 0.375rem;
  }
  .price-block__body.price-block__body--image {
    padding-left: 0.75rem;
  }
  .price-block__item-wrap {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
  .price-block__highlight {
    font-size: 1.5rem;
  }
  .price-block__text {
    line-height: 1.7777777778;
  }
  .price-block__item.price-block__item--01 .price-block__text {
    margin-top: 0.5rem;
  }
  .price-block__item.price-block__item--03 .price-block__text {
    margin-top: 0.5rem;
  }
  .price-block__sub-title {
    padding-inline: 0;
    font-size: 1.125rem;
    line-height: 1.3888888889;
    text-align: left;
  }
  .price-block__sub-title::before, .price-block__sub-title::after {
    display: none;
  }
  .price-block__sub-title::before {
    left: 13.125rem;
    width: 57.0866141732%;
    max-width: 18.125rem;
  }
  .price-block__image01 {
    max-width: 10.75rem;
    margin-inline: 0 auto;
  }
  .price-block__image02 {
    max-width: 5.8125rem;
    margin-inline: 0 auto;
  }
  .price-block__item--02 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .price-block__item--03 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .privacy-policy {
    max-height: 24.6875rem;
    margin-top: 3.625rem;
    padding: 3.5rem 4rem;
  }
  .privacy-policy__lead {
    margin-top: 1.5rem;
  }
  .privacy-policy__content {
    row-gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .question__title {
    margin-top: 4.125rem;
  }
  .question__title-lead {
    font-size: 2rem;
  }
  .question__title-lead::before {
    left: -3.9375rem;
    width: 2.0625rem;
    height: 2.1875rem;
  }
  .question__title-lead::after {
    right: -3.9375rem;
    width: 2.8125rem;
    height: 2.6875rem;
  }
  .question__emphasis {
    margin-top: 0.375rem;
    font-size: 3rem;
    line-height: 1.3541666667;
  }
  .question__options {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.5rem;
    gap: 1.6875rem;
  }
  .question__options::before, .question__options::after {
    display: none;
  }
  .question__option-img {
    aspect-ratio: 341/146;
  }
  .question__option-text {
    font-size: 2rem;
  }
  .question__alert {
    margin-top: 4.375rem;
    font-size: 2rem;
  }
  .question__alert {
    font-size: 2rem;
  }
  .question__alert-text-strong {
    font-size: 2.5rem;
  }
  .question__description {
    position: relative;
    max-width: 47.125rem;
    margin-top: 2.5rem;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 2.1;
    text-align: center;
  }
  .question__description::before, .question__description::after {
    z-index: -1;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
  }
  .question__description::before {
    left: -12.125rem;
    width: 13.125rem;
    height: 18.125rem;
    background-image: url(../images/question_man.png);
  }
  .question__description::after {
    right: -12.5625rem;
    width: 14.875rem;
    height: 16.75rem;
    background-image: url(../images/question_woman.png);
  }
  .section-title {
    padding-inline: 3.6875rem;
    font-size: 2.5rem;
  }
  .section-title::before, .section-title::after {
    width: 2rem;
    height: 2.4375rem;
  }
  .site-footer {
    padding-block: 6.3125rem 6.25rem;
  }
  .site-footer__logo img {
    max-width: 19.5625rem;
  }
  .site-footer__info {
    margin-top: 5rem;
  }
  .site-footer__info-inner {
    row-gap: 0.25rem;
    margin-top: 1.5rem;
  }
  .site-footer__company {
    font-size: 2rem;
    line-height: 1.3125;
  }
  .top-section {
    padding-bottom: 10.8125rem;
    background-image: url(../images/bg.png);
  }
  .voice-block {
    padding-block: 5rem;
  }
  .voice-block__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3.5rem;
       -moz-column-gap: 3.5rem;
            column-gap: 3.5rem;
    row-gap: 6.6875rem;
    width: 100%;
    margin-top: 6.375rem;
  }
  .voice-card {
    min-height: 50rem;
    padding: 0 3.25rem 3.25rem 3.5rem;
    border-radius: 1.875rem;
  }
  .voice-card::before {
    top: -2.875rem;
    width: 10.125rem;
    height: 10.125rem;
  }
  .voice-card__head {
    margin-top: 7.75rem;
  }
  .voice-card__name {
    max-width: 10.125rem;
    margin-top: 0.5rem;
    padding-block: 0.25rem;
    border-radius: 6.25rem;
    font-size: 1rem;
  }
  .voice-card__info span {
    min-width: 10.125rem;
    margin-top: 0.5rem;
    padding-block: 0.25rem;
    border-radius: 6.25rem;
    font-size: 1rem;
  }
  .voice-card__comments {
    margin-top: 2.0625rem;
  }
  .voice-card__comment {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 1300px){
  .header__nav {
    gap: 4rem;
  }
  .header__nav-item.header__nav-item--mail {
    padding-left: 2rem;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px){
  .notice-feature__content::before, .notice-feature__content::after {
    top: 56%;
  }
}

@media (min-width: 1080px){
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1300px){
  .btn.btn--header-cta {
    padding-inline: 1.5rem 3rem;
    padding-block: 1rem;
    font-size: 1.25rem;
    line-height: 1.35;
  }
  .btn.btn--header-cta::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .header__info-bar {
    padding-block: 1.5625rem;
  }
  .header__tel {
    -webkit-padding-start: 2rem;
            padding-inline-start: 2rem;
    font-size: 2rem;
  }
  .header__tel::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .header__nav-item:not(:last-child)::before {
    right: -2rem;
    height: 2.625rem;
  }
  .header__nav-item.header__nav-item--tel {
    gap: 0.75rem;
  }
  .header__tel-time {
    padding-inline: 0.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 767px){
  .cta-fixed-banner {
    z-index: 1000;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    border: none;
    background-color: #fffb00;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cta-fixed-banner span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit;
    padding-right: 1.75rem;
    color: #0d63a9;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    text-align: center;
  }
  .cta-fixed-banner span::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #0d63a9;
    content: "";
    -webkit-mask-image: url(../images/btn_arrow.svg);
            mask-image: url(../images/btn_arrow.svg);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
  .price-block__item--01 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .price-block__item--03 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .price-block__item--02 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .price-block__item--04 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .cta-fixed-banner {
    z-index: 1000;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    border: none;
    background-color: #fffb00;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cta-fixed-banner span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: inherit;
    padding-right: 1.75rem;
    color: #0d63a9;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    text-align: center;
  }
  .cta-fixed-banner span::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.25rem;
    height: 1.25rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #0d63a9;
    content: "";
    -webkit-mask-image: url(../images/btn_arrow.svg);
            mask-image: url(../images/btn_arrow.svg);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover){
  a:hover {
    opacity: 0.8;
  }
  .btn:hover {
    border: 1px solid #fffb00;
    background-color: #0d63a9;
    color: #fffb00;
    opacity: 1;
  }
  .btn:hover::before {
    background-color: #fffb00;
  }
  .btn.btn--submit:hover {
    border: none;
  }
  .btn.btn--submit:hover input {
    border: 1px solid #0d63a9;
    background-color: #ffffff;
    color: #0d63a9;
  }
  .btn.btn--submit:hover::before {
    background-color: #0d63a9;
  }
  .cta-fixed-banner:hover {
    opacity: 1;
  }
  .cta-fixed-banner:hover {
    opacity: 1;
  }
}
/*# sourceMappingURL=map/styles.css.map */

/* 2025.10.14追加 */
.feature-points__movie {
  margin-top: clamp(24px, 4vw, 56px);
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 768px){
  .feature-points__movie {
    width: 95.5223880597%;
  }
}
.feature-points__movie-inner {
  display: grid;
  place-items: center;
}
.feature-points__movie-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.feature-points__movie-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.feature-points__movie + .notice-feature {
  margin-top: clamp(24px, 4.5vw, 64px);
}
.feature-points__movie-caption { 
  margin-top: 0.75rem;
  text-align: center; 
}
.feature-points__movie-caption .ext-link { 
  text-decoration: underline; 
  color: #0d63a9;
  font-size: 1.25rem;
}
@media (max-width: 768px){
  .feature-points__movie-caption .ext-link  {
    font-size: 1rem;
  }
}
/* 追加ここまで */