@charset "utf-8";

  body{
    color: white;
  }

  /*========= スクロールをすると下のエリアが上にかぶさるCSS ===============*/

#main1{
  /*headerを全画面で見せる*/
width:100%;
height: 100vh;
position: relative;
} 

#main1:before{
  /*header の疑似要素に背景画像を指定*/
content:"";
position:fixed;
top:0;
left:0;
z-index:-1;
width:100%;
height: 100vh;
/*背景画像設定*/
background:url(../images/back3.jpg) no-repeat center;
background-size:cover;
}

@media only screen and (max-width: 960px) {
  #main1{
    /*headerを全画面で見せる*/
  width:100%;
  height: 100vh;
  position: relative;
} 

  #main1:before{
    content:"";
      position:fixed;
      top:0;
      left:0;
      z-index:-1;
      width:100%;
      height: 100vh;
      /*背景画像設定*/
      background:url(../images/back2.jpg) no-repeat center;
      background-size:cover;
      background-position:90% 0%;
  }
}

@media only screen and (max-width: 520px) {
#main1{
    /*headerを全画面で見せる*/
  width:100%;
  height: 100vh;
  position: relative;
} 

  #main1:before{
    content:"";
      position:fixed;
      top:0;
      left:0;
      z-index:-1;
      width:100%;
      height: 100vh;
      /*背景画像設定*/
      background:url(../images/back2.jpg) no-repeat center;
      background-size:cover;
      background-position:90% 0%;
  }
}

/*下の被さるエリアの指定*/
#main2{
  position: relative;
  z-index:1;
    /*以下はレイアウトのための記述*/
    width:100%;
    height: 200vh;
  text-align: center;
  background:url(../images/denim_top.jpg) no-repeat center;
  background-size:cover;
  background-attachment:fixed;
}

@media only screen and (max-width: 960px) {
  #main2{
    /*headerを全画面で見せる*/
  width:100%;
  height: 100vh;
  position: relative;
  z-index:1;
  z-index: initial;
  text-align: initial;
  background:initial;
  background-size:initial;
  background-attachment:initial;
  text-align: center;
  background:url(../images/denim_top.jpg) no-repeat center;
  background-size:cover;
  background-attachment:fixed;
} 
}

