html {
  font-size: 100%;
  scroll-behavior: smooth;
}

:root {
  --color-main: #003a9f;
  --color-accent: #fcd13f;
  --color-ghost: #4eafeb;
  --color-text-title: #0e2036;
  --color-text-body: #444444;
  --color-bg-base: #ffffff;
  --color-bg-gray: #f5f6f8;
  --color-border: #ebecef;
  --color-gray-dark: #b0b7c3;

  --space-section-pc: 100px;
  --space-section-sp: 64px;
}

body {
  color: var(--color-text-body);
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-title);
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

/* =========================================
   header
========================================= */
.header {
  background-color: var(--color-bg-base);
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0px;
  z-index: 80;
}

.header-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}

.header .logo {
  width: 180px;
  flex-shrink: 0;
}

.global-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav__item a {
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-title);
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.global-nav__item a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-main);
  transition: width 0.3s ease;
}

.global-nav__item a:hover {
  color: var(--color-main);
}

.global-nav__item a:hover::after {
  width: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-btn--ghost {
  background-color: transparent;
  color: var(--color-ghost);
  border: 1px solid var(--color-ghost);
}
.header-btn--ghost:hover {
  background-color: rgba(78, 175, 235, 0.1);
}

.header-btn--main {
  background-color: var(--color-main);
  color: var(--color-bg-base);
  border: 1px solid var(--color-main);
}
.header-btn--main:hover {
  background-color: #002d7a;
  border-color: #002d7a;
}

.header-btn--accent {
  background-color: var(--color-accent);
  color: var(--color-text-title);
  border: 1px solid var(--color-accent);
  padding: 0 28px;
}
.header-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* responsive */

.hamburger-btn {
  display: none;
}
.mobile-menu {
  display: none;
}

@media (max-width: 1080px) {
  .u-desktop-only {
    display: none !important;
  }

  .header .logo {
    width: 140px;
  }

  /* humburger */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 90;
    padding: 0;
  }
  .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-title);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .hamburger-btn.is-active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger-btn.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-bg-base);
    z-index: 70;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
  }
  .mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu__inner {
    padding: 40px 20px 60px;
    display: flex;
    flex-direction: column;
  }

  /* nav */
  .mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    border-top: 1px solid #ebecef;
  }
  .mobile-nav__item {
    border-bottom: 1px solid #ebecef;
  }
  .mobile-nav__item a {
    display: block;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-title);
    text-decoration: none;
    text-align: center;
  }

  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-actions .header-btn {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }
}

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

/* =========================================
   FV
========================================= */
.fv-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 70px auto 0;
  height: 750px;
  background-image: url("../img/fv.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.fv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 58, 159, 0.9) 0%, rgba(0, 58, 159, 0.6) 45%, rgba(0, 58, 159, 0) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}

.fv-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.fv-text-area {
  width: 100%;
  max-width: 660px;
  color: var(--color-bg-base);
}

.fv-sub-caption {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-bg-base);
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.fv-main-caption {
  color: var(--color-bg-base);

  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 32, 80, 0.4);
  letter-spacing: 0.06em;
}

.fv-main-caption__top {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 4px;
}

.fv-main-caption__bottom {
  font-size: 44px;
  white-space: nowrap;
}

.fv-main-caption__suffix {
  font-size: 36px;
  vertical-align: baseline;
}

.fv-main-caption__keyword {
  color: var(--color-accent);
  font-size: 1.25em;
  display: inline-block;
  transform: translateY(4px);
  letter-spacing: 0.08em;
  margin: 0 0.05em;
}

