@charset "UTF-8";
/* === PC、SP切替 === */
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc-none {
    display: none;
  }
}
/* === 基本設定 === */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width:768px) {
  body {
    font-size: 1.6rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === Reset CSS === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  vertical-align: middle;
}

input[type=checkbox] {
  appearance: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

button {
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}
@media screen and (min-width:768px) {
  html {
    scroll-padding-top: 82px;
  }
}

/* === テキストアニメーション === */
.title-animation {
  position: relative;
  display: inline-block;
  z-index: 0;
  overflow: hidden;
}
.title-animation::before {
  content: "";
  position: absolute;
  inset: 12% -0.15em 12%;
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-110%);
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}
.title-animation.is-show::before {
  transform: translateX(110%);
}
.title-animation-text {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.25s linear;
  transition-delay: 0.35s;
}
.title-animation.is-show .title-animation-text {
  opacity: 1;
}

/* === テキスト下線アニメーション === */
.section-divider {
  position: relative;
  height: 1px;
  margin: 4px 0;
}
.section-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
}
.section-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.section-divider.is-active::after {
  transform: scaleX(1);
}

/* === header === */
:root {
  --header-height: 64px;
}

@media screen and (min-width:768px) {
  :root {
    --header-height: 82px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: #000000;
}
.header__inner {
  position: relative;
  height: 100%;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width:768px) {
  .header__inner {
    justify-content: flex-end;
  }
}
.header__logo {
  max-width: 120px;
  flex: 0 0 auto;
}
@media screen and (max-width:767px) {
  .header__logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
  }
}
@media screen and (min-width:768px) {
  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 180px;
  }
}
.header__logo img {
  width: 100%;
  display: block;
  height: auto;
}
.header__toggle {
  justify-self: end;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}
@media screen and (min-width:768px) {
  .header__toggle {
    width: 56px;
    height: 56px;
  }
}
.header .hamburger {
  position: relative;
  width: 36px;
  height: 14px;
}
.header .hamburger::before, .header .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.2s ease;
}
@media screen and (min-width:768px) {
  .header .hamburger::before, .header .hamburger::after {
    height: 2px;
  }
}
.header .hamburger::before {
  top: 2px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .header .hamburger::before {
    top: 0;
  }
}
.header .hamburger::after {
  top: 10px;
  width: 70%;
}
@media screen and (min-width:768px) {
  .header .hamburger::after {
    top: 12px;
  }
}
.header__overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  height: 100%;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width:768px) {
  .header__overlay {
    width: 40vw;
  }
}
.header.is-open .header__overlay {
  opacity: 1;
  pointer-events: auto;
}
.header__overlay-inner {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -15%);
  width: 70%;
}
@media screen and (min-width:768px) {
  .header__overlay-inner {
    width: min(340px, 80vw);
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.header__nav-list li {
  border-bottom: 1px solid #707070;
}
.header__nav-link {
  display: block;
  padding: 1.4rem 0;
  color: #ffffff;
  letter-spacing: 0.08em;
}
.header__nav-link:hover {
  opacity: 0.8;
}
.header__close {
  position: fixed;
  top: 10px;
  right: 0px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media screen and (min-width:768px) {
  .header__close {
    width: 56px;
    height: 56px;
    top: 15px;
    right: 19px;
  }
}
.header__close-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
}
.header__close-icon::before, .header__close-icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.9);
  transform-origin: center;
}
@media screen and (min-width:768px) {
  .header__close-icon::before, .header__close-icon::after {
    height: 2px;
  }
}
.header__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.header__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
.header.is-open .header__close {
  opacity: 1;
  pointer-events: auto;
}

