@charset "UTF-8";

/* ==========================================================

  BLD Group Index PC Styles

========================================================== */

/* Loader
--------------------------------------------------------- */
.loader-unit {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #ffffff;
  transition: all 1s;
  opacity: 1;
  visibility: visible;
}
.loader-unit.is-active {
  opacity: 0;
  visibility: hidden;
}
.loader {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #2754a4;
  opacity: 0;
  visibility: hidden;
}
.loader.is-active {
  opacity: 1;
  visibility: visible;
}
.loader_logo {
  position: absolute;
  z-index: 1000;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.loader_logo.is-active {
  opacity: 1;
  visibility: visible;
}
.loader_logo svg {
  width: 12.5vw;
}
@media screen and (max-width:1440px) {
  .loader_logo svg { width: 15.625vw; }
}
@media screen and (max-width:1024px) {
  .loader_logo svg { width: 18.75vw; }
}
@media screen and (max-width:768px) {
  .loader_logo svg { width: 25vw; }
}
@media screen and (max-width:480px) {
  .loader_logo svg { width: 31.25vw; }
}

/* SVG Animation
--------------------------------------------------------- */
#mask path {
  fill-opacity: 0; /* 最初は透過0で見えない状態 */
  transition: fill-opacity .5s; /* カラーがつく際のアニメーション0.5秒で変化 */
  fill: none; /* 塗りがない状態 */
  stroke: #ffffff; /* 線の色 */
}
#mask.done path{
  fill: #ffffff; /* 塗りの色 */
  fill-opacity: 1; /* 透過1で見える状態 */
  stroke: none; /* 線の色なし */
}

/* Page Header
--------------------------------------------------------- */
.page-header > div:last-of-type figure { height: 830px; }
.page-header > div:last-of-type figure img {
  height: 830px;
  object-fit: cover;
}
.page-header > div:last-of-type p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.15em;
  margin: 40px 0;
}


/* Page Header  slide
--------------------------------------------------------- */
.mv01 .slide-media img {
  transition: 7s 1s ease-out;
}
 
.mv01 .splide__slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.05);
}
 
.mv01 .splide__slide[class*=-active] .slide-title {
  animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}
 
@keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
 
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}




/* News
--------------------------------------------------------- */
.news {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 220px 0 390px;
}
.news .heading { padding: 0 0 0 14%; }
.news > div:last-of-type {
  width: 74.666666%;
  padding: 0 14% 0 0;
}
.news > div:last-of-type ul {
  border-top: solid 1px #e7e7e7;
  margin: 0 0 35px;
}
.news > div:last-of-type ul li {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  padding: 25px 0 25px 20px;
  border-bottom: solid 1px #e7e7e7;
}
.news > div:last-of-type ul li a {
  color: #000000;
  text-decoration: none;
}
.news > div:last-of-type ul li a::after {
  content: url(../images/top/arrow.png);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.news > div:last-of-type ul li a span {
  display: inline-block;
  vertical-align: top;
}
.news > div:last-of-type ul li a span:first-of-type {
  width: 15%;
  margin: 0 2.5% 0 0;
}
.news > div:last-of-type ul li a span:last-of-type {
  width: 80%;
}
.news > div:last-of-type a.link-next { float: right; }

/* Our Business
--------------------------------------------------------- */
.our-biz {
  background-color: #f5f7f9;
  padding: 0 0 180px;
}
.sec-header {
  position: relative;
  top: -170px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.our-biz .heading { 
  padding: 0 14% 0 0;
  text-align: right;
}
.our-biz .heading h2 { margin: 0 0 50px; }
.our-biz .sec-header figure {
  position: relative;
  width: 74.666666%;
}
.our-biz .sec-header figure img {
  width: 100%;
  height: auto;
}
.our-biz > a.link-next { display: none; }
.our-biz-summary { padding: 0 0 0 10%; }
.our-biz-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 60px 14% 60px 0;
}
.our-biz-item:first-of-type { margin: 0 0 210px; }
.our-biz-item img {
  position: relative;
  top: -135px; /* 95/1500 */
  left: 60px;
  margin: 0 0 -135px;
}
.our-biz-item dl { padding: 0 0 0 120px; }
.our-biz-item dl dt {
  font-size: 30px;
  font-size: 3.0rem;
  letter-spacing: 0.15em;
  margin: 0 0 30px;
}
.our-biz-item dl dd {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  line-height: 1.875;
}
.our-biz-item dl dd:last-of-type { margin: 40px 0 0; }

/* Link Banner */
.bnr {
  padding: 0 14%;
  margin: 20px auto 0;
  display: block;
}
.bnr02 {
  position: relative;
  margin: 0 auto 120px;
  padding: 20px 14% 0;
}
.bnr02 a {
  position: relative;
  z-index: 1;
}
.bnr02 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  display: block;
  background-color: #f5f7f9;
}

/* Sustainability
--------------------------------------------------------- */
.sus {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 185px 0 250px;
}
.sus .heading { padding: 0 0 0 14%; }
.sus > div:last-of-type { width: 74.666666%; }
.sus > div:last-of-type figure img {
  position: relative;
  width: 100%;
  height: auto;
}
.sus > div:last-of-type p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.15em;
  margin: 40px 0;
}
.sus-img01 {
  position: absolute;
  z-index: 1;
  bottom: 325px;
  right: 15%;
}
.sus-img02 {
  position: absolute;
  z-index: 2;
  bottom: 135px;
  right: 19.666666%;
}
@media screen and (max-width:1500px) {
  .sus-img01 { right: 5%; }
  .sus-img02 { right: 9.666666%; }
}

/* Recruit
--------------------------------------------------------- */
.recruit { background-color: #f5f7f9; }
.recruit figure { width: 54%; }
.recruit figure img {
  width: 100%;
  height: auto;
}
.rec-summary {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 14% 60px 60px;
}
.rec-summary.fadeInLeft {
  opacity: 0;
  transform: translate(75px, -50%);
  -webkit-transform: translate(75px, -50%);
  transition: all 1.5s;
  -webkit-transition: all 1.5s;
}
.rec-summary.fadeInLeft.scrollIn {
  opacity: 1;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
}
.rec-summary ul li:first-of-type { margin: 0 0 40px; }
.rec-summary ul li p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.15em;
}