@charset "utf-8";

html {
    font-family:Arial,Helvetica,"メイリオ", "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック", "MS PGothic";
    /* width: 100%;
    max-width: 1440px;
    margin: 0 auto; */
}

body {
    margin: 0 auto;
    color: #464646;
    background-color: #f4f4f6;
}

a {
    text-decoration: none;
    color: #464646;
    transition: all 0.2s ease; 
    font-family: sans-serif;
  }

a:hover {
    color: #806C68;
}

h1 {
   width: 200px;
}

h1 img {
    width: 100%;
}

h1 a:hover {
opacity: 80%;
}

h2 {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 300;
    padding-bottom: 32px;
    font-family: sans-serif;
}

h2 span {
    font-size: 2.0rem;
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: sans-serif;
}

section {
    padding: 72px 32px;
    margin: 0 auto;
    /* width: 100%;
    max-width: 1440px; */

}

.p_20 {
    font-size: 2.0rem;
    font-family: sans-serif;
}

.p_16 {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: sans-serif;
    line-height: 1.4;
}

.p_16 span {
    margin-right: 16px;
    font-family: sans-serif;
}

.p_14 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-family: sans-serif;
}

.p_12 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: sans-serif;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.p_type {
   width: 33%;
    background-color: #806C68;
    color: #fff;
    font-size: 1.0rem;
    line-height: 2.0;
    padding: 0 8px;
    text-align: center;
    font-family: sans-serif;
}

.price {
    font-size: 2.0rem;
    width: 33%;
    text-align: end;
    font-family: sans-serif;
}

.div_price {
    display: flex;
    justify-content: space-between;
}

header {
    position: fixed;
    z-index: 999;
    width: 100%;
}


#top_a {
    display: block;
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: #87A77D;
    color: #fff;
    font-size: 1.4rem;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: fixed;
    background-color: #fff;
    width: 100%;
}

#header h1 {
    margin-left: 16px;
}

#header nav {
    width: 55%;
    max-width: 800px;
}

#header ul#nav {
    display: flex;
    line-height: 24px;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 500;
}


#header_left a:hover {
    border-bottom: 2px solid #806C68;
}

ul#header_right {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-right: 16px;
}

#header_right a {
    display: block;
}

ul#header_right a:hover {
    border-bottom: none;
    opacity: 0.6;
}

#nav_sp {
    display: none;
}

main {
    padding-top: 94px;
}


.slider_1 img {
    width: 100%;
    height: auto;
}

#ranking {
    background-color: #fff;
}

#ranking ol {
    display: flex;
    counter-reset: rank;
}

#ranking ol li {
    height: auto;
    margin: 0 8px;
    position: relative;
}

#ranking ol li a::before {
    counter-increment: rank;
  content: counter(rank) ;
  position: absolute;
  padding: 8px 14px;
  font-size: 1.6em;
  color: #fff; /* 文字色 */
  background: #464646; /
  
}


#ranking li a img {
    width: 100%;
    height: auto;
}

#topics {
    max-width: 1100px;
    margin: auto;
}

#topics ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    gap: 32px;
    justify-content: center;
}

#topics ul li img {
    width: 100%;
    height: auto;
}


p.more {
    text-transform: uppercase;
    width: 200px;
    text-align: center;
    line-height: 50px;
    background-color: #fff;
    border: 1px solid #806C68;
    margin: 0 auto;
    margin-top: 32px;
    font-size: 1.6rem;
    font-weight: 300;
}

p.more a {
    display: block;
}

p.more a:hover {
    background-color: #806C68;
    color: #fff;
}

#brandconsept {
    background-color: #fff;
}

#brandconsept ul {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0 auto;
}

#brandconsept ul li {
    height: auto;
    width: calc(50% - 16px);
}

#brandconsept img {
    width: 100%;
    height: auto;
}

#brandconsept p {
    text-align: center;
    padding-bottom: 32px;
    font-weight: 300;
}

#category {
    background-color: #806C68;
}

#category h2 {
    color: #fff;
}

#category ul {
display:grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 16px;
justify-content: center;
max-width: 1000px;
margin: 0 auto;
}

#category ul li {
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 1.4rem;
    border: 1px solid #806C68;
    background-color: #fff;
    transition: all 0.2s ease; 
}

#category ul li:hover {
    background-color: #806C68;
    border:1px solid #fff;
}


#category ul li a {
    display: block;
}

#category ul li a:hover {
color: #fff;
}

#store {
    max-width: 1280px;
    margin: 0 auto;
}

#store_left {
    width: calc(50% - 32px);
    }

