@charset "UTF-8";
/* ===============================================
   Font Import（フォント読み込みはここにまとめる）
   ・Google Fontsはここに記述
   ・案件ごとにここだけ差し替えればOK
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;1,500;1,600&family=Noto+Sans+JP:wght@400;500;600&display=swap");
/* ===============================================
   Font Variables（フォント設定）
   ・基本は日本語：Noto Sans JP
   ・英字は .u-en で切り替え
=============================================== */
/* ===============================================
   Font Weight
   ・基本：Medium
   ・強調：Bold / SemiBold
=============================================== */
/* ===============================================
   Color
=============================================== */
/* ===============================================
   Layout
=============================================== */
/* ===============================================
   Breakpoint
   ・tablet：1024px以下
   ・sp：767px以下
=============================================== */
/* ===============================================
   Mixin（レスポンシブ用）
   ・各クラス内でネストして使用
=============================================== */
.home-mv {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent;
}
.home-mv__inner {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .home-mv__inner {
    min-height: 32vh;
  }
}
@media screen and (max-width: 767px) {
  .home-mv__inner {
    min-height: calc(100vh - 60px);
    display: block;
    padding: 32px 0 40px;
  }
}
.home-mv__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 10vw 0 0 5vw;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .home-mv__content {
    min-height: 32vh;
    padding: 16px 0 0 5vw;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .home-mv__content {
    max-width: none;
    min-height: auto;
    justify-content: flex-start;
    padding: 10vw 0 0 10px;
    gap: 30px;
  }
}
.home-mv__sub {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(4.4rem, 6vw, 7.6rem);
  font-weight: 600;
  line-height: 1.02;
  background: linear-gradient(90deg, #1777B7 0%, #4FABD5 55%, #8fd8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  .home-mv__sub {
    font-size: clamp(3.2rem, 4.4vw, 4.8rem);
  }
}
@media screen and (max-width: 767px) {
  .home-mv__sub {
    font-size: clamp(4.7rem, 8vw, 4.2rem);
    line-height: 1.06;
  }
}
.home-mv__lead {
  margin: 36px 0 0;
  color: #333;
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.02em;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .home-mv__lead {
    margin-top: 20px;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .home-mv__lead {
    margin-top: 24px;
    font-size: clamp(1.5rem, 5.2vw, 2rem);
    line-height: 1.7;
  }
}
.home-mv__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: calc(100vh - 100px);
  pointer-events: none;
  background: transparent;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.home-mv__visual.is-animate-in {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .home-mv__visual {
    top: 0;
    bottom: 0;
    width: 64vw;
    height: 32vh;
  }
}
@media screen and (max-width: 767px) {
  .home-mv__visual {
    transform: translateY(24px);
  }
  .home-mv__visual.is-animate-in {
    transform: translateY(0);
  }
  .home-mv__visual {
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
.home-mv__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home-mv__image {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left bottom;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .home-mv__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
  }
}
@media screen and (max-width: 767px) {
  .home-mv__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}
.home-mv__scroll {
  position: absolute;
  right: 16px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #1777B7;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .home-mv__scroll {
    right: 8px;
    bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .home-mv__scroll {
    right: 10px;
    bottom: 16px;
  }
}
@media (hover: hover) {
  .home-mv__scroll:hover {
    opacity: 0.7;
  }
}
.home-mv__scroll-text {
  margin: 0 0 5px;
  color: #1777B7;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .home-mv__scroll-text {
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
}
.home-mv__scroll-icon {
  position: relative;
  width: 44px;
  height: 82px;
}
@media screen and (max-width: 767px) {
  .home-mv__scroll-icon {
    width: 42px;
    height: 66px;
  }
}
.home-mv__scroll-circle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 44px;
  height: auto;
  transform: translateX(-50%);
  display: block;
}
@media screen and (max-width: 767px) {
  .home-mv__scroll-circle {
    width: 42px;
  }
}
.home-mv__scroll-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 50px;
  background: #1777B7;
  transform: translateX(-50%);
  z-index: 2;
  animation: mvScrollLine 2.2s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .home-mv__scroll-line {
    height: 30px;
  }
}
.home-mv__scroll-line::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #1777B7;
  border-bottom: 2px solid #1777B7;
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
  animation: mvScrollArrow 2.2s ease-in-out infinite;
}

