@charset "UTF-8";

/*--------------------------default*/
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

/*--------------------------------
全体
---------------------------------*/
body {
  margin: 0;
  /* ← 追加：既定の余白を消す */
  padding: 0;
  /* ← 念のため */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #333;
}


a {
  text-decoration: none;
  transition-duration: 0.3s;
  color: #333;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
  padding: 0;
}


img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.h2-title {
  width: auto;
  height: 145px;
  margin-bottom: 80px;
}

.h2-title img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

/* =========================
   MV
========================= */

header {
  width: 100%;
}

header .mv {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  background: #000;
}

header .mv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: mvFade 40s linear infinite;
}

header .mv-slide-01 {
  animation-delay: 0s;
}

header .mv-slide-02 {
  animation-delay: 10s;
}

header .mv-slide-03 {
  animation-delay: 20s;
}

header .mv-slide-04 {
  animation-delay: 30s;
}

header .mv-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .mv-copy01 {
  position: absolute;
  top: 30%;
  left: 40px;
  width: 700px;
  height: auto;
  z-index: 2;
}

header .mv-copy02 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 1000px;
  height: auto;
  z-index: 2;
}

header .mv-copy03 {
  position: absolute;
  top: 30%;
  right: 0;
  width: 1000px;
  height: auto;
  z-index: 2;
}

header .mv-copy04 {
  position: absolute;
  top: 60%;
  left: 0;
  width: 1100px;
  height: auto;
  z-index: 2;
}

@keyframes mvFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* タブレット */
@media screen and (max-width: 1024px) {
  header .mv {
    height: 75vw;
    min-height: 700px;
    max-height: 1080px;
  }

  header .mv-copy01 {
    top: 26%;
    left: 30px;
    width: 58vw;
    max-width: 620px;
  }

  header .mv-copy02 {
    top: 12%;
    left: 0;
    width: 78vw;
    max-width: 820px;
  }

  header .mv-copy03 {
    top: 28%;
    right: 0;
    width: 78vw;
    max-width: 820px;
  }

  header .mv-copy04 {
    top: 58%;
    left: 0;
    width: 82vw;
    max-width: 900px;
  }
}

/* =========================
   about
========================= */

.about {
  width: 100%;
  background: #fff;
  padding: 0 20px 140px;
  box-sizing: border-box;
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  margin: 80px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #2d2d2d;
  text-align: center;
}


/* =========================
   service
========================= */
.service-section {
  padding: 0 0 200px;
  background: linear-gradient(to bottom, #cccccc 0%, #ffffff 100%);
}

.service-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.service-item {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 74px;
}

.service-item-reverse {
  flex-direction: row-reverse;
}

.service-item-image,
.service-item-body {
  width: calc((100% - 74px) / 2);
}

.service-item-image img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
}

.service-item-image {
  display: flex;
  justify-content: center;
}

.service-item-body {
  max-width: 470px;
}

.service-item-feature {
  width:auto;
  height: 65px;
  margin-bottom: 10px;
  justify-content: flex-start;
}

.service-item-feature img {
  display: block;
  width: auto;
  height: 100%;
}

.service-item-title {
  margin: 0 0 18px;
  color: #2d3478;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.service-item-text {
  margin: 0;
  color: #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

/* 画像とテキストの左右位置の微調整 */
.service-item:nth-child(odd) .service-item-body {
  padding-top: 10px;
}

.service-item:nth-child(even) .service-item-body {
  padding-top: 10px;
  text-align: left;
}

.service-item-reverse .service-item-body .service-item-text{
 text-align: right;
}

.service-item-reverse .service-item-body .service-item-title{
 text-align: right;
}

.service-item-reverse .service-item-feature {
  display: flex;
  justify-content: flex-end;
}

.service-item-reverse .service-item-body {
 justify-content: flex-end;
}

/* =========================
   tablet
========================= */
@media screen and (max-width: 1024px) {
  .service-section {
    padding: 60px 0 100px;
  }

  .service-inner {
    padding: 0 28px;
  }

  .service-item {
    gap: 40px;
  }

  .service-item-image,
  .service-item-body {
    width: calc((100% - 40px) / 2);
  }

  .service-item-title {
    font-size: 18px;
  }

  .service-item-text {
    font-size: 13px;
    line-height: 1.9;
  }
}


/* =========================
   product
========================= */

#product {
  padding: 80px 0 0;
}

#product .product-inner {
  width: 100%;
  position: relative;
}

#product .product-bg-text {
  position: absolute;
  top: 80px;
  left: 150px;
  width: 125px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#product .product-bg-text img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.45;
}

#product .product-list {
  width: 100%;
}

#product .product-item {
  position: relative;
  overflow: hidden;
}

#product .product-item-netstars {
  background: #7fa7cf;
  margin-left: 150px;
}

#product .product-item-lineworks {
  background: #c8dbef;
  margin-right: 150px;
}



#product .product-item-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 30px 60px 200px;
}

#product .product-item-inner-reverse {
  flex-direction: row-reverse;
}

#product .product-image {
  max-width: 400px;
  text-align: center;
}

#product .product-image img {
  display: block;
  width: 100%;
  height: auto;
}

#product .product-image-circle {
  max-width: 260px;
}

#product .product-image-circle img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

#product .product-content {
  width: 50%;
  max-width: 470px;
}

#product .product-logo-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

#product .product-logo {
  width: 80px;
  flex-shrink: 0;
}

#product .product-logo img {
  display: block;
  width: 100%;
  height: auto;
}

#product .product-title-wrap {
  flex: 1;
}

#product .product-title {
  margin: 0 0 4px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #ffffff;
}

#product .product-title-blue {
  color: #317cba;
}

