@charset "utf-8";

/*===================
loading
===================*/

body {
  position: relative;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: #0f1c3e;
  z-index: 100;
}
#loading {
  opacity: 1;
  visibility: visible;
  transition: opacity 2s ease, visibility 2s ease; /* JS の 2000ms と合わせる */
}
#loading.fadeout {
  opacity: 0;
  pointer-events: none;

  visibility: hidden;
}
/* ローディング完了後 */
body.loaded #loading {
  pointer-events: none;
}

.loading__wrap {
  width: 100%;
  height: 100%;
  /* display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column; */
}
.loading__box {
  display: block;
  background: #184e3d;
  width: 100%;
  height: 25%;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.8s ease;
  position: relative;
  z-index: 102;
}
.loading__box.ready {
  opacity: 1;
  transform: translateX(0px);
}
.loading__text {
  opacity: 0;

  width: 101px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 101;
}
.loading__logo {
  opacity: 0;
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 103;
}
@media screen and (max-width: 750px) {
  .loading__text {
    left: auto;
    right: 22px;
    top: auto;
    bottom: 47px;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
  }
  .loading__logo {
    width: 202px;
  }
}

/* 768px以下の時にスクロールするとmenu表示↓ */
@media screen and (max-width: 768px) {
  body.home .ham {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  body.home .ham.is-show {
    opacity: 1;
    pointer-events: auto;
  }
}

/*===================
fv
===================*/
.fv {
  width: 100%;
  height: 100vh;
  min-height: 750px;
}
.fv__inner {
  width: 100%;
  height: 100%;
  padding: 0 30px 0 37px;
  position: relative;
}
.fv__imgWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.fv_swiper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fv__catch {
  width: 145px;
  position: absolute;
  top: 35px;
  left: 40px;
  z-index: 1;
}
.fv__btm {
  width: 252px;
  position: absolute;
  left: 40px;
  bottom: 40px;
  text-align: left;
}
.fv__btmLogo {
  margin-bottom: 12px;
}
.fv__btmText {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #fff;
}
.fv__slideImg04 {
  object-position: 46% top;
}
.fv__slideImg05 {
  object-position: 68% top;
}

/* スクロールダウン */
.fv__scroll {
  position: absolute;
  bottom: 0;
  right: 3.15%;
  width: 20px;
  height: 97px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.fv__scrollText {
  width: fit-content;
  font-family: "AvenirLTPro-Medium";
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.scroll_down {
  position: relative;
  width: 2px;
  height: 100%;
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
}
.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 0 97px;
  transition: 0.2s;
  overflow: hidden;
}
.scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #ddd;
}
.scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #21212197;
}

#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width: 750px) {
  .fv__catch {
    width: 24vw;
    top: 23px;
    left: 23px;
  }
  .fv__btm {
    width: 202px;
    left: 23px;
    bottom: 30px;
  }
  .fv__scroll {
    right: 23px;
  }
}

/*===================
intro
===================*/
.intro {
  padding-top: 90px;
  background-color: #0f1c3e;
  color: #fff;
  position: relative;
}
.intro__bg {
  width: 100%;
  height: 100%;
  position: sticky;
  top: 0;
  left: 0;
  /* z-index: 0; */
}
/* .intro__top.bg-stop .intro__bg{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
} */
.intro__bgCover {
  position: relative;
  width: 100%;
  height: 100%;
}
.intro__top .intro__bg .intro__bgCover::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0f1c3edf;
  z-index: 1;
  opacity: 0;
  transition: 1.2s;
}
.intro__top.bg-stop .intro__bg .intro__bgCover::after {
  opacity: 1;
}
.slide-intro1 {
  display: none;
  margin-bottom: 19px;
}
.slide-intro2 {
  display: none;
  margin-bottom: 19px;
}
.intro-item {
  width: 253px;
  margin-right: 19px;
}

