/* 共通 */
.u-pc{
  display: block;
}

.u-sp{
  display: none;
}

@media (max-width: 768px){
  .u-pc{
    display: none;
  }

  .u-sp{
    display: block;
    font-weight: normal;
  }
  
}

/* header */
.subMenu { 
  position: fixed; 
  width: 100%; 
  right: 0px; 
  top: 0px; 
  z-index: 20;
}
.subMenu .inner {
   position: relative; 
   width: 94%; 
   max-width: 1200px; 
   margin: 0 auto; 
   padding: 40px;
  }
.subMenu .inner div {
   position: absolute; 
   right: 10px; 
   top: 30px; 
   width: 60px; 
   height: 30px; 
   z-index: 2;
  }
.subMenu .inner div span { 
  display: block; 
  width: 85%; 
  height: 2px; 
  background: #15799F; 
  opacity: 1;
	position: absolute; 
  left: 50%;
 transition: 0.4s linear; 
 transform: translate(-50%,0);
}
.subMenu .inner div span:nth-of-type(1){
   top: 0px;
  }
.subMenu .inner div span:nth-of-type(2){ 
  top: 14px;
}
.subMenu .inner div span:nth-of-type(3){
   top: 28px;
  }
.subMenu .inner:hover div span:nth-of-type(1){
   transform: translate(-50%,12px) rotate(315deg);
  }
.subMenu .inner:hover div span:nth-of-type(2){
   opacity: 0;
  }
.subMenu .inner:hover div span:nth-of-type(3){
  transform: translate(-50%,-16px) rotate(-315deg);
}
.subMenu nav { 
  position: absolute; 
  right: 0px; 
  top: 20px; 
  z-index: 1; 
  overflow: hidden;
  width: 0px; 
  height: 45px; 
  padding: 10px 5px; 
  padding-right: 50px; 
  background: rgba(255,255,255,0.4); 
  border-radius: 50px;
  transition: 0.4s linear; 
  opacity: 0;
}
.subMenu ul { 
  display: table; 
  width: 70%; 
  font-size: 0;
}
.subMenu ul li {
  position: relative; 
  display: table-cell; 
  padding: 0 15px;/* font-family: 'Quicksand', sans-serif;*/
  font-family: 'Century Gothic', CenturyGothic, sans-serif; 
  font-size: 14px; 
  vertical-align: middle;
}
.subMenu ul li:after {
  content: ''; 
  width: 2px; 
  height: 12px; 
  background: #505050;
  position: absolute; 
  right: 0; 
  top: 50%; 
  transform: translate(0,-50%);
}
.subMenu ul li:last-child:after {
   content: none;
  }
.subMenu ul li a {
   position: relative; 
   display: block; 
   color: #505050; 
   vertical-align: middle;
  }

.subMenu ul li span { 
  display: block; 
  padding-top: 2px; 
  font-weight: 700; 
  letter-spacing: 0.075rem; 
  white-space: nowrap
}
.subMenu .inner:hover nav {
  width: 480px; 
  opacity: 1;
}
/* .subMenu .inner:hover nav { width: 360px; opacity: 1;} */
@media (max-width: 1001px) {
	.subMenu { 
    display: none;
  }
}
.fix-cart { 
  position: fixed; 
  right: 20px; 
  top: 34px; 
  width: 34px; 
  z-index: 20; 
  cursor: pointer;
}
.fix-cart a { 
  display: block;
}
.fix-cart a svg {
  width: 100%; 
  fill: #505050; 
  vertical-align: bottom;
}
@media (max-width: 1001px) {
	.btn-cart { 
    right: 55px; 
    top: 16px;
  }
}


.menu { 
  display: none; 
  position: fixed; 
  right: 15px; 
  top: 15px; 
  width: 47px; 
  height: 36px; 
  z-index: 100; 
  cursor: pointer;
}
.menu div { 
  position: relative; 
  width: 100%; 
  height: 100%;
}
.menu div span { 
  display: block; 
  width: 100%; 
  height: 2px; 
  background: #15799F; 
  position: absolute; 
  left: 0; 
  transition: 0.4s linear; 
  opacity: 1;
}
.menu div span:nth-of-type(1) { 
  top: 2px;
}
.menu div span:nth-of-type(2) { 
  top: 50%;
}
.menu div span:nth-of-type(3) { 
  top: 34px;
}
.menu.active div span:nth-of-type(1) { 
  transform: translateY(15px) rotate(315deg);
}
.menu.active div span:nth-of-type(2) { 
  opacity: 0;
}
.menu.active div span:nth-of-type(3) { 
  transform: translateY(-16px) rotate(-315deg);
}


