@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* Base */
html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

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

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

.section {
  position: relative;
}

.sectionLabel {
  font: 500 32px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  letter-spacing: 0.02em;
}

.sectionLabel--right {
  position: absolute;
  right: 40px;
  top: 40px;
}

.sectionLabel--bottom {
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.sectionLabel--left {
  position: absolute;
  left: 30px;
  bottom: 40px;
}

/* =========================
   Drawer + Header (SCSS)
   ========================= */
:root {
  --drawer-w: min(86vw, 360px);
}
@media screen and (max-width: 768px) {
  :root {
    --drawer-w: min(86vw, 180px);
  }
}

/* -------------------------
   Header
------------------------- */
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: 50;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 12px;
  }
}

.header__left {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 100px;
  height: auto;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 70px;
  }
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .header__right {
    gap: 10px;
  }
}

/* -------------------------
   CTA
------------------------- */
.header__cta {
  right: 20px;
  top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 10px 16px;
  -webkit-backdrop-filter: saturate(120%) blur(2px);
          backdrop-filter: saturate(120%) blur(2px);
  transition: transform 0.35s ease;
  will-change: transform;
  z-index: 1001;
}
@media screen and (max-width: 768px) {
  .header__cta {
    top: 6px;
    right: 10px;
    padding: 8px 12px;
  }
}

.header__cta-icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
}
.header__cta-icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__cta-icon {
    width: 50px;
    height: 50px;
  }
}

.header__cta-text {
  font: 700 14px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}
@media screen and (max-width: 768px) {
  .header__cta-text {
    font-size: 12px;
  }
}

/* -------------------------
   Hamburger
------------------------- */
.hamburger {
  width: 60px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  transition: transform 0.35s ease;
  will-change: transform;
}
.hamburger span {
  display: block;
  height: 8px;
  background: white;
  border-radius: 8px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
}
.hamburger span:nth-child(1) {
  width: 20px;
}
.hamburger span:nth-child(2) {
  width: 40px;
}
.hamburger span:nth-child(3) {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 50px;
    height: 50px;
  }
  .hamburger span:nth-child(1) {
    height: 6px;
    width: 20px;
  }
  .hamburger span:nth-child(2) {
    height: 6px;
    width: 35px;
  }
  .hamburger span:nth-child(3) {
    height: 6px;
    width: 50px;
  }
}

#js-hamburger[aria-expanded=true] span {
  width: 60px;
}
#js-hamburger[aria-expanded=true] span:nth-child(1) {
  transform-origin: right center;
  width: 40px;
  transform: translateX(16px) translateY(21px) rotate(-45deg);
}
#js-hamburger[aria-expanded=true] span:nth-child(2) {
  width: 60px;
  transform: translateX(-6px);
}
#js-hamburger[aria-expanded=true] span:nth-child(3) {
  transform-origin: right center;
  width: 40px;
  transform: translateX(16px) translateY(-21px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  #js-hamburger[aria-expanded=true] span {
    width: 60px;
  }
  #js-hamburger[aria-expanded=true] span:nth-child(1) {
    transform-origin: right center;
    width: 20px;
    transform: translateX(20px) translateY(15px) rotate(-45deg);
  }
  #js-hamburger[aria-expanded=true] span:nth-child(2) {
    width: 30px;
    transform: translateX(10px);
  }
  #js-hamburger[aria-expanded=true] span:nth-child(3) {
    transform-origin: right center;
    width: 20px;
    transform: translateX(20px) translateY(-15px) rotate(45deg);
  }
}

/* -------------------------
   Drawer base
------------------------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--drawer-w);
  background: #3f3f3f;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  will-change: transform;
}

body.is-drawer-open {
  overflow: hidden;
}
body.is-drawer-open .drawer {
  pointer-events: auto;
}
body.is-drawer-open .drawer__overlay {
  opacity: 1;
}
body.is-drawer-open .drawer__panel {
  transform: translateX(0);
}
body.is-drawer-open .hamburger,
body.is-drawer-open .header__cta {
  transform: translateX(calc(-1 * var(--drawer-w)));
}

/* -------------------------
   Drawer content look
------------------------- */
.drawer__nav {
  padding: 20px 0 40px;
}

.drawer__title {
  margin: 0;
  font-size: 32px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
@media screen and (max-width: 768px) {
  .drawer__title {
    font-size: 28px;
  }
}

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer__list li + li {
  margin-top: 0;
}
.drawer__list a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.drawer__list a:active {
  opacity: 0.7;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 560px;
  }
}

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

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

.hero__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero__glow--purple {
  z-index: 2;
  background: radial-gradient(circle at 50% 50%, rgba(90, 0, 200, 0.25) 0%, rgba(90, 0, 200, 0) 80%);
}

.hero__glow--blue {
  z-index: 3;
  background: radial-gradient(circle at 50% 50%, rgba(0, 150, 255, 0.25) 0%, rgba(0, 150, 255, 0) 85%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  height: 100vh;
  width: 100vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.hero__be {
  position: absolute;
  right: 10.14%;
  bottom: 22.47%;
  font: 700 124px/1.45 "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .hero__be {
    font-size: 48px;
    margin: 0 0 -12px 40px;
    right: 6%;
    bottom: 37.47%;
  }
}

.hero__title {
  position: absolute;
  right: 16.94%;
  bottom: 3.95%;
  font: 700 124px/1.21 "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 48px;
    right: 15.14%;
    bottom: 25.47%;
    margin: 0 0 20px 40px;
  }
}

/* About */
.about {
  position: relative;
  padding: 190px 3% 190px 12%;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 80px 15px 40px;
  }
}

.about__inner {
  max-width: 1440px;
}

.border__left-upper {
  position: absolute;
  left: 6.45833%;
  top: 0px;
  height: 80px;
  width: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .border__left-upper {
    left: 16%;
    height: 20px;
  }
}

