@charset "utf-8";
/*============= 【base】 ==============*/
html {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'sans-serif';
  font-size: calc(14px + ((1vw - 3.2px) * 0.42));
  line-height: 1.5;
  color: #111;
}

* {
  margin: 0 auto;
  padding: 0;
  word-break: break-all;
  list-style-type: none;
  border-style: none;
  font-style: normal;
}

*, *::before, *::after {
  box-sizing: inherit;
}

.header-logo {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  max-width: 500px;
  width: 100%;
  filter: drop-shadow(#f5f5f5 3px 3px 18px);
  pointer-events: none;
}

header {
  min-height: 40vw;
  background: #ccc;
  position: relative;
}

header figure {
  position: absolute;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 325px;
}

nav {
  position: fixed;
  z-index: 2000;
  padding: 10px;
  width: 100%;
}

nav img {
  width: 40%;
  margin: 5px;
  max-width: 135px;
}

header img.pc {
  display: none;
}

header img.sp {
  display: block;
}

.slick-prev, .slick-next {
  display: none !important;
}

header img {
  width: 100%;
}

h1 {
  position: unset;
  font-size: calc(24px + ((1vw - 3.2px) * 1.67));
  text-align: center;
  transform: translate(0, 0);
}

h1 span {
  font-size: calc(16px + ((1vw - 3.2px) * .42));
}

h1:after {
  content: "";
  display: block;
  min-width: 40px;
  width: 6%;
  height: 4px;
  margin: calc(16px + ((1vw - 3.2px) * 0.83)) auto 0;
  background: #111111;
  border-radius: 4em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

.lum-lightbox.lum-open {
  z-index: 2000 !important;
}

main > section:nth-child(even) {
  background: #ffffff;
}

main > section:nth-child(odd) {
  background: #f5f5f5;
}

.content-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(32px + ((1vw - 3.2px) * 3.33)) calc(16px + ((1vw - 3.2px) * 1.67));
}

.content-wrap > *:not(:last-child) {
  margin-bottom: calc(32px + ((1vw - 3.2px) * 3.33));
}

#introduction .content-wrap > h2 span {
  font-size: 100%;
  padding-left: 0;
}

.content-wrap > h2 {
  padding-bottom: 4px;
  font-size: calc(20px + ((1vw - 3.2px) * 1.25));
  text-align: center;
}

.content-wrap > h2 span {
  padding-left: .5em;
  font-size: 50%;
}

.popup {
  display: block;
}

.link {
  color: #0083c7;
}

.list {
  padding-left: 1em;
  text-indent: -1em;
}

.btn {
  display: block;
  padding: 8px;
  border-radius: 4px;
  font-size: 90%;
  text-align: center;
  color: #fff;
  background: #c70012;
}

rb {
  margin-top: -10px;
}

.d-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

.brsp {
  display: block;
}

.brpc {
  display: none;
}

/*============= 【NAV-MENU】 ==============*/
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.menubtn {
  position: absolute; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin: 0;
  right: 0;
  top: 0;
}

/*ボタン内側*/
.menubtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #cc131d;
  z-index: 2000;
}

.menubtn span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.menubtn span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}

.menubtn span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/
.menubtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.menubtn.active span:nth-of-type(2) {
  opacity: 0;
}

.menubtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/*========= レイアウトのためのCSS ===============*/
nav a {
  color: #333;
  text-decoration: none;
}

.lead {
  margin: 20px 0 0 0;
}

.btn-block {
  width: 200px;
  padding: 30px;
}

.nav-menu {
  width: 100vw;
  height: 100vh;
}

.menubtn .nav-menu {
  position: absolute;
  right: 2000px;
}

.menubtn.active .nav-menu {
  top: 0%;
  right: 0;
  transition: 0.5s;
}

.menubtn.active .nav-menu ul {
  background: #fff;
  height: 100vh;
  padding: 130px 0;
}

.menubtn.active .nav-menu li {
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 18px;
}

