@charset "UTF-8";

.btn-more {
  color: var(--navy);
  font-family: urw-din, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  border: var(--navy) solid 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 178px;
  line-height: 50px;
  border-radius: 200px;
  margin-left: auto;
  transition: 0.5s ease;
  position: relative;
  overflow: hidden;
}

.btn-more.white {
  color: #fff;
  border: #fff solid 2px;
}

.btn-more:hover {
  color: #fff;
  transform: scale(1.1, 1.1);
}

.btn-more.white:hover {
  color: var(--navy);
}

.btn-more::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  overflow: hidden;
}
.btn-more.white::before {
  background: #fff;
}

.btn-more:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-more_text {
  position: relative;
}
.btn-more_arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 12px;
}

 @media screen and (max-width: 767px) {
  .btn-more {
    margin-right: auto;
    width: 100%;
    max-width : 440px;
  }
 }

/* --------------------------------
index.html
メインビジュアル MV
-------------------------------- */
.mv {
  margin-top: 70px;
  width: 100%;
  max-width: 1440px;
  margin: 70px auto 0;
  display: flex;
  position: relative;
}

#swiper-mv {
  padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .mv {
    margin-top: 50px;
  }
}
#swiper-mv {
  position: relative;
}
.swiper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ページネーションの余白 */
#swiper-mv
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 10px 6px 0;
}
#swiper-mv .swiper-pagination {
  width: initial !important;
  position: absolute;
  bottom: 0;
  left: 46%;

  /*widthを初期化*/
  /* width: initial !important; */
}

/* ページネーションのサイズと色 */
#swiper-mv .swiper-pagination-bullet {
  background-color: var(--navy);
  height: 10px;
  width: 10px;
  right: 0;
}
/* bullet単体の幅は20pxにしたので、20pxが2つ並んだ40pxよりも1px小さい値を指定して縦並びを実現 */
#swiper-mv .swiper-pagination-bullets {
  /* bottom: initial;
  top: 50%;
  transform: translateY(-50%);
  left: initial;
  right: -50px;
  width: 39px; */
}

@media screen and (max-width: 767px) {
  #swiper-mv .swiper-pagination {
    /*widthを初期化*/
    width: initial !important;
    width: 20px;
    position: absolute;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*--------------------------------
index.html
最新情報 News
---------------------------------*/
.top-news_box {
  margin-top: clamp(30px, 2.78vw, 40px);
  padding: 48px 48px 24px;
  padding: clamp(32px, 3.3vw, 48px) clamp(32px, 3.3vw, 48px) 24px;
  background: #fff;
  box-shadow: 15px 15px 0px 0px #dfebef;
  border: #dfebef 2px solid;
}

.page-top .news-list {
  margin-bottom: 24px;
}

.news-list > * + * {
  margin-top: 16px;
}
.news-item {
  display: flex;
  gap: 29px;
  border-bottom: 2px #dfebef solid;
  padding-bottom: 10px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .news-item {
    flex-direction: column;
    gap: 4px;
  }
}

.news-item:hover {
  color: var(--bluegrey);
}

.news-date {
  font-size: 18px;
  line-height: 1.5;
  font-family: urw-din, sans-serif;
  font-weight: 500;
  font-style: normal;
  min-width: 100px;
}
.news-title {
  /* 文字数が増えても幅を一定にする */
  flex: 1;
  text-align: justify;
}

.news-more {
  font-size: 20px;
  margin-right: auto;
  font-family: urw-din, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: right;
  color: var(--navy);
  display: flex;
  justify-content: end;
  align-items: center;
  transition: 0.3s;
}
.news-more_arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-left: 8px;
}
.news-more:hover {
  transform: translateX(5px);
}

/*--------------------------------
index.html
メッセージ MESSAGE
---------------------------------*/
.message {
  margin: clamp(50px, 6.3vw, 80px) 0;
}

