:root {
  --acw-sec: 170px;
  --scale: min(calc(1vw / 14.4px), 1);
  --px: calc(1rem / 16);
  --menuBtnWidth: 400px;
    @media (max-width: 768px) {
    :root {
      --scale: 0.8;
      --scale-en: .5;
    }
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.upper {
  text-transform: uppercase;
}

.cap {
  text-transform: capitalize;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/*
  Reset
-----------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.9;
  opacity: 0;
  animation: bodyFadeIn 0.6s ease forwards;
}

@keyframes bodyFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#wpadminbar{
  /* display: none; */
  position: fixed;
}

/*
  Base
-----------------------------------------------------*/
*,
:before,
:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  height: 100%;
  color: var(--font_color);
  text-rendering: optimizeLegibility;
  font: 1em/2 "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  position: relative;
  /* padding-block:calc(123px * var(--scale)) ; */
}

@media screen and (max-width: 1210px) {
  body.logged-in {
    padding-block:calc(41 * var(--px))
  }
  body {
    padding-block:calc(55 * var(--px))
  }
}
/* body.is-drawerActive {
  overflow: hidden;
} */

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

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  color: inherit;
}

.cursor {
  cursor: pointer;
}

.wrap {
  width: 100%;
  /* max-width: 1400px; */
  margin-inline: auto;
  padding-inline: calc(20px * var(--scale));
}

/* =====================================================
  2.0 - Layout (l-)
===================================================== */
/*
  Header
-----------------------------------------------------*/
.l-header__logo {
  position: fixed;
  top: calc(20px * var(--scale));
  left: calc(20px * var(--scale));
  z-index: 100;
}

.l-header__logoLink {
  display: block;
}

.l-header__logo .custom-logo,
.l-header__logoImg {
  display: block;
  width: calc(280px * var(--scale));
  height: auto;
}

.l-header__menuBtn {
  position: fixed;
  bottom: calc(20px * var(--scale));
  right: 50%;
  width: min(var(--menuBtnWidth), calc(100% - 40px));
  transform: translateX(50%);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(12px * var(--scale));
  height: calc(50px * var(--scale));
  padding-inline: calc(20px * var(--scale));
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.l-header.is-dark .l-header__menuBtn {
  background: #141414;
}

.l-header__menuLabel {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
  letter-spacing: calc(-0.6px * var(--scale));
  color: #141414;
  transition: color 0.3s ease-in-out;
}

.l-header.is-dark .l-header__menuLabel {
  color: #fff;
}

.l-header__menuLabelText.-close {
  display: none;
}

.l-header__menuBtn.is-active .l-header__menuLabelText.-menu {
  display: none;
}

.l-header__menuBtn.is-active .l-header__menuLabelText.-close {
  display: inline;
}

.l-header__menuIcon {
  position: relative;
  display: block;
  width: calc(17px * var(--scale));
  height: calc(4px * var(--scale));
}

.l-header__menuIcon::before,
.l-header__menuIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #141414;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, bottom 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.l-header__menuIcon::before {
  top: 0;
}

.l-header__menuIcon::after {
  bottom: 0;
}

.l-header.is-dark .l-header__menuIcon::before,
.l-header.is-dark .l-header__menuIcon::after {
  background: #fff;
}

.l-header__menuBtn.is-active .l-header__menuIcon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.l-header__menuBtn.is-active .l-header__menuIcon::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/*
  Hero
-----------------------------------------------------*/
.l-hero {
  position: relative;
}

.l-hero__visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.l-hero__visualImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #141414;
  opacity: 0.3;
}

.l-hero__crystal {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 939;
  background-color: #4a4a4a;
  overflow: hidden;
}

.l-hero__crystalTexture {
  position: absolute;
  inset: -6%;
  background-image: url("../images/texture-crystal.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  animation: heroCrystalDrift 18s ease-in-out infinite;
}

@keyframes heroCrystalDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-3%, 2%) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .l-hero__crystalTexture {
    animation: none;
  }
}

