@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #DCEFFD;
  padding-top: 80px;
}
@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

.section-title {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #003366;
  letter-spacing: 0.03em;
  line-height: 1.4;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #FF7777;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(24px, 6vw, 32px);
    padding-bottom: 14px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 51, 102, 0.08);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 40px;
  position: relative;
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 15px 24px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding: 15px 20px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  z-index: 1005;
}
.header__logo img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 44px;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  list-style: none;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .header__nav-list {
    gap: 20px;
  }
}
@media (max-width: 860px) and (min-width: 769px) {
  .header__nav-list {
    gap: 12px;
  }
}
.header__nav-item a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #003366;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.header__nav-item a:hover {
  opacity: 0.65;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .header__nav-item a {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}
.header__nav-item--cta {
  margin-left: 40px;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .header__nav-item--cta {
    margin-left: 16px;
  }
}
.header__nav-item--cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 42px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #FF7777;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .header__nav-item--cta a {
    width: 160px;
    font-size: 12px;
  }
}
.header__nav-item--cta a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  -webkit-transition: left 0.45s ease;
  transition: left 0.45s ease;
}
.header__nav-item--cta a:hover {
  background: #FF6B7A;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 16px rgba(255, 119, 119, 0.4);
          box-shadow: 0 4px 16px rgba(255, 119, 119, 0.4);
}
.header__nav-item--cta a:hover::after {
  left: 160%;
}
.header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: none;
  background: transparent;
  z-index: 1005;
  padding: 0;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #003366;
  border-radius: 2px;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transition: transform 0.35s ease, opacity 0.35s ease, -webkit-transform 0.35s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.header__drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 1002;
  -webkit-transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
          box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05);
}
.header__drawer.is-open {
  right: 0;
}
.header__drawer-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 60px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(0, 51, 102, 0.08);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__drawer-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  font-size: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.header__drawer-close:hover {
  opacity: 0.6;
}
.header__drawer-close::before, .header__drawer-close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background: #003366;
  border-radius: 2px;
}
.header__drawer-close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__drawer-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__drawer-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 48px 24px 40px;
}
.header__drawer-list {
  list-style: none;
  width: 100%;
  text-align: center;
}
.header__drawer-item a {
  display: block;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 500;
  color: #003366;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 51, 102, 0.08);
  letter-spacing: 0.04em;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.header__drawer-item a:hover {
  opacity: 0.65;
}
.header__drawer-cta {
  margin-top: 36px;
}
.header__drawer-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  height: 47px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #FF7777;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  -webkit-transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
}
.header__drawer-cta a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  -webkit-transition: left 0.45s ease;
  transition: left 0.45s ease;
}
.header__drawer-cta a:hover {
  background: #FF6B7A;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 16px rgba(255, 119, 119, 0.4);
          box-shadow: 0 4px 16px rgba(255, 119, 119, 0.4);
}
.header__drawer-cta a:hover::after {
  left: 160%;
}

.fv {
  position: relative;
  width: 100%;
  max-width: 1880px;
  margin-inline: auto;
  margin-bottom: 20px;
  background-color: #DCEFFD;
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
}
@media (min-width: 601px) {
  .fv {
    padding: clamp(32px, 4vw, 64px);
  }
}
@media (max-width: 640px) {
  .fv {
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
  }
}
.fv__inner {
  width: 100%;
}
.fv__card {
  width: 100%;
  max-width: 1740px;
  margin-inline: auto;
  overflow-x: hidden;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px 40px;
}
@media (min-width: 781px) and (max-width: 1199px) {
  .fv__card {
    padding: 16px 40px;
  }
}
@media (min-width: 1200px) {
  .fv__card {
    padding: clamp(20px, 2.4vw, 32px) 40px;
  }
}
@media (max-width: 780px) {
  .fv__card {
    padding: 24px 20px;
    border-radius: 16px;
  }
}
.fv__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 780px) {
  .fv__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 4px;
  }
}
.fv__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  max-width: clamp(420px, 46vw, 912px);
  min-width: 0;
}
@media (max-width: 780px) {
  .fv__content {
    width: 100%;
    max-width: 100%;
  }
}
.fv__picture-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(380px, 36vw, 713px);
          flex: 0 0 clamp(380px, 36vw, 713px);
  width: auto;
  line-height: 0;
}
@media (max-width: 780px) {
  .fv__picture-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 92%;
    max-width: 300px;
    margin: 8px auto 0;
  }
}
.fv__picture-img {
  width: 100%;
  height: auto;
  display: block;
}
.fv__pretitle {
  font-size: clamp(13px, 1.5vw, 30px);
  font-weight: 600;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 26em;
  margin-left: -20px;
}