@keyframes mvScrollLine {
  0% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(22px);
  }
}
@keyframes mvScrollArrow {
  0% {
    opacity: 0.2;
    transform: translateX(-50%) rotate(45deg);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(0px) rotate(45deg);
  }
  100% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(0px) rotate(45deg);
  }
}
.home-mv__typing-target, .home-mv__typing-line {
  position: relative;
  display: inline-block;
}
.home-mv__typing-target--en {
  min-height: 1em;
  background: linear-gradient(90deg, #1777B7 0%, #4FABD5 55%, #8fd8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.home-mv__lead--typing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-mv__lead--typing .home-mv__typing-line {
  margin: 0;
  min-height: 1.55em;
}
@media screen and (max-width: 1024px) {
  .home-mv__lead--typing .home-mv__typing-line {
    min-height: 1.6em;
  }
}
@media screen and (max-width: 767px) {
  .home-mv__lead--typing .home-mv__typing-line {
    min-height: 1.7em;
  }
}
.home-mv__typing-cursor::after {
  content: "";
  position: absolute;
  top: 0.1em;
  right: -0.08em;
  width: 2px;
  height: 0.9em;
  background: currentColor;
  animation: mvTypingCursorBlink 0.8s steps(1, end) infinite;
}
.home-mv__typing-target--en.home-mv__typing-cursor::after {
  background: #1777B7;
}
.home-mv__typing-line.home-mv__typing-cursor::after {
  background: #333;
}

@keyframes mvTypingCursorBlink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.home-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0 0 120px;
  background: transparent;
}
@media screen and (max-width: 1024px) {
  .home-news {
    padding: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .home-news {
    padding: 0 0 50px;
  }
}
.home-news__wrap {
  width: 90%;
}
.home-news__wrap .l-section-split {
  box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.04);
}
.home-news__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  padding: 72px 64px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}
@media screen and (max-width: 1024px) {
  .home-news__inner {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 56px 40px;
  }
}
@media screen and (max-width: 767px) {
  .home-news__inner {
    display: block;
    padding: 32px 24px 36px;
  }
}
.home-news__body {
  min-width: 0;
}

.home-about {
  background: url(/img/top/bg_about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0 120px;
}
@media screen and (max-width: 1024px) {
  .home-about {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .home-about {
    padding: 50px 0;
  }
}
.home-about__wrap {
  width: 95%;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .home-about__wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.home-about__intro {
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-areas: "visual head" "visual content";
  column-gap: 80px;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .home-about__intro {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "visual" "content";
  }
}
.home-about__head {
  grid-area: head;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .home-about__head {
    padding-top: 0;
  }
}
.home-about__visual {
  grid-area: visual;
}
@media screen and (max-width: 1024px) {
  .home-about__visual {
    margin-bottom: 30px;
  }
}
.home-about__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.home-about__content {
  grid-area: content;
}
@media screen and (max-width: 1024px) {
  .home-about__content {
    margin-top: 0;
  }
}
.home-about__text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .home-about__text p {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .home-about__text p {
    font-size: 1.3rem;
    line-height: 1.9;
  }
}
.home-about__text p:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .home-about__text p:not(:first-child) {
    margin-top: 24px;
  }
}
.home-about__button {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .home-about__button {
    justify-content: center;
  }
}
.home-about__cards {
  width: 90%;
  margin: 88px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .home-about__cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .home-about__cards {
    margin-top: 40px;
  }
}
.home-about__card {
  display: block;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .home-about__card {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  .home-about__card {
    grid-template-columns: 110px 1fr;
  }
}
.home-about__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}
.home-about__card:hover .home-about__card-icon {
  transform: translateX(4px);
}
.home-about__card-image img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .home-about__card-image img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .home-about__card-image img {
    min-height: 100%;
  }
}
.home-about__card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .home-about__card-body {
    padding: 24px 28px;
  }
}
@media screen and (max-width: 767px) {
  .home-about__card-body {
    gap: 14px;
    padding: 20px 18px;
  }
}
.home-about__card-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .home-about__card-title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .home-about__card-title {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.home-about__card-icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #004374;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .home-about__card-icon {
    width: 34px;
    height: 34px;
  }
}
.home-about__card-icon::before, .home-about__card-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}
.home-about__card-icon::before {
  left: 13px;
  width: 10px;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .home-about__card-icon::before {
    height: 1px;
    left: 12px;
    width: 6px;
  }
}
.home-about__card-icon::after {
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .home-about__card-icon::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 15px;
    width: 5px;
    height: 5px;
  }
}