@media only screen and (max-width: 520px) {
  #main2{
    /*headerを全画面で見せる*/
  width:100%;
  height: 100vh;
  position: relative;
  z-index:1;
  z-index: initial;
  text-align: initial;
  background:initial;
  background-size:initial;
  background-attachment:initial;
  text-align: center;
  background:url(../images/denim_top.jpg) no-repeat center;
  background-size:cover;
  background-attachment:fixed;
} 
}
  
  .block{
      padding-top: 500px;
  }

  .box{
    font-family:"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    width: 980px;
    padding: 20px;
    background-size: 100% auto;
    color: #fff;
    margin: 0 auto;
    font-size: 40px;
    font-weight: bold;
    line-height: 200%;
  }
  
  .box p{
    margin-top: 30px;
    margin-bottom: 30px;
  }

  @media only screen and (max-width: 960px) {
    .block{
      position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: initial;
  }
  
  
  .box{
    font-family:"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    width: 100%;
    padding: initial;
    background-size: 100% auto;
    color: #fff;
    margin: 0 auto;
    font-size: 120%;
    text-align: center;
    font-weight: bold;
    line-height: 200%;
  }

  .box p{
    margin:initial;
  }
}

  @media only screen and (max-width: 520px) {
    .block{
      position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: initial;
  }
  
  
  .box{
    font-family:"游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    width: 100%;
    padding: initial;
    background-size: 100% auto;
    color: #fff;
    margin: 0 auto;
    font-size: 90%;
    text-align: center;
    font-weight: bold;
    line-height: 200%;
  }

  .box p{
    margin:initial;
  }
}

  /*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(300px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  
  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
   
  .fadeUpTrigger{
      opacity: 0;
  }

  #container{
    /*下のかぶさるエリアの指定*/
    position: relative;
    z-index:1;
    /*以下はレイアウトのための記述。削除可能*/
    background:url(../images/back.jpg) repeat;
    padding-bottom: 50px;
  }

  @media only screen and (max-width: 960px) {
     /*==================================================
      ふわっ
      ===================================*/
      
      
      /* fadeUp */
      
      .fadeUp{
        animation-name:fadeUpAnime;
        animation-duration:1s;
        animation-fill-mode:forwards;
        opacity:0;
        }
        
        @keyframes fadeUpAnime{
          from {
            opacity: 0;
          transform: translateY(400px);
          }
        
          to {
            opacity: 1;
          transform: translateY(0);
          }
        }
        
        
        /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
         
        .fadeUpTrigger{
            opacity: 0;
        }
    
    #container{
        /*下のかぶさるエリアの指定*/
        position: relative;
        z-index:1;
        /*以下はレイアウトのための記述。削除可能*/
        background:url(../images/back.jpg) repeat;
        padding-bottom: 100px;
    }
  }

  /*ラッパー要素*/
  #wrapper{
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .contents{
    margin-left: 400px;
  }

  @media only screen and (max-width: 520px) {
    /*==================================================
      ふわっ
      ===================================*/
      
      
      /* fadeUp */
      
      .fadeUp{
        animation-name:fadeUpAnime;
        animation-duration:1s;
        animation-fill-mode:forwards;
        opacity:0;
        }
        
        @keyframes fadeUpAnime{
          from {
            opacity: 0;
          transform: translateY(400px);
          }
        
          to {
            opacity: 1;
          transform: translateY(0);
          }
        }
        
        
        /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
         
        .fadeUpTrigger{
            opacity: 0;
        }
    
    #container{
        /*下のかぶさるエリアの指定*/
        position: relative;
        z-index:1;
        /*以下はレイアウトのための記述。削除可能*/
        background:url(../images/back.jpg) repeat;
        padding-bottom: 100px;
    }
  }

  /*ラッパー要素*/
  #wrapper{
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .contents{
    margin-left: 400px;
  }

  @media only screen and (max-width: 1366px) {
    .contents{
      text-align: center;
      margin: initial;
    }
  }

  @media only screen and (max-width: 1368px) and (max-height: 912px) {
    .contents{
      text-align: center;
      margin: initial;
    }
  }

  @media only screen and (max-width: 1024px) and (max-height: 1366px) {

    #wrapper {
      display: flex;
      justify-content: space-between;
      position: initial;
  }

    .contents {
      text-align: center;
      margin: initial;
  }
}