/* === footer === */
.footer {
  border-top: 1px solid #000000;
}
.footer__inner {
  color: #ffffff;
  width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
}
@media screen and (min-width:768px) {
  .footer__inner {
    max-width: 1140px;
    padding: 1.5rem 0;
  }
}
.footer__logo {
  max-width: 130px;
  margin: 0 auto 1rem;
}
@media screen and (min-width:768px) {
  .footer__logo {
    max-width: 160px;
    margin: 0 0 1rem 0;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__row {
  font-size: 1.2rem;
}
@media screen and (max-width:767px) {
  .footer__row {
    text-align: center;
  }
  .footer__row div + div {
    padding: 0.5rem;
  }
}
@media screen and (min-width:768px) {
  .footer__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* === 下層ページ header/footer === */
.is-page .header {
  background-color: #ffffff;
}
.is-page .header .hamburger::before, .is-page .header .hamburger::after {
  background: rgba(0, 0, 0, 0.9);
}
.is-page .footer__inner {
  color: #000000;
}

/* =======================================
* トップページ
* ===================================== */
.is-home {
  background: #000000;
}

/* === メインビジュアル === */
.hero {
  color: #ffffff;
  position: relative;
  min-height: calc(100svh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__text {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: min(92%, 1100px);
}
.hero__catch {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
@media screen and (min-width:768px) {
  .hero__catch {
    font-size: clamp(54px, 54px + 38 * (100vw - 768px) / 1152, 92px);
  }
}
.hero__catch span {
  margin: 0 0.2em;
  vertical-align: bottom;
}
.hero__lead {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (min-width:768px) {
  .hero__lead {
    font-size: 1.8rem;
  }
}
.hero .hero__post-link {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: #000000;
  padding: 1.4rem;
  z-index: 2;
  background: url("../image/hero__postlink_bg.png") center/cover;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .hero .hero__post-link {
    max-width: 460px;
    border-top-right-radius: 1.5rem;
    padding: 2rem;
  }
}
@media screen and (min-width:768px) {
  .hero .hero__post-link:hover .hero__post-link-arrow {
    transform: translateX(6px);
  }
}
.hero .hero__post-link::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -80%;
  width: 55%;
  height: 160%;
  transform: rotate(6deg);
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 45%, rgba(255, 255, 255, 0) 90%);
  mix-blend-mode: screen;
  transition: opacity 0.15s ease;
}
.hero .hero__post-link:hover::before {
  opacity: 1;
  animation: heroShine 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.hero .hero__post-link:focus-visible::before {
  opacity: 1;
  animation: heroShine 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes heroShine {
  0% {
    left: -80%;
  }
  100% {
    left: 140%;
  }
}
.hero .hero__post-link-title {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  font-size: 1.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}
@media screen and (min-width:768px) {
  .hero .hero__post-link-title {
    font-size: 1.5rem;
    -webkit-line-clamp: 1;
  }
}
.hero .hero__post-link-arrow {
  position: relative;
  z-index: 1;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url("../image/icon_arrow_bk.svg") no-repeat center/contain;
  transition: transform 0.2s ease;
}
.hero__scroll {
  position: absolute;
  right: 50%;
  bottom: 30%;
  writing-mode: vertical-rl;
  z-index: 2;
  font-family: "Roboto Condensed", sans-serif;
}
@media screen and (min-width:768px) {
  .hero__scroll {
    bottom: 20%;
  }
}
.hero__scroll::before {
  animation: scroll 2s infinite;
  background-color: #ffffff;
  bottom: -90px;
  content: "";
  height: 75px;
  left: -2px;
  right: 0;
  margin: auto;
  position: absolute;
  width: 1px;
  z-index: 2;
}
.hero__scroll::after {
  background-color: #707070;
  bottom: -90px;
  content: "";
  height: 75px;
  left: -2px;
  right: 0;
  margin: auto;
  position: absolute;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* === リード === */
.lead {
  position: relative;
  overflow: hidden;
}
.lead__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lead__bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.lead__inner {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  line-height: 2;
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (min-width:768px) {
  .lead__inner {
    max-width: 1140px;
    padding: 7rem 0;
  }
}
.lead__title {
  margin-bottom: 1.5rem;
}
@media screen and (min-width:768px) {
  .lead__title {
    margin-bottom: 3rem;
  }
}
.lead__title-img {
  margin: 0 auto -1.8rem;
}
@media screen and (min-width:768px) {
  .lead__title-img {
    width: 736px;
    max-width: 90%;
    margin: 0 auto -3.5rem;
  }
}
.lead__title-img img {
  width: 100%;
}
.lead__title .title-animation {
  font-size: 1.8rem;
}
@media screen and (min-width:768px) {
  .lead__title .title-animation {
    font-size: 2.8rem;
  }
}
.lead__text--emphasis {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width:768px) {
  .lead__text--emphasis {
    font-size: 2rem;
  }
}
.lead__text + .lead__text {
  margin-top: 1rem;
}
@media screen and (min-width:768px) {
  .lead__text + .lead__text {
    margin-top: 1.5rem;
  }
}

/* === 事業案内 === */
.service {
  color: #ffffff;
}
@media screen and (max-width:767px) {
  .service {
    overflow: hidden;
  }
}
.service__hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: center/cover url(../image/service_bg.webp);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width:768px) {
  .service__hero {
    background-attachment: fixed;
    height: clamp(300px, 22vw, 420px);
  }
}
.service__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  z-index: 1;
}
.service__title {
  position: relative;
  z-index: 2;
  text-align: center;
}
.service__title .service__title-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .service__title .service__title-en {
    font-size: clamp(2.4rem, 6vw, 9rem);
  }
}
.service__title .service__title-jp {
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  .service__title .service__title-jp {
    font-size: 1.8rem;
  }
}
.service {
  /* コンテンツ */
}
.service__section {
  width: 90%;
  margin: 0 auto;
  padding: 6rem 0 4rem;
}
@media screen and (min-width:768px) {
  .service__section {
    max-width: 1140px;
    padding: 9.5rem 0 6rem;
  }
}
.service__section-bg {
  position: relative;
  padding-bottom: 4rem;
  z-index: 1;
}
.service__section-bg::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -16%;
  left: initial;
  width: 72%;
  height: 278px;
  background: url("../image/service_01_bg_upper.webp") no-repeat center/contain;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .service__section-bg::before {
    top: -28%;
    right: -7%;
    width: 45%;
    height: 580px;
  }
}
.service__section-lead {
  position: relative;
}
@media screen and (min-width:768px) {
  .service__section-lead {
    width: 67%;
  }
}
.service__section--system .service__section-lead::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -36px;
  width: 320px;
  height: 194px;
  background: url("../image/service_01.png") no-repeat center/contain;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .service__section--system .service__section-lead::before {
    width: 350px;
    height: 235px;
  }
}
.service__section--showcase .service__section-bg::before {
  content: "";
  position: absolute;
  top: -33px;
  right: -100px;
  left: initial;
  width: 80%;
  height: 174px;
  background: url("../image/service_02_bg.png") no-repeat center/contain;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .service__section--showcase .service__section-bg::before {
    top: -12%;
    right: -13%;
    width: 50%;
    height: 400px;
  }
}
.service__section--showcase .service__section-lead::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -36px;
  width: 320px;
  height: 194px;
  background: url("../image/service_02.png") no-repeat center/contain;
  z-index: -1;
}
@media screen and (min-width:768px) {
  .service__section--showcase .service__section-lead::before {
    width: 350px;
    height: 235px;
  }
}
.service__section-head {
  margin-bottom: 2rem;
}
.service__section-head-en {
  color: #ffc900;
  font-size: 2.6rem;
}
@media screen and (min-width:768px) {
  .service__section-head-en {
    font-size: 3.2rem;
  }
}
.service__section-head-jp {
  font-size: 1.4rem;
}
@media screen and (min-width:768px) {
  .service__section-head-jp {
    margin-left: 1rem;
    font-size: 1.6rem;
  }
}
.service__section-catch {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width:768px) {
  .service__section-catch {
    font-size: 1.8rem;
  }
}
.service__section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}
.service__section-title-wrap {
  position: relative;
  border-bottom: 1px solid #707070;
  margin-bottom: 4rem;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .service__section-title-wrap {
    margin-bottom: 5rem;
  }
}
.service__section-title-en {
  font-size: 2rem;
  margin-right: 0.8rem;
}
@media screen and (min-width:768px) {
  .service__section-title-en {
    font-size: 2.6rem;
  }
}
.service__section-title-jp {
  font-size: 1.3rem;
}
@media screen and (min-width:768px) {
  .service__section-title-jp {
    font-size: 1.5rem;
  }
}
.service__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #ffc900;
  transition: width 0.6s ease-out;
}
.service__section-title.is-active::after {
  width: 100%;
}
.service__cards {
  position: relative;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .service__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.service__card {
  padding: 2rem;
  border-radius: 0.8rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%), #000000;
}
.service__card-head {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.service__card-img {
  width: 60px;
  height: 50px;
}
@media screen and (min-width:768px) {
  .service__card-img {
    width: 72px;
    height: 62px;
  }
}
.service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__card-title {
  font-size: 1.6rem;
}
@media screen and (min-width:768px) {
  .service__card-title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width:768px) {
  .service__card-text {
    font-size: 1.5rem;
  }
}
.service__case {
  position: relative;
  z-index: 1;
  margin-bottom: 5rem;
}
@media screen and (min-width:768px) {
  .service__case::before {
    content: "";
    position: absolute;
    top: -10%;
    right: initial;
    left: -30%;
    width: 45%;
    height: 580px;
    background: url("../image/service_01_bg_lower.webp") no-repeat center/contain;
    z-index: -1;
  }
}
.service__case-slider {
  position: relative;
  margin-right: calc(50% - 50vw);
}
.service__case-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 24px;
  padding-bottom: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.service__case-slider-track::-webkit-scrollbar {
  display: none;
}
.service__case-card {
  scroll-snap-align: start;
  padding: 1.5rem;
  border: 1px solid #707070;
  background: #000000;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service__case-card-title {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.service__case-card-meta {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.service__case-card-text {
  margin-top: auto;
  padding: 1rem;
  border-radius: 0.8rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%), #000000;
}
@media screen and (min-width:768px) {
  .service__case-card-text {
    font-size: 1.5rem;
  }
}
.service__case-slider-nav {
  position: absolute;
  right: 0;
  bottom: -40px;
  display: flex;
  gap: 16px;
}
@media screen and (min-width:768px) {
  .service__case-slider-nav {
    right: 50px;
  }
}
.service__case-slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #707070;
  background: #000000;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width:768px) {
  .service__case-slider-btn--prev:hover img {
    transform: translateX(-4px);
    transition: transform 0.2s ease;
  }
}
@media screen and (min-width:768px) {
  .service__case-slider-btn--next:hover img {
    transform: translateX(4px);
    transition: transform 0.2s ease;
  }
}
.service__case-slider-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.service__lineup {
  position: relative;
  margin-bottom: 4rem;
  --media-h: 210px;
  --overlap: 0px;
}
@media screen and (min-width:768px) {
  .service__lineup {
    --media-h: 288px;
    margin-bottom: 11rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5rem;
  }
}
@media screen and (min-width:768px) {
  .service__lineup::before {
    content: "";
    position: absolute;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    top: calc(var(--media-h) - var(--overlap));
    bottom: -7rem;
    background: url("../image/service_lineup_bg.png") no-repeat center/cover;
    pointer-events: none;
    z-index: 0;
  }
}
.service__lineup > * {
  position: relative;
  z-index: 1;
}
.service__lineup-card {
  background: #000000;
  border-radius: 0.8rem;
}
@media screen and (max-width:767px) {
  .service__lineup-card:first-of-type {
    margin-bottom: 3rem;
  }
}
.service__lineup-media {
  position: relative;
  height: var(--media-h);
  overflow: hidden;
  border-radius: 0.8rem 0.8rem 0 0;
}
.service__lineup-track {
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.service__lineup-track::-webkit-scrollbar {
  display: none;
}
.service__lineup-slide {
  height: 100%;
  scroll-snap-align: start;
}
.service__lineup-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.service__lineup-navs {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.service__lineup-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service__lineup-nav img {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.service__lineup-nav:hover img {
  transform: translateX(2px);
}
.service__lineup-nav--prev:hover img {
  transform: translateX(-2px);
}
.service__lineup-body {
  padding: 2rem;
}
@media screen and (max-width:767px) {
  .service__lineup-body {
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 100%), #000000;
  }
}
.service__lineup-title {
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.6rem;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .service__lineup-title {
    padding-left: 18px;
    font-size: 1.8rem;
  }
}
.service__lineup-title::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -4px;
  width: 45px;
  height: 28px;
  background: #f0bb35;
  clip-path: polygon(100% 16%, 0 73%, 46% 100%);
  z-index: -1;
}
@media screen and (min-width:768px) {
  .service__lineup-title::before {
    left: -6px;
    top: -4px;
  }
}
@media screen and (min-width:768px) {
  .service__lineup-title {
    font-size: 1.6rem;
  }
}
.service__lineup-card--lexus .service__lineup-title {
  position: relative;
  font-size: 1.8rem;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .service__lineup-card--lexus .service__lineup-title {
    padding-left: 18px;
    font-size: 1.8rem;
  }
}
.service__lineup-card--lexus .service__lineup-title::before {
  content: "";
  position: absolute;
  left: -16px;
  top: -4px;
  width: 45px;
  height: 28px;
  background: #99896e;
  clip-path: polygon(100% 16%, 0 73%, 46% 100%);
  z-index: -1;
}
@media screen and (min-width:768px) {
  .service__lineup-card--lexus .service__lineup-title::before {
    left: -6px;
    top: -4px;
  }
}
.service__lineup-text {
  margin-bottom: 1.5rem;
}
.service__lineup-spec {
  font-size: 1.3rem;
  border-left: 2px solid #ffffff;
  padding-left: 10px;
  opacity: 0.8;
}
@media screen and (min-width:768px) {
  .service__lineup-spec {
    font-size: 1.4rem;
  }
}
.service__lineup-row {
  padding: 0.4rem 0;
}
@media screen and (min-width:768px) {
  .service__lineup-row {
    padding: 0.2rem 0;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
  }
}
@media screen and (min-width:768px) {
  .service__guidelines-body {
    gap: 5rem;
    display: flex;
    align-items: flex-start;
    justify-content: initial;
  }
}
.service__guidelines-table {
  flex: 1;
  border-collapse: collapse;
}
.service__guidelines-table thead th {
  padding-right: 0.5rem;
  text-align: left;
}
.service__guidelines-table thead th:last-child {
  padding-right: 0;
}
@media screen and (min-width:768px) {
  .service__guidelines-table thead th {
    padding-right: 1rem;
  }
}
@media screen and (max-width:767px) {
  .service__guidelines-table {
    margin-bottom: 1.5rem;
  }
}
.service__guidelines-head {
  display: block;
  background: #535353;
  border-radius: 0.5rem;
  padding: 1.2rem 1rem;
}
@media screen and (min-width:768px) {
  .service__guidelines-head {
    padding: 1.2rem 2rem;
  }
}
.service__guidelines tbody td {
  padding: 1.2rem 1rem;
}
@media screen and (min-width:768px) {
  .service__guidelines tbody td {
    padding: 1.5rem 2rem;
  }
}
.service__guidelines tbody tr {
  border-bottom: 1px solid #707070;
}
.service__guidelines tbody tr:last-child {
  border-bottom: none;
}
.service__guidelines-notes {
  flex: 1;
}
.service__guidelines-notes-list {
  margin-bottom: 2rem;
}
.service__guidelines-notes-list--deny {
  list-style: disc;
  padding-left: 1.5em;
}
.service__guidelines-notes-lead {
  margin-bottom: 0.5rem;
}

/* === 企業情報 === */
.about {
  position: relative;
  background: #ffffff;
}
.about::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 48%;
  min-height: 500px;
  background: url("../image/about_bg.png") no-repeat center bottom/cover;
  z-index: 0;
}
@media screen and (min-width:768px) {
  .about::before {
    height: 70%;
  }
}
.about::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 48%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.04) 100%);
  z-index: 1;
}
@media screen and (min-width:768px) {
  .about::after {
    height: 70%;
  }
}
.about__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (min-width:768px) {
  .about__inner {
    max-width: 1140px;
    padding: 6rem 0;
  }
}
.about__title {
  text-align: center;
  margin-bottom: 2rem;
}
.about__title .about__title-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #000000;
}
@media screen and (min-width:768px) {
  .about__title .about__title-en {
    font-size: clamp(2.4rem, 6vw, 7.2rem);
  }
}
.about__title .about__title-jp {
  font-size: 1.6rem;
  color: #000000;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  .about__title .about__title-jp {
    font-size: 1.8rem;
  }
}
@media screen and (min-width:768px) {
  .about__title {
    margin-bottom: 5rem;
  }
}
.about__body {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width:768px) {
  .about__body {
    padding: 3rem;
  }
}
.about__list {
  border-bottom: 1px solid #707070;
  padding: 1rem 0;
}
.about__list:nth-of-type(1) {
  padding-top: 0;
}
@media screen and (min-width:768px) {
  .about__list {
    display: flex;
    align-items: flex-start;
    justify-content: initial;
    padding: 2rem 0;
  }
}
@media screen and (max-width:767px) {
  .about__term {
    padding-bottom: 0.5rem;
  }
}
@media screen and (min-width:768px) {
  .about__term {
    flex: 1;
  }
}
.about__description ol {
  list-style: decimal;
  padding-left: 1.5em;
}
@media screen and (min-width:768px) {
  .about__description {
    flex: 3;
  }
}

