/* =========================================================
   TREAM SITE STYLE
========================================================= */

:root {
  --blue: #0071bc;
  --dark: #22262b;
  --lime: #dfff00;
  --gray: #f2f2f2;
  --text: #1f2328;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 58px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, .18);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  position: relative;
  z-index: 10002;
}

.site-header__logo img {
  width: 100%;
  max-width: 150px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.site-header__contact {
  justify-content: center;
  min-width: 112px;
  height: 34px !important;
  padding: 0 20px;
  background: var(--blue);
  color: #fff !important;
}

/* =========================
  HAMBURGER
========================= */

.hamburger {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: none;
  z-index: 10001;
}

.hamburger span {
  position: absolute;
  left: 8px;
  width: 26px;
  height: 2px;
  background: var(--blue);

  transition:
    transform .35s ease,
    opacity .3s ease,
    top .35s ease;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

/* active */

.hamburger.is-active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* =========================
  MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;

  display: flex;
  justify-content: flex-end;
  align-items: flex-start;

  padding: 70px 24px 24px;
  backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .35s ease,
    visibility .35s ease;

  z-index: 10000;
}

.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================
  MENU PANEL
========================= */

.mobile-menu__nav {
  position: relative;

  width: min(340px, 100%);

  display: flex;
  flex-direction: column;

  gap: 24px;

  padding: 38px 34px;

  border-radius: 6px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.98),
      rgba(245,249,255,.98)
    );

  border: 1px solid rgba(0,117,190,.08);

  box-shadow:
    0 20px 50px rgba(0,0,0,.12);

  transform:
    translateY(-24px)
    scale(.96);

  opacity: 0;

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    opacity .35s ease;
}

.mobile-menu.is-active .mobile-menu__nav {
  transform:
    translateY(0)
    scale(1);

  opacity: 1;
}

/* top accent */

.mobile-menu__nav::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  border-radius: 18px 18px 0 0;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--lime)
    );
}

/* =========================
  MENU LINK
========================= */

.mobile-menu__nav a {
  position: relative;

  width: fit-content;

  color: #111820;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;

  transition:
    transform .3s ease,
    color .3s ease;
}

.mobile-menu__nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: linear-gradient(
    90deg,
    var(--blue),
    var(--lime)
  );

  transition: width .35s ease;
}

.mobile-menu__nav a:hover {
  color: var(--blue);
  transform: translateX(5px);
}

.mobile-menu__nav a:hover::after {
  width: 100%;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .site-header__nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

}

@media (max-width: 767px) {

  .mobile-menu {
    padding: 60px 16px 16px;
  }

  .mobile-menu__nav {
    width: min(300px, 60%);
    padding: 32px 26px;
    gap: 20px;
  }

  .mobile-menu__nav a {
    font-size: 21px;
  }

}

body.menu-open {
  overflow: hidden;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 1024px) {

  .site-header__nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

}

@media (max-width: 767px) {

  .mobile-menu__nav {
    width: 60%;
    padding: 30px;
  }

  .mobile-menu__nav a {
    font-size: 22px;
  }

	.pc {
	display:none!important;
}
	
}

body.menu-open {
  overflow: hidden;
}

/* ---------- HEADER / Responsive ---------- */

