@charset "UTF-8";
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and border */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Sections */
body {
  margin: 0;
}

main {
  display: block;
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (remove bullets) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Links */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/* Text-level semantics */
b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
img,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  appearance: none;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Hidden */
[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #101828;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea,
select {
  font-family: inherit;
}

section {
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 60px;
  }
}

.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block !important; /* PC用を表示 */
  }
  .sp {
    display: none !important; /* スマホ用を非表示 */
  }
}
.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 60px;
  word-break: break-word;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 30px;
  }
}
.section-title__en {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.15px;
  margin-bottom: 8px;
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.section-title__ja {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #101828;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section-title__ja {
    font-size: 24px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
  }
}
.btn--primary {
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  color: #fff;
  padding: 16px 60px 16px 33px;
}
@media (max-width: 768px) {
  .btn--primary {
    padding: 18px 39px 18px 28px;
  }
}
.btn--primary::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/img_hero_arrow.png") no-repeat center center/contain;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .btn--primary::after {
    right: max(12px, 3vw);
  }
}
.btn--primary:hover {
  filter: brightness(90%);
  transform: translateY(-2px);
}
.btn--outline {
  background-color: transparent;
  border: 2px solid #d1d5dc;
  color: #364153;
}
.btn--outline:hover {
  background-color: #006db9;
  border: 2px solid #006db9;
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .btn--outline {
    padding: 16px 28px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
}
.header__logo a {
  position: relative;
  z-index: 100;
}
.header__logo a img {
  width: 100px;
}
@media (max-width: 768px) {
  .header__logo a img {
    width: 85px;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.header__nav li:last-child a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.header__nav li:last-child a:hover {
  background-color: rgb(0, 78.9513513514, 134);
  transform: none;
  color: #fff;
}
.header__nav a {
  text-decoration: none;
  color: #4a5565;
  font-weight: 500;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.header__nav a:hover {
  opacity: 0.5;
}
.header__hamburger {
  display: none;
  position: relative;
  z-index: 100;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  display: block;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 11px;
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header__hamburger.is-open span {
  background-color: #333;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.header__overlay {
  display: none;
}
@media (max-width: 768px) {
  .header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 90;
  }
  .header__overlay.is-open {
    display: block;
  }
}
@media (max-width: 768px) {
  .header {
    height: 80px;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    padding: 100px 40px;
    z-index: 95;
    transition: right 0.4s ease;
    display: block;
    text-align: center;
  }
  .header__nav.is-open {
    right: 0;
  }
  .header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .header__nav li {
    width: 100%;
  }
  .header__nav li:last-child {
    margin-top: 20px;
  }
  .header__nav a {
    font-size: 1.8rem;
    display: block;
  }
}

.footer {
  padding: 48px 0;
  background-color: #222;
  color: #fff;
}
.footer__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__copy {
  font-size: 1.4rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 1.2rem;
    margin-top: 40px;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #ffffff;
  margin-top: 208px;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 80px;
    padding-top: 96px;
    overflow: hidden;
  }
}
.hero__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}
.hero__content {
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .hero__content {
    margin-bottom: 30px;
  }
}
.hero__content .hero__bg {
  position: absolute;
  z-index: -1;
  top: -70px;
  right: 10px;
  width: 400px;
}
@media (max-width: 768px) {
  .hero__content .hero__bg {
    top: -99px;
    right: -100px;
    width: 170px;
  }
}
.hero__content .hero__bg2 {
  position: absolute;
  z-index: -1;
  top: 190px;
  right: -80px;
  width: 300px;
}
@media (max-width: 768px) {
  .hero__content .hero__bg2 {
    top: 70px;
    right: 0;
    left: -80px;
    width: 170px;
  }
}
.hero__title {
  font-size: clamp(2rem, 0.3rem + 8vw, 9.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #101828;
}
@media (max-width: 768px) {
  .hero__title {
    text-align: center;
    margin-bottom: 120px;
  }
}
.hero__title-gradient {
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  line-height: 1.3;
}
.hero__text {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 48px;
  color: #4a5565;
  max-width: 700px;
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.hero__buttons {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero__buttons {
    align-items: center;
  }
}
.hero__image {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  height: min(33.0769230769vw, 430px);
}
@media (max-width: 768px) {
  .hero__image {
    display: block;
    height: auto;
  }
  .hero__image img {
    width: 100%;
  }
}
.hero__image-unit {
  border-radius: 16px;
  overflow: hidden;
}
.hero__image-unit--img {
  flex: 66%;
  position: relative;
}
.hero__image-unit--img .hero__image-base {
  width: auto;
  height: 100%;
  display: block;
}
.hero__image-unit--img .hero__image-car {
  position: absolute;
  bottom: 4.8309178744%;
  right: 7.8313253012%;
  width: 69.7590361446%;
  z-index: 10;
}
@media (max-width: 768px) {
  .hero__image-unit--img .hero__image-car {
    top: auto;
    bottom: 9.8765432099%;
    left: 9.4086021505%;
    width: 79.0322580645%;
  }
}
.hero__image-unit--img .hero__image-car img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__image-unit--img .hero__image-light {
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 27.3493975904%;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero__image-unit--img .hero__image-light {
    top: 22.2222222222%;
    left: 0%;
    width: 28.4946236559%;
  }
}
.hero__image-unit--img .hero__image-light img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__image-unit--img .hero__image-text {
  position: absolute;
  z-index: 4;
  display: none;
}
@media (max-width: 768px) {
  .hero__image-unit--img .hero__image-text {
    display: block;
    top: 40px;
    left: 90px;
    width: 182px;
    top: 9.8765432099%;
    left: 24.1935483871%;
    width: 48.9247311828%;
  }
}
.hero__image-unit--img .hero__image-text img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero__image-unit--text {
  flex: 33%;
  background-color: #f3f4f6;
  color: #006db9;
  position: relative; /* 基準にする */
  min-height: 30.7692307692%; /* 高さを確保する場合 */
}
.hero__image-unit--text .hero__image-lead {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* これで上下左右センター */
  width: 100%;
}
.hero__image-lead {
  font-size: min(4.8rem, 3.6923076923vw);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hero__image-lead {
    font-size: 1.8rem;
  }
}

.corporate {
  width: 100%;
  overflow: visible;
  background-color: #f9fafb;
  padding: 128px 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .corporate {
    padding: 60px 0;
  }
}
.corporate__inner {
  position: relative;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .corporate__inner {
    flex-direction: column;
    gap: 25px;
  }
}
.corporate__inner .corporate__bg {
  position: absolute;
  z-index: 999;
  top: -180px;
  left: -90px;
  width: 400px;
}
@media (max-width: 768px) {
  .corporate__inner .corporate__bg {
    display: none;
  }
}
.corporate .section-title__accent {
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.corporate__content {
  width: 100%;
}
@media (max-width: 768px) {
  .corporate__content {
    margin-top: 0px;
  }
}
.corporate__description {
  width: 100%;
  max-width: 800px;
  margin-bottom: 40px;
  line-height: 2;
  font-size: 1.8rem;
  color: #4a5565;
  text-align: left;
}
@media (max-width: 768px) {
  .corporate__description {
    font-size: 1.6rem;
  }
}
.corporate__topic li:first-child {
  margin-bottom: 27px;
}
.corporate__topic li .corporate__topic-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.corporate__topic li .corporate__topic-icon {
  flex-shrink: 0;
  width: 40px;
}
.corporate__topic li .corporate__topic-body {
  flex: 1;
}
.corporate__topic li .corporate__topic-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .corporate__topic li .corporate__topic-body h3 {
    font-size: 1.6rem;
  }
}
.corporate__topic li .corporate__topic-body p {
  font-size: 1.5rem;
  color: #4a5565;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .corporate__topic li .corporate__topic-body p {
    font-size: 1.4rem;
  }
}
.corporate__buttons {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
}
@media (max-width: 768px) {
  .corporate__buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.corporate__images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.corporate__images .corporate__image-item {
  width: 100%;
}
@media (max-width: 768px) {
  .corporate__images .corporate__image-item {
    aspect-ratio: 16/9;
  }
}
.corporate__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.service {
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  padding: 150px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service {
    padding: 60px 0;
  }
}
.service .section-title {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .service .section-title {
    margin-bottom: 30px;
  }
}
.service .section-title__en {
  background: none;
  -webkit-text-fill-color: initial;
  color: #fff;
  display: inline-block;
}
.service .section-title__ja {
  color: #fff;
}
.service__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.service__inner .service__bg {
  position: absolute;
  z-index: -1;
  top: -210px;
  left: -150px;
  width: 400px;
}
@media (max-width: 768px) {
  .service__inner .service__bg {
    top: -100px;
    left: -30px;
    width: 120px;
  }
}
.service__inner .service__bg2 {
  position: absolute;
  z-index: -1;
  top: 170px;
  right: -300px;
  width: 400px;
}
@media (max-width: 768px) {
  .service__inner .service__bg2 {
    top: auto;
    right: auto;
    bottom: -70px;
    left: -10px;
    width: 140px;
  }
}
.service__inner .service__bg3 {
  position: absolute;
  z-index: -1;
  bottom: -150px;
  left: 280px;
  width: 400px;
}
@media (max-width: 768px) {
  .service__inner .service__bg3 {
    bottom: -110px;
    left: -50px;
    width: 120px;
  }
}
.service__content {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .service__content {
    margin-bottom: 32px;
  }
}
.service__description {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .service__description {
    font-size: 1.6rem;
  }
}
.service__list {
  display: grid;
  gap: 24px;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "item1 item2" "item3 item4";
}
@media (max-width: 768px) {
  .service__list {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-template-areas: "item1" "item3" "item4" "item2";
  }
}
.service__item:nth-child(1) {
  grid-area: item1;
}
.service__item:nth-child(2) {
  grid-area: item2;
}
.service__item:nth-child(3) {
  grid-area: item3;
}
.service__item:nth-child(4) {
  grid-area: item4;
}
.service__item {
  background-color: #fff;
  width: 100%;
  padding: 33px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .service__item {
    width: 100%;
    padding: 20px;
  }
}
.service__item-head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .service__item-head {
    margin-bottom: 16px;
  }
}
.service__item-icon {
  flex-shrink: 0;
  width: 64px;
}
@media (max-width: 768px) {
  .service__item-icon {
    width: 50px;
  }
}
.service__item-icon img {
  width: 100%;
  height: auto;
}
.service__item-intro h3 {
  font-size: 1.2rem;
  line-height: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #99a1af;
}
@media (max-width: 768px) {
  .service__item-intro h3 {
    margin-bottom: 8px;
  }
}
.service__item-intro p {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
@media (max-width: 768px) {
  .service__item-intro p {
    font-size: 1.8rem;
    line-height: 18px;
  }
}
.service__item-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: block;
  color: #4a5565;
}
.service__item-text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #4a5565;
}

.contact {
  background-color: #fff;
}
.contact__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.contact__inner .contact__bg {
  position: absolute;
  z-index: 999;
  top: -100px;
  left: -210px;
  width: 400px;
}
@media (max-width: 768px) {
  .contact__inner .contact__bg {
    display: none;
  }
}
.contact__description {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
  color: #4a5565;
}
@media (max-width: 768px) {
  .contact__description {
    margin-bottom: 30px;
  }
}
.contact .section-title {
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .contact .section-title {
    margin-bottom: 22px;
  }
}
.contact .section-title__en {
  margin-bottom: 22px;
}
.contact__list {
  display: flex;
  gap: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .contact__list {
    flex-direction: column;
    gap: 16px;
  }
}
.contact__item {
  flex: 1;
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact__item {
    padding: 20px 20px;
    align-items: center;
  }
}
.contact__item-icon {
  width: 64px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact__item-icon {
    width: 56px;
    margin-bottom: 17px;
  }
}
.contact__item-icon img {
  width: 100%;
  height: auto;
}
.contact__item-label {
  font-size: 2.4rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .contact__item-label {
    font-size: 1.8rem;
    line-height: 18px;
    margin-bottom: 17px;
  }
}
.contact__item-link {
  background: linear-gradient(to bottom, #0066b3, #0077c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .contact__item-link {
    margin-bottom: 17px;
  }
}
.contact__item-link a {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .contact__item-link a {
    font-size: 3.2rem;
    line-height: 32px;
    margin-bottom: 17px;
  }
}
.contact__item-info {
  font-size: 1.4rem;
  line-height: 14px;
  color: #4a5565;
}

.fade-in {
  opacity: 0; /* 読み込み時は透明 */
  animation: fadeInUp 1s forwards; /* 2秒かけて実行 */
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px); /* 30px下に配置 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 本来の位置へ */
  }
}
/* 最初 */
.fade-target {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease; /* これを忘れると一瞬で表示されます */
}

/* JSで付与された後 */
.fade-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* パターン1：左からフェードイン（fadeInLeft）＋ 0.5秒遅れ (車用) */
.move-left.is-visible {
  opacity: 1;
  transform: translateX(0); /* 本来の位置へ */
  transition-delay: 0.5s; /* 0.5秒遅らせる */
}

.move-left {
  transform: translateX(-33.3333333333%);
}
@media (max-width: 768px) {
  .move-left {
    /* スマホでは画面幅が狭いので、動きを控えめにする */
    transform: translateX(-50px);
  }
}

/* パターン2：その場でフェードイン（fadeIn）＋ 1.0秒遅れ (光用) */
.move-none.is-visible {
  opacity: 1;
  transform: none; /* 移動なし */
  transition-delay: 1s; /* 1.0秒遅らせる */
}

.move-none {
  transform: none;
}

/* パターン3：その場でフェードイン（透明度のみ）＋ 1.5秒遅れ (テキスト画像用) */
.move-fade.is-visible {
  opacity: 1;
  transition-delay: 1.5s; /* 車・光よりさらに遅らせる */
}

.move-fade {
  opacity: 0;
  transform: none;
}
