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

html {
  background-color: #ffffff;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a2e;
}
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
body::before {
  background: rgba(22, 134, 163, 0.15);
  width: 191px;
  height: 191px;
  top: -48px;
  left: -48px;
  animation: orb-teal 14s ease-in-out infinite alternate;
  will-change: transform;
}
body::after {
  background: rgba(106, 61, 240, 0.1);
  width: 191px;
  height: 191px;
  bottom: -48px;
  right: -48px;
  animation: orb-purple 10s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes orb-teal {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(120px, 90px) scale(1.8);
  }
  100% {
    transform: translate(40px, 150px) scale(1.2);
  }
}
@keyframes orb-purple {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-130px, -80px) scale(1.6);
  }
  100% {
    transform: translate(-50px, -130px) scale(1.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }
}
img {
  max-width: 100%;
  display: block;
}

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

ul,
ol {
  list-style: none;
}

.color-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  opacity: 0.7;
}
.color-dots__dot {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(90deg, #2b7fff, #ad46ff);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  will-change: transform;
}

@keyframes dot-float-a {
  to {
    transform: translate(10px, -14px);
  }
}
@keyframes dot-float-b {
  to {
    transform: translate(-12px, 10px);
  }
}
@keyframes dot-float-c {
  to {
    transform: translate(8px, 16px);
  }
}
@keyframes dot-float-d {
  to {
    transform: translate(-9px, -12px);
  }
}
@keyframes dot-float-e {
  to {
    transform: translate(14px, 6px);
  }
}
.features {
  padding: 3rem 1rem;
}

.features__inner, .hero__inner {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.btn--primary {
  background-color: #2563eb;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #1d4ed8;
}

:root {
  --header-h: 64px;
}

body {
  padding-top: var(--header-h);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header__inner {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: var(--header-h);
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.header__logo img {
  display: block;
  width: 142px;
  height: 28px;
}
.header__logo:focus-visible {
  outline: 2px solid #6a3df0;
  outline-offset: 4px;
  border-radius: 4px;
}
.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: min(320px, 80vw);
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--header-h) + 16px) 32px 40px;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.header__nav--open {
  transform: translateX(0);
}
.header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.header__link {
  display: block;
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #4a5565;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header__link:hover {
  opacity: 0.7;
}
.header__link:focus-visible {
  outline: 2px solid #6a3df0;
  outline-offset: 4px;
  border-radius: 4px;
}
.header__link--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background: linear-gradient(-11.52deg, #1686a3 1.73%, #6a3df0 98.27%);
  border-radius: 10px;
  color: #fff;
}
.header__link--cta:hover {
  opacity: 0.85;
}
.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.header__toggle:focus-visible {
  outline: 2px solid #6a3df0;
  outline-offset: 2px;
  border-radius: 4px;
}
.header__toggle--active .header__toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.header__toggle--active .header__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__toggle--active .header__toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
.header__toggle-bar {
  display: block;
  width: 37px;
  height: 2px;
  background: #4a5565;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.header__overlay--visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .header__inner {
    grid-template-columns: auto 1fr;
    padding: 0 63.5px;
  }
  .header__nav {
    position: static;
    z-index: auto;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    overflow-y: visible;
    transform: none;
    transition: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header__list {
    flex-direction: row;
    align-items: center;
    gap: 52px;
  }
  .header__link--cta {
    height: 36px;
    padding: 0 32px;
  }
  .header__toggle {
    display: none;
  }
  .header__overlay {
    display: none;
  }
}

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

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 2.625rem;
  padding-inline: 1rem;
  padding-top: 3rem;
  padding-bottom: 1.8rem;
}

.hero__badge {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5625rem 0.8125rem;
  border: 1px solid rgba(22, 134, 163, 0.4);
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(22, 134, 163, 0.05), rgba(173, 70, 255, 0.05));
  font-size: 1.375rem;
  font-weight: 700;
  color: #364153;
  letter-spacing: 0.125rem;
}
.hero__badge::before, .hero__badge::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1686a3;
}

.hero__heading {
  display: grid;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.375rem;
  line-height: 3.5rem;
  font-feature-settings: "palt";
}

