@charset "UTF-8";
/*
	Filename: home
	Version: 1.0.1
*/

/*-----------------------------------------------------
	MV
------------------------------------------------------*/
#mv {
  width: 100%;
  height: 600px;
  position: relative;
  margin-top: 78px;
  background: url("../img/home/hero_bg.jpg") no-repeat center center;
  background-size: cover;
}
#mv .mv_title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 600px;
  background: rgb(0, 27, 22);
  background: linear-gradient(
    90deg,
    rgba(0, 27, 22, 0.2) 0%,
    rgba(0, 27, 22, 0) 100%
  );
}

.mv_title__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
  bottom: 0;
}
#mv .mv_title .wrap {
  margin-top: 251px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
#mv .mv_title h2 {
  font-size: 52px;
  color: var(--black);
  line-height: 1.5;
  font-family: var(--font-ternary);
}
#mv .mv_title h3 {
  font-family: var(--font-secondary);
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1040px) {
  #mv {
    background: url("../img/home/mv_bg.jpg") no-repeat center right;
    background-size: cover;
  }
  #mv .mv_title .wrap {
    margin-top: 100px;
  }
  #mv .mv_title h2 {
    font-size: 60px;
  }
  #mv .mv_title h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  #mv {
    background: url("../img/home/hero_sm_bg.jpg") no-repeat bottom center;
    background-size: cover;
  }

  .mv_title__overlay {
    display: none;
  }

  #mv .mv_title .wrap {
    margin-top: 0px;
    padding-top: 64px;
    flex-direction: column;
    align-items: start;
    height: 100%;
    padding-bottom: 64px;
  }
  #mv .mv_title h2 {
    margin-top: 190px;
    font-size: 60px;
    line-height: 1.4;
  }
  #mv .mv_title h3 {
    font-size: 14px;
  }
}

/*-----------------------------------------------------
	#sec_00
------------------------------------------------------*/
#sec_00 {
  position: relative;
  height: auto;
  margin-top: 80px;
  color: var(--text-color);
}

.mvv-list {
  flex-direction: column;
  gap: 20px;
}

.mvv-list__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mvv-list__item.right {
  align-items: flex-end;
}

.mvv-list__item h3 {
  font-family: var(--font-secondary);
  font-size: 36px;
}

.mvv-list__item h4 {
  font-size: 52px;
  width: fit-content;
  padding: 0 16px;
  font-family: var(--font-fourth);
}

.mvv-list__item:first-child h4 {
  background-color: #f7f6f5;
}

.mvv-list__item:nth-child(2) h4 {
  background-color: var(--brand-lien);
}

.mvv-list__item:last-child h4 {
  background-color: var(--brand-silk);
}

@media screen and (max-width: 750px) {
  #sec_00 {
    margin-top: 64px;
  }

  .mvv-list {
    gap: 14px;
  }

  .mvv-list__item h4 {
    background-color: transparent !important;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }

  .mvv-list__item h4 span {
    padding: 0 16px;
    width: fit-content;
  }

  .mvv-list__item:first-child h4 span {
    background-color: #f7f6f5;
  }

  .mvv-list__item:nth-child(2) h4 span {
    background-color: var(--brand-lien);
  }

  .mvv-list__item:last-child h4 span {
    background-color: var(--brand-silk);
  }

  .mvv-list__item h3 {
    font-size: 22px;
  }

  .mvv-list__item h4 {
    font-size: 30px;
  }
}

