/* ==================================================
   00. 共通設定
================================================== */

* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  margin: 0;
  color: #172033;
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}
#page {
  overflow: hidden;
}

/* ヘッダー */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 90px;
  padding: 0 clamp(16px, 3vw, 40px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(39,88,168,.1);
  box-shadow: 0 8px 28px rgba(23,32,51,.06);
  backdrop-filter: blur(14px);
}
.hd__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100%);
  height: 100%;
  margin: 0 auto;
}
.hd__logo {
  display: flex;
  align-items: center;
}
.hd__logo a {
  display: block;
  line-height: 0;
}
.hd__logo img {
  display: block;
  width: clamp(220px, 22vw, 340px);
  height: auto;
}
.hd__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hd__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: #f29f05;
  box-shadow: 0 10px 24px rgba(242,159,5,.22);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}
.hd__contact:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.hd__contact svg,
.hb__contact svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ハンバーガーボタン */
.hb__button {
  position: relative;
  z-index: 1002;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  appearance: none;
  background: #2758a8;
  box-shadow: 0 10px 24px rgba(39,88,168,.2);
  cursor: pointer;
}
.hb__button span {
  position: absolute;
  left: 17px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: top .3s ease, transform .3s ease, opacity .2s ease;
}
.hb__button span:nth-child(1) {
  top: 20px;
}
.hb__button span:nth-child(2) {
  top: 28px;
}
.hb__button span:nth-child(3) {
  top: 36px;
}
.hb__button.is-open span:nth-child(1) {
  top: 28px;
  transform: rotate(45deg);
}
.hb__button.is-open span:nth-child(2) {
  opacity: 0;
}
.hb__button.is-open span:nth-child(3) {
  top: 28px;
  transform: rotate(-45deg);
}

/* メニュー */
.hb__menu-wrap {
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear .4s;
}
.hb__menu-wrap.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.hb__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  background: rgba(15,27,45,.46);
  opacity: 0;
  cursor: pointer;
  transition: opacity .3s ease;
}
.hb__menu-wrap.is-open .hb__overlay {
  opacity: 1;
}
.hb__menu {
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  width: min(480px, 92vw);
  height: 100dvh;
  padding: clamp(120px, 15vh, 150px) clamp(28px, 5vw, 52px) 40px;
  color: #fff;
  background: linear-gradient(145deg, #142844 0%, #1d4f8e 58%, #2758a8 100%);
  box-shadow: -20px 0 60px rgba(15,27,45,.24);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22,1,.36,1);
}
.hb__menu-wrap.is-open .hb__menu {
  transform: translateX(0);
}
.hb__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hb__nav li {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .3s ease, transform .4s ease;
}
.hb__menu-wrap.is-open .hb__nav li {
  opacity: 1;
  transform: translateX(0);
}
.hb__menu-wrap.is-open .hb__nav li:nth-child(1) {
  transition-delay: .08s;
}
.hb__menu-wrap.is-open .hb__nav li:nth-child(2) {
  transition-delay: .12s;
}
.hb__menu-wrap.is-open .hb__nav li:nth-child(3) {
  transition-delay: .16s;
}
.hb__menu-wrap.is-open .hb__nav li:nth-child(4) {
  transition-delay: .2s;
}
.hb__menu-wrap.is-open .hb__nav li:nth-child(5) {
  transition-delay: .24s;
}
.hb__menu-wrap.is-open .hb__nav li:nth-child(6) {
  transition-delay: .28s;
}
.hb__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .025em;
  text-decoration: none;
  transition: color .2s ease, padding-left .2s ease;
}
.hb__nav a::after {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  content: "";
}
.hb__nav a:hover {
  padding-left: 8px;
  color: #fecc02;
}
.hb__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  margin-top: 30px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #172033;
  background: #fecc02;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .04em;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .3s ease .32s,
    transform .4s ease .32s,
    filter .2s ease 0s;
}
.hb__menu-wrap.is-open .hb__contact {
  opacity: 1;
  transform: translateY(0);
}
.hb__contact:hover {
  filter: brightness(1.15);
}
body.is-menu-open {
  overflow: hidden;
}

/* レスポンシブ */
@media (max-width: 760px) {
  #header {
    height: 18vw;
    max-height: 90px;
    padding: 0 14px;
  }
  .hd__logo img {
    width: 50vw;
    max-width: 300px;
  }
  .hd__actions {
    gap: 8px;
  }
  .hd__contact {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
  }
  .hd__contact span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .hb__button {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }
  .hb__button span {
    left: 14px;
    width: 22px;
  }
  .hb__button span:nth-child(1) {
    top: 17px;
  }
  .hb__button span:nth-child(2) {
    top: 24px;
  }
  .hb__button span:nth-child(3) {
    top: 31px;
  }
  .hb__button.is-open span:nth-child(1),
  .hb__button.is-open span:nth-child(3) {
    top: 24px;
  }
  .hb__menu {
    width: min(420px, 94vw);
    padding: 25vw 24px 32px;
  }
  .hb__nav a {
    min-height: 54px;
    font-size: min(4.26vw, 18px);
  }
  .hb__contact {
    min-height: 54px;
    margin-top: 24px;
    font-size: min(4.26vw, 18px);
  }
  .hb__contact svg {
    width: min(8vw, 30px);
    height: min(8vw, 30px);
  }
}
@media (max-width: 380px) {
  .hd__logo img {
    width: 135px;
  }
  .hd__contact {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
  }
  .hb__button {
    width: 46px;
    height: 46px;
  }
  .hb__button span {
    left: 13px;
    width: 20px;
  }
  .hb__button span:nth-child(1) {
    top: 15px;
  }
  .hb__button span:nth-child(2) {
    top: 22px;
  }
  .hb__button span:nth-child(3) {
    top: 29px;
  }
  .hb__button.is-open span:nth-child(1),
  .hb__button.is-open span:nth-child(3) {
    top: 22px;
  }
}

/* ==================================================
   01. キービジュアル
================================================== */

