html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  background-color: #F6F6F6;
  color: #1a1a1a;
}

img {
  max-width: 100%;
}

a:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(0, 128, 200, 0.45);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

@keyframes hero-bg-reveal {
  from {
    opacity: 0;
    transform: scale(1.08) translate3d(28px, -16px, 0);
    filter: saturate(0.88) contrast(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.04) translate3d(18px, -10px, 0);
    filter: saturate(1) contrast(1);
  }
}
@keyframes hero-bg-drift {
  from {
    transform: scale(1.04) translate3d(18px, -10px, 0);
  }
  to {
    transform: scale(1.08) translate3d(-10px, 8px, 0);
  }
}
@keyframes hero-bg-sheen {
  0%, 100% {
    opacity: 0;
    transform: translateX(-6%);
  }
  38%, 58% {
    opacity: 0.58;
  }
  72% {
    opacity: 0;
    transform: translateX(8%);
  }
}
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  background-color: #f8f9fa;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-size: 80%;
  background-position: 30vw 22%;
  background-repeat: no-repeat;
  clip-path: circle(clamp(550px, 45vw, 850px) at 86% -23%);
  overflow: hidden;
}
.hero__bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.46), transparent 34%), linear-gradient(110deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 48%);
  opacity: 0;
  mix-blend-mode: screen;
  animation: hero-bg-sheen 5200ms ease-in-out 900ms infinite;
}
@media (max-width: 1024px) {
  .hero__bg-image {
    display: none;
  }
}
.hero__container {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 24px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .hero__container {
    padding: 110px 20px 0;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.hero__content {
  max-width: 660px;
}
@media (max-width: 1024px) {
  .hero__content {
    max-width: 100%;
    width: 100%;
  }
}
.hero__headline {
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .hero__headline {
    font-size: 40px;
    margin-bottom: 24px;
  }
}
.hero__divider {
  width: 100%;
  max-width: 660px;
  height: 6px;
  margin-bottom: 24px;
  background: repeating-linear-gradient(-45deg, #1a1a1a, #1a1a1a 3px, transparent 3px, transparent 7px);
}
@media (max-width: 1023px) {
  .hero__divider {
    height: 3.5px;
  }
}
.hero__description {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.8;
  color: #1a1a1a;
}
@media (max-width: 1024px) {
  .hero__description {
    font-size: 16px;
    letter-spacing: -0.01em;
  }
}
.hero__illustration {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 45%;
  align-self: auto;
  max-width: 710px;
}
@media (max-width: 1024px) {
  .hero__illustration {
    position: relative;
    width: 100%;
    max-width: 100%;
    align-self: center;
    right: auto;
    margin-top: 180px;
    isolation: isolate;
    overflow: visible;
  }
  .hero__illustration::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: -34%;
    bottom: 15%;
    width: 98%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-image: url("../images/hero-building.jpg");
    background-size: 150% auto;
    background-position: 113% 72%;
    background-repeat: no-repeat;
  }
}
.hero__illustration-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .header {
    padding: 20px;
  }
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo-icon {
  width: 236px;
}
@media (max-width: 1024px) {
  .header__logo-icon {
    width: 160px;
  }
}
.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__subtitle {
  font-size: 14px;
  color: #333333;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .header__subtitle {
    display: none;
  }
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: flex-start;
}
@media (max-width: 1024px) {
  .header__contact {
    align-self: auto;
  }
  .header__contact .btn {
    padding: 12px;
    font-size: 15px;
    min-width: 138px;
  }
}
.header__hours {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1024px) {
  .header__hours {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.6px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  min-width: 280px;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn--primary {
  color: #1a1a1a;
  border-radius: 60px;
  background: var(--gradation, linear-gradient(92deg, #FFC700 0%, #FCFF6F 100%));
  /* shadow */
  box-shadow: 10px 10px 50px 0 rgba(0, 0, 0, 0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.btn--blue {
  background-color: #0080C8;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 130, 202, 0.2);
}
.btn--blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 130, 202, 0.3);
  color: #ffffff;
}

.concerns {
  position: relative;
  width: 100%;
  background-color: #f8f9fa;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .concerns {
    padding-top: 80px;
  }
}
.concerns__inner {
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.concerns__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 2.4px;
  margin-bottom: 48px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .concerns__title {
    margin-bottom: 32px;
    font-size: 28px;
    letter-spacing: 1.4px;
  }
  .concerns__title span {
    display: block;
  }
}
.concerns__card {
  background-color: #ffffff;
  width: 100%;
  max-width: 625px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  padding: 25px 40px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .concerns__card {
    padding: 32px 24px;
    margin-bottom: 40px;
    max-width: 100%;
  }
}
.concerns__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.concerns__list-item {
  position: relative;
  padding-left: 36px;
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.6;
}
.concerns__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 22px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='27' height='23' viewBox='0 0 27 23' fill='none'%3e%3cpath d='M20.7628 3.52036C20.1205 2.00739 18.6198 0.938293 16.8812 0.938293H5.15096C2.8332 0.938293 0.937012 2.8374 0.937012 5.15874V16.9071C0.937012 19.2284 2.8332 21.1275 5.15096 21.1275H16.8812C19.199 21.1275 21.0952 19.2284 21.0952 16.9071V12.2996L20.7628 3.52036Z' fill='white'/%3e%3cpath d='M16.881 22.0658H5.15078C2.31056 22.0658 0 19.7517 0 16.9071V5.15873C0 2.31412 2.31056 0 5.15078 0H16.881C18.9502 0 20.8121 1.23781 21.6246 3.15316C21.8273 3.63042 21.6048 4.18076 21.1292 4.38375C20.6527 4.58674 20.1032 4.3639 19.9005 3.88754C19.3826 2.66598 18.1971 1.87746 16.881 1.87746H5.15078C3.34378 1.87746 1.87367 3.34984 1.87367 5.15963V16.908C1.87367 18.7178 3.34378 20.1901 5.15078 20.1901H16.881C18.688 20.1901 20.1581 18.7178 20.1581 16.908V12.3005C20.1581 11.7826 20.5779 11.3622 21.095 11.3622C21.612 11.3622 22.0318 11.7826 22.0318 12.3005V16.908C22.0318 19.7526 19.7213 22.0667 16.881 22.0667V22.0658Z' fill='black'/%3e%3cpath d='M10.0494 16.2017C9.59716 16.2017 9.15307 16.0005 8.8549 15.6234L5.09585 10.8679C4.57429 10.2075 4.68509 9.24847 5.34448 8.7261C6.00386 8.20373 6.96141 8.3147 7.48298 8.97511L10.4115 12.6804L24.1019 4.45332C24.8225 4.02027 25.7584 4.25394 26.1908 4.97659C26.6232 5.69835 26.3899 6.63572 25.6684 7.06878L10.8313 15.9851C10.5871 16.1313 10.3169 16.2026 10.0485 16.2026L10.0494 16.2017Z' fill='%23FC878B'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1024px) {
  .concerns__list-item {
    font-size: 14px;
  }
}
.concerns__illustration {
  width: 100%;
  max-width: 760px;
  margin: 0;
  position: relative;
  z-index: 0;
}
.concerns__illustration-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .concerns__illustration-img {
    width: 90%;
    margin: 0 auto;
  }
}
.concerns__banner {
  width: 100%;
  max-width: 1600px;
  background-color: #d9efff;
  text-align: center;
  position: relative;
  z-index: 1;
  background-image: url("../images/light-blue-pattern.png");
  background-repeat: repeat;
  border-radius: 100px;
  padding: 100px 40px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .concerns__banner {
    margin-top: -10px;
    border-radius: 24px;
    padding: 50px 20px 100px;
  }
}
.concerns__banner-text {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .concerns__banner-text {
    font-size: 28px;
    margin-bottom: 32px;
  }
}

.solutions {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .solutions {
    margin-top: 40px;
  }
}
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1023px) {
  .solutions__grid {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .solutions__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.solution-card {
  background-color: #ffffff;
  border: 4px solid #1a1a1a;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 32px;
}
@media (max-width: 1023px) {
  .solution-card {
    padding: 24px;
    border-width: 2px;
  }
}
.solution-card__media {
  width: 100%;
  margin: 0 0 24px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 240px;
}
@media (max-width: 767px) {
  .solution-card__media {
    height: 180px;
    margin-bottom: 20px;
  }
}
.solution-card__img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.solution-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}
.solution-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .solution-card__title {
    font-size: 28px;
    margin-bottom: 4px;
    letter-spacing: normal;
  }
}
.solution-card__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 24px;
}
.solution-card__desc {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  text-align: justify;
  width: 100%;
  margin: 0;
}

