
/* --------------------------- font --------------------------- */

/*
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 200, 400, 500, 700;

font-family: "fot-rodin-pron", sans-serif;
font-weight: 600;

font-family: "neue-haas-grotesk-display", sans-serif;
font-weight: 600, 700;

font-family: "bank-gothic-bt", sans-serif;
font-weight: 200, 500;
*/

/* --------------------------- base --------------------------- */

*{
  line-height:1;
  letter-spacing:0;
  box-sizing: border-box;
  list-style:none;
  padding:0;
  margin:0;
}
html{
  -webkit-text-size-adjust: 100%;
  height:100svh;
  overflow:hidden;
}
body{
  height:100svh;
  font-family: "noto-sans-cjk-jp", sans-serif;
  overflow:hidden;
}
img{
  display:block;
}

.sp_block{
  display:none;
}

@media screen and (max-width: 768px) {
  body{
    overflow:hidden;
  }
  .pc_block{
    display:none;
  }
  .sp_block{
    display:block;
  }
}

/* --------------------------- Header --------------------------- */

.header_logo{
  position:fixed;
  z-index:10;
  top:24px;
  left:calc(50% - 77.5px);
  width:155px;;
  height:auto;
}
.header_logo_svg{
  display:block;
  width:100%;
  height:auto;
}
.header_logo_svg path,
.header_logo_svg rect{
  transition: fill 1s;
}
.header_logo_svg.active path,
.header_logo_svg.active rect{
  fill:#FFF;
}

.menu_btn{
	position: fixed;
  z-index:10;
  top:28px;
  right:32px;
  -webkit-appearance: none;
  appearance: none;
	background: none;
	border: none;
	appearance: none;
	cursor: pointer;
	width: 48px;
	height: 10px;
	transition: all 1s;
}
.menu_btn span{
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
	transition: all .4s;
}
.menu_btn span:nth-of-type(1){
	top:0;
}
.menu_btn span:nth-of-type(2){
	bottom: 0;
}
.menu_btn.active span:nth-of-type(1){
	transform: translateY(4px) rotate(20deg);
}
.menu_btn.active span:nth-of-type(2){
	transform: translateY(-4px) rotate(-20deg);
}
.menu_btn.active span{
	background-color: #FFF;
}

.gnav{
  position:fixed;
  z-index:8;
  top:0;
  left:0;
  display:flex;
  flex-flow:column nowrap;
  justify-content: center;
  align-items: center;
  gap: 15px 0;
  width:100%;
  height:100%;
  background: url("./img/gnav_bg_left.png") no-repeat left center / auto 90svh,
              url("./img/gnav_bg_right.png") no-repeat right center / auto 90svh;
  background-color: #000;
}
.gnav_item{
  font-family: "bank-gothic-bt", sans-serif;
  font-weight: 200;
  font-size:64px;
  text-decoration: none;
  color:#FFF;
}

@media screen and (max-width: 768px) {
  .header_logo{
    top:15px;
    left:calc(50% - 51.5px);
    width:103px;;
  }

  .menu_btn{
    top:17px;
    right:20px;
    width: 40px;
    height: 8px;
  }
  .menu_btn.active span:nth-of-type(1){
    transform: translateY(3px) rotate(20deg);
  }
  .menu_btn.active span:nth-of-type(2){
    transform: translateY(-3px) rotate(-20deg);
  }

  .gnav{
    gap: 30px 0;
    background: url("./img/gnav_bg_top.png") no-repeat center top / 70vw auto,
                url("./img/gnav_bg_bottom.png") no-repeat center bottom / 70vw auto;
    background-color: #000;
  }
  .gnav_item{
    font-size:40px;
  }
}

/* --------------------------- fadeout --------------------------- */

.fadeout{
  transition:opacity 0.5s;
  opacity:0;
  pointer-events: none;
}

/* --------------------------- scroller --------------------------- */

.scroller{
  position:relative;
  height:100svh;
  overflow: hidden scroll;
}

/* --------------------------- FV --------------------------- */

