@charset "utf-8";

/* 位置調整 */
.bf_04{
  margin-top: 45px  !important;
}
.bf_14{
  margin-top: 40px !important;
}

.mv_inner{
  position: relative;
  overflow: hidden;
}
.swiper-slide picture img{
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.mv_loop{
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.mv_loop_inner{
  display: flex;
  width: 100%;
}
.mv_loop_inner img{
  min-width: 1748px;
  max-width: none;
}
.mv_loop_inner img:first-child {
  animation: loop 200s -100s linear infinite;
}
.mv_loop_inner img:last-child {
  animation: loop2 200s linear infinite;
}
@keyframes loop {
  0% {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
      transform: translateX(0);
  }
  to {
      transform: translateX(-200%);
  }
}
.mv_pri{
  display: none;
}

/* パララックス */
.bg-image-clip {
  width: 100%;
  height: 100%;
  min-height: 300px; /* 表示する高さ */
  clip-path: inset(0); /* 切り抜き */
  z-index: -1;
}
.bg-image-fixed {
  position: fixed; /* 背景を固定 */
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
/* パララックス */

.intro{
  position: relative;
  &::before{
    content: "";
    position: absolute;
    display: block;
    background: var(--sub-color);
    width: 100%;
    height: 316px;
    top: 0;
    z-index: -1;
  }
  .bg-image-fixed{
    background-image: url(../img/intro_visual.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.intro_inner{
  max-width: 1024px;
  width: 100%;
  margin: auto;
  padding: 60px 0 80px 0;
  position: relative;
  height: 100%;
}
.intro_top{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.nt_txt{
  color: #FFF;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}
.into_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
  margin-top: 30px;
}
.il_box{
  max-width: 308px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ib_circle{
  max-width: 241px;
  width: 100%;
  min-height: 241px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
 .ic_num{
  color: var(--main-color);
  -webkit-text-stroke: 3px #FFF;
  font-size: 7.2rem;
  font-weight: 900;
  paint-order: stroke;
  line-height: 1;
  display: inline-block;
  font-family: "Roboto";
  margin-top: 20px;
}
.lc_txt{
  text-align: center;
  color: #FFF;
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 35px;
  margin-top: -10px;
}
.lb_txt{
  line-height: 36px;
}

.products{
  background: var(--base-color);
  position: relative;
  .bg-image-fixed{
    background-image: url(../img/pro_visual.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
} 
.pro_inner{
  max-width: 1024px;
  width: 100%;
  margin: auto;
  padding: 64px 0;
  position: relative;
  height: 100%;
}
.pi_top{
  text-align: center;
  p{
    color: var(--main-color);
    font-weight: 700;
    font-size: 2.4rem;
    margin-top: 64px;
  }
}
.pro_list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.pro_box{
  max-width: 502px;
  width: 100%;
  border-top: 2px solid var(--main-color);
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  background: #FFF;
}
.pb_txt{
  letter-spacing: 0.64px;
  line-height: 32px;
  margin-top: 18px;
}
.brand_name{
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.96px;
}
.pro_fig{
  margin-top: 24px;
}
.brand_fig{
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.brand_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* iPad調整用 */
@media (orientation: portrait) and (min-width: 768px){
  .swiper-slide picture img{
    height: 60vh;
  }
  .products .pro_visual_ip{
    background-image: url(../img/pro_visual_ip.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

@media screen and (max-width: 767px){
  .swiper-slide picture img{
    height: auto;
  }

  .intro_inner{
    padding: 32px 5%;
  }
  .intro_top{
    flex-direction: column;
    gap: 10px;
  }
  .it_logo{
    width: 101px;
    height: 58px;
  }
  .into_list {
    gap: 10px;
  }
  .il_box {
    max-width: 100%;
  }
  .ib_circle {
    max-width: 140px;
    min-height: 140px;
    gap: 5px;
  }
  .ic_num {
    font-size: 4rem;
    margin-top: 14px;
  } 
  .lc_txt {
    font-size: 1.4rem;
    line-height: 18px;
    margin-top: 0;
  }

  .pro_inner{
    padding: 64px 5%;
  }
  .pi_top p{
    margin-top: 30px;
  }
  .pro_box {
    padding: 32px 5%;
  }
  .brand_list{
    gap: 10px;
    margin-top: 10px;
  }
  .brand_list a{
    width: calc(50% - 5px);
  }
  .brand_list a img{
    width: 100%;
  }

  .bf_04{
    margin-top: 15px !important;
  }
  .bf_14{
    margin-top: 15px !important;
  }
}