@charset "utf-8";

/* ページ全体 */
@media all and (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media all and (min-width: 1800px) {
  .container {
    max-width: 1320px;
  }
}

/* 一般的な>矢印 */
.arrow {
  position: relative;
}


.arrow::before {
  content: "";
  width: 7.5px;
  height: 7.5px;

  position: absolute;
  right: calc(50% - 1px);

  border-top: solid 2px var(--main-blue);
  border-right: solid 2px var(--main-blue);
  right: 10px;
}

.arrow::before {
  top: calc(50% - 0px);
  /* 数値は微調整してください */
  transform: rotate(45deg) translate(-50%, -50%);

  /* 45度回転させる */
}



/* //一般的な>矢印 */

/* //ページ全体 */

/* fvのスタイル */
.fv-wrap,
.video-area,
.fv-imgbox img {
  width: 100%;
  height: 183vw;
}



.fv-wrap {
  position: relative;
}

.video-area {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.top-video {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;

  position: relative;
}

.video-area::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #626262;
  opacity: 0.57;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.fv-txtbox {
  color: #FFF;
  position: absolute;
  top: 36%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 82vw;
}

.top-ttl {
  font-size: 14.05vw;
  letter-spacing: 0.05em;
}

.top-lead {
  font-size: 6.905vw;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {

  .fv-wrap,
  .video-area,
  .fv-imgbox img {
    width: 100%;
    height: 60vw;
  }

  .top-ttl {
    font-size: 6.2vw;
  }

  .top-lead {
    font-size: 3.02vw;
  }

  .fv-txtbox {
    width: 79vw;
    top: 54%;
  }
}

/* スクロール */
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 0;
  left: 5.35vw;
  width: 8.82px;
}

.scrolldown1-txt {
  position: absolute;
  bottom: 159px;
  left: -13px;
  text-wrap: nowrap;
  height: 10px;
  width: 8.82px;
  font-size: 1em;
  color: #fff;
  transform: rotate(-90deg);
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.38);
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown1:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  width: 14px;
  height: 14px;
  left: -6px;

  border-radius: 50%;
  background: #14A8C7;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  z-index: 5;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 130px;
  }

  100% {
    bottom: 5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown1:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 145.5px;
  background: #fff;
}

@media all and (min-width: 768px) {
  .scrolldown1 {

    left: 2.5vw;
    width: 11px;
  }

  .scrolldown1 img {
    bottom: 150px;
    width: 11px;
    height: 70px;
  }



}

@media all and (min-width: 992px) {
  .scrolldown1:before {
    left: -8px;
    /*丸の形状*/
    width: 18px;
    height: 18px;
  }
}

@media all and (min-width: 1200px) {
  .scrolldown1:before {
    left: -11px;
    /*丸の形状*/
    width: 22px;
    height: 22px;
  }
}

/* //fvのスタイル */

/* purpose */
.purpose {
  padding: 80px 0;
}

.purpose-h3 {
  margin-bottom: 20px;
  font-size: calc(18 * var(--rem));
  line-height: calc(45/28);
}



.purpose-txt {
  line-height: 2;
}

@media all and (min-width: 768px) {


  .purpose-h3 {
    margin-bottom: 46px;
    font-size: calc(24 * var(--rem));
  }

  .purpose-ttlwrap {
    padding-left: 17%;
  }
}

/* //purpose */

/* solution-index */
.solution-index-area-column>a {
  color: #fff;

}


.solution-index-area-column>a {
  padding: 80px 0;
  position: relative;
  display: block;
  border-bottom: 1px solid #fff;
}

.solution-index-area-column>a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 1s ease;
  background-position: 50% 50%;
}



.solution-index01-link::before {
  background-image: url(../images/top/solution-menu-img1.jpg);
  background-repeat: no-repeat;
  background-size: cover;

}