#store_left p {
    font-weight: 300;
}

#store_left p:last-child {
        width: 200px;
        text-align: center;
        line-height: 50px;
        background-color: #fff;
        border: 1px solid #806C68;
        margin: 0 auto;
        margin-top: 32px;
}

a.store_link {
    display: block;
}

a.store_link:hover {
    background-color: #806C68;
    color: #fff;
}

#store_right {
width: 50%;
}

#store img {
width: 100%;
height: auto;
}




#news {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 72px 36px;
    background-color: #fff;
}

#news ul li a{
    display: flex;
    justify-content: space-between;
}

#news ul li {
    padding: 16px;
    border-bottom: 2px solid #f4f4f6;
}


#news p:last-child {
    width: 85%;
    margin-left: 32px;
}

#news p.more {
    width: 200px;
    margin: 0 auto;
    margin-top: 32px;
}
 
.footer_nav li img {
    width: 40px;
    line-height: 40px;
}

ul.products {
    width: 100%;
    max-width: 1280px;
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 32px;
    margin: 0 auto;
}


ul.products li img {
    width: 100%;
    height: auto;
    transition: all 0.2s ease; 
}

ul.products li img:hover {
    opacity: 60%;
}

.product_li {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
}

.product_li p span {
    display: block;
}

.product_li p.p_14 {
    height: 40px;
}

footer .top_footer {
    background-color: #87A77D;
    padding: 32px;
}

ul.footer_nav {
    color: #fff;
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

ul.footer_nav p {
    font-weight: 300;
}

ul.footer_nav li {
    width: 30%;
}

ul.footer_nav .p_20 {
    line-height: 2;
    border-bottom: 1px solid #fff;
    margin-bottom: 8px;
}

ul.footer_nav .p_16 {
    padding-bottom: 8px;
}

.footer_nav_inside {
    display: flex;
    justify-content: space-around;
}

.footer_nav_inside a {
    color: #fff;
}

.footer_nav_inside a:hover {
    color: #806C68;
}

ul.footer_nav_inside li {
    width: 40%;
}

ul.footer_nav_inside .p_16 {
    font-weight: 400;
    padding-bottom: 0;
    line-height: 2;
}

footer h1 {
    text-align: center;
    padding-top: 32px;
    margin: 0 auto;
}

div.small_nav {
    background-color: #806C68;
    color: #fff;
    font-size: 1,2rem;
    text-align: center;
    padding-bottom: 8px;
}

div.small_nav ul {
    display: flex;
    gap: 32px;
    justify-content: center;
    padding: 8px 0;

}

div.small_nav ul a {
    font-size: 1.2rem;
    color: #fff;
} 

small {
    font-size: 1.0rem;
    font-family: auto;
    font-weight: 100;
}

.breadcrumb {
    padding: 32px;
    padding-bottom: 0;
    display: flex;
}

.breadcrumb a {
    display: inline-block;
    margin: 0 32px;
    font-size: 1.4rem;
}

.breadcrumb li {
    font-size: 1.4rem;
}

#products_counter {
    text-align: center;
    font-weight: 300;
    padding-bottom: 32px;
}

.pagecount {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding-bottom: 72px;
}

.pagecount p {
    padding: 8px 16px;
    border: 1px solid #806C68;
    background-color: #fff;
    font-weight: 300;
    transition: all 0.2s ease; 
}

.pagecount p:first-child {
    background-color: #806C68;
}

.pagecount p:first-child a {
    color: #fff;
}

.pagecount p:hover {
    opacity: 60%;
}

/* ================================================shampoo01.html */

main#shampoo01 {
    max-width: 1100px;
    margin: 0 auto;
}

/* #shampoo01 .slickimg {
    width: 50%;
    height: 500px;
} */

/* ↓サムネイルslick================== */

#shampoo01 .slickimg {
    margin: 30px auto 0;
    width: 40%;
  }
  #shampoo01 .slickimg img {
    height: auto;
    width: 100%;
  }
  .thumbnail .slick-track {
    transform: unset !important;
  }
  .thumbnail-img {
    opacity: 0.3;
    transition: opacity .3s linear;
  }
  .thumbnail .slick-current {
    opacity: 1;
  }

  .thumbnail .slick-track {
    transform: unset !important;
  }
  /* ↑サムネイルslick================== */

#shampoo01_top {
    width: 40%;
    padding: 72px 0;
}

#shampoo01_top h2 {
    font-size: 2.0rem;
    text-align: start;
    font-weight: 500;
    line-height: 1.4;
}

#shampoo01_top .p_16 {
    font-weight: 400;
}

