@charset "UTF-8";
/* ファーストビュー */
.video-wrap {
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100vh; /* 画面の高さ */
  overflow: hidden;
}
.video-wrap #video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1; /* テキストを上に表示 */
}
.video-wrap #video.sp_mov {
  max-height: 100%;
}
/*-------------------------------------------
POLICY
-------------------------------------------*/
.policy {
  margin-bottom: 80px;
}
.policy .text03 {
  margin-bottom: 40px;
  line-height: 1.8;
}
.policy .introduction {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}
.policy .introduction .img {
  width: 60%;
  margin-right: 15%;
}
.policy .introduction .img img {
  width: 100%;
}
.policy .introduction .heading {
  width: 25%;
}
.policy .introduction .heading img {
  margin-bottom: 20px;
}
.policy .introduction .heading .text {
  font-family: serif;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.policy .introduction .heading .name {
  font-family: serif;
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}
.policy .description {
  display: flex;
  margin-bottom: 40px;
}
.policy .description .saki {
  width: 160px;
  height: 140px;
  background-color: #404772;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 20px;
  padding-left: 10px;
  margin-right: 7%;
  text-align: center;
}
.policy .description .saki .title {
  display: block;
  font-size: 30px;
  color: #fff;
}
.policy .description .saki .no {
  display: block;
  font-size: 40px;
  color: #fff;
}
.policy .description .text dt {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.policy .description .text dd {
  line-height: 1.8;
}
/*-------------------------------------------
NEWS
-------------------------------------------*/
.page-top-news {
  margin-bottom: 80px;
}
.top-news {
  padding: 0px;
}
.top-news dl {
  display: flex;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #d8d8d8;
}
.top-news dl:last-child {
  border-bottom: 1px solid #d8d8d8;
}
.top-news dt {
  margin: 0 20px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.top-news dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.top-news dd a {
  text-decoration: none;
}
/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .video_wrap {
    height: 100vh;
  }
  /* POLICY */
  .policy {
    padding: 80px 0;
    margin-bottom: 30px;
  }
  .policy .introduction {
    flex-direction: column;
  }
  .policy .introduction .img {
    width: 100%;
    margin: 0 0 40px;
  }
  .policy .introduction .heading {
    width: 80%;
    margin: 0 80px 0 80px;
  }
  .policy .description {
    margin-bottom: 40px;
  }
  .policy .description .saki {
    width: 80px;
    height: 80px;
    padding-top: 10px;
    margin-right: 20px;
  }
  .policy .description .saki .title {
    font-size: 14px;
  }
  .policy .description .saki .no {
    font-size: 32px;
  }
  .policy .description .text dt {
    font-size: 18px;
  }
  .policy .description .text dd {
    font-size: 14px;
  }
  /* TOP NEWS*/
  .top-news {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
  }
}