.solution-index02-link::before {
  background-image: url(../images/top/solution-menu-img2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}


.solution-index03-link::before {
  background-image: url(../images/top/solution-menu-img3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.column-textbox {
  position: relative;
  z-index: 2;
}

.column-ttl {
  font-size: calc(28 * var(--rem));
  margin-bottom: 18px;
}

.column-txt {
  margin-bottom: 20px;
}

.column-viewmore {
  border: 1px solid #fff;
  border-radius: 30px;
  width: 160px;
  margin-inline: auto;
  padding: 8px 0 8px 0;
  font-size: calc(11 * var(--rem));
  position: relative;
}

.column-viewmore::before {
  content: "";
  background-image: url(../images/top/Icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}

@media all and (min-width: 992px) {
  .solution-index-area-column>a {
    padding: 100px 0;
  }

  .solution-index.lazyloaded {
    background-image: url(../images/top/solution-menu-bg.jpg);
  }

  .solution-index {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
  }


  .solution-index-area-column {
    width: 100%;
  }

  .solution-index-area-column>a {
    border-bottom: none;
    border-right: 1px solid #fff;
  }

  .solution-index-area-column:last-child>a {
    border-right: none;
  }

  .solution-index-area-column>a::before {
    opacity: 0;
  }

  .solution-index-area-column>a:hover,
  .solution-index-area-column>a:hover:before {
    opacity: 1;
  }


  .column-ttl {
    font-size: calc(40 * var(--rem));
    margin-bottom: 30px;
  }



}

@media all and (min-width: 1200px) {}

@media all and (min-width: 1400px) {
  .solution-index-area-column>a {
    padding: 150px 0 130px;
  }
}

/* //solution-index */

/* our-clients */

/* //our-clients */

.our-clients {
  background-color: #F6F6F6;
}

.logo-container {
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 15px;
  margin-top: 30px;
}

.logo-container img {
  height: 40px;
  width: 28%;
  object-fit: contain;
  margin: 0 auto;
}

.my-carousel-progress {
  background: #ccc;
}

.my-carousel-progress-bar {
  background: #14A8C7;
  height: 2px;
  transition: width 400ms ease;
  width: 0;
}

/* .splide-1 .splude__list {
  background-color: #F6F6F6;
} */

.case-card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;

  /* margin: 40px 20px 30px; */
  padding-bottom: 30px;
  height: 100%;
}

.case-card>a {
  display: block;
}

/* .case-card>a:hover .arrow-pattern1 {
  background: linear-gradient(#0392d7 0%, #063e96 100%);
  transform: scale(1.3);
}

.case-card>a:hover {}

.case-card>a:hover .arrow-pattern1::before,
.case-card>a:hover .arrow-pattern1::after {
  background-color: #fff;
} */
.case-imgbox {
  height: 50%;
}

.case-imgbox img {
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 330 / 250;
}

.case-client,
.case-disc,
.case-store_type,
.case-service_overview {
  padding: 0 3%;
}

.case-client {
  font-size: calc(16 * var(--rem));
  font-weight: 700;
  color: var(--main-blue);
  margin-top: 15px;
  margin-bottom: 10px;
}

.case-disc, .case-service_overview {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 任意の行数を指定 */

}

.case-disc {
  font-weight: 500;
  font-size: calc(18 * var(--rem));
  margin-bottom: 10px;
}

.case-store_type {
  font-size: calc(12 * var(--rem));
  font-weight: 500;
  color: #A7A7A7;
}

.case-service_overview {
  font-size: calc(12 * var(--rem));
  font-weight: 500;
  color: #A7A7A7;
  max-width: 80%;
}

.case-arrow-box {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.arrow-pattern1 {}


@media all and (min-width: 576px) {
  .logo-container {
    padding: 30px;
  }

  .case-card {
    /* margin: 40px 0 30px; */
  }
}

@media all and (min-width: 768px) {
  .our-clients {
    padding: 80px 0;
  }


  .our-clients .title-lead {
    margin-bottom: 54px;
  }

  .logo-container {
    padding: 50px;
    gap: 25px 15px;
  }

  .logo-container img {

    width: 16%;
  }


}

@media all and (min-width: 992px) {}

@media all and (min-width: 1200px) {
  .logo-container {
    max-width: 800px;
    margin-inline: auto;
  }

  .case-client,
  .case-disc,
  .case-store_type,
  .case-service_overview {
    padding: 0 33px;
  }

  .case-arrow-box {
    bottom: 20px;

  }

  .case-card {
    padding-bottom: 37px;
  }
}

/* スライダー見た目調整 */
.splide-1 .splide__track {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.16));
  margin: 60px 0;
}

.splide .splide__arrow {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  /* transition: 0.8 ease-in; */
  background-color: #fff;
  border-radius: 50%;
  border: none;
}

.splide .arrow-icon {
  display: inline-block;
  vertical-align: middle;
  color: var(--main-blue);
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(-25%) rotate(45deg);
}

.splide .arrow-icon::before,
.splide .arrow-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.splide .arrow-icon::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.splide .arrow-icon::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}

.splide .splide__arrow--next,
.splide .splide__arrow--prev {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.16));
}