#shampoo01_top .p_type {
    margin: 16px 0;
}

#shampoo01_top .p_14 {
    font-weight: 300;
    padding-bottom: 16px;
}

#shampoo01_top p.price {
    width: 100%;
    padding: 0 16px 16px 0;
}

#sub_flex {
    gap: 0;
    padding: 16px;
}

p.subscription {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: sans-serif;
    padding:  0;
    width: 50%;
}

#shampoo01_top p#subscription_price {
    width: 50%;
    padding: 0;
}

select {
    line-height: 50px;
    height: 50px;
    width: 60px;
    text-align: center;
    border: 1px solid #806C68;
    font-size: 1.8rem;
}

option {
    text-align: center;
}

.flex p.more {
    margin: 0;
    background-color: #464646;
    width: 70%;
    justify-content: space-between;
    border: none;
}

.flex p.more a:hover {
    background-color: #87A77D;
}

.flex p.more a {
    color: #fff;
}

#detail {
    padding-bottom: 0;
}

#detail h2,#user_voice h2 {
    width: 100%;
    background-color: #806C68;
    color: #fff;
    padding: 0;
    font-size: 2.0rem;
    line-height: 2;
    text-align: start;
    padding-left: 32px;
    margin-bottom: 32px;
}

.detail_img img {
    display: block;
    width: 30%;
    height: auto;
    border-radius: 50%;
}

.detail_img {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

#detail .flex {
    padding-bottom: 32px;
    border-bottom: 1px solid;
}

#detail .flex:last-child {
    width: 80%;
    border: none;
    padding: 0;
    justify-content: normal;
    gap: 16px;
}

#detail .flex:last-child .p_14 {
    width: 350px;
}

h3 {
    margin-top: 16px;
}
    
.p_14 span {
    margin-right: 16px ;
    font-weight: 500;
}

div.voice {
    width: calc(33% - 32px);
}

#user_voice .flex {
    align-items: flex-start;
}



.star {
    color: #d8d885;
    font-size: 3.2rem;
    text-align: center;
}

/* ================================================メディアクエリ */

@media screen and (max-width: 768px){
    h1 {
        width: 150px;
    }

    #header_left {
        display: none;
    }

    #header_right img {
        width: 30px;
        height: auto;
    }

    .hamburger-menu {
        width: 24px;
        height: 18px;
        position: relative;
        border: none;
        background: transparent;
        appearance: none;
        padding: 4px;
        cursor: pointer;
      }
      .hamburger-menu__bar {
        display: inline-block;
        width: 100%;
        height: 2px;
        background: #464646;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: .5s;
      }
      .hamburger-menu__bar:first-child {
        top: 0;
      }
      .hamburger-menu__bar:nth-child(2) {
        top: 8px;
      }
      .hamburger-menu__bar:last-child {
        top: 16px;
      }
      .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
      }
      .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
      }
      .hamburger-menu--open .hamburger-menu__bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
      }
      .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
        display: none;
      }

      /* ul#header_right {
        gap: 8px;
      } */

      #header nav {
        width: 100%;
      }
      
      #nav_sp {
        display: none;
        background: #806C68;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        z-index: 9999;
      }

      #nav_sp ul {
    display: block;
    text-align: center;
    width: 100%;
       }

      .navigation__list {
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .navigation__list-item {
        border-bottom: solid 1px #474747;
      }
      .navigation__list-item:first-child {
        border-top: solid 1px #474747;
      }
      .navigation__link {
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        display: block;
        padding: 24px 0;
        transition: .5s;
      }
      @media (hover: hover) and (pointer: fine) {
        .navigation__link:hover {
          background: #333;
        }
      }
      
    #store .flex {
        flex-direction: column-reverse
    } 

    #store_left,#store_right {
        width: 100%;
    }

    ul.footer_nav {
        flex-direction: column;
        gap: 32px;
    }

    ul.footer_nav li {
        width: 100%;
    }

    div.small_nav ul {
        gap: 16px;
    }

    #shampoo01 .shampoo01_top_flex {
        display: block;
    }

    #shampoo01_top,#shampoo01 .slickimg {
        width: 95%;
    }

    .breadcrumb {
        display: block;
    }

    .breadcrumb a {
        margin-left: 0;
    }

    #detail .flex {
        display: block;
    }

    #user_voice .flex {
        gap: 32px;
    }

    div.voice {
        width: 100%;
    }

    .detail_img {
        width: 100%;
        margin-top: 32px;
    }

   #brandconsept ul li {
    width: 100%;
    }

    #brandconsept ul {
        gap: 16px;
    }
}

