@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/haikei.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: -13%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
  .main_area {
    width: 95%;
    top: 5%;
  }
}

h1 {
  width: 45%;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 上下のアニメーション*/
}

@media screen and (max-width: 750px) {
  h1 {
    width: 88%;
    top: 15%;
  }
}

h1 .slide-in {
  overflow: hidden;
  display: block;
}

h1 .slide-in_inner {
  display: 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 {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            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 {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

h1 span.sub_title {
  display: block;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-top: -25px;
}

@media screen and (max-width: 750px) {
  h1 span.sub_title {
    font-size: 12px;
    margin-top: -10px;
  }
}

p.read {
  font-size: 13px;
  margin-top: 50px;
  text-align: center;
  line-height: 4em;
}

@media screen and (max-width: 750px) {
  p.read {
    width: 90%;
    font-size: 12px;
    margin: 30px auto 0;
    text-align: left;
    line-height: 2.5em;
  }
}

.box_color {
  background-color: #f8f8f7;
}

#item_section {
  text-align: center;
  margin: 80px auto 0;
  max-width: 1080px;
  padding-top: 100px;
  padding-bottom: 25px;
}

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

h2 {
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h2 span {
  width: 16%;
  padding: 0 4%;
}

@media screen and (max-width: 750px) {
  h2 span {
    width: 20%;
    padding: 0 1%;
  }
}

@media screen and (max-width: 750px) {
  h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

h2 span {
  display: inline-block;
  font-family: YuMincho, 'Yu Mincho', serif;
}

span.border {
  width: 80px;
  height: 2px;
  background-color: #cccccc;
  margin: 0 auto 100px;
  display: block;
}

@media screen and (max-width: 750px) {
  span.border {
    margin: 0 auto 60px;
  }
}

.item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* width: calc(100% + 56px); */
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}

.item_wrap .item {
  width: 23%;
  padding-bottom: 100px;
}

@media screen and (max-width: 750px) {
  .item_wrap .item {
    width: 50%;
    padding-bottom: 60px;
  }
}

.item_wrap .item:nth-child(10) a.pt {
  margin-top: 10px;
}

.item_wrap .item_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 3px;
}

@media screen and (max-width: 750px) {
  .item_wrap .item_number {
    margin-bottom: 10px;
  }
}

.item_wrap .alpha {
  height: 32px;
}

.item_wrap .alpha img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  width: auto;
  max-width: none;
}

@media screen and (max-width: 750px) {
  .item_wrap .alpha img {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.item_wrap a.spec {
  display: block;
}

.item_wrap a.spec:hover p.buy {
  color: #fff;
  background-color: #222;
}

.item_wrap .border {
  padding: 10px 34px 0;
}

@media screen and (max-width: 750px) {
  .item_wrap .border {
    padding: 10px 25px 0;
  }
}

.item_wrap p.price {
  font-size: 15px;
  padding-bottom: 10px;
  line-height: 1.5em;
}

.item_wrap p.price span {
  font-size: 12px;
}

.item_wrap p.buy {
  font-size: 12px;
  text-align: center;
  padding: 4px;
  border: 1px solid;
  width: 50%;
  margin: auto;
}

.item_wrap p.detail {
  text-align: left;
  letter-spacing: 0.08em;
  padding-top: 10px;
}

.item_wrap .sale .price {
  color: #d20101;
}

.item_wrap .sale .buy {
  color: #d20101;
}

.item_wrap .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;
  -webkit-transform: translateY(100%);
          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 {
    width: 50px;
    height: 27px;
    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;
  }
}

.illust {
  width: 100%;
  padding-bottom: 65px;
}

.illust .cart {
  width: 45%;
  float: right;
  margin-top: -100px;
}

@media screen and (max-width: 750px) {
  .illust .cart {
    width: 85%;
    margin-top: 0px;
  }
}

@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;
}

.box_code {
  background-color: #ffffff;
}

#code_section {
  text-align: center;
  margin: 0 auto;
  max-width: 1080px;
  padding-top: 100px;
  padding-bottom: 25px;
}

@media screen and (max-width: 750px) {
  #code_section {
    width: 100%;
    padding-top: 80px;
  }
}

.code_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* justify-content: center; */
}

@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: 50%;
  }
}

.code_wrap .item-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      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;
  }
}

.code_wrap .alpha img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  width: auto;
  max-width: none;
}

@media screen and (max-width: 750px) {
  .code_wrap .alpha img {
    -webkit-transform: scale(0.55);
            transform: scale(0.55);
  }
}

.code_wrap .plus {
  -webkit-transform: translateX(35%);
          transform: translateX(35%);
}

.code_wrap .spec a {
  text-decoration: underline;
}

.code_wrap .spec a:hover {
  text-decoration: none;
}

.code_wrap .spec .price {
  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 .price {
    font-size: 12px;
  }
}

.code_wrap .spec .sale {
  color: #d20101;
}

.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; */
}

.code_wrap .sale p {
  color: #d20101;
}

footer {
  margin-bottom: 30px;
}

footer .f_inner {
  text-align: center;
}

footer .btn a {
  width: 460px;
  margin: 100px auto 0;
  font-size: 17px;
  padding: 20px;
  border: 1px solid;
  color: #d52222;
  line-height: 40px;
}

@media screen and (max-width: 750px) {
  footer .btn a {
    width: 70%;
    padding: 15px;
  }
}

footer .btn a:hover {
  color: #fff;
  background-color: #d52222;
}

footer .coming {
  width: 30%;
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 100px;
}

@media screen and (max-width: 750px) {
  footer .coming {
    width: 75%;
  }
}

footer .logo {
  width: 13%;
  margin: 0 auto;
  padding-bottom: 5px;
}

@media screen and (max-width: 750px) {
  footer .logo {
    width: 45%;
    padding-top: 50px;
  }
}
/*# sourceMappingURL=style.css.map */