/* ==================================================
   共通コンポーネント
================================================== */

/* 共通タイトル */
.lcl-cmn-ttl {
  --cmnTtlColor: var(--c-black);
  --cmnEnColor: var(--c-blue);
}

.lcl-cmn-ttl.lcl-cmn-ttl--white {
  --cmnTtlColor: var(--c-white);
  --cmnEnColor: var(--c-white);
}

.lcl-cmn-ttl__txt {
  color: var(--cmnTtlColor);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.lcl-cmn-ttl__en {
  margin-top: 10px;
  color: var(--cmnEnColor);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 699px) {
  .lcl-cmn-ttl__txt {
    font-size: 20px;
  }

  .lcl-cmn-ttl__en {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* ボタン */
.btn01 {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  min-height: 60px;
  padding: 18px;
  border: 1px solid var(--c-black);
  border-radius: 10px;
  color: var(--c-black);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn01.btn01--white {
  color: var(--c-white);
  border-color: var(--c-white);
}

.btn01 .ico_svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 20px;
  height: 20px;
  margin: auto;
}

.btn01 .ico_svg .svg-ellipse {
  fill: var(--c-white);
}

.btn01 .ico_svg .svg-path {
  fill: var(--c-black);
}

@media screen and (min-width: 700px) {
  .btn01.btn01--nwhite {
    color: var(--c-white);
    border-color: var(--c-white);
  }

  .btn01:hover {
    background-color: var(--c-black);
    color: var(--c-white);
  }

  .btn01.btn01--white:hover,
  .btn01.btn01--nwhite:hover {
    background-color: var(--c-white);
    color: var(--c-black);
  }

  .btn01.btn01--white:hover .ico_arrow-right .svg-ellipse,
  .btn01.btn01--nwhite:hover .ico_arrow-right .svg-ellipse {
    fill: var(--c-black);
  }

  .btn01.btn01--white:hover .ico_arrow-right .svg-path,
  .btn01.btn01--nwhite:hover .ico_arrow-right .svg-path {
    fill: var(--c-white);
  }
}

@media screen and (max-width: 699px) {
  .btn01 {
    min-height: 56px;
    font-size: 13px;
  }

  .btn01.btn01--nwhite .ico_svg .svg-ellipse {
    fill: var(--c-black);
  }

  .btn01.btn01--nwhite .ico_svg .svg-path {
    fill: var(--c-white);
  }
}

/* ==================================================
   ヒーローセクション
================================================== */
.lcl-hero {
  position: relative;
  width: 100%;
  height: 581px;
}

.lcl-hero-slider {
  width: 100%;
  height: 100%;
}

.lcl-hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lcl-hero-slider .splide__pagination {
  position: absolute;
  bottom: 21px;
  left: 0;
  right: 0;
  margin: auto;
  gap: 15px;
}
.lcl-hero-slider .splide__pagination li {
  display: flex;
}
.lcl-hero-slider .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--c-white);
  transition: background 0.25s ease;
}
.lcl-hero-slider .splide-wrapper,
.lcl-hero-slider .splide__track,
.lcl-hero-slider .splide__track picture {
  height: 100%;
}
.lcl-hero-slider .splide__pagination__page.is-active {
  background-color: var(--c-blue);
}
.lcl-hero__in {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: auto;
  pointer-events: none;
}
.lcl-hero-cnt {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: fit-content;
  padding: 25px 25px 40px;
  height: 100%;
  color: var(--c-white);
}

.lcl-hero-cnt__en {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.lcl-hero-cnt__sub {
  margin-top: auto;
  color: var(--c-white);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.8;
  letter-spacing: 0;
}
.lcl-hero-cnt__copy {
  margin-top: 6px;
  color: var(--c-white);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.2;
  letter-spacing: 0;
}
.lcl-hero-cnt__copy span {
  letter-spacing: -0.5em;
}
.lcl-hero-bnr {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.lcl-hero-bnr__block {
  position: relative;
  display: flex;
  pointer-events: auto;
}
.lcl-hero-bnr__block:not(:first-of-type) {
  margin-top: 10px;
} /* :not(:first-of-type) ------------ */
.lcl-hero-bnr__link {
  display: block;
  width: 282px;
}
.lcl-hero-bnr__close {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 699px) {
  .lcl-hero {
    height: 510px;
  }
  .lcl-hero-slider .splide__pagination {
    right: auto;
    left: 20px;
    gap: 10px;
  }
  .lcl-hero-slider .splide__pagination__page {
    width: 8px;
    height: 8px;
  }
  .lcl-hero-cnt {
    justify-content: flex-start;
    padding: 15px;
  }
  .lcl-hero-cnt__en {
    font-size: 12px;
  }
  .lcl-hero-cnt__sub {
    margin-top: 7px;
    font-size: 18px;
    line-height: 1.5;
  }
  .lcl-hero-cnt__copy {
    margin-top: 2px;
    font-size: 40px;
    line-height: 1.3;
  }
  .lcl-hero-bnr {
    bottom: 10px;
    right: 10px;
  }
  .lcl-hero-bnr__link {
    width: 210px;
  }
  .lcl-hero-bnr__close {
    top: -8px;
    right: -6px;
    width: 26px;
    height: 26px;
  }
} /* SP only ------------ */

/* ==================================================
   ニュースセクション
================================================== */
.lcl-news__in {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 12px 30px;
}
.lcl-news-top {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.lcl-news-top__block {
  display: flex;
}
.lcl-news-top__block:not(:first-of-type) {
  margin-top: 5px;
} /* :not(:first-of-type) ------------ */
.lcl-news-top__block.lcl-news-top__block--important {
  --bgnews01: #dc0000;
  --bgnews02: #ffecec;
}
.lcl-news-top__block.lcl-news-top__block--owners {
  --bgnews01: var(--c-blue);
  --bgnews02: #f2f5fc;
}
.lcl-news-top__ttl {
  width: 225px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bgnews01);
  color: var(--c-white);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}
.lcl-news-top__area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  padding: 12px 20px;
  background-color: var(--bgnews02);
}
.lcl-news-top__link {
  display: flex;
  position: relative;
  width: 100%;
  padding-right: 24px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
}
.lcl-news-top__link:not(:first-of-type) {
  margin-top: 3px;
} /* :not(:first-of-type) ------------ */
@media screen and (min-width: 700px) {
  .lcl-news-top__link:hover {
    text-decoration: underline;
  }
} /* PC only ------------ */
.lcl-news-top__link .ico_svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 19px;
  height: 19px;
  margin: auto;
}
.lcl-news-top__link .ico_svg .svg-ellipse01 {
  fill: var(--c-black);
}
.lcl-news-top__link .ico_svg .svg-path01 {
  fill: var(--c-white);
}
@media screen and (min-width: 700px) {
  .lcl-news-top__link:hover .ico_svg .svg-ellipse01 {
    fill: var(--bgnews01);
  }
  .lcl-news-top__txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
} /* PC only ------------ */
.lcl-news-top + .lcl-news-main {
  margin-top: 60px;
}
.lcl-news-main__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-darkgray);
}
.lcl-news-main__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.lcl-news-main__link .ico_svg {
  width: 19px;
}
.lcl-news-main__link .ico_svg .svg-ellipse01 {
  fill: var(--c-black);
}
.lcl-news-main__link .ico_svg .svg-path01 {
  fill: var(--c-white);
}
@media screen and (min-width: 700px) {
  .lcl-news-main__link:hover {
    text-decoration: none;
    color: var(--c-blue);
  }
  .lcl-news-main__link:hover .ico_svg .svg-ellipse01 {
    fill: var(--c-blue);
  }
} /* PC only ------------ */
.lcl-news-main__cnt {
  display: flex;
  gap: 36px;
  padding: 30px 20px;
  border-bottom: 1px solid var(--c-darkgray);
}
.lcl-news-main-topic {
  width: 380px;
  background-color: #f2f5fc;
  padding: 18px 16px;
}
.lcl-news-main-topic__en {
  color: var(--c-blue);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.lcl-news-main-topic__slider {
  position: relative;
  width: 282px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
.lcl-news-main-topic__slider .splide__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.lcl-news-main-topic__slider li {
  display: flex;
}
.lcl-news-main-topic__slider .splide__pagination__page {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c-lightgray);
  transition: background 0.25s ease;
}
.lcl-news-main-topic__slider .splide__pagination__page.is-active {
  background-color: var(--c-blue);
}
.lcl-news-main-topic__slider .splide__arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -100%;
  right: -100%;
  width: calc(100% + 65px);
  margin: auto;
  pointer-events: none;
}
.lcl-news-main-topic__slider .splide__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  width: 25px;
  height: 25px;
}
.lcl-news-main-topic__slider .splide__arrow .ico_arrow-right .svg-ellipse {
  fill: var(--c-white);
}
.lcl-news-main-topic__slider .splide__arrow .ico_arrow-right .svg-path {
  fill: var(--c-black);
}
.lcl-news-main-topic__slider .splide__arrow.splide__arrow--prev {
  transform: scale(-1, 1);
}
.lcl-news-main-topic__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
@media screen and (min-width: 700px) {
  .lcl-news-main-topic__slider .splide__arrow:hover .svg-ellipse {
    fill: var(--c-blue);
  }
  .lcl-news-main-topic__slider .splide__arrow:hover .svg-path {
    fill: var(--c-white);
  }
  .lcl-news-main-topic__link:hover .lcl-news-main-topic__txt {
    text-decoration: none;
  }
} /* PC only ------------ */
.lcl-news-main-topic__fig {
  width: 115px;
}
.lcl-news-main-topic__fig img{
  width: 100%;
  aspect-ratio: 1/1.618;
  object-fit: cover;
}
.lcl-news-main-topic__area {
  flex: 1;
}
.lcl-news-main-topic__date {
  color: var(--c-blue);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.lcl-news-main-topic__txt {
  display: -webkit-box;
  text-decoration: underline;
  min-height: 0;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  margin-top: 4px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
}
.lcl-news-main-other {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 40px;
  grid-row-gap: 25px;
}
.lcl-news-main-other__item {
  position: relative;
}
@media screen and (min-width: 700px) {
  .lcl-news-main-other__item:not(:nth-of-type(3n + 1))::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--c-darkgray);
  } /* before ------------*/
} /* PC only ------------ */
.lcl-news-main-other__link {
  position: relative;
  display: block;
  padding-bottom: 27px;
}
@media screen and (min-width: 700px) {
  .lcl-news-main-other__link:hover .ico_arrow-right .svg-ellipse {
    fill: var(--c-blue);
  }
  .lcl-news-main-other__link:hover .ico_arrow-right .svg-path {
    fill: var(--c-white);
  }
  .lcl-news-main-other__link:hover .lcl-news-main-other__txt {
    text-decoration: none;
  }
} /* PC only ------------ */
.lcl-news-main-other__link .ico_arrow-right {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-left: auto;
  width: 25px;
  height: 25px;
  display: block;
}
.lcl-news-main-other__link .ico_arrow-right .svg-ellipse {
  fill: var(--c-white);
}
.lcl-news-main-other__link .ico_arrow-right .svg-path {
  fill: var(--c-black);
}
.lcl-news-main-other__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--c-lightgray);
}
.lcl-news-main-other__date {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.lcl-news-main-other__cat {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid var(--c-black);
  width: fit-content;
  min-width: 80px;
  border-radius: 100vw;
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.lcl-news-main-other__txt {
  display: -webkit-box;
  text-decoration: underline;
  min-height: 0;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--c-blue);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 699px) {
  .lcl-news__in {
    max-width: none;
    padding: 30px 15px 40px;
  }
  .lcl-news-top__txt {
    display: -webkit-box;
    min-height: 0;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lcl-news-top__ttl {
    width: 100px;
    padding: 10px 15px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
  }
  .lcl-news-top__area {
    padding: 12px 12px 14px;
  }
  .lcl-news-top__link {
    padding-right: 30px;
    font-size: 13px;
  }
  .lcl-news-top__link .ico_svg {
    width: 16px;
    height: 16px;
  }
  .lcl-news-main__link {
    gap: 5px;
    font-size: 12px;
  }
  .lcl-news-main__link .ico_svg {
    width: 16px;
  }
  .lcl-news-main__cnt {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0 40px;
  }
  .lcl-news-main-topic {
    width: 100%;
    padding: 18px 15px;
  }
  .lcl-news-main-topic__slider {
    width: 247px;
  }
  .lcl-news-main-topic__fig {
    width: 80px;
  }
  .lcl-news-main-topic__date {
    font-size: 13px;
  }
  .lcl-news-main-topic__txt {
    font-size: 13px;
  }
  .lcl-news-main-other {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  .lcl-news-main-other__item:not(:first-of-type)::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px dashed var(--c-darkgray);
    margin: auto;
  }
  .lcl-news-main-other__link {
    padding-bottom: 0;
    padding-right: 30px;
  }
  .lcl-news-main-other__link .ico_svg {
    top: 28px;
    bottom: 0;
  }
  .lcl-news-main-other__info {
    justify-content: flex-start;
    padding-bottom: 0px;
    margin-bottom: 8px;
    border-bottom: none;
  }
  .lcl-news-main-other__txt {
    -webkit-line-clamp: 2;
    font-size: 13px;
  }
} /* SP only ------------ */

/* ==================================================
   サステナビリティ
================================================== */
.lcl-sustainable {
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 12px 60px;
}

.lcl-sustainable__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  width: 100%;
  height: 239px;
  padding: 20px 75px;
  color: var(--c-white);
}
@media screen and (min-width: 700px) {
  .lcl-sustainable__link:hover .lcl-sustainable__linktxt::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .lcl-sustainable__link:hover::before {
    filter: brightness(0.9);
    transform: scale(1.05);
  }
  .lcl-sustainable__link:hover .lcl-sustainable__icon {
    background-color: transparent;
  }
  .lcl-sustainable__link:hover .lcl-sustainable__icon .ico_arrow-right .svg-path {
    fill: var(--c-white);
  }
} /* PC only ------------ */
.lcl-sustainable__link::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/sustainable/bg.jpg) center / cover no-repeat;
  transition: transform 0.3s ease, filter 0.3s ease;
} /* before ------------*/
.lcl-sustainable__ttl {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0;
}
.lcl-sustainable__txt {
  width: 393px;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.lcl-sustainable__area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  position: absolute;
  right: 30px;
  bottom: 20px;
}
.lcl-sustainable__linktxt {
  position: relative;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lcl-sustainable__linktxt::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.lcl-sustainable__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-white);
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.lcl-sustainable__icon .ico_svg.ico_arrow-right {
  display: block;
  width: 24px;
  height: 24px;
}
.lcl-sustainable__icon .ico_svg.ico_arrow-right .svg-path {
  fill: var(--c-black);
}
@media screen and (max-width: 699px) {
  .lcl-sustainable {
    padding-inline: 15px;
  }
  .lcl-sustainable__ttl {
    font-size: 20px;
  }
  .lcl-sustainable__txt {
    font-size: 13px;
  }
  .lcl-sustainable__link {
    padding: 23px 25px;
  }
  .lcl-sustainable__link::before {
    background: url(../img/sp/sustainable/bg.jpg) center / cover no-repeat;
  }
  .lcl-sustainable__txt {
    width: 159px;
  }
  .lcl-sustainable__area {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
  }
  .lcl-sustainable__linktxt {
    font-size: 13px;
  }
  .lcl-sustainable__icon {
    width: 40px;
    height: 40px;
  }
  .lcl-sustainable__icon .ico_svg.ico_arrow-right {
    width: 20px;
    height: 20px;
  }
} /* SP only ------------ */

