@charset "UTF-8";
#header {
  position: relative;
  background-size: cover;
}

#hero {
  width: 100%;
  aspect-ratio: 1920 / 900;
  position: relative;
  background-color: #f5f5f5;
}
#hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* キャッチ──*/
.catch {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom:-10%;
  padding: 3%;
  background: rgba(16, 59, 124, 0.9);
  color: #fff;
}
.catch p:first-child {
  color: #385D97;
  font-size: clamp(1.8rem,2vw,3rem);
  line-height: 1.4
}
.catch p:last-child {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: clamp(2rem,4vw,5rem);
  line-height: 1.4
}

@media (max-width: 600px) {
#hero {
  width: 100%;
  height: 100vh;
  background-color: #f5f5f5;
}
  .catch {
    bottom: 0;
    padding: 25px;
    width: 100%;
  }
}
/* NEWS──*/
.home #contents {
  padding-top: 0;
}

.news {
  padding: 130px 0;
  background-color: #f5f5f5;
}
.news dt {
  margin-right: 20px;
  width: 20%;
}
.news dd {
  margin-bottom: 20px;
  width: 76%;
}

.more-link {
  text-align: right;
  margin-top: 30px;
}
.more-link a {
  color: #103B7C;
}
.more-link a::after {
  content: url("../images/arrow.png");
  margin-left: 10px;
  vertical-align: -30%;
}

@media (max-width: 600px) {
  .news {
    padding: 65px 0;
  }

  #sec-news .ttl-sec.third,
  #sec-news dl {
    width: 100%;
  }

  #sec-news .ttl-sec span {
    display: inline-block;
  }
}
/*事業案内-──*/
#sec-business {
margin-top: 130px;
  padding-top: 130px;
  padding-bottom: 130px;
  background-color: #F5F5F5;
  background-image: url("../images/top-back-business.png"), url("../images/top-back-business.png");
  background-repeat: no-repeat;
  background-position: left -65px top,right -65px bottom;
  background-size: calc(566 / 1920 * 100%);
  overflow: hidden;
}

.business-inner {
  margin-left: 4%;
  margin-right: 4%;
}

.business-info {
  display: flex;
  flex-wrap: wrap;
}
.business-info li {
  width: calc(100% / 3);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  background-blend-mode: multiply;
  transition: .4s;
  position: relative;
}
.business-info li::after {
  content: url("../images/arrow-w.png");
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translate(-50%);
}
.business-info li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20% 20% 25%;
}
.business-info li a .ttl-info-content {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 25px;
  color: #fff;
}
.business-info li a p {
  line-height: 2.2;
  color: #fff;
}
.business-info li:first-child {
  background-image: url("../images/top-business01.jpg");
  background-color: rgba(51, 51, 51, 0.9);
}
.business-info li:first-child:hover {
  background-color: rgba(51, 51, 51, 0.6);
}
.business-info li:nth-of-type(2) {
  background-image: url("../images/top-business02.jpg");
  background-color: rgba(16, 59, 124, 0.9);
}
.business-info li:nth-of-type(2):hover {
  background-color: rgba(16, 59, 124, 0.6);
}
.business-info li:last-child {
  background-image: url("../images/top-business03.jpg");
  background-color: rgba(51, 51, 51, 0.9);
}
.business-info li:last-child:hover {
  background-color: rgba(51, 51, 51, 0.6);
}

@media (max-width: 840px) {
  .business-inner {
    margin-left: 3%;
    margin-right: 3%;
  }

  .business-info li::after {
    bottom: 5%;
  }

  .business-info li a {
    padding: 20% 10% 30%;
  }

  .business-info li a .ttl-info-content {
    font-size: 2rem;
  }

  .business-info li a p {
    line-height: 2;
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  #sec-business {
margin-top: 65px;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .business-info li {
    width: 100%;
    margin-top: 10px;
  }
}
