@charset "UTF-8";
body {
  font-size: 1.6rem;
}

header.move_object:before {
  content: "";
  width: 0;
  max-height: 600px;
  height: 40vw;
  background-color: #000;
  position: absolute;
  right: 0px;
  top: 0;
  z-index: 0;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
header.move_object.active:before {
  width: calc((100% - 1400px) / 2 + 950px);
}
@media screen and (max-width: 768px) {
  header.move_object::before {
    content: none;
  }
}

.keyvisual {
  position: relative;
  padding-right: 30px;
}
.keyvisual img {
  width: 100%;
  max-width: none !important;
}
.keyvisual:after {
  content: "";
  background: url(../img/sctoll_down.png) no-repeat;
  position: absolute;
  right: 0px;
  top: 0;
  width: 14px;
  height: 323px;
  z-index: 255;
}
@media screen and (max-width: 768px) {
  .keyvisual {
    padding-right: 0px;
  }
  .keyvisual:after {
    content: none;
  }
  .keyvisual.inner {
    width: 100% !important;
  }
  .keyvisual p {
    font-size: 1.2rem;
  }
}
.keyvisual .swiper_ui_set {
  margin-top: 50px;
}
.keyvisual .swiper_ui_set .swiper-pagination {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .keyvisual .swiper_ui_set .swiper-pagination {
    text-align: center;
  }
}

.player_name {
  position: relative;
  height: 30vw;
  max-height: 394px;
}
@media screen and (max-width: 768px) {
  .player_name {
    height: 37vw;
    max-height: 394px;
  }
}
.player_name div {
  position: absolute;
  left: 11%;
  width: 80%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .player_name div {
    width: 96%;
    left: 2%;
  }
}
.player_name div img {
  width: 72vw;
  max-width: 987px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .player_name div img {
    width: 90vw;
  }
}
.player_name div.txt_1 {
  top: 10%;
  -webkit-transition: 1000ms ease-in-out 0ms;
  transition: 1000ms ease-in-out 0ms;
}
.player_name div.txt_2 {
  bottom: 10%;
  -webkit-transition: 1000ms ease-in-out 200ms;
  transition: 1000ms ease-in-out 200ms;
}
.about {
  background: url(../img/bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 130px 0;
  margin: 40px 0;
}
.about .inner {
  color: #FFF;
  text-align: center;
}
.about .inner h2 {
  font-size: 40px;
  margin-bottom: 50px;
}
.about .inner div {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about {
    background: url(../img/bg_sp.jpg) no-repeat center center;
  }
  .about .inner h2 {
    font-size: 5vw;
  }
}

.anim_type_wipe {
  clip-path: polygon(1px 0px, 0% 0%, 0% 100%, 0% 100%);
  opacity: 0.1;
  -webkit-transition: 500ms ease-out 0ms;
  transition: 500ms ease-out 0ms;
}
.anim_type_wipe.bg_block {
  clip-path: polygon(1px 0px, 50% 0%, 50% 100%, 0% 100%);
}
.anim_type_wipe.active {
  clip-path: polygon(0 0px, 100% 0%, 100% 100%, 0% 100%);
  opacity: 1;
}
.anim_type_wipe.active.end_action {
  -webkit-transition: 300ms ease-in 0ms;
  transition: 300ms ease-in 0ms;
  clip-path: polygon(100% 0px, 100% 0%, 100% 100%, 100% 100%);
}

.anim_type_wipe_rev {
  clip-path: polygon(99.9% 0%, 100% 0%, 100% 100%, 100% 100%);
  opacity: 0;
  -webkit-transition: 500ms ease-out 500ms;
  transition: 500ms ease-out 500ms;
}
.anim_type_wipe_rev.bg_block {
  clip-path: polygon(70% 0%, 100% 0%, 100% 100%, 70% 100%);
}
.anim_type_wipe_rev.active {
  clip-path: polygon(0 0px, 100% 0%, 100% 100%, 0% 100%);
  opacity: 1;
}

.anim_type_fade_up {
  opacity: 0;
  -webkit-transform: translate3d(0, 200px, 0);
          transform: translate3d(0, 200px, 0);
  -webkit-transition: 1000ms ease-in-out 500ms;
  transition: 1000ms ease-in-out 500ms;
}
@media screen and (max-width: 768px) {
  .anim_type_fade_up {
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
}
.anim_type_fade_up.active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.credits_info {
  background-color: #00488d;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2%;
  -webkit-transition: 500ms ease-out 700ms;
  transition: 500ms ease-out 700ms;
  margin-top: 50px;
}
.credits_info div:nth-child(1) {
  width: 100px;
}
.credits_info div:nth-child(2) {
  width: 50px;
}
.credits_info div:nth-child(3) {
  width: 60px;
}
.credits_info .mr_60 {
  margin-right: 60px;
}
.credits_info .mr_15 {
  margin-right: 30px;
}
.credits_info .mr_30 {
  margin-right: 30px;
}
.credits_info .holo {
  font-weight: 200;
  line-height: 1.2;
  font-size: 90%;
  margin-left: -1.5em;
}
.credits_info .holo span {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .credits_info {
    margin-top: 20px;
  }
  .credits_info div:nth-child(1) {
    width: 60px;
  }
  .credits_info div:nth-child(2) {
    width: 30px;
  }
  .credits_info div:nth-child(3) {
    width: 50px;
  }
  .credits_info .mr_15 {
    margin-right: 7px;
  }
  .credits_info .mr_60 {
    margin-right: 10px;
  }
  .credits_info .holo {
    font-size: 2vw;
    font-weight: 200;
    line-height: 1.2;
    margin-left: 0;
  }
  .credits_info .holo span {
    display: block;
    padding-top: 0.6em;
    line-height: 1.5;
    font-size: 50%;
  }
}

.credit {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .credit {
    font-size: 1.7vw;
  }
}

.rotation_section {
  width: 100%;
  height: 90vw;
  max-height: 1000px;
}
.rotation_section ul {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.rotation_section ul li > * {
  position: absolute;
}
.rotation_section ul li > * img {
  width: 100%;
  pointer-events: none;
}
.rotation_section ul li.scn_1 .obj_1 {
  width: 25%;
  top: 10%;
  z-index: 2;
}
.rotation_section ul li.scn_1 .obj_1.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0);
}
.rotation_section ul li.scn_1 .obj_2 {
  width: 50%;
  left: 30%;
  top: 30%;
  z-index: 2;
}
.rotation_section ul li.scn_1 .obj_2.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(10%, 0, 0);
          transform: translate3d(10%, 0, 0);
}
.rotation_section ul li.scn_1 .obj_3 {
  width: 25%;
  left: 75%;
  top: 15%;
  z-index: 2;
}
.rotation_section ul li.scn_1 .obj_3.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_1 .obj_4 {
  width: 25%;
  left: 15%;
  top: 20%;
  z-index: 0;
}
.rotation_section ul li.scn_1 .obj_4.active {
  -webkit-transition: 7000ms linear;
  transition: 7000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_1 .obj_4 .fill {
  background-color: #00488d;
  width: 40vw;
  height: 60vw;
  max-width: 500px;
  max-height: 500px;
}
.rotation_section ul li.scn_1 .obj_5 {
  width: 25%;
  left: 75%;
  top: 70%;
  z-index: 0;
}
.rotation_section ul li.scn_1 .obj_5.active {
  -webkit-transition: 9000ms linear;
  transition: 9000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_1 .obj_5 .fill {
  background-color: #00488d;
  width: 20vw;
  height: 20vw;
}
.rotation_section ul li.scn_2 .obj_1 {
  width: 30%;
  top: 10%;
  z-index: 2;
}
.rotation_section ul li.scn_2 .obj_1.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0);
}
.rotation_section ul li.scn_2 .obj_2 {
  width: 30%;
  left: 45%;
  top: 20%;
  z-index: 2;
}
.rotation_section ul li.scn_2 .obj_2.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(10%, 0, 0);
          transform: translate3d(10%, 0, 0);
}
.rotation_section ul li.scn_2 .obj_3 {
  width: 25%;
  left: 75%;
  top: 15%;
  z-index: 2;
}
.rotation_section ul li.scn_2 .obj_3.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_2 .obj_4 {
  width: 25%;
  left: 15%;
  top: 35%;
  z-index: 0;
}
.rotation_section ul li.scn_2 .obj_4.active {
  -webkit-transition: 7000ms linear;
  transition: 7000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_2 .obj_4 .fill {
  background-color: #00488d;
  width: 40vw;
  height: 60vw;
  max-width: 500px;
  max-height: 500px;
}
@media screen and (max-width: 768px) {
  .rotation_section ul li.scn_2 .obj_4 .fill {
    height: 30vw;
  }
}
.rotation_section ul li.scn_2 .obj_5 {
  width: 25%;
  left: 65%;
  top: 60%;
  z-index: 0;
}
.rotation_section ul li.scn_2 .obj_5.active {
  -webkit-transition: 9000ms linear;
  transition: 9000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_2 .obj_5 .fill {
  background-color: #00488d;
  width: 20vw;
  height: 20vw;
}
.rotation_section ul li.scn_2 .obj_6 {
  width: 25%;
  left: 4%;
  top: 45%;
  z-index: 0;
}
.rotation_section ul li.scn_2 .obj_6.active {
  -webkit-transition: 9000ms linear;
  transition: 9000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_3 .obj_1 {
  width: 25%;
  top: 10%;
  z-index: 2;
}
.rotation_section ul li.scn_3 .obj_1.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0);
}
.rotation_section ul li.scn_3 .obj_2 {
  width: 35%;
  left: 30%;
  top: 25%;
  z-index: 2;
}
.rotation_section ul li.scn_3 .obj_2.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(10%, 0, 0);
          transform: translate3d(10%, 0, 0);
}
.rotation_section ul li.scn_3 .obj_3 {
  width: 25%;
  left: 75%;
  top: 15%;
  z-index: 2;
}
.rotation_section ul li.scn_3 .obj_3.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_3 .obj_6 {
  width: 35%;
  left: 0%;
  top: 70%;
  z-index: 2;
}
.rotation_section ul li.scn_3 .obj_6.active {
  -webkit-transition: 5000ms linear;
  transition: 5000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_3 .obj_4 {
  width: 25%;
  left: 15%;
  top: 20%;
  z-index: 0;
}
.rotation_section ul li.scn_3 .obj_4.active {
  -webkit-transition: 7000ms linear;
  transition: 7000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_3 .obj_4 .fill {
  background-color: #00488d;
  width: 40vw;
  height: 60vw;
  max-width: 500px;
  max-height: 500px;
}
.rotation_section ul li.scn_3 .obj_5 {
  width: 25%;
  left: 75%;
  top: 70%;
  z-index: 0;
}
.rotation_section ul li.scn_3 .obj_5.active {
  -webkit-transition: 9000ms linear;
  transition: 9000ms linear;
  -webkit-transform: translate3d(40%, 0, 0);
          transform: translate3d(40%, 0, 0);
}
.rotation_section ul li.scn_3 .obj_5 .fill {
  background-color: #00488d;
  width: 20vw;
  height: 20vw;
}

#lineup {
  padding-top: 0px;
}
#lineup h2 {
  position: relative;
}
#lineup h2 span {
  display: block;
  width: 100%;
  height: 273px;
  background: url(../img/lineup_bg.jpg) repeat-x top center;
}
@media screen and (max-width: 768px) {
  #lineup h2 span {
    height: 120px;
    background-size: auto 100%;
  }
}
#lineup h2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
@media screen and (max-width: 768px) {
  #lineup h2 img {
    height: 40px;
  }
}