.hero__heading-line {
  display: block;
  font-size: 1.7rem;
  color: #101828;
}

.hero__heading-em {
  font-size: 2.7rem;
}
.hero__heading-em.em-big {
  font-size: 3rem;
}

.hero__heading-accent {
  display: block;
  font-size: 2.6875rem;
  background: linear-gradient(-13.92deg, #1686a3 1.73%, #6a3df0 98.27%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 1.25rem;
  line-height: 2.1875rem;
  color: #4a5565;
  letter-spacing: 0.04375rem;
}

.hero__btn {
  display: inline-block;
  padding: 1rem 2rem;
  min-height: 3.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(-12.44deg, #1686a3 1.73%, #6a3df0 98.27%);
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}
.hero__btn:hover {
  filter: brightness(1.05);
}

.hero__trust {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}

.hero__trust-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #4a5565;
  letter-spacing: 0.04375rem;
}

.hero__trust-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero__trust-item {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6a7282;
  letter-spacing: 0.03125rem;
  text-align: left;
}
.hero__trust-item::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(-12.44deg, #1686a3 1.73%, #6a3df0 98.27%);
  position: relative;
}
.hero__trust-item::after {
  content: "";
  position: relative;
  justify-self: start;
  width: 0.45rem;
  height: 0.75rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-1.05rem) rotate(45deg);
}

.hero__scroll {
  display: block;
  width: 1.5rem;
  height: 2.5rem;
  margin: 0 auto 3.75rem;
  border: 2px solid #d1d5dc;
  border-radius: 9999px;
  position: relative;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.375rem;
  background: #99a1af;
  border-radius: 9999px;
}

@media (min-width: 768px) {
  .hero__trust-list {
    grid-template-columns: repeat(3, auto);
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-block: 6.25rem;
  }
  body::before, body::after {
    width: 384px;
    height: 384px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    row-gap: 3.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero__badge {
    gap: 2.375rem;
  }
  .hero__heading {
    line-height: 5rem;
  }
  .hero__heading-line {
    font-size: 3rem;
  }
  .hero__heading-em {
    font-size: 4rem;
  }
  .hero__heading-em.em-big {
    font-size: 4.5rem;
  }
  .hero__heading-accent {
    font-size: 4rem;
  }
}
.problems {
  padding-bottom: 96px;
  display: grid;
  gap: 40px;
}
.problems__inner {
  padding: 0 20px;
}
.problems__header {
  display: grid;
  gap: 16px;
  padding: 40px 0;
  text-align: center;
}
.problems__title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 3px;
  color: #403d3c;
}
.problems__lead {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.problems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.problems__item {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(151.68deg, #f9fafb 0%, #fff 100%);
  border: 1px solid #f3f4f6;
  border-radius: 16px;
}
.problems__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(106, 61, 240, 0.1) 0%, rgba(22, 134, 163, 0.1) 100%);
  border-radius: 14px;
  flex-shrink: 0;
}
.problems__item-icon img {
  display: block;
  width: 24px;
  height: 24px;
}
.problems__item-title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #101828;
}
.problems__item-body {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.problems__solution {
  padding: 0 20px;
  display: grid;
  gap: 24px;
}
.problems__image {
  border-radius: 16px;
  overflow: hidden;
}
.problems__image img {
  display: block;
  width: 100%;
  height: 390px;
  -o-object-fit: cover;
     object-fit: cover;
}
.problems__content {
  display: grid;
  gap: 20px;
}
.problems__subtitle {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #101828;
}
.problems__body {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.problems__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.problems__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "LINE Seed JP OTF", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: #364153;
}
.problems__list-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .problems__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .problems {
    gap: 72px;
  }
  .problems__inner {
    padding: 0 60px;
  }
  .problems__header {
    max-width: 770px;
    margin-inline: auto;
    padding: 48px 0;
  }
  .problems__title {
    font-size: 40px;
  }
  .problems__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .problems__item {
    padding: 32px 16px;
  }
  .problems__solution {
    padding: 0 60px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
  .problems__image img {
    height: 100%;
    min-height: 348px;
  }
  .problems__content {
    gap: 32px;
    padding: 40px 60px;
    align-self: center;
  }
  .problems__subtitle {
    font-size: 25px;
  }
  .problems__body {
    font-size: 16px;
  }
  .problems__list-item {
    font-size: 16px;
  }
}

.services {
  padding: 96px 0;
}
.services__inner {
  padding: 0 20px;
  display: grid;
  gap: 48px;
}
.services__header {
  display: grid;
  gap: 8px;
  text-align: center;
}
.services__title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 3px;
  color: #101828;
}
.services__lead {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.services__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}
.services__card-border {
  height: 4px;
  background: linear-gradient(-0.56deg, #1686a3 1.73%, #6a3df0 98.27%);
}
.services__card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px;
}
.services__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(-42.87deg, #1686a3 1.73%, #6a3df0 98.27%);
  flex-shrink: 0;
}
.services__card-icon img {
  display: block;
}
.services__card-title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #101828;
}
.services__card-desc {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
  color: #4a5565;
}
.services__card-list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
  display: grid;
  gap: 8px;
}
.services__card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #4a5565;
}
.services__card-item img {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__inner {
    padding: 0 60px;
  }
  .services__title {
    font-size: 40px;
  }
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .services__card-body {
    padding: 24px 35px;
  }
}