@media (max-width: 900px) {
  .site-header {
    height: 56px;
	  width:100vw;
  }

  .site-header__inner {
    padding: 0 18px;
  }

  .site-header__logo {
    font-size: 28px;
  }

  .site-header__nav {
    display: none;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
	
	.site-header__logo {
    max-width: 120px
  }
	
}

/* =========================
   COMMON
========================= */

.tream-top {
  overflow: hidden;
  padding-top: 58px;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 36px;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: .25s ease;
}

.btn::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 15px;
  background-image: url('/assets/images/arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}

/* --- 【追い込み】ホバー時に矢印を少し右に動かすプロ演出 --- */
.btn:hover::after {
  transform: translateX(4px);
}

.btn--blue {
  background: var(--blue);
  box-shadow: 0 6px 14px rgba(0, 113, 188, .25);
  color: #fff;
}

.btn--outline {
  border: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.section {
  padding: 88px 0;
}

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

.section-title {
  position: relative;
  margin: 0;
  color: var(--blue);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  background: var(--lime);
}


/* ---------- COMMON / Responsive ---------- */

@media (max-width: 900px) {
  .tream-top {
    padding-top: 56px;
  }

  .section {
    padding: 64px 0;
  }

  .section__inner {
    padding: 0 24px;
  }

  .section-title {
    font-size: 40px;
  }
}

/* =========================
   FV
========================= */

.fv {
  position: relative;
  min-height: 650px;
  background: #fff;
}

.fv .btn {
  border-radius: 999px;
}

.fv__inner {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1180px;
  min-height: 592px;
  margin: 0 auto;
  padding: 72px 40px 80px;
}

.fv__content {
  position: relative;
  z-index: 2;
  width: 80%;
}

.fv__title {
  margin: 0 0 48px;
  color: var(--dark);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .04em;
}

.fv__title span {
  color: var(--blue);
}

.fv__lead {
  margin: 0 0 36px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.9;
}

.fv__text {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 2;
}

.fv__scroll {
  position: absolute;
  bottom: 35px;
  left: -62px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
  animation: scrollTextMove 2.6s ease-in-out infinite;
}

.fv__scroll::after {
  content: "";
  position: absolute;
  top: 65px;
  left: 9px;
  display: block;
  width: 1px;
  height: 86px;
  margin: 12px auto 0;
  background: linear-gradient(180deg, rgba(0, 117, 190, 0), rgba(0, 117, 190, .9), rgba(0, 117, 190, 0));
  transform-origin: top;
  animation: scrollLineMove 2.6s ease-in-out infinite;
}

.fv__scroll::before {
  content: "";
  position: absolute;
  top: 160px;
  left: 7px;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: scrollDotMove 2.6s ease-in-out infinite;
}

@keyframes scrollTextMove {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  20% {
    opacity: 1;
  }

  70% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes scrollLineMove {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  30% {
    opacity: 1;
    transform: scaleY(1);
  }

  70% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes scrollDotMove {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(14px);
  }
}

.fv__graphic {
  position: absolute;
  top: 20%;
  right: -5vw;
  z-index: 0;
  width: min(48vw, 680px);
  aspect-ratio: 1 / .82;
  pointer-events: none;
  transform: translateY(-50%);
	z-index: 0;
}

.fv-geo {
  position: absolute;
}

.fv-geo--circle {
  border: 2px dashed rgba(0, 117, 190, .42);
  border-radius: 50%;
  animation: fvRotate 32s linear infinite;
}

.fv-geo--circle-1 {
  top: 0;
  right: 18%;
  width: 54%;
  aspect-ratio: 1;
}

.fv-geo--circle-2 {
  right: 0;
  bottom: 10%;
  width: 38%;
  aspect-ratio: 1;
  animation-direction: reverse;
}

.fv-geo--circle-3 {
  bottom: 0;
  left: 12%;
  width: 44%;
  aspect-ratio: 1;
  opacity: .6;
}

.fv-geo--triangle {
  right: 13%;
  bottom: 18%;
  width: 34%;
  aspect-ratio: .78 / 1;
  background: linear-gradient(180deg, rgba(0, 117, 190, .15), rgba(0, 117, 190, .035));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: fvFloat 6s ease-in-out infinite;
}

.fv-geo--dot {
  top: 33%;
  right: 42%;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #bdf000;
  box-shadow: 0 0 36px rgba(189, 240, 0, .45);
  animation: fvPulse 3.2s ease-in-out infinite;
}

.fv-geo--halftone {
  bottom: 12%;
  left: 20%;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: radial-gradient(rgba(0, 117, 190, .7) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: .32;
  -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 72%);
  mask-image: radial-gradient(circle, #000 55%, transparent 72%);
  animation: fvFloat 7s ease-in-out infinite reverse;
}

.fv-geo__line {
  position: absolute;
  inset: 18% 2% 5% 8%;
  width: 86%;
  height: auto;
  color: rgba(0, 117, 190, .62);
  animation: fvLineFloat 6.5s ease-in-out infinite;
}

.fv-geo__line path {
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fv-geo__line circle {
  fill: #fff;
  stroke: currentColor;
  stroke-width: 3;
}

@keyframes fvRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fvFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes fvLineFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(8px, -8px);
  }
}

@keyframes fvPulse {

  0%,
  100% {
    box-shadow: 0 0 28px rgba(189, 240, 0, .38);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 48px rgba(189, 240, 0, .58);
    transform: scale(1.08);
  }
}

@media (max-width: 767px) {
  .fv__graphic {
    top: 56%;
    right: 0px;
    width: 92vw;
    opacity: .32;
  }

  .fv-geo--dot {
    width: 38px;
  }
}


/* ---------- FV / Responsive ---------- */

@media (max-width: 900px) {
  .fv {
    min-height: auto;
  }

  .fv__inner {
    display: block;
    min-height: auto;
    padding: 70px 24px;
  }

  .fv__content {
    width: 100%;
  }

  .fv__title {
    margin-bottom: 34px;
    font-size: 44px;
  }

  .fv__lead {
    font-size: 16px;
  }

  .fv__graphic {
	  top:30%;
    right: 30px;
    opacity: .22;
	  position: fixed;
	  z-index:0;
  }

	.news, .service, .recruit{
		position: relative;
		z-index:1;
	}
	
	.service, .recruit{
		background: #f2f2f2;
	}
	
  .fv__scroll {
    display: none;
  }
}

@media (max-width: 500px) {
	.fv__title {
    margin-bottom: 34px;
    font-size: 28px;
  }
	
	.fv__graphic {
		top:35%;
    right: -30px;
    opacity: .12;
  }
}

/* =========================
   NEWS
========================= */

.news {
  background: var(--blue);
  color: #fff;
}

.news__inner {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 120px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 40px;
}

.news__head {
  position: relative;
}

.news__head::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -58px;
  width: 1px;
  height: 255px;
  background: rgba(255, 255, 255, .45);
}

.news h2 {
  position: relative;
  margin: 0 0 42px;
  color: #fff;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.news h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  background: #fff;
}

.news__list {
  padding-top: 14px;
}

.news__item {
  display: grid;
  grid-template-columns: 120px 96px 1fr;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
}

.news__item time {
  font-size: 15px;
}

.news__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.news__item p {
  margin: 0;
  font-size: 15px;
}

.news__empty {
  margin: 0;
  color: #fff;
  font-size: 14px;
}


/* ---------- NEWS / Responsive ---------- */

@media (max-width: 900px) {
  .news__inner {
    gap: 0px;
    padding: 56px 24px;
  }

  .news__head::after {
    display: none;
  }

  .news h2 {
    font-size: 40px;
  }

  .news__item {
	 grid-template-columns: 90px 100px 1fr;
    gap: 8px;
  }
}

@media (max-width: 500px) {
	.news__inner {
		display: flex;
		flex-direction:column;
    gap: 0px;
    padding: 56px 24px;
  }
	
	.news__inner h2{
		margin:0;
	}
	
	.news__list{
		padding:0;
	}
	
	.news__item {
  display: grid;
  align-items: center;
  gap: 8px 5px;
}

.news__item p {
  grid-column: 1 / -1;
  margin: 0;
}
	
	.news__inner .btn{
		width: 200px;
		margin: 30px auto 0;
	}
}

/* =========================
   SERVICE
========================= */

.service {
  background: var(--gray);
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 84px;
  margin-top: 64px;
}

.service-card {
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .06);
  text-align: center;
}

.service-card img {
  width: 50%;
  max-width: 200px;
  margin: 20px auto;
}

.service-card h3 {
  margin: 0;
  padding: 15px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.service-card h4 {
  margin: 0 22px 24px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
}

.service-card p {
  max-width: 360px;
  margin: 0 auto 32px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

.service-card .btn {
  margin-bottom: 34px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-card .btn {
  width: fit-content;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  padding: 12px 40px;
}

#dm, #ai{
  scroll-margin-top: 80px;
}


/* ---------- SERVICE / Responsive ---------- */

@media (max-width: 900px) {
	.section-title{
		text-align: center;
	}
	
	.section-title:after{
		margin: 6px auto 0;
	}
	
  .service__grid {
    gap: 38px;
    margin-top: 44px;
	  grid-template-columns: 1fr 1fr;
  }

	.service-card{
		
	}
	
  .service-card h3 {
    font-size: 17px;
  }

  .service-card h4 {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
	.service__grid{
  grid-template-columns: 1fr;
	}
}

/* =========================
   COMPANY
========================= */

.company {
  position: relative;
  overflow: hidden;
  background: #F9F9FB;
  background-image: url('/assets/images/company-bg.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}


.company__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 96px;
}

.company__text h3 {
  margin: 44px 0 32px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.65;
}

.company__text p {
  max-width: 510px;
  margin: 0;
  font-size: 15px;
  line-height: 2.2;
}

.info-card {
  min-height: 230px;
  padding: 46px 42px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
  text-align: center;
}

.info-card img {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

.info-card h3 {
  display: inline-block;
  margin: 0 0 18px;
  border-bottom: 3px solid var(--lime);
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.info-card p {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.9;
}


/* ---------- COMPANY / Responsive ---------- */

@media (max-width: 900px) {
  .company__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

	.company__text h3 br{
		display: none;
	}
	
  .company__text h3 {
    font-size: 24px;
	text-align: center;
  }

	.company__text p{
		max-width: 620px;
		margin: 0 auto;
	}
	
  .info-card {
    padding: 36px 22px;
	  max-width: 500px;
	  margin: 0 auto;
  }
}

@media (max-width: 500px) {
	.company__text h3 br{
		display: block;
	}
}

/* =========================
   RECRUIT
========================= */

.recruit {
  background: var(--gray);
}

.recruit__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 96px;
}

.recruit__text h3 {
  margin: 44px 0 32px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.65;
}

.recruit__text p {
  max-width: 510px;
  margin: 0;
  font-size: 15px;
  line-height: 2.2;
}

.recruit-icons {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 24px 0 22px;
}

.recruit-icons img {
  width: 100%;
}

.recruit-icons div {
  width: 88px;
}

.recruit-icons p {
  margin: 8px 0 0;
  font-size: 11px;
}


/* ---------- RECRUIT / Responsive ---------- */

@media (max-width: 900px) {
  .recruit__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .recruit__text h3 {
    font-size: 24px;
	  text-align: center;
  }

	.recruit__text h3 br{
		display: none;
	}
	
	.recruit__text p{
		max-width: 620px;
		margin: 0 auto;
	}
	
  .recruit-icons {
    gap: 16px;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--blue);
  color: #fff;
	position: relative;
	z-index: 1;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 40px 56px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-footer__nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.site-footer__copy {
  padding: 8px 40px;
  background: var(--lime);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}


.site-footer__logo img {
  max-width: 150px;
}

/* ---------- FOOTER / Responsive ---------- */

@media (max-width: 900px) {
  .site-footer__inner {
    display: block;
    padding: 48px 24px 36px;
  }

  .site-footer__logo {
    display: inline-flex;
    margin-bottom: 26px;
    font-size: 32px;
  }

  .site-footer__nav {
    gap: 20px;
  }

  .site-footer__nav a {
    font-size: 12px;
  }

  .site-footer__copy {
    padding: 8px 20px;
    font-size: 10px;
  }
}

@media (max-width: 500px) {
	.site-footer__logo{
	    max-width: 120px;
	}
	}


/* =========================
   FUTURISTIC MOTION / HOVER
========================= */

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
  }

  .site-header__logo,
  .site-footer__logo {
    transition: transform .35s ease, filter .35s ease;
  }

  .site-header__logo:hover,
  .site-footer__logo:hover {
    filter: drop-shadow(0 0 10px rgba(0, 113, 188, .28));
    transform: translateY(-1px) scale(1.03);
  }

  .site-header__nav a,
  .site-footer__nav a {
    position: relative;
    transition: color .25s ease, opacity .25s ease;
  }

  .site-header__nav a:not(:last-child)::after,
  .site-footer__nav a::after {
    content: "";
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--lime));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  }

  .site-footer__nav a::after {
    bottom: -6px;
    background: var(--lime);
  }

  .site-header__nav a:hover::after,
  .site-footer__nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-header__contact,
  .btn--blue {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, background .35s ease;
  }

  .site-header__contact:hover {
    background: var(--lime);
    color: var(--blue) !important;
  }

  .btn--outline {
    position: relative;
    overflow: hidden;
    transition: color .35s ease, transform .35s ease, box-shadow .35s ease;
  }

  .btn--outline::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  }

  .btn--outline:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    color: var(--blue);
    transform: translateY(-2px);
  }

  .btn--outline:hover::before {
    transform: scaleX(1);
  }

  .btn--outline:hover::after {
    filter: invert(40%) sepia(100%) saturate(1500%) hue-rotate(190deg) brightness(80%) contrast(120%);
  }

  .line-art {
    animation: floatGrid 9s ease-in-out infinite;
  }

  .line-art--2 {
    animation-delay: -3s;
  }

  .geo {
    animation: pulseCircle 6s ease-in-out infinite;
  }

  .geo--2 {
    animation-delay: -2s;
  }

  .geo--3 {
    animation-delay: -4s;
  }

  .fv__title,
  .fv__lead,
  .fv__text,
  .fv .btn {
    animation: fadeRise .9s cubic-bezier(.16, 1, .3, 1) both;
  }

  .fv__lead {
    animation-delay: .12s;
  }

  .fv__text {
    animation-delay: .22s;
  }

  .fv .btn {
    animation-delay: .34s;
  }

  .service-card,
  .info-card {
    position: relative;
    overflow: hidden;
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s ease, border-color .45s ease;
  }

  .service-card::before,
  .info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 113, 188, .18), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }

  .service-card::after,
  .info-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(0, 113, 188, .16);
    border-radius: inherit;
    pointer-events: none;
  }

  .service-card:hover,
  .info-card:hover {
    border-color: #1e90ff;
    box-shadow: 0 22px 44px rgba(0, 0, 0, .12), 0 0 32px rgba(0, 113, 188, .13);
    transform: translateY(-10px);
  }

  .service-card:hover::before,
  .info-card:hover::before {
    opacity: 1;
  }

  .service-card__icon,
  .info-card__icon,
  .mini-icon {
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), filter .45s ease;
  }

  .service-card:hover .service-card__icon,
  .info-card:hover .info-card__icon {
    filter: drop-shadow(0 0 14px rgba(0, 113, 188, .28));
    transform: translateY(-4px) scale(1.06);
  }

  .recruit-icons div {
    transition: transform .35s ease;
  }

  .recruit-icons div:hover {
    transform: translateY(-5px);
  }

  .section-title {
    position: relative;
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes floatGrid {

  0%,
  100% {
    transform: rotate(-15deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-15deg) translate3d(12px, -14px, 0);
  }
}

@keyframes pulseCircle {

  0%,
  100% {
    opacity: .72;
    transform: scale(1);
  }

  50% {
    opacity: .42;
    transform: scale(1.045);
  }
}

@keyframes scanLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  35% {
    opacity: .55;
    transform: scaleX(1);
  }

  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}