.features {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  margin-top: 80px;
}
.features__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .features__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.features__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 767px) {
  .features__title {
    font-size: 28px;
  }
  .features__title span {
    display: block;
  }
}
.features__line {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .features__line {
    display: none;
  }
}
.features__line::before {
  content: "";
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, #1a1a1a, #1a1a1a 6px, transparent 6px, transparent 10px);
}
.features__line::after {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1a1a1a;
}
.features__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .features__list {
    gap: 24px;
  }
}

.feature-card {
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 24px 40px;
  gap: 40px;
  min-height: 288px;
}
@media (max-width: 1023px) {
  .feature-card {
    padding: 32px 40px;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .feature-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }
}
.feature-card__content {
  flex: 1;
  max-width: 510px;
  text-align: left;
}
@media (max-width: 767px) {
  .feature-card__content {
    max-width: 100%;
  }
}
.feature-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .feature-card__title {
    font-size: 28px;
    margin-bottom: 16px;
    text-align: justify;
  }
}
.feature-card__desc {
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .feature-card__desc {
    font-size: 16px;
  }
}
.feature-card__media {
  width: 100%;
  max-width: 320px;
  margin: 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .feature-card__media {
    max-width: 260px;
  }
}
.feature-card__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.reasons {
  width: 100%;
  padding: 80px 24px 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .reasons {
    padding: 56px 0 0;
  }
}
.reasons__container {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
}
.reasons__main-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .reasons__main-title {
    margin-bottom: 40px;
    font-size: 28px;
  }
  .reasons__main-title span {
    display: block;
  }
}
.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .reasons__list {
    gap: 24px;
  }
}