.l-hero__copy {
  text-align: right;
  display: inline-block;
  position: relative;
  padding-inline: calc(20px * var(--scale));
  padding-block: calc(228px * var(--scale)) calc(300px * var(--scale));
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(100px * var(--scale));
  line-height: 1.2;
  letter-spacing: calc(-3px * var(--scale));
  color: #fff;
}

.l-hero__copyLine {
  display: block;
}

@media (max-width: 768px) {
  .l-hero__crystal {
    aspect-ratio: 4 / 5;
  }

  .l-hero__copy {
    padding-block: calc(80px * var(--scale)) calc(60px * var(--scale));
  }
}

/*
  Hero Scene1(反復するブランド情報ブロック + ジグザグ罫線)
-----------------------------------------------------*/
/*
  親要素1(要素1:リスト+要素2:見出し)と親要素2(要素3:ブランド+要素4:所在地)を
  列単位で交互配置。偶数列=親要素1、奇数列=親要素2とし、
  奇数列は縦方向にずらしてレンガ状のパターンにする。

  動き(8秒サイクルでループ)はassets/js/hero-scene1-motion.js(GSAP)で制御。
  実際のDOM高さ・列のgapを実測して移動距離を算出することで、
  CSS側での固定px指定によるズレを避けている。

  .l-heroScene1__trackは列一式(.l-heroScene1__col × 実数)を2セット複製し、
  translateXを0→-50%でループさせることで、要素全体が右から左へ
  途切れず自動で流れ続けるスクロールを実現している(Scene3のマーキーと同じ手法)。
-----------------------------------------------------*/
.l-heroScene1 {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  padding-block: calc(60px * var(--scale));
  transform-origin: 50% 50%;
}

.l-heroScene1__track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: calc(80px * var(--scale));
  animation: heroScene1Scroll 45s linear infinite;
}

.l-heroScene1__col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(130px * var(--scale));
  width: calc(300px * var(--scale));
}

.l-heroScene1__col.-offset {
  margin-top: calc(110px * var(--scale));
}

.l-heroScene1__group1,
.l-heroScene1__group2 {
  text-align: left;
}

.l-heroScene1__group1 {
  min-height: calc(170px * var(--scale));
}

.l-heroScene1__group2 {
  min-height: calc(160px * var(--scale));
}

.l-heroScene1__list {
  display: flex;
  flex-direction: column;
  gap: calc(2px * var(--scale));
  margin-bottom: calc(6px * var(--scale));
}

.l-heroScene1__list li {
  color: #fff;
  white-space: nowrap;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: calc(13px * var(--scale));
  line-height: 1.1;
}

.l-heroScene1__headlineText {
  position: relative;
  display: inline-block;
}

.l-heroScene1__headlineOutline,
.l-heroScene1__headlineFill {
  display: block;
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: calc(56px * var(--scale));
  line-height: 1;
  letter-spacing: calc(-1px * var(--scale));
  white-space: nowrap;
}

.l-heroScene1__headlineOutline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.l-heroScene1__headlineFill {
  position: absolute;
  inset: 0;
  color: #fff;
}

.l-heroScene1__brand {
  color: #fff;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: calc(40px * var(--scale));
  line-height: 1.15;
  letter-spacing: calc(-0.5px * var(--scale));
  white-space: nowrap;
  margin-bottom: calc(8px * var(--scale));
  text-align: right;
}

.l-heroScene1__brand span {
  display: block;
}

.l-heroScene1__location {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: calc(13px * var(--scale));
  line-height: 1.1;
  letter-spacing: calc(1px * var(--scale));
  opacity: 0.85;
  text-align: right;
  white-space: nowrap;
}

@keyframes heroScene1Scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .l-heroScene1__track {
    animation: none;
  }
}

.is-hidden {
  display: none !important;
}

/*
  Hero Scene2(詩的なコピーの単発レイアウト)
-----------------------------------------------------*/
.l-heroScene2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.l-heroScene2__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(60px * var(--scale));
  padding-inline: calc(175px * var(--scale));
}

.l-heroScene2__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(40px * var(--scale));
  width: 100%;
}