.features {
  background-color: #f5f5f7;
}

.features__heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.features__intro {
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 60ch;
}

.features__list {
  display: grid;
  gap: 1.5rem;
}

.features__item {
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.features__icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e5e7eb;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.features__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.features__description {
  color: #6b7280;
  font-size: 0.9375rem;
}

.process {
  padding: 96px 0;
}
.process__inner {
  padding: 0 20px;
  display: grid;
  gap: 64px;
}
.process__header {
  display: grid;
  gap: 8px;
  text-align: center;
}
.process__title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 3px;
  color: #101828;
}
.process__title-sub {
  font-size: 21px;
}
.process__lead {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.process__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.process__grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, #bedbff, #e9d4ff 50%, #bedbff);
  pointer-events: none;
  z-index: 0;
}
.process__item {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 27px 33px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.process__step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(-42.87deg, #1686a3 1.73%, #6a3df0 98.27%);
  flex-shrink: 0;
}
.process__icon img {
  display: block;
}
.process__number {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #155dfc;
}
.process__item-title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #101828;
}
.process__item-body {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.7px;
  color: #4a5565;
}
@media (min-width: 1024px) {
  .process__inner {
    padding: 0 60px;
  }
  .process__title {
    font-size: 40px;
  }
  .process__title-sub {
    font-size: 31px;
  }
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .process__grid::before {
    top: 131px;
    bottom: auto;
    left: 0;
    transform: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #bedbff, #e9d4ff 50%, #bedbff);
  }
}