.product_wrapper {
  position: relative;
  margin-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product_wrapper {
    margin-top: 0cqi;
  }
}
.product_wrapper .selector_ui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 500px;
}
.product_wrapper .selector_ui li {
  border: 3px solid #bebebe;
  margin-right: 10px;
  width: 25%;
}
.product_wrapper .selector_ui li.active {
  border: 3px solid #00488d;
}
@media screen and (max-width: 768px) {
  .product_wrapper .selector_ui {
    width: 70%;
  }
}
.product_wrapper .selector_ui.rev {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.product_wrapper h3 {
  font-size: 4rem;
  margin-bottom: 1.5em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .product_wrapper h3 {
    font-size: 1.8rem;
  }
  .product_wrapper h3.mt_fix {
    margin-bottom: 40px;
  }
}
.product_wrapper:nth-child(odd) .selector_ui {
  margin-left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .product_wrapper:nth-child(odd) .selector_ui {
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0);
  }
}
.product_wrapper:nth-child(odd) .bg_block {
  right: 0;
  top: 0%;
  width: 150%;
  height: 80%;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  background-color: #053262;
}
@media screen and (max-width: 768px) {
  .product_wrapper:nth-child(odd) .bg_block {
    height: 90%;
    top: -10%;
  }
}
.product_wrapper:nth-child(odd) .anim_type_wipe_rev {
  clip-path: polygon(99.9% 0%, 100% 0%, 100% 100%, 100% 100%);
  opacity: 0;
  -webkit-transition: 1000ms ease-out 300ms;
  transition: 1000ms ease-out 300ms;
}
.product_wrapper:nth-child(odd) .anim_type_wipe_rev.bg_block {
  clip-path: polygon(70% 0%, 100% 0%, 100% 100%, 70% 100%);
}
.product_wrapper:nth-child(odd) .anim_type_wipe_rev.active {
  clip-path: polygon(0 0px, 100% 0%, 100% 100%, 0% 100%);
  opacity: 1;
}
.product_wrapper:nth-child(even) .bg_block {
  left: 0;
  top: 0%;
  width: 120%;
  height: 80%;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  background-color: #053262;
}
@media screen and (max-width: 768px) {
  .product_wrapper:nth-child(even) .bg_block {
    height: 90%;
    top: -10%;
    z-index: 0;
  }
}
.product_wrapper:nth-child(even) h3 {
  text-align: right;
}
.product_wrapper:nth-child(even) h3.mt_fix {
  margin-bottom: 40px;
}
.product_wrapper:nth-child(even) .product_info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.product_wrapper:nth-child(even) .product_info div:last-child {
  margin-right: 40px;
}
.product_wrapper:nth-child(even) .product_info div:first-child {
  margin-right: 0px;
}
.product_wrapper:nth-child(even) .anim_type_wipe_rev {
  clip-path: polygon(1px 0px, 0% 0%, 0% 100%, 0% 100%);
  opacity: 0.1;
  -webkit-transition: 1000ms ease-out 300ms;
  transition: 1000ms ease-out 300ms;
}
.product_wrapper:nth-child(even) .anim_type_wipe_rev.bg_block {
  clip-path: polygon(1px 0px, 50% 0%, 50% 100%, 0% 100%);
}
.product_wrapper:nth-child(even) .anim_type_wipe_rev.active {
  clip-path: polygon(0 0px, 100% 0%, 100% 100%, 0% 100%);
  opacity: 1;
}
.product_wrapper:nth-child(even) .anim_type_wipe_rev.active.end_action {
  -webkit-transition: 300ms ease-in 0ms;
  transition: 300ms ease-in 0ms;
  clip-path: polygon(100% 0px, 100% 0%, 100% 100%, 100% 100%);
}
.product_wrapper .inner {
  max-width: 1400px;
}
.product_wrapper .bg_block {
  display: block;
  position: absolute;
  z-index: 0;
}
.product_wrapper .bg_block.taol_fix {
  height: 80%;
  top: 0%;
}
.product_wrapper .image_block {
  position: relative;
}
.product_wrapper .image_block .swiper_ui_set_2 {
  height: 30px;
}
.product_wrapper .product {
  padding-top: 80px;
  position: relative;
}
.product_wrapper .product.inner {
  max-width: 1400px;
}
.product_wrapper .product .relative_field {
  position: relative !important;
}
.product_wrapper .product .product_info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .product_wrapper .product .product_info {
    font-size: 1.4rem;
  }
}
.product_wrapper .product .product_info > div:first-child {
  margin-right: 40px;
  width: calc(100% - 360px);
}
.product_wrapper .product .product_info > div:last-child {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .product_wrapper .product .product_info {
    display: block;
  }
  .product_wrapper .product .product_info > div:first-child {
    margin-right: 0px;
    width: 100%;
  }
  .product_wrapper .product .product_info > div:last-child {
    width: 100%;
  }
}
.product_wrapper .product .product_info .cart_btn {
  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;
  width: 300px;
  height: 80px;
  background-color: #ffd665;
  color: #000;
  position: relative;
  overflow: hidden;
}
.product_wrapper .product .product_info .cart_btn.disable {
  pointer-events: none;
  background-color: #747474;
}
.product_wrapper .product .product_info .cart_btn.disable span {
  color: #FFF;
}
.product_wrapper .product .product_info .cart_btn.disable::after {
  content: none;
}
.product_wrapper .product .product_info .cart_btn.salesend {
  pointer-events: none;
  background-color: #c2c2c2;
}
.product_wrapper .product .product_info .cart_btn.salesend span {
  color: #656565;
}
.product_wrapper .product .product_info .cart_btn.salesend::after {
  content: none;
}
.product_wrapper .product .product_info .cart_btn.soldout {
  pointer-events: none;
  background-color: #f0f0f0;
  border: 2px solid #ffa0a0;
}
.product_wrapper .product .product_info .cart_btn.soldout span {
  color: red;
  font-size: 120%;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.product_wrapper .product .product_info .cart_btn.soldout::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .product_wrapper .product .product_info .cart_btn {
    width: 80%;
    margin: 0 auto;
    height: 60px;
  }
}
.product_wrapper .product .product_info .cart_btn span {
  color: #000;
  position: relative;
  z-index: 255;
}
.product_wrapper .product .product_info .cart_btn:after {
  content: "";
  background: url(../img/allow_bk.png) no-repeat;
  width: 37px;
  height: 9px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}