.l-heroScene2__el1 {
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: calc(32px * var(--scale));
  letter-spacing: calc(-0.5px * var(--scale));
  color: #fff;
}

.l-heroScene2__el2 {
  text-align: right;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: calc(32px * var(--scale));
  letter-spacing: calc(-0.5px * var(--scale));
  line-height: 1.4;
  color: #fff;
}

.l-heroScene2__el3 {
  max-width: calc(1500px * var(--scale));
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: calc(22px * var(--scale));
  line-height: 1.6;
  color: #fff;
}

@media (max-width: 768px) {
  .l-heroScene2__inner {
    padding-inline: calc(24px * var(--scale));
    gap: calc(32px * var(--scale));
  }

  .l-heroScene2__top {
    flex-direction: column;
    gap: calc(16px * var(--scale));
  }

  .l-heroScene2__el2 {
    text-align: left;
  }

  .l-heroScene2__el1,
  .l-heroScene2__el2 {
    font-size: calc(24px * var(--scale));
  }

  .l-heroScene2__el3 {
    font-size: calc(16px * var(--scale));
  }
}

/*
  Hero Scene3(反復するWE CONNECT.+コピー群)
-----------------------------------------------------*/
.l-heroScene3 {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: calc(80px * var(--scale));
}

.l-heroScene3__row {
  display: flex;
  align-items: flex-start;
  width: max-content;
  gap: calc(60px * var(--scale));
  padding-inline: calc(40px * var(--scale));
  animation: heroScene3Slide 30s linear infinite;
}

/*
  要素全体を右から左へ等速でスライドさせ続けるループ
  (グループを2つ複製済みのため-50%移動でシームレスに繋がる)
-----------------------------------------------------*/
@keyframes heroScene3Slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*
  グループ = 要素1(we connect) + 要素2(people, places, ideas and life.) +
  要素3(コピー文)を横並びに配置
-----------------------------------------------------*/
.l-heroScene3__group {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: flex-start;
  gap: calc(60px * var(--scale));
}

.l-heroScene3__el1 {
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: calc(46px * var(--scale));
  letter-spacing: calc(-1px * var(--scale));
  line-height: 1.15;
  color: #fff;
  white-space: nowrap;
}

.l-heroScene3__el1 span {
  display: block;
}

.l-heroScene3__el2 {
  width: calc(150px * var(--scale));
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: calc(19px * var(--scale));
  line-height: 1.35;
  color: #fff;
}

.l-heroScene3__el2 span {
  display: block;
}

.l-heroScene3__el3 {
  width: calc(430px * var(--scale));
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: calc(18px * var(--scale));
  line-height: 1.5;
  color: #fff;
}

@media (max-width: 768px) {
  .l-heroScene3 {
    padding-bottom: calc(40px * var(--scale));
  }

  .l-heroScene3__row {
    gap: calc(32px * var(--scale));
    padding-inline: calc(20px * var(--scale));
  }

  .l-heroScene3__group {
    gap: calc(24px * var(--scale));
  }

  .l-heroScene3__el1 {
    font-size: calc(30px * var(--scale));
  }

  .l-heroScene3__el2 {
    width: calc(110px * var(--scale));
    font-size: calc(15px * var(--scale));
  }

  .l-heroScene3__el3 {
    width: calc(260px * var(--scale));
    font-size: calc(14px * var(--scale));
  }
}

@media (prefers-reduced-motion: reduce) {
  .l-heroScene3__row {
    animation: none;
  }
}

@media (max-width: 768px) {
  .l-hero__visual {
    aspect-ratio: 4 / 5;
  }

  .l-heroScene1 {
    aspect-ratio: 4 / 5;
    padding-block: calc(32px * var(--scale));
  }

  .l-heroScene1__track {
    gap: calc(24px * var(--scale));
    padding-inline: calc(20px * var(--scale));
  }

  .l-heroScene1__col {
    gap: calc(70px * var(--scale));
    width: calc(190px * var(--scale));
  }

  .l-heroScene1__col.-offset {
    margin-top: calc(60px * var(--scale));
  }
}