.message_title {
  font-family: urw-din, sans-serif;
  font-size: clamp(20px, 18vw, 104px);
  font-style: normal;
  font-weight: 700;
  opacity: 0.8;
  background: linear-gradient(299deg, #74c5d7 32%, #f5ec81 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.message_text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  padding: 6.5% 5% 5% 6.5%;
  position: relative;
  width: fit-content;
}
.message_text::before {
  position: absolute;
  display: block;
  content: url(../img/top/double01.png);
  top: 0;
  left: 0;
  transition: 0.5s;
  width: 50px;
  z-index: -1;
}
.message_text::after {
  position: absolute;
  display: block;
  content: url(../img/top/double02.png);
  bottom: 0;
  right: -3%;
  transition: 0.5s;
  width: 50px;
}
/*--------------------------------
index.html
ソリューション
---------------------------------*/
.solution {
  background: linear-gradient(156deg, #39668f 51.5%, #7896b2 89.99%);
  padding: clamp(80px, 6vw, 90px) 0;
}

.solution_list-wrap {
  margin-bottom: min(10vw, 70px);
}
.solution_list-l {
  display: flex;
  flex-direction: column;
  /* 3.5vwで24px以上にならない */
  gap: min(3.5vw, 24px);
  margin-bottom: min(3.5vw, 24px);
}
.solution_list-l .solution_item {
  padding-left: 15%;
  padding-right: 5%;
  align-items: flex-start;
}

.solution_list-s {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 3.5vwで24px以上にならない */
  gap: min(3.5vw, 24px);
}
.solution_list-s .solution_item {
  justify-content: center;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 7%;
}
.solution_item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
}

.solution_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 90px;
  width: min(15vw, 90px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  aspect-ratio: 1;
  background-color: var(--yellow);
}

.solution_item-flex {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .solution_item {
    justify-content: center;
  }
  .solution_item-flex {
    flex-direction: column;
  }
  .solution_item-title {
    text-align: center;
  }
  .solution_list-l img {
    max-width: 220px;
  }
  .solution_list-l .solution_item {
    padding-left: 5%;
    padding-right: 5%;
    align-items: center;
  }
  .solution_list-s {
    grid-template-columns: 1fr;
  }
}
.solution_item-title {
  color: var(--navy);
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 20px;
}

.solution_item-list {
  font-size: 18px;
  line-height: 1.4;
}
.solution_item-list li {
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
.solution_item-list li::before {
  content: ""; /* 空の要素作成 */
  width: 8px; /* 幅指定 */
  height: 8px; /* 高さ指定 */
  display: inline-block; /* インラインブロックにする */
  background-color: var(--yellow); /* 背景色指定 */
  border-radius: 50%; /* 要素を丸くする */
  position: relative; /* 位置調整 */
  top: -1px; /* 位置調整 */
  margin-right: 8px; /* 余白指定 */
}

.solution-more_wrap {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: flex-end;
  height:40px;
}

.solution-more {
  font-size: 20px;
  color: #00437c;
  color: var(--aqua);
  width: 80px;
  position: relative;
  display: block;
  padding-bottom: 5px;
  border-bottom: var(--aqua) 2px solid;
  position: absolute;
  font-family: urw-din, sans-serif;
  font-weight: 500;
}
.solution-more::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: solid 2px var(--aqua);
  border-right: solid 2px var(--aqua);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 3px;
}

.solution-more:hover {
  transform: translateX(5px);
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .solution-more_wrap {
    padding-right: 3%;
  }
}

/*--------------------------------
index.html
選ばれる理由　REASON
---------------------------------*/
.reason {
  padding: 100px;
  padding: 9% 0;
  overflow: hidden;
}
.reason_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: min(10vw, 70px);
}
.reason_title {
  position: relative;
  z-index: 10;
  margin-top: -10%;
  width: 24%;
}
.reason_title::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%; /*指定したい幅*/
  padding-top: 89.28%; /*画像の幅に対する高さ比率*/
  display: block;
}
.reason_title::after {
  position: absolute;
  z-index: -100;
  position: absolute;
  content: "";
  top: 30px;
  left: -380px;
  left: -420px;
  display: block;
  width: 300%; /*幅*/
  height: 800px; /*どれだけデカくなってもはみ出ないであろう高さを指定*/
  background-image: url(../img/top/reason-circle.svg);
  background-size: contain;
  background-repeat: no-repeat; /*画像を繰り返さない*/
}