/*-----------------------------------------------------
	#sec_01
------------------------------------------------------*/
#sec_01 {
  position: relative;
  height: auto;
  margin-top: 80px;
}
.business_link {
  margin-bottom: 30px;
}
/* .business_link a:first-of-type {
  width: 100%;
} */
.business_link a {
  width: 49%;
  margin-bottom: 20px;
}
.business_link_child {
  height: 100%;
  position: relative;
  width: 100%;
  padding: 36px 78px;
  background: url("../img/home/service_01.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 2px;
}
.business_link a:nth-of-type(2) .business_link_child {
  background: url("../img/home/service_02.jpg") no-repeat center center;
  background-size: cover;
}
.business_link a:nth-of-type(3) .business_link_child {
  background: url("../img/home/service_03.jpg") no-repeat center center;
  background-size: cover;
}
.business_link a:nth-of-type(4) .business_link_child {
  background: url("../img/home/service_04.jpg") no-repeat center center;
  background-size: cover;
}
.business_link a:nth-of-type(5) .business_link_child {
  background: url("../img/home/service_05.jpg") no-repeat center center;
  background-size: cover;
}
/* .business_link a:nth-of-type(6) .business_link_child {
  background: url("../img/home/link_bg_06.jpg") no-repeat center center;
  background-size: cover;
} */
.business_link_child::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(107, 107, 107, 0.5);
  
  background: linear-gradient(
    90deg,
    rgba(107, 107, 107, 1) 0%,
    rgba(107, 107, 107, 0.5) 100%
  );
  transition: all 1s ease-out;
  opacity: 0.7;
  border-radius: 2px;
}
.business_link_child:hover::before {
  background: rgb(0, 27, 22);
  background: linear-gradient(
    90deg,
    rgba(0, 27, 22, 0.9) 0%,
    rgba(0, 27, 22, 0.5) 100%
  );
  transition: all 1s ease-out;
  opacity: 1;
  border-radius: 2px;
}
.business_link_child_inner {
  position: relative;
  z-index: +1;
}
.business_link_child_inner .link_icon {
  margin-bottom: 20px;
}
.business_link_child_inner h3 {
  /* margin-bottom: 20px; */
  font-size: 36px;
  /* font-weight: 700; */
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 400;
}
.business_link a:first-of-type .business_link_child_inner h3 {
  /* margin-bottom: 20px; */
  font-size: 36px;
}
.business_link_child_inner p {
  font-size: 16px;
  color: #fff;
}
.business_link_child_inner p span {
  margin-left: 25px;
}
@media screen and (max-width: 1040px) {
  .business_link_child {
    padding: 35px 40px 35px;
  }
  .business_link_child_inner h3 {
    font-size: 27px;
  }
  .business_link a:first-of-type .business_link_child_inner h3 {
    font-size: 40px;
  }
}
@media screen and (max-width: 750px) {
  #sec_01 {
    margin-top: 80px;
  }
  .business_link {
    margin-bottom: 15px;
  }
  .business_link a {
    width: 100%;
    margin-bottom: 20px;
  }
  .business_link_child {
    width: 100%;
    padding: 20px;
  }
  .business_link_child:hover::before {
    display: none;
  }
  .business_link_child_inner .link_icon {
    margin-bottom: 10px;
  }
  .business_link_child_inner .link_icon img {
    width: 40px;
    height: 40px;
  }
  .business_link_child_inner h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .business_link a:first-of-type .business_link_child_inner h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .business_link_child_inner p {
    font-size: 12px;
  }
  .business_link_child_inner p span {
    margin-left: 15px;
  }
}

/*-----------------------------------------------------
	#sec_02
------------------------------------------------------*/
#sec_02 {
  position: relative;
  height: auto;
  margin-top: 120px;
}
#sec_02 h3 {
  max-width: 847px;
  margin-bottom: 75px;
  font-size: 78px;
  color: #fff;
  text-align: center;
}
#sec_02 h3 span {
  display: block;
  margin-bottom: 10px;
  padding: 10px;
  background: #1a1a1a;
}
#sec_02 dl {
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #1a1a1a;
}
#sec_02 dl:last-of-type {
  margin-bottom: 50px;
}
#sec_02 dl dt {
  margin-right: 55px;
  font-size: 52px;
  font-weight: 700;
}
#sec_02 dl dd {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 1040px) {
  #sec_02 h3 {
    margin-bottom: 75px;
    font-size: 55px;
    text-align: left;
  }
  #sec_02 h3 span {
    display: inline-block;
    padding: 10px 20px;
  }
  #sec_02 dl {
    padding-bottom: 10px;
  }
  #sec_02 dl:last-of-type {
    margin-bottom: 50px;
  }
  #sec_02 dl dt {
    width: 100%;
    margin-right: 0;
    font-size: 48px;
  }
  #sec_02 dl dd {
    width: 100%;
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
  #sec_02 {
    margin-top: 80px;
  }
  #sec_02 h3 {
    margin-bottom: 40px;
    font-size: 43px;
  }
  #sec_02 h3 span {
    padding: 10px 15px 15px;
  }
  #sec_02 dl:last-of-type {
    margin-bottom: 30px;
  }
  #sec_02 dl dt {
    font-size: 30px;
  }
  #sec_02 dl dd {
    font-size: 14px;
  }
}

/*-----------------------------------------------------
	#sec_03
------------------------------------------------------*/
#sec_03 {
  position: relative;
  height: auto;
  margin-top: 120px;
}
.news::after {
  width: 32%;
  display: block;
  content: "";
}
.news .news_child {
  width: 32.5%;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
}
.news .news_child img {
  width: 100%;
  height: 183px;
  object-fit: cover;
  margin-bottom: 10px;
}
.news .news_child h3 {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news .news_child p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 15px;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  #sec_03 {
    margin-top: 80px;
  }
  .news::after {
    display: none;
  }
  .news .news_child {
    width: 49%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 414px) {
  .news .news_child {
    width: 100%;
  }
  .news .news_child img {
    height: auto;
  }
  .news .news_child h3 {
    margin-bottom: 80px;
    font-size: 14px;
  }
}