/* =====================================================
  3.0 - Component (c-)
===================================================== */
/*
  Drawer Menu
-----------------------------------------------------*/
.c-drawer {
  position: fixed;
  bottom: calc(70px * var(--scale));
  right: 50%;
  z-index: 250;
  width: min(var(--menuBtnWidth), calc(100% - 40px));
  max-height: calc(100vh - calc(102px * var(--scale)));
  overflow-y: auto;
  padding: calc(20px * var(--scale));
  background:#fff;
  opacity: 0;
  border-bottom: 1px solid;
  visibility: hidden;
  transform: translateX(50%) translateY(calc(8px * var(--scale)));
  transform-origin: bottom center;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.c-drawer.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.l-header.is-dark .c-drawer {
  background: #141414;
  color: #fff;
}

.c-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: calc(10px * var(--scale));
}

.c-drawer__navLink {
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: calc(20px * var(--scale));
  display: block;
}

/*
  Drawer Search
-----------------------------------------------------*/
.c-drawer__search {
  display: flex;
  align-items: center;
  gap: calc(10px * var(--scale));
  margin-top: calc(20px * var(--scale));
  padding-top: calc(20px * var(--scale));
  border-top: 1px solid currentColor;
}

.c-drawer__searchLabel {
  flex: 1;
  display: block;
  min-width: 0;
}

.c-drawer__searchInput {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(0.875rem, calc(1rem * var(--scale)), 1rem);
}

.c-drawer__searchInput::placeholder {
  color: currentColor;
  opacity: 0.5;
}