.fv-description {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.fv-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.fv-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fv-btn--document {
  background-color: var(--color-bg-base);
  color: var(--color-main);
}
.fv-btn--document:hover {
  background-color: var(--color-bg-gray);
}

.fv-btn--trial {
  background-color: var(--color-accent);
  color: var(--color-text-title);
}
.fv-btn--trial:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* responsive */

@media (max-width: 991px) {
  .fv-main-caption__bottom {
    font-size: 36px;
  }
  .fv-main-caption__suffix {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .fv-section {
    height: auto;
    min-height: auto;
    padding: 32px 0 80vw;
    align-items: flex-start;

    background-image: url("../img/fv-sp.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: var(--color-main);
  }

  .fv-overlay {
    width: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 58, 159, 1) 0%,
      rgba(0, 58, 159, 0.9) 15%,
      rgba(0, 58, 159, 0.4) 40%,
      rgba(0, 58, 159, 0) 60%
    );
    mix-blend-mode: multiply;
  }

  .fv-text-area {
    max-width: 100%;
  }

  .fv-sub-caption {
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 16px;
  }

  .fv-main-caption__top {
    font-size: 24px;
  }

  .fv-main-caption__bottom {
    font-size: 28px;
    white-space: normal;
  }

  .fv-main-caption__keyword {
    font-size: 1.2em;
    transform: translateY(2px);
  }

  .fv-main-caption__suffix {
    font-size: 22px;
  }

  .fv-description {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .fv-actions {
    flex-direction: column;
    gap: 12px;
  }

  .fv-btn {
    width: 100%;
    height: 52px;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .fv-main-caption__top {
    font-size: 20px;
  }
  .fv-main-caption__bottom {
    font-size: 24px;
  }
  .fv-main-caption__suffix {
    font-size: 18px;
  }
  .fv-description {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

@media (max-width: 374px) {
  .fv-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 58, 159, 1) 0%,
      rgba(0, 58, 159, 1) 30%,
      rgba(0, 58, 159, 0.5) 55%,
      rgba(0, 58, 159, 0) 75%
    );
  }

  .fv-sub-caption {
    margin-bottom: 12px;
  }
  .fv-main-caption {
    margin-bottom: 16px;
  }
  .fv-description {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .fv-actions {
    gap: 8px;
  }
}

/* =========================================
   solution
========================================= */

.solution-section {
  background-color: var(--color-bg-gray);
  padding: var(--space-section-pc) 0 0;
}

.solution-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.solution-title {
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.5;
}

.solution-title__sub {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.solution-title__main {
  font-size: 36px;
  font-weight: 800;
}

.marker-yellow {
  background: linear-gradient(transparent 50%, var(--color-accent) 50%);
  padding: 0 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

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

.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.thought-bubble {
  background-color: var(--color-bg-base);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 32, 80, 0.04);
  margin-bottom: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.thought-bubble::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 16px 16px 0 16px;
  border-style: solid;
  border-color: var(--color-bg-base) transparent transparent transparent;
}

.keyword-badge {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-bg-base);
  font-size: 16px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.bubble-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-text {
  font-size: 14px;
  text-align: left;
  width: 100%;
}

.solution-ill {
  display: flex;
  justify-content: center;
  width: 100%;
}

.solution-ill img {
  width: 100%;
  height: auto;
  display: block;
}

/* responsive */

@media (max-width: 991px) {
  .solution-grid {
    gap: 20px;
  }

  .thought-bubble {
    padding: 24px 16px;
  }

  .bubble-title {
    font-size: 18px;
    min-height: 54px;
  }

  .solution-ill img {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .solution-section {
    padding: var(--space-section-sp) 0 0;
  }

  .solution-title__sub {
    font-size: 15px;
  }
  .solution-title__main {
    font-size: 24px;
    line-height: 1.4;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .thought-bubble {
    padding: 32px 24px;
  }

  .bubble-title {
    font-size: 20px;
    min-height: auto;
  }

  .solution-ill img {
    width: 100%;
    max-width: 200px;
  }
}

/* =========================================
   Common Section Header
========================================= */

.c-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.c-section-header__tag {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-bg-base);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.c-section-header__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
}

.c-section-header__line {
  width: 64px;
  height: 4px;
  margin: 0 auto 24px auto;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    var(--color-main) 0%,
    var(--color-main) 70%,
    var(--color-accent) 70%,
    var(--color-accent) 100%
  );
}

.c-section-header__desc {
  font-size: 15px;
  line-height: 1.8;
}

/* smartphone */
@media (max-width: 767px) {
  .c-section-header {
    margin-bottom: 40px;
  }
  .c-section-header__title {
    font-size: 24px;
  }
  .c-section-header__desc {
    font-size: 14px;
  }
  .c-section-header__desc br {
    display: none;
  }
}

/* =========================================
   checklist
========================================= */

.checklist-section {
  padding: var(--space-section-pc) 0;
}

.checklist-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.checklist-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--color-bg-base);
  padding: 24px 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: none;
  cursor: default;
}

.checklist-box {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: var(--color-main);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.checklist-box::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: solid var(--color-bg-base);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.checklist-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.checklist-desc {
  font-size: 14px;
  line-height: 1.6;
}

/* smartphone */
@media (max-width: 767px) {
  .checklist-section {
    padding: var(--space-section-sp) 0;
  }
  .checklist-item {
    padding: 20px;
    gap: 12px;
  }
  .checklist-title {
    font-size: 16px;
  }
}

/* result */
.result-wrapper {
  max-width: 1080px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  background-color: var(--color-bg-base);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.result-header {
  padding: 24px 20px;
  text-align: center;
  color: var(--color-bg-base);
}

.result-count {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  opacity: 0.9;
}

.result-status {
  font-size: 20px;
  font-weight: 700;
  color: inherit;
}

.result-body {
  padding: 32px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 24px;
  min-height: 4.8em;
}

.result-ill {
  margin-bottom: 32px;
}
.result-ill img {
  width: 100%;
  height: auto;
}

.result-card--small .result-header {
  background-color: var(--color-gray-dark);
}
.result-btn--outline {
  border: 2px solid var(--color-main);
  color: var(--color-main);
  background: transparent;
}

.result-card--medium {
  border-color: var(--color-main);
}
.result-card--medium .result-header {
  background-color: var(--color-main);
}
.result-btn--blue {
  background-color: var(--color-main);
  color: var(--color-bg-base);
}

.result-card--large {
  border-color: var(--color-accent);
  border-width: 2px;
  box-shadow: 0 8px 24px rgba(252, 209, 63, 0.2);
}
.result-card--large .result-header {
  background-color: var(--color-accent);
  color: var(--color-text-title);
}
.result-btn--yellow {
  background-color: var(--color-accent);
  color: var(--color-text-title);
  font-weight: 800;
}

.result-btn {
  width: 100%;
  padding: 16px 10px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.3s;
}
.result-btn:hover {
  opacity: 0.8;
}

/* smartphone */
@media (max-width: 767px) {
  .result-wrapper {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   features
========================================= */
.features-section {
  padding: var(--space-section-pc) 0;
  background-color: var(--color-bg-gray);
}

.features-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-section-header__title-sub {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.c-section-header__title-main {
  font-size: 36px;
  font-weight: 800;
  display: inline-block;
  line-height: 1.2;
}

.u-text-accent-num {
  font-size: 1.4em;
  color: var(--color-main);
  display: inline-block;
  margin: 0 0.05em;
  position: relative;
  background: linear-gradient(transparent 70%, var(--color-accent) 70%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-base);
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.feature-ill {
  width: 100%;
  background-color: #f9fafb;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-ill img {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.feature-content {
  padding: 32px;
}

.feature-number {
  display: inline-block;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 3em;
}

.feature-text {
  font-size: 14.5px;
  line-height: 1.8;
}

.u-emphasis {
  color: var(--color-text-title);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(252, 209, 63, 0.4) 60%);
}

/* responsive */
@media (max-width: 767px) {
  .c-section-header__title-sub {
    font-size: 18px;
  }
  .c-section-header__title-main {
    font-size: 24px;
  }

  .features-section {
    padding: var(--space-section-sp) 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-item {
    padding: 32px 24px;
  }
}

.section-divider {
  text-align: center;
  padding: 60px 0 40px;
  background-color: var(--color-bg-gray);
}

.arrow-down {
  width: 30px;
  height: 30px;
  margin: 0 auto 20px;
  border-left: 4px solid var(--color-main);
  border-bottom: 4px solid var(--color-main);
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(10px) rotate(-45deg);
  }
  60% {
    transform: translateY(5px) rotate(-45deg);
  }
}

.divider-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-main);
}

/* case */
.case-container {
  margin: 0 auto;
  background-color: var(--color-bg-base);
  padding: 50px;
  border-radius: 32px;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 32, 80, 0.05);
}

.case-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.case-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.case-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.case-item-wide {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.item-align-right {
  justify-content: flex-end;
}
.item-align-left {
  justify-content: flex-start;
}

.case-bubble {
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 32, 80, 0.04);
}
.case-bubble::after,
.case-bubble::before {
  content: "";
  position: absolute;
  border-style: solid;
}

.bubble-bottom {
  margin-bottom: 24px;
}
.bubble-bottom::after {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-color: var(--color-bg-base) transparent transparent transparent;
  z-index: 2;
}
.bubble-bottom::before {
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 11px 11px 0 11px;
  border-color: var(--color-border) transparent transparent transparent;
  z-index: 1;
}

.bubble-top {
  margin-top: 24px;
}
.bubble-top::after {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--color-bg-base) transparent;
  z-index: 2;
}
.bubble-top::before {
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 11px 11px 11px;
  border-color: transparent transparent var(--color-border) transparent;
  z-index: 1;
}

.bubble-right::after {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--color-bg-base);
  z-index: 2;
}
.bubble-right::before {
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 11px 0 11px 11px;
  border-color: transparent transparent transparent var(--color-border);
  z-index: 1;
}

.bubble-left::after {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--color-bg-base) transparent transparent;
  z-index: 2;
}
.bubble-left::before {
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 11px 11px 11px 0;
  border-color: transparent var(--color-border) transparent transparent;
  z-index: 1;
}

.case-person img {
  width: 100px;
  height: auto;
}

.case-person-wide {
  text-align: center;
}
.case-person-wide img {
  width: 170px;
  height: auto;
}

.case-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-bg-base);
  margin-bottom: 10px;
}
.case-label--muri {
  background-color: var(--color-main);
}
.case-label--mura {
  background-color: var(--color-ghost);
}
.case-label--muda {
  background-color: var(--color-text-title);
}