.product_wrapper .product .product_info .cart_btn::before {
  content: "";
  position: absolute;
  background-color: #000;
  width: 100%;
  height: 100%;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
.product_wrapper .product .product_info .cart_btn:hover {
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  background-color: #000;
}
.product_wrapper .product .product_info .cart_btn:hover span {
  color: #FFF;
}
.product_wrapper .product .product_info .cart_btn:hover::before {
  -webkit-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}
.product_wrapper .product .product_info .cart_btn:hover:after {
  background: url(../img/allow_wh.png) no-repeat;
}
.product_wrapper .product .product_info .price {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.product_wrapper .product .product_info .price span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .product_wrapper .product .product_info .price {
    width: 80%;
    margin: 20px auto;
  }
}
.product_wrapper .product .product_info .attention {
  font-size: 1.2rem;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .product_wrapper .product .product_info .attention {
    text-align: center;
  }
}
.product_wrapper .product.rev h3 {
  text-align: right;
}
.product_wrapper .product.rev h3.mt_fix {
  margin-bottom: 70px;
}
.product_wrapper .product.rev .product_info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.product_wrapper .product.rev .product_info div:last-child {
  margin-right: 40px;
}
.product_wrapper .product.rev .product_info div:first-child {
  margin-right: 0px;
}
.product_wrapper .product .special {
  width: 100%;
  text-align: center;
}
.product_wrapper .product .special span {
  background-color: #000;
  display: inline-block;
}
.product_wrapper .product .special img {
  display: inline;
}
.product_wrapper .product .push {
  text-align: center;
  margin-bottom: 10px;
}
.product_wrapper .product .push img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product_wrapper .product .push {
    margin-top: 1em;
  }
}

#news {
  position: relative;
  background-color: #000;
  color: #FFF;
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  margin-bottom: 80px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #news {
    display: block;
    padding: 5%;
  }
}
#news div h2 {
  position: relative;
}
#news div h2::before {
  content: "";
  background: url(../img/title_news_bar.png) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 32%;
  height: 95%;
  z-index: 2;
  -webkit-transform: translate3d(-40%, -40%, 0);
          transform: translate3d(-40%, -40%, 0);
  -webkit-transition: 300ms ease-out 1300ms;
  transition: 300ms ease-out 1300ms;
  clip-path: polygon(0 0px, 100% 0%, 100% 0%, 0% 0%);
}
@media screen and (max-width: 768px) {
  #news div h2::before {
    background-size: contain;
    width: 32%;
    height: 80%;
    -webkit-transform: translate3d(-13%, -35%, 0);
            transform: translate3d(-13%, -35%, 0);
  }
}
@media screen and (max-width: 768px) {
  #news div h2 img {
    height: 40px;
  }
}
#news div:first-child {
  width: 294px;
  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;
}
@media screen and (max-width: 768px) {
  #news div:first-child {
    width: 100%;
    display: block;
    padding: 4%;
  }
}
#news div:last-child {
  width: calc(100% - 294px);
  height: 400px;
  overflow-y: scroll;
  padding: 40px 56px 40px 0px;
}
@media screen and (max-width: 768px) {
  #news div:last-child {
    width: 100%;
    padding: 4%;
  }
}
#news div:last-child dl {
  padding: 20px 0;
  border-bottom: 1px solid #FFF;
}
#news div:last-child dl:last-child {
  border: none;
}
#news div:last-child dl dt {
  font-size: 1.3rem;
  margin-bottom: 1em;
}
#news div:last-child dl dd {
  font-size: 1.4rem;
}
#news.active div h2::before {
  clip-path: polygon(0 0px, 100% 0%, 100% 100%, 0% 100%);
}