@media only screen and (max-width: 1280px) {
  .contents {
    text-align: center;
    margin: initial;
}
}

  @media only screen and (max-width: 960px) {
    #wrapper{
      overflow: hidden;
      display: initial;
    justify-content: initial;
    position: initial;
    }

     .contents{
      position: relative;
      z-index: 1;
      text-align: center;
      margin: initial;
     }
}

  @media only screen and (max-width: 520px) {

    #wrapper{
      overflow: hidden;
      display: initial;
    justify-content: initial;
    position: initial;
    }

     .contents{
      position: relative;
      z-index: 1;
      text-align: center;
      margin: initial;
     }
    }
  
  
  
  .itembox{
    width: 600px;
    padding: 80px;
  }
  
  .item_h{
    text-align: left;
    margin: 25px 0;
  }
  
  .item_h h1{
    font-size: 35px;
    line-height: 1.3;
  }
  
  
  .itemimg a img{
    width: 100%;
      height: auto;
  }
  
  .itemtxt {
    width: 100%;
      flex: 1;
  }
  
  .itemtxt h3 {
     font-size:20px;
     padding-bottom: 20px;
     line-height: 1.3;
     font-weight: bold;
     letter-spacing: 2px;
  }
  
  .itemtxt h3 span {
     font-size:13px;
     padding-bottom: 10px;
     display: block;
  }
  
  .txt{
    width: 100%;
  }
  
  .txt p {
     font-size:17px;
     line-height: 2;
  }

  @media only screen and (max-width: 1368px) and (max-height: 912px) {
    .itemtxt {
      width: 100%;
        flex: 1;
        text-align: left;
    }
  }

  @media only screen and (max-width: 1366px) {
    .itembox {
        display: block;
        text-align: center;
        margin: auto;
        width: 700px;
    }

    .itemtxt {
      flex: 1;
      width: 100%;
      text-align: left;
      }
}

  @media only screen and (max-width: 1280px) {
    .itembox {
        display: block;
        text-align: center;
        margin: auto;
        width: 600px;
        margin-left: 50px;
    }
  
    .itemtxt {
      flex: 1;
      width: 100%;
      text-align: left;
      }
  }

  @media only screen and (max-width: 1024px) and (max-height: 1366px) {
    .itembox{
      display: inline-block;
      text-align: center;
      width: 90%;
      margin: auto;
      padding: 0;
    }

    .item_flex {
      display: flex;
      column-gap: 40px;
  }


    .item_h{
      text-align: left;
      margin: 25px 0;
    }
    
    .item_h h1{
      font-size: 25px;
      line-height: 1.3;
    }

    .itemimg{
      width: 50%;
  }
    
    .itemimg a img{
        width: 100%;
    }
    
    
    
    .itemtxt {
        flex: 1;
        width: 50%;
        text-align: left;
        }
    
    .itemtxt h3 {
       font-size:17px;
       padding-bottom: 20px;
       line-height: 1.3;
       font-weight: bold;
       letter-spacing: 2px;
    }
    
    .itemtxt h3 span {
       font-size:13px;
       padding-bottom: 10px;
       display: block;
    }

    .txt{
      width: 100%;
    }
    
    .txt p {
       font-size:15px;
       line-height: 2;
    }
}



  @media only screen and (max-width: 960px) {
    .itembox{
      display: inline-block;
      text-align: center;
      width: 90%;
      margin: auto;
      padding: 0;
    }

    .item_flex {
      display: flex;
      column-gap: 40px;
  }


    .item_h{
      text-align: left;
      margin: 25px 0;
    }
    
    .item_h h1{
      font-size: 25px;
      line-height: 1.3;
    }

    .itemimg{
      width: 50%;
  }
    
    .itemimg a img{
        width: 100%;
    }
    
    
    
    .itemtxt {
        flex: 1;
        width: 50%;
        text-align: left;
        }
    
    .itemtxt h3 {
       font-size:17px;
       padding-bottom: 20px;
       line-height: 1.3;
       font-weight: bold;
       letter-spacing: 2px;
    }
    
    .itemtxt h3 span {
       font-size:13px;
       padding-bottom: 10px;
       display: block;
    }

    .txt{
      width: 100%;
    }
    
    .txt p {
       font-size:15px;
       line-height: 2;
    }
  }
    

  @media only screen and (max-width: 520px) {

    .itembox{
      display: inline-block;
      text-align: left;
      width: 300px;
      padding: initial;
    }

    .item_flex {
      display: initial;
      column-gap: initial;
  }


    .item_h{
      text-align: left;
      margin: 25px 0;
    }
    
    .item_h h1{
      font-size: 25px;
      line-height: 1.3;
    }

    .itemimg{
      width: initial;
  }

    
    
    .itemimg a img{
        width: 100%;
    }
    
    
    
    .itemtxt {
        flex: 1;
        width: 100%;
        }
    
    .itemtxt h3 {
       font-size:17px;
       padding-bottom: 20px;
       line-height: 1.3;
       font-weight: bold;
       letter-spacing: 2px;
    }
    
    .itemtxt h3 span {
       font-size:13px;
       padding-bottom: 10px;
       display: block;
    }

    .txt{
      width: 100%;
    }
    
    .txt p {
       font-size:15px;
       line-height: 2;
    }
  }
  
  
  
  
  
  .itemtxt .spec li {
     font-size:14px;
     line-height: 1.5;
     padding-top: 15px;
     padding-bottom: 15px;
     border-bottom: 1.5px solid #fff;
     list-style:none
  }
  
  .button {
      position: relative;
      display: inline-block;
      padding: .9em 4em;
      border: 2px solid #fff;
      color: #fff;
      text-align: center;
      text-decoration: none;
      transition: .3s;
      margin:50px 0;
    }
    .button:hover {
      color: #fff;
    }
    
    .button::before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      content: '';
      background: #333;
      transform-origin: center center;
      transform: scale(0, 1);
      transition: transform .3s;
    }
    
    .button:hover::before {
      transform: scale(1, 1);
    }
  
    
  

  
  /*画像のブロック*/
  .images{
    width: 40vw;
    height: 100vh;
    display: flex;
    align-items: center;
    position: sticky;
    position: -webkit-sticky;
    top:0;
  }
  .images p {
    display: block;
    visibility: hidden;
    /* 画像が透過pngの時は背景色が必要です */
    background: #5bd2d2;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    /* フェード速度 */
    transition: .8s;
    opacity: 0;
  }
  
  .images p.active {
    visibility: visible;
    opacity: 1;
  }

  
  