.fv {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 5vw, 62px) 20px clamp(50px, 5.5vw, 68px);
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(137,180,227,.24) 0, rgba(137,180,227,0) 30%),
    linear-gradient(135deg, #142844 0%, #1d4f8e 52%, #2758A8 100%);
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.18));
  pointer-events: none;
}
.fv::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -58%;
  width: 66vw;
  height: 66vw;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.fv__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fv__circle--01 {
  top: 96px;
  left: -140px;
  width: 290px;
  height: 290px;
  background: rgba(137,180,227,.12);
}
.fv__circle--03 {
  right: 42%;
  bottom: 50px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255,255,255,.18);
}
.fv__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(260px, 480px);
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(25px, 3vw, 40px);
  width: min(1280px, 100%);
  min-height: 500px;
  margin: 0 auto;
}
.fv__contents {
  position: relative;
  z-index: 3;
  min-width: 0;
}
.fv__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #FECC02;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
}
.fv__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #FECC02;
}
.fv__badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.fv__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #2B4C75;
  background: #FECC02;
  border: 1px solid #FECC02;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
}
.fv__title {
  margin: 0;
  font-size: clamp(3.7rem, 4.35vw, 5.8rem);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: .035em;
  text-shadow: 0 .04em .08em rgba(0, 0, 0, .18);
}
.fv__title-line {
  display: block;
  white-space: nowrap;
}
.fv__title em {
  position: relative;
  display: inline-block;
  color: #fff;
  font-style: normal;
}
.fv__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  z-index: -1;
  height: .3em;
  border-radius: 999px;
  background: rgba(254,204,2,.8);
}
.fv__lead {
  width: min(750px, 100%);
  margin: 22px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.45rem, 1.25vw, 1.7rem);
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: .04em;
}
.fv__price-wrap {
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
}
.fv__price {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  width: fit-content;
  max-width: 100%;
}
.fv__price-col {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  min-width: 0;
}
.fv__price-col--research {
  width: 210px;
}
.fv__price-col--support {
  width: 290px;
}
.fv__price-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 128px;
  padding: 18px 20px 20px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0,0,0,.18);
}
.fv__price-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: #2758A8;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .05em;
}
.fv__price-main {
  position: relative;
  z-index: 1;
  display: block;
  color: #2758A8;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}
.fv__price-main span {
  font-size: 2rem;
}
.fv__price-main small {
  font-size: 2rem;
}
.fv__price-item--main {
  background: #f29f05;
  border: 2px solid #f29f05;
  box-shadow: 0 24px 54px rgba(0,0,0,.24);
}
.fv__price-item--main .fv__price-label,
.fv__price-item--main .fv__price-main {
  color: #fff;
}
.fv__price-item--main .fv__price-main {
  font-size: 4.4rem;
}
.fv__price-note {
  margin: 10px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: .03em;
}
@media (max-width: 980px) {
  .fv {
    padding: min(23.33vw, 140px) 5.33vw 5.33vw 5.33vw;
  }
  .fv::after {
    right: -46vw;
    bottom: -38vw;
    width: 92vw;
    height: 92vw;
  }
  .fv__circle--01,
  .fv__circle--03 {
    display: none;
  }
  .fv__inner {
    display: block;
    min-height: 0;
    width: 100%;
  }
  .fv__contents {
    position: relative;
    width: 100%;
  }
  .fv__eyebrow {
    margin-bottom: 16px;
    font-size: 2.66vw;
  }
  .fv__eyebrow::before {
    width: 34px;
  }
  .fv__badge-list {
    margin-bottom: 18px;
  }
  .fv__badge {
    width: auto;
    min-height: 34px;
    padding: 7px 16px;
    font-size: 4vw;
  }
  .fv__title {
    font-size: 8.8vw;
    line-height: 1.24;
    letter-spacing: .025em;
  }
  .fv__title-line {
    white-space: nowrap;
  }
  .fv__lead {
    width: 100%;
    margin-top: 18px;
    font-size: 3.73vw;
    line-height: 1.85;
  }
  .fv__price-wrap {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: 24px;
    padding-right: 35vw;
  }
  .fv__price {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }
  .fv__price-col,
  .fv__price-col--research,
  .fv__price-col--support {
    width: 100%;
  }
  .fv__price-item {
    height: auto;
    min-height: auto;
    padding: 3.33vw 5vw;
    border-radius: 18px;
    justify-content: center;
  }
  .fv__price-label {
    margin-bottom: 6px;
    font-size: 4vw;
    letter-spacing: .04em;
  }
  .fv__price-main {
    font-size: 8.4vw;
    white-space: nowrap;
  }
  .fv__price-main span {
    font-size: 3vw;
  }
  .fv__price-item--main .fv__price-main {
    font-size: 8.4vw;
  }
  .fv__price-note {
    margin-top: 2vw;
    font-size: 2.66vw;
    line-height: 1.5;
  }
  .fv__visual {
    position: absolute;
    right: -6.66vw;
    bottom: 0;
    width: 42vw;
    height: auto;
    z-index: 15;
  }
  .fv__visual img {
    width: 100%;
    height: auto;
  }
}

/* ==================================================
   02. 課題・お悩み
================================================== */

.problem {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(137,180,227,.28) 0, rgba(137,180,227,0) 34%),
    linear-gradient(180deg, #f6f9fd 0%, #fff 58%, #f6f9fd 100%);
}
.problem::before {
  content: "";
  position: absolute;
  top: 110px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(39,88,168,.08);
  pointer-events: none;
}
.problem::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(137,180,227,.18);
  pointer-events: none;
}
.problem__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}
.problem__lead {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(38px, 5vw, 64px);
  padding: clamp(34px, 5vw, 58px);
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 24px 70px rgba(39,88,168,.12);
}
.problem__lead::after {
  content: "WEB SUPPORT";
  position: absolute;
  right: clamp(22px, 4vw, 52px);
  bottom: -9px;
  color: rgba(39,88,168,.06);
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  white-space: nowrap;
}
.problem__lead-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.problem__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #2758A8;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
}
.problem__sub::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #2758A8;
}
.problem__title {
  margin: 0;
  color: #172033;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: .04em;
}
.problem__title span {
  color: #2758A8;
}
.problem__lead-text {
  margin-top: 24px;
  color: #263241;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.problem__lead-text p {
  margin: 0;
}
.problem__lead-text p + p {
  margin-top: 8px;
}
.problem__summary {
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
  box-shadow: 0 18px 40px rgba(39,88,168,.22);
}
.problem__summary-title {
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .04em;
}
.problem__summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.problem__summary-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.9);
  font-size: 1.6rem;;
  font-weight: 800;
  line-height: 1.7;
}
.problem__summary-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}
.problem__catch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.problem__catch li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: #F29F05;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.problem__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.problem__item {
  display: flex;
  width: calc((100% - clamp(18px, 3vw, 28px)) / 2);
}
.problem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 22px 60px rgba(39,88,168,.1);
}
.problem__item:nth-child(4n+1) .problem-card,
.problem__item:nth-child(4n) .problem-card {
  color: #fff;
  background: linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
}
.problem-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.problem-card__num {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 54px;
  border-radius: 18px;
  color: #fff;
  background: #2758A8;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .06em;
}
.problem-card__num::before {
  content: "PROBLEM";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  color: #2758A8;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .12em;
  white-space: nowrap;
}
.problem__item:nth-child(4n+1) .problem-card__num,
.problem__item:nth-child(4n) .problem-card__num {
  color: #2758A8;
  background: #fff;
}
.problem__item:nth-child(4n+1) .problem-card__num::before,
.problem__item:nth-child(4n) .problem-card__num::before {
  color: rgba(255,255,255,.72);
}
.problem-card__title-wrap {
  --problem-title-size: clamp(22px, 2.5vw, 30px);
  flex: 1;
  padding-top: calc((54px - (var(--problem-title-size) * 1.45)) / 2);
}
.problem-card__title {
  margin: 0;
  color: #172033;
  font-size: var(--problem-title-size);
  line-height: 1.45;
  letter-spacing: .03em;
}
.problem__item:nth-child(4n+1) .problem-card__title,
.problem__item:nth-child(4n) .problem-card__title {
  color: #fff;
}
.problem-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}
.problem-card__text + .problem-card__text {
  margin-top: 10px;
}
.problem__item:nth-child(4n+1) .problem-card__text,
.problem__item:nth-child(4n) .problem-card__text {
  color: rgba(255,255,255,.86);
}
.problem-card__btn {
  appearance: none;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: auto 0 0;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #2758A8;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.problem__item:nth-child(4n+1) .problem-card__btn,
.problem__item:nth-child(4n) .problem-card__btn {
  color: #2758A8;
  background: #fff;
}
.problem-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(39,88,168,.22);
}
.problem-card__btn::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s;
}
.problem-card.is-open .problem-card__btn::after {
  transform: translateY(2px) rotate(225deg);
}
.problem-card__answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .32s ease, opacity .2s ease;
}
.problem-card.is-open .problem-card__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.problem-card__answer-inner {
  overflow: hidden;
}
.problem-card__answer-box {
  margin-top: 22px;
  padding: 22px 24px;
  color: #263241;
  background: #f3f7fc;
  border: 1px solid rgba(39,88,168,.1);
  border-radius: 22px;
}
.problem-card__answer-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}
.problem-card__answer-box p + p {
  margin-top: 12px;
}
.problem__item:nth-child(4n+1) .problem-card__answer-box,
.problem__item:nth-child(4n) .problem-card__answer-box {
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}
.problem__closing {
  position: relative;
  margin-top: clamp(38px, 5vw, 62px);
  padding: 34px clamp(24px, 4vw, 46px);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(39,88,168,.14);
  box-shadow: 0 20px 55px rgba(39,88,168,.1);
}
.problem__closing::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 6px;
  height: calc(100% - 56px);
  border-radius: 0 999px 999px 0;
  background: #2758A8;
}
.problem__closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.problem__closing-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: #2758A8;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
}
.problem__closing-label::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-left: 12px;
  background: #2758A8;
}
.problem__closing-text {
  margin: 0;
  color: #172033;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .04em;
}
.problem__closing-text span {
  color: #2758A8;
}
.problem__closing-note {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .03em;
}
.problem__closing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 14px 30px;
  border-radius: 999px;
  color: #fff;
  background: #F29F05;
  font-size: 1.7rem;;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(39,88,168,.22);
  transition: transform .25s, box-shadow .25s;
  transition: all 0.2s ease-in-out 0s;
}
.problem__closing-btn::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.problem__closing-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 18px 38px rgba(39,88,168,.28);
}
@media (max-width: 960px) {
  .problem {
    padding: 48px 16px;
  }
  .problem__lead {
    padding: 30px 22px;
    border-radius: 28px;
  }
  .problem__lead-inner {
    grid-template-columns: 1fr;
  }
  .problem__summary {
    padding: 24px;
  }
  .problem__item {
    width: 100%;
  }
  .problem__item:nth-child(n) .problem-card {
    padding: 28px 22px;
    border-radius: 24px;
    color: #1f2937;
    background: #fff;
  }
  .problem__item:nth-child(n) .problem-card::before {
    background: rgba(137,180,227,.18);
  }
  .problem__item:nth-child(n) .problem-card__num {
    color: #fff;
    background: #2758A8;
  }
  .problem__item:nth-child(n) .problem-card__num::before {
    color: #2758A8;
  }
  .problem__item:nth-child(n) .problem-card__title {
    color: #172033;
  }
  .problem__item:nth-child(n) .problem-card__text {
    color: #4b5563;
  }
  .problem__item:nth-child(n) .problem-card__btn {
    color: #fff;
    background: #2758A8;
  }
  .problem__item:nth-child(n) .problem-card__answer-box {
    color: #263241;
    background: #f3f7fc;
    border-color: rgba(39,88,168,.1);
  }
  .problem__item:nth-child(odd) .problem-card {
    color: #fff;
    background: linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
  }
  .problem__item:nth-child(odd) .problem-card::before {
    background: rgba(255,255,255,.14);
  }
  .problem__item:nth-child(odd) .problem-card__num {
    color: #2758A8;
    background: #fff;
  }
  .problem__item:nth-child(odd) .problem-card__num::before {
    color: rgba(255,255,255,.72);
  }
  .problem__item:nth-child(odd) .problem-card__title {
    color: #fff;
  }
  .problem__item:nth-child(odd) .problem-card__text {
    color: rgba(255,255,255,.86);
  }
  .problem__item:nth-child(odd) .problem-card__btn {
    color: #2758A8;
    background: #fff;
  }
  .problem__item:nth-child(odd) .problem-card__answer-box {
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.18);
  }
  .problem__closing-inner {
    grid-template-columns: 1fr;
  }
  .problem__closing-btn {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .problem__title {
    font-size: 29px;
  }
  .problem__lead-text {
    line-height: 1.9;
  }
  .problem__summary-title {
    font-size: 19px;
  }
  .problem__catch li {
    width: 100%;
  }
  .problem-card__head {
    gap: 16px;
  }
  .problem-card__num {
    width: 64px;
    height: 50px;
    border-radius: 16px;
    font-size: 18px;
  }
  .problem-card__num::before {
    top: -17px;
    font-size: 9px;
  }
  .problem-card__title-wrap {
    --problem-title-size: 22px;
    padding-top: calc((50px - (var(--problem-title-size) * 1.45)) / 2);
  }
  .problem-card__answer-box {
    padding: 20px;
  }
  .problem__closing {
    padding: 30px 22px;
    border-radius: 24px;
  }
  .problem__closing::before {
    display: none;
  }
  .problem__closing-text {
    font-size: 21px;
  }
  .problem__summary-list li {
    font-size: 1.5rem;
  }
}