/* =========================
   SERVICE PAGE
========================= */

.service-page {
  background: #f2f2f2;
  color: #111820;
}

.service-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.service-hero {
  overflow: hidden;
  padding: 78px 0 72px;
  background: #fff;
}

.service-hero__inner,
.service-intro__inner,
.service-detail__inner,
.service-contact__inner {
  width: min(1110px, calc(100% - 48px));
  margin-inline: auto;
}

.service-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.service-hero__content {
  flex: 1;
	position: relative;
	z-index:2
}

.service-title,
.service-section-title {
  position: relative;
  margin: 0 0 52px;
  color: var(--blue);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
}

.service-title::after,
.service-section-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--lime);
}

.service-hero__lead {
  margin: 0 0 24px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.7;
}

.service-hero__text {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 2;
}

.service-hero__graphic {
  flex: 0 0 430px;
  width: 430px;
  margin-right: -28px;
}

.service-intro {
  padding: 34px 0 42px;
  background: var(--blue);
  color: #fff;
}

.service-intro__text {
  margin: 0 0 36px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.service-intro__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 130px;
}

.service-intro-card {
  padding: 38px 48px 34px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  color: #111820;
  text-align: center;
}

.service-intro-card__icon {
  width: 180px;
  margin: 0 auto 24px;
}

