@charset "UTF-8";
/* メディアクエリー用 */
/* webfont設定 */
/* CLEARFIX */
/* 100vhフィット(主にiOSにて) */
/* ホバー時 */
/* 蛍光マーカーを引いたような線 */
/* 中央配置 */
/* 画像をモノクロにする */
/* ANIMATION
--------------------------------------*/
/* カバー画像をスクロール共にフェードさせる */
/* 点滅アニメーション */
/* ふわっとするアニメーション */
/* 画像をホバーすると大きくなる */
/* SVGアニメーション(文字を書いてるような感じ) */
/* ローディング用アニメーション */
/* 線を引くアニメーション */
/* 画像を徐々に出すアニメーション */
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*フォント
---------------------------------------------*/
/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* 
---------------------------------------------*/
html {
  width: 100%;
  height: auto;
}

body {
  font-family: adobe-garamond-pro, -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 11px;
  }
}

a {
  color: #000;
  text-decoration: none;
  display: block;
}

@media screen and (min-width: 751px) {
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .pc_none {
    display: block;
  }
}

@media screen and (min-width: 751px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .sp_none {
    display: none !important;
  }
}

/* CONTENT
--------------------------------------*/
#page {
  overflow: hidden;
  background-image: url(../images/bg_long2.jpg);
  background-size: auto;
  background-repeat: repeat;
}

.box {
  width: 100%;
  height: auto;
  position: relative;
}

.box_in:before {
  content: "";
  display: block;
  padding-top: 49.75%;
}
@media screen and (max-width: 750px) {
  .box_in:before {
    padding-top: 118.75%;
  }
}

.main_area {
  width: 85%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .main_area {
    width: 100%;
    top: 30px;
  }
}