.problem__list__wrap {
  position: relative;
}
.webtan01 {
  position: absolute;
  right: 2.5%;
  bottom: -100px;
  z-index: 10;
}

/* ==================================================
   03. 対応事例
================================================== */

.case {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) 20px;
  background: linear-gradient(135deg, #F2FBFA 0%, #F2FBFA 58%, rgba(141,221,216,.34) 58%, rgba(141,221,216,.34) 100%);
}
.case::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;

  border-radius: 50%;
  background: rgba(73,188,181,.12);
}

.case__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.case-lead {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(30px, 4vw, 50px);
  border-radius: 32px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(73,188,181,.14);
  box-shadow: 0 22px 60px rgba(73,188,181,.1);
}
.case-lead::after {
  content: "CASE STUDY";
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: -8px;
  color: rgba(73,188,181,.06);
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  white-space: nowrap;
}
.case-lead__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.case-lead__main {
  min-width: 0;
}
.case-lead__sub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #49BCB5;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
}
.case-lead__sub::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #49BCB5;
}
.case-lead__title {
  margin: 0;
  color: #172033;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: .04em;
}
.case-lead__title span {
  color: #49BCB5;
}
.case-lead__text {
  margin-top: 22px;
  color: #374151;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.case-lead__text p {
  margin: 0;
}
.case-lead__text p + p {
  margin-top: 8px;
}
.case-lead__points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, #49BCB5 0%, #2C9F99 100%);
  list-style: none;
  box-shadow: 0 18px 40px rgba(73,188,181,.22);
}
.case-lead__points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255,255,255,.92);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.7;
}
.case-lead__points li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}
.case-cta {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - 40px));
  margin: clamp(70px, 9vw, 120px) auto 0;
}
.case-cta__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,.16) 0, rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #15958E 0%, #08756F 100%);
  box-shadow: 0 24px 70px rgba(8,117,111,.28);
}
.case-cta__body,
.case-cta__action {
  position: relative;
  z-index: 1;
}
.case-cta__label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .14em;
}
.case-cta__label::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-left: 12px;
  background: rgba(255,255,255,.78);
}
.case-cta__text {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .04em;
}
.case-cta__text span {
  display: inline;
  background: linear-gradient(transparent 62%, rgba(141,221,216,.42) 62%);
}
.case-cta__note {
  margin: 14px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .03em;
}
.case-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 60px;
  padding: 14px 32px;
  border-radius: 999px;
  color: #13918A;
  background: #fff;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
  transition: transform .25s, box-shadow .25s;
}
.case-cta__btn::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.case-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.case-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.case-nav__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(73,188,181,.16);
  box-shadow: 0 14px 36px rgba(73,188,181,.1);
}
.case-nav__tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 48px;
  padding: 9px 24px;
  border: 0;
  border-radius: 14px;
  color: #F29F05;
  background: transparent;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .25s;
}
.case-nav__tab.is-active,
.case-nav__tab:hover {
  color: #fff;
  background: #F29F05;
  box-shadow: 0 10px 24px rgba(73,188,181,.24);
}
.case-nav__arrows {
  display: flex;
  gap: 10px;
}
.case-arrow {
  appearance: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(73,188,181,.22);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: .25s;
}
.case-arrow:hover {
  background: #49BCB5;
}
.case-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid #49BCB5;
  border-left: 2px solid #49BCB5;
}
.case-arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}
.case-arrow--next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}
.case-arrow:hover::before {
  border-color: #fff;
}
.case-slider {
  width: 100%;
}
.case-slider .slick-list {
  overflow: hidden;
  margin: -40px 0;
  padding: 40px 0;
}
.case-slider .slick-track {
  display: flex;
}
.case-slider .slick-slide {
  height: auto;
}
.case-slider .slick-slide > div {
  height: 100%;
}
.case-slide {
  height: 100%;
}
.case-slide__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px;
  grid-template-areas:
    "head price"
    "flow flow"
    "maintenance maintenance";
  column-gap: clamp(28px, 4vw, 56px);
  align-items: end;
  height: 100%;
  padding: 0 34px 34px;
}
.case__head {
  grid-area: head;
  margin-bottom: clamp(25px, 3vw, 30px);
}
.case__body {
  display: contents;
}
.case__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.case__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #fff;
  background: #49BCB5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
}
.case__badge--sub {
  color: #49BCB5;
  background: #fff;
  border: 1px solid rgba(73,188,181,1);
}
.case__title {
  margin: 0;
  color: #172033;
  font-size: clamp(28px, 4.8vw, 54px);
  line-height: 1.25;
  letter-spacing: .02em;
}
.case__title span {
  display: block;
  margin-bottom: 8px;
  color: #49BCB5;
  font-size: clamp(18px, 2.4vw, 32px);
}
.case__lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #4b5563;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 2;
}
.case-more {
  display: none;
}
.case-price {
  grid-area: price;
  margin-bottom: clamp(25px, 3vw, 30px);
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(73,188,181,.14);
  border: 1px solid rgba(73,188,181,.12);
}
.case-price__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  background: #49BCB5;
  font-size: 13px;
  font-weight: 700;
}
.case-price__text {
  margin: 18px 0 0;
  color: #49BCB5;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
}
.case-price__text small {
  font-size: 2.4rem;
  color: #111827;
}
.case-price__text span {
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}
.case-price__note {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.7;
}
.case-flow {
  grid-area: flow;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 36px);
  margin-bottom: 0;
}
.case-card {
  position: relative;
  min-height: 410px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(73,188,181,.1);
}
.case-card--problem {
  color: #fff;
  background: linear-gradient(135deg, #49BCB5 0%, #2C9F99 100%);
}
.case-card--proposal {
  border: 1px solid rgba(73,188,181,.12);
}
.case-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 7px 17px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}
.case-card--problem .case-card__label {
  color: #fff;
  background: #13918A;
}
.case-card--proposal .case-card__label {
  color: #fff;
  background: #F29F05;
}
.case-card__title {
  margin: 0 0 22px;
  font-size: clamp(23px, 2.6vw, 31px);
  line-height: 1.45;
  letter-spacing: .03em;
}
.case-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 2;
}
.case-card--problem .case-card__text {
  color: rgba(255,255,255,.86);
}
.proposal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.proposal-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  color: #374151;
  font-size: 15px;
  line-height: 1.75;
}
.proposal-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border-radius: 999px;
  color: #fff;
  background: #F29F05;
  font-size: 13px;
  font-weight: 800;
}
.maintenance {
  grid-area: maintenance;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(73,188,181,.1);
}
.maintenance__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.maintenance__title {
  margin: 0;
  color: #172033;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: .04em;
}
.maintenance__lead {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}
.maintenance__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.maintenance__item {
  position: relative;
  min-height: auto;
  padding: 18px 20px;
  border-radius: 20px;
  background: #F2FBFA;
  border: 1px solid rgba(73,188,181,.1);
}
.maintenance__num {
  position: absolute;
  top: -12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #fff;
  background: #49BCB5;
  font-size: 13px;
  font-weight: 800;
}
.maintenance__num--green {
  background: #49BCB5;
}
.maintenance__num--orange {
  background: #F29F05;
}
.maintenance__num--red {
  background: rgba(255,70,70,1.00);
}
.maintenance__item p {
  margin: 0;
  color: #263241;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}
.case-note {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-radius: 18px;
  color: #13918A;
  background: rgba(141,221,216,.16);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .maintenance__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .case {
    padding: 52px 16px;
  }
  .case-lead {
    padding: 30px 22px;
    border-radius: 28px;
  }
  .case-lead__inner {
    grid-template-columns: 1fr;
  }
  .case-lead__points {
    padding: 22px;
  }
  .case-nav {
    display: none;
  }
  .case-slider .slick-list {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .case-slide__inner {
    display: block !important;
    padding: 0;
  }
  .case-slide {
    margin-bottom: 34px;
  }
  .case-slide:last-child {
    margin-bottom: 0;
  }
  .case__head {
    margin-bottom: 18px;
  }
  .case-more {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin: 24px 0 0;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #49BCB5;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .08em;
    cursor: pointer;
  }
  .case-more::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-2px) rotate(45deg);
    transition: .25s;
  }
  .case-more.is-open::after {
    transform: translateY(2px) rotate(225deg);
  }
  .case__body {
    display: none;
    padding-top: 26px;
  }
  .case__body.is-open {
    display: block;
  }
  .case-flow {
    grid-template-columns: 1fr;
  }
  .case-card {
    min-height: auto;
  }
  .maintenance__head {
    display: block;
  }
  .maintenance__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-price {
    max-width: none;
    margin: 28px 0 0;
  }
  .case-cta {
    width: calc(100% - 32px);
  }
  .case-cta__inner {
    grid-template-columns: 1fr;
    padding: 34px 26px;
    border-radius: 28px;
  }
  .case-cta__btn {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .case-lead__title {
    font-size: 29px;
  }
  .case-lead__text {
    line-height: 1.9;
  }
  .case-lead__points li {
    font-size: 13px;
  }
  .case__kicker {
    margin-bottom: 18px;
  }
  .case__title {
    letter-spacing: .01em;
  }
  .case-price {
    padding: 24px 22px;
    border-radius: 22px;
  }
  .case-card,
  .maintenance {
    padding: 26px 20px;
    border-radius: 24px;
  }
  .proposal-list li {
    grid-template-columns: 38px 1fr;
  }
  .proposal-list span {
    width: 38px;
  }
  .maintenance__list {
    grid-template-columns: 1fr;
  }
  .maintenance__item {
    min-height: auto;
  }
  .case-cta {
    width: calc(100% - 32px);
  }
  .case-cta__inner {
    padding: 32px 22px;
    border-radius: 24px;
  }
  .case-cta__text {
    font-size: 21px;
  }
  .case-cta__note {
    font-size: 14px;
  }
}

/* ==================================================
   04. 保守開始までの流れ
================================================== */

.flow {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(137,180,227,.24) 0, rgba(137,180,227,0) 34%),
    linear-gradient(180deg, #f6f9fd 0%, #fff 55%, #f6f9fd 100%);
}
.flow::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(39,88,168,.08);
  pointer-events: none;
}
.flow::after {
  content: "";
  position: absolute;
  bottom: 70px;
  left: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(137,180,227,.18);
  pointer-events: none;
}
.flow__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}
.flow__head {
  margin-bottom: clamp(34px, 5vw, 58px);
}
.flow__sub-title {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 96px;
  margin: 0 0 26px;
  padding: 24px clamp(24px, 4vw, 46px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
  box-shadow: 0 22px 58px rgba(39,88,168,.18);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .05em;
}
.flow__sub-title::after {
  content: "FLOW";
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: -9px;
  color: rgba(255,255,255,.09);
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}
.flow__lead {
  max-width: 100%;
  margin: 0;
  padding: 28px clamp(24px, 4vw, 42px);
  padding-right: 250px;
  border-radius: 24px;
  color: #263241;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 18px 48px rgba(39,88,168,.08);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.flow__list {
  --flow-overlap: 54px;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow__list::before {
  content: "";
  position: absolute;
  top: calc((245px / 2) + 12px);
  bottom: calc((245px / 2) + 12px);
  left: 50%;
  z-index: 1;
  width: 3px;
  background: linear-gradient(180deg, rgba(39,88,168,.34), rgba(39,88,168,.14));
  transform: translateX(-50%);
  pointer-events: none;
}
.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  grid-template-areas: "left axis right";
  align-items: stretch;
  margin-top: calc(var(--flow-overlap) * -1);
}
.flow__item:first-child {
  margin-top: 0;
}
.flow-step__axis {
  grid-area: axis;
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 245px;
}
.flow-step__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #2758A8;
  box-shadow: 0 0 0 7px rgba(39,88,168,.14);
  transform: translate(-50%, -50%);
}
.flow-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40%;
  gap: clamp(15px, 1.5vw, 20px);
  align-items: center;
  min-height: 245px;
  padding: clamp(20px, 2vw, 25px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 22px 60px rgba(39,88,168,.1);
}
.flow__item:nth-child(odd) .flow-card {
  grid-area: left;
}
.flow__item:nth-child(even) .flow-card {
  grid-area: right;
  color: #fff;
  background: linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
}
.flow-card__body {
  position: relative;
  z-index: 1;
}
.flow-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #fff;
  background: #2758A8;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
}
.flow__item:nth-child(even) .flow-card__num {
  color: #2758A8;
  background: #fff;
}
.flow-card__title {
  margin: 0;
  color: #172033;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}
.flow__item:nth-child(even) .flow-card__title {
  color: #fff;
}
.flow-card__text {
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .03em;
}
.flow__item:nth-child(even) .flow-card__text {
  color: rgba(255,255,255,.86);
}
.flow-card__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  background: #eef5fd;
  box-shadow: 0 14px 34px rgba(39,88,168,.12);
}
.flow-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,88,168,.12), rgba(255,255,255,0));
  pointer-events: none;
}
.flow__note {
  margin: clamp(34px, 5vw, 58px) 0 0;
  padding: 28px clamp(24px, 4vw, 42px);
  border-radius: 26px;
  color: #263241;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 18px 48px rgba(39,88,168,.09);
}
.flow__note p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: .03em;
}
.flow__note span {
  color: #2758A8;
  font-size: 113%;
}
@media (max-width: 1180px) {
  .flow__list {
    --flow-gap: 26px;
    --flow-axis: 56px;
    position: relative;
  }
  .flow__list::before {
    display: none;
  }
  .flow__item {
    grid-template-columns: var(--flow-axis) minmax(0, 1fr);
    grid-template-areas: "axis card";
    margin-top: 0;
    padding-bottom: var(--flow-gap);
  }
  .flow__item:last-child {
    padding-bottom: 0;
  }
  .flow__item:nth-child(odd) .flow-card,
  .flow__item:nth-child(even) .flow-card {
    grid-area: card;
  }
  .flow-step__axis {
    grid-area: axis;
    position: relative;
    z-index: 2;
    min-height: auto;
  }
  .flow-step__axis::before {
    content: "";
    position: absolute;
    top: 42px;
    bottom: calc((var(--flow-gap) + 42px) * -1);
    left: 50%;
    z-index: 1;
    width: 3px;
    background: linear-gradient(180deg, rgba(39,88,168,.34), rgba(39,88,168,.14));
    transform: translateX(-50%);
    pointer-events: none;
  }
  .flow__item:last-child .flow-step__axis::before {
    display: none;
  }
  .flow-step__dot {
    top: 42px;
  }
  .flow-card {
    grid-template-columns: minmax(0, 1fr) 34%;
    min-height: auto;
  }
}
@media (max-width: 760px) {
  .flow {
    padding: 48px 16px;
  }
  .flow__sub-title {
    min-height: 86px;
    padding: 20px 22px;
    border-radius: 24px;
    font-size: 4.6vw;
  }
  .flow__sub-title::after {
    right: 16px;
    bottom: -5px;
    font-size: 64px;
  }
  .flow__lead {
    padding: 24px 20px;
    border-radius: 22px;
    font-size: 15px;
    line-height: 1.9;
  }
  .flow__list {
    --flow-gap: 26px;
  }
  .flow__item {
    grid-template-columns: 40px minmax(0, 1fr);
  }
  .flow-step__dot {
    top: 34px;
    width: 18px;
    height: 18px;
    border-width: 4px;
    box-shadow: 0 0 0 5px rgba(39,88,168,.14);
  }
  .flow-step__line {
    top: 48px;
    height: calc(100% + var(--flow-gap) - 28px);
  }
  .flow-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    border-radius: 24px;
  }
  .flow-card::before {
    top: 22px;
    right: 22px;
    width: 76px;
    height: 76px;
  }
  .flow-card__img {
    order: -1;
    border-radius: 18px;
  }
  .flow-card__title {
    font-size: 22px;
  }
  .flow-card__text {
    font-size: 14px;
  }
  .flow__note {
    padding: 24px 20px;
    border-radius: 22px;
  }
}