/*============= 【NAV-MENU】 ==============*/
/*============= 【sns】 ==============*/
.sns-wrap {
  width: 70%;
  max-width: 240px;
}

.sns-icon {
  width: 25%;
}

/*============= 【store】 ==============*/
.store-wrap {
  align-items: flex-start;
  margin: -4px;
}

.store, .store-txt {
  padding: 4px;
}

.store {
  width: 50%;
  margin: 0;
}

.store-img {
  border-radius: 4px;
}

.store-txt {
  font-size: calc(10px + ((1vw - 3.2px) * 0.42));
  color: #000000;
}

.store-info {
  display: inline-block;
  position: relative;
  float: right;
  font-size: 90%;
}

.store-info:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #000;
}

/*============= 【footer】 ==============*/
footer {
  position: relative;
  height: 10vh;
}

.footer-logo, .footer-pagetop {
  position: absolute;
  top: 50%;
}

.footer-logo {
  left: 50%;
  transform: translate(-50%, -50%);
  height: 60%;
}

.footer-pagetop {
  right: 5vw;
  transform: translateY(-40%);
  width: calc(32px + ((1vw - 3.2px) * 0.83));
  color: #c70012;
}

/*============= 【action】 ==============*/
.link:hover {
  filter: hue-rotate(180deg);
}

.store:hover .store-info:after {
  transition: .3s ease-in-out;
  width: 100%;
}

.store:hover .store-img, .sns-icon:hover {
  transition: .3s ease-in-out;
  filter: brightness(.7);
}

/*============= 【intro】 ==============*/
#introduction h2, #introduction p {
  text-align: center;
  font-weight: 600;
  letter-spacing: .007em;
  font-size: 24px;
  line-height: 1.6em;
}

/*============= 【LINEUP】 ==============*/
.color-lineup-box {
  position: relative;
}

