@charset "UTF-8";
/* CSS (main.css) */
/* ================= contents =================
[0] reset
[1] base
[2] headerArea
[3] contentsArea
[4] footerArea
============================================ */
@import url("./fonts.css");
/* ============================================
0. reset
============================================ */
/* --------------------------------------------------------------------------------
margin padding
-------------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

/* font-family */
body {
  font-family: Tahoma,helvetica,clean,sans-serif; }

/* line-height */
body {
  line-height: 1.45; }

*:first-child + html * {
  letter-spacing: 0; }

/* --------------------------------------------------------------------------------
other
-------------------------------------------------------------------------------- */
ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal; }

img, iframe {
  border: 0; }

img {
  vertical-align: bottom; }

li {
  list-style: none; }

address {
  font-style: normal;
  font-weight: normal; }

/* --------------------------------------------------------------------------------
table form
-------------------------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit; }

th, td {
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: inherit; }

fieldset {
  border: 0; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit; }

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none; }

/* --------------------------------------------------------------------------------
block
-------------------------------------------------------------------------------- */
body {
  text-align: left; }

div, span, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, iframe, form, fieldset, legend, blockquote, input, textarea, p, pre {
  text-align: left; }

div {
  margin: 0;
  padding: 0; }

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto; }

img, a img {
  border: none; }

table {
  letter-spacing: 1px; }

iframe {
  border: none; }

strong {
  font-weight: bold; }

* {
  outline: none; }

/* --------------------------------------------------------------------------------
clearfix
-------------------------------------------------------------------------------- */
.cf_og:after {
  content: "";
  clear: both;
  display: block; }

/* ============================================
 1.base
============================================ */
html, body {
  position: relative;
  width: 100%;
  color: #000;
  letter-spacing: .7px;
  font-size: 12px;
  line-height: 1.6;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  background: #ffffff; }

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  color: #e9d400; }
  a:hover {
    opacity: .7; }

.menu {
  cursor: pointer;
  transition: all 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.menu.active {
  opacity: .6; }

/* ----------- no-js ----------- */
html#no-js #countdown_time {
  display: none; }

#noscriptBlock {
  width: 520px;
  position: absolute;
  top: 27px;
  left: 27px;
  padding: 10px;
  background: #FFFFFF; }

#noscriptBlock p {
  font-size: 14px;
  background: #FDF3F2;
  color: #D72400;
  border: 1px dotted #F4C3BE;
  padding: 6px 10px;
  line-height: 1.4; }

#container {
  z-index: 100;
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

/* ============================================
 header
============================================ */
header {
  position: fixed;
  padding: 0 20px 0;
  height: 68px;
  width: 100%;
  z-index: 1000;
  background: #fff; }
  header a :hover {
    text-decoration: none !important; }
  header .wrapper {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 15px 20px;
    border-bottom: 1px solid #000; }
  header .logo {
    z-index: 100;
    text-align: center; }
    header .logo a {
      display: inline-block;
      width: 150px; }
  header .back_btn {
    cursor: pointer;
    position: absolute;
    transition: all 0.3s ease-out;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    top: 0;
    left: 0; }
    header .back_btn:hover {
      opacity: .7; }
    header .back_btn button {
      height: 68px;
      width: 68px;
      background: url("../images/btn_back.png") no-repeat center;
      background-size: 68px 68px; }

/*-----------------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------------------*/
.menu_button, .menu_button span {
  display: inline-block;
  transition: all .4s; }

.menu_button {
  position: absolute;
  top: 0;
  margin: 22px 0 0;
  width: 30px;
  height: 19px;
  right: 5%; }

.menu_button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 4px; }

.menu_button span:nth-of-type(1) {
  top: 0; }

.menu_button span:nth-of-type(2) {
  top: 8px; }

.menu_button span:nth-of-type(3) {
  bottom: 0; }

/*-----------  active  ------------*/
.menu_button.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg); }

.menu_button.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg); }

.menu_button.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg); }

.menu_button.active span:nth-of-type(3) {
  opacity: 0; }