.flow__list__wrap {
  position: relative;
}
.webtan02 {
  position: absolute;
  right: 0;
  top: -150px;
  z-index: 10;
}
  @media (max-width: 1180px) {
    .webtan02 {
      top: -220px;
    }
    .webtan02 img {
      width: 200px;
      height: auto;
    }
  }
  @media (max-width: 760px) {
    .webtan02 {
      top: -12vw;
    }
    .webtan02 img {
      width: 24vw;
    }
  }

/* ==================================================
   05. ご要望
================================================== */

.request {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(137,180,227,.24) 0, rgba(137,180,227,0) 34%),
    linear-gradient(180deg, #f6f9fd 0%, #fff 55%, #f6f9fd 100%);
}
.request::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(39,88,168,.08);
  pointer-events: none;
}
.request::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(137,180,227,.18);
  pointer-events: none;
}
.request__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}
.request__head {
  margin-bottom: clamp(34px, 5vw, 58px);
}
.request__sub-title {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 96px;
  margin: 0 0 26px;
  padding: 24px clamp(24px, 4vw, 46px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
  box-shadow: 0 22px 58px rgba(39,88,168,.18);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .05em;
}
.request__sub-title::after {
  content: "REQUEST";
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: -9px;
  color: rgba(255,255,255,.09);
  font-size: clamp(54px, 8.6vw, 128px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}
.request__lead {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(26px, 4vw, 40px) clamp(24px, 4vw, 42px);
  border-radius: 26px;
  color: #263241;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 18px 48px rgba(39,88,168,.08);
}
.request__lead::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 6px;
  height: calc(100% - 52px);
  border-radius: 0 999px 999px 0;
  background: #2758A8;
}
.request__lead p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.request__lead p + p {
  margin-top: 12px;
}
.request__lead strong {
  color: #f00;
  font-weight: 900;
  font-size: 120%;
}
.request__example-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: #172033;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
}
.request__example-title::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2758A8;
  box-shadow: 0 0 0 7px rgba(39,88,168,.12);
}
.request__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.request-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 26px);
  min-height: 190px;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 22px 60px rgba(39,88,168,.1);
}
.request-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 26px;
  color: #fff;
  background: #2758A8;
  box-shadow: 0 14px 34px rgba(39,88,168,.18);
}
.request-card__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.request-card__body {
  position: relative;
  z-index: 1;
}
.request-card__num {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #2758A8;
  background: #eef5fd;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
}
.request-card__title {
  margin: 0;
  color: #172033;
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}
.request-card__text {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .03em;
}
@media (max-width: 960px) {
  .request {
    padding: 48px 16px;
  }
  .request__list {
    grid-template-columns: 1fr;
  }
  .request-card {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: auto;
    padding: 28px 22px;
    border-radius: 24px;
  }
  .request-card__icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
  }
  .request-card__icon svg {
    width: 36px;
    height: 36px;
  }
  }