.home-business {
  background-image: url(/img/top/bg_bussiness.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  position: relative;
  padding: 50px 0 100px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .home-business {
    padding: 70px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .home-business {
    padding: 30px 0 50px;
  }
}
.home-business__wrap {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.home-business__head {
  position: relative;
  text-align: center;
}
.home-business__bg-text {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 0;
  font-family: "Poppins", sans-serif;
  font-size: 13rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  filter: drop-shadow(0px 0px 30px #e5faff);
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(40px) scale(0.82);
  will-change: transform, opacity;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .home-business__bg-text {
    top: 20px;
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .home-business__bg-text {
    top: 8px;
    font-size: 4.4rem;
  }
}
.home-business__heading {
  position: relative;
  z-index: 1;
  padding-top: 72px;
}
@media screen and (max-width: 1024px) {
  .home-business__heading {
    padding-top: 54px;
  }
}
@media screen and (max-width: 767px) {
  .home-business__heading {
    padding-top: 28px;
  }
}
.home-business__body {
  position: relative;
  z-index: 1;
  margin-top: 88px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .home-business__body {
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .home-business__body {
    margin-top: 40px;
    text-align: left;
  }
}
.home-business__body p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.2;
  color: #222;
}
@media screen and (max-width: 1024px) {
  .home-business__body p {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .home-business__body p {
    text-align: left;
    font-size: 1.3rem;
    line-height: 2;
  }
}
.home-business__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  align-items: end;
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .home-business__gallery {
    gap: 24px;
    margin-top: 56px;
  }
}
@media screen and (max-width: 767px) {
  .home-business__gallery {
    gap: 14px;
    margin-top: 40px;
  }
}
.home-business__item {
  opacity: 0;
  transition: opacity 0.95s ease, transform 0.95s ease;
}
.home-business__item:nth-child(1) {
  transform: translateY(56px) scale(0.94);
}
.home-business__item:nth-child(2) {
  transform: translateY(36px) scale(0.94);
}
@media screen and (max-width: 1024px) {
  .home-business__item:nth-child(2) {
    transform: translateY(56px) scale(0.94);
  }
}
.home-business__item:nth-child(3) {
  transform: translateY(16px) scale(0.94);
}
@media screen and (max-width: 1024px) {
  .home-business__item:nth-child(3) {
    transform: translateY(56px) scale(0.94);
  }
}
.home-business__item:nth-child(4) {
  transform: translateY(56px) scale(0.94);
}
.home-business__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(66, 109, 152, 0.14);
}
.home-business.is-gallery-visible .home-business__item:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.12s;
}
.home-business.is-gallery-visible .home-business__item:nth-child(2) {
  opacity: 1;
  transform: translateY(-3vw) scale(1);
  transition-delay: 0.32s;
}
.home-business.is-gallery-visible .home-business__item:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.52s;
}
.home-business.is-gallery-visible .home-business__item:nth-child(4) {
  opacity: 1;
  transform: translateY(-3vw) scale(1);
  transition-delay: 0.72s;
}

.c-heading.home-business__heading .c-heading__title {
  margin-top: 0;
  margin: 0 !important;
}

.l-section-split.top_info {
  max-width: 90vw;
  padding: 80px;
  grid-template-columns: 220px 1fr;
}
@media screen and (max-width: 1024px) {
  .l-section-split.top_info {
    grid-template-columns: 1fr;
    max-width: 95vw;
    padding: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-section-split.top_info {
    padding: 50px 20px;
  }
}/*# sourceMappingURL=index.css.map */