@media only screen and (max-width: 1024px) and (max-height: 1366px) {
    .images {
      display: none;;
    }
  }

          
@media only screen and (max-width: 1024px) and (max-height: 768px) {
  .images img {
      height: 100%;
  }
}

@media only screen and (max-width: 960px) {
  /*画像のブロック*/
  .images{
    display: none;
  }
        }
  
  
  .scroll-box01 img,.scroll-box02 img,.scroll-box03 img,.scroll-box04 img,.scroll-box05 img,.scroll-box06 img,.scroll-box07 img,.scroll-box08 img,.scroll-box09 img,.scroll-box10 img,.scroll-box11 img,.scroll-box12 img,.scroll-box13 img,.scroll-box14 img,.scroll-box15 img,.scroll-box16 img,.scroll-box17 img,.scroll-box18 img{
    height: 100%;
  }

  @media only screen and (max-width: 1024px) and (max-height: 1366px) {
    .scroll-box01,.scroll-box02,.scroll-box03,.scroll-box04,.scroll-box05,.scroll-box06,.scroll-box07,.scroll-box08,.scroll-box09,.scroll-box10,.scroll-box11,.scroll-box12,.scroll-box13,.scroll-box14,.scroll-box15,.scroll-box16 img,.scroll-box17 img,.scroll-box18 img{
      padding-top: 100px;
      padding-bottom: 30px
    }
  }

  @media only screen and (max-width: 960px) {
    .scroll-box01,.scroll-box02,.scroll-box03,.scroll-box04,.scroll-box05,.scroll-box06,.scroll-box07,.scroll-box08,.scroll-box09,.scroll-box10,.scroll-box11,.scroll-box12,.scroll-box13,.scroll-box14,.scroll-box15,.scroll-box16,.scroll-box17,.scroll-box18{
      padding-top: 100px;
      padding-bottom: 30px
    }
  }

  @media only screen and (max-width: 520px) {
    .scroll-box01,.scroll-box02,.scroll-box03,.scroll-box04,.scroll-box05,.scroll-box06,.scroll-box07,.scroll-box08,.scroll-box09,.scroll-box10,.scroll-box11,.scroll-box12,.scroll-box13,.scroll-box14,.scroll-box15,.scroll-box16,.scroll-box17,.scroll-box18{
      padding-top: 100px;
      padding-bottom: 30px
    }
  }

    /* TOPへ -------------------------------------------------------------------------------- */
    #fix_top {
      width: 123px;
      height: 157px;
      position: fixed;
      bottom: 20px;
      right: 0px;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      z-index: 9999;
    }
  
    #fix_top a {
      right: 0px;
      outline: none;
      display: block;
      background: url(../images/top.png) no-repeat;
      background-position: 0px 0px;
      width: 123px;
      height: 157px;
  }

  @media only screen and (max-width: 960px) {
    #fix_top {
      display: none;
    }
  }


  #page-top a{
    display: flex;
    justify-content:center;
    align-items:center;
    background:#1E237F;
    border-radius: 5px;
    width: 100px;
    height: 100px;
    color: #fff;
    text-align: center;
    text-transform: uppercase; 
    text-decoration: none;
    font-size:1.0rem;
    transition:all 0.3s;
  }
  
  #page-top a:hover{
    background: #777;
  }
  
  /*リンクを右下に固定*/
  #page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateY(180px);
  }
  
  /*　上に上がる動き　*/
  
  #page-top.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
      opacity: 0;
    transform: translateY(180px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
  /*　下に下がる動き　*/
  
  #page-top.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
      opacity: 1;
    transform: translateY(0);
    }
    to {
      opacity: 1;
    transform: translateY(150px);
    }
  }
  
  @media only screen and (max-width: 960px) {
    #page-top {
      display: none;
  }
  
    #fix_top {
      display: none;
  }
  
  }
  
  @media only screen and (max-width: 600px) {
  
    #page-top {
      display: none;
  }
  
    #fix_top {
      display: none;
  }
  
  }


  /*==================================================
  動かしたい動き（今回は” ふわっ” を採用）
  ===================================*/
  
  .fadeUp_list {
    animation-name:fadeUpAnime2;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime2{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
    
    to {
      opacity: 1;
    transform: translateY(0);
    }
    }
    
    .gallary{
        display: block;
        position: relative;
      z-index:1;
      margin-top: 200px;
      margin-bottom: 200px;
    }
    
    h4{
      text-align: center;
      font-size: 50px;
      margin-bottom: 50px;
    }
    
    ul.flex{
      display:flex;
      flex-wrap: wrap;
      padding-left: 50px;
      padding-right: 50px;
      margin-bottom: 300px;  
    }
    
    .list{
      list-style: none;
    
    padding: 10px;
    width: 20%;
    }
    
    .list img{
      width: 100%;
      height: auto;
    }
    
    
    dd{
    margin-left: 0;
    }
    
    dt.name{
    width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 90%;
    }
    
    dl{
    height: 100%;
    background-color:darkgreen;
    line-height: 1.5;
    padding: 10px;
    }
    
    
    .list a{
    color: white;
    text-decoration: none;
    }
    
    .saleprice1,.saleprice2{
      text-align: right;
      }
    
      .saleprice1{
        font-size: 100%;
      }
    
      .saleprice2{
        font-size: 100%;
      }
      
      .saleprice2 strong{
        font-size: 150%;
      }

      @media only screen and (max-width: 960px) {

        .gallary{
          display: block;
          position: relative;
      z-index:1;
      margin-top: 20px;
      margin-bottom: 100px;
      }
    
      h4{
        text-align: center;
        margin-bottom: 50px;
      }
      
      ul.flex{
        display:flex;
        flex-wrap: wrap;
        padding: initial;
        margin-bottom: 50px;
      }
      
      .list{
        list-style: none;
    
      padding: 10px;
      width: 50%;
      }
      
      .list img{
        width: 100%;
        height: auto;
      }
      
      
      dd{
      margin-left: 0;
      }
      
      dt.name{
      width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 70%;
      }
      
      dl{
      height: 100%;
      background-color:darkgreen;
      line-height: 1.5;
      padding: 10px;
      }
      
      
      .list a{
      color: white;
      text-decoration: none;
      }
      
      .saleprice1,.saleprice2{
      text-align: right;
      }
    
      .saleprice1{
        font-size: 70%;
      }
    
      .saleprice2{
        font-size: 70%;
      }
      
      .saleprice2 strong{
        font-size: 170%;
      }
    }

  @media only screen and (max-width: 520px) {

    .gallary{
      display: block;
      position: relative;
	z-index:1;
  margin-top: 20px;
  margin-bottom: 100px;
  }

  h4{
    text-align: center;
    font-size: 25px;
    margin-bottom: 50px;
  }
  
  ul.flex{
    display:flex;
    flex-wrap: wrap;
    padding: initial;
    margin-bottom: 50px;
  }
  
  .list{
    list-style: none;

  padding: 10px;
  width: 50%;
  }
  
  .list img{
    width: 100%;
    height: auto;
  }
  
  
  dd{
  margin-left: 0;
  }
  
  dt.name{
  width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 70%;
  }
  
  dl{
  height: 100%;
  background-color:darkgreen;
  line-height: 1.5;
  padding: 10px;
  }
  
  
  .list a{
  color: white;
  text-decoration: none;
  }
  
  .saleprice1,.saleprice2{
  text-align: right;
  }

  .saleprice1{
    font-size: 70%;
  }

  .saleprice2{
    font-size: 70%;
  }
  
  .saleprice2 strong{
    font-size: 170%;
  }
}

  
  .allitem{
    position: relative;
    z-index:1;
    width: 700px;
    padding: 35px;
    padding-bottom: 25px;
    background-color:maroon;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-bottom: 50px;
    font-size: 40px;
  }
  
  
  .allitem p{
    text-align: center;
    color: white;
    line-height:50px;
  }
  
  .allitem p font{
    font-size: 30px;
  }
  
  .allitem a{
    text-decoration:none;
  }

  @media only screen and (max-width: 960px) {
    .allitem_area{
      padding-left: 20px;
      padding-right: 20px;
    }

    .allitem{
      position: relative;
      z-index:1;
      width: initial;
      padding: 35px;
      padding-bottom: 25px;
      background-color:maroon;
      margin-left: auto;
      margin-right: auto;
      margin-top: 100px;
      font-size: 40px;
    }

    .allitem p{
      text-align: center;
      color: white;
      line-height: initial;
    }

    .allitem p font{
      font-size: 20px;
    }

    .allitem a{
        text-decoration:none;
    }
  }

  @media only screen and (max-width: 520px) {

    .allitem_area{
      padding-left: 20px;
      padding-right: 20px;
    }

    .allitem{
      position: relative;
      z-index:1;
      width: initial;
      padding: 35px;
      padding-bottom: 25px;
      background-color:maroon;
      margin-left: auto;
      margin-right: auto;
      margin-top: 100px;
      font-size: 40px;
    }

    .allitem p{
      text-align: center;
      color: white;
      line-height: initial;
    }

    .allitem p font{
      font-size: 20px;
    }

    .allitem a{
        text-decoration:none;
    }
  }

  
  #recommendf{
    padding:25px;
    background-color: #d6d6d6;
  }
  
  
  #recommendf h2 {
    padding: 0.8rem;
    margin-left: 60px;
    margin-right: 60px;
    font-size: 1.4rem;
    text-indent: 1rem;
      color: white;
      background-color: #111;
      border-radius: 0.5rem;
  }
  
  h2{
    font-weight: 400;
    text-align: center;
  }
  
  footer{
    color: #C7C7C7;
      background-color: #333;
  }
  
  footer ul{
    text-align: center;
    padding-top: 30px;
  }
  
  footer li{
    line-height: 2;
    }
  
  footer li a{
    text-decoration:none;
    color: white;
  }
  
  footer small {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    padding-bottom: 10px;
  }

  @media only screen and (max-width: 960px) {
    #recommendf{
      padding: 25px;
      background-color: #d6d6d6;
    }
    
    
    #recommendf h2 {
      padding: 0.8rem;
      margin: initial;
      font-size: 1.4rem;
      text-indent: 1rem;
        color: white;
        background-color: #111;
        border-radius: 0.5rem
    }
    
    h2{
      font-weight: 400;
      text-align: center;
    }
    
    footer{
      color: #C7C7C7;
  background-color: #333;
    }
    
    footer ul{
      text-align: center;
      padding-top: 30px;
    }
    
    footer li{
      line-height: 2;
      list-style: none;
    }

    footer li a{
      text-decoration:none;
      color: white;
    }
    
    footer small {
      display: block;
      text-align: center;
      margin-top: 20px;
      font-size: 13px;
      padding-bottom: 10px;
    }
  }

  @media only screen and (max-width: 520px) {

    #recommendf{
      padding: 25px;
      background-color: #d6d6d6;
    }
    
    
    #recommendf h2 {
      padding: 0.8rem;
      margin: initial;
      font-size: 1.4rem;
      text-indent: 1rem;
        color: white;
        background-color: #111;
        border-radius: 0.5rem
    }
    
    h2{
      font-weight: 400;
      text-align: center;
    }
    
    footer{
      color: #C7C7C7;
  background-color: #333;
    }
    
    footer ul{
      text-align: center;
      padding-top: 30px;
    }
    
    footer li{
      line-height: 2;
      list-style: none;
    }

    footer li a{
      text-decoration:none;
      color: white;
    }
    
    footer small {
      display: block;
      text-align: center;
      margin-top: 20px;
      font-size: 13px;
      padding-bottom: 10px;
    }
  }


  .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
     margin:0 auto;
 }
 
 .slider img {
     width:100%;/*スライダー内の画像を横幅100%に*/
     height:auto;
     padding-top: 20px;
 }
 
 /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
 
 .slider .slick-slide {
     margin:0 10px;
 }
 
 /*矢印の設定*/
 
 /*戻る、次へ矢印の位置*/
 .slick-prev, 
 .slick-next {
     position: absolute;/*絶対配置にする*/
     top: 47%;
     cursor: pointer;/*マウスカーソルを指マークに*/
     outline: none;/*クリックをしたら出てくる枠線を消す*/
     border-top: 2px solid #666;/*矢印の色*/
     border-right: 2px solid #666;/*矢印の色*/
     height: 15px;
     width: 15px;
 }
 
 .slick-prev {/*戻る矢印の位置と形状*/
     left: -1.5%;
     transform: rotate(-135deg);
 }
 
 .slick-next {/*次へ矢印の位置と形状*/
     right: -1.5%;
     transform: rotate(45deg);
 }
 
 /*ドットナビゲーションの設定*/
 
 .slick-dots {
     text-align:center;
     margin:20px 0 0 0;
 }
 
 .slick-dots li {
     display:inline-block;
     margin:0 5px;
 }
 
 .slick-dots button {
    cursor: pointer;
     color: transparent;
     outline: none;
     width:8px;/*ドットボタンのサイズ*/
     height:8px;/*ドットボタンのサイズ*/
     display:block;
     border-radius:50%;
     background:#ccc;/*ドットボタンの色*/
 }
 
 .slick-dots .slick-active button{
     background:#333;/*ドットボタンの現在地表示の色*/
 }

 @media only screen and (max-width: 960px) {
  .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
     margin:0 auto;
  }
  
  .slider img {
     width:100%;/*スライダー内の画像を横幅100%に*/
     height:auto;
     margin-top: 20px;
  }
  
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  
  .slider .slick-slide {
     margin:0 10px;
  }
  
  /*矢印の設定*/
  
  /*戻る、次へ矢印の位置*/
  .slick-prev, 
  .slick-next {
     position: absolute;/*絶対配置にする*/
     top: 46%;
     cursor: pointer;/*マウスカーソルを指マークに*/
     outline: none;/*クリックをしたら出てくる枠線を消す*/
     border-top: 2px solid #666;/*矢印の色*/
     border-right: 2px solid #666;/*矢印の色*/
     height: 15px;
     width: 15px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
     left: -5.5%;
     transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
     right: -5.5%;
     transform: rotate(45deg);
  }
  
  /*ドットナビゲーションの設定*/
  
  .slick-dots {
     text-align:center;
     margin:20px 0 0 0;
  }
  
  .slick-dots li {
     display:inline-block;
     margin:0 5px;
  }
  
  .slick-dots button {
    cursor: pointer;
     color: transparent;
     outline: none;
     width:8px;/*ドットボタンのサイズ*/
     height:8px;/*ドットボタンのサイズ*/
     display:block;
     border-radius:50%;
     background:#ccc;/*ドットボタンの色*/
  }
  
  .slick-dots .slick-active button{
     background:#333;/*ドットボタンの現在地表示の色*/
  }
  
  li.list{
    list-style: none;
    
  padding: 3px;
  justify-content: center;
  }
  
  .list img{
    width: 100%;
    height: auto;
  }
}
  
 @media only screen and (max-width: 520px) {

  .slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
     margin:0 auto;
  }
  
  .slider img {
     width:100%;/*スライダー内の画像を横幅100%に*/
     height:auto;
     margin-top: 20px;
  }
  
  /*slickのJSで書かれるタグ内、スライド左右の余白調整*/
  
  .slider .slick-slide {
     margin:0 10px;
  }
  
  /*矢印の設定*/
  
  /*戻る、次へ矢印の位置*/
  .slick-prev, 
  .slick-next {
     position: absolute;/*絶対配置にする*/
     top: 46%;
     cursor: pointer;/*マウスカーソルを指マークに*/
     outline: none;/*クリックをしたら出てくる枠線を消す*/
     border-top: 2px solid #666;/*矢印の色*/
     border-right: 2px solid #666;/*矢印の色*/
     height: 15px;
     width: 15px;
  }
  
  .slick-prev {/*戻る矢印の位置と形状*/
     left: -5.5%;
     transform: rotate(-135deg);
  }
  
  .slick-next {/*次へ矢印の位置と形状*/
     right: -5.5%;
     transform: rotate(45deg);
  }
  
  /*ドットナビゲーションの設定*/
  
  .slick-dots {
     text-align:center;
     margin:20px 0 0 0;
  }
  
  .slick-dots li {
     display:inline-block;
     margin:0 5px;
  }
  
  .slick-dots button {
    cursor: pointer;
     color: transparent;
     outline: none;
     width:8px;/*ドットボタンのサイズ*/
     height:8px;/*ドットボタンのサイズ*/
     display:block;
     border-radius:50%;
     background:#ccc;/*ドットボタンの色*/
  }
  
  .slick-dots .slick-active button{
     background:#333;/*ドットボタンの現在地表示の色*/
  }
  
  li.list{
    list-style: none;
    
  padding: 3px;
  justify-content: center;
  }
  
  .list img{
    width: 100%;
    height: auto;
  }
}