.case-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: left;
}

.marker {
  background: linear-gradient(transparent 60%, var(--color-accent) 60%);
  padding: 0 2px;
}

.case-meta {
  font-size: 12px;
  text-align: left;
}

/* --- smartphone --- */
@media (max-width: 767px) {
  .case-container {
    padding: 40px 20px;
    border-radius: 24px;
  }
  .case-grid-3,
  .case-grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-item,
  .case-item-wide {
    flex-direction: column !important;
  }

  .case-person img,
  .case-person-wide img {
    width: 150px;
  }

  .case-bubble {
    order: 1;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  .case-person,
  .case-person-wide {
    order: 2;
  }

  .case-bubble::after,
  .case-bubble::before {
    display: block !important;
    top: auto !important;
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .case-bubble::after {
    bottom: -10px !important;
    border-width: 10px 10px 0 10px !important;
    border-color: var(--color-bg-base) transparent transparent transparent !important;
  }

  .case-bubble::before {
    bottom: -11px !important;
    border-width: 11px 11px 0 11px !important;
    border-color: var(--color-border) transparent transparent transparent !important;
  }
}

/* =========================================
   comparison
========================================= */
.comparison-section {
  padding: var(--space-section-pc) 0;
  background-color: var(--color-bg-base);
}

.comparison-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.table-wrapper {
  margin-top: 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 24px 10px;
  text-align: center;
  border: 1px solid var(--color-border);
  vertical-align: middle;
}

.comparison-table th {
  background-color: var(--color-bg-gray);
  color: var(--color-text-title);
  font-weight: 700;
  font-size: 16px;
}

.row-label {
  background-color: #f9fafb;
  font-weight: 700;
  color: var(--color-text-title);
  width: 130px;
  font-size: 15px;
}

.mark-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mark-big {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.mark-blue {
  color: var(--color-main);
}
.mark-gray,
.mark-light {
  color: var(--color-gray-dark);
}

.mark-txt {
  font-size: 13px;
  line-height: 1.4;
}

.is-highlight {
  background-color: #f0f7ff !important;
  border-left: 2px solid var(--color-main) !important;
  border-right: 2px solid var(--color-main) !important;
}

.is-highlight .mark-txt {
  color: var(--color-text-title);
  font-weight: 700;
}

.arrow-row td {
  padding: 8px 0;
  border-top: none;
  border-bottom: none;
}
.table-arrow {
  color: var(--color-gray-dark);
  font-size: 14px;
}

.usage-row td {
  border-top: none;
  line-height: 1.6;
}

.u-weight-bold {
  font-weight: 700;
  color: var(--color-main);
  font-size: 16px;
}

/* smartphone */
@media (max-width: 767px) {
  .comparison-section {
    padding: var(--space-section-sp) 0;
  }
  .mark-big {
    font-size: 28px;
  }
  .mark-txt {
    font-size: 11px;
  }
  .comparison-table th {
    font-size: 14px;
  }
}

/* =========================================
   distribution
========================================= */
.dist-section {
  padding: var(--space-section-pc) 0 0;
  background-color: var(--color-bg-gray);
}

.dist-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.dist-talent-img {
  margin-top: 60px;
  text-align: center;
  line-height: 0;
}

.dist-talent-img img {
  display: inline-block;
  max-width: 100%;
  width: 300px;
  height: auto;
  vertical-align: bottom;
}

.dist-card {
  background-color: var(--color-bg-base);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 16px rgba(0, 32, 80, 0.02);
}

.dist-card-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.dist-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.dist-chart {
  width: 100%;
  max-width: 240px;
  height: auto;
}
.dist-chart img {
  width: 100%;
  display: block;
}

.dist-legend {
  width: 100%;
}

.dist-legend ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.dist-legend li {
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 6px;
}

.legend-label {
  display: flex;
  align-items: center;
}

.legend-num {
  font-weight: 700;
  color: var(--color-text-title);
  font-family: "Arial", sans-serif;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin-right: 8px;
  flex-shrink: 0;
}

.d-1 {
  background-color: var(--color-main);
}
.d-2 {
  background-color: #0052cc;
}
.d-3 {
  background-color: #0073e6;
}
.d-4 {
  background-color: var(--color-ghost);
}
.d-5 {
  background-color: #a3d5f7;
}
.d-6 {
  background-color: var(--color-accent);
}
.d-7 {
  background-color: var(--color-text-title);
}
.d-8 {
  background-color: #445a74;
}
.d-9 {
  background-color: #7b8fa6;
}
.d-10 {
  background-color: var(--color-gray-dark);
}
.d-11 {
  background-color: #dde1e6;
}

/* responsive */
@media (max-width: 991px) {
  .dist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .dist-section {
    padding: var(--space-section-sp) 0 0;
  }
  .dist-talent-img {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .dist-legend ul {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   pricing
========================================= */
.pricing-section {
  padding: var(--space-section-pc) 0;
  background-color: var(--color-bg-base);
}

.pricing-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-calculator {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 60px auto;
}

.p-card {
  background-color: var(--color-bg-base);
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 32, 80, 0.06);
}

.p-card--main {
  border: 3px solid var(--color-main);
}
.p-card--sub {
  border: 2px solid var(--color-border);
  background-color: #f9fafb;
}

.p-card-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: var(--color-text-title);
  font-weight: 700;
  font-size: 14px;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

.p-card-label {
  display: inline-block;
  background-color: var(--color-gray-dark);
  color: var(--color-bg-base);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.p-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.u-font-small {
  font-size: 14px;
  color: var(--color-text-body);
  font-weight: normal;
}

.p-card-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.p-card-price {
  text-align: right;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: auto;
}
.price-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--color-main);
}
.price-unit {
  font-size: 14px;
  color: var(--color-text-body);
  font-weight: 700;
}

.p-math-sign {
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 300;
  color: var(--color-gray-dark);
}

.pricing-notes {
  background-color: var(--color-bg-gray);
  padding: 24px 30px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.pricing-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-notes li {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
  text-indent: -1em;
  padding-left: 1em;
}

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

.pricing-cta {
  text-align: center;
  padding: 40px;
  background-color: #f0f7ff;
  border-radius: 20px;
}

.pricing-cta-micro {
  font-weight: 700;
  color: var(--color-text-title);
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-text-title);
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  max-width: 400px;
  padding: 20px 60px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(252, 209, 63, 0.3);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.btn-cta-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 209, 63, 0.4);
}

/* responsive */
@media (max-width: 767px) {
  .pricing-section {
    padding: var(--space-section-sp) 0;
  }

  .pricing-calculator {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .p-card {
    width: 100%;
  }

  .p-math-sign {
    justify-content: center;
  }

  .p-card-title {
    font-size: 18px;
  }

  .price-num {
    font-size: 32px;
  }

  .pricing-cta {
    padding: 30px 20px;
  }

  .pricing-cta-micro {
    font-size: 14px;
  }

  .btn-cta-yellow {
    font-size: 16px;
    padding: 16px 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* =========================================
   CTA
========================================= */
.main-cta-section {
  width: 100%;
  background-color: var(--color-text-title);
  padding: var(--space-section-pc) 0 0;
  overflow: hidden;
}

.main-cta-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-cta-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .is-reverse .main-cta-inner {
    flex-direction: row-reverse;
  }
}

.main-cta-content {
  flex: 0 0 60%;
  padding: 0 50px 80px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}

@media (min-width: 992px) {
  .is-reverse .main-cta-content {
    padding: 0 0 80px 50px;
  }
}

.main-cta-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-bg-base);
  margin-bottom: 20px;
  line-height: 1.4;
}

.main-cta-desc {
  font-size: 16px;
  color: #dde1e6;
  line-height: 1.6;
  margin-bottom: 48px;
}

.main-cta-sub-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.btn-cta-sub {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-bg-base);
  border: 2px solid var(--color-bg-base);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-sub:hover {
  background-color: var(--color-bg-base);
  color: var(--color-text-title);
}

.main-cta-primary-action {
  width: 100%;
  text-align: center;
}

.main-cta-primary-action .btn-cta-yellow {
  max-width: 100%;
  width: 100%;
}

.main-cta-micro {
  font-weight: 700;
  color: var(--color-bg-base);
  font-size: 15px;
  margin-bottom: 16px;
  text-align: center;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-text-title);
  font-size: 20px;
  font-weight: 700;
  padding: 24px 60px;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(252, 209, 63, 0.2);
  transition: all 0.3s ease;
}

.btn-cta-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 209, 63, 0.4);
}

