@charset "utf-8";
/*
header
*/
.header_logo.zindex100 {
  z-index: 100;
}
.header_logo {
  top: 10px;
}
.lineup_header {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #F1F0EC;
  z-index: 2;
}
/* menulist */
.menulist_wrap {
  position: fixed;
  background-color: #F1F0EC;
  width: 100%;
  z-index: 1;
}
.menulist_ttl {
  padding: 1px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: .2em;
}
.menulist_link {
  display: flex;
  gap: 0 5.3vw;
  height: 100%;
  align-items: center;
}
.menulist_link_box {
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.menulist_en {
  font-size: 13px;
  letter-spacing: .2em;
}
.menulist_ja {
  font-size: 11px;
  letter-spacing: .2em;
}
.menulist_ttl {
  border: solid #39261C;
  border-width: 1px 1px 1px;
}
.menulist {
  border: solid #39261C;
  border-width: 0 0 0 1px;
  display: none;
}
.menulist > li {
  border: solid #39261C;
  border-width: 0 1px 1px 0;
  padding: 1px 8vw;
}
.menulist .genre {
  display: none;
}
@media screen and (min-width:768px) { 
  .menulist .genre {
    display: block;
  }
  .menulist_ttl {
    display: none;
  }
  .menulist > li {
    padding: 0;
  }
  .menulist_link {
    padding: 0 1vw;
  }
  .menulist_link_box {
    flex-direction: column;
    gap: 0.2vw;
    align-items: flex-start;
  }
  .menulist_en {
    font-size: clamp( 12px, 1.04vw, 20px);
  }
  .menulist_ja {
    font-size: clamp( 10px, 0.93vw, 18px);
  }
  .menulist {
    border-width: 1px 0 0 1px;
    display: block;
  }
  .menulist_link {
    position: relative;
  }
  .btn_arw {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    width: 1.37vw;
    height: 1.5px;
    background: #39261C;
    transition: all .4s ease-out;
    position: absolute;
    right: 1vw;
  }
  .btn_arw::before {
    content: '';
    width: 0.67vw;
    height: 0.67vw;
    border: 1px solid #39261C;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 0;
    transition: all .4s ease-out;
  }
}
@media screen and (min-width:1200px) { 
  .menulist_link {
    padding: 0 1.56vw;
  }
  .menulist_link_box {
    flex-direction: row;
    gap: 0 1.04vw;
  }
  .btn_arw {
    right: 1.56vw;
  }
  .menulist_link:hover {
    color: #fff;
    background-color: #39261C;
  }
  .menulist_link:hover .btn_arw {
    width: 0.81vw;
    background: #fff;
    
  }
  .menulist_link:hover .btn_arw::before {
    border-color: #fff;
  }
}
/* open */
.menulist_ttl,
.menulist_ttl .menu_arw {
  transition: all .4s ease-out;
}
.menu_arw  {
  fill: #39261C;
}
.menulist_ttl.open .menu_arw {
  fill: #fff;
}
.menulist_ttl.open svg {
  transform: scale(1,-1);
}
.menulist_ttl.open {
  background-color: #39261C;
  color: #fff;
}
/* header height */
.lineup_header  {
  height: 58px;
}
.menulist_wrap {
  top: 58px;
}
.menulist_ttl,
.menulist > li {
  min-height: 30px;
}
main {
  margin-top: calc(58px + 30px);
}
.page_link {
  margin-top: calc((58px + 30px) * -1);
  padding-top: calc(58px + 30px);
}
@media screen and (min-width:1200px) { 
  .lineup_header  {
    height: 5.20vw;
  }
  .menulist_wrap {
    top: 5.20vw;
  }
  .menulist_ttl,
  .menulist > li {
    min-height: 68px;
  }
  main {
    margin-top: calc(5.20vw + 68px);
  }
  .page_link {
    margin-top: calc((5.20vw + 68px) * -1);
    padding-top: calc(5.20vw + 68px);
  }
}
@media screen and (min-width:1920px) { 
  .lineup_header  {
    height: 100px;
  }
  .menulist_wrap {
    top: 100px;
  }
  .menulist_ttl,
  .menulist > li {
    min-height: 68px;
  }
  main {
    margin-top: calc(100px + 68px);
  }
  .page_link {
    margin-top: calc((100px + 68px) * -1);
    padding-top: calc(100px + 68px);
  }
}
/* menuの重なり */
.sec_itemlink {
  position: relative;
  /* z-index: 1; */
  background-color: #F1F0EC;
}
/*
grid
*/
.container {  display: grid;
  grid-template-columns: 1fr 4.5fr 4.5fr;
  /* grid-template-rows: 1fr 1fr; */
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "genre item1 item2"
    "genre item3 item4"
    "genre item5 item6"
    "genre item7 item8";
}
.container2 {
  display: grid; 
  grid-template-columns: 0.1fr .45fr .45fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    "genre item1 item2" 
    "genre item3 item4"; 
}
@media screen and (min-width:768px) { 
  .container {  display: grid;
    grid-template-columns: 0.07fr 0.2325fr 0.2325fr 0.2325fr 0.2325fr;
    grid-template-areas:
      "genre item1 item2 item3 item4"
      "genre item5 item6 item7 item8";
  }
  .container2 {
    grid-template-columns: 0.07fr 0.2325fr 0.2325fr 0.2325fr 0.2325fr; 
    grid-template-areas: 
      "genre item1 item2 item3 item4"; 
  }
  .container3 {
    display: grid; 
    grid-template-columns: 0.07fr 0.2325fr 0.2325fr 0.2325fr 0.2325fr; 
    gap: 0;
    grid-template-areas: 
      "genre item1 item2 item3 item4"; 
  }
}
.genre { grid-area: genre; }
.item1 { grid-area: item1; }
.item2 { grid-area: item2; }
.item3 { grid-area: item3; }
.item4 { grid-area: item4; }
.item5 { grid-area: item5; }
.item6 { grid-area: item6; }
.item7 { grid-area: item7; }
.item8 { grid-area: item8; }
/*
layout
*/
.lineupitem_txt {
  padding: 0 0 clamp( 13px, 1.87vw, 36px);
}
.lineupitem_txt p {
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .1em;
}
.shampoobar .lineupitem_name {
  letter-spacing: 0;
} 
@media screen and (min-width:768px) { 
  .shampoobar .lineupitem_name {
    letter-spacing: .1em;
  } 
}
.lineupitem_name {
  font-size: clamp( 11px, 1.04vw, 20px);
}
.lineupitem_aroma,
.lineupitem_price {
  font-size: clamp( 10px, 0.83vw, 16px);
}
.link_buy{
  width: 60%;
  display: block;
  margin: 0.3em auto 0;
}
.lineupitem_txt .buy{
  color:#FFF;
  letter-spacing: .35em;
  font-size: clamp( 11px, 1.5vw, 14px);
  line-height: 2.2em;
  padding: 0 0 1%;
}
.bg_DC{
  background: #2C391B;
}
.bg_EF{
  background: #380A04;
}
.bg_NL{
  background: #00174E;
}
@media screen and (min-width:768px) { 
  .link_buy{
    width: 50%;
    transition: all 0.3s ease-out;
  }
  .link_buy:hover{
    opacity:.5;
  }
  .lineupitem_txt .buy{
    font-size: clamp( 13px, 1vw, 20px);
    line-height: 2em;
  } 
}
/* lineupitem_img */
.lineupitem_img {
  text-align: center;
  padding: 23px 11.35vw 13px;
}
.shampoobar .lineupitem_img {
  text-align: center;
  padding: 23px 9vw 13px;
}
@media screen and (min-width:768px) { 
  .lineupitem_img {
    text-align: center;
    padding: clamp( 23px, 3.22vw, 62px) 6vw clamp( 13px, 1.87vw, 36px);
  }
  .shampoobar .lineupitem_img {
    text-align: center;
    padding: clamp( 23px, 4.89vw, 94px) 2vw clamp( 13px, 2.13vw, 40px);
  }
}
/* border */
.container_border {
  border: solid #39261C;
  border-width: 1px 0 0 1px;
  margin-top: -1px;
}
.container_border > div {
  border: solid #39261C;
  border-width: 0 1px 1px 0;
}
/* genre_txt */
.genre {
  position: relative;
}
.genre_txt {
  font-size: clamp( 20px, 2.65vw, 50px);
  letter-spacing: .2em;
  transform: translateX(-50%) rotate(180deg);
  writing-mode: tb-rl;
  line-height: 1;
  position: absolute;
  top: 28px;
  left: 50%;
  white-space: nowrap;
}
@media screen and (min-width:768px) { 
  .genre_txt {
    transform: translate(-50%,-50%) rotate(180deg);
    top: 50%;
    left: 50%;
  }
}
/* item_img_tile */
.item_img_tile {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.shampoo .item_img_tile.item4 {
  background-image: url(../images/line_up/lemon.webp);
}
.shampoo .item_img_tile.item5 {
  background-image: url(../images/line_up/chamomile.webp);
}
.treatment .item_img_tile.item4 {
  background-image: url(../images/line_up/orange.webp);
}
.treatment .item_img_tile.item5 {
  background-image: url(../images/line_up/lavender.webp);
}
.shampoobar .item_img_tile.item4 {
  background-image: url(../images/line_up/eucalyptus.webp);
}
.onedaytrial .item_img_tile.item1 {
  background-image: url(../images/line_up/grapefruit.webp);
}