.service-intro-card h2 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.service-intro-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

.service-detail {
  padding: 92px 0 96px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px 38px;
}

.service-card {
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 117, 190, .12);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover {
  box-shadow: 0 16px 30px rgba(0, 117, 190, .18);
  transform: translateY(-6px);
}

.service-card h3 {
  margin: 0;
  padding: 13px 10px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.service-card__body {
  padding: 26px 20px 28px;
  text-align: center;
}

.service-card__body img {
  width: 140px;
  margin: 0 auto;
  transition: filter .35s ease;
}

.service-card:hover img {
  filter: drop-shadow(0 0 10px rgba(189, 240, 0, .18));
}

.service-card__catch {
  margin: 0 0 18px;
  padding: 0 10px !important;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center !important;
}

.service-card__text {
  margin: 0;
  padding: 0 10px !important;
  font-size: 13px;
  line-height: 1.9;
  text-align: left;
}

.service-section-title--ai {
  margin-top: 92px;
}

.service-grid--ai {
  grid-template-columns: repeat(3, 1fr);
}

.service-contact {
  padding: 66px 0;
  background: #eef6ff;
}

.service-contact__inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

.service-contact__icon {
  display: grid;
  flex: 0 0 150px;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
}

.service-contact__icon img {
  width: 66px;
}

.service-contact__content h2 {
  position: relative;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.35;
}

.service-contact__content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--lime);
}