.main-cta-image {
  flex: 0 0 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.main-cta-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* responsive */
@media (max-width: 991px) {
  .main-cta-inner,
  .is-reverse .main-cta-inner {
    flex-direction: column;
  }
  .main-cta-content,
  .is-reverse .main-cta-content {
    flex: 1 1 auto;
    padding: 0 20px 40px;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .main-cta-image {
    width: 100%;
    padding-top: 0;
  }
  .main-cta-image img {
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .main-cta-section {
    padding: var(--space-section-sp) 0 0;
  }
  .main-cta-title {
    font-size: 22px;
  }
  .main-cta-sub-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .btn-cta-sub {
    width: 100%;
  }
  .main-cta-micro {
    font-size: 13px;
  }
  .btn-cta-yellow {
    padding: 16px 20px;
    font-size: 18px;
    width: 100%;
  }
}

/* =========================================
   course
========================================= */
.course-section {
  padding: var(--space-section-pc) 0;
  background-color: var(--color-bg-gray);
  overflow: hidden;
}

.course-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.course-scroll-wrapper {
  margin-top: 60px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 24px;
}
.course-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.course-track {
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
}

.course-card {
  flex: 0 0 300px;
  background-color: var(--color-bg-base);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 32, 80, 0.04);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.course-card-img {
  width: 100%;
  background-color: var(--color-border);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.course-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
}

.course-scroll-hint {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-gray-dark);
  font-weight: 700;
  margin-top: -12px;
  margin-bottom: 80px;
  letter-spacing: 0.05em;
}

.hint-arrow {
  display: inline-block;
  animation: arrowMove 1.5s infinite ease-in-out;
}
@keyframes arrowMove {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

/* cta */
.c-inline-cta-box {
  background-color: var(--color-bg-base);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(0, 32, 80, 0.04);
}

.c-inline-cta-micro {
  font-weight: 700;
  color: var(--color-text-title);
  font-size: 16px;
  margin-bottom: 20px;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-text-title);
  font-size: 18px;
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(252, 209, 63, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 209, 63, 0.4);
}

/* responsive */
@media (max-width: 767px) {
  .course-section {
    padding: var(--space-section-sp) 0;
  }
  .course-card {
    flex: 0 0 260px;
  }
  .course-card-body {
    padding: 20px 16px;
  }
  .course-card-title {
    font-size: 16px;
  }
  .course-scroll-hint {
    font-size: 12px;
    margin-bottom: 60px;
  }
  .c-inline-cta-box {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .c-inline-cta-micro {
    font-size: 14px;
  }
  .btn-cta-yellow {
    font-size: 16px;
    padding: 16px 40px;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}

/* =========================================
   case study
========================================= */
.casestudy-section {
  padding: var(--space-section-pc) 0;
  background-color: var(--color-bg-base);
}

.casestudy-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.casestudy-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;

  background-color: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 32, 80, 0.03);
}

.casestudy-card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--color-border);
}

