@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
html{
  margin: 0 !important;
}

.only-sp{
  display: none !important;
}

.only-pc{
  display: block !important;
}

@media screen and (max-width: 820px) {
  .only-pc{
    display: none !important;
  }

  .only-sp{
    display: block !important;
  }

}

:root {
  --color-navy: #071a3f;
  --color-navy-2: #3269af;
  --color-blue: #1769b0;
  --color-blue-light: #eaf5fc;
  --color-ice: #f4f9fd;
  --color-gold: #c8a34b;
  --color-gold-light: #f7edc8;
  --color-accent: #ec402f;
  --color-green: #148446;
  --color-text: #24334a;
  --color-muted: #64748b;
  --color-border: #d8e2ec;
  --color-white: #fff;
  --font-sans: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --container: 1180px;
  --container-narrow: 960px;
  --header-height: 64px;
  --shadow-card: 0 18px 50px rgba(24, 53, 87, 0.12);
  --radius: 12px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}

body.has-open-menu {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f4c74e;
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-navy);
}

.l-container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.l-container--narrow {
  max-width: var(--container-narrow);
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 128px);
}

.section--soft {
  background: linear-gradient(135deg, #f8fbfe 0%, #edf6fc 100%);
}

.section--ice {
  background: var(--color-ice);
}

.section--navy {
  color: var(--color-white);
  background: var(--color-navy);
}

.section--navy::before,
.section--navy::after {
  position: absolute;
  content: "";
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.section--navy::before {
  top: -250px;
  left: -160px;
}

.section--navy::after {
  right: -170px;
  bottom: -260px;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  text-align: center;
  font-family: var(--font-serif);
}

.section-heading__en {
  margin: 0 0 9px;
  color: var(--color-gold);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.section--navy .section-heading h2 {
  color: var(--color-white);
}

.section-heading__lead {
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: clamp(15px, 1.5vw, 18px);
}

.section--navy .section-heading__lead {
  color: rgba(255, 255, 255, 0.78);
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 34px;
  border: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-blue);
  box-shadow: 0 10px 24px rgba(23, 105, 176, 0.24);
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.c-button::after {
  content: "›";
  margin-left: 12px;
  font-size: 22px;
  line-height: 1;
}

.c-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 105, 176, 0.32);
}

.c-button--accent {
  background: var(--color-accent);
  box-shadow: 0 10px 24px rgba(236, 64, 47, 0.28);
}

.c-button--small {
  min-height: 46px;
  padding: 10px 22px;
  font-size: 14px;
}

.c-button--wide {
  min-width: min(100%, 340px);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(7, 26, 63, 0.08);
}

.site-header__inner {
  width: min(calc(100% - 48px), 944px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-brand {
  display: block;
  flex: 0 0 auto;
  width: 62px;
  height: 52px;
}

.site-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 74px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav li a {
  position: relative;
  display: block;
  padding: 8px 15px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.site-nav li + li a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  content: "";
  background: #c8ced8;
  transform: translateY(-50%);
}

.site-nav li a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.site-nav li a:hover::after {
  transform: scaleX(1);
}

.site-header__cta {
  display: block;
  flex: 0 0 218px;
  width: 218px;
  height: 44px;
  transition: opacity var(--transition);
}

.site-header__cta:hover {
  opacity: 0.82;
}

.site-header__cta img {
  width: 100%;
  height: 100%;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - var(--header-height)));
  background: linear-gradient(110deg, #f9fcfe 0%, #edf6fc 53%, #d8ebf8 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(23, 105, 176, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 105, 176, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  min-height: min(760px, calc(100vh - var(--header-height)));
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 72px;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 5px 14px;
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.78);
  border-left: 3px solid var(--color-gold);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero__lead {
  margin: 16px 0 28px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.7vw, 36px);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero__badges {
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.hero__badges li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 105, 176, 0.25);
  border-radius: 50%;
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.hero__badges strong {
  font-size: 16px;
}

.hero__badges span {
  font-size: 12px;
}

.hero__visual {
  position: relative;
  align-self: end;
}

.hero__visual img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 18px 36px rgba(7, 26, 63, 0.18));
}

.hero__note {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: min(340px, 78%);
  padding: 18px 24px;
  margin: 0;
  color: var(--color-white);
  background: rgba(7, 26, 63, 0.88);
  border-left: 5px solid var(--color-gold);
  line-height: 1.65;
}

.problems__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.problem-card span {
  margin-right: 18px;
  color: var(--color-gold);
  font-family: Georgia, serif;
  font-size: 32px;
}

.problem-card p {
  margin: 0;
  font-weight: 700;
  line-height: 1.7;
}

.problems__answer {
  position: relative;
  z-index: 1;
  margin: 48px 0 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(21px, 3vw, 32px);
}

.problems__answer strong {
  color: var(--color-gold);
}

.about__grid,
.service-scope__grid,
.message__grid,
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 6vw, 80px);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__visual::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  left: -24px;
  width: 65%;
  height: 65%;
  content: "";
  background: var(--color-blue-light);
}

.about__visual img,
.benefits__feature img,
.service-scope__grid > img,
.message__grid > img,
.contact__aside img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.about__content > p,
.message__content > p {
  margin: 0 0 20px;
}

.about__catch {
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.7;
}

.about__catch strong {
  color: var(--color-blue);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  padding: 11px 13px 11px 38px;
  background: var(--color-ice);
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  margin-left: -24px;
  margin-right: 9px;
  color: var(--color-blue);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  position: relative;
  padding: 38px 30px 32px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.benefit-card__number {
  position: absolute;
  top: -17px;
  left: 50%;
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-gold);
  font-family: Georgia, serif;
  transform: translateX(-50%);
}

.benefit-card h3 {
  margin: 8px 0 12px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 23px;
}

.benefit-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.benefits__feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  max-width: 920px;
  margin: 64px auto 0;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.benefits__feature img {
  height: 100%;
  min-height: 310px;
}

.benefits__feature p {
  padding: 42px;
  margin: 0;
}

.benefits__feature small,
.benefits__feature strong {
  display: block;
}

.benefits__feature small {
  color: var(--color-gold);
  font-weight: 700;
}

.benefits__feature strong {
  margin: 10px 0 16px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
}

.cta-band {
  padding: clamp(58px, 5.2vw, 104px) 20px clamp(70px, 3.6vw, 72px);
  border-bottom: 2px solid #d4b44e;
  background: linear-gradient(110deg, #12529a 0%, #2d72bd 48%, #5a91cf 100%);
}

.service-cta__inner {
  width: min(840px, 100%);
  margin: 0 auto;
}

.service-cta__panel {
  position: relative;
  width: min(707px, 100%);
  min-height: 356px;
  border: 2px solid #b38d1c;
  background: #fff;
}

.service-cta__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 0;
  text-align: center;
}

.service-cta__lead,
.service-cta__supervisor,
.service-cta__copy h2 img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.service-cta__lead {
  width: 559px;
  margin-bottom: 18px;
}

.service-cta__lead-sp {
  display: none;
}

.service-cta__supervisor {
  width: 298px;
  margin-bottom: 10px;
}

.service-cta__copy h2 {
  margin: 0 0 14px;
}

.service-cta__copy h2 img {
  width: 453px;
}

