@charset "utf-8";
body{
  padding-top: 0;
}
body:not(.scroll) #header,
body:not(.scroll) #header svg{
  color: var(--color-white);
  background-color: transparent;
}
.fullwidth_box{
  width: 100%;
}
.fullwidth_box{
  display: block;
  position: relative;
}
.fullwidth_box .image,
.fullwidth_box video{
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  max-height: 630px;
  min-height: calc(400px + 10vw);
  position: relative;
}
.fullwidth_box::before,
.fullwidth_box::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/common/raster.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0.5;
}
.fullwidth_box .text{
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 0;
  padding: 0 5vw var(--space-48);
  flex-direction: column;
  width: 100%;
}
#mv .fullwidth_box .image{
}
.article_carousel{
  margin-right: calc(50% - 50vw);
}
.article_carousel .swiper-slide > a{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.article_carousel .swiper-slide .text{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.9),rgba(0,0,0,0));
}
.article_carousel .swiper-button-next,
.article_carousel .swiper-button-prev{
  color: var(--color-black);
  top: 0;
  margin-top: 0;
  width: 32px;
  height: 32px;
}
.article_carousel .swiper-button-next{
  right: 5vw ;
}
.article_carousel .swiper-button-next svg{
  transform: rotate(180deg);
}
.article_carousel .swiper-button-prev{
  left: auto;
  right: calc(5vw + 32px);
}
.home_about_movie video{
  min-height: 0;
  height: 400px;
}
.home_about_movie .text{
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.home_about_movie .symbol{
  width: 140px;
  opacity: 0.7;
}
.home_about_movie .text h2{
  opacity: 0.7;
}

.home_column_list{
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 29% repeat(3, 1fr);
  gap: 16px;
}
.home_column_list > li:first-of-type{
  grid-row: span 2;
  padding-right: 54px;
}
.home_column_list > li{
  min-width: 0;
}
#home_selection h2{
  background: url("../images/home/home_selection_title.jpg") no-repeat center center;
  background-size: cover;
  flex-direction: column;
  line-height: 1;
  height: 400px;
  padding-top: 70px;
}
#home_selection h2 svg{
  color: var(--color-white);
  width: 274px;
}
.home_about_list li{
  width: calc(50% - 8px);
}
.home_about_list li a{
  display: block;
  position: relative;
}
.home_about_list li .image{
  aspect-ratio: 2/1;
}
.home_about_list li .text{
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  padding: 16px;
}
.home_more_list li{
  width: calc(50% - 8px);
  position: relative;
}
.home_more_list li .image{
  aspect-ratio: 3 / 1;
}
.home_more_list li .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.home_more_list li .text.oku{
  text-indent: -9999px;
  background: url("../images/common/oku_logo.png") no-repeat center center;
  background-size: 100%;
  width: auto;
  height: 145px;
  max-height: 80%;
  aspect-ratio: 140/145;
}



/*------------------------------------------------
tab
--------------------------------------------------*/
@media only screen and (max-width: 1080px) {
  .home_about_movie .symbol{
    width: 80px;
  }
  .home_column_list{
    grid-template-columns: 38.2% repeat(2, 1fr);
  }
  .home_column_list > li:first-of-type{
    padding-right: 0;
  }
  .home_column_list li:nth-of-type(n+6){
    display: none;
  }
  
}

/*------------------------------------------------
sp
--------------------------------------------------*/
@media only screen and (max-width: 540px) {
  #mv .fullwidth_box .image{
    aspect-ratio: 2/3;
  }
  #mv .fullwidth_box .text p{
    text-align: left;
  }
  #mv .fullwidth_box .text p br{
    display: none;
  }
  #home_impression{
    padding-top: 3.2rem;
  }
  .home_about_movie video{
    min-height: 256px;
  }
  .home_about_movie .text{
    padding-bottom: 5vw;
    gap: 16px;
  }
  .home_about_movie .symbol{
    width: 40px;
  }
  #home_selection h2{
    aspect-ratio: 2/1;
    height: auto;
  }
  .home_column_list{
    display: flex;
    flex-direction: column;
    column-gap: 32px;
  }
  .home_column_list > li{
    width: 100%;
  }
  .home_column_list > li a{
    display: grid;
    grid-template-columns: 30% repeat(1, 1fr);
    gap: 16px;
  }
  .home_column_list > li a .image{
    aspect-ratio: 4/5;
  }
  #home_selection .nav01 a{
    width: calc((90vw - 3.2rem) / 3);
  }
  #home_selection .stock_list li:nth-of-type(n+19){
    display: none;
  }
  .home_more_list li{
    width: 100%;
  }
}