.reason-card {
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 288px;
  padding: 24px 40px;
  gap: 40px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .reason-card {
    padding: 40px;
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .reason-card {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }
}
.reason-card__body {
  flex: 1;
  max-width: 600px;
  text-align: left;
}
@media (max-width: 767px) {
  .reason-card__body {
    max-width: 100%;
    width: 100%;
  }
}
.reason-card__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .reason-card__header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
  }
}
.reason-card__badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.reason-card__badge-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}
.reason-card__badge-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.reason-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.reason-card__title span {
  display: block;
}
.reason-card__title i {
  font-style: normal;
}
@media (max-width: 768px) {
  .reason-card__title {
    font-size: 28px;
    letter-spacing: normal;
  }
  .reason-card__title span {
    display: inline;
  }
  .reason-card__title i {
    display: block;
  }
}
.reason-card__desc {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  text-align: justify;
  margin: 0;
}
.reason-card__desc span {
  display: block;
}
@media (max-width: 768px) {
  .reason-card__desc {
    line-height: 1.6;
  }
  .reason-card__desc span {
    display: inline;
  }
}
.reason-card__media {
  width: 100%;
  max-width: 300px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .reason-card__media {
    max-width: 100%;
  }
}
.reason-card__img {
  width: 100%;
  height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.support-banner {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.support-banner__container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 80px 24px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .support-banner__container {
    padding: 64px 24px;
  }
}
@media (max-width: 767px) {
  .support-banner__container {
    padding: 56px 16px 200px;
  }
}
.support-banner__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}
.support-banner__title {
  color: #0080C8;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: 0.8px;
}
@media (max-width: 768px) {
  .support-banner__title {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.support-banner__desc {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 768px) {
  .support-banner__desc {
    line-height: 1.8;
    text-align: justify;
  }
}
.support-banner__img {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: auto;
  max-height: 280px;
}
@media (max-width: 767px) {
  .support-banner__img {
    max-height: 180px;
    bottom: 24px;
    z-index: 11;
  }
}
.support-banner__img--left {
  left: 40px;
}
@media (max-width: 1023px) {
  .support-banner__img--left {
    left: 10%;
  }
}
.support-banner__img--right {
  right: 40px;
}
@media (max-width: 1023px) {
  .support-banner__img--right {
    right: 10%;
  }
}

.flow {
  width: 100%;
  background-color: #F6F6F6;
  padding: 0 24px 80px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .flow {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.flow__card {
  background-color: #ffffff;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 100px;
  margin-top: -10px;
  padding: 80px 64px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .flow__card {
    border-radius: 24px;
    padding: 48px 20px 100px;
    margin-top: -32px;
  }
}
.flow__title {
  font-size: 40px;
  font-weight: 700;
  color: #0080C8;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .flow__title {
    margin-bottom: 40px;
    font-size: 28px;
  }
}
.flow__divider {
  border: none;
  border-top: 1px dashed #cccccc;
  margin: 60px auto;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 767px) {
  .flow__divider {
    margin: 48px auto;
  }
}

.timeline {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
.timeline__group {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-bottom: 40px;
}
.timeline__group:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .timeline__group {
    gap: 16px;
    margin-bottom: 32px;
  }
}
.timeline__phase {
  width: 36px;
  flex-shrink: 0;
  border-radius: 100px 0;
  display: flex;
  justify-content: center;
  padding: 36px 0;
}
.timeline__phase--1 {
  background: linear-gradient(180deg, #0080C8 0%, #FCFF6F 100%);
}
.timeline__phase--2 {
  background: linear-gradient(180deg, #0080C8 0%, #FCFF6F 100%);
}
.timeline__phase--3 {
  background: linear-gradient(180deg, #0080C8 0%, #FCFF6F 100%);
}
@media (max-width: 767px) {
  .timeline__phase {
    width: 36px;
    padding: 36px 0;
  }
}
.timeline__phase-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.timeline__steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 12px;
}

.step {
  margin-bottom: 40px;
}
.step:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .step {
    margin-bottom: 32px;
  }
}
.step__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .step__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.step__badge {
  background-color: #0080C8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.step__title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .step__title {
    font-size: 20px;
  }
}
.step__content {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  font-weight: 400;
}
@media (max-width: 768px) {
  .step__content {
    font-size: 16px;
  }
}
.step__content p {
  margin-bottom: 0;
}
.step__list {
  list-style-type: disc;
  margin: 8px 0 8px 24px;
  padding: 0;
}
.step__list li {
  margin-bottom: 4px;
}

.flow-cta {
  text-align: center;
}
.flow-cta__title {
  font-size: 40px;
  font-weight: 700;
  color: #0080C8;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.flow-cta__desc {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 350;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.flow-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .flow-cta__actions {
    flex-direction: column;
    gap: 16px;
  }
  .flow-cta__actions .btn {
    box-sizing: border-box;
    width: 100%;
    min-width: auto;
  }
}

.group-info {
  width: 100%;
  background: linear-gradient(0deg, rgba(47, 128, 237, 0.1) 0%, rgba(47, 128, 237, 0.1) 100%), #FFF;
  padding: 100px 0;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .group-info {
    padding: 80px 24px;
  }
}
@media (max-width: 768px) {
  .group-info {
    padding: 56px 16px;
  }
}
.group-info__container {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .group-info__container {
    gap: 56px;
  }
}
.group-info__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1023px) {
  .group-info__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
  }
}
.group-info__content {
  flex: 1;
  min-width: 580px;
}
@media (max-width: 1023px) {
  .group-info__content {
    max-width: 100%;
    min-width: auto;
  }
}
.group-info__header {
  position: relative;
  margin-bottom: 32px;
}
.group-info__watermark {
  position: absolute;
  top: -75px;
  left: -60px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  color: rgba(0, 113, 185, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  .group-info__watermark {
    top: -30px;
    left: -10px;
  }
}
.group-info__title {
  position: relative;
  z-index: 2;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .group-info__title {
    font-size: 24px;
  }
}
.group-info__desc {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: justify;
}
.group-info__nyse {
  margin: 0;
}
.group-info__nyse-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .group-info__nyse-img {
    max-width: 100%;
  }
}
.group-info__visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .group-info__visual {
    width: 100%;
  }
}
.group-info__visual-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}
.group-info__bottom {
  width: 100%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}
