@charset "UTF-8";

@layer reset, base, third-party, components, utility, priority;

@import './reset.min.css' layer(reset);

@import "https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Sawarabi+Mincho&display=swap" layer(third-party);
@import "https://unpkg.com/lenis@1.2.3/dist/lenis.css" layer(third-party);

@layer base {
:root {
  /* color */
  --color-purple: #644486;
  --color-darkpurple: #1D0429;
  --color-brown: #AF8049;
  --color-gray: #EAEAEA;
  --color-darkgray: #686868;
  --color-black: #262626;
   /* viewport */
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;

  /* font */
  --font-noteSans: "Noto Sans JP", sans-serif;
  --font-inter:  "Inter", sans-serif;
  /* font-weight */
  --fontweight-extralight: 200;
  --fontweight-regular: 400;
  --fontweight-medium: 500;
  --fontweight-bold: 700;
  /* contents-mainWidth */
  --full-width: min(100%, 1920px);
  --main-width: min(90%, 1280px);
  /* letter-spacing */
  --wide-letter: .2em;
  /* easing */
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  /* border-radius */
  --radius-sm: .4rem;
  --radius-md: .8rem;
  --radius-lg: 2rem;
}

/* 各種base計算式設定 */
*,
::before,
::after{
  /* font-clampサイズ設定 */
  --clamp-root-font-size: 10;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --intercept: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --preffered-value: calc(
    var(--intercept) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
   /* clamp-余白サイズ設定 */
  --clamp-space-slope: calc((var(--clamp-space-max) - var(--clamp-space-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --intercept-space: calc(var(--clamp-space-min) - (var(--clamp-space-slope) * var(--clamp-viewport-min)));
  --preffered-space-value: calc(
    var(--intercept-space) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-space-slope) * 100vi)
  );
  --clamp-space: clamp(
    calc(var(--clamp-space-min) * (1rem / var(--clamp-root-font-size))),
    var(--preffered-space-value),
    calc(var(--clamp-space-max) * (1rem / var(--clamp-root-font-size)))
  );

  font-size: var(--clamp);
}



html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", YuMincho, "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: var(--fontweight-regular);
  line-height: 1.5;
  word-break: auto-phrase;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  line-break: strict; /* 禁則処理を厳格に適用 */


  --clamp-min: 14;
  --clamp-max: 16;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }

  input[type="submit"]:hover {
    opacity: 0.7;
  }

}

}
/* /////@layer base */

@layer priority{

/* 共通パーツ */
.pc-only {
  display: block;

  @media (width <= 599px) {
    display: none;
  }
}

.sp-only {
  display: none;

  @media (width <= 599px) {
    display: block;
  }
}

.over-flow-clip {
  overflow-x: clip;
}

.js-fixed{
  height: 100vh;

  @media (width <= 599px){
    height: 170vh;
  }
}

.js-fixed__inner{
  display: grid;
  place-content: center;
  height: 100%;
}

}
/* /////@layer priority */

