﻿/* ========================
      共通スタイル
========================*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
html{font-size: 62.5%;}
body{-webkit-text-size-adjust: 100%;}

.staff-bestbuy-lp{
  font-family: "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Meiryo", "メイリオ", sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.6;
  color: #333;
}

/* ------ タイトル ------*/
.staff-bestbuy-lp h1{
  text-indent: -9999px;
  height: 0;
}

.staff-bestbuy-lp h2{
  font-family: "Lato", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
}

.staff-bestbuy-lp h2 span{
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.staff-bestbuy-lp h3{
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

/* ------ ボタン ------*/
.c-btn{margin-top: 12px;}
.c-btn a{
  font-family: "Lato", sans-serif;
  cursor: pointer;
  position: relative;
  width: 180px;
  height: 40px;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #333;
  border-radius: 40px;
  background: #333;
  color: #fff;
}

.c-main-lead{
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-top: 25px;
  line-height: 2;
}

.c-text-cen{text-align: center;}

/* ------ テキスト　マーカー ------*/
p span.marker{ 
	position: relative;
	display: inline-block;
  font-weight: 600;
	z-index: 1;
}
       
p span.marker:after{   
	position: absolute;
	content: '';
	left: 0;
	bottom: 3px;
	display: inline-block;
	width: 100%;
	height: 16px;
	z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);  
}

p span.marker.is-active:after {transform: scaleX(1);}

/* ------ 斜め線 ------*/
.attention {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  margin-bottom: 36px;
  text-align: center;
  width: 100%;   
}
    
.attention:before,
.attention:after{
    position: absolute;
    content: "";    
    width: 1px;
    height: 35%;
    background: #000;
    border-radius: 2px;
}

.attention:before {
    left: 25px;
    bottom: 0;
    transform: rotate(-40deg);    
}
       
.attention:after {
    right: 25px;
    bottom: 0;
    width: 1px;
    height: 35%;
    background: #000;
    border-radius: 2px;
    transform: rotate(40deg);
}


/* ------ スライダー ------*/
.slider-container{padding: 0 0 0 15px;}
.main-slider {
            width: 100%;
            margin-bottom: 4px;
        }

        .main-slider .swiper-slide img {
            width: 100%;
            height: auto;
        }

        .thumb-slider {
            height: auto;
            padding: 5px 0;
        }

.thumb-slider .swiper-slide {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

        .thumb-slider .swiper-slide:hover {
            opacity: 0.8;
        }

        .thumb-slider .swiper-slide-thumb-active {
            opacity: 1;
        }

        .thumb-slider .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


/* ========================
      コンテンツ
========================*/

/* ------ メニュー ------*/
.c-main-menu{
  margin-top: 25px;
  padding: 0 15px;
}

.c-main-menu ul{
  display: flex;
  gap: 8px 8px;
}

.c-main-menu ul li{background: #F7F7F7;}
.c-main-menu ul li:nth-child(1){border-bottom: solid 4px #EFDE86;}
.c-main-menu ul li:nth-child(2){border-bottom: solid 4px #EED4CC;}
.c-main-menu ul li:nth-child(3){border-bottom: solid 4px #D3DDDE;}
.c-main-menu ul li:nth-child(4){border-bottom: solid 4px #EECB94;}
.c-main-menu ul li:nth-child(5){border-bottom: solid 4px #C2D9D1;}

.c-main-menu ul li:nth-child(1) .c-main-menu-no{color: #EFDE86;}
.c-main-menu ul li:nth-child(2) .c-main-menu-no{color: #EACAC0;}
.c-main-menu ul li:nth-child(3) .c-main-menu-no{color: #D3DDDE;}
.c-main-menu ul li:nth-child(4) .c-main-menu-no{color: #EECB94;}
.c-main-menu ul li:nth-child(5) .c-main-menu-no{color: #C2D9D1;}

.c-main-menu ul li:nth-child(1) .c-main-menu-no{
  background: url(../img/deco_no1.svg) no-repeat;
  background-size: 17px auto;
  background-position: center left;
}

.c-main-menu ul li:nth-child(2) .c-main-menu-no{
  background: url(../img/deco_no2.svg) no-repeat;
  background-size: 17px auto;
  background-position: center left;  
}

.c-main-menu ul li:nth-child(3) .c-main-menu-no{
  background: url(../img/deco_no3.svg) no-repeat;
  background-size: 17px auto;
  background-position: center left;  
}

.c-main-menu ul li:nth-child(4) .c-main-menu-no{
  background: url(../img/deco_no4.svg) no-repeat;
  background-size: 17px auto;
  background-position: center left;  
}

.c-main-menu ul li:nth-child(5) .c-main-menu-no{
  background: url(../img/deco_no5.svg) no-repeat;
  background-size: 17px auto;
  background-position: center left;  
}

.c-main-menu ul li a{
  position: relative;
  display: block;
  padding: 10px 8px 24px;
}

.c-main-menu ul li a:after{
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  background: url(../img/arrow.svg) no-repeat;
  width: 15px;
  height: 8px;
  bottom: 4px;
  transform: translate(-50%, 0);
}

.c-main-menu ul li .c-main-menu-no{
  font-size: 2.0rem;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.c-main-menu ul li em{
  display: flex;
  font-size: 1.4rem;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 38px;
  margin-top: 10px;
}

.c-main-menu ul li p{
  margin-top: 8px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}

/* ------ 商品 メイン ------*/
.c-staff-goods{
  position: relative;
  z-index: 2;
}
.c-staff-goods::before{
  position: absolute;
  content: "";  
  left: 0;
  bottom: 0;
  width: calc(100% - 40px);
  height: calc(100% - 77px);
  background: #EFDE86;
  z-index: 1;
}

.c-staff-goods-item{margin-top: 70px;}
.c-staff-goods-item .c-staff-goods-desc{padding: 0 0 25px;}
.c-staff-goods .c-staff-goods-name,
.c-staff-goods .c-staff-goods-comment,
.c-staff-goods .c-staff-goods-text{
  position: relative;
  z-index: 2;
}

.c-staff-goods .c-staff-goods-no{
  position: absolute;
  right: 15px;
  top: -30px;
  z-index: 2;
}

.c-staff-goods .c-staff-goods-no span{
  font-family: "Lato", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;  
}

.c-staff-goods .c-staff-goods-name{
  font-family: "Lato", sans-serif;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 600;
  margin: 20px 15px 0 15px;
  border-top: solid 1px #333;
  border-bottom: solid 1px #333;
  padding: 0 10px;
}

.c-staff-goods .c-staff-goods-comment{
  font-size: 1.8rem;
  font-weight: 600;
  margin: 20px 0 0 60px;  
}

.c-staff-goods .c-staff-goods-text{
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 12px 0 0 60px;
  text-align: center;  
}

/* デザインパターン */
.design-pt1 .c-staff-goods::before{background: #EFDE86;}
.design-pt1 .c-staff-goods .c-staff-goods-no span{
  position: relative;
  color: #EFDE86;
}

.design-pt2 .c-staff-goods::before{background: #EACAC0;}
.design-pt2 .c-staff-goods .c-staff-goods-no span{
  position: relative;
  color: #EACAC0;
}

.design-pt3 .c-staff-goods::before{background: #D3DDDE;}
.design-pt3 .c-staff-goods .c-staff-goods-no span{
  position: relative;
  color: #D3DDDE;
}

.design-pt4 .c-staff-goods::before{background: #EECB94;}
.design-pt4 .c-staff-goods .c-staff-goods-no span{
  position: relative;
  color: #EECB94;
}

.design-pt5 .c-staff-goods::before{background: #C2D9D1;}
.design-pt5 .c-staff-goods .c-staff-goods-no span{
  position: relative;
  color: #C2D9D1;
}


.design-pt1 .c-staff-goods .c-staff-goods-no span:after{
  position: absolute;
  content: "";
  top: 10px;
  right: 45px;
  background: url(../img/deco_no1.svg) no-repeat;
  background-size: 14px auto;
  width: 14px;
  height: 10px;
}

.design-pt1 .c-staff-goods .c-staff-goods-no span:after,
.design-pt2 .c-staff-goods .c-staff-goods-no span:after,
.design-pt3 .c-staff-goods .c-staff-goods-no span:after,
.design-pt4 .c-staff-goods .c-staff-goods-no span:after,
.design-pt5 .c-staff-goods .c-staff-goods-no span:after{
  position: absolute;
  content: "";
  top: 10px;
  right: 45px;
  width: 14px;
  height: 10px;  
}

.design-pt1 .c-staff-goods .c-staff-goods-no span:after{
  background: url(../img/deco_no1.svg) no-repeat;
  background-size: 14px auto;
}

.design-pt2 .c-staff-goods .c-staff-goods-no span:after{
  background: url(../img/deco_no2.svg) no-repeat;
  background-size: 14px auto;
}

.design-pt3 .c-staff-goods .c-staff-goods-no span:after{
  background: url(../img/deco_no3.svg) no-repeat;
  background-size: 14px auto;
}

.design-pt4 .c-staff-goods .c-staff-goods-no span:after{
  background: url(../img/deco_no4.svg) no-repeat;
  background-size: 14px auto;
}

.design-pt5 .c-staff-goods .c-staff-goods-no span:after{
  background: url(../img/deco_no5.svg) no-repeat;
  background-size: 14px auto;
}

/* ------ スタッフ　ポイント ------*/
.c-staff-point{
  margin-top: 42px;
  overflow: visible;
}

.c-staff-point .c-staff-point-desc{
  margin-top: 25px;
  line-height: 1.4;
}

.c-staff-point .c-staff-point-desc p{
  margin-top: 10px;
  font-size: 1.4rem;
}

.c-staff-point .c-staff-point-color{
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}

.c-staff-point .c-staff-point-price{
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-top: 8px;    
}

.c-staff-point .c-staff-point-list li{padding: 0 0 48px;}
.c-staff-point .c-staff-point-list ul{display: flex;}

/* デザインパターン */
.design-pt1 p span.marker:after{background-color: #EFDE86;}
.design-pt2 p span.marker:after{background-color: #EACAC0;}
.design-pt3 p span.marker:after{background-color: #D3DDDE;}
.design-pt4 p span.marker:after{background-color: #EECB94;}
.design-pt5 p span.marker:after{background-color: #C2D9D1;}

/* ------ スタッフ　スタイリング ------*/
.c-staff-styling{padding: 50px 15px 48px;}
.c-staff-styling .c-staff-styling-list li{
  background: url(../img/staff_styling_bg.png) #fff;
  padding: 15px 15px 80px;
}

.c-staff-styling-comment span{
  font-family: "Lato", sans-serif;
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 10px 10px 0 0;
}

.c-staff-styling-comment p{
  font-size: 1.6rem;
  font-weight: 600;
  padding: 13px 5px;
  text-align: center;
  border-top: solid 2px #333;
  border-bottom: solid 2px #333;  
}


/* デザインパターン */
.design-pt1 .c-staff-styling{background: #EFDE86;}
.design-pt2 .c-staff-styling{background: #EACAC0;}
.design-pt3 .c-staff-styling{background: #D3DDDE;}
.design-pt4 .c-staff-styling{background: #EECB94;}
.design-pt5 .c-staff-styling{background: #C2D9D1;}

.c-staff-point-list .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.c-staff-point-list .swiper-slide {
  width: calc(33.333% - 14px);
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  height: auto;
}

.c-staff-point-list .c-staff-point-color,
.c-staff-point-list .c-staff-point-price {margin: 10px 0;}

/* --- スタッフスタイリング --- */
.c-staff-styling .c-staff-styling-list {
  position: relative;
  margin-top: 25px;
  padding-bottom: 40px;
  overflow: hidden;
}

.c-staff-styling-list .swiper-slide dl {
  display: flex;
  gap: 10px;
}
.c-staff-styling-list .swiper-slide dt {flex: 0 0 40%;}
.c-staff-styling-list .swiper-slide dd {
  flex: 1 1 60%;
  margin: 0;
}

.c-staff-styling-list .swiper-slide dd > p{
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;      
}

.c-staff-styling-list .c-staff-styling-data,
.c-staff-styling-list .c-staff-styling-icon {margin-top: 15px;}
.c-staff-styling-list .c-staff-styling-data p{
  font-size: 1.4rem;
  font-weight: 500;
}

.c-staff-styling-list .c-staff-styling-data p span{
  display: block;
  font-size: 1.2rem;
}

/* 矢印のカスタムスタイル */
.c-staff-styling-list .swiper-button-prev,
.c-staff-styling-list .swiper-button-next {
  position: absolute;
  bottom: 0;
  top: auto;
  width: 80px;
  height: 30px;
  background: #333;
  border: solid 1px #333;
  margin-top: 0;
  border-radius: 20px;
}

.c-staff-styling-list .swiper-button-prev::after,
.c-staff-styling-list .swiper-button-next::after {
  font-size: 15px;
  color: #fff;
}

.c-staff-styling-list .swiper-button-prev {
  right: 90px;
  left: auto;
}

.c-staff-styling-list .swiper-button-next {right: 0}
.c-staff-styling-list .c-staff-styling-data{
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.c-staff-styling-list .c-staff-styling-icon{
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: solid 1px #333;
  border-radius: 20px;
  padding: 4px 15px;
  font-size: 1.4rem;      
}

/* ------ メッセージ ------*/
.c-staff-bestbuy-msg{
  padding: 0 15px;
  margin-top: 30px;
}

.c-staff-bestbuy-msg p{
    width: 100%;
    border: solid 2px #000;
    text-align: center;
    padding: 30px;
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
}

.c-staff-bestbuy-msg p:before {
    position: absolute;
    content: "";
    left: 7%;
    top: -5px;
    width: 85%;
    height: 10px;
    margin: 0 auto;
    background: #fff;
    z-index: 1;
}

.c-staff-bestbuy-msg p:after {
    position: absolute;
    content: "";
    left: 7%;
    bottom: -5px;
    width: 85%;
    height: 10px;
    margin: 0 auto;
    background: #fff;
    z-index: 1;
}

@media screen and (max-width:740px) {
  body .pc-only{display: none;}
  .c-main-menu ul{
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .c-main-menu ul li{  width: calc((100% - (8px * 1)) / 2);}
  .c-staff-goods dl{
    display: flex;
    flex-wrap: wrap;
  }

  .c-staff-goods dt{
    width: 100%;
    order: 2;
  }

  .c-staff-goods dd{
    width: 100%;    
    order: 1;
  }

  .c-staff-point-list {overflow: hidden;}
  .c-staff-point-list .swiper-wrapper {
    justify-content: flex-start;
    gap: 0;
  }
  .c-staff-point-list .swiper-slide {width: 72%;}  

  .c-staff-styling-list {
    overflow: visible;
    padding-bottom: 60px;
  }
  .c-staff-point-list .c-staff-point-color{margin: 8px 0 2px;}
  .c-staff-point-list .c-staff-point-price{margin: 0 0 8px;}

  .c-staff-styling-list .swiper-slide {
    width: 100%;
    height: auto;
  }

  .c-staff-styling-list .swiper-slide dl {gap: 15px;}
  .c-staff-styling .c-staff-styling-list li{padding: 15px 15px 65px;}
  .c-staff-styling-list .swiper-slide dd > p{
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .c-staff-styling-list .c-staff-styling-icon{font-size: 1.2rem;}
  .staff-bestbuy-lp h2 span{font-size: 1.0rem;}
  .c-staff-bestbuy-msg p{padding: 30px 10px;}
  .c-staff-styling-comment span{
    padding: 0px 10px;
    border-radius: 4px 4px 0 0;
  }

  /* デザインごと */
  .design-pt1 .c-staff-goods .c-staff-goods-no,
  .design-pt3 .c-staff-goods .c-staff-goods-no,
  .design-pt5 .c-staff-goods .c-staff-goods-no{
    right: 15px;
    left: auto;    
  }

  .design-pt1.c-staff-goods-item .c-staff-goods-desc,
  .design-pt3.c-staff-goods-item .c-staff-goods-desc,
  .design-pt5.c-staff-goods-item .c-staff-goods-desc{text-align: left;}
  .design-pt1 .c-staff-goods .c-staff-goods-comment,
  .design-pt3 .c-staff-goods .c-staff-goods-comment,
  .design-pt3 .c-staff-goods .c-staff-goods-comment{
    margin: 12px 40px 0 0;
    text-align: center;
    display: block;
  }

  .design-pt1 .c-staff-goods .c-staff-goods-text,
  .design-pt3 .c-staff-goods .c-staff-goods-text,
  .design-pt5 .c-staff-goods .c-staff-goods-text{
    display: block;
    margin: 12px 40px 0 0;
  }

  .design-pt2 .c-staff-goods .c-staff-goods-no,
  .design-pt4 .c-staff-goods .c-staff-goods-no{left: 15px;}

  .design-pt2.c-staff-goods-item .c-staff-goods-desc,
  .design-pt4.c-staff-goods-item .c-staff-goods-desc{text-align: right;}
  .design-pt2 .c-staff-goods .c-staff-goods-comment,
  .design-pt4 .c-staff-goods .c-staff-goods-comment{
    margin: 12px 0 0 40px;
    text-align: center;
  }
  .design-pt2 .c-staff-goods .c-staff-goods-text,
  .design-pt4 .c-staff-goods .c-staff-goods-text{
    display: block;
    margin: 12px 0 0 40px;
  }

  .design-pt2 .slider-container,
  .design-pt4 .slider-container{padding: 0 15px 0 0;}
  .design-pt2 .c-staff-goods:before,
  .design-pt4 .c-staff-goods:before{
    left: auto;
    right: 0;
  }
}  

@media screen and (min-width:741px) {
  body .sp-only{display: none;}
  .c-main-lead{
    margin-top: 50px;
    font-size: 1.6rem; 
  }

  /* 共通 */  
  .staff-bestbuy-lp h2{font-size: 5rem;}
  .c-staff-point .c-staff-point-desc p{font-size: 1.6rem;}
  .attention{
    width: 800px;    
    margin: 0 75px 0;
  }
  .attention:before,
  .attention:after{height: 40%;}  

  p span.marker:after{height: 16px;}

  /* 基本レイアウト */
  .c-main-menu{
    max-width: 1420px;
    margin: 60px auto 0 auto;
  }
  
  .c-staff-goods{
    max-width: 1420px;
    margin: 0 auto;
  }
  .c-staff-point{
    max-width: 1200px;
    margin: 120px auto 0;
    text-align: center;    
  }
  .c-staff-styling{
    margin-top: 50px;
    padding: 50px 15px 100px;
  }
  .c-staff-styling-list{
    max-width: 1420px;
    margin: 0 auto;
  }
  .c-staff-styling-list .swiper-slide dd{
    position: relative;
    padding: 8px 0 0 10px;
  }
  .c-staff-styling-comment{
    max-width: 1420px;
    margin: 0 auto;
  }
  
  .c-main-menu ul li .c-main-menu-no{
    padding-left: 26px;
    line-height: 1.2;
  }
  .c-staff-goods .c-staff-goods-no span{font-size: 10rem;}


  /* 基本レイアウト */ 
  .c-staff-point .swiper-wrapper{justify-content: initial;}
  .c-staff-goods{padding: 0 0 80px;}
  .c-staff-goods::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: calc(100% - 240px);
    height: calc(100% - 80px);
    z-index: 1;
  }
  .c-main-menu ul li em{font-size: 1.6rem;}
  .c-main-menu ul li p{
    font-size: 1.4rem;
    margin-top: 4px;
  }

  .c-main-menu ul li .c-main-menu-no{font-size: 3.0rem;}
  .c-main-menu ul li a{padding: 10px 20px 50px;}
  .c-main-menu ul li a:after{bottom: 10px;}
  .c-main-menu ul li a:hover:after{
    transition: all 0.2s;    
    bottom: 4px;
  }

  .c-main-menu ul li{width: calc(100% / 5);}
  .c-main-menu ul li:nth-child(1) .c-main-menu-no{
    background: url(../img/deco_no1.svg) no-repeat;
    background-size: 24px auto;
    background-position: center left;
  }
  .c-main-menu ul li:nth-child(2) .c-main-menu-no{
    background: url(../img/deco_no2.svg) no-repeat;
    background-size: 24px auto;
    background-position: center left;
  }
  .c-main-menu ul li:nth-child(3) .c-main-menu-no{
    background: url(../img/deco_no3.svg) no-repeat;
    background-size: 24px auto;
    background-position: center left;
  }
  .c-main-menu ul li:nth-child(4) .c-main-menu-no{
    background: url(../img/deco_no4.svg) no-repeat;
    background-size: 24px auto;
    background-position: center left;
  }
  .c-main-menu ul li:nth-child(5) .c-main-menu-no{
    background: url(../img/deco_no5.svg) no-repeat;
    background-size: 24px auto;
    background-position: center left;
  }        

  /* 商品 */
  .c-staff-goods-item{margin-top: 140px;}
  .c-staff-goods-item dd{
    width: 900px;
    order: 2;
  }
  .c-staff-goods-item dl{display: flex;}
  .c-staff-goods-item dt{
    order: 1;
    width: 522px;
  }

  .main-slider{margin-bottom: 12px;}
  .c-staff-point-list{margin: 30px 0 0;}
  .c-staff-goods .c-staff-goods-no{
    right: 8px;
    top: -70px;
  }

  .c-staff-goods-item .c-staff-goods .c-staff-goods-no span:after{
    background-size: auto;
    background-size: 24px auto;
  }

  .c-staff-goods-item .c-staff-goods-desc{text-align: center;}
  .c-staff-goods .c-staff-goods-name{
    font-size: 5.5rem;
    padding: 0 30px;
    margin: 160px 15px 0 15px;  
  }

  .c-staff-goods .c-staff-goods-comment{
    font-size: 2.8rem;
    margin: 50px 0 0 0;
  }
  .c-staff-goods .c-staff-goods-text{
    font-size: 2rem;
    margin: 40px 0 0 0;  
  }

  /* ポイント */
  .c-staff-point .c-staff-point-list ul{
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;    
  }
  .c-staff-point .c-staff-point-img img{max-width: 300px;} 
  .c-staff-point .c-staff-point-list li{width: 300px;}
  .c-staff-point-list .c-staff-point-color{margin: 10px 0 0;}
  .c-staff-point .c-staff-point-price{margin: 0 0 10px;}
  .c-staff-point .swiper-slide.pc-display-none{display: none;}
  .c-staff-point .c-staff-point-img a{display: block;}
  .c-staff-point .c-staff-point-img a:hover img{
    opacity: 0.8;
    transition: all 0.3s;
  }

  /* スタイリング */
  .c-staff-styling .c-staff-styling-list li{padding: 20px 30px;}
  .c-staff-styling-list .swiper-slide {
    width: calc(100% - 20px);
    max-width: 700px;
  }

  .c-staff-styling-comment p{
    font-size: 2.4rem;
    padding: 24px 5px;
  }

  .c-staff-bestbuy-msg{
    max-width: 1200px;
    margin: 60px auto 0;
  }

  .c-staff-bestbuy-msg p{
    font-size: 2rem;
    padding: 50px 30px;
  }

  .c-staff-bestbuy-msg p:after,  
  .c-staff-bestbuy-msg p:before{
    left: 3%;
    width: 95%;
  }

  .c-staff-point-btn a:hover{
    transition: all 0.3s;
    background: #fff;
    color: #333;
  }

  .c-staff-styling-list .swiper-button-prev,
  .c-staff-styling-list .swiper-button-next{bottom: 5px;}
  .c-staff-styling-list .swiper-button-prev::after,
  .c-staff-styling-list .swiper-button-next::after{font-size: 13px;}

  .c-staff-styling .swiper-button-prev:hover,
  .c-staff-styling .swiper-button-next:hover{
    background: #fff;
    transition: all 0.3s;    
  }

  .c-staff-styling .swiper-button-prev:hover:after,
  .c-staff-styling .swiper-button-next:hover:after{color: #333;}
  .c-staff-styling-list .c-staff-styling-icon{right: 0;}
  .c-staff-styling-list .swiper-slide dd > p{
    font-weight: 600;
    line-height: 1.5;
  }
  .c-staff-styling-list .c-staff-styling-data p{font-size: 1.4rem;}  
  .c-staff-styling-list .c-staff-styling-data p span{
    font-size: 1.2rem;
    display: block;
  }
  
  .c-staff-styling-list .c-staff-styling-data{
    left: 10px;
    bottom: 0;
  }

  .c-staff-styling-list .c-staff-styling-icon{
    right: 0;
    bottom: 0;
  }

  .c-staff-styling .c-staff-styling-list{
    margin-top: 40px;
    padding-bottom: 50px;
  }
  .c-staff-styling-comment span{padding: 6px 53px;}

  /* パターンごと */
  .design-pt1 .c-staff-point .swiper-wrapper > .swiper-slide:last-child{display: none;}  
  .c-staff-goods-item .c-staff-goods dt{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .design-pt1 .c-staff-goods .c-staff-goods-no span::after,
  .design-pt2 .c-staff-goods .c-staff-goods-no span::after,
  .design-pt3 .c-staff-goods .c-staff-goods-no span::after,
  .design-pt4 .c-staff-goods .c-staff-goods-no span::after,
  .design-pt5 .c-staff-goods .c-staff-goods-no span::after{
    top: 28px;
    right: 96px;
    width: 24px;
    height: 19px;
  }

  .design-pt2.c-staff-goods-item dt,
  .design-pt4.c-staff-goods-item dt{
    order: 2;
    width: 522px;
    flex: 0 0 38%;
  }

  .design-pt2.c-staff-goods-item .c-staff-goods dt,
  .design-pt4.c-staff-goods-item .c-staff-goods dt{order: 2;}
  .design-pt2.c-staff-goods-item .c-staff-goods dd,
  .design-pt4.c-staff-goods-item .c-staff-goods dd{order: 1;}  
  .design-pt2.c-staff-goods-item .c-staff-goods:before,
  .design-pt4.c-staff-goods-item .c-staff-goods:before{
    left: auto;
    right: 0;
  }

  .design-pt2.c-staff-goods-item .c-staff-goods .c-staff-goods-no,
  .design-pt4.c-staff-goods-item .c-staff-goods .c-staff-goods-no{
    right: auto;
    left: 15px;
    top: -70px;
  }

  .design-pt3 .c-staff-point,
  .design-pt4 .c-staff-point{max-width: 1420px;}  
}

/* ------------フェード----------- */
@media screen and (max-width:740px) {
    /* フェード用 */
    .js-fade-in {
        opacity: 0;
        transition: opacity 1s ease-out, transform 0.6s ease-out;
    }

    .js-fade-in.visible {
        opacity: 1;
    }
}    

@media screen and (min-width:741px) {
    .js-fade-in {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 1s ease-out, transform 0.6s ease-out;
    }

    .js-fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    } 
}