@charset "UTF-8";


/* =======================================================
   top-mv
======================================================== */
.top-mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  overflow: hidden;
}
/*************************/
@media screen and (max-width: 767px)
{
  .top-mv {
    height: 100vh;
  }
}
/*************************/

/*======== top-mv__image ==========================*/
.top-mv__image {
  position: relative;
  width: 100%;
  height: calc(100vh + 20%);
}
.top-mv__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  transform: translateY(-20%);
  animation: moveUp 30s linear forwards;
  animation-delay: 0.3s;
}
@keyframes moveUp {
  from {
    transform: translateY(-20%);
  }
  to {
    transform: translateY(0%);
  }
}

/*======== top-mv__text ==========================*/
.top-mv__text {
  position: absolute;
  top: 50%;
  left: clamp(40px,10.091vw,100px); /*991*/
  transform: translateY(-50%);
}
.top-mv__text .text01,
.top-mv__text .text02 {
  visibility: hidden;
  animation: text-fade-in 3s;
  animation-fill-mode: forwards;
}
.top-mv__text .text01 {
  width: clamp(600px,47.857vw,670px); /*767*/
  margin-bottom: 36px;
  animation-delay: 1s;
}
.top-mv__text .text02 {
  width: calc(clamp(600px,47.857vw,670px) * 0.48); /*767*/
  animation-delay: 3s;
}
@keyframes text-fade-in {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
/*************************/
@media screen and (min-width: 1920px)
{
  .top-mv__text {
    left: calc(50% - 640px)
  }
}
/*************************/
@media screen and (max-width: 767px)
{
  .top-mv__text .text01 {
    width: max(260px,75.619vw);
  }
  .top-mv__text .text02 {
    width: calc(max(260px,75.619vw) * 0.48); /*767*/
  }
}
/*************************/


/* =======================================================
   top-service
======================================================== */
.top-service {
  display: flex;
  justify-content: space-between;
}
.top-service__image {
  width: 48%;
}
.top-service__text {
  width: 50%;
  display:  flex;
  flex-direction: column;
}
.top-service__item {
  display: flex;
  flex-direction: column;
}
/*************************/
@media screen and (max-width: 767px)
{
  .top-service {
    flex-direction: column;
  }
  .top-service__image,
  .top-service__text {
    width: 100%;
  }
  .top-service__image,
  .top-service__image img{
    max-height: 20vh;
  }
  .top-service__image {
    margin-bottom: 40px;
  }
}
/*************************/

/*======== top-service__item ==========================*/
.top-service__item {
  width: 100%;
  margin-bottom: 40px;
}
.top-service__item li {
  width: 100%;
  border-top: 1px solid #707070;
}
.top-service__item li:last-child {
  border-bottom: 1px solid #707070;
}
.top-service__item li a {
  padding: clamp(36px,7.813vw,60px) 20px; /*768*/
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
}
.top-service__item a:hover {
  background: #373737;
}
.top-service__item li a .txt::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  margin-left: 30px;
  right: 20px;
  transition: all .2s;
}

/*======== number,txt ==========================*/
.top-service__item .number {
  font-family: var(--Rajdhani);
  font-weight: 600;
  font-size: 3rem;
  margin-right: clamp(20px,4.036vw,40px); /*991*/
  line-height: 1;
}
.top-service__item .txt {
  font-size: 1.8rem;
}
/*************************/
@media screen and (max-width: 767px)
{
  .top-service__item li a {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-service__item .number {
    opacity: 0.4;
    margin-right: 0;
  }
}
/*************************/


.top-service__text .btn {
  margin-top: auto;
}


/* =======================================================
   top-news
======================================================== */
.top-news {
  max-width: 1280px;
  margin: -30px auto 0;
  padding-left: 200px;
}
.top-news__list li a {
  border-bottom: 1px solid #E2E2E2;
  display: block;
  padding-bottom: 30px;
  padding-right: 30px;
  color: var(--Black);
  display: flex;
  align-items: center;
  position: relative;
}
.top-news__list li a:hover {
  background: #f9f9f9;
}
.top-news__list li a {
  padding-top: 30px;
}

.top-news__list .date {
  font-family: var(--Rajdhani);
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
.top-news__list .date::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 25px;
    background: var(--Black);
    transform: rotate(40deg);
    margin-left: 30px;
}

.top-news__list .title::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--Black);
  border-right: 1px solid var(--Black);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  margin-left: 30px;
  right: 20px;
  transition: all .2s;
}

/*************************/
@media screen and (max-width: 1279px)
{
  .top-news {
    padding-left: 100px;
  }
}
/*************************/
@media screen and (max-width: 991px)
{
  .top-news {
    padding-left: clamp(16px,3.027vw,30px);
    padding-right: clamp(16px,3.027vw,30px);
    line-height: 1.8
  }
}
/*************************/
@media screen and (max-width: 767px)
{
  .top-news__list li a {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-news__list .date {
    color: #999
  }
  .top-news__list .date::after {
    display: none;
  }
}
/*************************/