.splide .splide__arrow--next:disabled,
.splide .splide__arrow--prev:disabled {
  opacity: 0;
}

.splide .splide__arrow--prev {
  transform: rotate(180deg);
  left: 1%;
}

.splide .splide__arrow--next {
  right: 1%;
}

.splide-1 .splide__pagination {
  gap: 20px;
}

@media all and (min-width: 576px) {
  .splide .splide__arrow--next {
    right: 11%;
  }

  .splide .splide__arrow--prev {
    left: 11%;
  }

}

@media all and (min-width: 992px) {
  .splide .splide__arrow {
    width: 69px;
    height: 69px;
  }

  .splide .splide__arrow--next,
  .splide .splide__arrow--prev {
    top: 0px;
  }


}

/* EC-solution */
.ec-solution.lazyloaded {
  background-image: url(../images/top/EC-solution-bg.jpg);
}

.ec-solution {

  background-repeat: no-repeat;
  background-size: cover;

}

.ec-solution-ttlarea {
  padding-top: 80px;
  padding-bottom: 50px;
  margin-inline: auto;
  color: #fff;
  background-color: rgba(6, 62, 150, 0.88);
  box-shadow: 0px 1px 0px rgba(6, 62, 150, 0.1);
  margin-bottom: 0;
  box-sizing: content-box;
}

.ec-solution-ttl {
  font-size: calc(40 * var(--rem));
  max-width: calc(1520px + 16px);
  padding-left: 3%;
}



.ec-content-txtarea {
  background-clip: padding-box;
  padding: 30px 3%;
  position: relative;
}



.frontside .ec-content-txtarea {
  background-color: rgba(6, 62, 150, 0.88);
  color: #fff;
  /* box-shadow: 0px 1px 0px rgba(6, 62, 150, 0.88); */
  /* margin-top: -1px; */
  box-sizing: content-box;
}

.backyard .ec-content-txtarea {
  background-color: rgba(3, 49, 121, 0.88);
  color: #fff;

}

.allsupport .ec-content-txtarea {
  background-color: rgba(0, 35, 91, 0.88);
  color: #fff;

}

.ec-content-en {
  font-size: calc(13 * var(--rem));
  margin-bottom: 0;
}

.ec-content-ttl {
  font-size: calc(35 * var(--rem));
  display: inline-block;
  position: relative;
}

.ec-content-ttl::after {
  content: "";
  position: absolute;
  right: -190px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 1px;
  background-color: #fff;
}


.ec-content-txt {
  margin-bottom: 0;
}

.ec-content-cardarea {
  background-color: #F6F6F6;
  color: #333;
  padding: 50px 3%;
}

.ec-content-cardbox {
  display: grid;
  grid-template-columns: minmax(0, 306px) minmax(0, 306px);
  gap: 15px;
  max-width: 968px;
  justify-content: center;
}

.ec-content-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 15px 15px 30px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
  position: relative;
  display: grid;
  aspect-ratio: 306/372;
  width: 100%;
  height: 100%;
}