@media (max-width: 1023px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-col__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  text-align: center;
}
.service-col__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice {
  width: 100%;
  padding: 100px 24px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .voice {
    padding: 80px 24px;
  }
}
@media (max-width: 768px) {
  .voice {
    padding: 50px 16px;
  }
}
.voice__container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.voice__header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 768px) {
  .voice__header {
    margin-bottom: 56px;
  }
}
.voice__watermark {
  position: absolute;
  top: -70px;
  left: -50px;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  color: #ececec;
  font-family: Arial, sans-serif;
  letter-spacing: 0.05em;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  .voice__watermark {
    top: -30px;
    left: -10px;
  }
}
.voice__title {
  position: relative;
  z-index: 2;
  font-family: "SF Pro Text", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #4F4F4F;
  letter-spacing: 0.05em;
}
.voice__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .voice__list {
    gap: 40px;
  }
}

.voice-card {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  .voice-card {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.voice-card__profile {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .voice-card__profile {
    width: 100%;
  }
}
.voice-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 16px 0;
  overflow: hidden;
}
.voice-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  position: relative;
  top: 10px;
}
.voice-card__info {
  text-align: center;
}
.voice-card__type {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  margin-top: 0;
}
.voice-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0;
}
.voice-card__bubble {
  flex: 1;
  position: relative;
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 16px;
  padding: 20px;
  box-sizing: border-box;
}
.voice-card__bubble::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  left: -9px;
  top: 42px;
  border-left: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .voice-card__bubble::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .voice-card__bubble {
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .voice-card__bubble::before {
    top: -9px;
    left: 50%;
    border-left: 2px solid #1a1a1a;
    border-top: 2px solid #1a1a1a;
    border-bottom: none;
    transform: translateX(-50%) rotate(45deg);
  }
  .voice-card__bubble {
    border: none;
    background-color: #fff;
  }
}
.voice-card__text {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 2;
  margin-top: 0;
  text-align: justify;
}
.voice-card__text:last-child {
  margin-bottom: 0;
}