#sp-menu { 
  position: fixed; 
  left: 0; 
  top: 0; 
  width: 100%; 
  height: 100vh; 
  background: #fff; 
  z-index: -1; 
  opacity: 0; 
  transition: 0.4s linear;
}
#sp-menu .inner { 
  width: 100%; 
  height: 100%; 
  padding: 30px;
}
#sp-menu ul { 
  width: 100%; 
  max-width: 600px; 
  margin: 0 auto; 
  padding-top: 40px; 
  font-size: 0;
}
#sp-menu ul li { 
  margin-bottom: 20px; 
  padding-left: 20px; 
  font-family: 'Century Gothic', CenturyGothic, sans-serif;
}
#sp-menu ul li.line { 
  padding-bottom: 20px; 
  border-bottom: solid 1px #c4c4c4;
}
#sp-menu ul li:last-child{ 
  padding-left: 0;
}
#sp-menu ul li span { 
  display: inline-block; 
  vertical-align: middle; 
  padding-top: 3px;
 font-family: CenturyGothic, sans-serif; 
 font-weight: 700;
}
#sp-menu ul li svg { 
  display: inline-block; 
  width: 48px; 
  height: 48px; 
  fill: #505050; 
  vertical-align: middle;
}
#sp-menu ul li a { 
  color: #505050; 
  font-size: 30px; 
  font-weight: 700; 
  letter-spacing: 0.05rem;
}
#sp-menu ul li ul li { 
  display: inline-block; 
  width: 50%; 
  vertical-align: top; 
  padding: 0;
}
#sp-menu ul li ul li a { 
  display: block; 
  padding: 15px 0; 
  width: 92%; 
  margin: 0 auto; 
  font-size: 20px; 
  font-weight: 400; 
  border: solid 1px #505050; 
  text-align: center;
}
#sp-menu.open { 
  opacity: 1; 
  z-index: 99;
}
@media (max-width: 1001px) {
	.menu { 
    display: block;
  }
	#sp-menu .inner { 
    padding: 20px 15px;
  }
	#sp-menu ul { 
    padding-top: 30px;
  }
	#sp-menu ul li { 
    padding-left: 10px;
  }
	#sp-menu ul li svg { 
    width: 30px; 
    height: 30px;
  }
	#sp-menu ul li a { 
    font-size: 24px;
  }
	#sp-menu ul li ul li a { 
    width: 96%; 
    padding: 10px 0; 
    font-size: 12px;
  }
}

/* コンテンツ */
.mv{
  position: relative;
  padding-top: 118.5%;
  z-index: 5;
}

.mv-bg{
  background: url(../img/mv-pc.png) no-repeat center / cover;
  padding-top: 115%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

}

.mv-logo{
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 16%;
}

@media (max-width: 768px){
  .mv{
    padding-top: 477%;
  }
  
  .mv-bg{
    background: url(../img/mv-sp.png) no-repeat center / cover;
    padding-top: 477%;  
  }  
}


.lineup{
  position: relative;
  z-index: 7;
  margin-top: -7.9%;
}

.lineup-title{
  width: 100%;
}

.lineup-bg{
  opacity: 1;
  background: url(../img/whichcont-pc.png) no-repeat center / cover;
  padding-top: 66%;
  margin-top: -6%;
  width: 100%;
}

 

@media (max-width: 768px){
  .lineup{
    margin-top: -13%;
  }
  
  .lineup-bg{
    background: url(../img/whichcont-sp.png) no-repeat center / cover;
    padding-top: 154%;
    margin-top: -15%;
  }
}

.campaign{
  position: relative;
  z-index: 10;
  margin-top: -7.2%;
}

.campaign__bg{
  background: url(../img/presentcont-pc.png) no-repeat center / cover;
  width: 100%;
  padding-top: 60%;
  margin-top: -6.8%;
}

.campaign__btn{
  position: absolute;
  width: 23.65%;
  top: 61%;
  left: 50%;
  transform: translateX(-50%);
}

.campaign__btn a img{
  transition: .5s;
}

.campaign__btn a:hover img{
  opacity: 0.5;
}

.campaign__btn a img{
  width: 100%;
}


@media (max-width: 768px){
  .campaign{
    z-index: 7;
    margin-top: -19.6%;
  }
  
  .campaign__bg{
    background: url(../img/presentcont-sp.png) no-repeat center / cover;
    width: 100%;
    padding-top: 167%;
    margin-top: -30%;
  }
  
  .campaign__btn{
    position: absolute;
    width: 46.66%;
    top: 69.4%;
    left: 50%;
    transform: translateX(-50%);
  }

}

.shop{
  position: relative;
  z-index: 11;
  margin-top: -7.1%;
}

.shop__bg{
  background: url(../img/shopcont-pc.png) no-repeat center / cover;
  width: 100%;
  padding-top: 52%;
  margin-top: -9.3%;
}


.shop-cont__btn{
  width: 23.6%;
  position: absolute;
  top: 65%;
}

.shop-cont__btn1{
  left: 13.2%;

}

.shop-cont__btn2{
  right: 13.2%;
}

.shop-cont__btn a img{
  opacity: 1;
  transition: .5s;
}

.shop-cont__btn a:hover img{
  opacity: .5;
}