.service-contact__content p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .service-hero {
    padding: 100px 0 48px;
  }

  .service-hero__inner {
    display: block;
  }

  .service-hero__graphic {
    width: min(82vw, 390px);
    margin: 40px auto 0;
	  position: absolute;
	  top: 12vh;
      right: 0;
  }

  .service-title,
  .service-section-title {
    margin-bottom: 42px;
    font-size: 38px;
  }

  .service-hero__lead {
    font-size: 22px;
  }

	.service-hero__text{
		max-width:500px;
	}
	
	.service-intro__cards{
		gap: 40px;
	}
	
  .service-intro__text {
    font-size: 16px;
    text-align: left;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .service-intro-card {
    padding: 34px 28px 30px;
  }

  .service-detail {
    padding: 70px 0;
  }

  .service-contact__icon {
    margin: 0 auto 28px;
  }

  .service-contact__content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 500px) {
	    .service-hero__graphic {
		position: fixed;
			z-index:0;
	}
	
	.service-intro, .service-detail, .service-contact{
		position: relative;
		z-index:1;
	}
	
	.service-detail{
		background: #f2f2f2;
	}
	
	.service-section-title{
		line-height: 1.5;
	}
	
	.service-section-title br{
		display:block!important;
	}
	
    .service-intro__cards {
        grid-template-columns: repeat(1, 1fr);
		gap:40px;
    }
	
	.service-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
	
	.service-contact__icon{
		display: none;
	}
	
	.service-contact__content h2{
		font-size: 28px;
		text-align: center;
	}
	
	.contact-button {
  display: flex;
  justify-content: center;
}
	
}


/* =========================
   COMPANY PAGE
========================= */

.company-page {
  background: #f2f2f2;
  color: #111820;
}

.company-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================
  HERO
========================= */
.company-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 82px 0 74px;
  background: #fff url("/assets/images/company-fv.png") center center / cover no-repeat;
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .96) 32%, rgba(255, 255, 255, .7) 58%, rgba(255, 255, 255, .18) 100%);
  pointer-events: none;
}

.company-hero::after {
  display: none;
}

.company-hero__inner,
.company-about__inner,
.company-access__inner,
.company-contact__inner {
  width: min(1110px, calc(100% - 48px));
  margin-inline: auto;
}

.company-hero__inner {
  position: relative;
  z-index: 1;
}

.company-hero__content {
  width: min(520px, 100%);
}

.company-title,
.company-section-title {
  position: relative;
  margin: 0 0 58px;
  color: var(--blue);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
}

.company-title::after,
.company-section-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--lime);
}

.company-hero__lead {
  margin: 0 0 28px;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.7;
}

.company-hero__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

/* =========================
  ABOUT
========================= */

.company-about {
  padding: 64px 0 58px;
  background: var(--blue);
  color: #fff;
}

.company-about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
}

.company-about__heading h2 {
  position: relative;
  margin: 0 0 24px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}

.company-about__heading h2::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 58px;
  height: 2px;
  background: #fff;
}

.company-about__heading p {
  margin: 0;
  font-size: 14px;
}

.company-about__heading p {
  margin: 0;
  font-size: 14px;
}

.company-profile dl {
  margin: 0;
}

.company-profile__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .65);
}

.company-profile__row:first-child {
  border-top: 1px solid rgba(255, 255, 255, .65);
}

.company-profile__row dt {
  font-size: 15px;
  font-weight: 800;
}

.company-profile__row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.company-profile__row dd p {
  margin: 0 0 26px;
}

.company-profile__row dd p:last-child {
  margin-bottom: 0;
}

.company-profile__row a {
  color: #fff;
  text-decoration: none;
}

.company-profile__row a:hover {
  text-decoration: underline;
}

.company-profile__row--business {
  padding-bottom: 32px;
}

.company-profile__business-title {
  margin: 0 !important;
}

.company-profile__business li {
  margin-left: 20px;
}

.company-profile__business-group:first-child {
  margin-bottom: 20px;
}

/* =========================
  ACCESS
========================= */

.company-access {
  position: relative;
  padding: 92px 0 96px;
  background: #f2f2f2;
}

.company-access__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: start;
  gap: 70px;
}

.company-section-title {
  margin-bottom: 16px;
}

.company-section-sub {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.company-access__address {
  margin-bottom: 42px;
  font-size: 17px;
  font-style: normal;
  line-height: 1.9;
}

.company-access__station {
  position: relative;
  margin: 0 0 28px;
  padding-left: 30px;
  font-size: 17px;
  line-height: 2;
}

.company-access__station-icon {
  position: absolute;
  top: 10px;
  left: 0;
  width: 18px;
}

.company-access__station-icon img {
  width: 100%;
}

.company-access__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.company-access__link:hover {
  text-decoration: underline;
}

.company-access__link-icon {
  display: inline-flex;
  width: 14px;
}

.company-access__link-icon img {
  width: 100%;
}

.company-access__map {
  overflow: hidden;
  width: 100%;
}

.company-access__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}


/* =========================
  RESPONSIVE
========================= */

@media (max-width: 900px) {
  .company-hero {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .company-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 45%, rgba(255, 255, 255, .72) 100%), url("../images/company-hero.png") right bottom / 120% auto no-repeat;
    opacity: .75;
  }

  .company-title,
  .company-section-title {
    font-size: 38px;
  }

  .company-hero__lead {
    font-size: 23px;
  }

  .company-about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .company-about__heading h2 {
    font-size: 42px;
  }

	.company-profile{
		max-width: 500px;
		padding: 20px;
	}
	
  .company-profile__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-access {
    padding: 70px 0;
  }

  .company-access__inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: start;
    gap: 0px;
  }

  .company-contact__inner {
    display: block;
    text-align: center;
  }

  .company-contact__icon {
    margin: 0 auto 28px;
  }

  .company-contact__content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 500px) {
    .company-access__inner {
        display: grid;
        grid-template-columns:  1fr;
        align-items: start;
        gap: 40px;
    }
}

/* =========================
   NEWS PAGE
========================= */

.news-page {
  background: #f2f2f2;
  color: #111820;
}

/* =========================
  HERO
========================= */

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background: #fff;
}