.c-drawer__searchSubmit {
  flex-shrink: 0;
  width: calc(20px * var(--scale));
  height: calc(20px * var(--scale));
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.c-drawer__searchIcon {
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask-image: url("../images/icon-search.svg");
  mask-image: url("../images/icon-search.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/*
  Arrow icon
-----------------------------------------------------*/
.c-arrow {
  display: inline-block;
  flex-shrink: 0;
  width: calc(28px * var(--scale));
  height: calc(24px * var(--scale));
  position: relative;
  overflow: hidden;
}

/*
  ::beforeが現在の矢印、::afterが次に入れ替わる矢印。
  hover時に::beforeを矢印の指す方向へ抜けさせ、::afterを反対側から入れる。
-----------------------------------------------------*/
.c-arrow::before,
.c-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #141414;
  -webkit-mask-image: url("../images/icon-arrow-right.svg");
  mask-image: url("../images/icon-arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.35s ease;
}

.c-arrow::after {
  transform: translateX(-150%);
}

.c-arrow.-small {
  width: calc(20px * var(--scale));
  height: calc(18px * var(--scale));
}

.c-arrow.-diagonal {
  transform: rotate(-45deg);
}

.c-arrow.-white::before,
.c-arrow.-white::after {
  background-color: #fff;
}

/*
  See All link
-----------------------------------------------------*/
.c-seeAll {
  display: inline-flex;
  align-items: center;
  gap: calc(16px * var(--scale));
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(34px * var(--scale));
  letter-spacing: calc(-1px * var(--scale));
  color: #141414;
}

/*
  リンクhover演出(矢印の入れ替え＋テキストのピンクハイライト)
  対象: service / news / company / recruitの各リンク。
  topicsセクションは独自のhover演出があるため対象外。
-----------------------------------------------------*/
@media (min-width: 769px) {
  .l-service__link:hover .c-arrow::before,
  .l-service__subLink:hover .c-arrow::before,
  .l-news__link:hover .c-arrow::before,
  .l-news__seeAll:hover .c-arrow::before,
  .l-company__col:hover .c-arrow::before,
  .l-company__seeAll .c-seeAll:hover .c-arrow::before,
  .l-recruit__card:hover .c-arrow::before {
    transform: translateX(150%);
  }

  .l-service__link:hover .c-arrow::after,
  .l-service__subLink:hover .c-arrow::after,
  .l-news__link:hover .c-arrow::after,
  .l-news__seeAll:hover .c-arrow::after,
  .l-company__col:hover .c-arrow::after,
  .l-company__seeAll .c-seeAll:hover .c-arrow::after,
  .l-recruit__card:hover .c-arrow::after {
    transform: translateX(0);
  }



  .l-service__hover,
  .l-service__sub-hover,
  .l-news__link,
  .l-footer__navLink {
    transition: 0.3s ease;
  }

  .l-service__link:hover .l-service__hover,
  .l-service__subLink:hover .l-service__sub-hover,
  .l-news__link:hover,
  .l-footer__navLink:hover{
    background-color: #d7f9ae;
  }

  .l-news__flex{
    transition: 0.3s ease;
  }

  .l-news__link:hover .l-news__flex,
  .l-service__link:hover .l-service__hover{
    transform: translateX(10px);
  }
}

/* =====================================================
  4.0 - Page (p-)
===================================================== */
.l-divider {
  border-top: 1px solid rgba(20, 20, 20, 0.15);
}

/*
  Service
-----------------------------------------------------*/
.l-service {
  padding-block: calc(160px * var(--scale));
}

.l-service__heading {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(100px * var(--scale));
  letter-spacing: calc(-3px * var(--scale));
  color: #141414;
  margin-bottom: calc(60px * var(--scale));
}

.l-service__list {
  /* display: flex;
  flex-direction: column;
  gap: calc(100px * var(--scale)); */
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  row-gap: 4rem
}

.l-service__item {
  grid-column: 2 / 6;
}

.l-service__item:nth-child(even){
  grid-column: 1 / 5;

}



.l-service__link {
  display: block;
}

.l-service__image {
  /* width: calc(1116px * var(--scale));
  max-width: 100%;
  aspect-ratio: 1116 / 690; */
  overflow: hidden;
}

.l-service__imageImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-service__caption {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: calc(30px * var(--scale));
  /* margin-top: calc(24px * var(--scale)); */
}

.l-service__captionJa {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(30px * var(--scale));
  color: #141414;
}

.l-service__captionEn {
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: calc(24px * var(--scale));
  letter-spacing: calc(-0.72px * var(--scale));
  color: #141414;
  /* padding-left: calc(30px * var(--scale)); */
}

.l-service__subList {
  margin-top: calc(20px * var(--scale));
}

.l-service__subLink {
  display: flex;
  align-items: center;
  gap: calc(12px * var(--scale));
  padding-block: calc(12px * var(--scale));
  padding-left: calc(20px * var(--scale));
  position: relative;
}

.l-service__subLink:before{
  content: "";
  width: 10px;
  height: 1px;
  background-color: #141414;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}


.l-service__subEn {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: calc(18px * var(--scale));
  color: #141414;
}

.l-service__subJa {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16px * var(--scale));
  color: #141414;
  padding-left: calc(12px * var(--scale));
}

.l-service .c-arrow{
  transform: rotate(315deg);
}



@media (max-width: 768px) {
  .l-service__item {
    margin-left: 0;
  }

  .l-service__image {
    width: 100%;
  }
}

/*
  Topics / News (shared head)
-----------------------------------------------------*/
.l-topics,
.l-news {
  padding-block: calc(290px * var(--scale));
}

.l-topics__head,
.l-news__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: calc(60px * var(--scale));
}

.l-topics__heading,
.l-news__heading {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(100px * var(--scale));
  letter-spacing: calc(-3px * var(--scale));
  color: #141414;
  line-height: 1;
}

.l-topics__list {
  display: flex;
  gap: calc(20px * var(--scale));
}

.l-topics__item {
  flex: 1 1 0%;
  min-width: 0;
}

.l-topics__image {
  aspect-ratio: 264 / 368;
  overflow: hidden;
  background-color: #eee;
}

.l-topics__image .wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-topics__date {
  font-family: "Inter", sans-serif;
  font-size: calc(13px * var(--scale));
  color: #141414;
  margin-top: calc(20px * var(--scale));
}

.l-topics__cat {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(13px * var(--scale));
  color: #141414;
}

.l-topics__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(14px * var(--scale));
  color: #141414;
  margin-top: calc(8px * var(--scale));
}

.l-topics__item .c-arrow {
  margin-top: calc(16px * var(--scale));
}

.l-topics__date,
.l-topics__cat,
.l-topics__title,
.l-topics__item .c-arrow {
  transition: opacity 0.3s ease-in-out;
}

.l-topics .c-arrow{
  display: block;
  margin-left: auto;
}

/*
  topics見出し横の「see all」矢印のみhoverアクションを付与
  (一覧側の記事hover演出とは独立)
-----------------------------------------------------*/
@media (min-width: 769px) {
  .l-topics__head .c-seeAll:hover .c-arrow::before {
    transform: translateX(150%);
  }

  .l-topics__head .c-seeAll:hover .c-arrow::after {
    transform: translateX(0);
  }
}


/*
  Topics hover（PCのみ）
  hoverした記事のサムネイルが横に広がり、他記事は幅のみ収縮してテキストが隠れる
-----------------------------------------------------*/
@media (min-width: 769px) {
  .l-topics__item {
    transition: flex-grow 0.5s ease-in-out;
  }

  .l-topics__item:hover {
    flex-grow: 3;
  }

  /* hoverで幅が変わっても高さは一定に保つ */
  .l-topics__image {
    height: calc(368px * var(--scale));
    aspect-ratio: auto;
  }

  .l-topics__list:hover .l-topics__item:not(:hover) .l-topics__date,
  .l-topics__list:hover .l-topics__item:not(:hover) .l-topics__cat,
  .l-topics__list:hover .l-topics__item:not(:hover) .l-topics__title,
  .l-topics__list:hover .l-topics__item:not(:hover) .c-arrow {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .l-topics__list {
    flex-wrap: wrap;
  }

  .l-topics__item {
    flex: 0 0 calc((100% - (20px * var(--scale))) / 2);
  }
}

/*
  News
-----------------------------------------------------*/
.l-news__head {
  flex-direction: column;
  align-items: flex-start;
  gap: calc(24px * var(--scale));
  grid-column: 1 / 2;
}

.l-news__grid{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.l-news__list {
  grid-column: 3 / 6;
  border-top: 1px solid rgba(20, 20, 20, 0.15);
}

.l-news__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: calc(20px * var(--scale));
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
}

.l-news__flex{
  display: flex;
  flex-direction: column;
}

.l-news__inner-flex{
  display: flex;
  gap: calc(20px * var(--scale));
}

.l-news__date,
.l-news__cat {
  font-family: "Inter", sans-serif;
  font-size: calc(13px * var(--scale));
  color: #141414;
  flex-shrink: 0;
}

.l-news__title {
  font-family: "Inter", sans-serif;
  font-size: calc(14px * var(--scale));
  color: #141414;
  font-weight: 600

}

@media (max-width: 768px) {
  .l-news__link {
    flex-wrap: wrap;
    row-gap: calc(8px * var(--scale));
  }

  .l-news__title {
    width: 100%;
    order: 3;
  }

  .l-news__item .c-arrow {
    order: 4;
    margin-left: auto;
  }
}

/*
  Company
-----------------------------------------------------*/
.l-company {
  padding-block: calc(290px * var(--scale));
}

.l-company__heading {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(100px * var(--scale));
  letter-spacing: calc(-3px * var(--scale));
  color: #141414;
  margin-bottom: calc(60px * var(--scale));
}

.l-company__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.l-company__col {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid #fff;
}

.l-company__colImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.l-company__colImg--video {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.l-company__col.is-videoActive .l-company__colImg--video {
  opacity: 1;
}

@media (min-width: 769px) {
  .l-company__col:hover .l-company__colImg {
    transform: scale(1.08);
  }
}

.l-company__col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #141414;
  opacity: 0.6;
}

.l-company__colLabel {
  position: absolute;
  top: calc(20px * var(--scale));
  left: calc(20px * var(--scale));
  z-index: 1;
  display: flex;
  align-items: center;
  gap: calc(10px * var(--scale));
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(20px * var(--scale));
  color: #fff;
}

.l-company__colBullet {
  width: calc(18px * var(--scale));
  height: calc(18px * var(--scale));
  background: #fff;
}

.l-company__col .c-arrow {
  position: absolute;
  z-index: 1;
  right: calc(20px * var(--scale));
  bottom: calc(20px * var(--scale));
}

.l-company__seeAll {
  display: flex;
  justify-content: center;
  padding-block: calc(60px * var(--scale));
}

@media (max-width: 768px) {
  .l-company__row {
    grid-template-columns: 1fr;
  }
}

/*
  Recruit
-----------------------------------------------------*/
.l-recruit {
  position: relative;
  padding-block: calc(140px * var(--scale)) calc(80px * var(--scale));
  overflow: hidden;
}

.l-recruit__visual {
  position: absolute;
  inset: 0;
}

.l-recruit__visualImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-recruit__texture {
  position: absolute;
  inset: 0;
  background-image: url("../images/texture-crystal.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

.l-recruit__inner {
  position: relative;
}

.l-recruit__heading {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(100px * var(--scale));
  letter-spacing: calc(-3px * var(--scale));
  color: #fff;
  margin-bottom: calc(40px * var(--scale));
  max-width: calc(832px * var(--scale));
  margin: 0 auto calc(-16px * var(--scale));
  line-height: 1;
}

.l-recruit__card {
  position: relative;
  display: block;
  background: #fff;
  max-width: calc(832px * var(--scale));
  padding: calc(40px * var(--scale));
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
}

.l-recruit__photo {
  position: relative;
  aspect-ratio: 672 / 475;
  overflow: hidden;
}

.l-recruit__photoImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-recruit__photoImg--video {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.l-recruit__photo.is-videoActive .l-recruit__photoImg--video {
  opacity: 1;
}

.c-cursorCircle {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100px * var(--scale));
  height: calc(100px * var(--scale));
  border-radius: 50%;
  background: rgba(215, 249, 174, 0.8);
  font-family: "Albert Sans", sans-serif;
  font-size: calc(16px * var(--scale));
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.js-cursorArea.is-cursorActive {
  cursor: none;
}

.js-cursorArea.is-cursorActive .c-cursorCircle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  .c-cursorCircle {
    display: none;
  }
}

.l-recruit__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(20px * var(--scale));
  margin-top: calc(24px * var(--scale));
}

.l-recruit__text {
  font-family: "Inter", sans-serif;
  font-size: calc(14px * var(--scale));
  line-height: 1.5;
  color: #141414;
}

@media (max-width: 768px) {
  .l-recruit__foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*
  Footer
-----------------------------------------------------*/
.l-footer {
  background: #fff;
  padding-top: calc(290px * var(--scale));
}

.l-footer__contactLink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(210px * var(--scale));
  border: 1px solid #141414;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(60px * var(--scale));
  color: #141414;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.l-footer__contactLink:hover {
  background-color: #141414;
  color: #fff;
}

.l-footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: calc(80px * var(--scale));
}

.l-footer__navList {
  display: flex;
  gap: calc(40px * var(--scale));
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(20px * var(--scale));
  color: #141414;
}

.l-footer__navContact {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: calc(20px * var(--scale));
  color: #141414;
}

.l-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: calc(20px * var(--scale));
  margin-top: calc(120px * var(--scale));
}

.l-footer__logo {
  width: calc(370px * var(--scale));
  height: auto;
}

.l-footer__address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16px * var(--scale));
  line-height: 1.5;
  color: #141414;
  text-align: right;
}

.l-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(20px * var(--scale));
  margin-top: calc(60px * var(--scale));
  padding-block: calc(30px * var(--scale));
  border-top: 1px solid rgba(20, 20, 20, 0.15);
}

.l-footer__copyright,
.l-footer__privacy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16px * var(--scale));
  color: #141414;
}

@media (max-width: 768px) {
  .l-footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(20px * var(--scale));
  }

  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .l-footer__address {
    text-align: left;
  }

  .l-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