.ec-content-card>a {
  color: #333;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

/* .ec-content-card>a:hover .arrow-pattern1 {
  background: linear-gradient(#0392d7 0%, #063e96 100%);
  transform: scale(1.3);
}

.ec-content-card>a:hover .arrow-pattern1::before,
.ec-content-card>a:hover .arrow-pattern1::after {
  background-color: #fff;
} */


.ec-content-card img {
  border-radius: 50%;
  width: 63%;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ec-content-card-ttl {
  font-size: calc(14 * var(--rem));
  margin-top: 18px;

}

.txt-field {
  font-size: calc(14 * var(--rem));
  margin: 0px;
  color: var(--main-blue);
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.ec-arrow-box {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.arrow-pattern1 {}

.backyard {}

.allsupport {}

.ec-solution-viewmore {
  background-color: rgba(0, 35, 91, 0.88);
  padding: 28px 0;

}


/* ふわっと表示される */
.postlist-line-items {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.postlist-line-items.show {
  opacity: 1;
}


@media all and (min-width: 576px) {
  .ec-content-txtarea {
    padding: 50px 3%;
  }

  .ec-content-card-ttl {
    font-size: calc(16px * var(--rem));
  }

}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {


  .ec-solution-ttl {
    font-size: calc(50 * var(--rem));
    padding-left: calc(1.5% + 45px);

  }

  .ec-content-ttl {
    font-size: calc(38 * var(--rem));
    margin-bottom: 43px;
  }

  .ec-content-ttl::after {
    display: none;
  }

  .ec-solution-ttlarea {
    padding-top: 55px;
    padding-bottom: 50px;

  }

  .ec-content-txtarea {
    position: relative;
  }

  .ec-content-txtarea::after {
    content: "";
    position: absolute;
    right: 0;
    top: 98px;
    width: 50px;
    height: 1px;
    background-color: #fff;
  }

  .ec-solution-content {
    display: grid;
    grid-template-columns: 35% 65%;
  }

  .ec-content-card {

    padding: 30px 30px 17px;

  }

  .ec-content-cardarea {
    padding: 54px 25px 39px 74px;
  }

  .ec-content-cardbox {
    gap: 25px;
  }

  .ec-content-txtarea {
    padding-top: 46px;
  }

  .ec-content-txtbox {
    padding-left: 45px;
    padding-right: 30px;
    max-width: 478px;
    margin-left: auto;
  }

  .ec-content-card-ttl {
    margin-top: 0px;
  }

  .txt-field {
    bottom: 17px;
    left: 30px;
    font-size: calc(18 * var(--rem));
    margin-top: 30px;
  }


}

@media all and (min-width: 1200px) {
  .ec-solution-container {}

  .ec-content-txtbox {
    /* padding-right: 60px; */
  }

  .ec-content-cardbox {
    grid-template-columns: 1fr 1fr 1fr;
  }


  .ec-content-txtarea::after {
    width: 29%;
    max-width: 195px;

  }
}

@media all and (min-width: 1500px) {
  .ec-solution-ttlwrap {
    max-width: 35%;
    display: flex;
    justify-content: end;

  }

  .ec-solution-ttl {
    width: 452px;
    padding: 0;
  }
}

@media all and (max-width: 400px) {
  .ec-content-ttl::after {
    right: -140px;
    width: 100px;
  }

}

/* //EC-solution */

/* News */
.news-section {
  position: relative;
}

.news-section::before {
  content: "";
  background-image: url(../images/top/news-decolation.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  aspect-ratio: 269.34/412.62;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.news-section .ttl-pattern1_home,
.news-section .title-lead {
  padding-left: 40px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-buttons button:hover {
  opacity: 0.7;
}

.filter-buttons button {
  background-color: transparent;
  border: none;
  font-size: calc(16 * var(--rem));
  color: #333;
  padding-right: 30px;
}

.postlist-datewrap {
  gap: 15px;
  margin-bottom: 10px;
}



.postlist-line-ttl {
  color: #333;
}


.postlist-line-date {
  display: grid;
  place-items: center;
  font-size: calc(12 * var(--rem));
}

.postlist-line-inner {
  display: inline-block;
  width: 100%;
  padding-right: 40px;
}

.postlist-line-items .btn-arrow-box {
  right: 5px;
  bottom: 10px;
  top: auto;
  transform: translateY(0px);
}

@media all and (min-width: 576px) {

  .postlist-line-items .btn-arrow-box {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .postlist-line-items {
    padding-bottom: 0;
  }
}

@media all and (min-width: 768px) {
  .news-section::before {
    width: 15vw;
  }

  .postlist-line-inner {
    padding-right: 60px;
  }
}

@media all and (min-width: 992px) {
  .news-section::before {
    width: 7vw;
  }

  .news-section {
    padding: 60px 0 50px;
  }

  .news-section .title-lead {
    margin-bottom: 60px;
  }

  .news-ttlarea-btn {
    margin-inline: 0 auto;
  }

  .news-wrap {
    display: grid;
    grid-template-columns: 37% 57%;
    gap: 6%;
  }

  .postlist-line-inner {
    padding-right: 0;
  }
  .filter-buttons {
    flex-direction: column;
    width: 269.5px;
    margin-bottom: 90px;
    margin-left: 15px;
  }

  .filter-buttons button {
    text-align: start;
    border-bottom: 1px solid #B8B8B8;
    padding: 10px 0;
  }



  .postlist-datewrap {
    min-width: 230px;
  }

  .postlist-line-date,
  .post-cat-wrap {
    display: flex;
    place-content: center;
  }

  .postlist-line-ttl {
    display: grid;
    align-items: center;
	width: 60%;
  }

  .news-section .ttl-pattern1_home,
  .news-section .title-lead {
    padding-left: 0px;
  }



}


@media all and (min-width: 1200px) {
  .news-section::before {
    width: 9vw;
  }

  .news-wrap {
    display: grid;
    /* grid-template-columns: 30% 56%; */
    gap: 0;
    justify-content: center;
  }


}

@media all and (min-width: 1400px) {
  .postlist-line-items .btn-arrow-box {
    right: 23px;
  }

  .postlist-line-ttl {
    width: auto;
  }

  .postlist-line-inner {
    flex-wrap: nowrap;
  }

  .postlist-line-items {
    padding-right: 75px;
  }
}

@media all and (max-width: 350px) {
  .postlist-line-items .btn-arrow-box {
    bottom: 10px;
    top: auto;
    transform: translateY(0px);
  }
}

/* //News */

/* Data */
.data.lazyloaded {
  background-image: url(../images/top/data-bg.jpg);
}

.data {
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.data-col {
  display: flex;
  margin-bottom: 60px;
}

.data-ttl-en {
  font-size: calc(21 * var(--rem));
}


.data-container {
  margin-top: 30px;
}

.data-col .counter-item {

  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}


.data-ttl {
  font-size: calc(10 * var(--rem));
  margin-bottom: 18px;
}


.data-number {
  margin-top: 22px;
  font-size: calc(50 * var(--rem));
  line-height: 0.8;
  position: relative;
}

.percent::after {
  content: "%";
  font-size: calc(30 * var(--rem));
  bottom: 0;
}

.billion::after {
  content: "億円";
  font-size: calc(22 * var(--rem));
  bottom: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.data-img {
  flex-grow: 1;
  display: grid;
  place-content: center;
}

.data-img img {
  width: 170px;
}

.other-data {
  text-align: center;
  margin-top: 20px;
}

.other-data-ttl {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

.other-data-ttl1 {
  font-size: calc(24 * var(--rem));
  margin-bottom: 0;
}

.other-data-ttl2 {
  font-size: calc(12 * var(--rem));
  padding-bottom: 0;
}

.other-data-box {
  padding: 35px 0 0;
}

.other-data-txt1 {
  font-size: calc(12 * var(--rem));
  margin-bottom: 0;
  text-align: center;
}

.other-data-txt2 {
  font-size: calc(35 * var(--rem));
  margin-bottom: 0;
  line-height: 1;
  text-align: center;
}

.other-data-box .counter-item {
  display: inline-block;

}

@media all and (min-width: 576px) {

  .other-data-ttl1 {
    font-size: calc(22 * var(--rem));
  }

  .other-data-ttl2 {
    font-size: calc(10 * var(--rem));
  }

  .other-data-txt1 {
    font-size: calc(10 * var(--rem));
  }

  .other-data-txt2 {
    font-size: calc(32 * var(--rem));
  }

  .other-data-wrap {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    padding-left: 30px;
    gap: 30px;
  }

  .other-data {
    display: grid;
    grid-template-columns: 27% 1fr;
    max-width: 800px;
    margin-inline: auto;
    text-align: left;
  }

  .other-data-ttl {
    border-bottom: none;
    border-right: 1px solid #fff;
  }

  .other-data-box {
    padding: 10px 0;
  }
}

@media all and (min-width: 768px) {
  .data {
    padding: 80px 0;
  }

  .data-container {
    margin-top: 40px;
  }

  .data-col {
    margin-bottom: 40px;
  }

  .data-ttl {
    margin-bottom: 30px;
  }

  .other-data {
    grid-template-columns: 22% 1fr;
  }

  .other-data-wrap {
    gap: 50px;
  }

  .other-data-txt1, .other-data-txt2 {
    text-align: right;
  }

}

@media all and (min-width: 992px) {
  .data-ttl-en {
    font-size: calc(24 * var(--rem));
  }

  .data-ttl {
    font-size: calc(12 * var(--rem));
  }

  .data-number {
    font-size: calc(60 * var(--rem));
  }

  .other-data-txt2 {
    font-size: calc(40 * var(--rem));
  }

  .other-data-wrap {
    padding-left: 82px;

  }

  .other-data-ttl1 {
    font-size: calc(24 * var(--rem));
  }

  .other-data-ttl2 {
    font-size: calc(12 * var(--rem));
  }

  .other-data-txt1 {
    font-size: calc(12 * var(--rem));
  }

}

@media all and (min-width: 1200px) {}

@media all and (min-width: 1400px) {}



/* //Data */

/* aboutus */




.aboutus-contentbox {
  margin-bottom: 50px;
}

.aboutus-txt {
  margin-bottom: 40px;
}



.aboutus-ul li {
  border-bottom: 1px solid #B8B8B8;
  position: relative;
  margin-bottom: 10px;
}

.aboutus-ul li a {
  padding: 10px 0 15px;
  display: block;
}



.aboutus-ul li:last-child {
  border-bottom: none;
}

.aboutus-txt1 {
  font-size: calc(13 * var(--rem));
  color: #BCBCBC;
}

.aboutus-txt2 {
  font-size: calc(16 * var(--rem));
  color: #333;
}

.btn-arrow-box {}

.aboutus-imgbox {
  width: 80%;
  margin-inline: auto;
}

.aboutus-imgbox-wrap {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.aboutus-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 83%;
}


.hover-img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.hover-img-start {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.aboutus-hoverimg1 .hover-img1.hover-img,
.aboutus-hoverimg2 .hover-img2.hover-img,
.aboutus-hoverimg3 .hover-img3.hover-img {
  opacity: 1;
}

.aboutus-hoverimg1 .hover-img-start,
.aboutus-hoverimg2 .hover-img-start,
.aboutus-hoverimg3 .hover-img-start {
  opacity: 0;
}

.aboutus-imgbox-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

@media all and (min-width: 768px) {

  .aboutus-container {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
  }

  .aboutus-txt {
    width: 86%;
  }

  .aboutus-ul li {
    max-width: 394.5px;
    margin-inline: auto;
  }

  .aboutus-ul li a {
    display: block;
  }

  .aboutus-imgbox {
    display: grid;
    place-content: center;
    width: auto;
  }
}

@media all and (min-width: 992px) {
  .aboutus .title-lead {
    margin-bottom: 58px;
  }

  .aboutus-txt {
    margin-bottom: 70px;
  }

}

/* //aboutus */

/* joinus */
.joinus.lazyloaded {
  background-image: url(../images/top/joinus-bg.jpg);
}

.joinus {

  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 80px 0 80px;
}

.joinus .ttl-pattern1_home,
.joinus .title-lead,
.joinus-txt1,
.joinus-txt2 {
  color: #fff;
  text-align: center;
}

.joinus-txt1 {
  font-size: calc(21 * var(--rem));
}

.joinus-txt2 {
  font-size: calc(12 * var(--rem));
  margin-bottom: 47px;
}



@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {
  .joinus-txt1 {
    font-size: calc(23 * var(--rem));
  }

  .joinus-txt2 {
    font-size: calc(14 * var(--rem));
    margin-bottom: 47px;
  }

  .joinus {
    padding: 100px 0 80px;
  }
}

/* //joinus */