@media (max-width: 780px) {
  .fv__pretitle {
    font-size: clamp(12px, 3.2vw, 14px);
    margin-bottom: 6px;
    max-width: 100%;
    margin-left: -10px;
  }
}
.fv__balloon {
  display: inline-block;
  max-width: min(100%, clamp(560px, 46vw, 900px));
  background: #DCEFFD;
  border-radius: 12px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 12px 16px;
  margin-bottom: 16px;
  margin-left: -56px;
}
@media (max-width: 780px) {
  .fv__balloon {
    max-width: 100%;
    width: 100%;
    padding: 8px 8px;
    margin-bottom: 12px;
    margin-left: -28px;
  }
}
.fv__balloon-text {
  font-size: clamp(14px, 1.5vw, 30px);
  font-weight: 700;
  color: #003366;
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: break-word;
}
@media (max-width: 640px) {
  .fv__balloon-text {
    font-size: clamp(12px, 3vw, 13.5px);
    letter-spacing: -0.06em;
  }
}
.fv__br--sp {
  display: none;
}
@media (max-width: 780px) {
  .fv__br--sp {
    display: block;
  }
}
.fv__catch {
  font-size: clamp(28px, 4.6vw, 91px);
  font-weight: 700;
  color: #003366;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
@media (max-width: 780px) {
  .fv__catch {
    font-size: clamp(24px, 7.5vw, 32px);
    margin-bottom: 12px;
    text-align: center;
  }
}
.fv__catch-line {
  display: inline;
}
.fv__catch-br {
  display: block;
}
.fv__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.fv__list-item {
  position: relative;
  padding-left: 1.3em;
  font-size: clamp(14px, 1.4vw, 28px);
  font-weight: 600;
  color: #333333;
  line-height: 1.6;
}
.fv__list-item::before {
  content: "◎";
  position: absolute;
  left: 0;
  top: 0;
  color: #FF7777;
}
@media (max-width: 640px) {
  .fv__list-item {
    font-size: clamp(13px, 3.2vw, 15px);
  }
}
.fv__highlight {
  color: #FF7777;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.fv__btn-wrap {
  margin-top: 20px;
  text-align: left;
}
@media (max-width: 780px) {
  .fv__btn-wrap {
    margin-top: 18px;
  }
}
.fv__btn-wrap--pc {
  display: block;
}
@media (max-width: 780px) {
  .fv__btn-wrap--pc {
    display: none;
  }
}
.fv__btn-wrap--sp {
  display: none;
}
@media (max-width: 780px) {
  .fv__btn-wrap--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.fv__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: clamp(200px, 18vw, 280px);
  height: clamp(44px, 3.5vw, 52px);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  color: #ffffff;
  background: #FF7777;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(255, 119, 119, 0.3);
          box-shadow: 0 4px 12px rgba(255, 119, 119, 0.3);
  -webkit-transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, -webkit-transform 0.15s, -webkit-box-shadow 0.2s;
}
.fv__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  -webkit-transition: left 0.45s ease;
  transition: left 0.45s ease;
}
.fv__btn:hover {
  background: #FF6B7A;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(255, 119, 119, 0.45);
          box-shadow: 0 6px 20px rgba(255, 119, 119, 0.45);
}
.fv__btn:hover::after {
  left: 160%;
}
@media (min-width: 1500px) {
  .fv__btn {
    width: clamp(260px, 21vw, 340px);
    height: clamp(56px, 4.2vw, 60px);
    font-size: clamp(16px, 1.3vw, 19px);
  }
}
@media (max-width: 780px) {
  .fv__btn {
    width: 215px;
    height: 52px;
    font-size: 14.5px;
  }
}