.news-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  aspect-ratio: 1;
  border: 2px dashed rgba(0, 117, 190, .18);
  border-radius: 50%;
}

.news-hero::after {
  content: "";
  position: absolute;
  right: 120px;
  bottom: -95px;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-image: radial-gradient(rgba(0, 117, 190, .35) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: .45;
}

.news-hero__inner,
.news-archive__inner {
  position: relative;
  z-index: 1;
  width: min(1110px, calc(100% - 48px));
  margin-inline: auto;
}

.news-title {
  position: relative;
  margin: 0 0 52px;
  color: var(--blue);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
}

.news-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--lime);
}

.news-hero__lead {
  margin: 0 0 18px;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.7;
}

.news-hero__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

/* =========================
  ARCHIVE
========================= */

.news-archive {
  padding: 86px 0 100px;
}

.news-list {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 117, 190, .08);
}

.news-item {
  border-bottom: 1px solid rgba(0, 117, 190, .18);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item__link {
  display: grid;
  grid-template-columns: 120px 92px 1fr 32px;
  align-items: center;
  gap: 22px;
  padding: 26px 34px;
  color: inherit;
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}

.news-item__link:hover {
  background: rgba(0, 117, 190, .06);
}

.news-item__date {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}

.news-item__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.news-item__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.news-item__arrow {
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
  transition: transform .3s ease;
}

.news-item__link:hover .news-item__arrow {
  transform: translateX(6px);
}

.news-empty {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

/* =========================
  PAGINATION
========================= */

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 46px;
}

.news-pagination .page-numbers {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 767px) {
  .news-hero {
    padding: 100px 0 50px;
  }

  .news-title {
    margin-bottom: 42px;
    font-size: 38px;
  }

  .news-hero__lead {
    font-size: 23px;
  }

  .news-archive {
    padding: 56px 0 70px;
  }

  .news-item__link {
    display: block;
    gap: 10px 16px;
    padding: 22px 20px;
  }

  .news-item__date,
  .news-item__cat,
  .news-item__title {
    grid-column: 1 / 2;
  }

  .news-item__arrow {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    align-self: center;
  }

  .news-item__title {
    font-size: 15px;
  }
}


/* =========================
   RECRUIT PAGE
========================= */

.recruit-page {
  background: #f2f2f2;
  color: #111820;
}

.recruit-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================
  HERO
========================= */

.recruit-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 82px 0 74px;
  background: #fff url("/assets/images/recruit-fv.png") right center / auto 100% no-repeat;
}

.recruit-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .96) 34%, rgba(255, 255, 255, .7) 62%, rgba(255, 255, 255, .18) 100%);
  pointer-events: none;
}

.recruit-hero__inner,
.recruit-message__inner,
.entry-section__inner {
  width: min(1110px, calc(100% - 48px));
  margin-inline: auto;
}

.recruit-hero__inner {
  position: relative;
  z-index: 1;
}

.recruit-hero__content {
  width: min(560px, 100%);
}

.recruit-title {
  position: relative;
  margin: 0 0 58px;
  color: var(--blue);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
}

.recruit-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--lime);
}

.recruit-hero__lead {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.7;
}

.service-hero__lead span,
.company-hero__lead span,
.contact-hero__lead span,
.recruit-hero__lead span {
  color: var(--blue);
}

.recruit-hero__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

/* =========================
  MESSAGE
========================= */

.recruit-message {
  padding: 62px 0 64px;
  background: var(--blue);
  color: #fff;
}

.recruit-message__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: start;
  gap: 70px;
}

.recruit-message__heading h2 {
  position: relative;
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
}

.recruit-message__heading h2::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 58px;
  height: 2px;
  background: #fff;
}

.recruit-message__text {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.8;
}

.recruit-jobs {
  padding: 92px 0 0;
  background: #f2f2f2;
}

.recruit-jobs__inner {
  width: min(1110px, calc(100% - 48px));
  margin-inline: auto;
}

.recruit-section-title {
  position: relative;
  margin: 0 0 64px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .06em;
  text-align: center;
}

.recruit-section-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 58px;
  height: 2px;
  background: var(--lime);
  transform: translateX(-50%);
}

.recruit-job-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.recruit-job-card {
  overflow: hidden;
  padding: 0 24px 28px;
  border: 2px solid var(--blue);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 117, 190, .1);
}

.recruit-job-card h3 {
  margin: 0 -24px 24px;
  padding: 15px 12px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.recruit-job-card p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.9;
}

.recruit-job-card h4 {
  margin: 26px 0 12px;
  padding-left: 10px;
  border-left: 4px solid var(--blue);
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.recruit-job-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-job-card li {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 1.8;
}

.recruit-job-card li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.recruit-requirements {
  margin-top: 86px;
}

.recruit-requirements__list {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 8px 42px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(0, 117, 190, .08);
}

.recruit-requirements__list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 117, 190, .18);
}

.recruit-requirements__list div:last-child {
  border-bottom: 0;
}

.recruit-requirements__list dt {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.recruit-requirements__list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .recruit-job-list {
    grid-template-columns: 1fr;
  }

  .recruit-section-title {
    font-size: 32px;
  }

  .recruit-requirements__list {
    padding: 4px 22px;
  }

  .recruit-requirements__list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =========================
  ENTRY SECTION
========================= */

.entry-section {
  position: relative;
  padding: 92px 0 100px;
  background: #f2f2f2;
}

.entry-section__inner {
  position: relative;
  z-index: 1;
}

.entry-title {
  position: relative;
  margin: 0 0 76px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .06em;
  text-align: center;
}

.entry-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 58px;
  height: 2px;
  background: var(--lime);
  transform: translateX(-50%);
}