@layer components {
/* l-*******レイアウトパーツ */
.l-section {
  width: min(100%, 1920px);
  margin-inline: auto;
}

.l-section.-bg-gradient-purple01 {
  color: white;
  background: linear-gradient(180deg, #852E95 0%, #2A0F2F 100%);
}

.l-section.-bg-gradient-purple02 {
  color: white;
  background: linear-gradient(114deg, #82139D 0%, #512C7D 52%, #4A2254 100%);
}

.l-section.-bg-gray {
  background-color: var(--color-gray);
}

.l-section.-bg-darkgray {
  color:white;
  background-color: var(--color-darkgray);
}

:is(.l-section ,.m-visual-wrap).-clip-triangle {
  clip-path: polygon(50% 15%, 100% 1%, 100% 101%, 50% 101%, 0 100%, 0 0);

  @media (width <= 599px){
    clip-path: polygon(50% 8%, 100% 1%, 100% 101%, 50% 101%, 0 100%, 0 0);
  }
}

.l-section:has(.m-logo-bg){
  position: relative;
}

.l-contents {
  width: var(--main-width);
  padding: 9.4rem 0;
  margin-inline: auto;

  @media (width <= 599px){
    padding: 6.4rem 0;
  }
}


/* m-*******モジュールパーツ */
.m-tittle-block {
  width: fit-content;
  margin-inline: auto;
  font-weight: var(--fontweight-regular);

  --clamp-min: 16;
  --clamp-max: 28;
}

.m-tittle-wrap{
  margin-bottom: 3rem;

  @media (width <= 599px){
    margin-bottom: 4rem;
  }
}

.m-tittle-block__sub{
  width: fit-content;
  margin-inline: auto;
  margin-top: 2.4rem;
  line-height: 2;
  text-align: center;

  --clamp-max:22;
  --clamp-min:14;

  @media (width <= 599px){
    margin-top: 1.2rem;
  }
}


.m-text-block {
  width: 100%;

  --clamp-max:18;
  --clamp-min:14;
}

.m-cards-list {
  display: grid;
}

.m-cards-list.-col2 {
  grid-template-columns: repeat(auto-fit, calc((100% - var(--space) * 1) / 2));
}

.m-cards-list.-col3 {
  grid-template-columns: repeat(auto-fit, calc((100% - var(--space) * 2) / 3));
}

.m-cards-list.-col4 {
  grid-template-columns: repeat(auto-fit, calc((100% - var(--space) * 3) / 4));
}

/* sp-class */
.m-cards-list.-sp-col1{
  @media (width <= 599px){
    grid-template-columns: repeat(auto-fit, 100%);
  }
}

.m-cards-list.-sp-col2{
  @media (width <= 599px){
    grid-template-columns: repeat(auto-fit, calc((100% - var(--space) * 1) / 2));
  }
}


.m-subgrid-card{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span var(--row-num);
}

.m-parts-wrap {
  position: relative;
}

.m-button-parts {
  --unit-block-size: 1.3rem;
  --unit-inline-size: 1.3rem;

  position: relative;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  width: min(100%, 309px);
  padding: var(--unit-block-size) var(--unit-inline-size);
  margin-inline: auto;
  line-height: 1;
  color: white;
  text-align: center;
  letter-spacing: 3.20px;
  background-color: var(--color-purple);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.m-button-parts.-wh{
  color: black;
  background-color: white
}

.m-button-parts.-brown{
  background-color: var(--color-brown);

}

.m-grid-text{
  display: grid;
  grid-template-columns: max-content 1fr;
}

.m-potision-text-wrap{
  position: relative;
}

.m-potision-text-wrap__v-text{
  position: absolute;
  top:50%;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: translate(-50%, -50%);

  @media (width <= 1500px){
    font-size: 4rem;
  }

  @media (width <= 1200px){
    font-size: 2rem;
  }
}

.m-potision-text-wrap__h-text{
  position: absolute;
  color: white;
  text-wrap: balance;
}

/* breadcrumb */
.m-breadcrumb{
    width: 100%;
    background-color: #161414;
}

.m-breadcrumb__inner{
  display: grid;
  grid-template-columns: max-content 1fr;
  width: var(--main-width);
  padding: 3rem 0;
  margin-inline: auto;
  color: white;
  letter-spacing: var(--wide-letter);

  @media (width <= 599px){
      padding: 1.4rem 0;

      --clamp-min: 12;
  }

  li{
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    a{
      text-decoration: underline;
    }

    &+li::before{
      margin-inline:.8rem;
      content: "／";
    }

  }
}

/* 画像が背景のコンテンツ */
.m-visual-wrap{
  position: relative;
  width: var(--full-width);

  --visual-contents-height: calc( 1px * var(--visual-height));

  height: var(--visual-contents-height);
  aspect-ratio: 1920 / var(--visual-contents-height);
  overflow: hidden;

  picture{
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  @media (width <= 599px){
    aspect-ratio: 390 / var(--visual-contents-height);
  }
}

.m-visual-wrap__center-contents{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* スマホ画像全幅 */
.m-sp-full-width{
  @media (width <= 599px){
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

}

.js-sticky {
  position: sticky;
  top: var(--offset);
  height: calc(var(--visual-contents-height) - var(--offset));
  overflow: hidden;
}

.js-sticky.-second{
  overflow:revert;
}

}
/* /////@layer components */


@layer utility {

/* header */
.l-header {
  position: absolute;
  top: 4rem;
  left: 0;
  z-index: 3;
  width: 100%;
  container-type: inline-size;

  @media (width <= 599px){
    position: fixed;
    top: 2.3rem;
    left: 0;
    z-index: 99;
    width: 100%;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(96%, 1820px);
  padding: 2rem 2.9rem;
  margin-inline: auto;
  color: white;
  background-color: var(--color-darkpurple);
  border-radius: var(--radius-lg) ;

  @media (width <= 599px) {
    padding: .7rem 1.4rem;
    border-radius: var(--radius-md);
  }

  @container (600px <= width <= 930px){
    flex-wrap: wrap;
    row-gap: 1.6rem;
    justify-content: center;
  }

}

.header-logo{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(88%, 534px);

  a{
    @media (width <= 599px){
      flex: 0 1 40%;
    }
  }

  @media (width <= 599px){
      justify-content: revert;
  }
}

.header-logo__lead{
  --clamp-min: 10;
  --clamp-max: 14;

  display: flex;
  flex: 0 1 50%;
  align-items: center;

  &::before {
    display: inline-flex;
    width: 1px;
    height: 48px;
    margin-right: 3.2rem;
    content: '';
    background-color: white;
  }

  @media (width <= 599px){
    flex: 0 1 60%;

    &::before {
      height: 27px;
      margin-right: 1.4rem;
    }
  }
}


.header-logo__img{
  width: min(93%, 269px);
  vertical-align: middle;
}

.header-navi{
  margin-left: auto;

  @container (width <= 930px){
    margin-left: revert;
  }
}

.header-naviList {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 1.6rem;
  align-items: center;
  width: min(40vw, 560px);
  color: white;

}

.header-naviList__data {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
}


/* ////スマホnavi///// */
#navTgl {
  display: none;
}

@media (width <= 599px) {
  .open,
  .close {
    position: fixed;
    top: 22px;
    right: 0;
    cursor: pointer;
  }

  .open {
    z-index: 3;
    width: 70px;
    height: 50px;
    margin: 0;
    transition: background 0.5s, transform 0.5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
  }

  .open span,
  .open::before,
  .open::after {
    position: absolute;
    top: 40%;
    left: 25%;
    width: 50%;
    content: "";
    border-bottom: 4.5px solid var(--color-purple);
    border-radius: 5px;
    transition: transform 0.5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
  }

  .open::before {
    top: calc(37%);
    width: 50%;
    transform: translateY(-8px);
  }

  .open::after {
    top: calc(43%);
    width: 50%;
    transform: translateY(8px);
  }

  .close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background 0.5s;
  }

  #navTgl:checked + .open span {
    transform: scaleX(0);
  }

  #navTgl:checked + .open::before {
    top: calc(40% - 1px);
    width: 50%;
    transform: rotate(45deg);
  }

  #navTgl:checked + .open .on-menu {
    display: none;
  }

  #navTgl:checked + .open .off-menu {
    display: block;
  }

  #navTgl:checked + .open::after {
    top: calc(40% - 1px);
    width: 50%;
    transform: rotate(-45deg);
  }

  /* ドロワーメニュー */
  .menu {
    position: fixed;
    top: -2.3rem;
    left: 0;
    z-index: -1;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto;
    gap: 3rem;
    align-items: flex-start;
    width: 114vw;
    height: 100vh;
    height: calc((1vh * 105) + 5rem);
    padding: 2rem;
    margin: 0 calc(50% - 57vw);
    overflow: hidden;
    color: white;
    text-align: center;
    background: linear-gradient(180deg, var(--color-darkpurple) 20%,
    rgb(133 74 132 / .95) 50%);
  }

  .header-naviList {
    grid-template-columns: 1fr;
    gap: 0 3rem;
    width: 90%;
    padding: 0;
    margin-inline: auto;
    margin-top: 8rem;
  }

  .header-naviList__data {
    width: 100%;
    padding: 3.2rem 0 1.6rem;
    color: white;
    text-align: center;

    --clamp-min: 16;

    &:not(:last-of-type) {
      border-bottom: 1px solid var(--color-darkpurple);
    }

    a{
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      text-align: left;


    }

  }

  .sp-menu-tittle{
    --clamp-min: 18;

    font-weight: var(--fontweight-regular);
  }

}

/* mainvisual */
.mv-top{
  position: relative;
  width: min(100%, 1920px);
  height: 100vh;
  aspect-ratio: 1920 / 820;

  @media (width <= 599px){
    height: 78.5vh;
  }

  picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    @media (width <= 1300px){
      object-position: 50% 50%;
    }

    @media (width <= 599px){
      object-position: 55% 50%;
    }
  }

  .m-potision-text-wrap__h-text{
    bottom: 13%;
    left: 50%;
    width: 70%;
    line-height: 1;
    text-align: center;
    word-break: keep-all;
    transform: translate(-50%, -50%);

    --clamp-max: 60;
    --clamp-min: 22;

    @media (width <= 599px){
      bottom: 23%;
      width: 100%;
    }
  }

}