.fv{
  position:sticky;
  top:0;
  left:0;
  height:100svh;
  overflow:hidden;
}
.fv_video{
  width:100%;
  height:100%;
  object-fit: cover;
}
.fv_skip{
  position:absolute;
  z-index:2;
  bottom:32px;
  right:32px;
  -webkit-appearance: none;
  appearance: none;
  border-radius:0;
  border:none;
  background: none;
  cursor: pointer;
}
.fv_skip_image{
  display:block;
  width:90px;
}
.fv_volume{
  position:absolute;
  z-index:2;
  left:32px;
  bottom:25px;
  width:34px;
  height:28px;
  -webkit-appearance: none;
  appearance: none;
  border-radius:0;
  border:none;
  background: none;
  cursor: pointer;
}
.fv_volume_off{
  position:absolute;
  top:2.5px;
  left:0;
  width:22.5px;
}
.fv_volume_on{
  position:absolute;
  top:0;
  left:0;
  display:none;
  width:34px;
}
.fv_volume.active .fv_volume_off{
  display:none;
}
.fv_volume.active .fv_volume_on{
  display:block;
}
.fv_left,
.fv_right{
  position:absolute;
  width:50%;
}
.fv_left{
  top:0;
  left:0;
  background-color: #61C6F2;
}
.fv_right{
  bottom:0;
  right:0;
  background-color: #E15603;
}
@keyframes fvLeftAndRight {
  from {
    height:0;
  }
  to {
    height:100%;
  }
}
.fv_line_left,
.fv_line_right{
  position:absolute;
  top:0;
  width:50%;
  height:100%;
  overflow:hidden;
}
.fv_line_left{
  left:0;
}
.fv_line_right{
  right:0;
}
.fv_line_left_image,
.fv_line_right_image{
  position:absolute;
  top:0;
  height:100%;
}
.fv_line_left_image{
  right:100%;
}
.fv_line_right_image{
  left:100%;
}
@keyframes fvLineLeftImage {
  from {
    right:100%;
  }
  to {
    right:-8svh;
  }
}
@keyframes fvLineRightImage {
  from {
    left:100%;
  }
  to {
    left:-8svh;
  }
}
.fv_line_top,
.fv_line_bottom{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  width:auto;
}
.fv_line_top{
  bottom:100%;
}
.fv_line_bottom{
  top:100%;
}
.fv_line_top_image,
.fv_line_bottom_image{
  display:block;
  height:100svh;
}
@keyframes fvLineTop {
  from {
    bottom:100svh;
  }
  to {
    bottom:76svh;
  }
}
@keyframes fvLineBottom {
  from {
    top:100svh;
  }
  to {
    top:76svh;
  }
}

.fv_center_left,
.fv_center_right{
  position:absolute;
  top:10svh;
  height:calc(80svh);
  transition:opacity 0.5s;
}
.fv_center_left{
  right:50%;
  background-color: #61C6F2;
}
.fv_center_right{
  left:50%;
  background-color: #E15603;
}
@keyframes fvCenterLeftAndRight {
  from {
    width:0;
  }
  to {
    width:50%;
  }
}

.fv_logo{
  position:absolute;
  top:3.5svh;
  left:50%;
  transform:translateX(-50%);
  height:3svh;
  opacity:0;
}
.fv_product_blue,
.fv_product_orange{
  position:absolute;
  top:0;
  display:flex;
  justify-content: center;
  align-items: center;
  width:50%;
  height:100%;
  transition:opacity 0.5s;
}
.fv_product_blue{
  left:0;
}
.fv_product_orange{
  right:0;
}
.fv_product_blue_image,
.fv_product_orange_image{
  max-height:60svh;
  max-width:80%;
  opacity:0;
}
.fv_debut{
  display:none !important;
  position:absolute;
  bottom:6svh;
  left:50%;
  transform:translateX(-50%);
  height:11.5svh;
  opacity:0;
}
.fv_spacer{
  height:20svh;
}

@keyframes fvLogoAndProductAndDebut {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}

.fv_anim_wrap.active .fv_left,
.fv_anim_wrap.active .fv_right{
  animation: fvLeftAndRight 0.5s 1 ease forwards;
}
.fv_anim_wrap.active .fv_line_left_image{
  animation: fvLineLeftImage 0.5s 0.5s 1 ease forwards;
}
.fv_anim_wrap.active .fv_line_right_image{
  animation: fvLineRightImage 0.5s 0.5s 1 ease forwards;
}
.fv_anim_wrap.active .fv_line_top{
  animation: fvLineTop 0.5s 0.5s 1 ease forwards;
}
.fv_anim_wrap.active .fv_line_bottom{
  animation: fvLineBottom 0.5s 0.5s 1 ease forwards;
}
.fv_anim_wrap.active .fv_center_left,
.fv_anim_wrap.active .fv_center_right{
  animation: fvCenterLeftAndRight 0.5s 1s 1 ease forwards;
}
.fv_anim_wrap.active .fv_logo{
  animation: fvLogoAndProductAndDebut 0.5s 1.5s 1 ease forwards;
}
.fv_anim_wrap.active .fv_product_blue_image,
.fv_anim_wrap.active .fv_product_orange_image{
  animation: fvLogoAndProductAndDebut 0.5s 1.5s 1 ease forwards;
}
.fv_anim_wrap.active .fv_debut{
  animation: fvLogoAndProductAndDebut 0.5s 2s 1 ease forwards;
}