.trouble {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 40px;
}
@media (max-width: 1200px) {
  .trouble {
    padding: 70px 32px;
  }
}
@media (max-width: 768px) {
  .trouble {
    padding: 56px 20px;
  }
}
.trouble__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .trouble__inner {
    gap: 32px;
  }
}
.trouble__heading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.trouble__heading-text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: #003366;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .trouble__heading-text {
    font-size: clamp(15px, 4.2vw, 18px);
    letter-spacing: -0.01em;
  }
}
.trouble__heading-text strong {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #003366;
}
.trouble__heading-text--danger {
  font-size: clamp(18px, 1.95vw, 28px);
  font-weight: 700;
  color: #FF7777;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.trouble__heading-text--danger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #FF7777;
  border-radius: 2px;
}
.trouble__box {
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 51, 102, 0.08);
          box-shadow: 0 4px 24px rgba(0, 51, 102, 0.08);
  padding: 56px 64px 48px;
}
@media (max-width: 1200px) {
  .trouble__box {
    padding: 48px 48px 40px;
  }
}
@media (max-width: 768px) {
  .trouble__box {
    padding: 36px 24px 32px;
    border-radius: 16px;
  }
}
.trouble__box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .trouble__box-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.trouble__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.trouble__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  color: #003366;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.trouble__list-item--last {
  border-bottom: none;
}
.trouble__list-item::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-color: #FF7777;
  clip-path: polygon(14% 44%, 0 58%, 35% 100%, 100% 10%, 84% 0%, 35% 70%);
}
.trouble__illust {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(200px, 35%, 340px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trouble__illust img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .trouble__illust {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.trouble__message {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 51, 102, 0.1);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media (max-width: 768px) {
  .trouble__message {
    margin-top: 28px;
    padding-top: 28px;
  }
}
.trouble__message-sub {
  font-size: clamp(14px, 2.2vw, 24px);
  font-weight: 700;
  color: #003366;
  letter-spacing: 0.03em;
}
.trouble__message-main {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #003366;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .trouble__message-main {
    font-size: clamp(15px, 4.5vw, 18px);
    letter-spacing: -0.01em;
    white-space: nowrap;
    margin-top: 24px;
  }
}

.reason {
  width: 100%;
  background-color: #d8f0ff;
  padding: 80px 40px;
}
@media (max-width: 1200px) {
  .reason {
    padding: 70px 32px;
  }
}
@media (max-width: 768px) {
  .reason {
    padding: 56px 20px;
  }
}
.reason__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}
@media (max-width: 768px) {
  .reason__inner {
    gap: 36px;
  }
}
.reason__heading {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.reason__heading-sub {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #003366;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .reason .section-title {
    font-size: clamp(15px, 4.5vw, 18px);
    white-space: nowrap;
  }
}

/* スマホ専用改行 */
.reason__br--sp {
  display: none;
}

/* PC専用改行 */
.reason__br--pc {
  display: block;
}

@media (max-width: 768px) {

  .reason__br--sp {
    display: block;
  }

  .reason__br--pc {
    display: none;
  }

}
/* スマホ専用改行 */
.cta-first__br--sp {
  display: none;
}

@media (max-width: 768px) {
  .cta-first__br--sp {
    display: block;
  }
}
.reason__card-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 1200px) {
  .reason__card-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .reason__card-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.reason__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
          box-shadow: 0 4px 20px rgba(0, 51, 102, 0.08);
  padding: 32px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1200px) {
  .reason__card {
    padding: 28px 20px;
  }
}
@media (max-width: 768px) {
  .reason__card {
    padding: 28px 24px;
  }
}
.reason__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.reason__card-title {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 700;
  color: #003366;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
  position: relative;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.reason__card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #FF6B7A;
  border-radius: 2px;
}
@media (max-width: 1200px) {
  .reason__card-title {
    font-size: clamp(13px, 1.3vw, 17px);
    height: 63px;
  }
}
@media (max-width: 768px) {
  .reason__card-title {
    font-size: 16px;
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 12px;
  }
}
.reason__card-text {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  color: #003366;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.reason__card-illust {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 28px;
  padding-top: 16px;
}
.reason__card-illust img {
  width: 240px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 1200px) {
  .reason__card-illust img {
    width: 200px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  .reason__card-illust img {
    width: 200px;
    height: 180px;
  }
}
.reason__message {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.reason__message-sub {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 400;
  color: #003366;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.reason__message-sub--bold {
  font-weight: 700;
}
@media (max-width: 768px) {
  .reason__message-sub--bold {
    font-size: clamp(13px, 3.7vw, 16px);
    letter-spacing: -0.02em;
  }
}
.reason__message-main {
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 700;
  color: #003366;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 4px;
}

.cta-first {
  padding: 80px 20px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .cta-first {
    padding: 60px 16px;
  }
}
.cta-first__inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta-first__card {
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 32px rgba(0, 51, 102, 0.1);
          box-shadow: 0 4px 32px rgba(0, 51, 102, 0.1);
  padding: 48px 56px;
}
@media (max-width: 768px) {
  .cta-first__card {
    padding: 36px 24px;
  }
}
.cta-first__message {
  text-align: center;
  margin-bottom: 32px;
}
.cta-first__message-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: #004070;
  line-height: 1.7;
}
.cta-first__message-text--bold {
  font-weight: 700;
}
.cta-first__message-free {
  color: #FF7777;
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 32px);
}
.cta-first__consultant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .cta-first__consultant {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.cta-first__consultant-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cta-first__consultant-img img {
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .cta-first__consultant-img img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
}
.cta-first__consultant-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .cta-first__consultant-text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta-first__consultant-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #FF7777;
  line-height: 1.3;
}
.cta-first__consultant-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #666666;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .cta-first__consultant-sub {
    text-align: center;
  }
}
.cta-first__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-first__buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.cta-first__buttons-row--tel {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta-first__buttons-row--double {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .cta-first__buttons-row--double {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta-first__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 28px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta-first__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: left 0.55s ease;
  transition: left 0.55s ease;
  pointer-events: none;
}
.cta-first__btn:hover::before {
  left: 125%;
}
.cta-first__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.cta-first__btn--tel {
  background: #003366;
  width: 100%;
  max-width: 480px;
}
.cta-first__btn--tel .cta-first__btn-text {
  font-size: clamp(13px, 1.8vw, 20px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-first__btn--tel .cta-first__btn-text {
    white-space: normal;
    text-align: center;
    font-size: clamp(13px, 3.8vw, 16px);
  }
}
@media (max-width: 768px) {
  .cta-first__btn--tel {
    max-width: 100%;
    padding: 14px 20px;
  }
}
.cta-first__btn--line {
  background: #00B900;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 220px;
}
.cta-first__btn--line .cta-first__btn-text {
  font-size: clamp(14px, 1.8vw, 20px);
}
@media (max-width: 768px) {
  .cta-first__btn--line {
    max-width: 100%;
  }
  .cta-first__btn--line .cta-first__btn-text {
    font-size: clamp(14px, 4vw, 17px);
  }
}
.cta-first__btn--mail {
  background: #FF7777;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 220px;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.cta-first__btn--mail .cta-first__btn-text {
  font-size: clamp(14px, 1.8vw, 20px);
}
.cta-first__btn--mail:hover {
  background: #FF6B7A;
}
@media (max-width: 768px) {
  .cta-first__btn--mail {
    max-width: 100%;
  }
  .cta-first__btn--mail .cta-first__btn-text {
    font-size: clamp(14px, 4vw, 17px);
  }
}
.cta-first__btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
}
@media (max-width: 768px) {
  .cta-first__btn-icon {
    font-size: 16px;
  }
}
.cta-first__divider {
  border-top: 2px dashed #cccccc;
  margin-bottom: 24px;
}
.cta-first__info {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.cta-first__info-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #003366;
}
.cta-first__info-hours strong {
  font-weight: 700;
}
.cta-first__info-holiday {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.5vw, 16px);
  color: #003366;
}
.cta-first__info-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, 1.4vw, 14px);
  color: #999999;
  margin-top: 8px;
  line-height: 1.6;
}

