.masked-image{
  position: relative;
  height: 100vh;
}

.masked-image img{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.image1{
  z-index: 10;
}

.image2 {
  /* background-image: url('/images/car2.jpg');
  background-size: cover;
background-repeat: no-repeat; */
  /* -webkit-mask-image: radial-gradient(circle,black 50%,white 70%); */
  mask-image: radial-gradient(circle,rgba(0,0,0,1) 10%,rgba(0,0,0,0) 30%);
  /* mask-size: 30%; */
  /* mask-size: cover; */
  mask-repeat: no-repeat;
  mask-position: center; 
  z-index: 100;
  transition: all 10s;
  mask-size: 0%;
}

.image2.active{
  /* mask-image: radial-gradient(circle,rgba(0,0,0,1) 100%,rgba(0,0,0,0) 110%); */
  
  mask-size: 1000%;
}

/* fv */
.fv{
  height: 100vh;
  position: relative;
  /* mask-image: none; */
  mask-image: url('../../images/fv_front.jpg');
}

.fv::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: .5;
  z-index: 10;
}

.fv__logo{
  position: absolute;
  top: 10px;
  right: 100px;
  color: #fff;
  z-index: 20;
}

.fv img{
width: 100%;
height: 100%;
position: absolute;
top: 0;
object-fit: cover;
}

 .fv__back {
}

.fv__front{
  mask-image: radial-gradient(circle,rgba(0,0,0,1)10%,rgba(0,0,0,0)30%);
  z-index: 10;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 0%;
  transition: all 10s;
}

.fv__front.active {
  mask-size:1000%;
}

/* product */
.product{
padding-top: 120px;
padding-bottom: 120px;
background-color: #fff;
}

.product__heading{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.product__list{
  display: flex;
  gap: 15px;
  margin-top: 60px;
}

  @media screen and (max-width:430px) {
    .product__list{
      flex-direction: column;
      height: 600px;
    }
  }

.product__item{
  flex-basis: 18%;
  height: 300px;
  transition: all 0.1s;
  position: relative;
  cursor: pointer;
}

  @media screen and (max-width:430px) {
    .product__item{
      height: 80px;
    }
  }

.product__item::after{
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: rgba(0,0,0, .5);
border-radius: 48px;
z-index: 10;
}

.product__item.scale{
  flex: 0 0 50%;
}

.circle-wrapper{
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 15;
}

.circle{
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
}

.circle.hover{
border: 2px solid greenyellow;
}

.kuma{
  font-size: 24px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: transform .3s;
}

.kuma.active{
  opacity: 1;
  transform: translateY(0)
}

.product__item img{
  width: 100%;
  height: 100%;
  border-radius: 48px;
  object-fit: cover;
}

/* blog */

.blog {
padding-top: 120px;
padding-bottom: 1200px;
background-color: #000;
}

.blog__inner {

}

.inner {

}

.blog__heading.heading{
color: #fff;
}

.blog__container {
margin-top: 80px;
}

.blog__list {
display: flex;
gap: 35px;
}

.blog__item {
width: 31%;
height: 250px;
border-radius: 8px;
display: flex;
flex-direction: column;
transition: all .3s;
position: relative;
}

.blog__item.active{
  height: 410px;
}

.card__image {
position: absolute;
top: 0;
border-radius: 0 ;
transition: all .3s;
}

.card__image.active{
  top: -21.9512%;
}

.card__image img{
  width: 100%;
  aspect-ratio: 31/18;
border-radius: 8px 8px 0 0;
}

.card__image.active img{
  transform: scale(.5);
  border-radius: 8px;
} 

.card__body {
background-color: #fff;
padding:0 16px 20px;
display: flex;
flex-direction: column;
/* justify-content: space-between; */
flex-grow: 1;
border-radius:8px;
overflow: hidden;
}

.card__title {
  font-family: 'Noto sans JP';
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-top: 200px;
  transition: all .3s;
}

.card__title.active{
margin-top: 152px;
}

.card__description {
margin-top: 20px;
display: -webkit-box;
-web-line-clamp:5;

}

.card__button-wrapper{
  display: flex;
  justify-content: center;
}

.card__button {
margin-top: 20px;
display: inline-block;
border-radius: 16px;
background-color: greenyellow;
color: #fff;
padding: 12px 24px;
}

.blog__button-wrapper{
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.blog__button {
  width: 300px;
  height: 60px;
  padding: 10px 78px;
  line-height: 40px;
  color: #fff;
  text-align: center;
border: 2px solid #fff;
border-radius: 30px;
font-family: 'Orbitron';
}











/* 共通 */

.inner{
  max-width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
}

.heading{
  font-family: 'Noto sans JP';
  font-weight: bold;
  color: #000;
  font-size: 32px;
  line-height: 46px;
  text-align: center;
}