/*-----------------------------------------------------------------
  gloval navi
------------------------------------------------------------------*/
.dropdown_nav {
  overflow: hidden;
  margin: 0 auto;
  padding: 0 0 0;
  width: 100%;
  background: #fff;
  max-height: 0; }

.dropdown_nav_open {
  max-height: 1000px;
  opacity: 1;
  z-index: 9999;
  position: relative; }

.nav_top li {
  margin: 20px auto; }
  .nav_top li a {
    font-size: 14px;
    font-size: 1.1666666667rem;
    letter-spacing: 1.5px;
    display: block;
    padding: 10px 10px 10px 10px;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    color: #fff; }
    .nav_top li a .fa-external-link-alt {
      font-size: 12px;
      font-size: 1rem; }
    .nav_top li a img {
      width: 130px;
      margin-left: 5px; }

/* ============================================
3.contentsArea
============================================ */
#contentArea {
  padding-top: 68px;
  z-index: 10;
  position: relative;
  top: 0;
  width: 100%; }

.contentAreaInner {
  position: relative;
  top: 0;
  width: 100%;
  overflow-y: hidden;
  z-index: -1; }

.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 20px 20px 0; }

@keyframes scroll {
  0% {
    top: -150%; }
  100% {
    top: 150%; } }
.top_contents {
  padding: 50px 0 40px;
  border-top: 1px solid #000; }
  .top_contents h2 {
    font-family: 'Porter-Bold', Helvetica, Serif;
    font-weight: bold;
    font-size: 28px;
    font-size: 8.75vw;
    line-height: 1;
    letter-spacing: 3px; }
  .top_contents h3 {
    letter-spacing: 3px;
    font-size: 9px;
    font-size: 2.8125vw;
    font-weight: bold;
    margin-bottom: 20px; }

.lineAnim {
  position: relative;
  opacity: 0; }

.upAnim {
  transition: all 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  position: relative;
  transform: translate3d(0, -20px, 0);
  opacity: 0; }

.isShow {
  transform: translate3d(0, -20px, 0);
  opacity: 1; }

.isPlay {
  transition: all 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  position: relative;
  opacity: 1 !important; }

.isPlay:before {
  transition: all 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  animation-name: maskOut;
  animation-duration: .55s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #fff; }

@keyframes play {
  to {
    opacity: 1; } }
@keyframes maskOut {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(100%); } }
.delay1:before {
  animation-delay: .1s; }

.delay2:before {
  animation-delay: .2s; }

.delay3:before {
  animation-delay: .3s; }

.delay4:before {
  animation-delay: .4s; }

.delay5:before {
  animation-delay: .5s; }

.delay6:before {
  animation-delay: .6s; }

.delay7:before {
  animation-delay: .7s; }

.delay8:before {
  animation-delay: .8s; }

.delay9:before {
  animation-delay: .9s; }

body.enter #contentArea {
  padding-top: 0; }