.casestudy-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-bg-gray);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casestudy-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casestudy-card-info {
  flex-grow: 1;
}

.casestudy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.casestudy-tag {
  background-color: var(--color-bg-gray);
  color: var(--color-text-body);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
}

.casestudy-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.casestudy-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.casestudy-label {
  background-color: #f0f7ff;
  color: var(--color-main);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0;
}

.casestudy-summary {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.casestudy-text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* responsive */
@media (max-width: 767px) {
  .casestudy-section {
    padding: var(--space-section-sp) 0;
  }

  .casestudy-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    margin-right: -20px;
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .casestudy-grid::-webkit-scrollbar {
    display: none;
  }

  .casestudy-card {
    flex: 0 0 85%;
    scroll-snap-align: center;

    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
    grid-template-rows: auto;
    grid-row: auto;
  }

  .casestudy-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-border);
  }

  .casestudy-tags {
    justify-content: center;
  }

  .casestudy-title {
    font-size: 16px;
  }

  .casestudy-block-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .casestudy-label {
    margin-top: 0;
  }
}

/* =========================================
   company
========================================= */
.company-section {
  padding: var(--space-section-pc) 0;
  background-color: var(--color-bg-gray);
}

.company-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.company-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;

  background-color: var(--color-bg-base);
  border-radius: 20px;
  padding: 50px 40px 40px;
  box-shadow: 0 4px 16px rgba(0, 32, 80, 0.03);
  border: 1px solid var(--color-border);
}