@media (max-width: 560px) {
  .request__sub-title {
    min-height: 86px;
    padding: 20px 22px;
    border-radius: 24px;
    font-size: 4.6vw;
  }
  .request__sub-title::after {
    right: 16px;
    bottom: -5px;
    font-size: 54px;
  }
  .request__lead {
    padding: 24px 20px;
    border-radius: 22px;
  }
  .request__lead::before {
    display: none;
  }
  .request-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .request-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }
  .request-card__title {
    font-size: 20px;
    text-align: center;
  }
  .request-card__text {
    font-size: 14px;
    text-align: left;
  }
}

/* ==================================================
   06. よくあるご質問
================================================== */

.qa {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(137,180,227,.24) 0, rgba(137,180,227,0) 34%),
    linear-gradient(180deg, #f6f9fd 0%, #fff 55%, #f6f9fd 100%);
}
.qa::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(39,88,168,.08);
  pointer-events: none;
}
.qa::after {
  content: "";
  position: absolute;
  bottom: 70px;
  left: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(137,180,227,.18);
  pointer-events: none;
}
.qa__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}
.qa__head {
  margin-bottom: clamp(34px, 5vw, 58px);
}
.qa__sub-title {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 96px;
  margin: 0 0 26px;
  padding: 24px clamp(24px, 4vw, 46px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
  box-shadow: 0 22px 58px rgba(39,88,168,.18);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .05em;
}
.qa__sub-title::after {
  content: "FAQ";
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: -9px;
  color: rgba(255,255,255,.09);
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}
.qa__lead {
  max-width: 100%;
  margin: 0;
  padding: 28px clamp(24px, 4vw, 42px);
  border-radius: 24px;
  color: #263241;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 18px 48px rgba(39,88,168,.08);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.qa__list {
  display: grid;
  gap: 20px;
  margin: 0;
}
.qa-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(39,88,168,.12);
  box-shadow: 0 20px 55px rgba(39,88,168,.09);
}
.qa-item__question {
  appearance: none;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 48px;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 94px;
  padding: 22px clamp(22px, 4vw, 34px);
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.qa-item__icon-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  color: #fff;
  background: #2758A8;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(39,88,168,.18);
}
.qa-item__title {
  color: #172033;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .04em;
}
.qa-item__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef5fd;
  border: 1px solid rgba(39,88,168,.14);
  transition: .25s;
}
.qa-item__toggle::before,
.qa-item__toggle::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: #2758A8;
  transition: .25s;
}
.qa-item__toggle::after {
  transform: rotate(90deg);
}
.qa-item.is-open .qa-item__toggle {
  background: #2758A8;
}
.qa-item.is-open .qa-item__toggle::before,
.qa-item.is-open .qa-item__toggle::after {
  background: #fff;
}
.qa-item.is-open .qa-item__toggle::after {
  opacity: 0;
  transform: rotate(0deg);
}
.qa-item__answer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .32s ease, opacity .2s ease;
}
.qa-item.is-open .qa-item__answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.qa-item__answer-inner {
  overflow: hidden;
}
.qa-item__answer-box {
  margin: 0 clamp(22px, 4vw, 34px) 30px;
  padding: 26px clamp(22px, 4vw, 32px);
  border-radius: 24px;
  background: #f3f7fc;
  border: 1px solid rgba(39,88,168,.1);
}
.qa-item__answer-text {
  color: #263241;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.qa-item__answer-text p {
  margin: 0;
}
.qa-item__answer-text p + p {
  margin-top: 12px;
}
.qa-item__answer-text ul {
  margin: 12px 0;
  padding-left: 1.4em;
}
.qa-item__answer-text li {
  margin: 4px 0;
  list-style-type: circle;
}
@media (max-width: 760px) {
  .qa {
    padding: 48px 16px;
  }
  .qa__sub-title {
    min-height: 86px;
    padding: 20px 22px;
    border-radius: 24px;
    font-size: 4.6vw;
  }
  .qa__sub-title::after {
    right: 16px;
    bottom: -5px;
    font-size: 64px;
  }
  .qa__lead {
    padding: 24px 20px;
    border-radius: 22px;
    font-size: 15px;
    line-height: 1.9;
  }
  .qa__list {
    gap: 16px;
  }
  .qa-item {
    border-radius: 24px;
  }
  .qa-item__question {
    grid-template-columns: 46px minmax(0, 1fr) 38px;
    gap: 14px;
    min-height: 82px;
    padding: 20px;
  }
  .qa-item__icon-q {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
  }
  .qa-item__title {
    font-size: 15px;
  }
  .qa-item__toggle {
    width: 38px;
    height: 38px;
  }
  .qa-item__toggle::before,
  .qa-item__toggle::after {
    width: 15px;
    height: 2px;
  }
  .qa-item__answer-box {
    margin: 0 20px 22px;
    padding: 22px 20px;
    border-radius: 20px;
  }
  .qa-item__answer-text {
    font-size: 14px;
    line-height: 1.9;
  }
}