.mv-top.-lower{
  height: 440px;
  aspect-ratio: 1920 / 440;
  overflow: hidden;

  @media (width <= 599px){
    height: auto;
    aspect-ratio: 390 / 220;
  }

  picture:has(.js-parallax) {
    display: block;
    width: 100%;
    height: min(77vw, 633px);

    &::after{
      background-color: revert;
    }

    @media (width <= 599px){
      height: 125vw;
    }
  }

  .mv-top__lead{
    --clamp-min: 16;
    --clamp-max: 32;

    top: 65%;
    left: 50%;
    gap: 1.6rem;
    text-align: center;
    transform: translate(-50%, -50%);

    @media (width <= 599px){
        top: 55%;
    }
  }

  .mv-top__sub-lead{
    --clamp-max: 18;
    --clamp-min: 12;
  }



}

.mv-top__lead{
  position: absolute;
  top: 43%;
  left: 3%;
  display: grid;
  gap: 2.4rem;
  place-items: center;
  font-weight: var(--fontweight-regular);
  color: white;

  --clamp-max: 45;
  --clamp-min: 30;

  @media (width <= 599px){
      top: 63.5vh;
      right: 6%;
      left: revert;
      z-index: 1;
      text-align: right;
      word-break: keep-all;
  }

}


/* ------ scroll Down ------ */
.mv-top__scroll-down{
    position: absolute;
    bottom: -11%;
    left: 6.5%;

    @media (width <= 599px){
      bottom: -30%;
      left: -14%;
      z-index: 1;
    }

}

.scroll-down {
    padding-bottom: 100px;
    padding-left: 150px;
    margin-left: 33px;
    transform: rotateZ(-90deg);
    transform-origin: top left;

    @media (width <= 599px){
      padding-bottom: 45px;
      padding-left: 90px;
      margin-left: 72px;
    }
}

@keyframes scroll-down-line {
  0% {
    transform: scale(1, 1);
    transform-origin: 0% 50%; }

  20% {
    transform: scale(0.001, 1);
    transform-origin: 0% 50%; }

  20.01% {
    transform-origin: 100% 50%; }

  38% {
    transform: scale(1, 1);
    transform-origin: 100% 50%; }
}


.scroll-down__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 350px;
  height: 0;

  @media (width <= 599px){
    top: 40%;
    left: 30%;
    width: 170px;
  }
}

.scroll-down__line::after {
  display: block;
  width: 100%;
  height: 0;
  content: '';
  border-bottom: 1px solid #fff;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0s linear 0.5s;
  transform: scale(0.001, 1);
  transform-origin: right center;
}

.scroll-down__text {
  color: white;
  letter-spacing: normal;
  rotate: 180deg;

  --clamp-max: 20;
  --clamp-min: 15;
}

.scroll-down__text span {
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 100%, 0);
}

.scroll-down.is-active.is-inview .scroll-down__text {
  animation: bounce 2.5s infinite; }

.scroll-down.is-active.is-inview .scroll-down__text span {
  transform: none;
}

.scroll-down.is-active.is-inview .scroll-down__line::after {
  opacity: 1;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), opacity 0s linear;
  transform: none;
  animation: scroll-down-line 2.5s infinite 851ms;
}

@keyframes bounce {
  0%, 15%, 38%, 60%, 75% {
    transform: translateX(0); }

  30% {
    transform: translateX(10px); }

  45% {
    transform: translateX(5px); }
}


/* /////top-ABOUT US///// */
.about-us{
  .m-text-block{
    line-height: 4.3rem;
  }

  @media (width <= 599px){
      .l-contents{
        padding-top: 0;
      }

      .m-tittle-block{
        --clamp-min: 28;

        margin-inline: revert;
      }

      .m-tittle-block__sub{
        --clamp-min: 22;

        margin-inline: revert;
        text-align: revert;
      }

      .m-text-block{
        line-height: 2.8rem;
      }
  }

}

.about-us-list{
  --space: 4.4rem;

  gap: 0 var(--space);
  place-items: center;

  @media (width <= 599px){
    li{
      &:nth-child(1){
        order: 2;
        padding-top: 3.2rem;
        margin-top: 5.2rem;
        border-top: 1px solid white;
      }

      &:nth-child(2){
        order: 1;
      }
    }

    .m-sp-full-width{
      width: 100vw;
      margin: 0 calc(50% - 50vw);
    }

  }

}