/* === お問い合わせ === */
.contact-cta {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-bottom: 1px solid #707070;
}
.contact-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.contact-cta__bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.contact-cta__inner {
  position: relative;
  z-index: 1;
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (min-width:768px) {
  .contact-cta__inner {
    max-width: 1140px;
    padding: 6rem 0;
  }
}
.contact-cta__title {
  margin-bottom: 3rem;
  gap: 2rem;
}
.contact-cta__title .contact-cta__title-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .contact-cta__title .contact-cta__title-en {
    font-size: clamp(2.4rem, 6vw, 6.5rem);
  }
}
.contact-cta__title .contact-cta__title-jp {
  font-size: 1.6rem;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  .contact-cta__title .contact-cta__title-jp {
    font-size: 1.8rem;
  }
}
@media screen and (min-width:768px) {
  .contact-cta__title {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: initial;
  }
}
@media screen and (min-width:768px) {
  .contact-cta__columns {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.contact-cta__columns-text {
  line-height: 2;
}
@media screen and (max-width:767px) {
  .contact-cta__columns-text {
    margin-bottom: 3rem;
    text-align: center;
  }
}
.contact-cta__columns-button {
  width: 280px;
}
@media screen and (max-width:767px) {
  .contact-cta__columns-button {
    margin: 0 auto;
  }
}
.contact-cta__columns-button a {
  width: 100%;
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 2rem;
  letter-spacing: 1px;
  color: #ffffff;
  background-color: none;
  border: 1px solid #ffffff;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width:768px) {
  .contact-cta__columns-button a {
    font-size: 2rem;
  }
  .contact-cta__columns-button a::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
  }
  .contact-cta__columns-button a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (min-width:768px) {
  .contact-cta__columns-button a::before {
    background: #ffc900;
  }
  .contact-cta__columns-button a span {
    position: relative;
    z-index: 1;
  }
}
.contact-cta__columns-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url("../image/icon_arrow_btn.svg") no-repeat center/contain;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .contact-cta__columns-button a:hover {
    color: #000000;
  }
}

/* =======================================
* 下層ページ
* ===================================== */
.pg-hero {
  padding-top: calc(var(--header-height) + 4.8rem);
}
.pg-hero__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1140px;
}
.pg-hero__title {
  line-height: 1;
}
.pg-hero__title .pg-hero__title-en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #000000;
}
@media screen and (min-width:768px) {
  .pg-hero__title .pg-hero__title-en {
    font-size: clamp(2.4rem, 6vw, 7.6rem);
  }
}
.pg-hero__title .pg-hero__title-jp {
  font-size: 1.6rem;
  color: #000000;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  .pg-hero__title .pg-hero__title-jp {
    font-size: 1.8rem;
  }
}
@media screen and (min-width:768px) {
  .pg-hero__title {
    display: flex;
    align-items: center;
    gap: 2.6rem;
  }
}
.pg-hero__title span {
  display: inline-block;
}
.pg-hero__divider {
  height: 1px;
  background: #707070;
}

