
/* ================================================
common
================================================ */

@media (min-width: 768px) {
    .sp {
        display: none;
    }
  
}

@media (max-width: 768px) {
    .pc {
        display: none;
    }
}

.content-asset {
    background-color: #333;
    color: #EEEEEE;
}

.js_typing {
    margin-bottom: 40px;
    font-size: 24px;
    font-family: "Heebo", sans-serif;
    text-align: center;
}




/* ================================================
loading
================================================ */
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
      position: fixed;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 99999;
      background:#333;
      text-align:center;
      color:#fff;
    }
    
    /* Loading画像中央配置　*/
    #splash_logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
      width: 480px;
    }
    
    /* fadeUpをするアイコンの動き */
    .fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }

/* ================================================
Fadein
================================================ */

.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }



/* ================================================
伸びる背景CSS
================================================ */


/*========= レイアウトのためのCSS ===============*/

/* .bgextend{
	width: 220px;
	padding: 20px;
	margin:0 20px 20px 0;
	box-sizing:border-box;
} */

/*========= 背景色の動きのCSS ===============*/

/*背景色が伸びて出現 共通*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*--------- 左から --------*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*--------- 右から --------*/
.bgRLextend::before{
	animation-name:bgRLextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*--------- 下から --------*/
.bgDUextend::before{
	animation-name:bgDUextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*--------- 上から --------*/
.bgUDextend::before{
	animation-name:bgUDextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;/*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}






/* ================================================
mv
================================================ */

.mv {
}

@media (min-width: 769px) {
    .mv {
        margin-top: 150px;
    }
}

@media (max-width: 768px) {
    .mv {
        margin-top: 72px;
    }
}

.mv__inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.mv img {
    width: 100%;
    height: auto;
}


.mv__logo {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 520px;
    transform: translateY(-50%);
}

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}

.img-wrap {
    overflow: hidden;
    position: absolute;
    width: 33%;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
  }

  @media (max-width: 768px) {
    .img-wrap {
        overflow: hidden;
        position: absolute;
        top: 80%;
        width: 70%;
        left: 50%;
        transform: translateX(-50%);
      }
}


  
  .img-wrap::before {
    animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: #131313;
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .img-wrap::before {
        background: #333333;
      }
  }


 
  @keyframes img-wrap {
    100% {
      transform: translateX(100%);
    }
  }

  /* 2秒間かけてフェードイン */
.fadeIn1s {
    animation-name: fadeIn1s;
    animation-delay: 0s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateX(-50px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
  /* 2秒間かけてフェードイン */
  .fadeIn1s {
    animation-name: fadeIn1s;
    animation-delay: 0s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn1s {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
}



.img-wrap__container {
    /* overflow: hidden; */
    position: absolute;
    width: 40%;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
}

  @media (max-width: 768px) {
    .img-wrap__container {
        /* overflow: hidden; */
        position: absolute;
        top: 66%;
        width: 75%;
        left: 50%;
        transform: translateX(-50%);
      }
}


.box {
    width: 33%;
    /* height: ; */
    margin-bottom: 50px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
  }
  
  .box.scroll_img {
    & > img {
      width: 100%;
    }
    & > div {
       width: 100%;
    }
  }
  
  .box1 {
    & > img {
      width: 0%;
      height: 100%;
      object-fit: cover;
      //object-position: 50% 50%;
      object-position: 0% 50%; /*修正*/
      transition: width 3s;
    }
  }




/* ================================================
main
================================================ */


.main {
    padding: 120px 0;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main {
        padding: 40px 24px 80px;
    }
}


/* ================================================
title
================================================ */

.title__inner {
    margin: 0 auto;
}

.title h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 2;
}

@media (max-width: 768px) {
    .title h2 {
        font-size: 20px;
    }
}

.lead {
    margin-top: 40px;
    line-height: 2;
}

@media (max-width: 768px) {
    .lead {
        margin-top: 40px;
        font-size: 14px;
    }
}

.lead p {
    text-align: center;
}

.lead p:nth-child(n+2) {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .lead p:nth-child(n+2) {
        margin-top: 16px;
    }
}



/* ================================================
item
================================================ */

.item-list {
    margin-top: 80px;
}

.item-list__title {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
}


.item__inner {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1079px) {
    .item__inner {
        display: block
    }
}

@media (min-width: 1080px) {
    .item:nth-child(n+2) {
        margin-left: 200px;
    }
}

@media (max-width: 1079px) {
    .item:nth-child(n+2) {
        margin-top: 48px;
    }
}

@media (max-width: 1079px) {
.item__img {
    width: 75%;
    margin-inline: auto;
}
}


.item__img img {
    width: 100%;
    height: auto;
    /* opacity: 0.7; */
}

.item__name {
    margin-top: 40px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .item__name {
        margin-top: 32px;
        font-size: 14px;
        line-height: 2;
    }
}

.item__title {
    text-align: center;
    font-size: 16px;
}

@media (max-width: 768px) {
    .item__title {
        font-size: 16px;
    }
}

.item__price {
    font-size: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .item__price {
        font-size: 16px;
    }
}

.item__button {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .item__button {
        margin-top: 32px;
    }
}

.item__button-link {
    font-size: 20px;
}

@media (max-width: 768px) {
    .item__button-link {
        font-size: 18px;
    }
}

.item__attention {
    margin-top: 64px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .item__attention {
        margin-top: 48px;
        line-height: 2;
        font-size: 12px;
    } 
}

/*== 少し出ていた線が伸びる */

.btnlinestretches2{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*ボタンの形状*/  
	color:#EEEEEE;
    padding: 10px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*線の設定*/
.btnlinestretches2::before,
.btnlinestretches2::after {
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
    /*事前に出現させる線の形状*/
	border:solid #EEEEEE;
	width:10px;
	height:10px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

.btnlinestretches2::before{
    /*事前に出現させる線の位置*/
	top:0;
	left:0;
    /*事前に出現させる線の形状*/
	border-width:2px 0 0 2px;
}

.btnlinestretches2::after{
    /*事前に出現させる線の位置*/
	bottom:0;
	right:0;
    /*事前に出現させる線の形状*/
	border-width:0 2px 2px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches2:hover::before,
.btnlinestretches2:hover::after{
	width:calc(100% - 2px);
	height:calc(100% - 2px);
	border-color:#EEEEEE
}


/* ================================================
youtube
================================================ */

.youtube {
    margin-top: 80px;
}

.youtube__title {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: center;
}

.youtube__img {
    width: 60%;
    margin-inline: auto;
}

@media (max-width: 768px) {
    .youtube__img {
        width: 100%;
        margin-inline: auto;
    }
}

.youtube__img img {
    width: 100%;
    height: auto;
    /* opacity: 0.7; */
}

.youtube__text {
    margin-top: 40px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .youtube__text {
        font-size: 14px;
        line-height: 2;
    }
}

.youtube__text span {
    font-size: 20px;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .youtube__text span {
        font-size: 18px;
    }
}

/*　画像拡大＋回転　*/

.zoomInRotate img{
	transform: scale(1);
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomInRotate a:hover img{/*hoverした時の変化*/
	transform:rotate(5deg) scale(1.2);/*拡大、回転の値を変更したい場合はこの数値を変更*/
    opacity: 1;
}


/*　画像のマスク　*/

.mask{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}

.mask2{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}