/* /////top-SERVICE///// */
.service{
  position: relative;

  .m-potision-text-wrap__v-text{
    top: 120%;
    right: 1%;
    z-index: 1;
    color: var(--color-gray);

    --clamp-max: 90;
    --clamp-min: 40;

    @media (width <= 1550px){
      top: 102.5%;
      right: -40%;
      width: 90%;
      line-height: 1;
      text-align: center;
      text-wrap: balance;
      writing-mode: revert;

      --clamp-max: 70;
      --clamp-min: 32;
    }

  }

  .m-button-parts{
    margin-top: 4rem;
  }

  @media (width <= 599px){
    /* .l-contents{
      padding-bottom: 11.4rem;
    } */

    .m-button-parts{
      margin-top: 3.6rem;
    }
  }
}

.service-list{
  --space: 3.2rem;

  gap: 0 var(--space);
  margin-top: 5rem;

  .m-subgrid-card{
    --row-num: 3;

    row-gap: 2.4rem;
  }

  .m-tittle-block{
    --clamp-max: 24;
    --clamp-min: 16;

    color: var(--color-purple);
  }

  .m-text-block{
    word-break: normal;

    --clamp-max: 16;
  }

  @media (width <= 599px){
    --space: 5rem;

    row-gap: var(--space);

    .m-text-block{
      --clamp-min:16;
    }

  }

}


/* /////top-SAFETY///// */
.m-visual-wrap.-safety{
  --visual-height: 425;

  .m-visual-wrap__center-contents{
    color:white;
  }

  .m-tittle-block{
    --clamp-max: 40;
    --clamp-min: 16;
  }

  .m-tittle-block__sub{
    --clamp-max: 18;
    --clamp-min: 14;

    line-height: 1.8rem;
  }

  @media (width <= 599px){
    --visual-height: 492;

    aspect-ratio: 390 / var(--visual-contents-height);

    img{
      height: min(140vw, var(--visual-contents-height));
    }

    .m-visual-wrap__center-contents{
      padding: 1.2rem 2rem;
      color: black;
      background-color: rgb(255 255 255 / 0.7);
    }
  }

}

.safety{
  background: linear-gradient(
    180deg,
    #852E95 0%,
    #2A0F2F 49%,
    white 49%,
    white 100%
  );

  .m-text-block{
    line-height: 4.3rem;
    text-align: center;

    &:first-of-type{
      color: white;
    }
  }

  .m-button-parts{
    margin-top: 4.8rem;
  }

  @media (width <= 599px){
    background: linear-gradient(
      180deg,
      #852E95 0%,
      #2A0F2F 56%,
      white 44%,
      white 100%
    );

    .l-contents{
      padding-top: 3.2rem;
    }

    .m-text-block{
      line-height: 2.8rem;
      text-align: revert;
      word-break: normal;
    }

    .m-button-parts{
      margin-top: 4rem;
    }

  }

}

.safety-driver-list{
  --space: 2.2rem;

  gap: 0 var(--space);
  width: min(100%, 845px);
  margin: 3.6rem  auto 5.6rem;

  @media (width <= 599px){
      --space: 2.4rem;

      gap: 2.2rem var(--space);
      margin: 3.2rem  auto;
  }
}

/* /////top-RECRUIT///// */
.recruit{
  .m-tittle-wrap{
    margin-bottom: 2.7rem;
  }

  .m-text-block{
    line-height: 4.3rem;
  }

  .m-button-parts{
    margin-top: 3.2rem;
  }

  @media (width <= 599px){
    .m-text-block{
      margin-top: 1.6rem;
      line-height: 2.8rem;
    }

    .m-button-parts{
      margin-top: 4rem;
    }
  }

}

.recruit-list{
  --space: 4.4rem;

  gap: 0 var(--space);
  place-items: center;
}

/* /////top-COMPANY///// */
.m-visual-wrap.-recruit.-top{
  margin-top: revert;
}


.company{
  .m-text-block{
    margin-top: 1.8rem;
    text-align: center;
  }

  .m-parts-wrap{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    margin-top: 3.7rem;
  }

  .l-contents{
    position: relative;
    padding-top: 16rem;
  }

  @media (width <= 599px){
    .l-contents{
      padding: 5.6rem 0 16rem;
    }
  }

}

.company.-lower{
  .l-contents{
    padding-top: 9.4rem;
    padding-bottom: 11.2rem;
  }

  .bg-logo{
    position: relative;
    top: -2rem;
    height: auto;
    background: revert;
  }

  .m-parts-wrap{
    flex-direction: revert;
    gap: 3rem;
    justify-content: center;

    & > *{
      width: min(100%, 309px);
    }
  }

  @media (width <= 599px){
    .l-contents{
      padding-top: 7.4rem;
      padding-bottom: 16rem;
    }

    .m-parts-wrap{
      flex-direction: column;
      align-items: center;
    }

  }
}