#product .product-subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

#product .product-subtitle-blue {
  color: #4d86c6;
}

#product .product-line {
  width: 100%;
  height: 2px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.8);
}

#product .product-line-blue {
  background: #6e9ccc;
}

#product .product-text {
  margin: 0 0 28px 15px;
  font-size: 17px;
  font-weight: 300;
  line-height: 27px;
  color: #333;
}

#product .product-text-dark {
  color: #222222;
}

#product .product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 380px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #292e68;
  /* border: 2px solid #292e68; */
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  /* transition: all 0.3s ease; */
}

#product .product-btn:hover {
  background: #ffffff;
  color: #292e68;
}

/* =========================
   Tablet
========================= */
@media screen and (max-width: 1024px) {
  #product {
    padding: 64px 0 0;
  }

  #product .product-bg-text {
    left: 30px;
    width: 110px;
  }

  #product .product-item-inner {
    gap: 40px;
    padding: 48px 40px;
  }

  #product .product-image {
    width: 34%;
  }

  #product .product-content {
    width: 48%;
  }

  #product .product-title {
    font-size: 1.9rem;
  }
}


/* =========================
   news
========================= */

#news {
  position: relative;
  padding: 0 20px 40px;
  background: linear-gradient(to bottom, #fff 0%, #fff 72%, #28357a 72%, #28357a 100%);
  overflow: hidden;
}

#news .news-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#news .news-text {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
  color: #222;
  letter-spacing: 0.08em;
}

#news .news-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

#news .news-card {
  display: block;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border: 4px solid #28357a;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#news .news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

#news .news-card-image {
  width: 100%;
  aspect-ratio: 16 / 10; /* ←デザインに合わせて変更OK */
  overflow: hidden;
}

#news .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#news .news-card-body {
  padding: 12px 10px 14px;
  background: #fff;
}

#news .news-date {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #222;
}

#news .news-title {
  margin: 0;
  font-size: 15px;
  line-height: 25px;
  color: #222;
}

#news .news-button-wrap {
  text-align: center;
}

#news .news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 15px 28px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

#news .news-button:hover {
  background: #fff;
  color: #28357a;
}

@media screen and (max-width: 767px) {
  #news {
    padding: 30px 16px 80px;
    background: linear-gradient(to bottom, #fff 0%, #fff 82%, #28357a 82%, #28357a 100%);
  }

  #news .news-text {
    margin-bottom: 28px;
    font-size: 11px;
    line-height: 1.9;
  }

  #news .news-list {
    gap: 20px;
    margin-bottom: 28px;
  }

  #news .news-card {
    max-width: 100%;
  }

  #news .news-card-body {
    padding: 12px;
  }

  #news .news-date,
  #news .news-title {
    font-size: 11px;
  }
}

/* =========================
   access
========================= */

#access {
  width: 100%;
  background: #ececec;
}

#access .access-visual {
  position: relative;
  width: 100%;
  height: 370px;
  overflow: hidden;
}

#access .access-visual-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#access .access-visual-text {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: auto;
  height: 145px;
  opacity: 0.8;
  pointer-events: none;
}

#access .access-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 130px;
  text-align: center;
}

#access .access-info {
  color: #222222;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.04em;
}

#access .access-post {
  margin: 0 0 10px;
}

#access .access-address {
  margin: 0 0 22px;
}

#access .access-station {
  margin: 0;
}

#access .access-station-title {
  margin: 0 0 2px;
  color: #2f3f84;
  font-weight: 700;
}

#access .access-station-text {
  margin: 0;
}

#access .access-map {
  width: 100%;
  line-height: 0;
}

#access .access-map iframe {
  display: block;
  width: 100%;
  height: 300px;
}


/* =========================
   contact
========================= */
#contact {
  width: 100%;
  padding: 100px 0 0;
  background: #e7edf2;
  overflow: hidden;
}

#contact .contact-inner {
  width: 800px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

#contact .contact-left {
  flex: 0 0 480px;
  padding-top: 10px;
}

#contact .contact-title {
  display: block;
  width: 240px;
  margin: 0 auto 80px;
}

#contact .contact-text {
  margin: 0 0 38px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
}

#contact .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 380px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #292e68;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
}

#contact .contact-btn:hover {
  opacity: 0.8;
}

#contact .contact-right {
  flex: 0 0 300px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

#contact .contact-image {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-top: 50px;
}


/* =========================
   footer
========================= */
#footer {
  width: 100%;
  background: #292e68;
  padding: 62px 0 56px;
}

#footer .footer-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  box-sizing: border-box;
}

#footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 38px;
  min-width: 0;
}

#footer .footer-logo img {
  display: block;
  width: 210px;
  height: auto;
}

#footer .footer-company p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
  color: #ffffff;
}

#footer .footer-center {
  flex: 1;
  min-width: 0;
}

#footer .footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .footer-links li {
  margin-bottom: 0;
  position: relative;
  padding-left: 14px;
}

#footer .footer-links li:last-child {
  margin-bottom: 0;
}

#footer .footer-links li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -3px;
  width: 11px;
  height: 11px;
  background: #ffffff;
}

#footer .footer-links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

#footer .footer-links a:hover {
  opacity: 0.7;
}

#footer .footer-right {
  flex-shrink: 0;
}

#footer .footer-banner {
  display: block;
}

#footer .footer-banner img {
  display: block;
  width: 320px;
  height: auto;
  border-radius: 4px;
}

#footer .footer-copy {
  width: 100%;
  max-width: 1120px;
  margin: 46px auto 0;
  padding: 0 40px;
  box-sizing: border-box;
}

#footer .footer-copy p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
}