.border__left-under {
  position: absolute;
  left: 6.45833%;
  top: 118px;
  height: 793px;
  width: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .border__left-under {
    left: 16%;
    height: 20px;
    top: 45px;
  }
}

.about .sectionLabel {
  position: absolute;
  font-size: 32px;
  font-weight: 500;
  left: 43px;
  top: 80px;
}
@media screen and (max-width: 768px) {
  .about .sectionLabel {
    left: 7.2%;
    top: 20px;
    font-size: 20px;
  }
}

.about__content {
  display: flex;
  gap: 66px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about__content {
    flex-direction: column;
    gap: 30px;
  }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 719px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .about__text {
    gap: 30px;
  }
}

.about__lead {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 700;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .about__lead {
    font-size: 20px;
    margin: 0 auto;
  }
}

.about__desc {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 300;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .about__desc {
    font-size: 12px;
    display: inline-block;
    margin: 0 auto 20px;
  }
}

.about__desc p {
  margin-bottom: 40px;
}

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

.about__visual {
  position: relative;
  width: 400px;
  height: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .about__visual {
    width: 305px;
    height: 406px;
    margin: 0 20px auto;
  }
}

.about__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 500px;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
.about__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
@media (max-width: 1200px) {
  .about__image {
    max-width: 350px;
    max-height: 437px;
    aspect-ratio: 4/5;
  }
}
@media (max-width: 1000px) {
  .about__image {
    max-width: 300px;
    max-height: 375px;
    aspect-ratio: 4/5;
  }
}
@media (max-width: 800px) {
  .about__image {
    max-width: 250px;
    max-height: 312px;
    aspect-ratio: 4/5;
  }
}
@media screen and (max-width: 768px) {
  .about__image {
    position: static;
    width: 305px;
    height: 406px;
  }
}

.about__imageNote {
  position: absolute;
  left: 109px;
  top: 202px;
  font: 700 40px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__imageNote {
    font-size: 24px;
  }
}