.reason_list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: min(7vw, 100px);
  top: 10%;
  z-index: 10;
  width: 66%;
}
.reason_item {
  display: flex;
  gap: 24px;
}
.reason_item:first-child {
  margin-left: -6%;
}
.reason_item:last-child {
  margin-left: -12%;
}
.reason_num {
  color: var(--navy);
  font-family: Poppins;
  font-size: clamp(60px, 7.8vw, 80px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.reason_heading {
  font-size: clamp(16px, 2.1vw, 22px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.reason_underline {
  font-family: "Noto Sans JP";
  font-size: 1.5em;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(transparent 70%, var(--yellow) 70%);
}
.reason_lead {
  color: #7f7f7f;
  font-family: "Noto Sans JP";
  font-size: min(1.76vw, 18px);
  font-size: clamp(15px, 1.76vw, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.54px;
}

@media screen and (max-width: 991px) {
  .reason_flex {
    flex-direction: column;
    gap: 30px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .reason_list{
    width: 100%;
  }
  .reason_item:first-child {
    margin-left: 0;
  }
  .reason_item:last-child {
    margin-left: 0;
  }

  .reason_title {
    position: relative;
    z-index: 10;
    margin-top: -10%;
    width: auto;
  }

  .reason_title::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%; /*指定したい幅*/
    padding-top: 40%; /*画像の幅に対する高さ比率*/
    display: block;
  }
  .reason_title::after {
    left: -300px;
  }
}

@media screen and (max-width: 767px) {
  .reason {
  padding: 80px 0;
}
  .reason_item {
    flex-direction: column;
    gap: 10px;
  }
}

/*--------------------------------
index.html
業務実績　CASE
---------------------------------*/
.case {
  position: relative;
}
.case-bg {
  /* padding: clamp(30px, 6vw, 90px) 0 30px; */
  padding: clamp(30px, 6vw, 90px) 0 60px;
}
.case-bg::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(156deg, #39668f 51.5%, #7896b2 89.99%);
  z-index: -1;
}

.case .section-title {
  margin-bottom: clamp(30px, 3.5vw, 40px);
}
#swiper-case .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

#swiper-case {
  /* margin-bottom: min(10vw, 70px); */
  margin-bottom: min(2vw, 70px);
}

#swiper-case .swiper-wrapper {
  flex-direction: column;
  gap: 30px;
}
.swiper-slide {
  min-width: 100%;
  height: auto;
}
.case-item {
  border: 2px solid #bbd9e3;
  background: #fff;
  padding: 3.77% 5.65%;
  height: 100%;
  width: 100%;
}
.case-item_row {
  display: flex;
  gap: 16px;
}

.case-item_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-item_title {
  display: flex;
  gap: 8px;
  align-items: center;
}
.case-item_industry {
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-item_icon {
  width: 50px;
  height: auto;
}

.case-item_img {
  width: 30%;
  flex-shrink: 0;
  background-color: lightblue;
  display: flex;
}

.case-item_service {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.case-item_industry {
  color: var(--text);
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}

.case-item_record {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.case-item_num {
  font-family: urw-din, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.case-item_tag {
  border-radius: 60px;
  background: #dce3ea;
  display: flex;
  padding: 7px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.case-item_desc {
  margin-top: 16px;
  line-height: 1.7;
  text-align: justify;
}


.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}

@media screen and (max-width: 767px) {
  #swiper-case .swiper-outer {
    position: relative;
    width: 100%;
  }

  #swiper-case .swiper-wrapper {
    flex-direction: row;
    gap: 0px;
  }
  .case-item {
    width: 100%;
  }
  .case-item_row {
    flex-direction: column;
  }
  .case-item_img {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    object-fit: cover;
    background-color: lightblue;
  }
  /* 前へ次への矢印カスタマイズ */
  .case .swiper-button-prev,
  .case .swiper-button-next {
    /* height: 40px;
    width: 40px; */
    /* height: 25px;
    width: 25px; */
    /* position: relative; */
  }
  /* 前へ次への矢印カスタマイズ */
  .case .swiper-button-prev::after,
  .case .swiper-button-next::after {
    display: inline-block;
    content: "";
    margin: auto;
    height: 40px;
    width: 40px;
    position: absolute;
  }
  /* 前への矢印カスタマイズ */
  .case .swiper-button-prev::after {
    background: url(../img/top/case-arrow-previous.svg) no-repeat;
    left: 70%;
    background-size: contain;
  }
  /* 次への矢印カスタマイズ */
  .case .swiper-button-next::after {
    background: url(../img/top/case-arrow-next.svg) no-repeat;
    right: 70%;
    background-size: contain;
  }
  /* ページネーション */
  #swiper-case .swiper-pagination {
    position: absolute;
  }

  #swiper-case .swiper-pagination-bullet {
    background-color: var(--navy);
  }

  #swiper-case .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 10px;
  }
  #swiper-case {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 575px) {
   #swiper-case {
    padding-bottom: 30px;
  }
  .case .swiper-button-prev::after {
    left: -10%;
  }
  .case .swiper-button-next::after {
    right: -10%;
  }
}
/*--------------------------------
TOP
私たちについて/採用情報 ABOUT US/RECRUIT
---------------------------------*/
.about-recruit {
  margin-bottom: min(8vw, 60px);
}
.about-recruit-flex {
  display: flex;
  gap: 1.6vw;
  margin: 0 auto;
}

.about,
.recruit {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}
.about_bg {
  width: 100%;
  height: 100%;
  background: url(../img/top/aboutus-img.jpg) center 0 no-repeat;
  background-size: cover;
  filter: brightness(0.7);
  transition: all 0.5s ease-in-out;
}

.recruit {
  margin-top: 72px;
}
.recruit_bg {
  width: 100%;
  height: 100%;
  background: url(../img/top/recruit-img.jpg) no-repeat;
  background-size: 130% auto;
  background-position: 62% 82%;
  filter: brightness(0.7);
  transition: all 0.5s ease-in-out;
}

.about:hover .about_bg,
.recruit:hover .recruit_bg {
  transform: scale(1.2);
}

.about-title {
  position: relative;
  bottom: 33%;
  left: 5%;
  font-family: urw-din, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(40px, 7.5vw, 64px);
  text-transform: uppercase;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
}

.about-title::after {
  content: url(../img/top/arrow-cercle.png);
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.about-title_ja {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--yellow);
}

.about-title_ja::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: currentColor;
  display: block;
  margin-right: 14px;
}

.about-img img,
.recruit-img img {
  filter: brightness(0.7);
}

@media screen and (max-width: 767px) {
  .about-recruit-flex {
    flex-direction: column;
    gap: 2.2vw;
  }
  .recruit {
    margin-top: auto;
  }

  .about,
  .recruit {
    height: 250px;
  }
  .about_bg {
    background-position: 0% 30%;
  }
  .recruit_bg {
    background-position: 60% 65%;
  }

  .about-title {
    position: relative;
    bottom: 42%;
    left: 5%;
  }
}

/* ループ処理テスト------------------------ */
.test {
  margin: 50px auto;
  max-width: 700px;
}

.test-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgb(199, 192, 192);
}

.test-item:first-child {
  border-top: none;
}

.test-date {
  width: 150px;
  padding: 23.5px 0 24.5px;
  text-align: center;
}

.test-title {
  width: 550px;
  margin-left: 0;
  padding: 23.5px 0 24.5px 31px;
  text-align: left;
  line-height: 1.3;
}

.test-link {
  color: #333333;
}