.bottom-cta {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(to right, #0b80be 0%, #FCFF6F 70%, #0b80be 100%);
  overflow: hidden;
  padding: 35px 0;
}
@media (max-width: 1023px) {
  .bottom-cta {
    padding: 48px 24px 0;
  }
}
@media (max-width: 768px) {
  .bottom-cta {
    padding: 0 15px 60px;
    background: linear-gradient(93deg, #0080C8 0%, #FCFF6F 157.51%, #0080C8 224.57%);
  }
}
.bottom-cta__container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .bottom-cta__container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
  }
}
.bottom-cta__content {
  flex: 1;
  max-width: 610px;
}
@media (max-width: 1023px) {
  .bottom-cta__content {
    padding-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .bottom-cta__content {
    max-width: 100%;
    text-align: center;
    padding-bottom: 0;
  }
}
.bottom-cta__title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .bottom-cta__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.bottom-cta__desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}
@media (max-width: 768px) {
  .bottom-cta__desc {
    margin-bottom: 32px;
  }
}
.bottom-cta__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.bottom-cta__actions .btn {
  max-width: 295px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .bottom-cta__actions {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .bottom-cta__actions .btn {
    width: 100%;
    max-width: 100%;
  }
}
.bottom-cta__media {
  flex-shrink: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  width: 45%;
  max-width: 410px;
  position: absolute;
  right: 0;
  top: -50px;
}
@media (max-width: 767px) {
  .bottom-cta__media {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    margin-top: 16px;
    position: relative;
    top: 0;
  }
}
.bottom-cta__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media (max-width: 768px) {
  .bottom-cta__img {
    -o-object-position: bottom center;
       object-position: bottom center;
  }
}

.company {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .company {
    padding: 80px 24px;
  }
}
@media (max-width: 767px) {
  .company {
    padding: 56px 16px;
  }
}
.company__container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.company__header {
  position: relative;
  margin-bottom: 64px;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .company__header {
    margin-bottom: 48px;
    padding-left: 0;
  }
}
.company__watermark {
  position: absolute;
  top: 0;
  left: -60px;
  transform: translateY(-50%);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 700;
  color: #F2F2F2;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  .company__watermark {
    left: -8px;
  }
}
.company__title {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 700;
  color: #4F4F4F;
  letter-spacing: 1.4px;
}