.entry-form-box {
  width: min(920px, 100%);
  margin-inline: auto;
  padding: 34px 42px 36px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(0, 117, 190, .08);
}

/* =========================
  CF7 FORM BASE
========================= */

.entry-form {
  margin: 0;
}

.entry-form p {
  margin: 0;
}

.entry-form__block+.entry-form__block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 24, 32, .12);
}

.entry-form__block-title {
  margin: 0 0 24px;
  padding-left: 10px;
  border-left: 4px solid var(--blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.entry-form__field {
  margin-bottom: 26px;
}

.entry-form__field:last-child {
  margin-bottom: 0;
}

.entry-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
}

.entry-form__required,
.entry-form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.entry-form__required {
  background: var(--blue);
}

.entry-form__optional {
  background: #777;
}

.entry-form__name-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* =========================
  CF7 INPUT
========================= */

.entry-form .wpcf7-form-control-wrap {
  display: block;
}

.entry-form input[type="text"],
.entry-form input[type="email"],
.entry-form input[type="tel"],
.entry-form input[type="file"],
.entry-form select,
.entry-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 18px;
  border: 1px solid #d9dee6;
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: #111820;
  font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.entry-form select {
  background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  appearance: none;
}

.entry-form textarea {
  min-height: 150px;
  resize: vertical;
}

.entry-form input:focus,
.entry-form select:focus,
.entry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 117, 190, .1);
}

.entry-form input::placeholder,
.entry-form textarea::placeholder {
  color: #a7adb7;
}

/* =========================
  RADIO / CHECK
========================= */

.entry-form__radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 52px;
  padding: 4px 0;
}

.entry-form .wpcf7-list-item {
  margin: 0;
}

.entry-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 700;
}

.entry-form input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

/* =========================
  HELP / TEXTAREA
========================= */

.entry-form__help {
  margin: -4px 0 10px;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
}

.entry-form__count {
  margin: 8px 0 0;
  color: #999;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

/* =========================
  FILE
========================= */

.entry-form__file-wrap {
  position: relative;
}

.entry-form input[type="file"] {
  padding: 16px;
  cursor: pointer;
}

.entry-form input[type="file"]::file-selector-button {
  margin-right: 16px;
  padding: 10px 18px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* =========================
  SUBMIT
========================= */

.entry-form .wpcf7-submit,
.entry-form__submit {
  position: relative;
  width: 100%;
  min-height: 64px;
  margin-top: 34px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 8px 16px rgba(18, 109, 232, .22);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.entry-form .wpcf7-submit:hover,
.entry-form__submit:hover {
  box-shadow: 0 14px 26px rgba(18, 109, 232, .3);
  transform: translateY(-3px);
}

.entry-form .wpcf7-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* CF7 spinner */
.entry-form .wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
}

/* =========================
  PRIVACY / RESPONSE
========================= */

.entry-form__privacy {
  position: relative;
  margin: 24px 0 0;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.entry-form__privacy::before {
  content: "🔒";
  margin-right: 8px;
}

.entry-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d93025;
  font-size: 12px;
  font-weight: 700;
}

.entry-form .wpcf7 form .wpcf7-response-output,
.entry-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.entry-form .wpcf7 form.sent .wpcf7-response-output,
.entry-form .wpcf7-form.sent .wpcf7-response-output {
  border-color: var(--blue);
  color: var(--blue);
}

.entry-form .wpcf7 form.invalid .wpcf7-response-output,
.entry-form .wpcf7-form.invalid .wpcf7-response-output {
  border-color: #d93025;
  color: #d93025;
}

/* =========================
  RESPONSIVE
========================= */

@media (max-width: 900px) {
  .recruit-hero {
    min-height: auto;
    padding: 100px 0 50px;
    background-position: right bottom;
    background-size: 115% auto;
  }

  .recruit-title {
    margin-bottom: 42px;
    font-size: 38px;
  }

  .recruit-hero__lead {
    font-size: 23px;
  }

  .recruit-message__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .recruit-message__heading h2 {
    font-size: 38px;
  }

  .recruit-message__text {
    font-size: 16px;
  }

  .entry-section {
    padding: 70px 0;
  }

  .entry-section::before {
    display: none;
  }

  .entry-title {
    margin-bottom: 56px;
    font-size: 32px;
  }

  .entry-form-box {
    padding: 28px 20px 30px;
  }

  .entry-form__name-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .entry-form__radio-list {
    gap: 18px 28px;
  }

  .entry-form .wpcf7-submit,
  .entry-form__submit {
    font-size: 17px;
  }
}


/* =========================
   CONTACT PAGE
========================= */

.contact-page {
  background: #f2f2f2;
  color: #111820;
}

/* =========================
   HERO
========================= */

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 82px 0 74px;
  background: #fff;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .96) 34%, rgba(255, 255, 255, .7) 62%, rgba(255, 255, 255, .18) 100%), radial-gradient(circle at 82% 42%, rgba(0, 117, 190, .12) 0 0, transparent 36%), url("../images/contact-fv.png") right center / auto 100% no-repeat;
}

.contact-hero__inner,
.contact-intro__inner,
.contact-form-section__inner {
  width: min(1110px, calc(100% - 48px));
  margin-inline: auto;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
}

.contact-hero__content {
  width: min(560px, 100%);
}

.contact-title,
.contact-section-title {
  position: relative;
  margin: 0 0 58px;
  color: var(--blue);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--lime);
}

.contact-section-title::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 58px;
  height: 2px;
  background: var(--lime);
}

.contact-hero__lead {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.7;
}

.contact-hero__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

/* =========================
   INTRO
========================= */

.contact-intro {
  padding: 46px 0;
  background: var(--blue);
  color: #fff;
}