.webtan03 {
  position: absolute;
  right: -8px;
  top: -180px;
  z-index: 5;
}
  @media (max-width: 1160px) {
    .webtan03 {
      top: -140px;
    }
    .webtan03 img {
      width: 200px;
      height: auto;
    }
  }
  @media (max-width: 760px) {
    .webtan03 {
      top: -22vw;
    }
    .webtan03 img {
      width: 30vw;
    }
  }

/* ==================================================
   07. 制作会社様向け
================================================== */

.partner {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(251,146,60,.22) 0, rgba(251,146,60,0) 34%),
    linear-gradient(180deg, #fff7ed 0%, #fff 55%, #fff7ed 100%);
}
.partner::before {
  content: "";
  position: absolute;
  top: 130px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(234,88,12,.08);
  pointer-events: none;
}
.partner::after {
  content: "";
  position: absolute;
  bottom: 70px;
  left: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(251,146,60,.16);
  pointer-events: none;
}
.partner__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}
.partner__head {
  margin-bottom: clamp(34px, 5vw, 58px);
}
.partner__sub-title {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 96px;
  margin: 0 0 26px;
  padding: 24px clamp(24px, 4vw, 46px);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 22px 58px rgba(234,88,12,.2);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .05em;
}
.partner__sub-title::after {
  content: "PARTNER";
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: -9px;
  color: rgba(255,255,255,.1);
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}
.partner__lead {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(234,88,12,.14);
  box-shadow: 0 20px 55px rgba(234,88,12,.09);
}
.partner__lead-inner {
  position: relative;
  z-index: 1;
}
.partner__lead-text {
  margin: 0;
  color: #263241;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.partner__lead-text + .partner__lead-text {
  margin-top: 18px;
}
.partner__lead-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.partner__lead-highlight span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ea580c;
  background: #fff7ed;
  border: 1px solid rgba(234,88,12,1);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .04em;
}
  @media (max-width: 760px) {
    .partner__lead-highlight span {
      font-size: 1.6rem;
    }
  }

.partner__case-head {
  margin: clamp(40px, 6vw, 70px) 0 clamp(24px, 4vw, 36px);
}
.partner__case-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #172033;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}
.partner__case-title::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ea580c;
  box-shadow: 0 0 0 7px rgba(234,88,12,.12);
}
.partner__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.partner-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(234,88,12,.14);
  box-shadow: 0 22px 60px rgba(234,88,12,.09);
}
.partner-card__body {
  position: relative;
  z-index: 1;
}
.partner-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-bottom: 22px;
  padding: 7px 18px;
  border-radius: 999px;
  color: #fff;
  background: #ea580c;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}
.partner-card__title {
  margin: 0;
  color: #172033;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}
.partner-card__text {
  margin: 20px 0 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: .03em;
}
.partner-card__box {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}
.partner-card__section {
  padding: 22px 24px;
  border-radius: 22px;
  background: #fff7ed;
  border: 1px solid rgba(234,88,12,.12);
}
.partner-card__section-title {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  color: #ea580c;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
}
.partner-card__section-title::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: #ea580c;
}
.partner-card__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.partner-card__list li {
  position: relative;
  padding-left: 22px;
  color: #263241;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
}
.partner-card__list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 3px solid #ea580c;
  border-bottom: 3px solid #ea580c;
  transform: rotate(-45deg);
}
.partner-card__price {
  margin: 0;
  color: #172033;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.8;
}
.partner-card__price strong {
  color: #ea580c;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  letter-spacing: .03em;
}
.partner-card__price span {
  color: #6b7280;
  font-size: 14px;
  font-weight: 800;
}
.partner__note {
  margin: clamp(32px, 5vw, 54px) 0 0;
  padding: 28px clamp(24px, 4vw, 42px);
  border-radius: 26px;
  color: #263241;
  background: #fff;
  border: 1px solid rgba(234,88,12,.14);
  box-shadow: 0 18px 48px rgba(234,88,12,.08);
}
.partner__note p {
  margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: .03em;
}
.partner__note span {
  color: #ea580c;
  font-size: 120%;
}
@media (max-width: 960px) {
  .partner {
    padding: 48px 16px;
  }
  .partner__lead-highlight {
    grid-template-columns: 1fr;
  }
  .partner__list {
    grid-template-columns: 1fr;
  }
  .partner__sub-title {
    min-height: 86px;
    padding: 20px 22px;
    padding-right: 24vw;
    border-radius: 24px;
    font-size: 4.6vw;
    white-space: nowrap;
  }
  .partner__sub-title::after {
    right: 16px;
    bottom: -5px;
    font-size: 58px;
  }
  .partner__lead {
    padding: 26px 20px;
    border-radius: 24px;
  }
  .partner__lead-text {
    font-size: 15px;
    line-height: 1.9;
  }
  .partner__case-title {
    font-size: 23px;
  }
  .partner-card {
    padding: 26px 20px;
    border-radius: 24px;
  }
  .partner-card__section {
    padding: 20px;
    border-radius: 20px;
  }
  .partner__note {
    padding: 24px 20px;
    border-radius: 22px;
  }
}

.partner__lead-box {
  position: relative;
  padding-right: 350px;
}
.sapomin01 {
  position: absolute;
  right: 0;
  bottom: 0;
}
  @media (max-width: 1160px) {
    .partner__lead-box {
      position: relative;
      padding-right: 280px;
    }
    .sapomin01 {
      right: -20px;
    }
    .sapomin01 img {
      width: 260px;
      height: auto;
    }
  }
  @media (max-width: 760px) {
    .partner__lead-box {
      position: relative;
      padding-right: 0;
    }
    .sapomin01 {
      right: -30px;
      bottom: auto;
      top: -34vw;
    }
    .sapomin01 img {
      width: 26vw;
    }
  }

/* ==================================================
   08. フッター
================================================== */

.footer {
  position: relative;
  padding: 58px 20px 24px;
  color: #fff;
  background: #25549E;
}

.footer::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}