.service-overview {
  background: #ffffff;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .service-overview {
    padding: 60px 16px;
  }
}
.service-overview__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .service-overview__inner {
    padding: 0;
  }
}
.service-overview__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.flow {
  background: #ffffff;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  .flow {
    padding: 60px 16px;
  }
}
.flow__inner {
  max-width: 900px;
  margin: 0 auto;
}
.flow .section-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .flow .section-title {
    margin-bottom: 32px;
  }
}
.flow__list {
  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;
}
.flow__card {
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
          box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
  padding: 32px 40px;
}
@media (max-width: 768px) {
  .flow__card {
    padding: 24px 20px;
  }
}
.flow__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .flow__card-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.flow__card-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.flow__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: #004070;
  line-height: 1.5;
}
.flow__card-num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #003366;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  margin-top: 2px;
}
.flow__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 15px);
  color: #444444;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .flow__card-desc {
    font-size: 15px;
    line-height: 1.9;
  }
}
.flow__card-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
}
@media (max-width: 768px) {
  .flow__card-img {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}
.flow__card-img img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.solution {
  background: #DCEFFD;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  .solution {
    padding: 60px 16px;
  }
}
.solution__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.solution .section-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .solution .section-title {
    margin-bottom: 32px;
  }
}
.solution__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .solution__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.solution__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #ffffff;
  border-left: 5px solid #003366;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
          box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
  padding: 28px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.solution__problem-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FF7777;
  font-size: clamp(13px, 1.3vw, 16px);
}
@media (max-width: 768px) {
  .solution__problem-label {
    font-size: 13px;
  }
}
.solution__problem-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 12px;
  font-size: clamp(14px, 1.3vw, 16px);
}