h1 {
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 7%;
  left: 0;
  right: 0;
  /* 上下のアニメーション*/
}
@media screen and (max-width: 750px) {
  h1 {
    top: 6%;
  }
}
h1 .slide-in {
  overflow: hidden;
  display: inline-block;
}
h1 .slide-in_inner {
  display: inline-block;
}
h1 .downAnime {
  opacity: 0; /* 事前に透過0 にして消しておく*/
}
h1 .slideAnimeDownUp {
  -webkit-animation-name: slideTextY100;
          animation-name: slideTextY100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes slideTextY100 {
  from {
    transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextY100 {
  from {
    transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
h1 .slideAnimeUpDown {
  -webkit-animation-name: slideTextY-100;
          animation-name: slideTextY-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes slideTextY-100 {
  from {
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
h1 span.title {
  display: block;
  font-size: 74px;
  line-height: 1.3;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 750px) {
  h1 span.title {
    font-size: 12vw;
    line-height: 1.2em;
  }
}
h1 span.sub_title {
  display: block;
  font-size: 18px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 750px) {
  h1 span.sub_title {
    font-size: 16px;
    margin-top: 0px;
  }
}

p.read {
  font-size: 13px;
  margin-top: 50px;
  padding-bottom: 80px;
  text-align: center;
  line-height: 4em;
}
@media screen and (max-width: 750px) {
  p.read {
    width: 90%;
    margin: -17px auto 0;
    text-align: left;
    line-height: 3vh;
    padding-bottom: 50px;
    font-size: 11px !important;
  }
}

.box_color1 {
  background-color: #f1f1f2;
}

.box_color2 {
  background-color: #fafafa;
}

.box_color3 {
  background-color: #fff;
}

#item_section {
  text-align: center;
  margin: 0 auto;
  max-width: 1080px;
  padding-top: 80px;
  padding-bottom: 25px;
}
@media screen and (max-width: 750px) {
  #item_section {
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
  }
}

h2 {
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  h2 {
    justify-content: space-between;
    margin-right: 10px;
    margin-left: 10px;
  }
}
h2 span {
  width: 14%;
  padding: 0 4%;
}
@media screen and (max-width: 750px) {
  h2 span {
    width: 20%;
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  h2 {
    font-size: 23px;
    margin-bottom: 60px;
  }
}
h2 span {
  display: inline-block;
  font-family: YuMincho, "Yu Mincho", serif;
}

.item_wrap, .item_wrap2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* width: calc(100% + 56px); */
  width: 100%;
}
.item_wrap .item, .item_wrap2 .item {
  width: 33.3%;
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .item_wrap .item, .item_wrap2 .item {
    width: 90%;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 750px) {
  .item_wrap .item:nth-child(4) a, .item_wrap .item:nth-child(5) a, .item_wrap2 .item:nth-child(4) a, .item_wrap2 .item:nth-child(5) a {
    margin-top: -30px;
  }
}
.item_wrap .item_s, .item_wrap2 .item_s {
  width: 24%;
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  .item_wrap .item_s, .item_wrap2 .item_s {
    width: 50%;
  }
}
.item_wrap .item_number, .item_wrap2 .item_number {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 3px;
}
@media screen and (max-width: 750px) {
  .item_wrap .item_number, .item_wrap2 .item_number {
    margin-bottom: 20px;
  }
}
.item_wrap .alpha, .item_wrap2 .alpha {
  height: 32px;
}
.item_wrap .alpha img, .item_wrap2 .alpha img {
  transform: scale(1);
  width: auto;
  max-width: none;
}
.item_wrap a.spec, .item_wrap2 a.spec {
  display: block;
}
.item_wrap a.spec:hover p.buy, .item_wrap2 a.spec:hover p.buy {
  color: #fff;
  background-color: #222;
}
.item_wrap a.spec:hover p.buy.only, .item_wrap2 a.spec:hover p.buy.only {
  background-color: #797979;
  color: #fff;
}
.item_wrap .border, .item_wrap2 .border {
  padding: 10px 34px 0;
}
.item_wrap p.price, .item_wrap2 p.price {
  font-size: 16px;
  padding-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .item_wrap p.price, .item_wrap2 p.price {
    font-size: 14px;
  }
}
.item_wrap p.price span, .item_wrap2 p.price span {
  font-size: 12px;
}
.item_wrap p.price span.brand, .item_wrap2 p.price span.brand {
  font-size: 10px;
}
.item_wrap p.buy, .item_wrap2 p.buy {
  font-size: 13px;
  text-align: center;
  padding: 4px;
  border: 1px solid;
  width: 100%;
  margin: auto;
}
.item_wrap p.buy.only, .item_wrap2 p.buy.only {
  background-color: #797979;
  color: #fff;
}
.item_wrap p.detail, .item_wrap2 p.detail {
  text-align: left;
  letter-spacing: 0.08em;
  padding-top: 10px;
  font-size: 11px;
}
.item_wrap .sale .price, .item_wrap2 .sale .price {
  color: #d20101;
}
.item_wrap .sale .price span, .item_wrap2 .sale .price span {
  color: #000;
}
.item_wrap .sale .price .gray, .item_wrap2 .sale .price .gray {
  color: #797979;
  text-decoration: line-through;
  margin-left: 5px;
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  .item_wrap .sale .price .gray, .item_wrap2 .sale .price .gray {
    font-size: 10px;
  }
}
.item_wrap .sale .item_number::before, .item_wrap2 .sale .item_number::before {
  content: "";
  width: 81px;
  height: 43px;
  background-image: url(../images/ico_sale.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 5px;
  left: 15px;
  transform: translateY(100%);
  -webkit-animation: blink 1.2s ease-in-out infinite alternate;
          animation: blink 1.2s ease-in-out infinite alternate;
}
@media screen and (max-width: 750px) {
  .item_wrap .sale .item_number::before, .item_wrap2 .sale .item_number::before {
    width: 73px;
    height: 46px;
    bottom: -5px;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

.item_wrap2 {
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .item_wrap2 .alpha img {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 750px) {
  .item_wrap2 .sale .item_number::before {
    width: 50px;
    height: 46px;
    bottom: -5px;
  }
}

.illust {
  width: 75%;
  padding-bottom: 65px;
}
@media screen and (max-width: 750px) {
  .illust {
    width: 100%;
    margin: 0 auto;
  }
}
.illust .cart {
  width: 65%;
  float: right;
  margin-top: 200px;
}
@media screen and (max-width: 750px) {
  .illust .cart {
    width: 85%;
    margin-top: -60px;
  }
}
@media screen and (min-width: 751px) {
  .illust .ueki {
    width: 45%;
    float: left;
  }
}
@media screen and (max-width: 750px) {
  .illust .ueki {
    width: 85%;
    margin: 0 auto;
  }
}

span.line {
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  display: block;
}

#code-section {
  text-align: center;
  margin: 0 auto;
  padding-top: 100px;
  width: 1080px;
}
@media screen and (max-width: 750px) {
  #code-section {
    width: 100%;
  }
}

.code_wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .code_wrap {
    width: auto;
  }
}
.code_wrap .item {
  width: 33%;
  /* margin-right: 56px; */
  padding-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .code_wrap .item {
    width: 100%;
  }
}
.code_wrap .item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
  height: 100px;
}
@media screen and (max-width: 750px) {
  .code_wrap .item-number {
    padding: 0 5px;
  }
}
.code_wrap .num {
  padding: 9px 5px 0;
  width: 44px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .code_wrap .num {
    width: 27px;
  }
}
.code_wrap .alpha {
  padding: 9px 1px 0;
  width: 44px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .code_wrap .alpha {
    padding: 9px 1px 0;
    width: 32px;
    padding-left: 0;
    text-align: right;
  }
}
@media screen and (max-width: 750px) {
  .code_wrap .pr9 {
    padding-right: 9px;
  }
}
.code_wrap .alpha img {
  transform: scale(1);
  width: auto;
  max-width: none;
}
@media screen and (max-width: 750px) {
  .code_wrap .alpha img {
    transform: scale(0.68);
  }
}
.code_wrap .alpha .red {
  filter: invert(10%) sepia(55%) saturate(6512%) hue-rotate(358deg) brightness(118%) contrast(112%);
}
.code_wrap .plus {
  transform: translateX(35%);
}
.code_wrap .spec a {
  text-decoration: underline;
}
.code_wrap .spec a:hover {
  text-decoration: none;
}
.code_wrap .spec .sale span {
  color: #d20101;
}
.code_wrap .spec .price {
  font-size: 14px;
  color: #000;
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  padding-bottom: 20px;
}
.code_wrap .spec .price .gray {
  font-size: 12px;
  color: #797979;
  text-decoration: line-through;
  padding-left: 3px;
}
.code_wrap .spec .only {
  color: #797979;
  text-decoration: none;
}
.code_wrap .spec .only span {
  color: #797979;
}
.code_wrap .spec .only .gray {
  text-decoration: none;
}
.code_wrap .spec .only .gray span {
  text-decoration: line-through;
}
.code_wrap .spec a.soon {
  pointer-events: none;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  padding-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .code_wrap .spec a.soon {
    font-size: 12px;
  }
}
.code_wrap .a_soon {
  pointer-events: none;
  /* display: inline-block; */
}

.coming {
  background-color: #fff;
  width: 30%;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 50px;
}
@media screen and (max-width: 750px) {
  .coming {
    width: 75%;
  }
}

footer {
  background-color: #fff;
  padding-bottom: 30px;
}
footer .f_inner {
  text-align: center;
}
footer .logo {
  width: 13%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 5px;
}
@media screen and (max-width: 750px) {
  footer .logo {
    width: 45%;
    padding-top: 40px;
  }
}

.back_txt {
  position: fixed;
  font-size: 15px;
  bottom: 27px;
  right: 5%;
  color: rgb(176, 93, 14);
}
@media screen and (max-width: 750px) {
  .back_txt {
    font-size: 12px;
    bottom: 17px;
    right: 22px;
  }
}

.back_btn {
  position: fixed;
  bottom: 20px;
  right: 5%;
  display: block;
  width: 93px;
  -webkit-animation: arrowmove 2s ease infinite;
          animation: arrowmove 2s ease infinite;
}
@media screen and (max-width: 750px) {
  .back_btn {
    width: 75px;
    right: 10px;
    bottom: 10px;
  }
}
.back_btn img {
  width: 100%;
}

@-webkit-keyframes arrowmove {
  0% {
    right: 4%;
  }
  50% {
    right: 3.4%;
  }
  100% {
    right: 4%;
  }
}

@keyframes arrowmove {
  0% {
    right: 4%;
  }
  50% {
    right: 3.4%;
  }
  100% {
    right: 4%;
  }
}
@media screen and (max-width: 750px) {
  @-webkit-keyframes arrowmove {
    0% {
      right: 3%;
    }
    50% {
      right: 2%;
    }
    100% {
      right: 3%;
    }
  }
  @keyframes arrowmove {
    0% {
      right: 3%;
    }
    50% {
      right: 2%;
    }
    100% {
      right: 3%;
    }
  }
}
#list01 {
  padding: 100px 30px;
}
#list01 h3 {
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #list01 h3 {
    margin-bottom: 20px;
  }
}

div.list ul.category, div.list div.category {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  div.list ul.category, div.list div.category {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  div.list ul.category, div.list div.category {
    max-width: 1000px;
  }
}
div.list ul.category li, div.list ul.category div, div.list div.category li, div.list div.category div {
  box-sizing: border-box;
  text-align: left;
}

@media screen and (min-width: 769px) {
  div.list ul.category li, div.list ul.category div, div.list div.category li, div.list div.category div {
    margin-bottom: 37px;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  div.list ul.category li, div.list ul.category div, div.list div.category li, div.list div.category div {
    margin-bottom: 50px;
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) {
  div.list ul.category li, div.list ul.category div, div.list div.category li, div.list div.category div {
    width: 25%;
    padding: 17px;
  }
  div.list ul.category li p,
div.list ul.category div p,
div.list div.category li p,
div.list div.category div p {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  div.list ul.category li, div.list ul.category div, div.list div.category li, div.list div.category div {
    width: calc(50% - 12px);
  }
  div.list ul.category li p,
div.list ul.category div p,
div.list div.category li p,
div.list div.category div p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  div.list ul.category li:nth-child(odd), div.list ul.category div:nth-child(odd), div.list div.category li:nth-child(odd), div.list div.category div:nth-child(odd) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 768px) {
  div.list ul.category li:nth-child(even), div.list ul.category div:nth-child(even), div.list div.category li:nth-child(even), div.list div.category div:nth-child(even) {
    margin-left: 12px;
  }
}
div.list ul.category li a,
div.list ul.category div a,
div.list div.category li a,
div.list div.category div a {
  text-decoration: none;
}

div.list ul.category li a div, div.list ul.category div a div, div.list div.category li a div, div.list div.category div a div {
  overflow: hidden;
}

div.list ul.category li a img, div.list ul.category div a img, div.list div.category li a img, div.list div.category div a img {
  transition: 1s ease-in-out;
}

@media screen and (min-width: 769px) {
  div.list ul.category li a img, div.list ul.category div a img, div.list div.category li a img, div.list div.category div a img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  div.list ul.category li a img, div.list ul.category div a img, div.list div.category li a img, div.list div.category div a img {
    margin-bottom: 10px;
  }
}
div.list ul.category li a:hover img, div.list ul.category div a:hover img, div.list div.category li a:hover img, div.list div.category div a:hover img {
  opacity: 0.6;
}

div.list ul.category li a p, div.list ul.category div a p, div.list div.category li a p, div.list div.category div a p {
  text-align: center;
  letter-spacing: 1.3px;
  font-size: 0.9em;
  line-height: 1.9;
}

div.list ul.category li a::after, div.list ul.category div a::after, div.list div.category li a::after, div.list div.category div a::after {
  content: "BUY";
  border: 1px solid #a5a4a3;
  display: block;
  width: 50%;
  margin: 20px auto 0;
  line-height: 1;
  padding: 5px 0;
  transition: 1s;
  text-align: center;
}

.category p .tt02,
.category p .text-red {
  color: #E73656 !important;
}

div.list a.categorylist {
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 194px;
  display: block;
  margin: 20px auto;
  background-color: #424242;
  border: 1px solid #000;
  padding: 9px 5px;
  text-decoration: none;
  transition: 0.2s all;
}

@media screen and (max-width: 768px) {
  div.list a.categorylist {
    font-size: 13px;
    width: 80%;
    padding: 10px 5px;
  }
}
div.list a.categorylist:hover {
  background-color: #f1f1f2;
  color: #424242;
  border: 1px solid #000;
}/*# sourceMappingURL=style.css.map */