/* === breadcrumb === */
.breadcrumb {
  margin: 2.5rem 0 3rem;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
}
.breadcrumb__item {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #000000;
}
.breadcrumb__link, .breadcrumb__current {
  font-size: 1.2rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #000000;
  line-height: 1;
}
.breadcrumb__link:hover {
  opacity: 0.75;
}
.breadcrumb__current {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.pg-container {
  width: 90%;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (min-width:768px) {
  .pg-container {
    max-width: 1140px;
    padding: 4rem 0 7rem;
  }
}

/* === プライバシーポリシー === */
.pg-privacy__text {
  margin-bottom: 3rem;
}
.pg-privacy__list:not(:last-of-type) {
  margin-bottom: 3rem;
}
.pg-privacy__term {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.pg-privacy__notes {
  list-style: disc;
  padding: 0.5em 0 0.5em 1.5em;
}
.pg-privacy__link {
  text-decoration: underline;
}

/* === 投稿ページ === */
.news-single {
  margin: 4rem auto;
}
@media screen and (min-width:768px) {
  .news-single {
    margin: 7rem auto;
  }
}
.news-single__article {
  background-color: #f2f3f4;
  border-radius: 1rem;
  width: 90%;
  margin: 0 auto;
  padding: 3rem 2rem;
}
@media screen and (min-width:768px) {
  .news-single__article {
    max-width: 1140px;
    padding: 4rem 0;
  }
}
.news-single__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.news-single__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media screen and (min-width:768px) {
  .news-single__title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
}
.news-single__content > *:first-child {
  margin-top: 0;
}
.news-single__content p {
  margin: 0 0 1.6rem;
  line-height: 1.8;
}
.news-single__content h3 {
  margin: 3rem 0 1.6rem;
  font-size: 1.7rem;
}
@media screen and (min-width:768px) {
  .news-single__content h3 {
    font-size: 2rem;
  }
}
.news-single__content ul,
.news-single__content ol {
  margin: 2rem 0;
  padding-left: 1.6rem;
}
.news-single__content ul {
  list-style-type: disc;
}
.news-single__content ol {
  list-style-type: decimal;
}
.news-single__content li {
  margin-bottom: 0.8rem;
}
.news-single__content img {
  max-width: 100%;
  height: auto;
  margin: 3rem 0;
}

/* =======================================
* お問い合わせページ
* ===================================== */
.pg-contact .form {
  background-color: #f2f3f4;
  border-radius: 1rem;
}
@media screen and (min-width:768px) {
  .pg-contact .form {
    margin: 7rem auto;
  }
}
.pg-contact .form {
  width: 90%;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
@media screen and (min-width:768px) {
  .pg-contact .form {
    max-width: 1140px;
    padding: 4rem 0;
  }
}
.pg-contact .form {
  margin: 4rem auto;
}
.pg-contact .form__body {
  max-width: 1000px;
  margin: 0 auto;
}
.pg-contact .form__item {
  padding: 2rem 0;
  border-bottom: 1px solid #bababa;
}
@media screen and (min-width:768px) {
  .pg-contact .form__item {
    padding: 3rem 0;
    gap: 4rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
}
.pg-contact .form__label {
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .pg-contact .form__label {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width:768px) {
  .pg-contact .form__label {
    flex: 1;
  }
}
.pg-contact .form__label span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff0000;
}
.pg-contact .form__field {
  width: 100%;
  outline: none;
  padding: 10px;
}
.pg-contact .form__field-wrapper {
  width: 100%;
}
@media screen and (min-width:768px) {
  .pg-contact .form__field-wrapper {
    flex: 3;
  }
}
.pg-contact .form__field-wrapper--select {
  position: relative;
}
.pg-contact .form__field-wrapper--select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 14px;
  height: 10px;
  background-color: #707070;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.pg-contact .form button,
.pg-contact .form input,
.pg-contact .form select,
.pg-contact .form textarea {
  background-color: #ffffff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.pg-contact .form button:focus,
.pg-contact .form input:focus,
.pg-contact .form select:focus,
.pg-contact .form textarea:focus {
  outline: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  border-color: rgba(0, 0, 0, 0.7);
}
.pg-contact .form__select {
  cursor: pointer;
  padding-right: 40px;
}
.pg-contact .form__select:invalid {
  color: #888;
}
.pg-contact .form__agree {
  padding: 3rem 0;
  text-align: center;
}
.pg-contact .form__agree label {
  font-weight: bold;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-contact .form__agree input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 2px;
}
.pg-contact .form__agree-note {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.pg-contact .form__agree-note a {
  text-decoration: underline;
}
.pg-contact .form .form__button {
  width: 280px;
  margin: 0 auto;
  position: relative;
  border-radius: 50px;
  background: #000000;
  overflow: hidden;
}
.pg-contact .form .form__button-bg {
  position: absolute;
  inset: 0;
  background: #ffc900;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
  pointer-events: none;
}
.pg-contact .form .form__button-submit {
  position: relative;
  z-index: 2;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
  font-weight: bold;
  background: transparent;
  color: #ffffff;
}
@media screen and (min-width:768px) {
  .pg-contact .form .form__button:hover .form__button-bg {
    transform: scaleX(1);
    transform-origin: left;
  }
  .pg-contact .form .form__button:hover .form__button-submit {
    color: #000000;
  }
}
.pg-contact .form .form__button .wpcf7-spinner {
  position: absolute;
  right: 1.6rem;
  z-index: 3;
}