body.enter .wrapper {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
body.enter .intro {
  border-top: none !important;}
  body.enter .intro .tit01 {
    margin-bottom: 6%;
    width: 100%;
    text-align: center; }
  body.enter .intro .tit02 {
    margin-bottom: 8%;
    width: 100%;
    text-align: center; }
  body.enter .intro .btn_enter {
    margin: 20px auto; }
    body.enter .intro .btn_enter a {
      display: block;
      background: #000;
      text-align: center;
      padding: 15px 20px;
      font-family: 'Porter-Bold', Helvetica, Serif;
      font-size: 14px;
      font-size: 4.375vw;
      color: #fff; }
  body.enter .intro .attention {
    margin-top: 25px;
    font-size: 10px;
    font-size: 3.125vw; }

.intro {
  border-top: none !important;}
  .intro .tit01 {
    margin-bottom: 6%;
    width: 60%; }
  .intro .tit02 {
    margin-bottom: 8%;
    width: 80%; }
  .intro .read span {
    font-size: 9px;
    font-size: 2.8125vw;
    font-weight: bold;
    display: inline-block;
    background: #000;
    color: #fff;
    margin: 5px auto; }

.artist {
  padding: 50px 0 60px; }
  .artist h2, .artist h3 {
    z-index: 100; }
  .artist .artist_list {
    margin-top: -70px; }
    .artist .artist_list ul li {
      color: #fff;
      font-size: 10px;
      font-size: 3.125vw;
      text-align: right;
      margin: 5px 0; }
      .artist .artist_list ul li span {
        padding: 0 3px;
        position: relative;
        font-size: 9px;
        font-size: 2.8125vw;
        font-weight: bold;
        display: inline-block;
        background: #000;
        color: #fff;
        margin: 5px auto;
        letter-spacing: 4px; }
      .artist .artist_list ul li span.color {
        padding: 0;
        position: absolute;
        left: -5px;
        margin: 0;
        line-height: 1;
        width: 5px;
        height: 100%; }

.last_order .last_order_box .last_order_wrap {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; }
  .last_order .last_order_box .last_order_wrap .caption {
    font-weight: bold;
    margin-bottom: 5px; }
  .last_order .last_order_box .last_order_wrap .date {
    letter-spacing: 1px;
    background: #000;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-size: 6.25vw; }
    .last_order .last_order_box .last_order_wrap .date small {
      font-weight: bold; }
.last_order .sepa {
  margin: 15px auto -5px;
  text-align: center; }
  .last_order .sepa i {
    transform: rotate(180deg);
    display: inline-block; }

.order .order_info {
  margin-bottom: 25px; }
  .order .order_info span {
    font-size: 9px;
    font-size: 2.8125vw;
    font-weight: bold;
    display: inline-block;
    background: #000;
    color: #fff;
    margin: 5px auto; }
.order .order_wrap {
  display: flex;
  margin: 0 0 0 -10px; }
  .order .order_wrap .order_btn {
    margin: 0 0 0 9px;
    width: 50%; }
    .order .order_wrap .order_btn input {
      width: 100%; }
    .order .order_wrap .order_btn:last-child input {
      width: 100%;
      left: 10px; }

/*---------------- content base ---------------*/
.btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  transition: all 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  cursor: pointer; }
  .btn:hover {
    opacity: .7; }
  .btn a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 10px 10px;
    text-align: center;
    letter-spacing: 3px;
    font-size: 12px;
    font-size: 3.75vw; }
  .btn span {
    font-family: 'Porter-Bold', Helvetica, Serif;
    font-size: 14px;
    font-size: 4.375vw;
    line-height: 1.3; }
  .btn.to-top {
    background: #000; }
  .btn.tweet {
    background: #0096FF; }
  .btn.submit {
    width: 100%;
    display: block;
    color: #fff;
    margin: 20px auto;
    padding: 10px 10px;
    text-align: center;
    font-size: 10px;
    font-size: 3.125vw;
    background: #FF7D6A; }

.liqueur_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid #000; }
  .liqueur_list .liqueur_wrap {
    position: relative;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center; }
    .liqueur_list .liqueur_wrap input {
      border: none;
      display: inline-block;
      width: 90%;
      background-color: transparent;
      min-height: 100px;
      margin: 8px 0;
      outline: none;
      text-indent: -10000em; }
    .liqueur_list .liqueur_wrap.unc.select {
      background: #ff8c52; }
    .liqueur_list .liqueur_wrap.unc input {
      background: url(../images/liqueur/liqueur1_unc.png) no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.araki.select {
      background: #ff7d6a; }
    .liqueur_list .liqueur_wrap.araki input {
      background: url("../images/liqueur/liqueur2_araki.png") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.shuzu.select {
      background: #a79cff; }
    .liqueur_list .liqueur_wrap.shuzu input {
      background: url("../images/liqueur/liqueur3_shuzu.png") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.kradness.select {
      background: #ffdd78; }
    .liqueur_list .liqueur_wrap.kradness input {
      background: url("../images/liqueur/liqueur4_kradness.png") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.senra.select {
      background: #ffff91; }
    .liqueur_list .liqueur_wrap.senra input {
      background: url("../images/liqueur/liqueur5_senra.png?191212?191212") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.soraru.select {
      background: #80beff; }
    .liqueur_list .liqueur_wrap.soraru input {
      background: url("../images/liqueur/liqueur6_soraru.png") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.nqrse.select {
      background: #ffc2d5; }
    .liqueur_list .liqueur_wrap.nqrse input {
      background: url("../images/liqueur/liqueur7_nqrse.png") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.mafumafu.select {
      background: #ffe2ff; }
    .liqueur_list .liqueur_wrap.mafumafu input {
      background: url("../images/liqueur/liqueur8_mafuafu.png") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.meichan.select {
      background: #ffcd7c; }
    .liqueur_list .liqueur_wrap.meichan input {
      background: url("../images/liqueur/liqueur9_meichan.png") no-repeat transparent center;
      background-size: contain; }
    .liqueur_list .liqueur_wrap.luz.select {
      background: #cccccc; }
    .liqueur_list .liqueur_wrap.luz input {
      background: url("../images/liqueur/liqueur10_luz.png") no-repeat transparent center;
      background-size: contain; }
  .liqueur_list .liqueur_btn {
    display: inline-block;
    max-width: 100%;
    transition: all 0.3s ease-out;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    cursor: pointer; }
    .liqueur_list .liqueur_btn:hover {
      opacity: .7; }

.line-top {
  position: absolute;
  width: 90%;
  height: 1px;
  left: 5%;
  top: 0;
  background: #000; }

.line-left {
  position: absolute;
  height: 90%;
  width: 1px;
  top: 5%;
  left: 0;
  background: #000; }

.line-right {
  position: absolute;
  height: 90%;
  width: 1px;
  top: 5%;
  right: 0;
  background: #000; }

.line-bottom {
  position: absolute;
  width: 90%;
  height: 1px;
  left: 5%;
  bottom: 0;
  background: #000; }

.pagetit {
  position: relative;
  margin-bottom: 20px; }
  .pagetit h2 {
    padding-top: 15px;
    width: 85%;
    margin-bottom: 18px; }
  .pagetit .num {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%; }
  .pagetit h3 {
    margin: 0 0 10px; }
    .pagetit h3 span {
      font-size: 15px;
      font-size: 4.6875vw;
      letter-spacing: 3px;
      line-height: 0.9;
      font-weight: bold;
      display: inline-block;
      background: #000;
      color: #fff; }
  .pagetit p {
    letter-spacing: 1.5px;
    font-weight: bold;
    font-size: 10px;
    font-size: 3.125vw;
    text-align: left; }

.choice_box {
  display: flex; }
  .choice_box .choice_area {
    width: 50%; }
    .choice_box .choice_area p {
      text-align: center;
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 8px;
      font-size: 2.5vw; }
    .choice_box .choice_area .name {
      position: relative;
      min-height: 4rem;
      padding: 15px 0;
      display: flex;
      justify-content: center;
      align-items: center; }
      .choice_box .choice_area .name p {
        margin: 0;
        font-size: 14px;
        font-size: 4.375vw;
        font-weight: bold; }
      .choice_box .choice_area .name .line-top {
        position: absolute;
        width: 90%;
        height: 1px;
        left: 5%;
        top: 0;
        background: #000; }
      .choice_box .choice_area .name .line-left {
        position: absolute;
        height: 90%;
        width: 1px;
        right: 5%;
        left: 0;
        background: #000; }
      .choice_box .choice_area .name .line-right {
        position: absolute;
        height: 90%;
        width: 1px;
        top: 5%;
        right: 0;
        background: #000; }
      .choice_box .choice_area .name .line-bottom {
        position: absolute;
        width: 90%;
        height: 1px;
        left: 5%;
        bottom: 0;
        background: #000; }
  .choice_box.trio .choice_area {
    width: 33.33%; }
    .choice_box.trio .choice_area p {
      text-align: center;
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 8px;
      font-size: 2.5vw; }
    .choice_box.trio .choice_area .name {
      position: relative;
      min-height: 4rem;
      padding: 15px 0;
      display: flex;
      justify-content: center;
      align-items: center; }
      .choice_box.trio .choice_area .name p {
        margin: 0;
        font-size: 12px;
        font-size: 3.75vw;
        font-weight: bold; }
      .choice_box.trio .choice_area .name .line-top {
        position: absolute;
        width: 90%;
        height: 1px;
        left: 5%;
        top: 0;
        background: #000; }
      .choice_box.trio .choice_area .name .line-left {
        position: absolute;
        height: 90%;
        width: 1px;
        right: 5%;
        left: 0;
        background: #000; }
      .choice_box.trio .choice_area .name .line-right {
        position: absolute;
        height: 90%;
        width: 1px;
        top: 5%;
        right: 0;
        background: #000; }
      .choice_box.trio .choice_area .name .line-bottom {
        position: absolute;
        width: 90%;
        height: 1px;
        left: 5%;
        bottom: 0;
        background: #000; }

.grass .grass_img {
  margin: 40px auto;
  position: relative;
  width: 150px;
  height: 139px;
  background-size: 150px 139px; }
  .grass .grass_img img {
    position: absolute;
    top: 0; }
  .grass .grass_img .grass_order01 {
    position: absolute;
    top: 33px;
    left: 38px;
    border-top: 30px solid transparent;
    border-right: 37px solid transparent;
    border-left: 37px solid transparent; }
  .grass .grass_img .grass_order02 {
    top: 0;
    border-top: 32px solid transparent;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent; }
  .grass .grass_img.trio .grass_order01 {
    position: absolute;
    top: 41px;
    left: 48px;
    border-top: 24px solid transparent;
    border-right: 27px solid transparent;
    border-left: 27px solid transparent; }
  .grass .grass_img.trio .grass_order02 {
    position: absolute;
    top: 24px;
    left: 28px;
    border-top: 35px solid transparent;
    border-right: 47px solid transparent;
    border-left: 47px solid transparent; }
  .grass .grass_img.trio .grass_order03 {
    top: 0;
    border-top: 32px solid transparent;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent; }
.grass.finish .grass_img {
  margin: 40px auto;
  position: relative;
  width: 250px;
  height: 231px;
  background-size: 250px 231px; }
  .grass.finish .grass_img img {
    position: absolute;
    top: 0; }
  .grass.finish .grass_img .grass_order01 {
    position: absolute;
    top: 55px;
    left: 66px;
    border-top: 60px solid transparent;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent; }
  .grass.finish .grass_img .grass_order02 {
    top: 0;
    border-top: 53px solid transparent;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent; }
.grass.finish .trio .grass_order01 {
  position: absolute;
  top: 68px;
  left: 74px;
  border-top: 50px solid transparent;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent; }
.grass.finish .trio .grass_order02 {
  position: absolute;
  top: 39px;
  left: 41px;
  border-top: 56px solid transparent;
  border-right: 85px solid transparent;
  border-left: 85px solid transparent; }
.grass.finish .trio .grass_order03 {
  top: 0;
  border-top: 42px solid transparent;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent; }

.triangle {
  border-top: 50px solid #fff;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent; }

.error P {
  margin: 150px auto;
  text-align: center;
  font-size: 14px;
  font-size: 4.375vw;
  font-weight: bold; }

/* ============================================
 4.footerArea
============================================ */
footer {
  border-top: 1px solid #000;
  position: relative;
  padding: 20px 0;
  margin: 15px 20px 0; }
  footer .copyrights {
    text-align: center;
    font-size: 10px;
    font-size: 0.8333333333rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 5px;
    color: #000; }

.no_pc {
  display: none; }

.no_sp {
  display: inline; }

/* ============================================
 4.loading
============================================ */
@keyframes gradientBG {
  0% {
    background-position: 0% 100%; }
  50% {
    background-position: 100% 0; }
  100% {
    background-position: 0% 100%; } }
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 10000;
  height: 100vh;
  background: #fff; }
  #loading.active .loading_bg {
    opacity: 0; }
  #loading .copy {
    margin: 20px auto 0;
    padding: 5px;
    text-align: center; }
    #loading .copy p {
      letter-spacing: 5px;
      font-weight: bold;
      color: #fff;
      display: inline-block;
      border: solid 2px #fff;
      border-top: none;
      padding: 0 5px 5px 10px;
      font-size: 10px;
      font-size: 0.8333333333rem; }
  #loading .loading_logo {
    position: absolute;
    width: 180px;
    left: 50%;
    top: 50%;
    margin-top: -120px;
    margin-left: -90px; }
  #loading .loading_bg {
    transition: all 1.8s ease-out;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: url("../images/bg_loading.jpg") no-repeat center;
    background-size: 150% 150%;
    animation: gradientBG 13s ease infinite; }

@media screen and (min-width: 750px) {
  /* ============================================
   header
  ============================================ */
  header {
    position: fixed;
    padding: 0 20px 0;
    height: 68px;
    left: 50%;
    margin-left: -375px;
    width: 750px;
    z-index: 1000;
    background: #fff; }
    header a :hover {
      text-decoration: none !important; }
    header .wrapper {
      width: 100%;
      height: 100%;
      max-width: 750px;
      margin: 0 auto;
      padding: 15px;
      border-bottom: 1px solid #000; }
    header .logo {
      z-index: 100;
      text-align: center; }
      header .logo a {
        display: inline-block;
        width: 150px; }
    header .back_btn {
      position: absolute;
      top: 0;
      left: 20px; }
      header .back_btn button {
        height: 68px;
        width: 68px;
        background: url("../images/btn_back.png") no-repeat center;
        background-size: 68px 68px; }

  body.enter .intro .btn_enter {
    margin: 20px auto; }
    body.enter .intro .btn_enter a {
      display: block;
      background: #000;
      text-align: center;
      padding: 15px 20px;
      font-family: 'Porter-Bold', Helvetica, Serif;
      font-size: 28px;
      font-size: 2.3333333333rem;
      color: #fff; }
  body.enter .intro .attention {
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.1666666667rem; }

  .finish_btn {
    display: flex;
    margin: 0 0 0 -2%; }
    .finish_btn button {
      margin: 0 0 0 2%;
      width: 48%; }

  .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto; }
    .btn a {
      width: 100%;
      display: block;
      color: #fff;
      padding: 10px 10px;
      text-align: center;
      font-size: 16px;
      font-size: 1.3333333333rem; }
    .btn span {
      font-family: 'Porter-Bold', Helvetica, Serif;
      font-size: 24px;
      font-size: 2rem;
      line-height: 1.3; }

  .intro .read span {
    font-size: 16px;
    font-size: 1.3333333333rem; }

  .artist .artist_list ul li span {
    font-size: 18px;
    font-size: 1.5rem; }

  .last_order .last_order_box .last_order_wrap .date {
    font-size: 32px;
    font-size: 2.6666666667rem; }

  .order .order_info span {
    font-size: 16px;
    font-size: 1.3333333333rem; }

  .pagetit {
    position: relative;
    margin-bottom: 20px; }
    .pagetit h2 {
      padding-top: 15px;
      width: 85%;
      margin-bottom: 18px; }
    .pagetit .num {
      position: absolute;
      top: 0;
      right: 0;
      width: 15%; }
    .pagetit h3 {
      margin: 0 0 10px; }
      .pagetit h3 span {
        font-size: 24px;
        font-size: 2rem;
        letter-spacing: 3px;
        line-height: 0.9;
        font-weight: bold;
        display: inline-block;
        background: #000;
        color: #fff; }
    .pagetit p {
      letter-spacing: 1.5px;
      font-weight: bold;
      font-size: 18px;
      font-size: 1.5rem;
      text-align: left; }

  .choice_box.trio .choice_area p,
  .choice_box.trio .choice_area .name p {
    font-size: 18px;
    font-size: 1.5rem; }

  .error P {
    font-size: 16px;
    font-size: 1.3333333333rem; } }

/*# sourceMappingURL=main.css.map */