.company-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.company-info__row {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}
.company-info__row--no-border {
  border-bottom: none;
}
.company-info__row--pb-small {
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .company-info__row--pb-small {
    padding-bottom: 8px;
  }
}
.company-info__row--pt-small {
  padding-top: 16px;
}
@media (max-width: 767px) {
  .company-info__row--pt-small {
    padding-top: 8px;
  }
}
.company-info__term {
  flex-shrink: 0;
  width: 35%;
  font-size: 1rem;
  font-weight: 700;
  color: #4F4F4F;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .company-info__term {
    width: 60px;
    font-size: 14px;
    font-weight: 400;
  }
}
.company-info__note {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #4F4F4F;
  margin-top: 4px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .company-info__note {
    display: none;
  }
}
.company-info__desc {
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  color: #4F4F4F;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .company-info__desc {
    font-size: 14px;
  }
}
.company-info__link {
  color: #007aff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}
.company-info__link:hover {
  opacity: 0.7;
}

.footer {
  width: 100%;
  background-color: #0080c6;
  padding: 32px 0 112px;
  color: #ffffff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .footer {
    padding: 48px 16px 32px;
  }
}
.footer__container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__container {
    gap: 32px;
  }
}
.footer__nav {
  width: 100%;
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1023px) {
  .footer__nav-list {
    gap: 24px 32px;
  }
}
@media (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.footer__nav-item {
  line-height: 1.5;
}
.footer__nav-link {
  font-family: "SF Pro Display", sans-serif;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__nav-link:hover, .footer__nav-link:focus {
  opacity: 0.7;
  outline: none;
}
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}
.footer__social-link:hover, .footer__social-link:focus {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  outline: none;
}
.footer__social-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__copy {
  margin: 0;
  text-align: center;
}
.footer__copy small {
  font-size: 10px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero__bg-image {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__bg-image::after {
    display: none;
  }
}
.sticky-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(to right, #0077c0 0%, #46a8a4 45%, #d8ea69 100%);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .sticky-cta__link {
    display: block;
    width: 100%;
    text-decoration: none;
  }
  .sticky-cta__container {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 32px 0 123px;
    min-height: 60px;
    box-sizing: border-box;
  }
  .sticky-cta__media {
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 95px;
    margin: 0;
    z-index: 2;
  }
  .sticky-cta__img {
    width: 100%;
    height: auto;
    display: block;
  }
  .sticky-cta__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sticky-cta__phone-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sticky-cta__icon {
    width: 28px;
    height: auto;
  }
  .sticky-cta__number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .sticky-cta__hours {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 4px;
    letter-spacing: 0.02em;
    margin-bottom: 0;
  }
  .sticky-cta__arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #ffffff;
  }
}

.footer-action {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 99;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  padding: 20px 0;
  background-color: #fff;
}
.footer-action.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.footer-action .footer-action__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.footer-action .footer-action__call .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 1.3em;
  letter-spacing: 0.1em;
  font-weight: bold;
  max-width: 240px;
  transition: opacity 0.3s, transform 0.3s;
  background: var(--btn, linear-gradient(92deg, #FFC700 0%, #FCFF6F 100%));
  margin: 0;
  width: 100%;
}
.footer-action .footer-action__call .btn-action:last-of-type {
  background: var(--btn-last, #0080C8);
  color: #fff;
}
@media (max-width: 768px) {
  .footer-action {
    display: none;
  }
}/*# sourceMappingURL=styles-fe.css.map */