.service-cta__tagline {
  margin: 0;
  color: #a48419;
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.service-cta__portrait {
  position: absolute;
  z-index: 3;
  top: -54px;
  left: 568px;
  display: block;
  width: 285px;
  height: auto;
}

.service-cta__button {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(360px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: -118px 0 0 196px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-cta__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.service-cta__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.service-cta__button span:last-child {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #fff;
}

.service-cta__note {
  position: relative;
  z-index: 4;
  width: 540px;
  margin: 10px 0 0 104px;
  color: #171a38;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 820px) {
  .cta-band {
    padding: 9.3vw 0 8.2vw 4.4vw;
  }

  .service-cta__panel {
    min-height: 70.7vw;
    background: transparent;
    border: none;
  }

  .service-cta__panel-banner{
    display: block;
    width: 100%;
  }

  .service-cta__panel-banner img{
    display: block;
    width: 100%;
    height: auto;
  }

  .service-cta__copy {
    width: 100%;
    padding: 4.8vw 3.2vw 3vw;
    text-align: left;
  }

  .service-cta__lead {
    display: none;
  }

  .service-cta__lead-sp {
    display: block;
    width: 58%;
    margin: 0 0 5.5vw 7vw;
    color: #171a38;
    font-family: var(--font-sans);
    font-size: 4.3vw;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.03em;
    text-align: center;
  }

  .service-cta__supervisor {
    width: 57vw;
    margin: 0 0 4vw 0;
  }

  .service-cta__copy h2 {
    margin-bottom: 4vw;
  }

  .service-cta__copy h2 img {
    width: 80vw;
    margin-left: 0;
  }

  .service-cta__tagline {
    width: 68%;
    font-size: 5.3vw;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }

  .service-cta__portrait {
    top: auto;
    left: auto;
    right: -0.2vw;
    width: 38vw;
  }

  .service-cta__button {
    width: calc(100% - 4.4vw);
    min-height: 15.5vw;
    gap: 5vw;
    margin: 6.2vw 0 0;
    font-size: 6.3vw;
  }

  .service-cta__button span:last-child {
    border-top-width: 2.1vw;
    border-bottom-width: 2.1vw;
    border-left-width: 2.8vw;
  }

  .service-cta__note {
    width: calc(100% - 4.4vw);
    margin: 3vw 0 0;
    color: #fff;
    font-size: 3.8vw;
  }
}

.cta-card {
  text-align: center;
}

/* Limited campaign */
.campaign {
  position: relative;
  color: #171a38;
}

.campaign__bg{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -1;
}

.campaign__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign__target {
  min-height: 112px;
  background: #171a38;
}

.campaign__target-inner {
  position: relative;
  display: flex;
  width: min(760px, calc(100% - 40px));
  min-height: 112px;
  align-items: center;
  padding-left: 155px;
  margin: 0 auto;
}

.campaign__target img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 129px;
  height: auto;
}

.campaign__target p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.campaign__body {
  min-height: 590px;
  padding: 36px 20px 54px;
}

.campaign h2 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-align: center;
}

.campaign h2 span {
  color: #a48318;
}

.campaign__title-sm {
  color: inherit !important;
  font-size: 45px;
}

.campaign h2 small {
  display: block;
  font-size: 50px;
}

.campaign__cards {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  justify-content: center;
  gap: 48px;
}

.campaign__card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: center;
  padding: 44px 18px 22px;
  border: 2px solid #a78318;
  background: #fff;
  box-shadow: 7px 8px 5px rgba(73, 59, 15, 0.12);
  overflow: hidden;
  text-align: center;
}

.campaign__corner {
  position: absolute;
  width: 82px;
  height: auto;
}

.campaign__corner--tl {
  top: -1px;
  left: -1px;
}

.campaign__corner--br {
  right: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}

.campaign__card p {
  margin: 0 0 5px;
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 700;
}

.campaign__card h3 {
  margin: 0;
  color: #a48318;
  font-family: var(--font-serif);
  font-size: 29px;
  line-height: 1.35;
}

.campaign__icon {
  width: auto;
  max-width: 169px;
  max-height: 132px;
  margin-top: auto;
  object-fit: contain;
}

.campaign__frequency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 22px 0 0;
  font-size: 22px;
}

.campaign__frequency span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 820px) {
  .campaign__target {
    min-height: 19.5vw;
  }

  .campaign__target-inner {
    width: 100%;
    min-height: 19.5vw;
    padding: 2vw 3vw 2vw 19vw;
  }

  .campaign__target img {
    left: 2.2vw;
    width: 15.6vw;
  }

  .campaign__target p {
    font-size: clamp(20px, 4.27vw, 35px);
    line-height: 1.45;
  }

  .campaign__body {
    min-height: 0;
    padding: 7.5vw 4vw 9vw;
  }

  .campaign h2 {
    margin-bottom: 7.5vw;
    font-size: clamp(35px, 6.1vw, 50px);
    line-height: 1.35;
  }

  .campaign__title-sm {
    font-size: clamp(30px, 5.49vw, 45px);
  }

  .campaign h2 small {
    font-size: clamp(30px, 6.1vw, 50px);
  }

  .campaign__cards {
    grid-template-columns: minmax(0, 54.5vw);
    gap: 8.5vw;
  }

  .campaign__card {
    min-height: 55.5vw;
    padding: 10vw 4vw 5vw;
  }

  .campaign__corner {
    width: 15vw;
  }

  .campaign__card p {
    font-size: 5.3vw;
  }

  .campaign__card h3 {
    margin-bottom: 2.5vw;
    font-size: 5.5vw;
  }

  .campaign__icon {
    max-width: 31vw;
    max-height: 25vw;
  }

  .campaign__frequency {
    gap: 3vw;
    margin-top: 6vw;
    font-size: 3.5vw;
  }
}

/* Service about section */
.service-about {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(32px, 4.5vw, 90px) clamp(16px, 4vw, 40px) clamp(40px, 5vw, 100px);
  color: #171a38;
}

.service-about__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

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