.strengths {
  padding: 96px 0;
}
.strengths__inner {
  padding: 0 20px;
  display: grid;
  gap: 64px;
}
.strengths__header {
  display: grid;
  gap: 8px;
  text-align: center;
}
.strengths__title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 3px;
  color: #101828;
}
.strengths__title-sub {
  font-size: 21px;
}
.strengths__lead {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.strengths__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.strengths__item {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  background: linear-gradient(140deg, #f9fafb 0%, #fff 100%);
}
.strengths__item-icon {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.strengths__item-title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #101828;
}
.strengths__item-body {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.7px;
  color: #4a5565;
}
@media (min-width: 768px) {
  .strengths__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .strengths__inner {
    padding: 0 60px;
  }
  .strengths__title {
    font-size: 40px;
  }
  .strengths__title-sub {
    font-size: 38px;
  }
  .strengths__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.profile {
  padding: 96px 0;
}
.profile__inner {
  padding: 0 20px;
  display: grid;
  gap: 60px;
}
.profile__person {
  display: grid;
  gap: 64px;
}
.profile__header {
  display: grid;
  gap: 8px;
  text-align: center;
}
.profile__title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 3px;
  color: #101828;
}
.profile__lead {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.profile__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 -4px 6px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.profile__card-image {
  flex-shrink: 0;
}
.profile__card-image img {
  display: block;
  width: 100%;
  height: 308px;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile__card-body {
  display: grid;
  gap: 12px;
  padding: 16px 20px 24px;
}
.profile__card-name {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #101828;
}
.profile__card-role {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.7px;
  color: #155dfc;
}
.profile__card-bio {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.profile__card-bio li {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.7px;
  color: #4a5565;
}
.profile__card-bio li::before {
  content: "• ";
}
.profile__about {
  display: grid;
  gap: 40px;
}
.profile__about-title {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #101828;
  text-align: center;
}
.profile__list {
  display: grid;
  gap: 13px;
}
.profile__item {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-bottom: 13px;
  border-bottom: 1px solid #000;
}
.profile__term {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #000;
}
.profile__def {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (min-width: 1024px) {
  .profile__inner {
    padding: 0 60px;
  }
  .profile__title {
    font-size: 40px;
  }
  .profile__card {
    flex-direction: row;
    gap: 32px;
    max-width: 905px;
    margin-inline: auto;
  }
  .profile__card-image {
    flex: 1;
  }
  .profile__card-image img {
    height: 100%;
    min-height: 308px;
  }
  .profile__card-body {
    flex: 1;
    padding: 16px 32px;
    align-content: start;
  }
  .profile__list {
    max-width: 809px;
    margin-inline: auto;
    width: 100%;
  }
  .profile__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
  }
  .profile__term {
    width: 220px;
    flex-shrink: 0;
  }
  .profile__def {
    flex: 1;
  }
}

.philosophy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(-58.78deg, #1686a3 1.73%, #6a3df0 98.27%);
  opacity: 0.9;
}
.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
}
.philosophy__inner {
  position: relative;
  z-index: 1;
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.philosophy__quote {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 2.2;
  letter-spacing: 0.3px;
  color: #fff;
  text-align: center;
}
.philosophy__quote p {
  margin: 0;
}
.philosophy__rule {
  width: 196px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.philosophy__cite {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .philosophy {
    background: linear-gradient(-17.49deg, #1686a3 1.73%, #6a3df0 98.27%);
  }
  .philosophy__inner {
    padding: 64px 60px;
    max-width: 1343px;
    margin-inline: auto;
  }
  .philosophy__quote {
    font-size: 30px;
    max-width: 1123px;
  }
  .philosophy__rule {
    width: 80px;
  }
}

.contact {
  padding: 60px 20px;
}
.contact__inner {
  width: 100%;
}
.contact__card {
  background: linear-gradient(116.34deg, #f9fafb 0%, #fff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.contact__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  color: #101828;
  text-align: center;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__label {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: #364153;
}
.contact__input, .contact__textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.31px;
  color: #0a0a0a;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}
.contact__input:focus, .contact__textarea:focus {
  border-color: #6a3df0;
}
.contact__input {
  height: 50px;
  line-height: normal;
}
.contact__textarea {
  height: 122px;
  line-height: 24px;
  resize: vertical;
}
.contact__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.contact__note {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #000;
  text-align: center;
}
.contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(-9.23deg, #1686a3 1.73%, #6a3df0 98.27%);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #fff;
  cursor: pointer;
}
.contact__btn img {
  flex-shrink: 0;
}
.contact__btn:hover {
  filter: brightness(1.05);
}
@media (min-width: 1024px) {
  .contact {
    padding: 94px 60px;
  }
  .contact__inner {
    max-width: 1015px;
    margin-inline: auto;
  }
  .contact__card {
    background: linear-gradient(144.39deg, #f9fafb 0%, #fff 100%);
    padding: 33px;
  }
  .contact__note {
    white-space: nowrap;
  }
  .contact__btn {
    width: auto;
    padding: 16px 148px;
  }
}

.footer {
  background: #f4f4f6;
}
.footer__inner {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.footer__logo {
  display: block;
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
}
.footer__address {
  font-family: "LINE Seed JP OTF", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #4a5565;
  font-style: normal;
}
.footer__address p {
  margin: 0;
}
.footer .footer__bottom {
  background-color: #403D3C;
  color: #fff;
}
.footer .footer__inner__flex {
  display: flex;
  justify-content: space-between;
  gap: unset;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (min-width: 1024px) {
  .footer__inner {
    padding: 32px 60px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 60px;
  }
}/*# sourceMappingURL=styles.css.map */