.company-logo {
  height: 60px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.company-logo img {
  max-width: 240px;
  max-height: 100%;
  object-fit: contain;
}

.company-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}

.company-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.company-info {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.info-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.info-row:last-child {
  border-bottom: none;
}

.info-row dt {
  flex: 0 0 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-title); /* ★変数化 */
  line-height: 1.6;
}

.info-row dd {
  flex: 1;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 991px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-card {
    grid-template-rows: auto;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .company-section {
    padding: var(--space-section-sp) 0;
  }
  .company-card {
    padding: 30px 20px;
  }
  .company-logo {
    justify-content: center;
    height: 50px;
  }
  .company-name {
    font-size: 17px;
    text-align: center;
  }
  .info-row {
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }
  .info-row dt {
    flex: auto;
  }
}

/* =========================================
   lost CTA
========================================= */
.last-cta-section {
  width: 100%;
  background-color: #0e2036;
  padding: 80px 0 0 0;
  font-family: "LINE Seed JP", sans-serif;
  overflow: hidden;
}

.last-cta-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.last-cta-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.last-cta-image {
  flex: 0 0 40%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.last-cta-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

.last-cta-content {
  flex: 0 0 60%;
  padding: 20px 0 80px 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}

.last-cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.last-cta-desc {
  font-size: 16px;
  color: #dde1e6;
  line-height: 1.6;
  margin-bottom: 48px;
}

.last-cta-sub-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.btn-cta-sub {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-sub:hover {
  background-color: #ffffff;
  color: #0e2036;
}

.last-cta-primary-action {
  width: 100%;
  text-align: center;
}

.last-cta-micro {
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
  text-align: center;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fcd13f;
  color: #0e2036;
  font-size: 20px;
  font-weight: 700;
  padding: 24px 60px;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(252, 209, 63, 0.2);
  transition: all 0.3s ease;
}

.btn-cta-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 209, 63, 0.4);
}

/* responsive */
@media (max-width: 991px) {
  .last-cta-inner {
    flex-direction: column-reverse;
  }
  .last-cta-content {
    flex: 1 1 auto;
    padding: 60px 20px 0;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .last-cta-image {
    width: 100%;
    padding-top: 40px;
  }
  .last-cta-image img {
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .last-cta-title {
    font-size: 24px;
  }
  .last-cta-sub-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .btn-cta-sub {
    width: 100%;
  }
  .last-cta-micro {
    font-size: 13px;
  }
  .btn-cta-yellow {
    padding: 16px 20px;
    font-size: 18px;
    width: 100%;
  }
}

/* =========================================
   footer
========================================= */
.site-footer {
  background-color: var(--color-bg-base);
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
}

.footer-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-gray-dark);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--color-text-body);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: var(--color-main);
  opacity: 0.7;
}