.color-menu {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 560px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.color-icon {
  content: "";
  width: 37px;
  height: 37px;
  border-radius: 4em;
  border: solid 1px #22222250;
  z-index: 0;
}

.color-icon:hover {
  cursor: pointer;
}

.color-icon.show {
  border: 2px solid #868686;
  transition: 0.2s;
  width: 42px;
  height: 42px;
}

.color-icon.gr {
  background: rgb(80, 143, 27);
  background: linear-gradient(45deg, rgba(80, 143, 27, 1) 50%, rgba(126, 181, 80, 1) 50%);
  position: relative;
}

.color-icon.rd {
  background: rgb(195, 13, 15);
  background: linear-gradient(45deg, rgba(195, 13, 15, 1) 50%, rgba(217, 57, 59, 1) 50%);
  position: relative;
}

.color-icon.wh {
  background: rgb(245, 245, 245);
  background: linear-gradient(45deg, rgba(245, 245, 245, 1) 50%, rgba(195, 13, 15, 1) 50%, rgba(255, 255, 255, 1) 50%);
  position: relative;
}

.color-icon.bl {
  background: rgb(11, 84, 180);
  background: linear-gradient(45deg, rgba(11, 84, 180, 1) 50%, rgba(84, 158, 255, 1) 50%);
  position: relative;
}

.color-icon.yl {
  background: #D5D500;
  background: rgb(213, 213, 0);
  background: linear-gradient(45deg, rgba(213, 213, 0, 1) 50%, rgba(236, 236, 51, 1) 50%);
  position: relative;
}

.color-icon.pl {
  background: rgb(156, 0, 185);
  background: linear-gradient(45deg, rgba(156, 0, 185, 1) 50%, rgba(218, 100, 240, 1) 50%);
  position: relative;
}

.lineup-content {
  display: none;
}

.lineup-img-wrap {
  margin-bottom: 115px;
}

.lineup-content.show {
  display: block;
  animation: appear .5s ease;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}

.main-img,.sub-img-wrap {
  width: 100%;
}

.main-img {
  background: #f5f5f5;
  margin-bottom: 5px;
  border-radius: 4px;
}

.sub-img {
  width: 50%;
}

.sub-img:first-of-type {
  padding: 5px 5px 5px 0;
}

.sub-img:last-of-type {
  padding: 5px 0px 5px 5px;
}

.sub-img img {
  background: #f5f5f5;
  border-radius: 4px;
}

.lineup-cap-wrap {
  text-align: center;
}

.lineup-cap-wrap h3, .lineup-cap-wrap p {
  margin-bottom: 30px;
}

.lineup-cap-wrap h3 {
  position: relative;
  font-size: 150%;
  letter-spacing: 2px;
  font-weight: 700;
}

.price {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 120%;
  color: #c00;
}

.price span {
  font-size: 135%;
}

.buy-btn {
  background: #c00;
  max-width: 320px;
  padding: 10px;
  border-radius: 4em;
  color: #ffffff;
  display: block;
}

.feature-wrap img {
  margin-bottom: 30px;
  border: solid 5px #ffffff;
}

.subcaption {
  font-size: 80%;
}

.color-icon.show p {
  display: block;
  position: absolute;
  top: 140%;
  left: 62%;
  transform: translate(-50%, -50%);
}

.color-icon p {
  display: none;
  width: 100%;
  color: #000;
}

/*============= 【media query】 ==============*/
@media (min-width:375px) {
  .color-menu {
    top: 650px;
  }

}

@media (min-width:390px) {
  .color-menu {
    top: 680px;
  }

}

@media (min-width:414px) {
  .color-menu {
    top: 730px;
  }

}

@media (min-width:450px) {
  .color-menu {
    width: 70px;
    top: 300px;
    left: 25px;
  }

  .color-icon.show p {
    left: 55px;
    top: 16px;
  }

  .color-icon {
    margin-bottom: 10px;
  }

  .color-icon.show {
    width: 37px;
    height: 37px;
  }

}

@media (min-width:640px) {
  header img.pc,.brpc {
    display: block;
  }

  header img.sp,.brsp {
    display: none;
  }

  .color-menu {
    top: 200px;
    width: 30px;
    left: 25px;
  }

  .color-icon {
    width: 30px;
    height: 30px
  }

  .color-icon.show {
    width: 30px;
    height: 30px
  }

  .main-img, .sub-img-wrap {
    width: 48%;
    margin: 1%;
  }

  .sub-img {
    width: 100%;
  }

  .sub-img:first-of-type {
    padding: 5px;
  }

  .sub-img:last-of-type {
    padding: 5px;
  }

  .lineup-img-wrap {
    margin-bottom: 100px;
  }

  .feature-wrap img, .feature-wrap p {
    width: 50%;
    padding: 5px;
  }

  .color-icon.show p {
    left: 80px;
    width: 100px;
    top: 14px;
  }

}

@media (min-width:960px) {
  /*============= 【LINEUP】 ==============*/
  .store-wrap {
    margin: -8px;
  }

  .store, .store-txt {
    padding: 8px;
  }

  .store {
    width: 33.3%;
    width: calc(100%/3);
  }

  .color-menu {
    width: 50px;
    left: 42px;
    top: 320px;
  }

  .color-icon {
    width: 37px;
    height: 37px;
  }

  .color-icon.show {
    width: 37px;
    height: 37px;
  }

  .color-icon.show p {
    left: 90px;
    top: 15px;
  }

}

@media (min-width:1280px) {
  #introduction h2 {
    font-size: 40px;
  }

  #introduction p {
    font-size: 32px;
  }

  body {
    font-size: 18px;
  }

  h1 {
    font-size: 40px;
  }

  h1 span {
    font-size: 20px;
  }

  h1:after {
    margin: 20px auto 60px;
  }

  .content-wrap {
    padding: 64px 32px;
  }

  .content-wrap > h2 {
    font-size: 32px;
  }

  .color-menu {
    top: 450px;
    left: 10px;
  }

}