.service-about__content {
  display: flex;
  width: 100%;
  max-width: 744px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.service-about__badge {
  position: absolute;
  bottom: clamp(-50px, -2.5vw, -26px);
  left: 0;
  right: 0;
  z-index: 99;
  margin: auto;
  display: grid;
  width: clamp(52px, 5vw, 100px);
  height: clamp(52px, 5vw, 100px);
  border-radius: 50%;
  color: var(--color-white);
  background: #9b8028;
  font-size: clamp(12px, 1.2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  place-items: center;
}

.service-about__heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.45vw, 9px);
  margin: 0 0 clamp(24px, 2.8vw, 56px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.service-about__title {
  font-family: var(--font-serif);
  font-size: 59px;
  font-weight: 500;
}

.service-about__title-particle {
  font-size: 35px;
}

.service-about__lead {
  font-family: var(--font-serif);
  font-size: 35px;
  font-weight: 500;

}

.service-about__kv,
.service-about__resolve {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.service-about__kv {
  margin-bottom: clamp(28px, 3.2vw, 64px);
}

.service-about__resolve {
  margin-bottom: 0;
}

.service-about__kv img,
.service-about__resolve img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.service-about__strong-point{
  padding: 0 0 115px 0;
  background: #f6fcfe;
  width: 100%;
}
.service-about__strong-point__inner{
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.service-about__point-wrapper{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 66px;
  margin-top: clamp(57.5px, 5.75vw, 115px);
}

.service-about__point{
  position: relative;
  max-width: 620px;
  width: fit-content;
  padding: 36px 0 24px;
  border: 2px solid var(--color-navy-2);
  background-color: var(--color-white);
}

.service-about__point-badge{
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
}

.service-about__point-badge-text{
  padding: 8px 16px;
  margin: 0;
  color: var(--color-white);
  background-color: var(--color-navy-2);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  white-space: nowrap;
}

.service-about__point-badge-arrow{
  display: block;
  width: 71px;
  height: auto;
  margin-top: -10px;
}

.service-about__point-catch-wrap{
  margin-bottom: 16px;
  text-align: center;
}

.service-about__point-catch{
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.39vw, 36px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.service-about__point-em{
  color: #9b8028;
}

.service-about__point-underline{
  display: block;
  width: min(100%, 487px);
  height: 39px;
  margin: -4px auto 0;
  background: url("../images/service-about__point-underline.png") center / contain no-repeat;
}

.service-about__point-image{
  display: block;
  margin-bottom: 16px;

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

.service-about__point-lead{
  margin: 0 0 16px;
  color: var(--color-blue);
  font-size: clamp(20px, 3.05vw, 25px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: left;
  padding: 0 20px;
}

.service-about__point-text{
  margin: 0;
  color: var(--color-text);
  font-size: clamp(16px, 2.44vw, 18px);
  letter-spacing: 0.05em;
  line-height: 1.9;
  padding: 0 20px;
}

.service-about__point--2 .service-about__point-underline{
  margin-top: -8px;
}

.service-about__point--3 .service-about__point-underline{
  width: min(100%, 420px);
  margin-top: -6px;
}

.service-about__software{
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 87px;
}

@media (max-width: 820px) {
  .service-about {
    padding: clamp(28px, 7vw, 48px) clamp(12px, 4vw, 24px) clamp(32px, 8vw, 56px);
  }

  .service-about__content {
    max-width: none;
  }

  .service-about__badge {
    width: 12vw;
    height: 12vw;
    margin-bottom: clamp(10px, 2.8vw, 20px);
    font-size: 3.2vw;
  }

  .service-about__heading {
    gap: 1.8vw;
    margin-bottom: clamp(20px, 5.5vw, 36px);
    letter-spacing: 0.06em;
  }

  .service-about__title {
    font-size: clamp(30px, 7.2vw, 59px);
  }

  .service-about__title-particle {
    font-size: clamp(16px, 4.27vw, 35px);
  }

  .service-about__lead {
    font-size: clamp(16px, 4.27vw, 35px);
    line-height: 1.65;
  }

  .service-about__kv {
    margin-bottom: clamp(24px, 6.5vw, 40px);
  }

  .service-about__point-wrapper{
    flex-direction: column;
    max-width: 700px;
    width: 93%;
    margin: 115px auto 0;
  }

  .service-about__point{
    max-width: none;
    width: 100%;
    padding: clamp(28px, 6.8vw, 36px) clamp(16px, 3.9vw, 20px) clamp(20px, 4.9vw, 24px);
  }

  .service-about__point-badge-text{
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2.9vw, 16px);
    font-size: clamp(11px, 2.68vw, 14px);
  }

  .service-about__point-badge-arrow{
    width: clamp(52px, 12.68vw, 71px);
  }

  .service-about__point-underline{
    height: clamp(24px, 5.85vw, 39px);
  }

  .service-about__software{
    max-width: 700px;
    width: 93%;
    margin: 100px auto 0;
  }
}

/* Honest section */
.honest {
  position: relative;
  overflow: hidden;
  width: 100%;
  color: var(--color-white);
  background: #f8fdfe;
}

.honest__bg {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.honest__bg img {
  display: block;
  width: 100%;
  min-width: 1280px;
  height: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

.honest__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12%;
  text-align: center;
  padding: 100px 0;
}

.honest__title {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 0.8vw, 16px);
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(28px, 1.75vw, 35px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.honest__lead,
.honest__line {
  margin: 0;
  font-size: 30px;
}

.honest__dots {
  display: inline-flex;
  vertical-align: bottom;
}

.honest__dot-char {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 30px;
}

.honest__dot {
  display: block;
  margin-bottom: clamp(2px, 0.25vw, 5px);
  color: #d6c6af;
  font-size: clamp(14px, 1.75vw, 35px);
  font-weight: 700;
  line-height: 1;
}

.honest__quote {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 0.7vw, 14px);
  margin-top: 60px;
  font-size: clamp(35px, 2vw, 40px);
}

.honest__quote .honest__line {
  font-size: inherit;
}

.honest__comma {
  display: block;
  flex-shrink: 0;
  width: 20px;
}

.honest__comma img {
  display: block;
  width: 30px;
  height: auto;
}

.honest__comma--right img {
  height: 25px;
}

.honest__line--highlight,
.honest__line--closing {
  font-family: var(--font-serif);
  font-size: clamp(35px, 2vw, 40px);
}

.honest__line--highlight {
  color: #d6c6af;
}

@media (max-width: 820px) {
  .honest__content {
    padding: 0 8%;
  }

  .honest__title {
    gap: 3vw;
    font-size: clamp(14px, 4vw, 30px);
    letter-spacing: 0.06em;
  }

  .honest__dot {
    font-size: clamp(14px, 4.67vw, 35px);
  }

  .honest__quote {
    gap: 2.5vw;
  }

  .honest__comma img {
    width: clamp(32px, 10.67vw, 80px);
  }

  .honest__bg img{
    width: 100%;
    height: auto;
    min-width: 0;
  }
}


/* difference */
.difference {
  background: #f6fcfe;
  padding-bottom: clamp(40px, 4.5vw, 68px);
}

.difference__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.difference__title__img {
  display: flex;
  max-width: 540px;
}

.difference__circle {
  display: flex;
  max-width: 695px;
}

.difference__text-wrapper {
  width: 100%;
  margin-top: clamp(28px, 3.2vw, 64px);
  padding: 0 clamp(12px, 3vw, 24px);
  text-align: center;
}

.difference__catch {
  margin: 0 0 clamp(20px, 2.2vw, 40px);
  color: #171a38;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.55vw, 31px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.65;
}

.difference__mark {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-decoration-line: underline;
  text-decoration-color: #ff720060;
  text-decoration-thickness: 11px;
  text-underline-offset: -0.2em;
}

.difference__copy {
  margin: 0;
  color: #171a38;
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.35vw, 27px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.85;
}

.difference__em {
  color: #b8924a;
  font-style: normal;
  -webkit-text-emphasis: filled #ec402f;
  text-emphasis: filled #ec402f;
  -webkit-text-emphasis-position: over;
  text-emphasis-position: over;
}

@media (max-width: 820px) {
  .difference__inner{
    max-width: 700px;
    width: 91%;
    margin: 0 auto;
  }
  .difference__text-wrapper {
    margin-top: clamp(24px, 6vw, 40px);
  }

  .difference__catch {
    margin-bottom: clamp(16px, 4.5vw, 28px);
    font-size: clamp(15px, 4.1vw, 31px);
    letter-spacing: 0.04em;
    line-height: 1.7;
  }

  .difference__copy {
    font-size: clamp(13px, 3.55vw, 27px);
    letter-spacing: 0.04em;
    line-height: 1.9;
  }
}

/* feature */
.feature-point-wrapper{
  display: flex;
  flex-direction: column;
  background-color: #f4f9ff;
  padding: 60px 0;
  align-items: center;
  &:nth-of-type(2n){
    background-color: #fff;
  }
}

.feature-point{
  max-width: 552px;
  width: 100%;
}

.feature-point__header{
  display: flex;
  flex-direction: row;
  align-items:flex-end;
  margin-bottom: 24px;
  gap: 34px;
}

.feature-point__icon{
  max-width: 65px;
  height: auto;
  width: 100%;
}

.feature-point__title{
  font-size: 35px;
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-serif);
}

@media screen and (max-width: 820px){
  .feature-point{
    max-width: 610px;
    width: 80%;
  }

  .feature-point__header{
    gap: clamp(14px, 3.41vw, 28px);
  }

  .feature-point__title{
    font-family: var(--font-serif);
    font-size: clamp(20px, 4.88vw, 40px);
    letter-spacing: 0.14em;
  }

  .feature-point__text{
    font-size: clamp(15px, 3.66vw, 30px);
  }

}


/* works */
.works{
  position: relative;
  padding: 100px 0;
}

.works__bg{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  img{
    display: block;
    height: 100%;
    object-fit: cover;
  }
}

.works__title{
  text-align: center;
  font-size: 50px;
}

.works__content-wrapper{
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 60px auto 0;
  gap: 130px;
  justify-content: center;
}

.work-item{
  max-width: 530px;
  width: calc(50% - 65px);
}

.work-item__header{
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}

.work-item__bar{
  flex: 0 0 10px;
  width: 10px;
  background-color: var(--color-blue);
}

.work-item__title{
  margin: 0;
  color: var(--color-blue);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.work-item__image{
  display: block;
  margin-bottom: 16px;

  img{
    width: 100%;
    height: auto;
  }
}

.work-item__problem{
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.work-item__arrow{
  display: block;
  width: 0;
  height: 0;
  margin: 0 auto 20px;
  border-top: 12px solid var(--color-blue);
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: relative;
  z-index: 2;
}

.work-item__result{
  background-color: var(--color-white);
  padding: 20px;
  margin-top: -25px;

  p{
    margin: 0;
    color: var(--color-blue);
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 820px) {
  .works__content-wrapper{
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 60px;
  }
  .work-item{
    max-width: 670px;
    width: 90%;
  }

  .work-item__title{
    font-size: clamp(20px, 4.88vw, 28px);
    letter-spacing: 0.14em;
  }

  .work-item__problem{
    font-size: clamp(14px, 3.41vw, 16px);
  }

  .work-item__result p{
    font-size: clamp(16px, 3.9vw, 20px);
  }
}

/* cta-enriched */
.cta-enriched{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-enriched__bg{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  img{
    display: block;
    height: 100%;
    object-fit: cover;
  }
}

.cta-enriched__portrait{
  position: absolute;
  z-index: 3;
  bottom: -90px;
  left: 568px;
  width: auto;
  height: 376px;
}

.cta-enriched__panel{
  position: relative;
  width: min(707px, 100%);
  margin: 0 auto 90px;
}

.cta-enriched__title{
  margin: 60px 0 50px;
  background-color: #fff;
  width: 100%;
  color: #216338;
  text-align: center;
}

.cta-enriched__subtitle{
  max-width: 750px;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.cta-enriched-vertical-content{
  display: flex;
  align-items: flex-start;
  max-width: 1115px;
  width: 100%;
  margin-bottom: 50px;
}

.cta-enriched-vertical-content-img-wrapper,
.cta-enriched__text {
  flex: 0 0 50%;
  width: 50%;
}

.cta-enriched__text{
  padding-left: 20px;
  color: #fff;
  font-size: 18px;
  letter-spacing: .1em;
  line-height: 1.8;
}

.cta-enriched__actions{
  max-width: none;
  width: 100%;
  background-color: #fff;
  padding: 40px 60px 32px;
  border: 2px solid #9b8028;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.cta-enriched__actions-title{
  max-width: 562px;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.cta-enriched__actions .service-cta__button {
  margin: 0;

}

.cta-enriched__actions .service-cta__button img {
  display: block;
  width: 100%;
  height: auto;
}

.cta-enriched__button {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(360px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #aa1713, #d32b23);
  box-shadow: 0 5px 12px rgba(57, 9, 8, 0.18);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cta-enriched__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cta-enriched__button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.cta-enriched__button span:last-child {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid #fff;
}

.cta-enriched__note {
  position: relative;
  z-index: 4;
  width: 540px;
  margin-top: 10px;
  color: #171a38;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .cta-enriched__title{
    font-size: clamp(20px, 5.49vw, 45px);
  }

  .cta-enriched__subtitle{
    max-width: 650px;
    width: 90%;
  }

  .cta-enriched-vertical-content{
    flex-direction: column;
    align-items: center;
    max-width: 650px;
    width: 90%;
  }

  .cta-enriched-vertical-content-img-wrapper, .cta-enriched__text{
    width: 100%;
  }

  .cta-enriched__text{
    font-size: clamp(15px, 3.66vw, 30px);
  }

  .cta-enriched {
    overflow-x: hidden;
  }

  .cta-enriched__panel {
    position: static;
    width: 100%;
    margin: 0 0 90px;
  }

  .cta-enriched__portrait {
    top: auto;
    height: auto;
    width: 38vw;
    max-width: none;
    bottom: clamp(45px, 11vw, 90px);
    left: auto;
    right: -40px;
    transform: none;
    z-index: 5;
  }

  .cta-enriched__actions {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    align-self: stretch;
    margin-right: 0;
    padding: clamp(20px, 4.9vw, 40px) 20vw clamp(16px, 3.7vw, 24px) clamp(12px, 3.7vw, 20px);
  }

  .cta-enriched__actions-title {
    width: 100%;
    max-width: none;
  }

  .cta-enriched__actions-title img {
    display: block;
    width: 100%;
    height: auto;
  }

  .cta-enriched__actions .service-cta__button {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: clamp(10px, 2.4vw, 20px) 0 0;
  }

  .cta-enriched__actions .service-cta__button img {
    display: block;
    width: 100%;
    height: auto;
  }

  .cta-enriched__note {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: clamp(8px, 2vw, 14px) 0 0;
    font-size: clamp(12px, 3.8vw, 14px);
  }
}

/* pricing */
.pricing{
  background: #f8fbff;
}

.pricing__title{
  text-align: center;
}

.pricing__table-wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: clamp(42px, 4.2vw, 84px);
}

.pricing__table{
  max-width: 740px;
  width: 100%;
}

.pricing__table-title{
  font-size: 35px;
  letter-spacing: 0;
}

@media screen and (max-width: 820px) {
  .pricing__table{
    max-width: 680px;
    width: 91%;
  }

  .pricing__table-title{
    margin-bottom: 0;
    font-size: clamp(24px, 3.66vw, 30px);
  }

}

/* flow */
.flow{
  position: relative;
  padding: 100px 0;
}

.flow__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  display: block;
  z-index: -1;
  img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.flow__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__title--base {
  font-family: var(--font-serif);
  font-size: 50px;
}

.section__title--base::after {
  display: block;
  width: 120px;
  height: 1px;
  margin: 16px auto 0;
  background-color: rgb(50, 105, 175);
  content: "";
}

@media screen and (max-width: 820px) {
  .flow{
    padding: 50px 0;
  }
  .section__title--base{
    font-size: clamp(32px, 5.49vw, 45px);
  }
}


.flow__content-wrapper{
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow__text{
  font-size: 25px;
}

@media screen and (max-width: 820px) {
  .flow__content-wrapper, .flow__text{
    max-width: 680px;
    width: 91%;
  }

  .flow__text{
    font-size: clamp(17.5px, 4.27vw, 35px);
  }
}

/* campaign-other-pattern */
.campaign__vertical-content-wrapper{
  display: flex;
  flex-direction: column;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}

.campaign__v-item{
  display: block;
  img{
    display: block;
    width: 100%;
  }
}

.campaign-other__bg{
  position: absolute;
  width: 100%;
  display: block;
  height: 100%;
  z-index: -1;
}

.campaign-other__bg img{
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

/* faq */
.faq{
  background-color: #fbfbfb;
}

.faq__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__content-wrapper{
  max-width: 987px;
  width: 100%;
  padding: 50px 20px 80px;
  background-color: white;
  box-shadow: var(--shadow-card);
}

.faq__entries{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 48px;
  max-width: 780px;
  margin: 0 auto;
}

.faq-entry{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-entry__question,
.faq-entry__answer{
  display: grid;
  grid-template-columns: 2.2em 1fr;
  column-gap: 0.2em;
  align-items: start;
  margin: 0;
}

.faq-entry__label{
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.6;
}

.faq-entry__label--q{
  color: var(--color-blue);
  font-size: 25px;
}

.faq-entry__question-text{
  margin: 0;
  color: var(--color-blue);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.faq-entry__label--a{
  color: #9b8028;
  font-size: 20px;
}

.faq-entry__answer-text{
  margin: 0;
  color: #232441;
  font-family: var(--font-sans);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.9;
  font-weight: 600;
}

@media screen and (max-width: 820px) {
  .faq__content-wrapper{
    max-width: 680px;
    width: 91%;
    padding-bottom: 60px;
    background-color: transparent;
    box-shadow: none;
  }

  .faq__entries{
    gap: 32px;
  }

  .faq-entry{
    gap: 10px;
  }

  .faq-entry__label--q,
  .faq-entry__question-text{
    font-size: clamp(24px, 4.27vw, 35px);
  }

  .faq-entry__label--a,
  .faq-entry__answer-text{
    font-size: clamp(18px, 3.66vw, 30px);
  }
}

/* about */
.about{
  position: relative;
}

.about__bg{
  position: absolute;
  width: 100%;
  display: block;
  height: 100%;
  z-index: -1;
  img{
    display: block;
    object-fit: cover;
    height: 100%;
  }
}

.about__inner{
  padding: 100px 0;
  margin: 0 auto;
  max-width: 745px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__title{
  width: 100%;
}

.about__title--1{
  max-width: 523px;
  width: 100%;
  height: auto;
  align-self: baseline;
}

.about__text{
  font-size: 18px;
}

@media screen and (max-width: 820px) {
  .about__inner{
    max-width: 680px;
    width: 91%;
    padding: 50px 0;
  }

  .about__title--1{
    max-width: 540px;
    width: 72%;
  }

  .about__text{
    font-size: clamp(16px, 3.66vw, 30px);
  }
}

/* comment */
.comment__inner{
  padding: 100px 0;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comment__title{
  font-family: var(--font-serif);
  width: 100%;
  position: relative;
  text-align: center;
  padding: 15px 0 30px;
  font-size: 38px;
  line-height: 1;
  color: #fff;
  & > img{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    width: 72%;
    z-index: -1;
  }
}

.comment__content-wrapper{
  max-width: 755px;
  width: 100%;
}

.comment__thumbnail{
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto 50px;
}

.comment__subtitle{
  margin-bottom: 30px;
}

.comment__subtitle-img{
  width: 100%;
  display: block;
}

.comment__name{
  display: flex;
  margin: 0 0 0 auto;
  width: 124px;
  height: auto;
}

@media screen and (max-width: 820px) {
  .comment__inner{
    padding: 50px 0;
  }

  .comment__title{
    line-height: 1;
    padding: 20px 0 30px;
    font-size: clamp(16px, 5.49vw, 45px)
  }

  .comment__title > img{
    width: 97%;
  }

  .comment__text{
    font-size: clamp(16px, 3.66vw, 30px);
  }

  .comment__content-wrapper{
    max-width: 680px;
    width: 91%;
  }
}



.cta-card__eyebrow {
  margin: 0 0 8px;
  color: var(--color-gold-light);
  font-weight: 700;
}

.cta-card h2 {
  margin: 0 0 28px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.5;
}

.cta-card h2 em {
  color: #f6d879;
  font-style: normal;
}

.cta-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.cta-card__tel {
  display: flex;
  flex-direction: column;
  color: var(--color-white);
  line-height: 1.35;
}

.cta-card__tel small {
  font-size: 12px;
}

.cta-card__tel strong {
  font-family: Arial, sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.reasons__list,
.features__list {
  display: grid;
  gap: 58px;
}

.reason-card,
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.reason-card:nth-child(even) .reason-card__image,
.feature-card:nth-child(even) .feature-card__image {
  order: 2;
}

.reason-card__image img,
.feature-card__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.reason-card__content > span,
.feature-card__content > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 1;
}

.reason-card h3,
.feature-card h3 {
  margin: 0 0 15px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
}

.reason-card p,
.feature-card p {
  margin: 0;
  color: var(--color-muted);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.case-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.case-card__content {
  padding: 26px;
}

.case-card__meta {
  margin: 0 0 8px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 700;
}

.case-card h3 {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.55;
}

.case-card__content > p:last-child {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.service-scope__grid {
  position: relative;
  z-index: 1;
}

.service-scope__content > p {
  margin-top: 0;
}

.service-scope__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.service-scope__items li {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  text-align: center;
}

.service-scope__note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  text-align: center;
}

.price-card--recommended {
  border: 2px solid var(--color-blue);
  box-shadow: var(--shadow-card);
  transform: translateY(-12px);
}

.price-card__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  min-width: 120px;
  padding: 5px 18px;
  margin: 0;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-blue);
  font-size: 12px;
  font-weight: 700;
  transform: translateX(-50%);
}

.price-card h3 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 25px;
}

.price-card__limit {
  margin: 8px 0 18px;
  color: var(--color-muted);
  font-size: 13px;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 0 0 24px;
  color: var(--color-navy);
  line-height: 1;
}

.price-card__price small {
  margin-right: 4px;
}

.price-card__price strong {
  color: var(--color-blue);
  font-family: Arial, sans-serif;
  font-size: clamp(37px, 4vw, 50px);
}

.price-card__price span {
  font-size: 12px;
}

.price-card ul {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
  text-align: left;
}

.price-card li {
  padding: 10px 4px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--color-green);
  font-weight: 700;
}

.pricing__note {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--color-muted);
  font-size: 12px;
  text-align: center;
}

.flow__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0 0 56px;
  list-style: none;
  counter-reset: flow;
}

.flow__list li {
  position: relative;
  padding: 28px 22px;
  background: var(--color-white);
  box-shadow: 0 12px 32px rgba(24, 53, 87, 0.08);
}

.flow__list li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -17px;
  content: "›";
  color: var(--color-gold);
  font-size: 34px;
  transform: translateY(-50%);
}

.flow__list span {
  color: var(--color-gold);
  font-family: Georgia, serif;
  font-size: 34px;
}

.flow__list h3 {
  margin: 8px 0;
  color: var(--color-navy);
  font-size: 19px;
}

.flow__list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.cta-card--compact {
  padding: 44px;
  background: var(--color-navy);
}

.faq__list {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 24px 4px;
  border: 0;
  color: var(--color-navy);
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-item button > span,
.faq-item__answer span {
  color: var(--color-blue);
  font-family: Georgia, serif;
  font-size: 28px;
  text-align: center;
}

.faq-item button i {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--color-blue);
  transition: transform var(--transition);
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: rotate(0deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 260ms ease;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-height: 0;
  padding: 0 4px;
  margin: 0;
  color: var(--color-muted);
}

.faq-item.is-open .faq-item__answer p {
  padding-bottom: 24px;
}

.faq-item__answer span {
  color: var(--color-gold);
}

.message__grid > img {
  max-height: 570px;
  object-position: center top;
}

.message__catch {
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.65;
}

.message__signature {
  margin-top: 30px !important;
  text-align: right;
}

.message__signature small,
.message__signature strong {
  display: block;
}

.message__signature strong {
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 20px;
}

.contact__grid {
  align-items: start;
}

.contact__aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact__aside h3 {
  margin: 24px 0 8px;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: 25px;
}

.contact__aside p {
  margin: 0;
  color: var(--color-muted);
}

.contact__notice {
  padding: 14px 18px;
  margin: 0 0 26px;
  border: 1px solid;
  text-align: center;
}

.contact__notice--success {
  color: #096b36;
  border-color: #96d7b1;
  background: #effbf3;
}

.contact__notice--error {
  color: #a82218;
  border-color: #e8aaa5;
  background: #fff4f3;
}

.contact-form {
  display: grid;
  gap: 19px;
  padding: clamp(26px, 4vw, 46px);
  background: var(--color-ice);
}

.contact-form > label {
  display: grid;
  gap: 7px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 700;
}

.contact-form > label > span {
  display: inline-block;
  justify-self: start;
  padding: 0 6px;
  color: var(--color-white);
  background: var(--color-accent);
  font-size: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-blue);
  outline: 2px solid rgba(23, 105, 176, 0.18);
}

.contact-form__privacy {
  display: block !important;
  font-weight: 400 !important;
}

.contact-form__privacy a {
  color: var(--color-blue);
  text-decoration: underline;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 55px 0;
  color: #fff;
  background: #1e1e35;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.site-footer__nav a {
  color: #fff;
  text-decoration: none;
}

.site-footer__nav a:hover {
  opacity: 0.85;
}

.site-footer__sep {
  margin: 0 20px;
}

.site-footer__copy {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.entry-list,
.entry-content {
  min-height: 60vh;
  padding-block: 80px;
}

.entry-card {
  padding-block: 24px;
  border-bottom: 1px solid var(--color-border);
}

.entry-card h1,
.entry-content h1 {
  color: var(--color-navy);
  font-family: var(--font-serif);
}

.error-404 {
  text-align: center;
}

.u-sp-only {
  display: none;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 65px;
  }

  .site-header__inner {
    width: calc(100% - 32px);
  }

  .site-nav {
    gap: 24px;
  }

  .site-nav ul {
    gap: 0;
  }

  .site-nav li a {
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 68px);
  }

  .flow__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow__list li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 820px) {

  .l-container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 31px;
    height: 3px;
    background: var(--color-navy);
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle--tax span:not(.screen-reader-text) {
    background: #216338;
  }

  .menu-toggle--finance span:not(.screen-reader-text) {
    background: #e46230;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1001;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 42px 24px;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .site-header__inner {
    width: 100%;
    padding: 0 18px 0 2px;
  }

  .site-brand {
    width: 71px;
    height: 53px;
  }

  .site-header__cta {
    width: 218px;
    height: 44px;
    margin-top: 18px;
    display: block;
    flex: none;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .site-nav li a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
  }

  .hero__content {
    z-index: 3;
    width: min(calc(100% - 36px), 620px);
    padding: 50px 0 28px;
    margin-inline: auto;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(46px, 12vw, 70px);
    white-space: normal;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero__visual img {
    max-height: 520px;
  }

  .hero__note {
    right: 18px;
    bottom: 20px;
  }

  .problems__list,
  .benefits__grid,
  .cases__grid,
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .problem-card {
    min-height: 105px;
  }

  .about__grid,
  .service-scope__grid,
  .message__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__content,
  .service-scope__content {
    order: -1;
  }

  .benefits__feature {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .reason-card,
  .feature-card {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .reason-card:nth-child(even) .reason-card__image,
  .feature-card:nth-child(even) .feature-card__image {
    order: 0;
  }

  .price-card--recommended {
    transform: none;
  }

  .contact__aside {
    position: static;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .l-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: clamp(34px, 11.33vw, 68px);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .section-heading__lead br {
    display: none;
  }

  .site-header__inner {
    padding: 0 18px 0 2px;
  }

  .hero__content {
    padding-top: 38px;
  }

  .hero__eyebrow {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
    letter-spacing: 0.03em;
  }

  .hero__lead {
    margin-top: 10px;
    font-size: 21px;
  }

  .hero__badges {
    gap: 8px;
  }

  .hero__badges li {
    width: 74px;
  }

  .hero__badges strong {
    font-size: 14px;
  }

  .hero__note {
    width: calc(100% - 36px);
    padding: 14px 17px;
    font-size: 13px;
  }

  .problem-card {
    padding: 20px;
  }

  .problem-card span {
    font-size: 27px;
  }

  .check-list,
  .service-scope__items {
    grid-template-columns: 1fr;
  }

  .benefits__feature p {
    padding: 28px;
  }

  .benefits__feature img {
    min-height: 230px;
  }

  .cta-card__actions {
    flex-direction: column;
    gap: 20px;
  }

  .cta-card__tel strong {
    font-size: 25px;
  }

  .reason-card__content > span,
  .feature-card__content > span {
    font-size: 32px;
  }

  .case-card__content {
    padding: 22px;
  }

  .flow__list {
    grid-template-columns: 1fr;
  }

  .flow__list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }

  .flow__list li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -26px;
    left: 43px;
    display: block;
    transform: rotate(90deg);
  }

  .cta-card--compact {
    padding: 34px 20px;
  }

  .faq-item button {
    grid-template-columns: 34px 1fr 20px;
    gap: 8px;
    padding-block: 20px;
  }

  .faq-item button > span,
  .faq-item__answer span {
    font-size: 24px;
  }

  .faq-item__answer p {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .site-footer {
    padding: 40px 16px;
  }

  .site-footer__nav {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .site-footer__sep {
    margin: 0 12px;
  }

  .site-footer__copy {
    font-size: 14px;
  }

  .u-sp-only {
    display: inline;
  }
}

/* Problem section */
.problem {
  position: relative;
  overflow: hidden;
  color: #171a38;
}

.problem__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem__intro-hero {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
}

.problem__arch,
.problem__intro-copy {
  grid-area: 1 / 1;
}

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

.problem__intro-copy {
  z-index: 1;
  align-self: start;
  justify-self: center;
  width: min(940px, 94%);
  padding-top: clamp(40px, 5vw, 90px);
  color: #fff;
  text-align: center;
}

.problem__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 58px;
  margin: 0 0 25px;
  color: #c1daf8;
  font-size: clamp(19px, 1.55vw, 31px);
  font-weight: 700;
  letter-spacing: 0.17em;
}

.problem__eyebrow span {
  display: block;
  width: 164px;
  height: 2px;
  background: #c1daf8;
}

.problem__intro-copy h2,
#problem-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(28px, 2vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.problem__checks {
  z-index: 2;
  width: min(750px, 92%);
  margin: clamp(-120px, -6vw, -60px) auto 34px;
  padding: 25px 50px 36px;
  background: #f0f2fd;
  filter: drop-shadow(6px 10px 8px rgba(25, 30, 55, 0.1));
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
}

.problem__checks ul {
  width: fit-content;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.problem__checks li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 9px;
  font-size: clamp(15px, 1.15vw, 23px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.problem__checks li:last-child {
  margin-bottom: 0;
}

.problem__checks img {
  flex: 0 0 auto;
  width: 26px;
  height: 21px;
}

.problem__checks strong {
  color: #2d72bd;
}

.problem__truth {
  z-index: 4;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  margin: 0 auto clamp(32px, 3vw, 48px);
  border-radius: 50%;
  color: #fff;
  background: #ac8b20;
  font-size: 24px;
  font-weight: 700;
  margin-top: -60px;

}

.problem__body {
  position: relative;
  width: 100%;
  color: #171a38;
}

.problem__body-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

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

.problem__body-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.problem__service-lead {
  width: min(1120px, 100%);
  margin: 0 0 24px;
  font-size: clamp(14px, 0.9vw, 18px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.problem__services {
  display: flex;
  width: min(500px, 100%);
  align-items: flex-start;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 28px);
}

.problem__services > .problem__service-main {
  position: relative;
  border-color: #3374bd;
  color: #fff;
  background: #3374bd;
}

.problem__service-main span {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 26%;
  height: 42%;
  background: #3374bd;
  clip-path: polygon(25% 0, 75% 0, 75% 55%, 100% 55%, 50% 100%, 0 55%, 25% 55%);
  transform: translateX(-50%);
}

.problem__message {
  width: min(1120px, 100%);
  margin: 0 0 109px;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-align: center;
}

.problem__message p {
  margin: 0 0 0.4em;
}

.problem__message p:nth-child(2) {
  margin-bottom: 1.5em;
}

.problem__text-lg {
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 800;
}

.problem__message .problem__text-lg {
  font-size: clamp(22px, 1.5vw, 30px);
}

.problem__text-lg--gold {
  color: #aa8420;
}

.problem__benefits.only-pc {
  display: flex !important;
  justify-content: center;
  gap: clamp(9px, 0.9vw, 18px);
  width: fit-content;
  margin: 0 0 80px;
}

.problem__benefits article {
  position: relative;
  width: clamp(160px, 17.5vw, 350px);
  padding: clamp(24px, 2.65vw, 53px) clamp(8px, 0.8vw, 16px) clamp(8px, 0.9vw, 18px);
  background: #fff;
  box-shadow: 8px 10px 5px rgba(25, 30, 55, 0.14);
  text-align: center;
  box-sizing: border-box;
  align-items: center;
}

.problem__benefit-icon {
  display: grid;
  width: clamp(43px, 4.3vw, 86px);
  height: clamp(43px, 4.3vw, 86px);
  place-items: center;
  border: 2px solid #b28d1e;
  border-radius: 50%;
  background: #171a38;
  margin: -45% auto 15px;
}

.problem__benefit-icon img {
  width: auto;
  max-width: clamp(26px, 2.6vw, 52px);
  max-height: clamp(29px, 2.9vw, 58px);
}

.problem__benefits p {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
}

.problem__benefits .problem__text-lg,
.problem__more em {
  font-weight: 700;
  background: linear-gradient(transparent 64%, #f1cf58 64%);
}

.problem__triangle {
  display: grid;
  width: min(792px, 100%);
  margin: 0 0 43px;
  grid-template-columns: minmax(0, 1fr);
}

.problem__triangle > img,
.problem__triangle-copy {
  grid-area: 1 / 1;
}

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

.problem__triangle-copy {
  z-index: 1;
  align-self: center;
  justify-self: center;
  display: flex;
  width: 84%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-serif);
  text-align: center;
}

.problem__triangle-copy p {
  padding: 0.1em 0.9em;
  margin: 0 0 0.55em;
  color: #171a38;
  background: #fff;
  font-size: clamp(18px, 1.8vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}

.problem__triangle-copy strong {
  font-size: clamp(15px, 1.5vw, 30px);
  line-height: 1.55;
}

.problem__triangle-copy em {
  color: #99c8ff;
  font-style: normal;
}

.problem__more {
  display: grid;
  grid-template-columns: 1fr clamp(52px, 4.1vw, 82px) 1fr;
  gap: 43px;
  align-items: center;
  width: 100%;
  background: #fff;
  margin: 0 0 43px;
  padding: 20px 0;
}

.problem__more p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 1.65vw, 33px);
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
  justify-self: right;
}

.problem__more p:nth-of-type(2){
  justify-self: left;
}

.problem__more > strong {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ac8b20;
  font-size: clamp(12px, 1vw, 20px);
}

.problem__more em {
  color: #aa8420;
  font-style: normal;
}

.problem__description {
  width: min(720px, 100%);
  margin: 0 0 40px 0;
  padding: 0;
  font-size: clamp(12px, 0.75vw, 15px);
  font-weight: 600;
  line-height: 2;
  text-align: left;
}

.problem__description p {
  margin: 0 0 1.6em;
}

.problem__description p:last-child {
  margin-bottom: 0;
}

.problem__description strong {
  color: #2e70b7;
}

/* BEFORE block: coordinates from TOP.png (2000x1127, y=3065) and 01_TOP(SP).png (750x1737, y=1080). */
.problem__before {
  position: relative;
  padding: 100px 0;
  width: 100%;
  color: #fff;
}

.problem__before::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.2%;
  content: "";
  background: linear-gradient(180deg, rgba(7, 26, 63, 0.75) 0%, rgba(7, 26, 63, 0.2) 55%, transparent 100%);
  pointer-events: none;
}

.problem__before-bg{
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.problem__before-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.problem__before-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.problem__before-lead {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.55vw, 31px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
}

.problem__before-heading {
  max-width: 530px;
  width: 100%;
  margin: 0 auto;
}

.problem__before-tasks {
  display: block;
  max-width: 810px;
  width: 78%;
  margin: 35px auto 0;
}

.problem__before-tasks img {
  display: block;
  width: 100%;
  height: auto;
}

.problem__before-bridge {
  top: 34.6%;
  width: 90%;
  margin-top: 40px;
  margin-bottom: 38px;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.55vw, 31px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.08em;
  text-align: center;
}

.problem__before-badge {
  display: grid;
  width: 98px;
  height: 98px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #171a38;
  background: rgba(239, 220, 145, 1);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.0;
  place-items: center;
}

.problem__before-impact {
  top: 55.9%;
  width: 92%;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.65vw, 73px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}

.problem__before-copy {
  top: 65.1%;
  width: fit-content;
  margin-top: 87px;
  margin-bottom: 0;
  font-size: clamp(13px, 1.05vw, 21px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: left;
}

.problem__before-copy p {
  margin: 0 0 1.2em;
}

.problem__before-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .problem__benefits.only-pc{
    display: none !important;
  }
  .problem__before{
    padding: 50px 0;
  }

  .problem__before::before {
    height: 3.4%;
  }

  .problem__before-lead {
    top: 2.5%;
    font-size: 4.1vw;
    letter-spacing: 0.1em;
  }

  .problem__before-heading {
    max-width: 700px;
    width: 93%;
  }

  .problem__before-tasks {
    max-width: 700px;
    width: 91%;
  }

  .problem__before-bridge {
    top: 54.9%;
    font-size: 3.85vw;
    line-height: 1.7;
    letter-spacing: 0.06em;
    margin: clamp(25px, 6.1vw, 50px);
  }

  .problem__before-badge {
    top: 62.5%;
    width: 18vw;
    height: 18vw;
    font-size: 5vw;
    margin: 0;
  }

  .problem__before-impact {
    top: 66.8%;
    font-size: 9vw;
    letter-spacing: 0.06em;
  }

  .problem__before-copy {
    top: 73.2%;
    width: 84%;
    font-size: 3.45vw;
    line-height: 1.95;
    letter-spacing: 0.035em;
    margin-top: clamp(25px, 6.1vw, 50px);
  }

  .problem__intro-copy {
    width: 96%;
    padding-top: 14.3vw;
  }

  .problem__eyebrow {
    gap: 4.7vw;
    margin-bottom: 3.3vw;
    font-size: 4.35vw;
    letter-spacing: 0.12em;
  }

  .problem__eyebrow span {
    width: 17vw;
    height: 1px;
  }

  .problem__intro-copy h2 {
    font-size: 4.05vw;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }

  .problem__checks {
    width: 92%;
    margin-top: -8vw;
    margin-bottom: 6vw;
    padding: 6.5vw 6vw 9vw;
    filter: none;
  }

  .problem__checks ul {
    width: 88%;
  }

  .problem__checks--sp{
    display: block;
    width: 100%;
    margin-top: -50px;
  }

  .problem__checks li {
    gap: 2vw;
    margin-bottom: 2.9vw;
    font-size: 3.75vw;
    letter-spacing: 0.025em;
    white-space: normal;
  }

  .problem__checks img {
    width: 3.47vw;
    height: auto;
  }

  .problem__truth {
    width: 15.8vw;
    height: 15.8vw;
    margin-bottom: 8vw;
    font-size: 4.6vw;
  }

  .problem__body-content {
    padding: 0 0 12vw;
  }

  .problem__service-lead {
    margin-bottom: 4vw;
    font-size: 3.65vw;
  }

  .problem__services {
    gap: 2.9vw;
    width: 92%;
    margin-bottom: 8vw;
  }

  .problem__services > p {
    flex: 0 0 25.7vw;
    width: 25.7vw;
    height: auto;
    padding: 1vw;
    border-width: 2px;
    font-size: 4vw;
  }

  .problem__service-main span {
    width: 7vw;
    height: 12vw;
  }

  .problem__message {
    margin-bottom: 10vw;
    font-size: clamp(14px, 3.05vw, 25px);
    line-height: 1.65;
  }

  .problem__message p {
    margin-bottom: 1.7vw;
  }

  .problem__message p:nth-child(2) {
    margin-bottom: 4.5vw;
  }

  .problem__message .problem__text-lg {
    font-size: clamp(18px, 3.66vw, 30px);
  }

  .problem__text-lg {
    font-size: clamp(18px, 3.66vw, 30px);
  }

  .problem__benefits {
    gap: 2vw;
    max-width: 700px;
    width: 91%;
    margin-bottom: 8vw;
  }

  .problem__benefits article {
    flex: 1;
    aspect-ratio: auto;
    min-height: 21.5vw;
    padding: 8.2vw 1vw 2.2vw;
    box-shadow: 4px 5px 4px rgba(25, 30, 55, 0.14);
  }

  .problem__benefit-icon {
    top: -5.9vw;
    width: 11.8vw;
    height: 11.8vw;
  }

  .problem__benefit-icon img {
    width: 52%;
    max-width: none;
    max-height: none;
  }

  .problem__benefits p {
    font-size: clamp(14px, 3.05vw, 25px);
    line-height: 1.4;
  }

  .problem__benefits .problem__text-lg {
    font-size: clamp(18px, 3.66vw, 30px);
  }

  .problem__triangle {
    width: 100%;
    margin-bottom: 6vw;
  }

  .problem__triangle-copy {
    width: 88%;
  }

  .problem__triangle-copy p {
    padding: 0.7vw 3vw;
    margin-bottom: 3.4vw;
    font-size: 5.4vw;
  }

  .problem__triangle-copy strong {
    font-size: 4.5vw;
  }

  .problem__more {
    grid-template-columns: 1fr 12vw 1fr;
    gap: 1.5vw;
    width: 100%;
    margin-bottom: 6vw;
    justify-content: space-between;
  }

  .problem__more p, .problem__more p:nth-of-type(2) {
    font-size: 3.65vw;
    line-height: 1.7;
    justify-self: center;
  }

  .problem__more > strong {
    width: 11.5vw;
    height: 11.5vw;
    font-size: 3.5vw;
  }

  .problem__description {
    width: 88%;
    font-size: 3.45vw;
    font-weight: 600;
    line-height: 2;
  }

  .problem__description p {
    margin-bottom: 5vw;
  }
}

/* Main visual: coordinates are based on the supplied 2000px/750px designs. */
.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #eef1f3;
}

.mv__background,
.mv__background img {
  display: block;
  width: 100%;
}

.mv__background img {
  height: auto;
}

.mv__content {
  position: absolute;
  inset: 0;
}

.mv__target {
  position: absolute;
  top: 4.8%;
  left: 25.8%;
  width: 33.4%;
  margin: 0;
  color: #222641;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.55vw, 31px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08em;
  text-align: center;
}

.mv__audiences {
  position: absolute;
  top: 19.4%;
  left: 26.55%;
  display: flex;
  gap: 0.55%;
  align-items: stretch;
  width: 31.55%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mv__audiences li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(26px, 2.1vw, 42px);
  padding: 0.25em 0.45em;
  color: #fff;
  background: #171a38;
  font-size: clamp(12px, 1.2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.mv__audiences li:nth-child(1) {
  width: 27%;
}

.mv__audiences li:nth-child(2) {
  width: 24%;
}

.mv__audiences li:nth-child(3) {
  flex: 1;
}

.mv__title {
  position: absolute;
  top: 21.574%;
  left: 23.2%;
  width: 38.05%;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.mv__title picture,
.mv__title img {
  display: block;
  width: 100%;
  height: auto;
}

.mv__catch {
  position: absolute;
  top: 53.8%;
  left: 30.75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 24%;
  min-height: 17.2%;
  padding: 0 1.4%;
  margin: 0;
  color: #a8821b;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.1vw, 42px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-align: center;
}

.mv__catch::before,
.mv__catch::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  content: "";
  border-top: 2px solid #b58d22;
  border-bottom: 2px solid #b58d22;
}

.mv__catch::before {
  left: 0;
  border-left: 2px solid #b58d22;
}

.mv__catch::after {
  right: 0;
  border-right: 2px solid #b58d22;
}

.mv__catch span,
.mv__catch strong {
  display: block;
  font: inherit;
}

.mv__features {
  position: absolute;
  top: 76.1%;
  left: 0;
  width: 56vw;
  color: #171a38;
  font-size: clamp(12px, 1.15vw, 23px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  img{
    width: 100%;
  }
}

.mv__features p {
  display: table;
  padding: 0.14em 1.15em 0.14em 0;
  margin: 0 0 0.28em;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 3px 4px 0 rgba(0, 0, 0, 0.14);
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  white-space: nowrap;
}

@media (max-width: 820px) {
  .mv__target {
    top: 4.65%;
    left: 3%;
    width: 94%;
    font-size: 4.25vw;
    line-height: 1.52;
    letter-spacing: 0.07em;
  }

  .mv__audiences {
    top: 14.05%;
    left: 3%;
    gap: 1.25%;
    width: 94%;
  }

  .mv__audiences li {
    min-height: 0;
    padding: 0.28em 0.35em;
    font-size: 3.25vw;
    letter-spacing: 0.06em;
  }

  .mv__audiences li:nth-child(1) {
    width: 27.5%;
  }

  .mv__audiences li:nth-child(2) {
    width: 25%;
  }

  .mv__title {
    top: 21.896%;
    left: 0;
    width: 84.8%;
  }

  .mv__catch {
    top: 68.7%;
    left: 11.7%;
    width: 77.5%;
    min-height: 11.5%;
    padding: 0 3%;
    font-size: 6vw;
    line-height: 1.75;
    letter-spacing: 0.06em;
  }

  .mv__features {
    top: 83.9%;
    left: 0.4%;
    width: 97%;
    font-size: 3.45vw;
    line-height: 1.38;
    letter-spacing: 0.035em;
  }

  .mv__features p {
    padding: 0.2em 1.4em 0.2em 0.9em;
    margin-bottom: 0.42em;
  }
}

/* service-detail tabs */
.service-detail {
  padding: 100px 0;
}

.service-detail__inner {
  max-width: 1200px;
  width: min(calc(100% - 48px), 1200px);
  margin-inline: auto;
}

.service-detail__tabs {
  max-width: 1000px;
  width: 100%;
  margin: 48px auto 0;
}

.service-detail__tablist {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.service-detail__tab {
  flex: 1;
  min-height: 56px;
  padding: 14px 16px;
  border: none;
  border-radius: 12px 12px 0 0;
  color: var(--color-white);
  background: #3269af;
  font-family: var(--font-sans);
  font-size: clamp(11px, 4vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: min-height var(--transition), background var(--transition), color var(--transition);
}

.service-detail__tab[data-tab-button="tax"] {
  background: #299200;
}

.service-detail__tab[data-tab-button="finance"] {
  background: #ff7200;
}

.service-detail__tab.is-active {
  min-height: 68px;
  padding-bottom: 22px;
  color: var(--color-white);
  font-size: clamp(12px, 4.27vw, 32px);
}

.service-detail__tab:focus-visible {
  outline: 3px solid #f4c74e;
  outline-offset: -3px;
}

.service-detail__panels {
  position: relative;
}

.service-detail__panel {
  padding: clamp(32px, 4vw, 48px) clamp(20px, 4vw, 40px) clamp(40px, 5vw, 56px);
  border-radius: 0 0 16px 16px;
  color: var(--color-white);
}

.service-detail__panel[hidden] {
  display: none;
}

.service-detail-bg{
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.service-detail-bg img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__cards{
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail__cards-img{
  display: block;
  width: 100%;
  max-width: 750px;
  height: auto;
  margin-inline: auto;
}

.service-detail__card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 28px solid #d4b04a;
  border-right: 28px solid transparent;
  content: "";
}

.service-detail__card-title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}

.service-detail__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.service-detail__card-icon svg {
  width: clamp(40px, 6vw, 56px);
  height: auto;
}

.service-detail__message {
  margin: clamp(16px, 3.7vw, 28px) 0 clamp(16px, 3.7vw, 28px);
  font-size: clamp(14px, 2.93vw, 22px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.service-detail__panel[data-tab-panel="finance"] .service-detail__message{
  color: #232441;
}

.service-detail__cta{
  display: block;
  margin: 0 auto;
  max-width: min(334px, 44.5%);
  width: 100%;
  height: auto;
}


@media (max-width: 820px) {
  .service-detail {
    padding: 50px 0;
  }

  .service-detail__inner {
    width: min(calc(100% - 32px), 750px);
  }

  .service-detail__tabs {
    margin-top: clamp(32px, 6.4vw, 48px);
  }

  .service-detail__tablist {
    flex-direction: row;
    align-items: flex-end;
  }

  .service-detail__tab {
    min-height: clamp(44px, 7.5vw, 56px);
    padding: clamp(8px, 1.9vw, 14px) clamp(2px, 0.8vw, 16px);
    border-radius: clamp(8px, 1.6vw, 12px) clamp(8px, 1.6vw, 12px) 0 0;
    font-size: clamp(9px, 3.47vw, 26px);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .service-detail__tab.is-active {
    min-height: clamp(50px, 9.1vw, 68px);
    padding-bottom: clamp(12px, 2.9vw, 22px);
    font-size: clamp(9px, 3.47vw, 26px);
    white-space: nowrap;
  }

  .service-detail__panel {
    padding: clamp(20px, 4.3vw, 48px) clamp(12px, 2.7vw, 40px) clamp(28px, 5.3vw, 56px);
    border-radius: 0 0 clamp(8px, 1.6vw, 16px) clamp(8px, 1.6vw, 16px);
  }
}

@media screen and (max-width: 500px) {
  .problem__intro-copy{
    padding-top: 7.3vw;
  }
  .problem__checks--sp{
    margin-top: -20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