/* responsive */
@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0 100px;
  }
  .footer-container {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
  }
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================================
   floating banner
========================================= */
.floating-banner {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 260px;
  background-color: var(--color-bg-base);
  border: 2px solid var(--color-main);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 32, 80, 0.2);
  z-index: 1000;
  animation: slideUpFade 0.6s ease-out forwards;
}

.banner-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 28px;
  height: 28px;
  background: var(--color-text-title);
  color: var(--color-bg-base);
  border: 2px solid var(--color-bg-base);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.banner-link {
  text-decoration: none;
  display: block;
  padding: 24px 16px 20px;
}

.banner-catch {
  display: block;
  background-color: var(--color-main);
  color: var(--color-bg-base);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.banner-catch .highlight-num {
  color: var(--color-accent);
  font-size: 1.3em;
  margin: 0 2px;
}

.banner-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-title);
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}

.banner-img {
  width: 100%;
  max-width: 120px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  line-height: 0;
}
.banner-img img {
  width: 100%;
  height: auto;
}

.banner-btn {
  background-color: var(--color-accent);
  color: var(--color-text-title);
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 0 #d9b230;
  transition: all 0.2s;
  text-align: center;
}

.banner-link:hover .banner-btn {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #d9b230;
}

/* responsive */
@media (max-width: 767px) {
  .floating-banner {
    bottom: 20px;
    right: 20px;
    width: 180px;
    border-radius: 12px;
    border: 2px solid var(--color-main);
    box-shadow: 0 8px 24px rgba(0, 32, 80, 0.2);
  }

  .banner-link {
    display: block;
    padding: 16px 12px;
    text-align: center;
  }

  .banner-img {
    display: none;
  }

  .banner-text-group {
    display: block;
  }

  .banner-catch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 100%;
    padding: 6px 0;
    font-size: 10px;
    margin-bottom: 8px;
    line-height: 1;
  }

  .banner-title {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
    white-space: normal;
  }

  .banner-btn {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 11px;
    box-shadow: 0 3px 0 #d9b230;
  }

  .banner-close {
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .floating-banner {
    width: 160px;
    bottom: 15px;
    right: 15px;
  }
  .banner-title {
    font-size: 11px;
  }
}