.footer::after {
  content: "WEB SUPPORT";
  position: absolute;
  right: clamp(18px, 4vw, 60px);
  bottom: 16px;
  color: rgba(255,255,255,.035);
  font-size: clamp(42px, 8vw, 118px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
  pointer-events: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(34px, 5vw, 80px);
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.footer__logo {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .06em;
}

.footer__tagline {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .04em;
}

.footer__company {
  margin-top: 28px;
}

.footer__company-name {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: .06em;
}

.footer__company-text {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .03em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .05em;
  text-decoration: none;
  transition: .25s;
}

.footer__link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.footer__link:hover {
  color: #25549E;
  background: #fff;
}

.footer__character {
  position: relative;
}

.footer__character-card {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.footer__character-img {
  position: absolute;
  top: -100%;
  right: 0;
  z-index: 1;
}
  @media (max-width: 760px) {
    .footer__logo img {
      width: 80vw;
      max-width: 400px;
      height: auto;
    }
    .footer__character-img {
      top: -30px;
    }
    .footer__character-img img {
      width: 33vw!important;
      height: auto;
    }
  }

.footer__character-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #25549E;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
}

.footer__character-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: .04em;
  font-feature-settings: "palt";
}
.footer__character-title small {
  font-size: 1.4rem;
  display: block;
}

.footer__character-text {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .03em;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.footer__copy {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: right;
}

@media (max-width: 760px) {
  .footer {
    padding: 46px 16px 22px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }

  .footer__links {
    display: grid;
  }

  .footer__link {
    justify-content: center;
  }

  .footer__character-card {
    padding: 22px 20px 24px;
    padding-right: 25vw;
    border-radius: 24px;
  }

  .footer__character-img img {
    width: min(58vw, 210px);
  }

  .footer__copy {
    text-align: center;
  }
}

/* ページトップボタン */
.pagetop {
  position: fixed;
  right: clamp(16px, 2.5vw, 30px);
  bottom: clamp(16px, 2.5vw, 30px);
  z-index: 1000;
  display: grid;
  place-items: center;
  width: clamp(68px, 6.5vw, 90px);
  aspect-ratio: 1;
  padding: 0;
  overflow: visible;
  appearance: none;
  background: transparent;
  border: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  cursor: pointer;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pagetop.is-resetting {
  opacity: 0;
  visibility: hidden;
  transition: none;
}
.pagetop:focus-visible {
  outline: 3px solid #49bcb5;
  outline-offset: 5px;
  border-radius: 50%;
}
.pagetop__svg {
  display: block;
  width: 128%;
  max-width: none;
  height: auto;
  overflow: visible;
  opacity: 1;
  pointer-events: none;
  transform-origin: center;
}
.pagetop__penguin {
  transform-box: fill-box;
  transform-origin: center;
  animation: pagetop-swim 2.2s ease-in-out infinite;
}
.pagetop__body-shape {
  fill: #1e3343;
  stroke: #142632;
  stroke-width: 4;
  stroke-linejoin: round;
}
.pagetop__face {
  fill: #fff;
}
.pagetop__belly {
  fill: #f9fbfb;
}
.pagetop__eye {
  fill: #142632;
}
.pagetop__eye-highlight {
  fill: #fff;
}
.pagetop__beak {
  fill: #f7ad36;
  stroke: #e89a25;
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.pagetop__foot {
  fill: #f7ad36;
  stroke: #e89a25;
  stroke-width: 2;
  stroke-linejoin: round;
}
.pagetop__wing {
  fill: #1e3343;
  stroke: #142632;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: 50% 12%;
}
.pagetop__wing--left {
  animation: pagetop-wing-left 1.1s ease-in-out infinite;
}
.pagetop__wing--right {
  animation: pagetop-wing-right 1.1s ease-in-out infinite;
}
.pagetop__bubble {
  fill: rgb(255 255 255 / 25%);
  stroke: rgb(73 188 181 / 70%);
  stroke-width: 2.5;
  opacity: 0;
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: pagetop-bubble 2.4s ease-in infinite;
}
.pagetop__bubble--02 {
  animation-delay: 0.8s;
}
.pagetop__bubble--03 {
  animation-delay: 1.5s;
}
.pagetop:hover .pagetop__penguin {
  animation-duration: 1.3s;
}
.pagetop:hover .pagetop__wing--left,
.pagetop:hover .pagetop__wing--right {
  animation-duration: 0.65s;
}
.pagetop.is-swimming {
  pointer-events: none;
}
.pagetop.is-swimming .pagetop__svg {
  animation: pagetop-go-up 1s cubic-bezier(0.25, 0.7, 0.35, 1) forwards;
}
.pagetop.is-swimming .pagetop__penguin {
  animation: none;
}
.pagetop.is-swimming .pagetop__wing--left {
  animation: pagetop-wing-left-fast 0.22s ease-in-out infinite;
}
.pagetop.is-swimming .pagetop__wing--right {
  animation: pagetop-wing-right-fast 0.22s ease-in-out infinite;
}
.pagetop.is-swimming .pagetop__bubble {
  animation-duration: 0.7s;
}
@keyframes pagetop-swim {
  0%,
  100% {
    transform: translateY(2px) rotate(-3deg);
  }
  50% {
    transform: translateY(-6px) rotate(3deg);
  }
}
@keyframes pagetop-wing-left {
  0%,
  100% {
    transform: rotate(5deg) scaleY(1);
  }
  50% {
    transform: rotate(27deg) scaleY(0.94);
  }
}
@keyframes pagetop-wing-right {
  0%,
  100% {
    transform: rotate(-5deg) scaleY(1);
  }
  50% {
    transform: rotate(-27deg) scaleY(0.94);
  }
}
@keyframes pagetop-wing-left-fast {
  0%,
  100% {
    transform: rotate(0deg) scaleY(1);
  }
  50% {
    transform: rotate(38deg) scaleY(0.9);
  }
}
@keyframes pagetop-wing-right-fast {
  0%,
  100% {
    transform: rotate(0deg) scaleY(1);
  }
  50% {
    transform: rotate(-38deg) scaleY(0.9);
  }
}
@keyframes pagetop-bubble {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.5);
  }
  20% {
    opacity: 0.8;
  }
  60% {
    transform: translateY(-28px) translateX(-3px) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translateY(-58px) translateX(7px) scale(1.2);
  }
}
@keyframes pagetop-go-up {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }
  22% {
    opacity: 1;
    transform: translate3d(4px, -22px, 0) rotate(3deg) scale(1.02);
  }
  48% {
    opacity: 1;
    transform: translate3d(-4px, -58px, 0) rotate(-3deg) scale(1);
  }
  74% {
    opacity: 1;
    transform: translate3d(3px, -102px, 0) rotate(2deg) scale(0.96);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -155px, 0) rotate(-1deg) scale(0.88);
  }
}
@media (max-width: 760px) {
  .pagetop {
    right: 14px;
    bottom: 14px;
    width: 68px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pagetop,
  .pagetop__svg,
  .pagetop__penguin,
  .pagetop__wing,
  .pagetop__bubble {
    animation: none;
    transition-duration: 0.01ms;
  }
}

/* ==================================================
   08. ご相談フォーム
================================================== */
#contact {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(137,180,227,.24) 0, rgba(137,180,227,0) 34%),
    linear-gradient(180deg, #f6f9fd 0%, #fff 54%, #f6f9fd 100%);
}
#contact::before {
  position: absolute;
  top: 100px;
  right: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(39,88,168,.08);
  pointer-events: none;
  content: "";
}
#contact::after {
  position: absolute;
  bottom: 60px;
  left: -150px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(137,180,227,.16);
  pointer-events: none;
  content: "";
}
.contact__inner {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}
.contact__head {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.contact__sub-title {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 96px;
  margin: 0;
  padding: 24px clamp(24px, 4vw, 46px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,.16) 0, rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #2758A8 0%, #1f477f 100%);
  box-shadow: 0 22px 58px rgba(39,88,168,.22);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .05em;
}
.contact__sub-title::after {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: -10px;
  color: rgba(255,255,255,.08);
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
  content: "CONTACT";
}
.contact__lead {
  position: relative;
  margin: clamp(18px, 3vw, 28px) 0 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(39,88,168,.12);
  border-radius: 26px;
  color: #374151;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(39,88,168,.09);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .03em;
}
.contact__body {
  position: relative;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(39,88,168,.12);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(39,88,168,.12);
}
.form_area table {
  overflow: hidden;
  width: 100%;
  margin: 0 0 clamp(30px, 4vw, 46px);
  border: 1px solid #e2e8f0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  background: #fff;
}
.form_area tr:not(:last-child) th,
.form_area tr:not(:last-child) td {
  border-bottom: 1px solid #e5ebf3;
}
.form_area th {
  width: 300px;
  padding: 24px clamp(18px, 2.5vw, 30px);
  color: #172033;
  background: #f3f7fc;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
  vertical-align: middle;
}
.form_area th span {
  position: relative;
  display: block;
  padding-right: 58px;
}
.form_area th small {
  display: inline-block;
}
.form_area th em {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: .05em;
}
.form_area th .require {
  background: #e54d4d;
}
.form_area th .nini {
  background: #8b95a5;
}
.form_area td {
  padding: 18px clamp(18px, 2.5vw, 30px);
  color: #374151;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
}
.form_area tr:first-child th:first-child {
  border-radius: 19px 0 0;
}
.form_area tr:first-child td:last-child {
  border-radius: 0 19px 0 0;
}
.form_area tr:last-child th:first-child {
  border-radius: 0 0 0 19px;
}
.form_area tr:last-child td:last-child {
  border-radius: 0 0 19px;
}
.form_area tr:only-child th:first-child {
  border-radius: 19px 0 0 19px;
}
.form_area tr:only-child td:last-child {
  border-radius: 0 19px 19px 0;
}
.form-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: clamp(44px, 6vw, 72px) 0 clamp(20px, 3vw, 30px);
}
.form-heading::before {
  flex: 0 0 auto;
  width: 7px;
  height: clamp(30px, 3vw, 40px);
  border-radius: 999px;
  background: linear-gradient(180deg, #2758A8 0%, #89b4e3 100%);
  box-shadow: 0 6px 16px rgba(39,88,168,.2);
  content: "";
}
.form-heading::after {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(39,88,168,.25) 0%, rgba(39,88,168,0) 100%);
  content: "";
}
.form-heading h3 {
  flex: 0 0 auto;
  margin: 0;
  color: #172033;
  font-size: clamp(22px, 2.7vw, 30px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .06em;
}
.form_area td .wpcf7-text,
.form_area td .wpcf7-email,
.form_area td .wpcf7-tel,
.form_area td .wpcf7-number,
.form_area td .wpcf7-date,
.form_area td .wpcf7-select,
.form_area td textarea {
  width: 100%;
  margin: 4px 0;
  padding: 14px 16px;
  border: 1px solid #d8e0eb;
  border-radius: 12px;
  outline: none;
  color: #172033;
  background: #fdfefe;
  box-shadow: inset 0 1px 2px rgba(23,32,51,.04);
  font-family: inherit;
  font-size: 1.8rem;
  line-height: 1.6;
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}
.form_area td .wpcf7-select {
  appearance: auto;
}
.form_area td textarea {
  min-height: 220px;
  resize: vertical;
}
.form_area td .wpcf7-text:focus,
.form_area td .wpcf7-email:focus,
.form_area td .wpcf7-tel:focus,
.form_area td .wpcf7-number:focus,
.form_area td .wpcf7-date:focus,
.form_area td .wpcf7-select:focus,
.form_area td textarea:focus {
  border-color: #2758A8;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(39,88,168,.1);
}
.form_area .wpcf7-radio,
.form_area .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.form_area .wpcf7-list-item {
  margin: 0;
}
.form_area .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form_area input[type="radio"],
.form_area input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2758A8;
  cursor: pointer;
}
.form_area .wpcf7-list-item-label {
  color: #374151;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.7;
}
.form_area .wpcf7-not-valid {
  border-color: #e54d4d;
  background: #fffafa;
}
.form_area .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d93636;
  font-size: 1.5rem;
  font-weight: 700;
}
.doui_box {
  padding: 0 clamp(0px, 3vw, 30px) clamp(32px, 4vw, 46px);
  text-align: center;
}
.doui_box p {
  width: min(980px, 100%);
  margin: 0 auto 26px;
  color: #4b5563;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.9;
  text-align: left;
}
.doui_box .wpcf7-list-item {
  margin: 0;
}
.doui_check p {
  margin: 0;
  text-align: center;
}
.doui_check label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.doui_check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2758A8;
}
.doui_check .wpcf7-list-item-label {
  color: #172033;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.7;
}
.row-submit {
  text-align: center;
}
.submit-btn {
  position: relative;
  text-align: center;
}
.submit-btn input {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  min-height: 64px;
  padding: 16px 32px;
  border: 0;
  border-radius: 999px;
  outline: none;
  color: #fff;
  background: #F29F05;
  box-shadow: 0 16px 36px rgba(242,159,5,.26);
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .1em;
  cursor: pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    filter .2s ease;
}
.submit-btn input:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 42px rgba(242,159,5,.32);
}
.submit-btn input:focus-visible {
  outline: 3px solid rgba(39,88,168,.38);
  outline-offset: 4px;
}
.submit-btn input[disabled] {
  border: 1px solid #d1d5db;
  color: #8b95a5;
  background: #e5e7eb;
  box-shadow: none;
  opacity: 1;
  cursor: not-allowed;
  filter: none;
  transform: none;
}
.wpcf7-spinner {
  position: absolute;
  right: calc(50% - 12px);
  bottom: -34px;
  margin: 0;
}
.wpcf7 form .wpcf7-response-output {
  margin: 38px 0 0;
  padding: 16px 20px;
  border-width: 1px;
  border-radius: 14px;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}