.bg-logo{
  position: absolute;
  top: -105px; /* 半径を出す位置 */
  left: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 310px;
  height: 310px;
  background: linear-gradient(114deg, #5f2586 0%, #512C7D 52%, #512c7d 100%);
  border-radius: 50%;
  transform: translateX(-50%);

  @media (width <= 599px){
    top: -50px;
    width: 115px;
    height: 115px;
    background: linear-gradient(114deg, #6d1d8f 0%, #592882 52%, #5b2884 100%);

    img{
      width: 60%;
    }

  }

}

.company-logo{
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin-inline: auto;

  @media (width <= 599px){
      width: 50%;
  }
}

/* /////top-NEWS///// */
.news{
  margin-top: -13rem;

  .l-contents{
    padding-top: 16rem;
    padding-bottom: 6rem;
  }

  .m-button-parts{
    margin-top: 5.6rem;
  }

  @media (width <= 599px){
    .l-contents{
      padding-top: 8.8rem;
    }

    .m-button-parts{
      margin-top: 5rem;
    }
  }

}

.news-list{
  margin-top: 3.8rem;

  @media (width <= 599px){
    margin-top: -2.2rem;
  }
}

.news-list__item{
  display: block grid;
  grid-template-columns: max-content auto;
  justify-content: center;

  --clamp-max: 16;
  --clamp-min: 14;

  &:not(:last-of-type){
    border-bottom: 1px solid white;
  }

  a{
    display: block grid;
    grid-template-columns: subgrid;
    grid-row: span 2;
    grid-column: 1 / -1;
    column-gap: 2.6rem;
    align-items: center;
    padding: 2.4rem 0 ;

    @media (width <= 1000px){
      padding: 2rem 0;
    }
  }

  @media (width <= 599px){
    grid-template-columns: max-content;
    text-align: center;
  }
}


/* /////service-ABOUT///// */
.about{
  position: relative;
  background: linear-gradient(180deg, #852E95 0%, #2A0F2F 43%, white 43%, white 100%);
  border-bottom: 1px solid black;

  .m-text-block{
    margin-top: 16rem;
    line-height: 4rem;
  }

  .l-contents{
    width: min(100%, 1280px);
  }

  @media (width <= 599px){
      background: linear-gradient(180deg, #852E95 0%, #2A0F2F 52%, white 52%, white 100%);

      .l-contents{
        padding-top: 0;
      }

      .m-text-block{
        width: 90%;
        margin-inline: auto;
        margin-top: 9rem;
        line-height: 2.8rem;
        word-break: normal;
      }
  }

}

.about-list{
  --space: 7rem;

  gap: 0 var(--space);
  margin-top: 5rem;

  @media (width <= 599px){
      padding-top: 3rem;
      margin-top: 0;
  }

  .m-tittle-wrap{
    display: flex;
    flex-direction: column;
    padding: 4.8rem 4.8rem 0 0;
    color: white;
  }

  .m-tittle-block{
    position: relative;
    margin-inline: revert;
    margin-left: 4vw;

    --clamp-max: 40;
    --clamp-min: 28;

    &::after{
      position: absolute;
      top: 70px;
      right: -5vw;
      display: block;
      width: 100px;
      height: 1px;
      content: "";
      background-color: white;
      transform: rotate(-40deg);
    }
  }

  .m-tittle-block__sub{
    align-self: flex-end;
    margin-inline: revert;
    margin-top: 4rem;
    line-height: 70px;
    text-align: right;

    --clamp-max: 40;
    --clamp-min: 25;
  }

  @media (width <= 599px){
      .m-tittle-wrap{
        position: relative;
        z-index: 1;
        align-items: flex-end;
        padding: 0 2.6rem;
        margin-top: -12%;
      }

      .m-tittle-block{
        padding-right: 2.2rem;

        &::after{
          top: 60px;
          right: 6vw;
          width: 60px;
        }
      }

      .m-tittle-block__sub{
        line-height: 4rem;
      }
  }

}

.about-list-img{
  position: relative;

  @media (width <= 599px){
      justify-self: end;
      width: 70%;
  }
}

.about-list-img__left{
  position: absolute;
  top: 530px;
  right: 11vw;
  width: 100%;

  @media (width <= 599px){
    top: revert;
    bottom: -32%;
    left: -43%;
    width: 80%;
  }
}

.service:has(.m-potision-text-wrap__h-text){
  .l-contents{
    padding-bottom: 19.5rem;
  }

  .m-potision-text-wrap__h-text{
    --clamp-max: 80;
    --clamp-min: 32;

    bottom: -2.8%;
    left: 50%;
    z-index: 1;
    width: 90%;
    line-height: 1;
    color: var(--color-gray);
    text-align: center;
    transform: translate(-50%, -50%);
  }

  @media (width <= 599px){
    .l-contents{
    padding-bottom: 12rem;
    }

    .m-potision-text-wrap__h-text{
      bottom: -2.5%;
    }

  }
}


/* /////service-Features///// */
.features{
  /* .l-contents{
    padding-top: 19.5rem;
  } */

  .m-text-block{
    text-align: center;

    --clamp-max: 16;

    & + .m-text-block{
      margin-top: 4rem;
    }

    span{
      display: block;
      margin-inline: auto;
      margin-bottom: 4rem;
      text-align: center;
    }

  }

  .m-tittle-wrap{
    margin-bottom: 4rem;
  }

  .m-logo-bg{
    position: absolute;
    top: 90px;
    left: -4%;
    width: 727px;
    height: 794px;
    content: "";
    background-image: url("../images/service/logo_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }

  @media (width <= 599px){
      .l-contents{
        padding-top: 12rem;
      }

      .m-text-block{
        line-height: 3rem;
        text-align: left;
        word-break: normal;

        span{
          margin-bottom: 2rem;
        }
      }

      .m-logo-bg{
        top: 80%;
        left: 50%;
        width: 336px;
        height: 369px;
        transform: translate(-50%, -50%);
      }
  }

}

/* /////service-CASE///// */
.m-visual-wrap.-case{
  --visual-height: 384;

  .m-tittle-wrap{
    color: white;
  }

  @media (width <= 599px){
    --visual-height: 200;

    picture{
      img{
        height: 100%;
      }
    }
  }
}

.case{
  .m-text-block{
    line-height: 4.3rem;
    text-align: center;
  }

  .case-checkbox{
    position: relative;
    width: min(90%, 714px);
    padding: 4rem 9.7rem 5.4rem;
    margin: 4rem 0 6.8rem;
    margin-inline: auto;
    background-color: white;
    border-radius: var(--radius-lg);

    .m-button-parts{
      position: absolute;
      bottom: -15%;
      left: 50%;
      width: min(70%,309px);
      transform: translate(-50%, -50%);
    }

  }

  .checkbox-item {
  display: flex;
  column-gap: 6px;
  align-items: center;
  width: fit-content;
  line-height: 1;

  --clamp-max: 18;
  --clamp-min: 12;
  }

  .checkbox-item:not(:last-of-type) {
    margin-bottom: 24px;
  }

  .checkbox {
    position: relative;
    width: 14px;
    height: 14px;
    padding: revert;
    appearance: none;
    border: 1px solid #000;
    border-radius: 2px;

    &::after {
    position: absolute;
    top: 2.5px;
    left: 0;
    width: 11px;
    height: 5px;
    content: "";
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    transform: rotate(-45deg);
    }
  }


  .checkbox:checked::after {
    position: absolute;
    top: 2.5px;
    left: 0;
    width: 11px;
    height: 5px;
    content: "";
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    transform: rotate(-45deg);
  }

  @media (width <= 599px){
    .m-text-block{
    line-height: 1.8;
    }

    .case-checkbox{
      padding: 2.4rem 2.4rem 4.2rem;
    }

    .checkbox-item{
      line-height: revert;
    }

  }

}


/* /////service-SAFETY & QUALITY///// */
.safety-quality{
  background:
  linear-gradient(65deg, var(--color-purple) 51.5%, #262626 51%) top right / 100% 43% no-repeat,
  linear-gradient(to bottom, transparent 0%, white 57%);

  @media (width <= 599px){
      background:
      linear-gradient(160deg, var(--color-purple) 51.5%, #262626 51%) top right / 100% 37% no-repeat,
      linear-gradient(to bottom, transparent 0%, white 57%);
  }
}

.safety-quality-list{
  --space: .1rem;

  .m-tittle-wrap{
  color: white
  }
}

.safety-quality-sub-list{
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    margin-top: 18.2rem;
    text-align: center;

    @media (width <= 599px){
        row-gap: 2rem;
        margin-top: 4rem;
    }
}

.safety-quality-sub-list__data{
  --clamp-max: 18;
  --clamp-min: 14;
}


/* /////service-RECRUIT///// */
.m-visual-wrap.-recruit{
  margin-top: -11rem;

  --visual-height: 525;

  picture:has(.js-parallax) {
      position: relative;
      display: block;
      width: 100%;
      height: min(100vw, 600px);

      &::after{
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          content: "";
          background-color: rgb(82.14 0 67.08 / 0.5);
      }

      img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 65%;
      }
  }

  .m-tittle-wrap{
    color: white;
  }

  @media (width <= 599px){
    --visual-height: 318;
  }

}

.lower-recruit{
  overflow: visible;

  .l-contents{
    padding: 5rem 0 6.4rem;
  }
}

.lower-recruit-list{
  --space: 3rem;

  gap: 0 var(--space);

  .m-text-block{
    line-height: 4.3rem;
  }

  .m-button-parts{
    width: min(80%, 309px);
    margin-top: 3.2rem;
  }

  @media (width <= 599px){
    --space: 2rem;

    gap: var(--space) 0;

      .m-text-block{
        line-height: 2.8rem;
      }
  }
}

.lower-recruit-list__img{
  margin-top: -12rem;
}

.g-map{
  width: var(--full-width);
  height: 283px;
  aspect-ratio: 1920 / 283;

  @media (width <= 599px){
      width: 100%;
      height: auto;
      aspect-ratio: 390 / 180;
  }
}

.recruit_btn{
  display: block;
  margin-top: 3.2rem;

  @media (width <= 599px){
    margin-top: 2.4rem;
  }
}


/* /////recruit-RECRUIT///// */
.recruit-main{
  .m-tittle-block{
    --clamp-max: 24;
    --clamp-min: 18;
  }

  .m-text-block{
    --clamp-max: 16;
    --clamp-min: 14;

    margin-top: 2.4rem;
    line-height: 3.2rem;
    text-align: center;
  }

  @media (width <= 599px){
    .m-text-block{
      margin-top: 3.2rem;
      line-height: 2.8rem;
      word-break: keep-all;
    }
  }
}

.recruit-main__img{
  display: block;
  margin: 3.2rem 0;
}

.recruit-main__btn{
  display: grid;
  place-items: center;
}

/* /////company-COMPANY///// */
.message{
  .l-contents{
    padding-bottom: revert;
  }
}

.president-message{
  --breakpoint: 599px;
  --static-column: min(50%, 441px);
  --fluid-column: calc(var(--breakpoint) - var(--static-column));

  display: block flex;
  flex-wrap: wrap;
  gap: 5.2rem 6.4rem;
  align-items: center;

  & > :nth-child(odd) {
    flex-basis: var(--fluid-column);
    flex-grow: 9999;
    font-size: 1.6rem;
    line-height: 3.2rem;

    span{
      display: block;
      margin-top: 5.6rem;
      text-align: right;
    }
  }

  & > :nth-child(even) {
    position: relative;
    flex-basis: var(--static-column);
    flex-grow: 1;
    align-self: start;
  }

  @media (width <= 599px){
    & > :nth-child(odd) {
      word-break: normal;

      span{
        margin-top: 2.4rem;
      }
    }
  }

}

.president-message__voice{
  position: absolute;
  top: -15%;
  right: 9%;

  @media (width <= 599px){
    top: -7%;
    right: 3.5%;
  }
}

.president-message__text{
  margin-top: 2.4rem;
  font-size: 2.2rem;
  text-align: center;

  span{
    display: block;
    font-size: 1.8rem;
  }
}


.company-main{
  .m-logo-bg{
    position: absolute;
    top: 568px;
    right: 3%;
    width: 897px;
    height: 988px;
    content: "";
    background-image: url("../images/company/logo_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .l-contents{
    padding-bottom: 26rem;
  }

  @media (width <= 599px){
    .l-contents{
      padding: 4rem 0 8rem;
    }

    .m-logo-bg{
      top: 73%;
      right: -7%;
      width: 313px;
      height: 345px;
    }
  }

}

.company-profile-list{
  --breakpoint: 599px;
  --static-column: 196px;
  --fluid-column: calc(var(--breakpoint) - var(--static-column));

  display: block flex;
  flex-wrap: wrap;
  reading-flow: flex-visual;
  line-height: 3.2rem;

  --clamp-min: 16;

  & > :nth-child(even) {
    flex-basis: calc(100% - var(--static-column));
    flex-grow: 9999;
    padding: 2.4rem 0;
    border-bottom: 2px solid var(--color-gray);
  }

  & > :nth-child(odd) {
    flex-basis: var(--static-column);
    flex-grow: 1;
    padding: 2.4rem 0;
    color: var(--color-purple);
    border-bottom: 2px solid var(--color-purple);
  }

  @media (width <= 599px){
    & > :nth-child(even) {
      flex-basis: var(--fluid-column);
      padding: 0 0 2.4rem;

    }

    & > :nth-child(odd) {
      padding: 3.2rem 0 0;
      border-bottom: revert;
    }
  }

}


/* /////company-COMPANY///// */
.business-trip{
  .m-text-block{
    &:first-of-type{
      margin: 5.6rem 0 1.6rem;
    }

    @media (width <= 599px){
        word-break: normal;
    }
  }

}


/* /////投稿ページ///// */
.single-news{
  .m-tittle-block{
    --clamp-max: 24;
    --clamp-min: 18;

    margin-inline: revert;
    margin-top: 2.4rem;
  }

  .m-text-block{
    margin-top: 1.6rem;

    &:empty{
      display: none;
    }

    @media (width <= 599px){
      word-break: normal;
    }
  }

  .post-date{
    display: flex;
    column-gap: .5rem;
    align-items: center;

    &::before{
      display: inline-block;
      width: 1.6rem;
      height: 1.6rem;
      content:"";
      background-image: url("../images/common/clock.svg");
      background-repeat: no-repeat;
      background-size: contain;
    }
  }

}


/* /////contact-CONTACT///// */
.contact{
  --contact-width: min(100%, 1000px);

  .m-tittle-block:not(.-privacy){
    --clamp-max: 16;
    --clamp-min: 14;

    padding: 1rem;
    margin-inline: revert;
    color: white;
    background-color: var(--color-purple);
  }

  .m-text-block{
    --clamp-max: 16;
    --clamp-min: 14;

    margin: 1rem 0 0;
    line-height: 3.2rem;
  }

  .m-text-block__purple{
    color: var(--color-purple);
  }

  .m-logo-bg{
    position: absolute;
    right: -3%;
    bottom: -22%;
    width: 540px;
    height: 988px;
    content: "";
    background-image: url("../images/company/logo_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }

  @media (width <= 599px){
    .m-text-block{
      word-break: normal;
    }

    .m-tittle-block:not(.-privacy){
      width: 100%;
      text-align: center;
    }

    .m-logo-bg{
      right: -6%;
      bottom: -34%;
      width: 80%;
    }
  }

  table, div#wpcf7cpcnf table{
    width: var(--contact-width);
    margin-inline: auto;
  }

  tr , div#wpcf7cpcnf tr{
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  th{
    font-size: 1.6rem;
    font-weight: var(--fontweight-regular);
    text-align: left;

  }


  td{
    margin-bottom: 3.2rem;
    container-type: inline-size;
  }




}

.contact-text-list{
  --space: 4rem;

  gap: 3.2rem var(--space);
}

.contact-form{
  padding: 10rem 4rem;
  margin-top: 8rem;
  background-color: #F6F6F6;

  @media (width <= 599px){
      padding: 5rem 0;
      margin-top: 5rem;
  }
}


/* ////formまわり//// */
.form-wrapper{
  width: var(--contact-width);
  margin-inline: auto;


  .m-button-parts{
    --unit: 1.7rem;

    width: 100%;
    margin-top: 3.2rem;
    font-family: var(--font-noteSans);
    background-color: var(--color-purple);
    border-radius: revert;
    border-radius: var(--radius-sm);

    --clamp-min: 16;
  }

  @media (width <= 599px){
    width: 95%;
  }
}

.required{
  display: flex;
  align-items: center;

  &::before {
  padding: 0 0.8rem .2rem;
  margin-right: .8rem;
  font-size: 1rem;
  font-weight: var(--fontweight-extralight);
  color: white;
  content: "必須";
  background-color: var(--color-purple);
  }

  @media (width <= 599px){
    &::before {
      color: white;
    }
  }
}

::placeholder {
  font-size: 1.5rem;
  color: #999;
}

input,
textarea,
#wpcf7cpcnf td {
  width: var(--contact-width);
  padding: 1.1rem 1.5rem;
  font-size: 1.6rem;
  background-color: white;
  border: 1px solid #ddd;

  @media (width <= 599px){
    padding: 1.5rem .8rem;
  }
}

textarea {
  --min-rows: 10lh;
  --max-rows: 24lh;

  box-sizing: border-box;
  width: var(--contact-width);
  min-block-size: var(--min-rows);
  max-block-size: var(--max-rows);
  field-sizing: content;
  resize: block;
}

input[type="reset"],
input[type="submit"],
input[value="送信"] {
  line-height: 1.8;
  cursor: pointer;
}

.wpcf7-checkbox{
  display: grid;
  gap: 1.2rem;
  justify-content: start;
}

/* ラジオボタン */
.wpcf7-radio {
  display: grid;
  row-gap: .8rem;

  .wpcf7-list-item{
    display: grid !important;
    grid-template-columns: max-content 1fr;
    column-gap: 1.2rem;
    align-items: center;
    margin: revert !important;
    line-height: 3.2rem;
  }

  input[type="radio"]{
    position: relative;
    width: 23px;
    height: 23px;
    padding: revert;
    appearance: none;
    cursor: pointer;
    border: 1px solid #999;
    border-radius: 9999px;
  }

  input[type="radio"]:checked {
  background-color: #999;
  }

  input[type="radio"]:checked::after {
    position: absolute;
    inset: 0;
    width: 11px;
    height: 11px;
    margin: auto;
    content: "";
    background-color: #fff;
    border-radius: 9999px;
  }

  @media (width <= 599px){
      .wpcf7-list-item{
        line-height: 2.8rem;
      }
  }

}

/* 同意ボタン */
.wpcf7-acceptance{
  display: grid;
  place-content: center;

  .wpcf7-list-item{
    display: block;
    margin: revert !important;

      label{
        display: flex;
        gap: 1.6rem;
        align-items: center;

        input[type="checkbox"]{
          width: 15px;
        }

      }
  }

}


.wpcf7-spinner {
    position: relative;
    display: inline-block;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    visibility: hidden;
    background-color: #23282d;
    border: none;
    border-radius: 100%;
    opacity: 0.75;
}

.wpcf7 .wpcf7-submit:disabled{
  filter: grayscale(1);
}


/* 確認画面(Confirm Plus Contact Form 7 */
div#wpcf7cpcnf{
  z-index: 1;
  padding: 5rem 0 6rem;
}

div.wpcf7cp-btns{
  display: flex;
  gap: 3.2rem;
  width: min(90%, 640px);
  margin-inline: auto;
  margin-top: 8rem;

  button{
    --unit-block-size: 1.3rem;
    --unit-inline-size: 1.3rem;

    position: relative;
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    width: min(100%, 309px);
    padding: var(--unit-block-size) var(--unit-inline-size);
    margin-inline: auto;
    font-family: var(--font-noteSans);
    line-height: 1;
    color: white;
    text-align: center;
    letter-spacing: 3.20px;
    cursor: pointer;
    background-color: var(--color-purple);
    border: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
  }

  @media (width <= 599px){
      flex-wrap: wrap;
      margin-top: 4rem;
  }

}

@media (any-hover: hover){
  div.wpcf7cp-btns button:hover{
    opacity: .8;
  }
}

/* reCAPTCHA */
/* .grecaptcha-badge{left:0!important;z-index: 10;width:70px!important;transition: all var(--transition) !important;}
.grecaptcha-badge:hover{left:0!important;width:256px!important;} */


/* /////////PRIVACY POLICY//////// */
.privacy {
  height: 400px;
  padding: 4rem 2.4rem;
  margin: 4rem auto 0;
  overflow-y: scroll;
  background-color: white;
  border: 1px solid #ddd;

  &::-webkit-scrollbar {
    width: 12px;
    background-color: #ddd;
    border-radius: 15px;
  }

  &::-webkit-scrollbar-thumb {
    background-color: var(--color-purple) ;
    border-radius: 15px;
  }

  .m-text-block {
    word-break: normal;
  }

  .m-tittle-wrap.-vertical{
    gap: 0;
    margin-bottom: 4rem;

    .m-tittle-block {
    gap: 2rem;
    margin: 0 auto .8rem;
    }
  }

  @media (width <= 599px) {
    height: 325px;
  }
}

.privacy-policy-list {
  counter-reset: my-counter;
}

.privacy-policy-list__data {
  margin: 3.2rem 0 1rem;
  font-weight: bold;

  --clamp-min: 14;
  --clamp-max: 16;

  &::before {
    display: inline-block;
    content: counter(my-counter) ".";
    counter-increment: my-counter;
  }

  .m-text-block {
    margin-top: 1.6rem;
    font-weight: var(--fontweight-regular);
    line-height: 1.5;
    word-break: normal;

    --clamp-min: 13;
    --clamp-max: 15;
  }
}


/* /////footer///// */
.l-footer {
  color: white;
  background-color: var(--color-black);
  container-type: inline-size;
}

.footer-inner{
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-evenly;
  width: min(95%, 1280px);
  padding: 4.5rem 0 4rem;
  margin-inline: auto;

  @media (width <= 599px){
    width: 100%;
    padding: revert;
  }
}

.footer-main{
  width: min(100%, 275px);

  @media (width <= 599px){
      padding-top: 6.4rem;
  }
}

.footer-logo{
  display: block;
  width: 100%;

  @media (width <= 599px){
      width: min(100%, 240px);
      border: revert;
  }

}

.footer-info{
  margin-top: 2.7rem;
  text-align: center;

  --clamp-max: 14;
  --clamp-min: 12;

  span{
    font-family: var(--font-inter);
  }
}

.footer-menu {
  width: min(100%, 790px);
}

.footer-navi-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, calc((100% - var(--space)* 3) / 4));
  gap: 0 var(--space);
  margin-inline: auto;

  --space: 3rem;

  @media (width <= 599px){
      grid-template-columns: repeat(auto-fit, calc((100% - var(--space)* 1) / 2));
      align-items: center;

      --space:.1rem;
  }
}

.footer-navi-list__data {
  padding: 2rem 0;
  text-align: center;

  --clamp-max:17;
  --clamp-min: 12;

  &:nth-child(-n+4){
    border-bottom: 1px solid white;
  }

  a{
    @media (width <= 599px){
      position: relative;
      display: flex;
      gap: 1rem;
      align-items: center;
      justify-content: center;
      padding: 1.6rem 1rem;

      &::before{
        content: "";
        border-color: transparent transparent transparent white;
        border-style: solid;
        border-width: 4px 0 4px 5px;
        }
      }
    }

    @media (width <= 599px){
      height: 100%;
      padding: revert;

      &:nth-child(-n+8){
        border-bottom: 1px solid var(--color-darkgray);
      }

      &:nth-of-type(odd){
        border-right: 1px solid var(--color-darkgray);
      }
    }

}


.footer-bottom {
  padding: 1.6rem 0;
  font-family: var(--font-inter);
  text-align: center;
  background-color: var(--color-purple);

  @media (width <= 599px){
      padding: 2rem 0;
  }

}

.footer-bottom__copy-right{
  --clamp-max: 12;
  --clamp-min: 10;
}





}
/* /////@layer utility */