@media (max-width: 768px) {
  .solution__problem-text {
    font-size: 15px;
    line-height: 1.9;
  }
}
.solution__answer-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #FF7777;
  font-size: clamp(13px, 1.3vw, 16px);
}
@media (max-width: 768px) {
  .solution__answer-label {
    font-size: 13px;
  }
}
.solution__answer-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.9;
  font-size: clamp(14px, 1.3vw, 16px);
}

@media (max-width: 768px) {
  .solution__answer-text {
    font-size: 15px;
    line-height: 1.9;
  }
}
.solution__team {
  text-align: center;
}
.solution__team img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 24px;
}

.case {
  background: #ffffff;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .case {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .case {
    padding: 48px 0;
  }
}
.case__inner {
  max-width: 1440px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 51, 102, 0.1);
          box-shadow: 0 4px 24px rgba(0, 51, 102, 0.1);
  padding: 48px;
}
@media (max-width: 1024px) {
  .case__inner {
    padding: 32px 24px;
    margin: 0 24px;
  }
}
@media (max-width: 768px) {
  .case__inner {
    padding: 20px 12px;
    border-radius: 12px;
    margin: 0 12px;
  }
}
.case__frame {
  background: #DCEFFD;
  border-radius: 12px;
  padding: 40px 56px;
}
@media (max-width: 1024px) {
  .case__frame {
    padding: 32px 32px;
  }
}
@media (max-width: 768px) {
  .case__frame {
    padding: 24px 16px;
  }
}
.case__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .case__heading {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .case__heading {
    gap: 8px;
    margin-bottom: 24px;
  }
}
.case__heading-img {
  width: 120px;
  height: auto;
  background: #ffffff;
  border-radius: 8px;
  padding: 14px 20px;
}
@media (max-width: 1024px) {
  .case__heading-img {
    width: 96px;
    padding: 12px 16px;
  }
}
@media (max-width: 768px) {
  .case__heading-img {
    width: 72px;
    padding: 8px 12px;
  }
}
.case__list {
  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;
}
@media (max-width: 768px) {
  .case__list {
    gap: 16px;
  }
}
.case__card {
  background: #ffffff;
  border-top: 6px solid #004070;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
          box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
  padding: 28px 32px;
}
@media (max-width: 1024px) {
  .case__card {
    padding: 24px 24px;
  }
}
@media (max-width: 768px) {
  .case__card {
    padding: 18px 16px;
  }
}
.case__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #004070;
  margin-bottom: 16px;
  font-size: clamp(14px, 1.3vw, 17px);
}
@media (max-width: 768px) {
  .case__sub {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.case__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .case__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.case__before {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case__before-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.9;
  font-size: clamp(14px, 1.3vw, 16px);
}

@media (max-width: 768px) {
  .case__before-text {
    font-size: 15px;
    line-height: 1.9;
  }
}
.case__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin: 0 12px;
  position: relative;
}
.case__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f4a261;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.case__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  border-top: 4px solid #f4a261;
  border-right: 4px solid #f4a261;
  -webkit-transform: translateY(-50%) translateX(20%) rotate(45deg);
          transform: translateY(-50%) translateX(20%) rotate(45deg);
}
@media (max-width: 768px) {
  .case__arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: 8px 0;
  }
}
.case__after {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case__after-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #FF7777;
  margin-bottom: 8px;
  padding-left: 4px;
}
.case__after-box {
  border: 1px dashed #ff9900;
  background: #fff5ec;
  border-radius: 8px;
  padding: 16px 20px;
}
.case__after-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-weight: 700;
  line-height: 1.9;
  font-size: clamp(14px, 1.3vw, 16px);
}

@media (max-width: 768px) {
  .case__after-text {
    font-size: 15px;
    line-height: 1.9;
  }
}
.case__after-strong {
  font-weight: 700;
  font-size: 1.3em;
  color: #003366;
}