.intro__topContents {
  padding-top: 0;
  padding-bottom: 300px;
  position: relative;
  z-index: 2;
}
.intro__ttl--en {
  position: absolute;
  /* top: 100vh; */
  top: 7px;
  left: 0;
  margin-left: calc((100vw - 900px) / 2);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.intro__topBox {
  width: 510px;
  margin: 0 auto 145px;
}
.intro__topText {
  margin-bottom: 70px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: -0.04em;
  color: #fff;
}
.intro__topText:last-child {
  margin-bottom: 0;
}
.intro__topCatch {
  width: 153px;
  margin: 0 auto;
}

.intro__btmWrap {
  position: relative;
  background-color: #0f1c3e;
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 2;
}
.intro__btmInner {
  position: relative;
}
.slide-list {
  display: none;
  /* display: flex; */
}
.slide-items {
  margin-right: 32px;
  width: 415px;
  object-fit: cover;
}
.intro__btmText {
  width: 100%;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -o-transform: translateY(50%);
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 960px) {
  .intro__ttl--en {
    margin-left: 10px;
  }
}

@media screen and (max-width: 750px) {
  .intro {
    padding-top: 20.53vw;
    /* padding-bottom: 61.06vw; */
  }
  .intro__ttl--en {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    margin: 0;
    /* top: calc(100vh - 100px); */
    top: 0;
    font-size: 13px;
  }
  .slide-intro1 {
    margin-bottom: 15px;
  }
  .slide-intro2 {
    margin-bottom: 15px;
  }
  .intro-item {
    width: 196px;
    margin-right: 17px;
  }
  .intro__topContents {
    width: calc(100% - 44px);
    padding-top: 105px;

    margin: 0 auto;
    padding-bottom: 200px;
  }
  .intro__topBox {
    width: 100%;
    margin-bottom: 21.33vw;
  }
  .intro__topText {
    margin-bottom: 39px;
    font-size: 16px;
    line-height: 2.12;
  }
  .intro__topCatch {
    width: 23.73vw;
  }

  .intro__btmWrap {
    padding-bottom: 61.06vw;
  }

  .slide-items {
    margin-right: 18px;
    width: 61.4vw;
  }
  .intro__btmText {
    bottom: -9.866vw;
  }
}

@media screen and (max-width: 750px) {
  .intro__topText {
    font-size: 15px;
  }
}

/*===================
/* business
===================*/
.business {
  padding-top: 108px;
  padding-bottom: 67px;
  background-color: #0f1c3e;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.business__wrap01 {
  margin-bottom: 90px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.business__ttl {
  margin-bottom: 54px;
}
.business__ttl--en {
  margin-bottom: 9px;
}
.business__ttl--ja {
  color: #fff;
}
.business__textWrap {
  width: 50%;
  min-width: 375px;
}

.business__text {
  margin-bottom: 37px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.13;
}
.business__wrap01--right {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  border-radius: 0 0 0 40px;
  overflow: hidden;
}
.business__wrap01--left {
  z-index: 1;
}
.business__wrap02 {
  max-width: 1105px;
  /* display: flex;
  justify-content: space-between;
  align-items: start; */
}
.business__wrap02--left {
  margin-top: 32px;
  width: 50%;
  min-width: 100px;
  padding-right: 9%;
}
.business__catch {
  max-width: 99px;
  margin: 0 auto;
}
.business__map {
  width: 70vw;
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 950px) {
  .business__wrap01--right {
    position: absolute;
    width: 50vw;
    margin: 0;
    top: 0;
    right: 0;
  }
  .business__text {
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 750px) {
  .business {
    padding-top: 72.13vw;
    padding-bottom: 22.4vw;
    position: relative;
  }
  .business__ttl {
    margin-bottom: 40px;
  }
  .business__ttl--ja {
    z-index: 2;
  }
  .business__ttl--en {
    position: absolute;
    top: 0;
    left: 22px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .business__textWrap {
    width: 100%;
    max-width: 72.26vw;
    min-width: auto;
  }
  .business__text {
    margin-bottom: 22px;
    font-size: 15px;
    letter-spacing: -0.04em;
    line-height: 2.26;
  }
  .business__text:last-child {
    margin-bottom: 0;
  }
  .business__wrap01 {
    margin-bottom: 17.93vw;
  }
  .business__wrap01--right {
    width: 70.39vw;
    border-radius: 0 0 0 100px;
  }
  .business__wrap02 {
    display: block;
  }
  .business__wrap01--right .img {
    filter: brightness(0.8);
  }
  .business__map {
    width: 115vw;
    margin: 0 0 13px 0;
  }
  .business__catch-sp {
    width: 60.8vw;
    margin-left: auto;
  }
  .business__link {
    margin-top: 50px;
  }
}
@media screen and (max-width: 400px) {
  .business__wrap01 {
    width: 100%;
    display: block;
  }
  .business__link {
    margin: 50px auto 0;
  }
}

/*===================
/* about us
===================*/
.about-us {
  padding-top: 119px;
  padding-bottom: 253px;
  background-color: #efefef;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}
.about-us__wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.about-us__wrap--left {
  margin-top: 13%;
  width: 100%;
  min-width: 400px;
  padding-right: 9%;
}
.about-us__ttl {
  margin-bottom: 40px;
}
.about-us__ttl--en {
  margin-bottom: 9px;
}

.about-us__textWrap {
  margin-bottom: 58px;
  width: 50%;
  min-width: 405px;
}

.about-us__text {
  margin-bottom: 33px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.13;
}
.about-us__text:last-child {
  margin-bottom: 0;
}

.about-us__wrap--right {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  border-radius: 0 0 0 40px;
  overflow: hidden;
}
.about-us__link {
  margin: 0 auto;
}

@media screen and (max-width: 944px) {
  .about-us {
    position: relative;
  }
  .about-us__wrap--right {
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
  }
  .about-us__ttl--ja {
    z-index: 2;
  }
  .about-us__textWrap {
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 750px) {
  .about-us {
    padding-top: 141.6vw;
    padding-bottom: 262px;
  }
  .about-us__ttl {
    margin-bottom: 33px;
  }
  .about-us__ttl--en {
    position: absolute;
    top: 45px;
    left: 22px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .about-us__wrap {
    display: block;
  }
  .about-us__wrap--left {
    margin-top: 0;
    padding-right: 0;
    min-width: auto;
    max-width: 100%;
  }
  .about-us__wrap--right {
    width: 82.39vw;
  }
  .about-us__textWrap {
    width: 100%;
    max-width: 73.33vw;
    min-width: auto;
    margin: 0 auto 15.46vw auto;
  }
  .about-us__text {
    margin-bottom: 36px;
    font-size: 15px;
    letter-spacing: -0.04em;
    line-height: 2.26;
  }
}

/*===================
/* office
===================*/
.office {
  position: relative;
  z-index: 2;
  background-color: #efefef;
}
.office__wrap {
  padding-bottom: 168px;
  position: relative;
}
.slide2-items {
  margin-right: 29px;
  width: 386px;
  object-fit: cover;
}

.office__box {
  /* width: 533px; */
  /* width: 44.64vw; */
  width: calc(343px + ((100vw - 900px) / 2));
  padding-left: calc((100vw - 900px) / 2);
  height: 570px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 0 40px 0 0;
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 2;
}
.office__textWrap {
  /* margin: 0 auto; */
  max-width: 275px;
  padding-bottom: 70px;
}
.office__ttl {
  margin-bottom: 38px;
}
.office__ttl--en {
  margin-bottom: 9px;
}
.office__text {
  margin-bottom: 59px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.13;
}

@media screen and (max-width: 944px) {
  .office__box {
    width: 380px;
    padding-left: 22px;
  }
}

@media screen and (max-width: 750px) {
  .office__wrap {
    padding-bottom: 26.66vw;
  }
  .office__box {
    width: calc(100% - 22px);
    margin-right: 22px;
    padding-bottom: 69px;
    height: auto;
    position: static;
    display: block;
  }
  .office__ttl {
    margin-bottom: 25px;
  }
  .office__textWrap {
    max-width: 300px;
    padding-top: 53px;
    padding-bottom: 0;
  }
  .office__text {
    padding-left: 21px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 2.26;
    letter-spacing: -0.04em;
  }
  .slide2-items {
    margin-right: 18px;
    width: 61.33vw;
  }
  .office__btn {
    width: fit-content;
    margin: 60px auto 0;
  }
}

/*===================
/* recruit
===================*/

.recruit {
  padding-top: 156px;
  background-color: #0f1c3e;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.recruit__wrap {
  position: relative;
  padding-bottom: 522px;
}
.recruit__ttl {
  margin-bottom: 112px;
}
.recruit__ttl--en {
  margin-bottom: 9px;
}
.recruit__ttl--ja {
  color: #fff;
}
.recruit__textWrap {
  width: 435px;
  margin: 0 auto;
}
.recruit__text {
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: -0.04em;
  color: #fff;
  position: relative;
  z-index: 2;
  color: #bcbcbc;
}
.recruit__img01,
.recruit__img02,
.recruit__img03,
.recruit__img04 {
  position: absolute;
}
.recruit__img01 {
  /* width: 286px; */
  width: clamp(194px, 22.34vw, 286px);
  top: -62px;
  /* right: 170px; */
  right: 13%;
}
.recruit__img02 {
  /* width: 231px; */
  width: clamp(158px, 18.04vw, 231px);
  top: 27.5%;
  /* left: 100px; */
  left: 8%;
}
.recruit__img03 {
  /* width: 310px; */
  width: clamp(231px, 24.21vw, 310px);
  top: 49.5%;
  /* right: 86px; */
  right: 6.6%;
}
.recruit__img04 {
  /* width: 365px; */
  width: clamp(253px, 28.51vw, 365px);
  bottom: 179px;
  /* left: 296px; */
  left: 23%;
}
.recruit__btn {
  width: 435px;
  margin: 40px auto 30px;
}
@media screen and (max-width: 1080px) {
  .recruit__wrap {
    padding-bottom: 400px;
  }
  .recruit__img01 {
    right: 4%;
  }
  .recruit__img02 {
    width: 130px;
    left: 1%;
  }
  .recruit__img03 {
    right: -5%;
  }
  .recruit__img04 {
    left: 23%;
  }
}
@media screen and (max-width: 750px) {
  .recruit {
    padding-top: 30.93vw;
  }
  .recruit__wrap {
    padding-bottom: 53.86vw;
  }
  .recruit__ttl {
    margin-bottom: 108.2vw;
  }
  .recruit__textWrap {
    width: 100%;
  }
  .recruit__text {
    font-size: 15px;
    font-weight: 700;
    line-height: 2.26;
    letter-spacing: -0.04em;
  }
  .recruit__img01 {
    width: 51.73vw;
    top: -40px;
    right: -5%;
  }
  .recruit__img02 {
    width: 42.13vw;
    top: 15.2%;
    left: -2%;
  }
  .recruit__img03 {
    width: 61.6vw;
    top: 31.2%;
    right: -25%;
  }
  .recruit__img04 {
    width: 67.46vw;
    left: auto;
    right: -16%;
    bottom: 135px;
    z-index: -1;
  }
  .recruit__btn {
    width: 100%;
  }
}

/*===================
/* case
===================*/
.case {
  padding-top: 110px;
  padding-bottom: 124px;
  background-color: #efefef;
  position: relative;
  z-index: 2;
}
.case__head {
  margin-bottom: 62px;
}
.case__ttl {
  margin-bottom: 33px;
}
.case__ttl--en {
  padding-bottom: 9px;
}
.case__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.125;
  letter-spacing: -0.04em;
}
.case__wrap {
  margin-bottom: 76px;
  display: flex;
  justify-content: start;
  align-items: start;
}
.case__itemFirst {
  width: 50%;
  padding-right: 9px;
}

.case__list {
  width: 50%;
  padding-left: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 12px;
}
.case__item {
  width: calc(50% - 6px);
}
.case__img {
  width: 100%;
  padding-top: 72%;
  margin-bottom: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  position: relative;
}
.case__itemTtl {
  margin-bottom: 6px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.case__itemFirst .case__itemTtl {
  font-size: 23px;
}
.case__itemText {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.case__link {
  margin: 0 auto;
}
.case-study__catwrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 7px;
}
.case-study__catBox {
  /* margin-top: 10px; */
  /* margin-bottom: 12px; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 7px;
}

.case-study__cat {
  display: block;
  width: fit-content;
  padding: 7px 11px;
  background: #0f1c3e;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}
.case-study__cat2 {
  color: #0f1c3e;
  background: #fff;
}
.case-study__cat:hover {
  background: #fff;
  color: #0f1c3e;
}
.case-study__cat2:hover {
  background: #0f1c3e;
  color: #fff;
}

@media screen and (max-width: 980px) {
  .case__itemFirst {
    font-size: 21px;
    line-height: 1.33;
  }
}
@media screen and (max-width: 750px) {
  .case {
    padding-top: 19.2vw;
    padding-bottom: 102px;
  }
  .case__head {
    margin-bottom: 52px;
  }
  .case__ttl {
    margin-bottom: 17px;
  }
  .case__ttl--en {
    padding-bottom: 5px;
  }
  .case__wrap {
    display: block;
    margin-bottom: 56px;
  }
  .case__itemFirst {
    width: 100%;
    margin-bottom: 38px;
    padding-right: 0;
  }
  .case__list {
    padding-left: 0;
    width: 100%;
    gap: 41px 0;
  }
  .case__item {
    width: 50%;
  }
  .case__itemTtl {
    padding-top: 6px;
    margin-bottom: 0;
    font-size: 13px;
  }
  .case__itemText {
    font-size: 10px;
    letter-spacing: -0.02em;
  }
}

/*===================
/* news
===================*/
.news {
  padding-top: 97px;
  padding-bottom: 168px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.news__ttl {
  margin-bottom: 36px;
}
.news__ttl--en {
  margin-bottom: 13px;
}
.news__wrap {
  max-width: 655px;
  margin-left: auto;
}
.news__list {
  margin-bottom: 56px;
  border-top: 1px solid #c4c4c4;
}
.news__item {
  padding: 30px 5px 30px 11px;
  border-bottom: 1px solid #c4c4c4;
}
.news__itemLink {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.news__itemLink::after {
  display: block;
  content: "";
  width: 8px;
  height: 9px;
  background-image: url(../imgs/common/news-anc.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.news__itemBox {
  margin-bottom: 8px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.news__itemDate {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
/* .news__itemCategory {
  font-size: 12px;
  font-weight: 700;

  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.news__itemCategory::before {
  display: inline-block;
  content: "";
  width: 1px;
  height: 10px;
  background-color: #707070;
  margin-right: 10px;
} */

.news__dateGroup {
  width: 90%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.news__date {
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #313131;
}
.news__line {
  display: block;
  width: fit-content;
  margin: 0 9px;
  width: 1px;
  height: 10px;
  background: #707070;
}
.news__catBox {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.news__cat {
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #313131;
}
.news__itemTtl {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.53;
}
.news__link {
  margin-left: 19%;
}
.news__link::after {
  margin-left: 30%;
}

@media screen and (max-width: 750px) {
  .news {
    padding-top: 83px;
    padding-bottom: 91px;
  }
  .news__list {
    margin-bottom: 58px;
  }
  .news__itemBox {
    gap: 8px;
  }
  .news__itemLink::after {
    right: -10px;
  }
  .news__itemDate {
    font-size: 13px;
  }
  .news__itemTtl {
    font-size: 14px;
  }
  .news__link {
    margin: 0 auto;
  }
}

/* contact */
.contact {
  padding-bottom: 120px;
  background-color: #fff;
  z-index: 2;
  position: relative;
}
.contact__bg {
  background-color: #dedede;
  max-width: 1117px;
  margin: 0 auto;
  padding: 83px 20px;
}
.news__item {
  padding: 26px 11px 24px 0;
  border-bottom: 1px solid #c4c4c4;
}
.contact__head {
  margin-bottom: 75px;
}
.contact__ttl--en {
  margin-bottom: 9px;
}

@media screen and (max-width: 750px) {
  .contact__bg {
    padding: 46px 0 107px 0;
  }
  .contact__head {
    margin-bottom: 30px;
  }
}

footer {
  position: relative;
  z-index: 2;
}

/*===================
Service
===================*/
/* .top-services {
  overflow: hidden;
}
.top-services__ttlWrap {
  max-width: 900px;
  width: calc(100% - 44px);
  margin: 0 auto;
  padding-top: 61px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.top-services__title {
  font-size: 22px;
}
.top-services__title--en {
  z-index: 2;
  font-size: 16px;
}
.top-services__listItem {
  height: 100vh;
  min-height: 100vh;
  transform: translateZ(0);
  will-change: transform;
  position: relative;
}

.top-services__contents {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-services__contents--inner {
  max-width: 900px;
  width: calc(100% - 44px);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.top-services__listItem01 {
  background: url("../imgs/index/services_bg01.jpg") center center / cover
    no-repeat;
}
.top-services__listItem02 {
  background: url("../imgs/index/services_bg02.jpg") center center / cover
    no-repeat;
}
.top-services__listItem03 {
  background: url("../imgs/index/services_bg03.jpg") center center / cover
    no-repeat;
}
.top-services__listItem04 {
  background: url("../imgs/index/services_bg04.jpg") center center / cover
    no-repeat;
}

.top-services__images__img {
  max-width: 328px;
  margin-right: 84px;
}
.top-services__images__img--link {
  display: block;
  width: 100%;
  height: 100%;
}
.top-services__sectionBlock--en {
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #05ac29;
}
.top-services__sectionBlock--title {
  margin-bottom: 23px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.top-services__sectionBlock--txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5625;
  color: #e0e0e0;
}
.top-services__sectionBlock--link {
  margin-top: 65px;
  width: 24rem;
}

.page {
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.page span {
  margin: 0 1px;
}
.page .dash {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 93px;
  background: #707070;
}
.top-services__link {
  background: 0;
  border: 1px solid #fff;
  color: #fff;
}
.top-services__link::after {
  background: url(../imgs/common/btn-ancWhite.svg);
}
.top-services__link:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000000;
}
.top-services__link:hover::after {
  background: url(../imgs/common/btn-ancGreen.svg);
}
@media screen and (max-width: 980px) {
  .top-services__section {
    width: 40%;
    margin-left: 0;
  }
  .top-services__sectionBlock--title {
    font-size: 25px;
  }
  .top-services__images {
    margin-right: 100px;
  }
  .page {
    right: 30px;
  }
}

@media screen and (max-width: 750px) {
  .top-services__contents--inner {
    flex-direction: column;
  }
  .top-services__contents {
    height: 100svh;
    justify-content: flex-start;
  }
  .top-services__title {
    font-size: 19px;
  }
  .sec__title.top-services__title::before {
    top: 10px;
  }
  .top-services__sectionBlock {
    width: 100%;
    padding-top: 15px;
  }
  .top-services__sectionBlock--title {
    margin-bottom: 317px;
  }

  .top-services__images__img {
    width: 230px;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .top-services__sectionBlock--link {
    margin-top: 35px;
    width: 100%;
  }
  .top-services__link {
    margin: 0 auto;
  }
  .page {
    right: auto;
    top: 43%;
    left: -6px;
  }
  .top-services__sectionBlock--en {
    font-size: 10px;
    margin-bottom: 6px;
    text-align: center;
  }
  .top-services__sectionBlock--title {
    font-size: 26px;
    text-align: center;
  }
  .top-services__sectionBlock--txt {
    text-align: center;
  }
} */

/*===================
top-services
===================*/
body.scroll-disabled {
  overflow: hidden;
}
.top-services {
  overflow: hidden;
}
.top-services__title {
  font-size: 22px;
}
.top-services__title--en {
  z-index: 2;
  font-size: 16px;
}
.top-services__frame {
  height: 100vh;
  position: relative;
  width: 100%;
}
.top-services__inner {
  max-width: 900px;
  width: calc(100% - 44px);
  margin: 0 auto;
  height: 100vh;
}
.top-services__ttlWrap {
  padding-top: 61px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.top-services__wrap {
  /* opacity: 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: 0.1s;
}
.top-services__background,
.top-services__images__img {
  will-change: transform;
}
.top-services__background {
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.top-services__backgroundImage {
  height: 100vh;
  left: 0;
  opacity: 1;
  overflow: hidden;
  position: relative;
  top: 0;
  width: 100%;
}
.top-services__backgroundImage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-services__images {
  margin-right: 142px;
  /* width: 24.12vw;
  height: 27vw; */
  width: 328px;
  height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 26px;
  overflow: hidden;
}
.top-services__images__img {
  /* width: 24.12vw;
  height: 27vw; */
  width: 328px;
  height: 410px;
}
.top-services__images__img img {
  display: block;
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  /* position: absolute;
  top: 0; */
  width: 100%;
}
.top-services__section {
  margin-left: 50px;
  max-width: 380px;
  color: #fff;
  position: relative;
  z-index: 999;
}
.top-services__sectionBlock {
  flex-direction: column;
  pointer-events: none;
  transition: opacity 0s linear 0s;
}
.top-services__sectionBlock--en {
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #05ac29;
}
.top-services__sectionBlock--title {
  margin-bottom: 23px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}
.top-services__sectionBlock--txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5625;
  color: #e0e0e0;
}
.top-services__sectionBlock--link {
  margin-top: 65px;
  width: 24rem;
}
/* .top-services__sectionBlock--link a {
} */

/* --- 画像のフェードを無効にし、常に表示 --- */ /* テキストは表示制御したい場合は pointer-events を使って切替可能（必要なら） */
.top-services__sectionBlock {
  opacity: 1; /* フェード無しで常に存在させる */
  pointer-events: auto; /* テキストはクリック可能にする */
  transition: none;
  display: none;
} /* CSSは var(--progress) に依存して transform で動かす設計のまま */
.top-services__background {
  transform: translateY(calc(-300% * var(--progress)));
}
/* メインの画像群も同様に変化させる（既存ルールを残す）*/
.top-services__images__img {
  transform: translateY(calc((-300% - 4.5rem) * var(--progress)));
}

/* JS によって display:flex になったときだけ見える */
/* .top-services__sectionBlock[style*="display: flex"] {
  opacity: 1;
} */

/* ページャースタイル */
.page {
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 84px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.page span {
  margin: 0 1px;
}
.page .dash {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 93px;
  background: #707070;
}
.top-services__link {
  background: 0;
  border: 1px solid #fff;
  color: #fff;
}
.top-services__link::after {
  background: url(../imgs/common/btn-ancWhite.svg);
}
.top-services__link:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000000;
}
.top-services__link:hover::after {
  background: url(../imgs/common/btn-ancGreen.svg);
}

@media screen and (max-width: 980px) {
  .top-services__section {
    width: 40%;
    margin-left: 0;
  }
  .top-services__sectionBlock--title {
    font-size: 25px;
  }
  .top-services__images {
    margin-right: 100px;
  }
  .page {
    right: 30px;
  }
}
@media screen and (max-width: 750px) {
  .top-services__title {
    font-size: 19px;
  }
  .sec__title.top-services__title::before {
    top: 10px;
  }
  .top-services__wrap {
    display: block;
  }
  .top-services__section {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .top-services__sectionBlock--title {
    margin-bottom: 320px;
  }

  .top-services__images {
    margin: 0;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width:61.33vw;
    height:73.6vw ; */
    width: 230px;
    height: 276px;
  }
  .top-services__images__img {
    width: 230px;
    height: 276px;
  }
  .top-services__sectionBlock--link {
    margin-top: 35px;
    width: 100%;
  }
  .top-services__link {
    margin: 0 auto;
  }
  .page {
    right: auto;
    top: 43%;
    left: 0;
  }
  .top-services__sectionBlock--en {
    font-size: 10px;
    margin-bottom: 6px;
  }
  .top-services__sectionBlock--title {
    font-size: 26px;
  }
}