/* ==================================================
   リクルートセクション
================================================== */
.lcl-recruit {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.lcl-recruit::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  transition: transform 0.3s ease;
  background: url(../img/recruit/bg.jpg) center / cover no-repeat;
}
.lcl-recruit__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1184px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 12px 50px;
}
.lcl-recruit__copy {
  width: 53px;
  margin-left: 30px;
  display: block;
  color: var(--c-white);
  writing-mode: vertical-lr;
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
}
.lcl-recruit__copy span {
  letter-spacing: -0.5em;
}
.lcl-recruit__cnt {
  width: 320px;
  color: var(--c-white);
}
.lcl-recruit__txt {
  margin-top: 30px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.lcl-recruit__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  gap: 14px;
  margin-top: 36px;
}
@media screen and (min-width: 700px) {
  .lcl-recruit__link {
  }
  .lcl-recruit:hover::before {
    transform: scale(1.05);
  }
  .lcl-recruit:hover .lcl-recruit__linktxt::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .lcl-recruit:hover .lcl-recruit__icon {
    background-color: transparent;
  }
  .lcl-recruit:hover .lcl-recruit__icon .svg-path {
    fill: var(--c-white);
  }
} /* PC only ------------ */
.lcl-recruit__linktxt {
  position: relative;
  display: block;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lcl-recruit__linktxt::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.lcl-recruit__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--c-white);
  background-color: var(--c-white);
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.lcl-recruit__icon .ico_svg.ico_arrow-right {
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 699px) {
  .lcl-recruit::before {
    background: url(../img/sp/recruit/bg.jpg) center / cover no-repeat;
  }
  .lcl-recruit__in {
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row-reverse;
    max-width: none;
    padding: 20px 25px 23px;
  }
  .lcl-recruit__copy {
    width: 37px;
    font-size: 36px;
  }
  .lcl-recruit__cnt {
    width: 200px;
    padding-top: 59px;
  }
  .lcl-recruit__txt {
    margin-top: 20px;
    font-size: 13px;
  }
  .lcl-recruit__link {
    margin-top: 16px;
  }
  .lcl-recruit__linktxt {
    font-size: 13px;
  }
  .lcl-recruit__icon {
    width: 40px;
    height: 40px;
  }
  .lcl-recruit__icon .ico_svg.ico_arrow-right {
    width: 20px;
    height: 20px;
  }
} /* SP only ------------ */