.voice {
  background: #ffffff;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  .voice {
    padding: 60px 16px;
  }
}
.voice__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.voice__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .voice__heading {
    gap: 8px;
    margin-bottom: 32px;
  }
}
.voice__heading-img {
  width: 80px;
  height: auto;
}
@media (max-width: 768px) {
  .voice__heading-img {
    width: 56px;
  }
}
.voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .voice__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.voice__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 12px);
          flex: 0 0 calc(50% - 12px);
  background: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
          box-shadow: 0 2px 16px rgba(0, 51, 102, 0.08);
  padding: 32px 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .voice__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 24px 20px;
  }
}
.voice__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #004070;
  font-size: clamp(16px, 1.8vw, 18px);
}
.voice__profile {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #888888;
  margin-bottom: 8px;
}
.voice__text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.8;
  font-size: clamp(13px, 1.4vw, 15px);
}

.cta-second {
  padding: 80px 20px;
  background: #DCEFFD;
}
@media (max-width: 768px) {
  .cta-second {
    padding: 60px 16px;
  }
}
.cta-second__inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta-second__card {
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 32px rgba(0, 51, 102, 0.1);
          box-shadow: 0 4px 32px rgba(0, 51, 102, 0.1);
  padding: 48px 56px;
}
@media (max-width: 768px) {
  .cta-second__card {
    padding: 36px 24px;
  }
}
.cta-second__message {
  text-align: center;
  margin-bottom: 32px;
}
.cta-second__message-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  color: #004070;
  line-height: 1.7;
}
.cta-second__message-text--bold {
  font-weight: 700;
}
.cta-second__message-free {
  color: #FF7777;
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 32px);
}
.cta-second__consultant {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .cta-second__consultant {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.cta-second__consultant-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cta-second__consultant-img img {
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .cta-second__consultant-img img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
}
.cta-second__consultant-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .cta-second__consultant-text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta-second__consultant-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: #004070;
  line-height: 1.4;
}
.cta-second__consultant-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.6vw, 15px);
  color: #666666;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .cta-second__consultant-sub {
    text-align: center;
  }
}
.cta-second__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-second__buttons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.cta-second__buttons-row--tel {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cta-second__buttons-row--double {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .cta-second__buttons-row--double {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta-second__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 28px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta-second__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: left 0.55s ease;
  transition: left 0.55s ease;
  pointer-events: none;
}
.cta-second__btn:hover::before {
  left: 125%;
}
.cta-second__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.cta-second__btn--tel {
  background: #003366;
  width: 100%;
  max-width: 480px;
}
.cta-second__btn--tel .cta-second__btn-text {
  font-size: clamp(13px, 1.8vw, 20px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cta-second__btn--tel .cta-second__btn-text {
    white-space: normal;
    text-align: center;
    font-size: clamp(13px, 3.8vw, 16px);
  }
}
@media (max-width: 768px) {
  .cta-second__btn--tel {
    max-width: 100%;
    padding: 14px 20px;
  }
}
.cta-second__btn--line {
  background: #00B900;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 220px;
}
.cta-second__btn--line .cta-second__btn-text {
  font-size: clamp(14px, 1.8vw, 20px);
}
@media (max-width: 768px) {
  .cta-second__btn--line {
    max-width: 100%;
  }
  .cta-second__btn--line .cta-second__btn-text {
    font-size: clamp(14px, 4vw, 17px);
  }
}
.cta-second__btn--mail {
  background: #FF7777;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 220px;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.cta-second__btn--mail .cta-second__btn-text {
  font-size: clamp(14px, 1.8vw, 20px);
}
.cta-second__btn--mail:hover {
  background: #FF6B7A;
}
@media (max-width: 768px) {
  .cta-second__btn--mail {
    max-width: 100%;
  }
  .cta-second__btn--mail .cta-second__btn-text {
    font-size: clamp(14px, 4vw, 17px);
  }
}
.cta-second__btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cta-second__btn-icon {
    font-size: 16px;
  }
}
.cta-second__divider {
  border-top: 2px dashed #cccccc;
  margin-bottom: 24px;
}
.cta-second__info {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.cta-second__info-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #003366;
}
.cta-second__info-hours strong {
  font-weight: 700;
}
.cta-second__info-holiday {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.5vw, 14px);
  color: #003366;
}
.cta-second__info-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(11px, 1.4vw, 14px);
  color: #999999;
  margin-top: 8px;
  line-height: 1.6;
}

