@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	.mv
------------------------------ */
@media screen and (max-width: 768px) {
  .mv .mv_video {
    margin-bottom: 3rem;
  }
}
.mv .mv_video video {
  width: 100%;
  vertical-align: middle;
  pointer-events: none;
}
.mv .txt {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv .txt {
    font-size: 1.4rem;
  }
}

/* ------------------------------
	.times
------------------------------ */
.times {
  padding: 9.5rem 0 9rem;
}
@media screen and (max-width: 768px) {
  .times {
    padding: 10rem 0 7rem;
  }
}
.times .ttl_box {
  padding-bottom: 5rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .times .ttl_box {
    padding-bottom: 3rem;
    margin-bottom: 4rem;
  }
}
.times .times_logo {
  width: 85.6rem;
  margin: 0 auto 1rem;
}
@media screen and (max-width: 768px) {
  .times .times_logo {
    width: 100%;
  }
}
.times .times_txt {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .times .times_txt {
    font-size: 1.8rem;
  }
}
.times .times_list {
  display: flex;
  flex-wrap: wrap;
}
.times .times_list .times_box {
  position: relative;
  width: 29rem;
  margin-right: 1.3rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .times .times_list .times_box {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .times .times_list .times_box:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .times .times_list .times_box:nth-child(n+5) {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .times .times_list .times_box:nth-child(n+2) {
    margin-top: 4rem;
  }
}
.times .times_list .times_box a {
  position: relative;
  display: block;
  height: 100%;
  padding-bottom: 3.5rem;
  border-bottom: 0.5rem solid #DB4D4D;
  overflow: hidden;
}
.times .times_list .times_box .img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.times .times_list .times_box .ttl {
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .times .times_list .times_box .ttl {
    margin-bottom: 1rem;
  }
}
.times .times_list .times_box .ttl .palt {
  font-feature-settings: "palt";
}
@media screen and (min-width: 769px) {
  .times .times_list .times_box .ttl.height3 {
    height: 3.6em;
  }
}
.times .times_list .times_box .txt {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.6;
}
.times .times_list .times_box .times_btn {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -0.4rem;
  background: #DB4D4D;
}
.times .times_list .times_box .times_btn .btn_txt {
  position: relative;
  z-index: 3;
  display: block;
  padding: 0.5rem 1rem 0.5rem 3rem;
  background: #DB4D4D url(../img/common/ico_arw03.svg) no-repeat;
  background-size: 1rem;
  background-position: 1rem center;
  color: #fff;
  font-size: 1.4rem;
}
.times .times_list .times_box .times_btn::before {
  position: absolute;
  z-index: 1;
  top: 0.6rem;
  left: -1rem;
  content: "";
  width: 3rem;
  height: 3rem;
  background: #DB4D4D;
  transform: rotate(30deg);
}

/* ------------------------------
	.img_loop
------------------------------ */
.img_loop {
  position: relative;
  display: flex;
  overflow: hidden;
}
.img_loop .img_box {
  display: flex;
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
@media screen and (max-width: 768px) {
  .img_loop .img_box {
    animation: infinity-scroll-left 25s infinite linear 0.5s both;
  }
}
.img_loop .img {
  width: 40.3rem;
}
@media screen and (max-width: 768px) {
  .img_loop .img {
    max-width: 30rem;
  }
}
.img_loop .img_slide_txt {
  position: absolute;
  z-index: 2;
  bottom: -7rem;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .img_loop .img_slide_txt {
    bottom: -2rem;
  }
}
.img_loop .img_slide_txt img {
  width: 100%;
  max-width: 138.2rem;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}