@media (max-width: 768px){
  .shop{
    position: relative;
    margin-top: -32.4%;
  }
  
  .shop__bg{
    background: url(../img/shopcont-sp.png) no-repeat center / cover;
    width: 100%;
    padding-top: 78%;
    margin-top: -15%;
  }
  
  .shop-cont__btn{
    width: 37.6%;
    top: 70.8%;
  }
  
  .shop-cont__btn1{
    left: 6.2%;
  }
  
  .shop-cont__btn2{
    right: 6.2%;
  }
}

/* .series{
  position: relative;
  z-index: 6;
  margin-top: -1.7%;
  padding-top: 103%;
}

.series-bg{
  background: url(../img/series-bg.png) no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 68%;
  margin: 0 auto;
  padding: 13% 0 14%;
}

.series-table{
  width: 83.88888%;
  margin: auto;
  position: relative;
}

.seriesbtn li{
  position: absolute;
  width: 18%;
  bottom: -0.5%;
}

.seriesbtn__1{
  left: 10%;
}

.seriesbtn__2{
  left: 33%;
}

.seriesbtn__3{
  left: 56%;
}

.seriesbtn__4{
  left: 80%;
}

.seriesbtn li a{
  opacity: 1;
  transition: .5s;
}

.seriesbtn li a:hover{
  opacity: .5;
}

@media (max-width: 768px){
  .series{
    z-index: 6;
    margin-top: initial;
    padding-top: initial;
  }
  
  .sp-series img{
    width: 100%;
  }

  .sp-series__head{
    padding: 12px;
  }
  
  .sp-series__moist{
    background-color: #e1f5ff;
  }

  .sp-series__repair{
    background-color: #f9ffd2;
  }

  .sp-series__control{
    background-color: #ffecf1;
  }

  .sp-series__shiny{
    background-color: #e9d8f5;
  }

  .sp-series__cont img{
    width: 100%;
  }

  .sp-series__btn{
    width: 50%;
    margin: 3% auto 0;
    padding-bottom: 5%;
  } */

  /* アコーディオン */
  /* .accordion__item{
    position: relative;
  }

  .accordion__body {
    width: 100%;
    margin: 0;
    display: none;
  }

  .accordion__head::after{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    transform: translate(0, -60%) rotate(38deg) skew(-15deg);
    position: absolute;
    right: 20px;
    top: 34px;
  }
  
  .accordion__item:nth-child(1) .accordion__head::after{
    border-bottom: solid 3px #4eb8b2;
    border-right: solid 3px #4eb8b2;
  }
  .accordion__item:nth-child(2) .accordion__head::after{
    border-bottom: solid 3px #ffa824;
    border-right: solid 3px #ffa824;
  }
  .accordion__item:nth-child(3) .accordion__head::after{
    border-bottom: solid 3px #ff8096;
    border-right: solid 3px #ff8096;
  }
  .accordion__item:nth-child(4) .accordion__head::after{
    border-bottom: solid 3px #9e63a8;
    border-right: solid 3px #9e63a8;
  }

  .accordion__item.active .accordion__head::after{
    transform: translate(0, -50%) rotate(218deg) skew(-15deg);
    top: 37px;
  }
}

.cta{
  position: relative;
  z-index: 5;
  padding-top: 47%;
}

.cta-bg{
  background: url(../img/cta-top.png) no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 47%;
}

.cta-btn{
  position: absolute;
  width: 20.48%;
  top: 64%;
  left: 17%;
}

.cta-btn a{
  opacity: 1;
  transition: .5s;
}

.cta-btn a:hover{
  opacity: .5;
} */



.footer-logo{
  width: 21%;
  margin: 51px auto 0;
}

.footer-menu{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.footer-menu li{
  border-left: solid 1px #000;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "My Yu Gothic", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Avenir, Arial, Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo UI", "メイリオ";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.9px;
  padding: 0 25px;
}

.footer-menu li:first-child{
  border-left:  none;
}

.footer-copy{
  text-align: center;
  margin: 30px auto 30px;
}

.footer-copy small{
  color: #A0A0A0;
  font-family: "yu-mincho-pr6n", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.84px;
}

@media (max-width: 768px){
  /* .cta{
    position: relative;
    z-index: 5;
    padding-top: 90%;
  }
  
  .cta-bg{
    background: url(../img/sp-cta-bg.png) no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 90%;
  }
  
  .cta-btn{
    position: absolute;
    width: 77%;
    top: 76%;
    left: 50%;
    transform: translateX(-50%);
  }
     */
  .footer-logo{
    width: 46.7%;
    margin: 51px auto 0;
  }
  
  .footer-menu{
    flex-direction: column;
    justify-content: center;
    margin-top: 50px;
  }
  
  .footer-menu li{
    border-left: none;
    font-family: "游ゴシック体", YuGothic, "My Yu Gothic", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Avenir, Arial, Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Meiryo UI", "メイリオ";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: calc(16 / 12);
    letter-spacing: 0.84px;
    padding: 20px 0 0;
    text-align: center;
  }
  
  .footer-menu li:first-child{
    padding-top: 0;
  }
  
  .footer-copy{
    text-align: center;
    margin: 20px auto 48px;
  }
  
  .footer-copy small{
    color: #000000;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.84px;
  }
  
}