.comparison {
  background: #ffffff;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  .comparison {
    padding: 60px 16px;
  }
}
.comparison__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.comparison .section-title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .comparison .section-title {
    margin-bottom: 32px;
  }
}
.comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media (max-width: 768px) {
  .comparison__table {
    min-width: 640px;
  }
}
.comparison__cell {
  border: 1px solid #e0e0e0;
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.4vw, 15px);
  line-height: 1.6;
  color: #004070;
}
.comparison__cell--highlight {
  background: #fff5f5;
  border: 2px solid #FF7777;
  font-weight: 400;
  color: #003366;
}
.comparison__cell--mark {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
}
.comparison__mark {
  display: inline-block;
}
.comparison__mark--good {
  color: #FF7777;
}
.comparison__mark--mid {
  color: #003366;
}
.comparison__mark--bad {
  color: #003366;
}
thead .comparison__cell--highlight {
  background: #FF7777;
  color: #ffffff;
}

th.comparison__cell {
  font-weight: 700;
}

.profile {
  background: #ffffff;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  .profile {
    padding: 60px 16px;
  }
}
.profile__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.profile__title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .profile__title {
    margin-bottom: 32px;
    font-size: clamp(16px, 4.8vw, 32px);
    line-height: 1.7;
    letter-spacing: -0.01em;
  }
}
.profile__ceo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .profile__ceo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 56px;
  }
}
.profile__ceo-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 420px;
  margin-right: 80px;
}
@media (max-width: 768px) {
  .profile__ceo-img {
    width: 100%;
    max-width: 320px;
    margin-right: 0;
  }
}
.profile__ceo-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.profile__ceo-box {
  position: absolute;
  left: 50%;
  bottom: 16px;
  background: #DCEFFD;
  border-radius: 8px;
  padding: 32px 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 360px;
  max-width: 480px;
  text-align: center;
}
@media (max-width: 768px) {
  .profile__ceo-box {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -32px;
    width: 90%;
    max-width: 320px;
    padding: 24px 20px;
  }
}
.profile__ceo-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 700;
  color: #004070;
  margin-bottom: 8px;
  padding-bottom: 8px;
  text-align: left;
}
@media (max-width: 768px) {
  .profile__ceo-name {
    text-align: center;
  }
}
.profile__ceo-name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .profile__ceo-name-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: normal;
  }
}
.profile__ceo-fullname {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: #004070;
  white-space: nowrap;
}
.profile__ceo-qual {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #004070;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .profile__ceo-qual {
    white-space: normal;
  }
}
.profile__divider {
  border-top: 1px solid #dddddd;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .profile__divider {
    margin-bottom: 32px;
  }
}
.profile__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .profile__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.profile__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 32px;
}
@media (max-width: 768px) {
  .profile__box {
    padding: 24px 20px;
  }
}
.profile__box-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #004070;
  font-size: 18px;
  margin-bottom: 16px;
}
.profile__box-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.8;
  font-size: clamp(13px, 1.4vw, 15px);
}

@media (max-width: 768px) {
  .profile__box-text {
    font-size: 15px;
    line-height: 1.9;
  }
}
.profile__box-line {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.profile__box-line:last-child {
  margin-bottom: 0;
}

.faq {
  background: #ffffff;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  .faq {
    padding: 60px 16px;
  }
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq__title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .faq__title {
    margin-bottom: 32px;
  }
}
.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.faq__item {
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 51, 102, 0.08);
          box-shadow: 0 2px 12px rgba(0, 51, 102, 0.08);
  overflow: hidden;
}
.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__question {
    padding: 16px 18px;
  }
}
.faq__question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #004070;
  line-height: 1.6;
}
.faq__q-mark {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-right: 4px;
}
.faq__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid #004070;
  border-bottom: 2px solid #004070;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__item.is-active .faq__arrow {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.faq__answer {
  display: none;
  background: #e3f2fd;
  padding: 20px 28px;
}
@media (max-width: 768px) {
  .faq__answer {
    padding: 16px 18px;
  }
}
.faq__answer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  color: #333333;
  line-height: 1.9;
}
.faq__a-mark {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #FF7777;
  margin-right: 4px;
}