.wpcf7 form .wpcf7-response-output:empty {
  display: none;
}
.form_area input::placeholder,
.form_area textarea::placeholder {
  color: #aab2bf;
  opacity: 1;
}
.form_area input:focus::placeholder,
.form_area textarea:focus::placeholder {
  color: transparent;
}
#consultation-type {
  display: block;
}
#consultation-type .wpcf7-list-item {
  display: block;
}
@media (max-width: 760px) {
  #contact {
    padding: 48px 16px;
  }
  #contact::before,
  #contact::after {
    display: none;
  }
  .contact__sub-title {
    min-height: 86px;
    padding: 20px 22px;
    border-radius: 24px;
    font-size: 4.6vw;
  }
  .contact__sub-title::after {
    right: 16px;
    bottom: -5px;
    font-size: 58px;
  }
  .contact__lead {
    padding: 24px 20px;
    border-radius: 22px;
    font-size: 15px;
    line-height: 1.9;
  }
  .contact__body {
    padding: 24px 18px 30px;
    border-radius: 26px;
  }
  .form_area table,
  .form_area tbody,
  .form_area tr,
  .form_area th,
  .form_area td {
    display: block;
    width: 100%;
  }
  .form_area table {
    overflow: visible;
    margin-bottom: 26px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .form_area tr {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fff;
  }
  .form_area tr + tr {
    margin-top: 16px;
  }
  .form_area tr:not(:last-child) th,
  .form_area tr:not(:last-child) td {
    border-bottom: 0;
  }
  .form_area th {
    padding: 14px 16px;
    border-radius: 0;
    background: #f3f7fc;
    font-size: 1.5rem;
  }
  .form_area tr:first-child th:first-child,
  .form_area tr:last-child th:first-child,
  .form_area tr:only-child th:first-child {
    border-radius: 0;
  }
  .form_area th span {
    padding-right: 56px;
  }
  .form_area th em {
    top: 0;
    min-width: 42px;
    min-height: 22px;
    padding: 2px 7px;
    font-size: 1.1rem;
  }
  .form_area td {
    padding: 14px;
    border-radius: 0;
    font-size: 1.5rem;
  }
  .form_area tr:first-child td:last-child,
  .form_area tr:last-child td:last-child,
  .form_area tr:only-child td:last-child {
    border-radius: 0;
  }
  .form-heading {
    gap: 10px;
    margin: 40px 0 18px;
  }
  .form-heading::before {
    width: 5px;
    height: 28px;
  }
  .form-heading h3 {
    font-size: 2rem;
    letter-spacing: .04em;
  }
  .form_area td .wpcf7-text,
  .form_area td .wpcf7-email,
  .form_area td .wpcf7-tel,
  .form_area td .wpcf7-number,
  .form_area td .wpcf7-date,
  .form_area td .wpcf7-select,
  .form_area td textarea {
    padding: 12px 13px;
    font-size: 1.6rem;
  }
  .form_area td textarea {
    min-height: 190px;
  }
  .form_area .wpcf7-radio,
  .form_area .wpcf7-checkbox {
    display: grid;
    gap: 10px;
  }
  .form_area .wpcf7-list-item label {
    align-items: flex-start;
  }
  .form_area input[type="radio"],
  .form_area input[type="checkbox"] {
    flex: 0 0 auto;
    margin-top: .25em;
  }
  .form_area .wpcf7-list-item-label {
    font-size: 1.5rem;
  }
  .doui_box {
    padding: 0 0 30px;
  }
  .doui_box p {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  .doui_check p {
    text-align: left;
  }
  .doui_check label {
    align-items: flex-start;
  }
  .doui_check input {
    flex: 0 0 auto;
    margin-top: .25em;
  }
  .doui_check .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
  .submit-btn input {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 15px 20px;
    font-size: 1.7rem;
  }
}

.form_area td p {
  font-size: 1.6rem;
}