@media screen and (max-width: 768px) {
  .fv_skip{
    bottom:20px;
    right:20px;
  }
  .fv_skip_image{
    width:68px;
  }

  .fv_volume{
    left:20px;
    bottom:15px;
    width:25.5px;
    height:21px;
  }
  .fv_volume_off{
    top:2px;
    width:17px;
  }
  .fv_volume_on{
    width:25.5px;
  }

  .fv_left,
  .fv_right{
    width:0;
    height:50%;
  }
  @keyframes fvLeftAndRight {
    from {
      width:0;
    }
    to {
      width:100%;
    }
  }
  .fv_line_left,
  .fv_line_right{
    top:50%;
    transform:translateY(-50%);
    width:100vw;
    height:auto;
    overflow:auto;
  }
  .fv_line_left{
    left:-100vw;
  }
  .fv_line_right{
    right:-100vw;
  }
  .fv_line_left_image,
  .fv_line_right_image{
    position:relative;
    top:auto;
    width:100vw;
    height:auto;
  }
  .fv_line_left_image{
    right:auto;
  }
  .fv_line_right_image{
    left:auto;
  }
  @keyframes fvLineLeftImage {
    from {
      left:-100vw;
      right:auto;
    }
    to {
      left:-80vw;
      right:auto;
    }
  }
  @keyframes fvLineRightImage {
    from {
      right:-100vw;
      left:auto;
    }
    to {
      right:-80vw;
      left:auto;
    }
  }
  .fv_line_top,
  .fv_line_bottom{
    left:0;
    transform:none;
    width:100vw;
    height:50svh;
    overflow:hidden;
  }
  .fv_line_top{
    top:0;
    bottom:auto;
    animation: none;
  }
  .fv_line_bottom{
    top:auto;
    bottom:0;
    animation: none;
  }
  .fv_line_top_image,
  .fv_line_bottom_image{
    position:absolute;
    left:0;
    display:block;
    width:100vw;
    height:auto;
  }
  .fv_line_top_image{
    bottom:100%;
  }
  .fv_line_bottom_image{
    top:100%;
  }
  @keyframes fvLineTop {
    from {
      bottom:100%;
    }
    to {
      bottom:-5svh;
    }
  }
  @keyframes fvLineBottom {
    from {
      top:100%;
    }
    to {
      top:-5svh;
    }
  }

  .fv_center_left,
  .fv_center_right{
    top:auto;
    width:100%;
    height:0;
  }
  .fv_center_left{
    bottom:50%;
    left:0;
    right:auto;
  }
  .fv_center_right{
    top:50%;
    left:0;
  }
  @keyframes fvCenterLeftAndRight {
    from {
      height:0;
    }
    to {
      height:calc(50% - 50px);
    }
  }

  .fv_logo{
    top:17.5px;
    height:15px;
  }
  .fv_product_blue,
  .fv_product_orange{
    top:auto;
    width:100%;
    height:calc(50% - 50px);
  }
  .fv_product_blue{
    top:50px;
    left:0;
  }
  .fv_product_orange{
    bottom:50px;
    right:0;
  }
  .fv_product_blue_image,
  .fv_product_orange_image{
    max-width:60%;
    max-height:75%;
  }
  .fv_debut{
    position:absolute;
    top:50%;
    bottom:auto;
    left:50%;
    transform:translate(-50%, -70%);
    width:87%;
    height:auto;
    opacity:0;
  }
  @keyframes fvLogoAndProductAndDebut {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }

  .fv_anim_wrap.active .fv_left,
  .fv_anim_wrap.active .fv_right{
    animation: fvLeftAndRight 0.5s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_line_left{
    animation: fvLineLeftImage 0.5s 0.5s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_line_right{
    animation: fvLineRightImage 0.5s 0.5s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_line_left_image{
    animation: none;
  }
  .fv_anim_wrap.active .fv_line_right_image{
    animation: none;
  }
  .fv_anim_wrap.active .fv_line_top{
    animation: none;
  }
  .fv_anim_wrap.active .fv_line_bottom{
    animation: none;
  }
  .fv_anim_wrap.active .fv_line_top_image{
    animation: fvLineTop 0.5s 0.5s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_line_bottom_image{
    animation: fvLineBottom 0.5s 0.5s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_center_left,
  .fv_anim_wrap.active .fv_center_right{
    animation: fvCenterLeftAndRight 0.5s 1s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_logo{
    animation: fvLogoAndProductAndDebut 0.5s 1.5s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_product_blue_image,
  .fv_anim_wrap.active .fv_product_orange_image{
    animation: fvLogoAndProductAndDebut 0.5s 1.5s 1 ease forwards;
  }
  .fv_anim_wrap.active .fv_debut{
    animation: fvLogoAndProductAndDebut 0.5s 2s 1 ease forwards;
  }

}

/* --------------------------- Summary --------------------------- */

.sum{
  position:sticky;
  top:0;
  left:0;
  height:100svh;
  overflow:hidden;
}
.sum_bg_product{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:40.78vw;
  height:auto;
}
.sum_main{
  position:relative;
  z-index:2;
  display:flex;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 1s;
}
.sum_main.active{
  opacity:1;
}
.sum_main_left{
  display:flex;
  justify-content: center;
  align-items: center;
  width:50%;
}
.sum_main_left_title{
  display:block;
  width:32.18vw;
}
.sum_main_left_title_image{
  display:block;
  width:100%;
}
.sum_main_right{
  display:flex;
  flex-flow:column nowrap;
  justify-content: center;
  gap:4px 0;
  width:50%;
  padding-left:8.1vw;
}
.sum_main_right_text{
  font-weight:500;
  font-size:18px;
  line-height:2;
  color:#FFF;
}
.sum_spacer{
  height:200svh;
}

@media screen and (max-width: 768px) {
  .sum{
    position:sticky;
    top:0;
    left:0;
    height:100svh;
  }
  .sum_bg_product{
    width:90vw;
  }
  .sum_main{
    position:relative;
    z-index:2;
    display:flex;
    flex-flow:column nowrap;
    justify-content: center;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s;
    padding:0;
  }
  .sum_main.active{
    opacity:1;
  }
  .sum_main.active:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    display:block;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.36);
  }
  .sum_main_left{
    position:relative;
    display:block;
    width:auto;
    margin:0 0 30px;
  }
  .sum_main_left_title{
    width:255px;
    margin:0 auto;
  }
  .sum_main_right{
    position:relative;
    display:flex;
    flex-flow:column nowrap;
    justify-content: center;
    gap:8px 0;
    width:auto;
    text-align:center;
    padding-left:0;
  }
  .sum_main_right_text{
    font-size:15px;
    line-height:1.7;
  }
  .sum_spacer{
    height:200svh;
  }
}

@media screen and (max-height: 667px) {
  .sum_main_right{
    gap:6px 0;
  }
  .sum_main_right_text{
    font-size:13px;
    line-height:1.5;
  }
}

/* --------------------------- Product --------------------------- */

.pdt{
  position:relative;
  top:100svh;
  left:0;
  display:flex;
  transition:top 0.25s;
  pointer-events: none;
}
.pdt.blue{
  background-color: #61C6F2;
}
.pdt.orange{
  background-color: #E15603;
}
.pdt_text_side{
  width:50%;
  padding:120px 0;
}
.pdt.blue .pdt_text_side{
  order:1;
}
.pdt_title{
  display:block;
  width:454px;
  margin:0 auto 32px;
}
.pdt_title_image{
  display:block;
  width:100%;
}
.pdt_package{
  display:block;
  width:400px;
  margin:0 auto 28px;
}
.pdt_package_image{
  display:block;
  width:100%;
}
.pdt_desc{
  font-weight:500;
  font-size:18px;
  line-height:30.6px;
  text-align:center;
  color:#FFF;
  margin:0 0 43px;
}
.pdt_chart{
  display:block;
  width:414px;
  margin:0 auto 64px;
}
.pdt_chart_image{
  display:block;
  width:100%;
}
.pdt_info_box{
  max-width:512px;
  border-top:1px solid #FFF;
  padding:64px 0 0;
  margin:0 auto;
}
.pdt_mixmen_logo{
  display:block;
  width:103px;
  margin:0 auto 10px;
}
.pdt_mixmen_logo_image{
  display:block;
  width:100%;
}
.pdt_name{
  font-weight:700;
  font-size:28px;
  line-height:38px;
  text-align: center;
  color:#FFF;
  margin:0 0 21px;
}
.pdt_price{
  display:flex;
  justify-content: center;
  align-items: center;
  color:#FFF;
  margin:0 0 40px;
}
.pdt_price_main_label{
  font-weight:600;
  font-family: "fot-rodin-pron", sans-serif;
  font-size:16px;
  margin-right:6px;
}
.pdt_price_main_value{
  font-weight: 700;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size:26px;
  margin-right:2px;
}
.pdt_price_main_tax{
  font-weight: 600;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size:20px;
  margin-right:22px;
}
.pdt_price_capa_label{
  font-weight:600;
  font-family: "fot-rodin-pron", sans-serif;
  font-size:16px;
  margin-right:6px;
}
.pdt_price_capa_value{
  font-weight: 600;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size:20px;
}
.pdt_cta{
  display:block;
  width:400px;
  margin:0 auto;
  pointer-events: auto;
}
.pdt_cta + .pdt_cta{
  margin:16px auto 0;
}
.pdt_cta_normal{
  display:block;
  width:100%;
}
.pdt_cta_hover{
  display:none;
  width:100%;
}
.pdt_cta:hover .pdt_cta_normal{
  display:none;
}
.pdt_cta:hover .pdt_cta_hover{
  display:block;
}
.pdt_cta_image{
  display:block;
  width:100%;
}
.pdt_photo_side{
  position:sticky;
  top:0;
  left:0;
  display:flex;
  flex-flow:column nowrap;
  width:50%;
  height:100svh;
  background: url("./img/pdt_blue_photo_bg.png") no-repeat center center / cover transparent;
  padding:32px;
}
.pdt.blue .pdt_photo_side{
  order:2;
}
.pdt.orange .pdt_photo_side{
  background: url("./img/pdt_orange_photo_bg.png") no-repeat center center / cover transparent;
}
.pdt_photo_wrap{
  position:relative;
  height:calc( (100svh - 64px) / 2);
}
.pdt_photo_image{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
}
.pdt_photo_label{
  position:absolute;
  top:24px;
  left:24px;
  width:156px;
}
.pdt_blue_spacer{
  height:100svh;
}

@media screen and (max-width: 768px) {
  .pdt{
    position:relative;
    top:100svh;
    left:0;
    display:block;
    transition:top 0.25s;
  }
  .pdt_text_side{
    width:auto;
    padding:64px 0 68px;
  }
  .pdt_title{
    width:227px;
    margin:0 auto 16px;
  }
  .pdt_package{
    width:240px;
    margin:0 auto 21px;
  }
  .pdt_desc{
    font-size:14px;
    line-height:24px;
    margin:0 0 32px;
  }
  .pdt_chart{
    width:255px;
    margin:0 auto 47px;
  }
  .pdt_info_box{
    max-width:335px;
    padding:48px 0 0;
  }
  .pdt_mixmen_logo{
    width:75px;
    margin:0 auto 10px;
  }
  .pdt_name{
    font-size:20px;
    line-height:26px;
    margin:0 0 15px;
  }
  .pdt_price{
    margin:0 0 26px;
  }
  .pdt_price_main_label{
    font-size:13px;
    margin-right:3px;
  }
  .pdt_price_main_value{
    font-size:22px;
    margin-right:2px;
  }
  .pdt_price_main_tax{
    font-size:16px;
    margin-right:8px;
  }
  .pdt_price_capa_label{
    font-size:13px;
    margin-right:2px;
  }
  .pdt_price_capa_value{
    font-size:16px;
  }
  .pdt_cta{
    width:295px;
  }
  .pdt_photo_side{
    position:relative;
    top:0;
    left:0;
    display:flex;
    flex-flow:column nowrap;
    width:auto;
    height:100svh;
    background: url("./img/pdt_blue_photo_bg.png") no-repeat center center / cover transparent;
    padding:32px;
  }
  .pdt.orange .pdt_photo_side{
    order:1;
    background: url("./img/pdt_orange_photo_bg.png") no-repeat center center / cover transparent;
  }
  .pdt_photo_wrap{
    position:relative;
    height:calc( (100svh - 64px) / 2);
  }
  .pdt_photo_image{
    display:block;
    width:100%;
    height:100%;
    object-fit: cover;
  }
  .pdt_photo_label{
    position:absolute;
    top:24px;
    left:24px;
    width:113px;
  }
}

/* --------------------------- Comment --------------------------- */

.cmt{
  position:relative;
  background: linear-gradient(90deg,#D1D3D6 0%, #F5F2F2 25%, #F5F2F2 75%, #D1D3D6 100%);
  padding:138px 0;
}
.cmt_in{
  max-width:1121px;
  margin:0 auto;
}
.cmt_title{
  font-family: "bank-gothic-bt", sans-serif;
  font-weight: 200;
  font-size:64px;
  margin:0 0 45px;
}
.cmt_list{
  display:flex;
  justify-content: space-between;
}
.cmt_item{
  width:47.1%;
}
.cmt_item.orange{
  margin-top:45px;
}
.cmt_item_title{
  display:flex;
  align-items: flex-end;
  background: url("./img/cmt_01_title_tip.png") no-repeat left top / 16px auto transparent;
  padding:0 0 0 20px;
  margin:0 0 17px;
}
.cmt_item.orange .cmt_item_title{
  background: url("./img/cmt_02_title_tip.png") no-repeat left top / 16px auto transparent;
}
.cmt_item_title_main{
  font-weight:700;
  font-size:28px;
  margin-right:15px;
}
.cmt_item_title_sub{
  font-weight:700;
  font-size:16px;
}
.cmt_item_box{
  background: url("./img/cmt_01_bg.png") no-repeat center center / cover transparent;
  padding:0 16px 16px 0;
}
.cmt_item.orange .cmt_item_box{
  background: url("./img/cmt_02_bg.png") no-repeat center center / cover transparent;
}
.cmt_item_photo{
  position:relative;
  display:block;
}
.cmt_item_photo:after{
  content:"";
  position:absolute;
  bottom:0;
  left:calc(50% - 12px);
  width:23px;
  height:20px;
  background: url("./img/cmt_01_fukidashi.png") no-repeat center center / cover transparent;
}
.cmt_item.orange .cmt_item_photo:after{
  background: url("./img/cmt_02_fukidashi.png") no-repeat center center / cover transparent;
}
.cmt_item_photo_image{
  display:block;
  width:100%;
}
.cmt_item_desc{
  background-color: #61C6F2;
  font-size:16px;
  font-weight:500;
  line-height:27.2px;
  color:#FFF;
  padding:32px;
}
.cmt_item.orange .cmt_item_desc{
  background-color: #E15603;
}

@media screen and (max-width: 768px) {
  .cmt{
    padding:70px 0;
  }
  .cmt_in{
    max-width:335px;
    margin:0 auto;
  }
  .cmt_title{
    font-size:40px;
    margin:0 0 47px;
  }
  .cmt_list{
    display:flex;
    flex-flow:column nowrap;
    justify-content: flex-start;
    gap:56px 0;
  }
  .cmt_item{
    width:auto;
  }
  .cmt_item.orange{
    margin-top:0;
  }
  .cmt_item_title{
    display:flex;
    flex-flow:column nowrap;
    align-items: flex-start;
    background: url("./img/cmt_01_title_tip.png") no-repeat left top / 12px auto transparent;
    padding:0 0 0 18px;
    margin:0 0 12px;
  }
  .cmt_item.orange .cmt_item_title{
    background: url("./img/cmt_02_title_tip.png") no-repeat left top / 12px auto transparent;
  }
  .cmt_item_title_main{
    font-size:24px;
    margin:0 0 6px;
  }
  .cmt_item_title_sub{
    font-size:14px;
  }
  .cmt_item_box{
    background: url("./img/cmt_01_bg_sp.png") no-repeat center center / cover transparent;
    padding:0 10px 10px 0;
  }
  .cmt_item.orange .cmt_item_box{
    background: url("./img/cmt_02_bg_sp.png") no-repeat center center / cover transparent;
  }
  .cmt_item_photo:after{
    left:calc(50% - 10px);
    width:19px;
    height:16px;
  }
  .cmt_item_desc{
    font-size:14px;
    line-height:24px;
    letter-spacing: -0.02em;
    padding:20px 20px 24px;
  }
}

/* --------------------------- Review on --------------------------- */

.rev_wrap{}
.rev{
  position:sticky;
  top:0;
  left:0;
  width:100%;
  height:100svh;
  background: linear-gradient(90deg,#D1D3D6 0%, #F5F2F2 25%, #F5F2F2 75%, #D1D3D6 100%);
  overflow: hidden;
}
.rev_title{
  position:absolute;
  bottom:50%;
  left:50%;
  transform:translateX(-50%);
  width:278px;
  height:auto;
}
.rev_mask{
  position:absolute;
  top:0;
  left:0;
  display:flex;
  justify-content: center;
  align-items: center;
  gap:0 3%;
  width:100%;
  height:100%;
  background: url("./img/tiktok_video_bg.png") no-repeat center center / cover transparent;
  mask-image: url("./img/tiktok_mixmen.svg");
  mask-repeat: no-repeat;
  /* size, position は js で指定
  mask-size: 471px auto;
  mask-position: left 32% top 52svh;
  */
  transition:mask-size 2s, mask-position 2s;
}
.rev_mask_cover{
  position:absolute;
  z-index:2;
  top:0;
  left:0;
  display:block;
  width:100%;
  height:100%;
  background-color: #000;
  pointer-events: none;
}
.rev_video_wrap{
  position:relative;
  width:21.09%;
  aspect-ratio:1/1.766;
}
.rev_video_wrap:after{
  content:"";
  position:absolute;
  top:calc(50% - 25px);
  left:calc(50% - 25px);
  display:block;
  width:50px;
  height:50px;
  background: url("./img/tiktok_play.svg") no-repeat center center / 100% 100% transparent;
  pointer-events: none;
  opacity:0.75;
}
.rev_video_wrap.active:after{
  display:none;
}
.rev_video{
  width:100%;
  height:100%;
  object-fit: cover;
}
.rev_video:nth-child(1){
  background: url("./img/tiktok_01_poster.jpg") no-repeat center center / cover transparent;
}
.rev_video:nth-child(2){
  background: url("./img/tiktok_02_poster.jpg") no-repeat center center / cover transparent;
}
.rev_video:nth-child(3){
  background: url("./img/tiktok_03_poster.jpg") no-repeat center center / cover transparent;
}
.rev_video:nth-child(4){
  background: url("./img/tiktok_04_poster.jpg") no-repeat center center / cover transparent;
}

.rev_spacer{
  height:100svh;
}

@media screen and (max-width: 768px) {
  .rev_title{
    width:176px;
  }
  .rev_mask{
    display:flex;
    flex-flow:row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap:19px;
    /* size, position は js で指定
    mask-size: 296px auto;
    mask-position: left calc( (100svh - 196px) / 2 ) top 52svh;
    */
  }
  .rev_video_wrap{
    width:158px;
    height:279px;
    aspect-ratio:auto;
  }
  .rev_spacer{
    height:100svh;
  }
}

/* --------------------------- Howto --------------------------- */

.howto{
  position:relative;
  background: linear-gradient(90deg,#D1D3D6 0%, #F5F2F2 25%, #F5F2F2 75%, #D1D3D6 100%);
  padding:100px 0 120px;
}
.howto_title{
  font-family: "bank-gothic-bt", sans-serif;
  font-weight: 200;
  font-size:64px;
  text-align:center;
  margin:0 0 32px;
}
.howto_list{
  display:flex;
  justify-content: space-between;
  max-width:854px;
  margin:0 auto;
}
.howto_item{
  width:258px;
}
.howto_item_title{
  font-family: "bank-gothic-bt", sans-serif;
  font-weight: 500;
  font-size:28px;
  letter-spacing: -0.07em;
  text-align: center;
  margin:0 0 18px;  
}
.howto_item_pic{
  display:block;
  background: url("./img/howto_01_bg.png") no-repeat center center / cover transparent;
  padding:10px;
  margin:0 0 15px;
}
.howto_item:nth-child(2) .howto_item_pic{
  background: url("./img/howto_02_bg.png") no-repeat center center / cover transparent;
}
.howto_item:nth-child(3) .howto_item_pic{
  background: url("./img/howto_03_bg.png") no-repeat center center / cover transparent;
}
.howto_item_pic_image{
  display:block;
  width:100%;
}
.howto_item_info{}
.howto_item_desc{
  font-weight:500;
  font-size:14px;
  line-height:1.5;
}

@media screen and (max-width: 768px) {
  .howto{
    padding:70px 0 100px;
  }
  .howto_title{
    font-size:40px;
    margin:0 0 54px;
  }
  .howto_list{
    display:flex;
    flex-flow:column nowrap;
    justify-content: flex-start;
    gap:32px 0;
    max-width:335px;
    margin:0 auto;
  }
  .howto_item{
    display:flex;
    align-items: center;
    width:100%;
  }
  .howto_item_title{
    font-size:20px;
    letter-spacing: 0;
    text-align: left;
    margin:0 0 12px;  
  }
  .howto_item_pic{
    display:block;
    width:160px;
    background: url("./img/howto_01_bg_sp.png") no-repeat center center / cover transparent;
    padding:7px;
    margin:0;
  }
  .howto_item:nth-child(2) .howto_item_pic{
    background: url("./img/howto_02_bg_sp.png") no-repeat center center / cover transparent;
  }
  .howto_item:nth-child(3) .howto_item_pic{
    background: url("./img/howto_03_bg_sp.png") no-repeat center center / cover transparent;
  }
  .howto_item_info{
    flex:1;
    padding-left:20px;
  }
  .howto_item_desc{
    font-size:13px;
    line-height:22px;
  }
}

/* --------------------------- Store --------------------------- */

.store{
  position:relative;
  background: linear-gradient(90deg,#D1D3D6 0%, #F5F2F2 25%, #F5F2F2 75%, #D1D3D6 100%);
  overflow:hidden;
  padding:25px 0 240px;
}
.store_in{
  position:relative;
  z-index:2;
}
.store_title{
  font-family: "bank-gothic-bt", sans-serif;
  font-weight: 200;
  font-size:64px;
  text-align:center;
  margin:0 0 48px;
}
.store_amazon_btn{
  display:block;
  width:288px;
  margin:0 auto 40px;
}
.store_amazon_btn_normal,
.store_amazon_btn_hover{
  width:100%;
}
.store_amazon_btn_normal{
  display:block;
}
.store_amazon_btn_hover{
  display:none;
}
.store_amazon_btn:hover .store_amazon_btn_normal{
  display:none;
}
.store_amazon_btn:hover .store_amazon_btn_hover{
  display:block;
}
.store_amazon_btn_image{
  display:block;
  width:100%;
}
.store_shop_title{
  font-weight:700;
  font-size:24px;
  letter-spacing: 0.12em;
  text-align: center;
  margin:0 0 28px;
}
.store_shop_btn_list{
  display:flex;
  justify-content: center;
  gap:0 16px;
}
.store_shop_btn_item{
  display:flex;
  flex-flow:column nowrap;
  justify-content: center;
  align-items: center;
  width:228px;
  height:60px;
  background: url("./img/store_btn_bg.png") no-repeat center center / contain transparent;
  text-decoration: none;
}
.store_shop_btn_item_main{
  font-weight:700;
  font-size:18px;
  color:#000;
  margin:0 0 4px;
}
.store_shop_btn_item_sub{
  font-weight:700;
  font-size:14px;
  color:#B6976B;
}
.store_shop_note{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 42px 0 0;
}
.store_deco_blue,
.store_deco_orange{
  position:absolute;
  top:0;
  width:462px;
  height:462px;
}
.store_deco_blue{
  left:-231px;
}
.store_deco_orange{
  right:-231px;
}

@media screen and (max-width: 768px) {
  .store{
    padding:143px 0 170px;
  }
  .store_title{
    font-size:40px;
    margin:0 0 38px;
  }
  .store_amazon_btn{
    width:295px;
    margin:0 auto 34px;
  }
  .store_shop_title{
    font-size:20px;
    margin:0 0 20px;
  }
  .store_shop_btn_list{
    display:flex;
    flex-flow:column nowrap;
    align-items: center;
    justify-content: flex-start;
    gap:16px 0;
  }
  .store_shop_btn_item{
    width:255px;
    height:56px;
    background: url("./img/store_btn_bg_sp.png") no-repeat center center / contain transparent;
  }
  .store_shop_btn_item_main{
    font-size:16px;
    margin:0 0 4px;
  }
  .store_shop_btn_item_sub{
    font-size:12px;
  }
  .store_shop_note{
    font-size: 10px;
    margin: 32px 0 0;
  }
  .store_deco_blue,
  .store_deco_orange{
    position:absolute;
    left:calc(50% - 168px);
    width:335px;
    height:335px;
  }
  .store_deco_blue{
    top:-230px;
    left:calc(50% - 168px);
  }
  .store_deco_orange{
    top:auto;
    bottom:-230px;
    left:calc(50% - 168px);
    right:auto;
  }
}

/* --------------------------- Footer --------------------------- */

.footer{
  position:relative;
  background-color: #000;
  padding:56px 48px;
}
.footer_top{
  display:flex;
  justify-content: space-between;
  margin:0 0 87px;
}
.footer_top_logos{}
.footer_top_logo_mixmen{
  display:block;
  width:318px;
  margin:0 0 16px;
}
.footer_top_logo_mixmen_image{
  display:block;
  width:100%;
}
.footer_top_logo_virtokyo{
  display:block;
  width:110px;
}
.footer_top_logo_virtokyo_image{
  display:block;
  width:100%;
}
.footer_top_menu{
  display:flex;
  justify-content: flex-end;
  gap:0 26px;
}
.footer_top_menu_item{
  font-family: "bank-gothic-bt", sans-serif;
  font-weight: 500;
  font-size:26px;
  text-decoration: none;
  color:#FFF;
}
.footer_bottom{
  display:flex;
  justify-content: space-between;
}
.footer_bottom_btns{
  display:flex;
  gap:0 12px;
}
.footer_bottom_btn_item{
  display:flex;
  justify-content: center;
  align-items: center;
  width:149px;
  height:47px;
  border:1px solid #FFF;
  border-radius:100vh;
  font-weight:700;
  font-size:14px;
  text-decoration: none;
  color:#FFF;
}
.footer_bottom_right{}
.footer_bottom_menu{
  display:flex;
  justify-content: flex-end;
  gap:0 11px;
  margin:0 0 12px;
}
.footer_bottom_menu_item{
  font-weight:500;
  font-size:11px;
  text-decoration: none;
  color:#FFF;
}
.footer_bottom_copyright{
  font-weight:500;
  font-size:11px;
  text-align:right;
  color:#FFF;
}

@media screen and (max-width: 768px) {
  .footer{
    padding:64px 0;
  }
  .footer_top{
    display:block;
    margin:0 0 42px;
  }
  .footer_top_logos{
    margin:0 0 35px;
  }
  .footer_top_logo_mixmen{
    width:255px;
    margin:0 auto 13px;
  }
  .footer_top_logo_virtokyo{
    width:88px;
    margin:0 auto;
  }
  .footer_top_menu{
    display:flex;
    flex-flow:column nowrap;
    align-items: center;
  }
  .footer_top_menu_item{
    font-size:26px;
    line-height:40px;
  }
  .footer_bottom{
    display:block;
  }
  .footer_bottom_btns{
    display:flex;
    justify-content: center;
    gap:0 15px;
    margin:0 0 30px;
  }
  .footer_bottom_btn_item{
    width:140px;
    height:47px;
  }
  .footer_bottom_right{}
  .footer_bottom_menu{
    display:flex;
    flex-flow:row wrap;
    justify-content: center;
    gap:18px 5%;
    margin:0 0 28px;
  }
  .footer_bottom_menu_item{
    width:35%;
    font-size:10px;
    text-align: center;
  }
  .footer_bottom_copyright{
    font-size:10px;
    text-align:center;
  }
}