.contact {
  background: #DCEFFD;
  padding: 80px 20px;
}
@media (max-width: 768px) {
  .contact {
    padding: 60px 16px;
  }
}
.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .contact__inner {
    padding: 0 16px;
  }
}
.contact__card {
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 32px rgba(0, 51, 102, 0.1);
          box-shadow: 0 4px 32px rgba(0, 51, 102, 0.1);
  padding: 48px 56px;
}
@media (max-width: 768px) {
  .contact__card {
    padding: 36px 24px;
  }
}
.contact__card--tel {
  border: 1px solid #0E0F0F;
}
.contact__title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: clamp(14px, 4.2vw, 28px);
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}
.contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.contact__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 28px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.contact__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: left 0.55s ease;
  transition: left 0.55s ease;
  pointer-events: none;
}
.contact__btn:hover::before {
  left: 125%;
}
.contact__btn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.contact__btn--tel {
  background: #003366;
}
.contact__btn--tel .contact__btn-text {
  font-size: clamp(13px, 1.8vw, 17px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .contact__btn--tel .contact__btn-text {
    white-space: normal;
    text-align: center;
    font-size: clamp(11px, 3.2vw, 15px);
    letter-spacing: -0.02em;
  }
}
@media (max-width: 768px) {
  .contact__btn--tel {
    padding: 14px 16px;
  }
}
.contact__btn--line {
  background: #00B900;
}
.contact__btn-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 768px) {
  .contact__btn-icon {
    font-size: 16px;
  }
}
.contact__btn-text {
  font-size: clamp(14px, 1.8vw, 17px);
}
.contact__form {
  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;
}
.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .contact__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.contact__label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #004070;
  font-size: 15px;
  padding-top: 12px;
}
@media (max-width: 768px) {
  .contact__label {
    width: 100%;
    padding-top: 0;
  }
}
.contact__badge {
  display: inline-block;
  background: #FF7777;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.contact__input {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #333333;
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding: 12px 16px;
  background: #ffffff;
}
.contact__input::-webkit-input-placeholder {
  color: #aaaaaa;
}
.contact__input::-moz-placeholder {
  color: #aaaaaa;
}
.contact__input:-ms-input-placeholder {
  color: #aaaaaa;
}
.contact__input::-ms-input-placeholder {
  color: #aaaaaa;
}
.contact__input::placeholder {
  color: #aaaaaa;
}
.contact__input:focus {
  outline: none;
  border-color: #003366;
}
.contact__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #888888;
  line-height: 1.7;
  margin-top: 8px;
}
.contact__submit {
  display: block;
  margin: 16px auto 0;
  width: 100%;
  max-width: 320px;
  background: #FF7777;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.contact__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: left 0.55s ease;
  transition: left 0.55s ease;
  pointer-events: none;
}
.contact__submit:hover::before {
  left: 125%;
}
.contact__submit:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.contact__submit:hover {
  background: #FF6B7A;
}

.footer {
  background: #003366;
  padding: 20px 20px;
}
@media (max-width: 768px) {
  .footer {
    padding: 16px 16px;
  }
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.footer__copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 11px;
  }
}

.flow__lead{
  margin-top: 18px;
  margin-bottom: 30px;
  text-align: center;
  color: #d60000;
  font-size: 22px;
  font-weight: 700;
}

.fv__subtitle {
  font-size: clamp(13px, 1.5vw, 30px);
  font-weight: 600;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-left: -28px;
  text-align: left;
}

@media (max-width: 780px) {
  .fv__subtitle {
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 6px;
    margin-left: 0;
    text-align: center;
  }
}
.fv__blue{
    color:#0b4a8b;
    font-weight:700;
}

/* =====================================
   青文字＋マーカー
===================================== */

.marker-blue{
    color:#0B5CAD;
    font-weight:700;
    background:linear-gradient(
        transparent 58%,
        #FFE66D 58%
    );
}
.marker-pretitle{
    display:inline-block;
    background:linear-gradient(
        transparent 58%,
        #FFE66D 58%
    );
}

.fv__balloon-red{
    color:#C62828;
    font-weight:800;
}

.red-underline-pc {
  border-bottom: 3px solid #e53935;
  padding-bottom: 2px;
}

.red-underline-sp {
  border-bottom: none;
}

@media (max-width: 768px) {
  .red-underline-pc {
    border-bottom: none;
    padding-bottom: 0;
  }

  .red-underline-sp {
    border-bottom: 1.5px solid #e53935;
    padding-bottom: 2px;
  }
}