.bottom_bg_layer {
  display: block;
  width: 100%;
  height: 273px;
  background: url(../img/lineup_bg.jpg) repeat-x top center;
}
@media screen and (max-width: 768px) {
  .bottom_bg_layer {
    display: block;
    width: 100%;
    height: 120px;
    background-size: auto 100%;
  }
}

#about {
  background: url(../img/footer_sub_bg.jpg);
  color: #FFF;
  padding-bottom: 100px;
}
#about h2 {
  text-align: center;
  padding: 125px 0 60px 0;
}
#about h2 img {
  display: inline;
}
@media screen and (max-width: 768px) {
  #about h2 {
    padding: 60px 0 60px 0;
  }
  #about h2 img {
    height: 40px;
  }
}
#about > div {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.8;
}
#about > div div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about > div {
    display: block;
  }
  #about > div div {
    width: 100%;
    font-size: 1.2rem;
    padding: 2%;
  }
}

footer {
  background-color: #000;
  padding: 75px 0;
  color: #FFF;
  text-align: center;
  font-size: 1.3rem;
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer ul li {
  margin-right: 20px;
}
footer ul li:last-child {
  margin-right: 0;
}
footer ul li a {
  display: block;
}
footer ul li a:hover {
  opacity: 0.3;
  -webkit-animation: poyoyon2 1s ease-in-out forwards;
          animation: poyoyon2 1s ease-in-out forwards;
}
footer ul li a:hover img {
  max-width: none;
}
footer img {
  display: inline;
  margin: 25px 0;
}

.fix_button {
  background-color: #00488d;
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 300px;
  height: 80px;
  color: #FFF;
  font-size: 1.8rem;
  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;
  -webkit-transition: 300ms;
  transition: 300ms;
  z-index: 300;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  -webkit-transform: translate3d(0, 0%, 0);
          transform: translate3d(0, 0%, 0);
}
.fix_button:before {
  content: "";
  background: url(../img/allow.png) no-repeat;
  width: 37px;
  height: 9px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.fix_button:hover {
  -webkit-filter: brightness(1.4);
          filter: brightness(1.4);
}
.fix_button:hover:before {
  -webkit-transform: translate3d(10px, -50%, 0);
          transform: translate3d(10px, -50%, 0);
}
@media screen and (max-width: 768px) {
  .fix_button {
    width: 100%;
    height: 60px;
    font-size: 2.2rem;
  }
}
.fix_button.active {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

.scrollup_button {
  position: fixed;
  bottom: 0px;
  left: 30px;
  width: 100px;
  height: 80px;
  color: #FFF;
  font-size: 1.8rem;
  mix-blend-mode: exclusion;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .scrollup_button {
    bottom: 80px;
    left: 2%;
    width: 40px;
    height: 40px;
  }
}
.scrollup_button.active {
  opacity: 0;
}

@-webkit-keyframes poyoyon2 {
  0% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
            transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1) translate(0, 8px);
            transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    -webkit-transform: scale(0.98, 1.05) translate(0, -8px);
            transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1, 0.9) translate(0, 5px);
            transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}

@keyframes poyoyon2 {
  0% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  15% {
    -webkit-transform: scale(0.98, 0.9) translate(0, 5px);
            transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    -webkit-transform: scale(1.02, 1) translate(0, 8px);
            transform: scale(1.02, 1) translate(0, 8px);
  }
  50% {
    -webkit-transform: scale(0.98, 1.05) translate(0, -8px);
            transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    -webkit-transform: scale(1, 0.9) translate(0, 5px);
            transform: scale(1, 0.9) translate(0, 5px);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0, 0);
            transform: scale(1, 1) translate(0, 0);
  }
  0%, 100% {
    opacity: 1;
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.kabe {
  width: 300px;
  height: 500px;
  position: relative;
}
.kabe li {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: rotateY(-90deg);
          transform: rotateY(-90deg);
  -webkit-transition: none;
  transition: none;
}
.kabe li.active {
  -webkit-transform: rotateY(1deg);
          transform: rotateY(1deg);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.kabe li.end_action {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transition: 300ms;
  transition: 300ms;
}

.himekuri {
  width: 100%;
  height: 800px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .himekuri {
    height: 200px;
  }
}
.himekuri li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .himekuri li {
    height: 200px;
  }
}
.himekuri li img {
  position: absolute;
  pointer-events: none;
  width: 45%;
  opacity: 0;
}
.himekuri li img:nth-child(1) {
  left: 0;
  top: 30%;
  z-index: 1;
  -webkit-transform: rotate(-15deg) translate3d(-50px, 0, 0);
          transform: rotate(-15deg) translate3d(-50px, 0, 0);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .himekuri li img:nth-child(1) {
    top: 10%;
  }
}
.himekuri li img:nth-child(2) {
  left: 30%;
  top: 50%;
  z-index: 2;
  -webkit-transform: rotate(-10deg) translate3d(-50px, 0, 0);
          transform: rotate(-10deg) translate3d(-50px, 0, 0);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .himekuri li img:nth-child(2) {
    top: 20%;
  }
}
.himekuri li img:nth-child(3) {
  left: 60%;
  top: 80%;
  z-index: 3;
  -webkit-transform: rotate(-5deg) translate3d(-50px, 0, 0);
          transform: rotate(-5deg) translate3d(-50px, 0, 0);
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .himekuri li img:nth-child(3) {
    top: 40%;
  }
}
.himekuri li.active img {
  opacity: 1;
}
.himekuri li.active img:nth-child(1) {
  z-index: 1;
  -webkit-transform: rotate(-15deg) translate3d(0px, 0, 0);
          transform: rotate(-15deg) translate3d(0px, 0, 0);
  -webkit-transition: 500ms ease-out 0ms;
  transition: 500ms ease-out 0ms;
}
.himekuri li.active img:nth-child(2) {
  z-index: 2;
  -webkit-transform: rotate(-10deg) translate3d(0px, 0, 0);
          transform: rotate(-10deg) translate3d(0px, 0, 0);
  -webkit-transition: 500ms ease-out 100ms;
  transition: 500ms ease-out 100ms;
}
.himekuri li.active img:nth-child(3) {
  z-index: 3;
  -webkit-transform: rotate(-5deg) translate3d(0px, 0, 0);
          transform: rotate(-5deg) translate3d(0px, 0, 0);
  -webkit-transition: 500ms ease-out 200ms;
  transition: 500ms ease-out 200ms;
}
.himekuri li.end_action img {
  opacity: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.himekuri li.end_action img:nth-child(1) {
  -webkit-transform: rotate(-15deg) translate3d(0px, 0, 0);
          transform: rotate(-15deg) translate3d(0px, 0, 0);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.himekuri li.end_action img:nth-child(2) {
  -webkit-transform: rotate(-10deg) translate3d(0px, 0, 0);
          transform: rotate(-10deg) translate3d(0px, 0, 0);
  -webkit-transition: 300ms;
  transition: 300ms;
}
.himekuri li.end_action img:nth-child(3) {
  -webkit-transform: rotate(-5deg) translate3d(0px, 0, 0);
          transform: rotate(-5deg) translate3d(0px, 0, 0);
  -webkit-transition: 300ms;
  transition: 300ms;
}

.takujo_image {
  position: absolute;
  right: 0px;
  top: 0;
  width: 400px;
}
@media screen and (max-width: 768px) {
  .takujo_image {
    width: 90%;
    position: relative;
    display: block;
    margin: 0 auto;
  }
}

.takujo {
  width: 100%;
  height: 750px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .takujo {
    height: 300px;
  }
}
.takujo li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .takujo li {
    height: 300px;
  }
}
.takujo li img {
  position: absolute;
  pointer-events: none;
  width: 50%;
  opacity: 0;
}
.takujo li img:nth-child(1) {
  left: 0%;
  top: -5%;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: rotateY(-45deg);
          transform: rotateY(-45deg);
}
@media screen and (max-width: 768px) {
  .takujo li img:nth-child(1) {
    left: 5%;
    top: 20px;
  }
}
.takujo li img:nth-child(2) {
  width: 45%;
  left: 47%;
  top: 60%;
  z-index: 2;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: rotateY(-45deg);
          transform: rotateY(-45deg);
}
@media screen and (max-width: 768px) {
  .takujo li img:nth-child(2) {
    top: 40%;
  }
}
.takujo li.active img {
  opacity: 1;
}
.takujo li.active img:nth-child(1) {
  z-index: 2;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 500ms ease-out 0ms;
  transition: 500ms ease-out 0ms;
}
.takujo li.active img:nth-child(2) {
  z-index: 1;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 500ms ease-out 100ms;
  transition: 500ms ease-out 100ms;
}
.takujo li.end_action img {
  opacity: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.takujo li.end_action img:nth-child(1) {
  -webkit-transform: rotateY(45deg);
          transform: rotateY(45deg);
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
}
.takujo li.end_action img:nth-child(2) {
  -webkit-transform: rotateY(45deg);
          transform: rotateY(45deg);
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
}

.kabekake {
  width: 100%;
  height: 700px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kabekake {
    height: 300px;
  }
}
.kabekake li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .kabekake li {
    height: 200px;
  }
}
.kabekake li img {
  position: absolute;
  pointer-events: none;
  width: 32%;
  opacity: 0;
}
.kabekake li img:nth-child(1) {
  left: 50%;
  top: 20%;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(-110%, 0, 0) rotateY(-45deg);
          transform: translate3d(-110%, 0, 0) rotateY(-45deg);
}
@media screen and (max-width: 768px) {
  .kabekake li img:nth-child(1) {
    left: 52%;
  }
}
.kabekake li img:nth-child(2) {
  left: 50%;
  top: -10%;
  z-index: 2;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(10%, 0, 0) rotateY(-45deg);
          transform: translate3d(10%, 0, 0) rotateY(-45deg);
}
@media screen and (max-width: 768px) {
  .kabekake li img:nth-child(2) {
    top: 5%;
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .kabekake li img {
    width: 45%;
  }
}
.kabekake li.active img {
  opacity: 1;
}
.kabekake li.active img:nth-child(1) {
  z-index: 1;
  -webkit-transition: 500ms ease-out 0ms;
  transition: 500ms ease-out 0ms;
  -webkit-transform: translate3d(-110%, 0, 0) rotateY(0deg);
          transform: translate3d(-110%, 0, 0) rotateY(0deg);
}
.kabekake li.active img:nth-child(2) {
  z-index: 2;
  -webkit-transition: 500ms ease-out 100ms;
  transition: 500ms ease-out 100ms;
  -webkit-transform: translate3d(10%, 0, 0) rotateY(0deg);
          transform: translate3d(10%, 0, 0) rotateY(0deg);
}
.kabekake li.end_action img {
  opacity: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.kabekake li.end_action img:nth-child(1) {
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
  -webkit-transform: translate3d(-110%, 0, 0) rotateY(45deg);
          transform: translate3d(-110%, 0, 0) rotateY(45deg);
}
.kabekake li.end_action img:nth-child(2) {
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
  -webkit-transform: translate3d(10%, 0, 0) rotateY(45deg);
          transform: translate3d(10%, 0, 0) rotateY(45deg);
}

.selector_ui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 500px;
}
.selector_ui li {
  border: 3px solid #bebebe;
  margin-right: 10px;
  width: 25%;
}
.selector_ui li.active {
  border: 3px solid #00488d;
}
@media screen and (max-width: 768px) {
  .selector_ui {
    width: 70%;
  }
}
.selector_ui.rev {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.pers_container {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1500;
          perspective: 1500;
}

.mvp_premium_stump_set {
  width: 100%;
  height: 650px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mvp_premium_stump_set {
    height: 230px;
  }
}
.mvp_premium_stump_set li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .mvp_premium_stump_set li {
    height: 150px;
  }
}
.mvp_premium_stump_set li img {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(45deg);
          transform: translate3d(0%, 0%, 0) rotateY(45deg);
}
.mvp_premium_stump_set li img img {
  width: 90%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -30%, 0) rotateY(45deg);
          transform: translate3d(-50%, -30%, 0) rotateY(45deg);
}
@media screen and (max-width: 768px) {
  .mvp_premium_stump_set li img img {
    width: 90%;
  }
}
.mvp_premium_stump_set li.active img {
  opacity: 1;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.mvp_premium_stump_set li.active img {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(0deg);
          transform: translate3d(0%, 0%, 0) rotateY(0deg);
  -webkit-transition: 500ms ease-out 0ms;
  transition: 500ms ease-out 0ms;
}
.mvp_premium_stump_set li.end_action img {
  opacity: 0;
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
}
.mvp_premium_stump_set li.end_action img {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(-45deg);
          transform: translate3d(0%, 0%, 0) rotateY(-45deg);
}

.taol {
  width: 100%;
  height: 550px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .taol {
    height: 200px;
  }
}
.taol li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .taol li {
    height: 200px;
  }
}
.taol li img {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.taol li:nth-child(1) img {
  width: 80%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -45%, 0) rotateY(-45deg);
          transform: translate3d(-50%, -45%, 0) rotateY(-45deg);
}
@media screen and (max-width: 768px) {
  .taol li:nth-child(1) img {
    width: 100%;
  }
}
.taol li:nth-child(2) img:nth-child(1) {
  width: 20%;
  left: 25%;
  top: 50%;
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(-45deg);
          transform: translate3d(0%, 0%, 0) rotateY(-45deg);
}
.taol li:nth-child(2) img:nth-child(2) {
  width: 20%;
  left: 10%;
  top: 50%;
  -webkit-transform: translate3d(0%, -50%, 0) rotateY(-45deg);
          transform: translate3d(0%, -50%, 0) rotateY(-45deg);
}
@media screen and (max-width: 768px) {
  .taol li:nth-child(2) img:nth-child(2) {
    left: 5%;
  }
}
.taol li:nth-child(2) img:nth-child(3) {
  width: 50%;
  right: 0%;
  top: 50%;
  -webkit-transform: translate3d(0%, -50%, 0);
          transform: translate3d(0%, -50%, 0);
}
.taol li.active img {
  opacity: 1;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.taol li.active:nth-child(1) img {
  -webkit-transform: translate3d(-50%, -45%, 0) rotateY(0deg);
          transform: translate3d(-50%, -45%, 0) rotateY(0deg);
}
.taol li.active:nth-child(2) img:nth-child(1) {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(0deg);
          transform: translate3d(0%, 0%, 0) rotateY(0deg);
  -webkit-transition: 500ms ease-out 200ms;
  transition: 500ms ease-out 200ms;
}
.taol li.active:nth-child(2) img:nth-child(2) {
  -webkit-transform: translate3d(0%, -50%, 0) rotateY(0deg);
          transform: translate3d(0%, -50%, 0) rotateY(0deg);
  -webkit-transition: 500ms ease-out 0ms;
  transition: 500ms ease-out 0ms;
}
.taol li.active:nth-child(2) img:nth-child(3) {
  -webkit-transition: 500ms ease-out 300ms;
  transition: 500ms ease-out 300ms;
}
.taol li.end_action img {
  opacity: 0;
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
}
.taol li.end_action:nth-child(1) img {
  -webkit-transform: translate3d(-50%, -45%, 0) rotateY(45deg);
          transform: translate3d(-50%, -45%, 0) rotateY(45deg);
}
.taol li.end_action:nth-child(2) img:nth-child(1) {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(45deg);
          transform: translate3d(0%, 0%, 0) rotateY(45deg);
}
.taol li.end_action:nth-child(2) img:nth-child(2) {
  -webkit-transform: translate3d(0%, -50%, 0) rotateY(45deg);
          transform: translate3d(0%, -50%, 0) rotateY(45deg);
}
.face_towel {
  width: 100%;
  height: 550px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .face_towel {
    height: 200px;
  }
}
.face_towel li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 768px) {
  .face_towel li {
    height: 200px;
  }
}
.face_towel li img {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.face_towel li:nth-child(1) img {
  width: 80%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -45%, 0) rotateY(-45deg);
          transform: translate3d(-50%, -45%, 0) rotateY(-45deg);
}
@media screen and (max-width: 768px) {
  .face_towel li:nth-child(1) img {
    width: 100%;
  }
}
.face_towel li:nth-child(2) img:nth-child(1) {
  width: 18%;
  right: 20%;
  top: 50%;
  -webkit-transform: translate3d(0%, 0%, 90px) rotateY(-45deg);
          transform: translate3d(0%, 0%, 90px) rotateY(-45deg);
  z-index: 2;
}
.face_towel li:nth-child(2) img:nth-child(2) {
  width: 18%;
  right: 5%;
  top: 50%;
  -webkit-transform: translate3d(0%, -50%, 0) rotateY(-45deg);
          transform: translate3d(0%, -50%, 0) rotateY(-45deg);
  z-index: 1;
}
.face_towel li:nth-child(2) img:nth-child(3) {
  width: 60%;
  left: 0%;
  top: 50%;
  -webkit-transform: translate3d(0%, -50%, 0);
          transform: translate3d(0%, -50%, 0);
}
.face_towel li.active img {
  opacity: 1;
  -webkit-transition: 300ms ease-out;
  transition: 300ms ease-out;
}
.face_towel li.active:nth-child(1) img {
  -webkit-transform: translate3d(-50%, -45%, 0) rotateY(0deg);
          transform: translate3d(-50%, -45%, 0) rotateY(0deg);
}
.face_towel li.active:nth-child(2) img:nth-child(1) {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(0deg);
          transform: translate3d(0%, 0%, 0) rotateY(0deg);
  -webkit-transition: 500ms ease-out 200ms;
  transition: 500ms ease-out 200ms;
}
.face_towel li.active:nth-child(2) img:nth-child(2) {
  -webkit-transform: translate3d(0%, -50%, 0) rotateY(0deg);
          transform: translate3d(0%, -50%, 0) rotateY(0deg);
  -webkit-transition: 500ms ease-out 0ms;
  transition: 500ms ease-out 0ms;
}
.face_towel li.active:nth-child(2) img:nth-child(3) {
  -webkit-transition: 500ms ease-out 300ms;
  transition: 500ms ease-out 300ms;
}
.face_towel li.end_action img {
  opacity: 0;
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
}
.face_towel li.end_action:nth-child(1) img {
  -webkit-transform: translate3d(-50%, -45%, 0) rotateY(45deg);
          transform: translate3d(-50%, -45%, 0) rotateY(45deg);
}
.face_towel li.end_action:nth-child(2) img:nth-child(1) {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(45deg);
          transform: translate3d(0%, 0%, 0) rotateY(45deg);
}
.face_towel li.end_action:nth-child(2) img:nth-child(2) {
  -webkit-transform: translate3d(0%, -50%, 0) rotateY(45deg);
          transform: translate3d(0%, -50%, 0) rotateY(45deg);
}
.as li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.as li img {
  width: 25%;
  height: auto;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transition: none;
  transition: none;
  opacity: 0;
}
.as li img:nth-child(2) {
  margin-top: 70px;
}
.as li img:nth-child(4) {
  margin-top: 70px;
}
.as li.active img {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  opacity: 1;
}
.as li.active img:nth-child(1) {
  -webkit-transition: 1000ms 50ms;
  transition: 1000ms 50ms;
}
.as li.active img:nth-child(2) {
  -webkit-transition: 1000ms 100ms;
  transition: 1000ms 100ms;
}
.as li.active img:nth-child(3) {
  -webkit-transition: 1000ms 150ms;
  transition: 1000ms 150ms;
}
.as li.active img:nth-child(4) {
  -webkit-transition: 1000ms 200ms;
  transition: 1000ms 200ms;
}
.as li.end_action img {
  -webkit-transition: 500ms;
  transition: 500ms;
  -webkit-transform: rotateY(-45deg);
          transform: rotateY(-45deg);
  opacity: 0;
}

.hand_towel {
  height: 700px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hand_towel {
    height: 200px;
  }
}
.hand_towel li {
  height: 100%;
}
.hand_towel li img {
  position: absolute;
  opacity: 0;
}
.hand_towel li img:nth-child(1) {
  width: 45%;
  left: 5%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.hand_towel li img:nth-child(2) {
  left: 55%;
  top: 50%;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}
.hand_towel li img:nth-child(3) {
  right: 0%;
  top: 20%;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
}
@media screen and (max-width: 768px) {
  .hand_towel li img:nth-child(1) {
    width: 55%;
    left: 5%;
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  .hand_towel li img:nth-child(2) {
    width: 22%;
    left: auto;
    right: 15%;
    top: 40%;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  .hand_towel li img:nth-child(3) {
    width: 22%;
    right: 0%;
    top: 5%;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
}
.hand_towel li.active img {
  opacity: 1;
}
.hand_towel li.active img:nth-child(1) {
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  -webkit-transition: 1000ms;
  transition: 1000ms;
}
.hand_towel li.active img:nth-child(2) {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 1000ms 100ms;
  transition: 1000ms 100ms;
}
.hand_towel li.active img:nth-child(3) {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 1000ms 200ms;
  transition: 1000ms 200ms;
}

.post_card_A {
  width: 100%;
  height: 600px;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .post_card_A {
    height: 150px;
  }
}
.post_card_A li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .post_card_A li {
    height: 200px;
  }
}
.post_card_A li img {
  width: 26%;
  height: auto;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .post_card_A li img {
    width: 30%;
  }
}
.post_card_A li:nth-child(1) img {
  opacity: 0;
}
.post_card_A li:nth-child(1) img:nth-child(1) {
  -webkit-transform: translate3d(0, 0%, 0) rotateY(-90deg);
          transform: translate3d(0, 0%, 0) rotateY(-90deg);
}
.post_card_A li:nth-child(1) img:nth-child(2) {
  -webkit-transform: translate3d(0%, 15%, 0) rotateY(-90deg);
          transform: translate3d(0%, 15%, 0) rotateY(-90deg);
}
.post_card_A li:nth-child(1) img:nth-child(3) {
  -webkit-transform: translate3d(0%, 5%, 0) rotateY(-90deg);
          transform: translate3d(0%, 5%, 0) rotateY(-90deg);
}
.post_card_A li:nth-child(1).active img {
  opacity: 1;
}
.post_card_A li:nth-child(1).active img:nth-child(1) {
  -webkit-transform: translate3d(0, 0%, 0) rotateY(0deg);
          transform: translate3d(0, 0%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 0ms;
  transition: 1000ms 0ms;
}
.post_card_A li:nth-child(1).active img:nth-child(2) {
  -webkit-transform: translate3d(0%, 15%, 0) rotateY(0deg);
          transform: translate3d(0%, 15%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 100ms;
  transition: 1000ms 100ms;
}
.post_card_A li:nth-child(1).active img:nth-child(3) {
  -webkit-transform: translate3d(0%, 5%, 0) rotateY(0deg);
          transform: translate3d(0%, 5%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 200ms;
  transition: 1000ms 200ms;
}
.post_card_A li:nth-child(1).end_action img {
  opacity: 0;
}
.post_card_A li:nth-child(1).end_action img:nth-child(1) {
  -webkit-transform: translate3d(0, 0%, 0) rotateY(90deg);
          transform: translate3d(0, 0%, 0) rotateY(90deg);
  -webkit-transition: 300ms 0ms;
  transition: 300ms 0ms;
}
.post_card_A li:nth-child(1).end_action img:nth-child(2) {
  -webkit-transform: translate3d(0%, 15%, 0) rotateY(90deg);
          transform: translate3d(0%, 15%, 0) rotateY(90deg);
  -webkit-transition: 300ms 100ms;
  transition: 300ms 100ms;
}
.post_card_A li:nth-child(1).end_action img:nth-child(3) {
  -webkit-transform: translate3d(0%, 5%, 0) rotateY(90deg);
          transform: translate3d(0%, 5%, 0) rotateY(90deg);
  -webkit-transition: 300ms 200ms;
  transition: 300ms 200ms;
}
.post_card_A li:nth-child(2) img {
  opacity: 0;
}
.post_card_A li:nth-child(2) img:nth-child(1) {
  -webkit-transform: translate3d(0, 10%, 0);
          transform: translate3d(0, 10%, 0);
}
.post_card_A li:nth-child(2) img:nth-child(2) {
  -webkit-transform: translate3d(0%, 20%, 0);
          transform: translate3d(0%, 20%, 0);
}
.post_card_A li:nth-child(2) img:nth-child(3) {
  -webkit-transform: translate3d(0%, 0%, 0);
          transform: translate3d(0%, 0%, 0);
}
.post_card_A li:nth-child(2).active img {
  opacity: 1;
}
.post_card_A li:nth-child(2).active img:nth-child(1) {
  -webkit-transform: translate3d(0, 10%, 0) rotateY(0deg);
          transform: translate3d(0, 10%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 0ms;
  transition: 1000ms 0ms;
}
.post_card_A li:nth-child(2).active img:nth-child(2) {
  -webkit-transform: translate3d(0%, 20%, 0) rotateY(0deg);
          transform: translate3d(0%, 20%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 100ms;
  transition: 1000ms 100ms;
}
.post_card_A li:nth-child(2).active img:nth-child(3) {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(0deg);
          transform: translate3d(0%, 0%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 200ms;
  transition: 1000ms 200ms;
}
.post_card_A li:nth-child(2).end_action img {
  opacity: 0;
}
.post_card_A li:nth-child(2).end_action img:nth-child(1) {
  -webkit-transform: translate3d(0, 10%, 0) rotateY(90deg);
          transform: translate3d(0, 10%, 0) rotateY(90deg);
  -webkit-transition: 300ms 0ms;
  transition: 300ms 0ms;
}
.post_card_A li:nth-child(2).end_action img:nth-child(2) {
  -webkit-transform: translate3d(0%, 20%, 0) rotateY(90deg);
          transform: translate3d(0%, 20%, 0) rotateY(90deg);
  -webkit-transition: 300ms 100ms;
  transition: 300ms 100ms;
}
.post_card_A li:nth-child(2).end_action img:nth-child(3) {
  -webkit-transform: translate3d(0%, 0%, 0) rotateY(90deg);
          transform: translate3d(0%, 0%, 0) rotateY(90deg);
  -webkit-transition: 300ms 200ms;
  transition: 300ms 200ms;
}

.post_card_B {
  width: 100%;
  height: 600px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .post_card_B {
    height: 180px;
  }
}
.post_card_B li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .post_card_B li {
    height: 200px;
  }
}
.post_card_B li img {
  width: 40%;
  height: auto;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.post_card_B li:nth-child(1) img:nth-child(1) {
  -webkit-transform: translate3d(0, 30%, 0) rotateY(90deg);
          transform: translate3d(0, 30%, 0) rotateY(90deg);
}
.post_card_B li:nth-child(1) img:nth-child(2) {
  -webkit-transform: translate3d(-20%, 0%, 0) rotateY(90deg);
          transform: translate3d(-20%, 0%, 0) rotateY(90deg);
}
.post_card_B li:nth-child(1) img:nth-child(3) {
  -webkit-transform: translate3d(-40%, 80%, 0) rotateY(90deg);
          transform: translate3d(-40%, 80%, 0) rotateY(90deg);
}
.post_card_B li:nth-child(1).active img {
  opacity: 1;
}
.post_card_B li:nth-child(1).active img:nth-child(1) {
  -webkit-transform: translate3d(0, 30%, 0) rotateY(0deg);
          transform: translate3d(0, 30%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 0ms;
  transition: 1000ms 0ms;
}
.post_card_B li:nth-child(1).active img:nth-child(2) {
  -webkit-transform: translate3d(-20%, 0%, 0) rotateY(0deg);
          transform: translate3d(-20%, 0%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 100ms;
  transition: 1000ms 100ms;
}
.post_card_B li:nth-child(1).active img:nth-child(3) {
  -webkit-transform: translate3d(-40%, 80%, 0) rotateY(0deg);
          transform: translate3d(-40%, 80%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 200ms;
  transition: 1000ms 200ms;
}
.post_card_B li:nth-child(1).end_action img {
  opacity: 0;
}
.post_card_B li:nth-child(1).end_action img:nth-child(1) {
  -webkit-transform: translate3d(0, 30%, 0) rotateY(-90deg);
          transform: translate3d(0, 30%, 0) rotateY(-90deg);
  -webkit-transition: 300ms 0ms;
  transition: 300ms 0ms;
}
.post_card_B li:nth-child(1).end_action img:nth-child(2) {
  -webkit-transform: translate3d(-20%, 0%, 0) rotateY(-90deg);
          transform: translate3d(-20%, 0%, 0) rotateY(-90deg);
  -webkit-transition: 300ms 100ms;
  transition: 300ms 100ms;
}
.post_card_B li:nth-child(1).end_action img:nth-child(3) {
  -webkit-transform: translate3d(-40%, 80%, 0) rotateY(-90deg);
          transform: translate3d(-40%, 80%, 0) rotateY(-90deg);
  -webkit-transition: 300ms 200ms;
  transition: 300ms 200ms;
}
.post_card_B li:nth-child(2) img:nth-child(1) {
  -webkit-transform: translate3d(0, 20%, -100px) rotateY(90deg);
          transform: translate3d(0, 20%, -100px) rotateY(90deg);
}
.post_card_B li:nth-child(2) img:nth-child(2) {
  -webkit-transform: translate3d(-20%, 70%, 0) rotateY(90deg);
          transform: translate3d(-20%, 70%, 0) rotateY(90deg);
}
.post_card_B li:nth-child(2) img:nth-child(3) {
  -webkit-transform: translate3d(-40%, 0%, 100px) rotateY(90deg);
          transform: translate3d(-40%, 0%, 100px) rotateY(90deg);
}
.post_card_B li:nth-child(2).active img {
  opacity: 1;
}
.post_card_B li:nth-child(2).active img:nth-child(1) {
  -webkit-transform: translate3d(0, 20%, -100px) rotateY(0deg);
          transform: translate3d(0, 20%, -100px) rotateY(0deg);
  -webkit-transition: 1000ms 200ms;
  transition: 1000ms 200ms;
}
.post_card_B li:nth-child(2).active img:nth-child(2) {
  -webkit-transform: translate3d(-20%, 70%, 0) rotateY(0deg);
          transform: translate3d(-20%, 70%, 0) rotateY(0deg);
  -webkit-transition: 1000ms 100ms;
  transition: 1000ms 100ms;
}
.post_card_B li:nth-child(2).active img:nth-child(3) {
  -webkit-transform: translate3d(-40%, 0%, 100px) rotateY(0deg);
          transform: translate3d(-40%, 0%, 100px) rotateY(0deg);
  -webkit-transition: 1000ms 0ms;
  transition: 1000ms 0ms;
}
.post_card_B li:nth-child(2).end_action img {
  opacity: 0;
}
.post_card_B li:nth-child(2).end_action img:nth-child(1) {
  -webkit-transform: translate3d(0, 20%, -100px) rotateY(-90deg);
          transform: translate3d(0, 20%, -100px) rotateY(-90deg);
  -webkit-transition: 300ms 0ms;
  transition: 300ms 0ms;
}
.post_card_B li:nth-child(2).end_action img:nth-child(2) {
  -webkit-transform: translate3d(-20%, 70%, 0) rotateY(-90deg);
          transform: translate3d(-20%, 70%, 0) rotateY(-90deg);
  -webkit-transition: 300ms 100ms;
  transition: 300ms 100ms;
}
.post_card_B li:nth-child(2).end_action img:nth-child(3) {
  -webkit-transform: translate3d(-40%, 0%, 100px) rotateY(-90deg);
          transform: translate3d(-40%, 0%, 100px) rotateY(-90deg);
  -webkit-transition: 300ms 200ms;
  transition: 300ms 200ms;
}

.himekuri_image {
  position: absolute;
  width: 300px;
  right: 0px;
  top: -50px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .himekuri_image {
    width: 20%;
  }
}

.loading {
  opacity: 0;
}

.loaded {
  -webkit-transition: 300ms;
  transition: 300ms;
  opacity: 1;
}

.sold_out {
  font-size: 10rem;
  font-weight: 900;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  background-color: rgba(182, 14, 14, 0.8);
  width: 100%;
  color: #FFF;
  text-align: center;
  line-height: 1.2;
  padding: 30px 0;
}
.sold_out span {
  font-size: 80%;
  display: block;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .sold_out {
    font-size: 12vw;
  }
}

.term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ebebeb;
  overflow: hidden;
  border-radius: 3px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .term {
    display: block;
    overflow: visible;
  }
}
.term dt, .term dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.term dt {
  width: 168px;
  background-color: #848ccc;
  color: #FFF;
  text-align: center;
  padding: 8px 0;
  font-size: 130%;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .term dt {
    width: auto;
    display: inline-block;
    text-align: left;
    padding: 3px 10px;
    margin-top: -30px;
    border-radius: 1px;
  }
}
.term dd {
  width: calc(100% - 168px - 140px);
  padding: 8px 20px;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .term dd {
    width: 100%;
    font-size: 3.5vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .term dd .sp_margin {
    margin-left: 1em;
  }
}
.term dd .period {
  background: #000;
  color: #FFF;
  padding: 0px 10px;
  font-size: 85%;
  margin-right: 0.7em;
}
@media screen and (max-width: 768px) {
  .term dd .period {
    -webkit-transform: translate3d(0, 0%, 0);
            transform: translate3d(0, 0%, 0);
  }
}
.term dd p.aten {
  font-size: 90%;
  color: #555;
}
@media screen and (max-width: 768px) {
  .term dd .text {
    line-height: 1.2;
  }
}
.term .small {
  font-size: 70%;
}
.term .large {
  font-size: 120%;
}
.term.current {
  position: relative;
}
.term.current dd p.aten {
  text-decoration: underline;
}
.term.current:after {
  content: "受付中!";
  background-color: red;
  color: #FFF;
  border-radius: 20px;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  padding: 5px 20px;
}
@media screen and (max-width: 768px) {
  .term.current:after {
    content: none;
  }
}

.new:before {
  content: "NEW!!";
  font-size: 70%;
  color: #FFF;
  font-weight: 900;
  line-height: 1;
  padding: 4px 8px;
  display: inline-block;
  background-color: red;
  margin-right: 8px;
  vertical-align: middle;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
}

.nltm {
  font-family: "Noto Serif", serif;
}
.nltm::after {
  content: "TM";
  font-size: 30%;
}

.OrderClosed {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  background-color: rgba(201, 0, 0, 0.6);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  text-align: center;
  color: #FFF;
  font-size: 110px;
  font-family: "Kanit";
  line-height: 1;
  letter-spacing: 4px;
  padding: 40px;
  font-weight: 500;
}
.OrderClosed span {
  display: block;
  font-size: 130%;
}
@media screen and (max-width: 1200px) {
  .OrderClosed {
    font-size: 7vw;
  }
}