.contact-intro__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.contact-intro__item {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.contact-intro__item span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-intro__item h2 {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
}

.contact-intro__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

/* =========================
   FORM
========================= */

.contact-form-section {
  position: relative;
  padding: 0 0 100px;
  background: #f2f2f2;
}

.contact-section-title {
  padding: 50px;
  background: var(--blue);
  color: #fff;
  font-size: 42px;
  letter-spacing: .06em;
  text-align: center;
}

.contact-section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-form-box {
  width: min(820px, 100%);
  margin-inline: auto;
  padding: 42px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(0, 117, 190, .08);
}

.contact-form p {
  margin: 0;
}

.contact-form__field {
  margin-bottom: 28px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 800;
}

.contact-form__required,
.contact-form__optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.contact-form__required {
  background: var(--blue);
}

.contact-form__optional {
  background: #777;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 18px;
  border: 1px solid #d9dee6;
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: #111820;
  font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: calc(100% - 22px) 50%, calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  appearance: none;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 117, 190, .1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a7adb7;
}

.contact-form__help {
  margin: -4px 0 10px;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
}

.contact-form .wpcf7-submit,
.contact-form__submit {
  width: 100%;
  min-height: 64px;
  margin-top: 12px;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 8px 16px rgba(18, 109, 232, .22);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}

.contact-form .wpcf7-submit:hover,
.contact-form__submit:hover {
  box-shadow: 0 14px 26px rgba(18, 109, 232, .3);
  transform: translateY(-3px);
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #d93025;
  font-size: 12px;
  font-weight: 700;
}

.contact-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact-hero {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .contact-hero::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .96) 52%, rgba(255, 255, 255, .72) 100%), url("../images/contact-fv.png") right bottom / 110% auto no-repeat;
  }

  .contact-title {
    margin-bottom: 42px;
    font-size: 38px;
  }

  .contact-hero__lead {
    font-size: 23px;
  }

  .contact-intro__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-section-title {
    margin-bottom: 0px;
    font-size: 24px;
  }

  .contact-form-section {
    padding: 70px 0;
  }

  .contact-form-box {
    padding: 28px 20px 30px;
  }

  .contact-form .wpcf7-submit,
  .contact-form__submit {
    font-size: 17px;
  }
}

/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.js-reveal,
.js-reveal-child {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(10px);
  transition:
    opacity .85s cubic-bezier(.16, 1, .3, 1),
    transform .85s cubic-bezier(.16, 1, .3, 1),
    filter .85s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform, filter;
}

.js-reveal.is-visible,
.js-reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* 左から出る */
.js-reveal--left {
  transform: translateX(-48px);
}

.js-reveal--left.is-visible {
  transform: translateX(0);
}

/* 右から出る */
.js-reveal--right {
  transform: translateX(48px);
}

.js-reveal--right.is-visible {
  transform: translateX(0);
}

/* 下から少し浮き上がる */
.js-reveal--up {
  transform: translateY(48px);
}

.js-reveal--up.is-visible {
  transform: translateY(0);
}

/* カード系：近未来っぽく光らせる */
.js-reveal-card {
  position: relative;
  overflow: hidden;
}

.js-reveal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, .08) 35%,
    rgba(223, 255, 0, .28) 48%,
    rgba(0, 113, 188, .28) 58%,
    transparent 72%
  );
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
  transition:
    opacity .35s ease,
    transform 1.1s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}

.js-reveal-card.is-visible::before {
  opacity: 1;
  transform: translateX(120%) skewX(-18deg);
}

.js-reveal-card > * {
  position: relative;
  z-index: 2;
}

/* セクションタイトル用 */
.section-title,
.news h2 {
  overflow: hidden;
}

.section-title::before,
.news h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 113, 188, .7),
    rgba(223, 255, 0, .9),
    transparent
  );
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity .75s ease,
    transform .9s cubic-bezier(.16, 1, .3, 1);
}

.section-title.is-visible::before,
.news h2.is-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

/* 遅延表示 */
.js-delay-1 {
  transition-delay: .08s;
}

.js-delay-2 {
  transition-delay: .16s;
}

.js-delay-3 {
  transition-delay: .24s;
}

.js-delay-4 {
  transition-delay: .32s;
}

.js-delay-5 {
  transition-delay: .40s;
}

/* FVは最初から表示されるので軽めに */
.fv__title,
.fv__lead,
.fv__text,
.fv .btn,
.fv__graphic {
  opacity: 0;
  animation: fvReveal .95s cubic-bezier(.16, 1, .3, 1) forwards;
}

.fv__lead {
  animation-delay: .12s;
}

.fv__text {
  animation-delay: .24s;
}

.fv .btn {
  animation-delay: .36s;
}

.fv__graphic {
  animation-delay: .22s;
}

@keyframes fvReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* スマホは少し控えめ */
@media (max-width: 900px) {
  .js-reveal,
  .js-reveal-child {
    transform: translateY(28px);
    filter: blur(6px);
  }

  .js-reveal--left,
  .js-reveal--right {
    transform: translateY(28px);
  }

  .js-reveal--left.is-visible,
  .js-reveal--right.is-visible {
    transform: translateY(0);
  }
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal-child,
  .js-reveal-card,
  .section-title,
  .news h2,
  .fv__title,
  .fv__lead,
  .fv__text,
  .fv .btn,
  .fv__graphic {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  .js-reveal-card::before,
  .section-title::before,
  .news h2::before {
    display: none;
  }
}

.sp {
	display: none;
}

@media (max-width: 767px) {
	.sp{
		display:inline-flex;
	}
	
	h3 .sp{
		display:block!important;
	}
}