/* ==================================================
   ビジネスセクション
================================================== */
.lcl-business__in {
  position: relative;
  margin-block: calc((max(612px, 100vh) - 100px - 612px) / -2);
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
  padding: 102px 50px 60px;
}
@media screen and (min-width: 700px) {
  .lcl-business__headwrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .lcl-business__headelm {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 100px;
    width: 100%;
    height: calc(max(612px, 100vh) - 100px);
    pointer-events: none;
  }
} /* PC only ------------ */
.lcl-business__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .lcl-business__head {
    height: 612px;
  }
} /* PC only ------------ */
.lcl-business__area {
  width: 546px;
  margin-right: 40px;
}
.lcl-business__copy {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
  letter-spacing: 0;
}
.lcl-business__txt {
  margin-top: 28px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.lcl-business-main {
  position: relative;
}
.lcl-business-main__countwrap {
  position: absolute;
  top: 0;
  right: -34px;
  width: 20px;
  height: 100%;
}
.lcl-business-main__count {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
  right: 0;
  margin: auto;
  height: calc(max(612px, 100vh) - 100px);
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (min-width: 700px) {
  .lcl-business-main__count {
    padding-top: 212px;
  }
} /* PC only ------------ */
.lcl-business-main__num {
  color: #3770c5;
}
.lcl-business-main__max {
  position: relative;
}
.lcl-business-main__max::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -100%;
  right: -100%;
  height: 1px;
  width: 14px;
  border-top: 1px dashed #8d8f93;
  margin: auto;
} /* before ------------*/
.lcl-business-main__wrap {
  width: 100%;
}
.lcl-business-main__block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
  width: 100%;
  height: calc(max(612px, 100vh) - 100px);
  pointer-events: none;
  overflow: hidden;
}
.lcl-business-main__in {
  position: relative;
  width: 100%;
  height: 612px;
  pointer-events: none;
}
.lcl-business-main__fig {
  position: absolute;
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 700px) {
  .lcl-business-main__fig {
    top: auto;
    bottom: 0;
  }
} /* PC only ------------ */
.lcl-business-main__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lcl-business-main__cnt {
  width: 472px;
  position: absolute;
  top: 142px;
  left: 60px;
  color: var(--c-white);
  pointer-events: auto;
}
@media screen and (min-width: 700px) {
  .lcl-business-main__cnt {
    top: 354px;
  }
} /* PC only ------------ */
.lcl-business-main__ttl {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.lcl-business-main__txt {
  margin-top: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.lcl-business-main__link {
  margin-top: 15px;
}
@media screen and (max-width: 699px) {
  .lcl-business {
  }
  .lcl-business__in {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    width: 100%;
    padding: 50px 15px 60px;
  }
  .lcl-business__head {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .lcl-business__area {
    width: 100%;
    padding-top: 30px;
    margin-right: 0;
  }
  .lcl-business__copy {
    font-size: 24px;
    line-height: 1.5;
  }
  .lcl-business__txt {
    margin-top: 12px;
    font-size: 14px;
  }

  .lcl-business-main {
    position: relative;
  }
  .lcl-business-main__countwrap {
    display: none;
  }
  .lcl-business-main__wrap {
    width: 100%;
    margin-block: 0;
    margin-top: 50px;
  }
  .lcl-business-main__block {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    pointer-events: auto;
  }
  .lcl-business-main__block:not(:first-of-type) {
    margin-top: 40px;
  } /* :not(:first-of-type) ------------ */
  .lcl-business-main__in {
    position: relative;
    width: 100%;
    height: auto;
  }
  .lcl-business-main__fig {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
  }
  .lcl-business-main__fig::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 39px;
    height: 57px;
  }
  .lcl-business-main__block:nth-of-type(1) .lcl-business-main__fig::before {
    background: url(../img/sp/business/num_01.png) center / cover no-repeat;
  }
  .lcl-business-main__block:nth-of-type(2) .lcl-business-main__fig::before {
    background: url(../img/sp/business/num_02.png) center / cover no-repeat;
  }
  .lcl-business-main__block:nth-of-type(3) .lcl-business-main__fig::before {
    background: url(../img/sp/business/num_03.png) center / cover no-repeat;
  }
  .lcl-business-main__block:nth-of-type(4) .lcl-business-main__fig::before {
    background: url(../img/sp/business/num_04.png) center / cover no-repeat;
  }
  .lcl-business-main__block:nth-of-type(5) .lcl-business-main__fig::before {
    background: url(../img/sp/business/num_05.png) center / cover no-repeat;
  }
  .lcl-business-main__block:nth-of-type(6) .lcl-business-main__fig::before {
    background: url(../img/sp/business/num_06.png) center / cover no-repeat;
  }
  .lcl-business-main__block:nth-of-type(7) .lcl-business-main__fig::before {
    background: url(../img/sp/business/num_07.png) center / cover no-repeat;
  }
  .lcl-business-main__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .lcl-business-main__cnt {
    width: 100%;
    position: relative;
    margin-top: 20px;
    top: auto;
    left: auto;
    color: var(--c-black);
  }
  .lcl-business-main__ttl {
    font-size: 20px;
  }
  .lcl-business-main__txt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .lcl-business-main__link {
    margin-top: 20px;
  }
} /* SP only ------------ */

/* ==================================================
   過去実績セクション
================================================== */
.lcl-past {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 361px;
  overflow: hidden;
}
.lcl-past::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/past/bg.jpg) center / cover no-repeat;
  transition: transform 0.3s ease;
} /* before ------------*/
.lcl-past__cnt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.lcl-past__en {
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.lcl-past__ttl {
  margin-top: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
}
.lcl-past__link {
  margin-top: 30px;
}
@media screen and (max-width: 699px) {
  .lcl-past {
    height: 416px;
  }
  .lcl-past::before {
    background: url(../img/sp/past/bg.jpg) center / cover no-repeat;
  }
  .lcl-past__en {
    font-size: 12px;
  }
  .lcl-past__ttl {
    font-size: 32px;
    letter-spacing: 0.4em;
  }
} /* SP only ------------ */

/* ==================================================
   会社情報セクション
================================================== */
.lcl-company {
  border-bottom: 1px solid var(--c-darkgray);
  margin-bottom: 15px;
}
.lcl-company__in {
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 12px;
}
.lcl-company__sep {
  display: flex;
  justify-content: center;
  gap: 47px;
}
.lcl-company__cnt {
  flex: 1;
  padding-top: 55px;
}
.lcl-company__copy {
  font-weight: 700;
  font-size: 42px;
  line-height: 1.3;
  letter-spacing: 0;
}
.lcl-company__txt {
  margin-top: 36px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.lcl-company__btnlist {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.lcl-company__link {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lcl-company__fig {
  width: calc(640 / 1200 * 100%);
}
@media screen and (max-width: 699px) {
  .lcl-company {
    border-bottom: 1px solid var(--c-darkgray);
    margin-bottom: 0;
  }
  .lcl-company__in {
    max-width: none;
    padding: 80px 15px;
  }
  .lcl-company__sep {
    flex-direction: column-reverse;
    gap: 30px;
    margin-top: 30px;
  }
  .lcl-company__cnt {
    padding-top: 0;
  }
  .lcl-company__copy {
    font-size: 24px;
    line-height: 1.5;
  }
  .lcl-company__txt {
    margin-top: 12px;
    font-size: 14px;
  }
  .lcl-company__btnlist {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
  }
  .lcl-company__link {
    font-size: 13px;
  }
  .lcl-company__fig {
    width: 100%;
  }
} /* SP only ------------ */

/* ==================================================
   ナビゲーション
================================================== */
.lcl-nav__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media screen and (min-width: 700px) {
  .lcl-nav__link:has(.lcl-nav__bg--sdgs)::before {
    background-color: #fff;
  }
  .lcl-nav__item--sdgs {
    width: 100%;
    background-color: #fff;
  }
  .lcl-nav__bg.lcl-nav__bg--sdgs {
    top: 0;
    bottom: 0;
    right: 80px;
    left: auto;
    margin: auto;
    width: 806px;
    height: auto;
    aspect-ratio: 806 / 126;
  }
} /* PC only ------------ */
@media screen and (min-width: 1199px) and (max-width: 1300px) {
  .lcl-nav__bg.lcl-nav__bg--sdgs {
    top: 0;
    bottom: 0;
    right: calc(80 / 1300 * 100%);
    left: auto;
    margin: auto;
    width: calc(806 / 1300 * 100%);
  }
}
@media screen and (min-width: 699px) and (max-width: 1200px) {
  .lcl-nav__bg.lcl-nav__bg--sdgs {
    top: 0;
    bottom: 0;
    right: calc(80 / 1300 * 100%);
    left: auto;
    margin: auto;
    width: calc(720 / 1300 * 100%);
  }
}
.lcl-nav__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lcl-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.lcl-nav__item {
}
.lcl-nav__item.lcl-nav__item--sdgs .lcl-nav__icon {
  border-color: var(--c-lightgray);
}
.lcl-nav__item.lcl-nav__item--sdgs .lcl-nav__link {
  min-height: 170px;
}
.lcl-nav__item.lcl-nav__item--sdgs .lcl-nav__lead {
  color: #3770c5;
}
.lcl-nav__item.lcl-nav__item--sdgs .lcl-nav__txt {
  margin-top: 20px;
  color: var(--c-black);
}
@media screen and (min-width: 700px) {
  .lcl-nav__item.lcl-nav__item--sdgs .lcl-nav__area {
    width: 356px;
  }
  .lcl-nav__item.lcl-nav__item--wide {
    grid-column: span 2;
  }
} /* PC only ------------ */
.lcl-nav__link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 220px;
  height: 100%;
  --navColor: var(--c-black);
  color: var(--c-white);
  border: 2px solid var(--c-white);
  padding: 20px 90px 40px 40px;
}
.lcl-nav__link--athletics .lcl-nav__bg img {
  object-position: 30% 50%;
}
.lcl-nav__link.lcl-nav__link--large {
  align-items: flex-end;
  min-height: 280px;
  padding-bottom: 40px;
}
@media screen and (min-width: 700px) {
  .lcl-nav__link:hover::before {
    filter: brightness(0.9);
    transform: scale(1.1);
  }
  .lcl-nav__link:hover .lcl-nav__bg {
    filter: brightness(0.9);
    transform: scale(1.05);
  }
  .lcl-nav__link.lcl-nav__link--download:hover::before {
    opacity: 0.9;
  }
  .lcl-nav__link:hover .lcl-nav__icon {
    background-color: transparent;
  }
  .lcl-nav__link:hover .lcl-nav__icon .svg-path {
    fill: var(--c-white);
  }
} /* PC only ------------ */

.lcl-nav__link::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navColor);
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
} /* before ------------*/
.lcl-nav__link.lcl-nav__link--contact {
  --navColor: var(--c-blue);
}
@media screen and (min-width: 700px) {
  .lcl-nav__link.lcl-nav__link--contact,
  .lcl-nav__link.lcl-nav__link--download {
    min-height: 220px;
    align-items: center;
    padding-bottom: 20px;
  }
  .lcl-nav__link.lcl-nav__link--contact .lcl-nav__area,
  .lcl-nav__link.lcl-nav__link--download .lcl-nav__area {
    width: 356px;
  }
} /* PC only ------------ */
.lcl-nav__area {
  width: 418px;
}
.lcl-nav__lead {
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.lcl-nav__en {
  margin-top: 10px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.lcl-nav__txt {
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.lcl-nav__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 48px;
  height: 48px;
  background-color: var(--c-white);
  border-radius: 50%;
  border: 1px solid var(--c-white);
  transition: background-color 0.3s ease;
}
.lcl-nav__icon .ico_arrow-right {
  display: block;
  width: 24px;
  height: 24px;
}
.lcl-nav__icon .ico_arrow-right .svg-path {
  fill: var(--c-black);
}
.lcl-nav-ground {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6%;
  margin: auto;
  width: 168px;
  height: 164px;

}
@media screen and (max-width: 699px) {
  .lcl-nav-ground {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5%;
    margin: auto;
    width: 74px;
    height: 143px;
  }

} /* SP only ------------ */

@media screen and (max-width: 699px) {
  .lcl-nav__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: none;
  }
  .lcl-nav__item.lcl-nav__item--sdgs .lcl-nav__link {
    min-height: 170px;
    align-items: flex-start;
    padding-top: 20px;
  }
  .lcl-nav__item.lcl-nav__item--sdgs .lcl-nav__txt {
    margin-top: 15px;
  }
  .lcl-nav__link {
    align-items: flex-end;
    min-height: 156px;
    border-width: 1px;
    padding: 30px 76px 30px 20px;
  }
  .lcl-nav__link.lcl-nav__link--large {
    min-height: 190px;
    padding-bottom: 20px;
  }
  .lcl-nav__link.lcl-nav__link--athletics {
    min-height: 188px;
  }
  .lcl-nav__icon {
    right: 20px;
    width: 27px;
    height: 27px;
  }
  .lcl-nav__icon .ico_arrow-right {
    width: 14px;
    height: 14px;
  }
  .lcl-nav__lead {
    font-size: 20px;
  }
  .lcl-nav__en {
    margin-top: 5px;
    font-size: 12px;
  }
  .lcl-nav__txt {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
} /* SP only ------------ */

.lcl-btmlink {
  padding-block: 60px;
}
.lcl-btmlink__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.lcl-btmlink__list + .lcl-btmlink__list {
  margin-top: 14px;
}
.lcl-btmlink__list.lcl-btmlink__list--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.lcl-btmlink__list.lcl-btmlink__list--col4 {
  grid-template-columns: repeat(4, 1fr);
}
.lcl-btmlink__list.lcl-btmlink__list--col3 .lcl-btmlink__txt {
  font-size: 14px;
}
.lcl-btmlink__item {
}
.lcl-btmlink__link {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  border: 1px solid var(--c-black);
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 700px) {
  .lcl-btmlink__link:hover {
    /* color: var(--c-blue); */
    color: var(--c-white);
    background-color: var(--c-blue);
  }
  .lcl-btmlink__link:hover .lcl-btmlink__fig img {
    transform: scale(1.1);
  }
  .lcl-btmlink__link:hover .ico_arrow-right .svg-ellipse {
    fill: var(--c-white);
  }
  .lcl-btmlink__link:hover .ico_arrow-right .svg-path {
    fill: var(--c-blue);
  }
} /* PC only ------------ */

.lcl-btmlink__link:has(.lcl-btmlink__fig) .lcl-btmlink__cnt {
  padding-left: 0;
}
.lcl-btmlink__fig {
  width: 173px;
  overflow: hidden;
}
.lcl-btmlink__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lcl-btmlink__cnt {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  padding: 11px 24px;
  min-height: 70px;
}
.lcl-btmlink__cnt .ico_arrow-right {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  width: 20px;
  height: 20px;
}
.lcl-btmlink__cnt .ico_arrow-right .svg-ellipse {
  fill: var(--c-white);
}
.lcl-btmlink__cnt .ico_arrow-right .svg-path {
  fill: var(--c-black);
}
.lcl-btmlink__txt {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 699px) {
  .lcl-btmlink {
    padding: 50px 25px 70px;
  }
  .lcl-btmlink__list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    width: 100%;
  }
  .lcl-btmlink__list + .lcl-btmlink__list {
    margin-top: 8px;
  }
  .lcl-btmlink__list.lcl-btmlink__list--col3,
  .lcl-btmlink__list.lcl-btmlink__list--col4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .lcl-btmlink__link {
    gap: 17px;
  }
  .lcl-btmlink__link:has(.lcl-btmlink__fig) .lcl-btmlink__cnt {
    padding-left: 0;
  }
  .lcl-btmlink__fig {
    width: 114px;
    overflow: hidden;
  }
  .lcl-btmlink__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  .lcl-btmlink__cnt {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px;
  }
  .lcl-btmlink__list.lcl-btmlink__list--col3 .lcl-btmlink__link {
    min-height: 70px;
  }
  .lcl-btmlink__list.lcl-btmlink__list--col3 .lcl-btmlink__txt {
    font-size: 13px;
  }
  .lcl-btmlink__txt {
    font-size: 13px;
    line-height: 1.5;
  }
} /* SP only ------------ */