/* Service */
.service {
  position: relative;
  background: linear-gradient(180deg, #000 0%, #001851 100%);
  height: 770px;
}

.service__inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.service .sectionLabel--right {
  right: 3.45833%;
  top: 40px;
}

.service__grid {
  padding: 85px 100px;
  width: 1000px;
  max-width: calc(100% - 200px);
  display: grid;
  grid-template-columns: repeat(2, 590px);
  grid-auto-rows: 200px;
  gap: 0;
}
@media (max-width: 1300px) {
  .service__grid {
    width: calc(100% - 180px);
    max-width: calc(100% - 180px);
    padding: 85px 90px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .service__grid {
    width: calc(100% - 160px);
    max-width: calc(100% - 160px);
    padding: 85px 80px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .service__grid {
    width: calc(100% - 140px);
    max-width: calc(100% - 140px);
    padding: 85px 70px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.service__item {
  display: flex;
  align-items: center;
  padding: 38px 0;
  gap: 25px;
  justify-content: center;
  position: relative;
}
@media (max-width: 1400px) {
  .service__item {
    padding: 20px 0;
    gap: 15px;
  }
}

.service__item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
}

.service__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 1px;
  height: 1px;
  width: 470px;
  background: #fff;
  left: 60px;
}

.service__item:nth-child(2n)::after {
  left: 60px;
  right: 1px;
}
@media (max-width: 1400px) {
  .service__item:nth-child(2n)::after {
    right: 20px;
    width: 400px;
  }
}
@media (max-width: 1300px) {
  .service__item:nth-child(2n)::after {
    right: 30px;
    width: 350px;
  }
}
@media (max-width: 1200px) {
  .service__item:nth-child(2n)::after {
    right: 40px;
    width: 250px;
  }
}
@media (max-width: 1024px) {
  .service__item:nth-child(2n)::after {
    right: 50px;
    width: 150px;
  }
}

.service__item:nth-child(2n)::before {
  display: none;
}

.service__item:nth-last-child(-n+2)::after {
  display: none;
}

.service__icon {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.service__name {
  font: 500 32px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  text-align: center;
  width: 360px;
}
@media (max-width: 1400px) {
  .service__name {
    font-size: 24px;
    text-align: left;
  }
}
.service__sideWords {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
}

.service__side--en {
  position: absolute;
  right: 3.45833%;
  top: 247px;
  writing-mode: vertical-rl;
  font: 200 100px/1.364 "Nunito Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.service__side--jp {
  position: absolute;
  right: 2.45833%;
  top: 630px;
  width: 136px;
  letter-spacing: 0.4em;
  font: 400 20px/1.219 "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.service .sectionLabel--bottom {
  right: 28px;
  bottom: 40px;
}

.border__right-upper {
  position: absolute;
  right: 6.45833%;
  top: 0px;
  height: 40px;
  width: 2px;
  background-color: #fff;
}

.service__right-divider {
  position: absolute;
  right: 6.45833%;
  top: 78px;
  width: 0;
  height: 169px;
  border-right: 2px solid #fff;
  opacity: 0.8;
}

.border__right-under {
  position: absolute;
  right: 6.45833%;
  top: 650px;
  height: 120px;
  width: 2px;
  background-color: #fff;
}

@media screen and (max-width: 1180px) {
  .service {
    height: auto;
    padding: 80px 20px 40px;
  }
  .service .sectionLabel--right {
    right: 20px;
    top: 20px;
    font-size: 24px;
  }
  .service__side--en {
    position: static;
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    writing-mode: horizontal-tb;
  }
  .service__side--jp {
    position: static;
    display: block;
    text-align: center;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.2em;
  }
  .service__grid {
    padding: 0;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .service__item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
  }
  .service__item:last-child {
    border-bottom: none;
  }
  .service__item::before,
.service__item::after {
    display: none;
  }
  .service__icon {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
  }
  .service__name {
    font-size: 16px;
    text-align: left;
    width: auto;
    color: #fff;
  }
  .service__sideWords {
    display: none;
  }
  .service__right-divider {
    display: none;
  }
  .border__right-upper {
    height: 20px;
    right: 16%;
    top: 0px;
  }
  .border__right-under {
    height: 20px;
    right: 16%;
    top: 48px;
  }
}
/* System */
.system {
  position: relative;
  background: linear-gradient(180deg, #001851 0%, #000 100%);
  height: 600px;
}

.border__upper {
  position: absolute;
  left: 6.45833%;
  top: 0;
  height: 2px;
  right: 6.45833%;
  background-color: #fff;
}
@media (max-width: 1300px) {
  .border__upper {
    display: none;
  }
}

.system__inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.system__grid {
  padding: 85px 100px;
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 590px);
  grid-auto-rows: 200px;
  gap: 0;
}
@media (max-width: 1300px) {
  .system__grid {
    width: calc(100% - 180px);
    max-width: calc(100% - 180px);
    padding: 85px 90px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .system__grid {
    width: calc(100% - 160px);
    max-width: calc(100% - 160px);
    padding: 85px 80px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .system__grid {
    width: calc(100% - 140px);
    max-width: calc(100% - 140px);
    padding: 85px 70px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.system__item {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  justify-content: center;
}

.system__item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
}

.system__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 1px;
  height: 1px;
  width: 470px;
  background: #fff;
  left: 60px;
}

.system__item:nth-child(2n)::after {
  left: 60px;
  right: 0;
}
@media (max-width: 1400px) {
  .system__item:nth-child(2n)::after {
    right: 20px;
    width: 400px;
  }
}
@media (max-width: 1300px) {
  .system__item:nth-child(2n)::after {
    right: 30px;
    width: 350px;
  }
}
@media (max-width: 1200px) {
  .system__item:nth-child(2n)::after {
    right: 40px;
    width: 250px;
  }
}
@media (max-width: 1024px) {
  .system__item:nth-child(2n)::after {
    right: 50px;
    width: 150px;
  }
}

.system__item:nth-child(2n)::before {
  display: none;
}

.system__item:nth-last-child(-n+2)::after {
  display: none;
}

.system__icon {
  width: 150px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.system__name {
  font: 500 32px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  width: 360px;
}
@media (max-width: 1300px) {
  .system__name {
    font-size: 24px;
    text-align: left;
  }
}

.system__side--en {
  position: absolute;
  left: 1.04166%;
  top: 140px;
  writing-mode: vertical-rl;
  font: 200 50px/1.364 "Nunito Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1300px) {
  .system__side--en {
    left: auto;
    right: 2%;
  }
}

.system__side--jp {
  position: absolute;
  left: 2.45833%;
  top: 460px;
  width: 140px;
  letter-spacing: 0.4em;
  font: 400 20px/1.219 "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1300px) {
  .system__side--jp {
    left: auto;
    right: 2%;
  }
}

.system .sectionLabel--bottom {
  left: 2.04166%;
  bottom: 38px;
}

.system__lines {
  position: absolute;
  left: 6.45833%;
  top: 0;
  height: 140px;
  border-left: 2px solid #fff;
}
@media (max-width: 1300px) {
  .system__lines {
    left: auto;
    right: 6.45833%;
  }
}

.system__left-middle {
  position: absolute;
  left: 6.45833%;
  bottom: 70px;
  height: 40px;
  width: 2px;
  background-color: #fff;
}

.system__left-under {
  position: absolute;
  left: 6.45833%;
  bottom: 0;
  height: 40px;
  width: 2px;
  background-color: #fff;
}

@media screen and (max-width: 1180px) {
  .system {
    height: auto;
    padding: 0 20px 80px;
  }
  .system__side--en {
    position: static;
    display: block;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    writing-mode: horizontal-tb;
  }
  .system__side--jp {
    position: static;
    display: block;
    text-align: center;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.2em;
  }
  .system .sectionLabel--bottom {
    font-size: 24px;
    left: 4.2%;
    bottom: 20px;
  }
  .system__grid {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
  }
  .system__item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
  }
  .system__item:last-child {
    border-bottom: none;
  }
  .system__item::before,
.system__item::after {
    display: none;
  }
  .system__icon {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
  }
  .system__name {
    font-size: 16px;
    width: auto;
    color: #fff;
  }
  .system__left-middle {
    left: 16%;
    height: 20px;
    bottom: 50px;
  }
  .system__left-under {
    left: 16%;
    height: 20px;
    bottom: 0;
  }
  .system__lines,
.border__upper {
    display: none;
  }
}
/* Reviews */
.reviews {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: auto;
}

.reviews__inner {
  position: relative;
  width: 1146px;
  max-width: 100%;
}
@media (max-width: 1180px) {
  .reviews__inner {
    width: 1000px;
  }
}
@media (max-width: 1000px) {
  .reviews__inner {
    width: 900px;
  }
}
@media (max-width: 800px) {
  .reviews__inner {
    width: 900px;
  }
}
@media (max-width: 600px) {
  .reviews__inner {
    width: 400px;
  }
}
@media (max-width: 400px) {
  .reviews__inner {
    width: 350px;
  }
}

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

.reviews__title {
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  text-align: center;
  font: 700 54px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  margin: 0;
  color: #000;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1180px) {
  .reviews__title {
    font-size: 48px;
    top: 70px;
  }
}
@media (max-width: 1000px) {
  .reviews__title {
    font-size: 42px;
    top: 60px;
  }
}
@media (max-width: 800px) {
  .reviews__title {
    font-size: 36px;
    top: 55px;
  }
}
@media (max-width: 700px) {
  .reviews__title {
    font-size: 30px;
    top: 46px;
  }
}
@media (max-width: 600px) {
  .reviews__title {
    font-size: 24px;
    top: 40px;
  }
}
@media (max-width: 500px) {
  .reviews__title {
    font-size: 20px;
    top: 32px;
  }
}
@media (max-width: 400px) {
  .reviews__title {
    font-size: 18px;
    top: 28px;
  }
}

.reviews__count {
  position: absolute;
  left: 10%;
  top: 173px;
  font: 700 80px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  margin: 0;
  color: #000;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1180px) {
  .reviews__count {
    left: 10%;
    font-size: 68px;
    top: 160px;
  }
}
@media (max-width: 1000px) {
  .reviews__count {
    left: 10%;
    font-size: 60px;
    top: 140px;
  }
}
@media (max-width: 900px) {
  .reviews__count {
    left: 10%;
    font-size: 55px;
    top: 130px;
  }
}
@media (max-width: 800px) {
  .reviews__count {
    left: 8%;
    font-size: 50px;
    top: 120px;
  }
}
@media (max-width: 700px) {
  .reviews__count {
    left: 8%;
    font-size: 44px;
    top: 110px;
  }
}
@media (max-width: 600px) {
  .reviews__count {
    left: 8%;
    top: 90px;
    font-size: 36px;
  }
}
@media (max-width: 500px) {
  .reviews__count {
    left: 8%;
    top: 75px;
    font-size: 28px;
  }
}
@media (max-width: 400px) {
  .reviews__count {
    left: 8%;
    top: 60px;
    font-size: 28px;
  }
}

.reviews__countNote {
  position: absolute;
  color: #000;
  left: 44%;
  top: 220px;
  font: 700 36px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  margin: 0;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1180px) {
  .reviews__countNote {
    left: 44%;
    font-size: 30px;
    top: 205px;
  }
}
@media (max-width: 1000px) {
  .reviews__countNote {
    left: 43%;
    font-size: 28px;
    top: 175px;
  }
}
@media (max-width: 900px) {
  .reviews__countNote {
    left: 43%;
    font-size: 28px;
    top: 162px;
  }
}
@media (max-width: 800px) {
  .reviews__countNote {
    left: 43%;
    font-size: 28px;
    top: 147px;
  }
}
@media (max-width: 800px) {
  .reviews__countNote {
    left: 43%;
    font-size: 28px;
    top: 147px;
  }
}
@media (max-width: 700px) {
  .reviews__countNote {
    left: 43%;
    font-size: 24px;
    top: 135px;
  }
}
@media (max-width: 600px) {
  .reviews__countNote {
    left: 42%;
    font-size: 20px;
    top: 107px;
  }
}
@media (max-width: 500px) {
  .reviews__countNote {
    left: 41%;
    font-size: 16px;
    top: 90px;
  }
}
@media (max-width: 400px) {
  .reviews__countNote {
    left: 45%;
    font-size: 14px;
    top: 78px;
  }
}

.reviews__stars {
  position: absolute;
  left: 5%;
  top: 320px;
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1180px) {
  .reviews__stars {
    left: 5%;
    top: 290px;
    gap: 5px;
  }
}
@media (max-width: 1000px) {
  .reviews__stars {
    left: 5%;
    top: 260px;
    gap: 5px;
  }
}
@media (max-width: 900px) {
  .reviews__stars {
    left: 5%;
    top: 240px;
    gap: 5px;
  }
}
@media (max-width: 800px) {
  .reviews__stars {
    left: 7%;
    top: 220px;
    gap: 4px;
  }
}
@media (max-width: 700px) {
  .reviews__stars {
    left: 5%;
    top: 190px;
    gap: 4px;
  }
}
@media (max-width: 600px) {
  .reviews__stars {
    left: 5%;
    top: 160px;
    gap: 4px;
  }
}
@media (max-width: 500px) {
  .reviews__stars {
    left: 5%;
    top: 130px;
    gap: 2px;
  }
}
@media (max-width: 400px) {
  .reviews__stars {
    left: 5%;
    top: 105px;
    gap: 2px;
  }
}

.reviews__star {
  width: 110px;
  height: 110px;
  background: #FFD83D;
  -webkit-clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
          clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@media (max-width: 1180px) {
  .reviews__star {
    width: 90px;
    height: 91px;
  }
}
@media (max-width: 1000px) {
  .reviews__star {
    width: 70px;
    height: 71px;
  }
}
@media (max-width: 800px) {
  .reviews__star {
    width: 60px;
    height: 61px;
  }
}
@media (max-width: 600px) {
  .reviews__star {
    width: 45px;
    height: 46px;
  }
}
@media (max-width: 500px) {
  .reviews__star {
    width: 38px;
    height: 39px;
  }
}
@media (max-width: 400px) {
  .reviews__star {
    width: 32px;
    height: 33px;
  }
}

.reviews__avg {
  position: absolute;
  left: 58%;
  top: 310px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
@media (max-width: 1180px) {
  .reviews__avg {
    left: 53%;
    top: 280px;
    gap: 14px;
  }
}
@media (max-width: 1000px) {
  .reviews__avg {
    left: 48%;
    top: 260px;
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .reviews__avg {
    left: 50%;
    top: 230px;
    gap: 8px;
  }
}
@media (max-width: 800px) {
  .reviews__avg {
    left: 50%;
    top: 218px;
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .reviews__avg {
    left: 58%;
    top: 190px;
    gap: 6px;
  }
}
@media (max-width: 600px) {
  .reviews__avg {
    left: 52%;
    top: 150px;
    gap: 6px;
  }
}
@media (max-width: 500px) {
  .reviews__avg {
    left: 55%;
    top: 125px;
    gap: 5px;
  }
}
@media (max-width: 400px) {
  .reviews__avg {
    left: 50%;
    top: 100px;
    gap: 4px;
  }
}

.reviews__avgLabel {
  font: 700 56px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #000;
}
@media (max-width: 1180px) {
  .reviews__avgLabel {
    font-size: 40px;
  }
}
@media (max-width: 1000px) {
  .reviews__avgLabel {
    font-size: 36px;
  }
}
@media (max-width: 900px) {
  .reviews__avgLabel {
    font-size: 32px;
  }
}
@media (max-width: 800px) {
  .reviews__avgLabel {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .reviews__avgLabel {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .reviews__avgLabel {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .reviews__avgLabel {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .reviews__avgLabel {
    font-size: 14px;
  }
}

.reviews__avgValue {
  font: 700 104px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #FFD83D;
}
@media (max-width: 1180px) {
  .reviews__avgValue {
    font-size: 92px;
  }
}
@media (max-width: 1000px) {
  .reviews__avgValue {
    font-size: 72px;
  }
}
@media (max-width: 800px) {
  .reviews__avgValue {
    font-size: 56px;
  }
}
@media (max-width: 600px) {
  .reviews__avgValue {
    font-size: 48px;
  }
}
@media (max-width: 500px) {
  .reviews__avgValue {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  .reviews__avgValue {
    font-size: 32px;
  }
}

.reviews__note {
  position: absolute;
  left: 0;
  top: 496px;
  width: 100%;
  text-align: center;
  font: 700 36px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  margin: 0;
  color: #000;
}
@media (max-width: 1180px) {
  .reviews__note {
    font-size: 34px;
    top: 420px;
  }
}
@media (max-width: 1000px) {
  .reviews__note {
    font-size: 34px;
    top: 80%;
  }
}
@media (max-width: 900px) {
  .reviews__note {
    font-size: 30px;
    top: 83%;
  }
}
@media (max-width: 800px) {
  .reviews__note {
    font-size: 28px;
    top: 83%;
  }
}
@media (max-width: 700px) {
  .reviews__note {
    font-size: 24px;
    top: 90%;
  }
}
@media (max-width: 600px) {
  .reviews__note {
    font-size: 20px;
    top: 90%;
  }
}
@media (max-width: 500px) {
  .reviews__note {
    font-size: 18px;
    top: 90%;
  }
}
@media (max-width: 400px) {
  .reviews__note {
    font-size: 16px;
    top: 90%;
  }
}

@media screen and (max-width: 768px) {
  .reviews {
    height: auto;
    padding: 30px 0;
  }
  .reviews__inner {
    width: 100%;
    height: 100%;
  }
}
.reviews__cta__wrapper {
  background-color: #fff;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  border: 2px solid #fff;
  box-sizing: border-box;
}

.reviews__cta {
  width: 300px;
  height: 60px;
  border-radius: 200px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media screen and (max-width: 768px) {
  .reviews__cta {
    width: 200px;
    height: 50px;
  }
}

.reviews__cta__link {
  font: 400 20px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  margin: 0 auto;
}

.reviews__cta:hover {
  background: #0650FF;
  color: #fff;
  border: 1px solid #0650FF;
}

/* Flow / Works */
.flow-works {
  position: relative;
  background: #000;
  color: #fff;
}

.flow__right-upper {
  position: absolute;
  right: 6.45833%;
  top: 0px;
  height: 40px;
  width: 2px;
  background-color: #fff;
  z-index: 2;
}

.flow__sectionLabel--right {
  position: absolute;
  right: 3.45833%;
  top: 40px;
  z-index: 2;
}

.flow__right-divider {
  position: absolute;
  right: 6.45833%;
  top: 78px;
  width: 0;
  height: 40px;
  border-right: 2px solid #fff;
  opacity: 0.8;
  z-index: 2;
}

.flow__left-middle {
  position: absolute;
  left: 6.45833%;
  bottom: 78px;
  height: 40px;
  width: 2px;
  background-color: #fff;
  z-index: 2;
}

.flow-works .sectionLabel--bottom {
  left: 2.04166%;
  bottom: 40px;
  z-index: 2;
}

.flow__left-under {
  position: absolute;
  left: 6.45833%;
  bottom: 0;
  height: 40px;
  width: 2px;
  background-color: #fff;
  z-index: 2;
}

.flow__labels .sectionLabel {
  color: #fff;
}

.flow__labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.flow__labels .sectionLabel--right {
  position: absolute;
  right: 40px;
  top: 40px;
}

.flow__labels .sectionLabel--left {
  position: absolute;
  left: 30px;
  bottom: 40px;
}

/* FLOW */
.flow {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.flow__image {
  position: relative;
  width: 100%;
  height: auto;
}

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

.flow__steps {
  position: absolute;
  top: 28%;
  left: 0;
  width: 100%;
  display: flex;
  pointer-events: none;
  padding: 0 65px 0 25px;
  gap: 30px;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .flow__steps {
    gap: 10px;
  }
}

.flow__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex: 1;
  pointer-events: auto;
}

.flow__circle {
  position: relative;
  padding: 45px 10px 45px 40px;
  width: 230px;
  height: 295px;
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .flow__circle {
    width: 170px;
    padding: 35px 0px 55px 10px;
  }
}

.flow__title {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 12px;
}
@media screen and (max-width: 1180px) {
  .flow__title {
    font-size: 14px;
    margin: 0 0 6px;
  }
}

.flow__divider {
  display: block;
  width: 100px;
  height: 2px;
  background: #fff;
  margin: 0 auto 16px;
}
@media screen and (max-width: 1180px) {
  .flow__divider {
    margin: 0 auto 6px;
  }
}

.flow__text {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  max-width: 240px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #dddddd;
  margin: 0;
  height: 60px;
  padding: 0 10px;
}
@media screen and (max-width: 1180px) {
  .flow__text {
    font-size: 8px;
  }
}

@media screen and (max-width: 768px) {
  .flow-works {
    height: auto;
    padding: 40px 15px;
  }
  .flow__labels .sectionLabel--right {
    right: 15px;
    top: 20px;
  }
  .flow__labels .sectionLabel--left {
    left: 15px;
    bottom: 20px;
  }
  .flow__left-middle {
    height: 20px;
    left: 16%;
    bottom: 48px;
  }
  .flow__left-under {
    height: 20px;
    left: 16%;
    bottom: 0px;
  }
  .flow-works .sectionLabel--bottom {
    font-size: 24px;
    left: 4.2%;
    bottom: 20px;
  }
  .flow__right-upper {
    height: 20px;
    right: 16%;
    top: 0px;
  }
  .flow__right-divider {
    height: 20px;
    right: 16%;
    top: 48px;
  }
  .flow__sectionLabel--right {
    top: 20px;
    font-size: 24px;
    right: 7.2%;
  }
  .flow__image {
    width: 375px;
    height: auto;
  }
  .flow__image img {
    width: 375px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .flow__steps {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 0 70px;
    gap: 70px;
    justify-content: space-around;
    align-items: center;
  }
  .flow__step {
    margin: 0;
    flex: 0 0 auto;
  }
  .flow__circle {
    width: 300px;
    height: 260px;
    padding: 8px;
    border-radius: 50%;
    padding: 40px 50px 50px 50px;
  }
  .flow__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .flow__title {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
  }
  .flow__text {
    font-size: 14px;
    line-height: 1.3;
    height: auto;
    padding: 0 4px;
    margin: 0;
  }
  .flow__divider {
    display: block;
    width: 100px;
    height: 1px;
    background-color: #fff;
    margin: 0 auto;
  }
}
/* WORKS */
.works-section {
  background: #fff;
  color: #000;
}

.works {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 0;
}

.works__slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.works__prev,
.works__next {
  background: #fff;
  width: 50px;
  height: 50px;
  font-size: 60px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.2;
  margin: 0 10px;
}

.works__prev:hover,
.works__next:hover {
  opacity: 1;
}

.works__container {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.works__track {
  display: flex;
  transition: transform 0.5s ease;
  width: 500%;
  height: 100%;
  gap: 20px;
}

.works__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.works__caption {
  color: #000;
  margin-top: 20px;
  font: 500 20px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.works__caption:nth-of-type(1) {
  left: 245px;
  top: 404px;
}

.works__caption:nth-of-type(2) {
  left: 957px;
  top: 400px;
}

.works__cta {
  width: 300px;
  height: 60px;
  border-radius: 200px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 400 20px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  margin: 40px auto 0;
}

.works__cta:hover {
  background: #0650FF;
  color: #fff;
  border: 1px solid #0650FF;
}

@media screen and (max-width: 768px) {
  .works-section {
    background: #fff;
    padding: 10px 10px;
  }
  .works {
    height: auto;
    max-width: 100%;
    padding: 0;
  }
  .works__slider {
    gap: 2px;
    align-items: center;
  }
  .works__container {
    width: 100%;
    height: 200px;
  }
  .works__track {
    width: 1000%;
    height: 100%;
  }
  .works__item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .works__item img {
    width: 100%;
    height: auto;
    max-height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .works__caption {
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    color: #000;
  }
  .works__prev,
.works__next {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .works__prev:hover,
.works__next:hover {
    background: #000;
    color: #fff;
  }
  .works__cta {
    position: static;
    margin: 0 auto;
    width: 200px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .works__cta:hover {
    background: #0650FF;
    color: #fff;
    border: 1px solid #0650FF;
  }
}
/* Contact */
.contact {
  background: #000;
  color: #fff;
  padding: 40px 320px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 1600px) {
  .contact {
    padding: 40px 200px;
  }
}
@media (max-width: 1200px) {
  .contact {
    padding: 40px 100px;
  }
}
@media (max-width: 900px) {
  .contact {
    padding: 40px 50px;
  }
}

.contact__left-upper {
  position: absolute;
  left: 6.45833%;
  top: 0px;
  height: 40px;
  width: 2px;
  background-color: #fff;
}

.contact__sectionLabel--left {
  position: absolute;
  left: 2.04166%;
  top: 40px;
}
@media screen and (max-width: 768px) {
  .contact__sectionLabel--left {
    font-size: 24px;
  }
}

.contact__left-divider {
  position: absolute;
  left: 6.45833%;
  top: 78px;
  width: 0;
  height: 40px;
  border-right: 2px solid #fff;
  opacity: 0.8;
}

.contact .sectionLabel {
  align-self: flex-end;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact__lead {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  font: 400 20px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.contact__note {
  font: 400 20px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.contact__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 100px;
}
@media (max-width: 1200px) {
  .contact__progress {
    gap: 50px;
  }
}
@media (max-width: 900px) {
  .contact__progress {
    gap: 30px;
    flex-wrap: wrap;
  }
}

.confirm {
  background: linear-gradient(180deg, #000 0%, #001851 50%, #000 100%);
  min-height: 100vh;
  padding: 120px 320px 60px;
}
@media (max-width: 1600px) {
  .confirm {
    padding: 40px 200px;
  }
}
@media (max-width: 1200px) {
  .confirm {
    padding: 40px 100px;
  }
}
@media (max-width: 900px) {
  .confirm {
    padding: 40px 50px;
  }
}

.complete {
  background: linear-gradient(180deg, #000 0%, #001851 50%, #000 100%);
  min-height: 100vh;
  margin-top: 100px;
  padding: 120px 320px 60px;
}
@media (max-width: 1600px) {
  .complete {
    padding: 40px 200px;
  }
}
@media (max-width: 1200px) {
  .complete {
    padding: 40px 100px;
  }
}
@media (max-width: 900px) {
  .complete {
    padding: 40px 50px;
  }
}

.contact__text {
  text-align: center;
  margin: 40px 0;
  font-size: 18px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contact__text--complete {
    font-size: 16px;
  }
}

.contact__list {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact__item {
    padding-bottom: 12px;
  }
}

.contact__term {
  width: 30%;
  font-weight: bold;
  color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contact__term {
    width: 100%;
    margin-bottom: 8px;
  }
}

.contact__definition {
  width: 70%;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact__definition {
    width: 100%;
  }
}

.contact__required {
  color: #FFD83D;
  font-size: 14px;
  margin-left: 4px;
  vertical-align: middle;
}

.contact__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__buttons {
    flex-direction: column;
    gap: 16px;
  }
}

.contact__buttons p {
  display: flex;
  gap: 72px;
}
@media screen and (max-width: 768px) {
  .contact__buttons p {
    gap: 20px;
  }
}

.contact__back-button {
  background-color: #D9564f;
}

.contact__submit-input {
  background-color: #5cb95c;
}

.contact__back-button,
.contact__submit-input {
  display: inline-flex;
  width: 192px;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  padding: 14px 40px;
  font-size: 16px;
  border: none;
  border-radius: 42px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact__back-button:hover,
.contact__submit-input:hover {
  background-color: #0650FF;
}
@media screen and (max-width: 768px) {
  .contact__back-button,
.contact__submit-input {
    width: 100%;
    font-size: 14px;
    padding: 12px 20px;
  }
}

.wpcf7-spinner {
  display: none;
}

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

.progress__icon {
  width: 20px;
  height: 20px;
  border: 2px solid #0650FF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
  background: #0650FF;
}

.progress__icon-reverse {
  background: #fff;
  border: 2px solid #fff;
}

.progress__circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;
}

.progress__circle-reverse {
  background: #0650FF;
}

.progress__step.active .progress__circle {
  background: #fff;
}

.progress__text {
  font: 400 14px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #fff;
  text-align: center;
}

.progress__line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.form__row--cols {
  width: 100%;
  margin: 30px auto 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1200px) {
  .form__row--cols {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .form__row--cols {
    width: 100%;
  }
}

.form__label {
  font: 400 14px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 230px;
  margin-right: 20px;
}

.form__required {
  background-color: #0650FF;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 500;
}

.form__input {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  border: none;
  padding: 0 12px;
  background-color: #fff;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.form__textarea {
  width: 100%;
  border-radius: 4px;
  border: none;
  padding: 12px;
  background-color: #fff;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  resize: vertical;
}

.form__radio-group {
  display: flex;
  gap: 20px;
}

.form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.form__radio input[type=radio] {
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  box-sizing: border-box;
}

.form__radio input[type=radio]:checked {
  background: #0650FF;
  border: 2px solid #0650FF;
}

.form__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0650FF;
}

.form__radio-text {
  font: 400 14px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #fff;
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font: 400 14px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #fff;
  cursor: pointer;
}

.checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #fff;
  background-color: #fff !important;
  background: #fff !important;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  display: block;
  box-sizing: border-box;
}

.checkbox input[type=checkbox]:checked {
  background-color: #0650FF;
}

.checkbox input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0650FF;
  font-size: 18px;
  font-weight: bold;
}

.form__policyNote {
  font: 400 14px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #fff;
  text-align: center;
  margin: 0;
}

.form__actions {
  display: flex;
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #0650FF;
  margin: 0 auto;
  color: #fff;
  width: 220px;
  height: 50px;
  font: 700 14px/1.2 "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.form__actions {
  display: flex;
  justify-content: center;
}

.policy__box {
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 4px;
}

.policy__content {
  margin-top: 10px;
}

.policy__text {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 140px 10px 40px;
  }
  .contact__inner {
    gap: 20px;
  }
  .contact__form {
    font-size: 12px;
  }
  .contact__right-upper {
    height: 20px;
    right: 16%;
    top: 0px;
  }
  .contact__right-divider {
    height: 20px;
    right: 16%;
    top: 48px;
  }
  .form__radio-text {
    font-size: 12px;
  }
  .form__label {
    height: auto;
    font-size: 12px;
    margin-bottom: 24px;
  }
  .form__label:f(3) {
    margin-bottom: 0;
  }
  .contact__progress {
    margin: 0;
    gap: 15px;
  }
  .contact__lead {
    font-size: 14px;
    gap: 10px;
  }
  .contact__note {
    font-size: 14px;
  }
  .form__radio-group {
    gap: 4px;
  }
  .form__radio {
    font-size: 12px;
  }
  .progress__icon {
    width: 20px;
    height: 20px;
  }
  .progress__circle {
    width: 10px;
    height: 10px;
  }
  .progress__text {
    font-size: 12px;
  }
  .progress__line {
    width: 40px;
  }
  .form__row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
  }
  .form__input {
    width: 100%;
  }
  .form__row--cols {
    width: 100%;
    align-items: center;
  }
  .button--primary {
    width: 100%;
  }
  .form__policyNote {
    width: 60%;
    text-align: left;
  }
  .form__actions {
    margin: 30px auto 0;
  }
  .margin__bottom-md {
    margin-bottom: 0;
  }
  .policy__text {
    font-size: 12px;
  }
}
/* Footer */
.footer {
  background: #001851;
  height: 90px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer {
    height: 30px;
    font-size: 12px;
  }
}

.footer__inner {
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heading__Works */
.heading__works {
  padding: 120px 40px;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .heading__works {
    padding: 60px 20px;
  }
}

.heading__works__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.heading__works__title {
  text-align: center;
  font-family: "Dancing Script";
  font-weight: 400;
  font-size: 148px;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .heading__works__title {
    font-size: 80px;
  }
}

.heading__works__subtitle {
  margin-top: 30px;
  text-align: center;
  font-family: "Dancing Script";
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  .heading__works__subtitle {
    font-size: 14px;
  }
}

.works__example {
  background: #fff;
  color: #000;
}

.works__example__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 40px;
}

.works__example__items {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .works__example__items {
    flex-direction: column;
  }
}

.works__example__item {
  max-width: 50%;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .works__example__item {
    max-width: 100%;
    padding: 20px 20px 0;
  }
}

.works__example__caption {
  font-size: 24px;
  margin-bottom: 40px;
  color: #000;
  text-align: center;
}

.works__example__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 40px;
}

.works__example__number {
  width: 30px;
  height: 30px;
  font-size: 14px;
  border: 0.1px solid #000;
  text-align: center;
}

.works__example__number__text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works__example__number:first-of-type {
  background: #fff;
  color: #000;
}

.works__example__number:nth-of-type(2) {
  background: #fff;
  color: #000;
}

.works__example__number:nth-of-type(2):hover,
.works__example__number a:hover {
  background: #0650FF;
  color: #fff;
}

a.works__example__number:hover {
  background: #0650FF;
  color: #fff;
}

.work__example__prev--disabled,
.work__example__next--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.works__example__next {
  border: 0.1px solid #000;
  color: #000;
  width: 70px;
  height: 30px;
  font-size: 14px;
  text-align: center;
}

.works__example__next__text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works__example__prev {
  border: 0.1px solid #000;
  color: #000;
  width: 70px;
  height: 30px;
  font-size: 14px;
  text-align: center;
}

.works__example__prev:hover {
  background: #0650FF;
  color: #fff;
}

.works__example__prev__text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works__example__next:hover {
  background: #0650FF;
  color: #fff;
}

/* Work__Example */
.work__example {
  background: #fff;
  color: #000;
}

.work__example__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px;
}

.work__example__slider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work__example__container {
  max-width: 80%;
}

.work__example__prev,
.work__example__next {
  width: 10%;
  opacity: 0.2;
  font-size: 100px;
  background: #fff;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .work__example__prev,
.work__example__next {
    font-size: 30px;
  }
}

.work__example__prev:hover,
.work__example__next:hover {
  opacity: 1;
}

.work__example__caption,
.work__example__url {
  font-size: 28px;
  color: #001851;
}
@media screen and (max-width: 768px) {
  .work__example__caption,
.work__example__url {
    font-size: 20px;
  }
}

.work__example__url__link {
  color: #000;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .work__example__url__link {
    font-size: 14px;
  }
}

.work__example__text {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .work__example__text {
    font-size: 12px;
  }
}

.work__example__text:nth-of-type(2) {
  margin-top: 20px;
  line-height: 2.5;
}

body.page-id-32 {
  background: #fff;
  color: #000;
}

.site__main__reviews {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px;
}

body.page-id-32 .header__right .hamburger span {
  background-color: #000;
}

body.page-id-32 .footer__inner {
  color: #fff;
}

/* テキスト用（段落と見出し） */
.entry-content p, .entry-content p {
  padding-top: 35px;
  text-align: center;
  background-color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .entry-content p, .entry-content p {
    font-size: 16px;
    padding-top: 10px;
  }
}

/* Review content width adjustment */
.review__content {
  width: calc(100% - 68px); /* review__item-profileの幅を引いた値に調整 */
}

.entry-content .review__list {
  gap: 20px;
}

.entry-content .review__item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

.entry-content .review__icon {
  width: 48px;
  height: 48px;
  margin-right: 20px;
}

.entry-content .review__company {
  font-size: 1.1em;
  text-align: left;
  padding-top: 10px;
}

/* テキスト用 */
.entry-content .review__title {
  font-size: 32px;
  font-weight: 700;
  text-align: left;
  margin: 20px 0;
  padding: 10px 0;
  border-bottom: 2px solid #0650FF;
  border-top: 2px solid #0650FF;
}
@media screen and (max-width: 768px) {
  .entry-content .review__title {
    font-size: 24px;
  }
}

.entry-content .review__text {
  margin: 30px 0;
  text-align: left;
}

.entry-content .review__subtitle {
  margin-bottom: 20px;
}

.entry-content pre {
  color: #000;
  background-color: #f5f9ff;
  padding: 10px 20px;
  font-size: 1.1em;
  line-height: 1.9;
  letter-spacing: 1.5px;
  white-space: pre-wrap;
  margin: 0;
  min-height: 110px;
  border-radius: 8px;
}

/* 画像用 */
.entry-content img {
  border-radius: 50px;
  max-width: 100%;
  height: auto;
}

.policy-textarea {
  width: 100%; /* 横幅いっぱい */
  height: 200px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: none; /* ユーザーがサイズ変更できないようにする（任意） */
  overflow: auto; /* 文字が多いとスクロールバーが表示される */
  background-color: #f9f9f9;
  white-space: pre-wrap; /* 改行やスペースを保持しつつ折り返し */
  text-indent: 0; /* 行頭を揃える */
}

/* About section styles */
.section__about__us {
  background-color: #081019;
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.about__us__right-upper {
  position: absolute;
  right: 6.45833%;
  top: 0px;
  height: 40px;
  width: 2px;
  background-color: #fff;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .about__us__right-upper {
    height: 20px;
    right: 16%;
    top: 0px;
  }
}

.about__us__sectionLabel--right {
  position: absolute;
  right: 3.45833%;
  top: 40px;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about__us__sectionLabel--right {
    font-size: 24px;
    top: 20px;
  }
}

.about__us__right-divider {
  position: absolute;
  right: 6.45833%;
  top: 78px;
  width: 0;
  height: 40px;
  border-right: 2px solid #fff;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .about__us__right-divider {
    height: 20px;
    right: 16%;
    top: 48px;
  }
}

.about__us__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about__us__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about__us__info {
  display: flex;
  flex-direction: column;
  gap: 40px 60px;
  max-width: 800px;
}

.about__us__item {
  display: flex;
  gap: 8px;
}

.about__us__label {
  width: 300px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about__us__label {
    font-size: 16px;
  }
}

.about__us__value {
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .about__us__value {
    font-size: 16px;
  }
}

.about__us__list {
  font-size: 20px;
  color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about__us__list {
    font-size: 16px;
  }
}

.about__us__list li {
  position: relative;
  padding-left: 20px;
}

.about__us__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .section__about__us {
    padding: 130px 0 70px;
  }
  .about__us__inner {
    max-width: 960px;
    padding: 0 30px;
  }
  .about__us__content {
    gap: 20px;
  }
  .about__us__info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about__us__item {
    margin-bottom: 15px;
    flex-direction: column;
  }
  .about__us__item:last-child {
    margin-bottom: 0;
  }
  .about__us__right-upper {
    height: 35px;
    right: 4%;
    top: 0px;
  }
  .about__us__sectionLabel--right {
    right: 1.5%;
    top: 35px;
  }
  .about__us__right-divider {
    height: 40px;
    right: 4%;
    top: 70px;
  }
}