@charset "UTF-8";
/* ---------------------------- */
/* Base
/* ---------------------------- */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

main .l-inner {
  margin: 0 auto;
}

main .l-inner article {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  color: #313242;
  background-color: #f7f6f7;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.ftool-wrapper {
  background-color: #fff;
}

.ftool-wrapper .col--02--C {
  width: auto;
}

img {
  vertical-align: bottom;
  width: 100%;
}

/*fix*/
.pc {
  display: block;
}

.sp {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

body.loaded {
  position: static;
  overflow: scroll;
}

body.looking {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.en {
  font-family: futura-pt, sans-serif;
}

.flex {
  display: flex;
}

.f_wrap {
  flex-wrap: wrap;
}

.f_jc-between {
  justify-content: space-between;
}

.f_jc-center {
  justify-content: center;
}

.f_column {
  flex-direction: column;
}

.f_ai-baseline {
  align-items: baseline;
}

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.box-wrapper {
  overflow: hidden;
}

.box-wrapper .fv {
  position: relative;
  margin-bottom: 150px;
}

.box-wrapper .fv .left {
  margin-top: 5%;
  width: 46%;
  z-index: 1;
  position: relative;
}

.box-wrapper .fv .right {
  position: absolute;
  width: 45%;
  right: 0;
  top: 0;
  bottom: 0;
  padding-right: 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.box-wrapper .fv .right p {
  line-height: 2em;
  font-size: 1.5rem;
  position: relative;
  padding-top: 40px;
}

.box-wrapper .fv .right p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 20%;
  background: #774629;
}

.box-wrapper .item-wrapper {
  display: grid;
  gap: 100px;
}

.box-wrapper .item-box {
  display: grid;
  gap: 200px;
}

.box-wrapper .item-head {
  text-align: center;
  display: grid;
  gap: 50px;
}

.box-wrapper .item-head .item {
  position: relative;
}

.box-wrapper .item-head .item .item-title {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  margin: auto;
  height: 22%;
}

.box-wrapper .item-head p {
  font-size: 1.5rem;
  line-height: 2em;
}

.box-wrapper .box {
  display: grid;
  /*gap: 200px;*/
}

.box-wrapper .box .top {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.box-wrapper .box .top .num-box {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 48%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  gap: 10px;
}

.box-wrapper .box .top .num-box.num-box2 {
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
}

.box-wrapper .box .top .num-box * {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.box-wrapper .box .top .img-box {
  align-items: flex-start;
}

.box-wrapper .box .top .img-box .img {
  width: 52%;
  position: relative;
}

.box-wrapper .box .top .img-box .img:before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  z-index: -1;
}

.box-wrapper .box .top .img-box .img:nth-child(2) {
  margin-left: -4%;
  margin-top: 15%;
}

.box-wrapper .box .bottom {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.box-wrapper .box .bottom .slider-box {
  margin-bottom: 40px;
}

.box-wrapper .box .bottom .slick-list {
  border: 1px solid #000;
}

.box-wrapper .box.reverse-box .top .num-box {
  left: 0;
  right: auto;
}

.box-wrapper .box.reverse-box .top .img-box {
  flex-direction: row-reverse;
}

.box-wrapper .box.reverse-box .top .img-box .img:before {
  left: auto;
  right: -20px;
}

.box-wrapper .box.reverse-box .top .img-box .img:nth-child(1) {
  margin-left: -4%;
}

.box-wrapper .box.reverse-box .top .img-box .img:nth-child(2) {
  margin-left: 0;
}

.box-wrapper .link {
  color: #5c4b50;
  text-align: center;
  display: grid;
  gap: 30px;
}

.box-wrapper .link .ttl img {
  width: 30%;
}

.box-wrapper .link .img-box img {
  max-width: 30px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.box-wrapper .box.brown-box *,
.box-wrapper .box.brown-box .top .img-box .img:before {
  stroke: #8d4e2f !important;
  fill: #8d4e2f !important;
  border-color: #8d4e2f !important;
}

.box-wrapper .box.blue-box *,
.box-wrapper .box.blue-box .top .img-box .img:before {
  stroke: #3070ba !important;
  fill: #3070ba !important;
  border-color: #3070ba !important;
}

.box-wrapper .box.cream-box *,
.box-wrapper .box.cream-box .top .img-box .img:before {
  stroke: #e5c6ac !important;
  fill: #e5c6ac !important;
  border-color: #e5c6ac !important;
}

.box-wrapper .box.pink-box *,
.box-wrapper .box.pink-box .top .img-box .img:before {
  stroke: #e88b80 !important;
  fill: #e88b80 !important;
  border-color: #e88b80 !important;
}

.box-wrapper .box.black-box *,
.box-wrapper .box.black-box .top .img-box .img:before {
  stroke: #1b0901 !important;
  fill: #1b0901 !important;
  border-color: #1b0901 !important;
}

.box-wrapper .box.beige-box *,
.box-wrapper .box.beige-box .top .img-box .img:before {
  stroke: #9d694c !important;
  fill: #9d694c !important;
  border-color: #9d694c !important;
}

.box-wrapper .box.white-box *,
.box-wrapper .box.white-box .top .img-box .img:before {
  stroke: #858585 !important;
  fill: #858585 !important;
  border-color: #858585 !important;
}

.box-wrapper .box .num-box.num-box2 * {
  stroke: #1b0901 !important;
  fill: #1b0901 !important;
  border-color: #1b0901 !important;
}

.box-wrapper .box.white-box .top .img-box .img:nth-child(2):before {
  border-color: #1b0901 !important;
}

.box-wrapper .box.white-box .slick-list {
  border-bottom-color: #1b0901 !important;
  border-right-color: #1b0901 !important;
}

/* ------------------  content  ------------------ */
#contents ul.product {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

#contents ul.product li {
  position: relative;
  list-style: none;
}

#contents ul.product li:nth-child(odd) {
  padding-right: 80px;
}

#contents ul.product li:nth-child(even) {
  padding-left: 80px;
}

#contents ul.product li .inner {
  padding-bottom: 80px;
  position: relative;
}

#contents ul.product li:nth-child(odd):before {
  content: "";
  position: absolute;
  background-image: linear-gradient(to bottom, black, black 4px, transparent 4px, transparent 8px);
  background-repeat: repeat-y;
  background-size: 4px 8px;
  background-position: right top;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}

#contents ul.product li:not(:last-child) .inner:before {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, black, black 4px, transparent 8px, transparent 4px);
  background-repeat: repeat-x;
  background-size: 8px 4px;
  background-position: left bottom;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

#contents ul.product li:nth-child(n+3) {
  padding-top: 80px;
}

#contents ul.product li .inner .img-box {
  position: relative;
}

#contents ul.product li .text-box {
  text-align: center;
  padding-top: 25px;
}

#contents ul.product li .text-box .name {
  font-size: 1.7rem !important;
  font-weight: bold;
}

#contents ul.product li .text-box .price {
  line-height: 1em;
  font-size: 2rem !important;
  font-weight: 400;
  color: #6B6B6B;
  margin: 20px 0;
}

#contents ul.product li .text-box .catch-copy * {
  line-height: 1em;
  font-size: 2rem !important;
  font-weight: 400;
  color: #6B6B6B;
  margin: 20px 0;
}

#contents ul.product li .text-box a.btn {
  font-size: 1.8rem !important;
  font-weight: 500;
  background: #fff;
  color: #050505;
  padding: 4px 20px;
  border-radius: 100px;
  border: 1px solid #fff;
  display: inline-block;
}

#contents ul.product li .text-box a.btn:hover {
  color: #fff;
  background: #050505;
  text-decoration: none;
}

.insta {
  text-align: center;
  padding: 150px 0;
}

.insta p {
  font-size: 3.9rem;
  font-weight: 400;
  margin: 0 0 30px 0;
}

.insta img {
  width: 33px;
  height: auto;
}

.ftool-wrapper p {
  margin-bottom: 45px;
}

@media only screen and (max-width: 768px) {
  #contents ul.product li:nth-child(odd):before {
    display: none;
  }
  #contents ul.product {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #contents ul.product li:nth-child(odd) {
    padding-right: 0;
  }
  #contents ul.product li:nth-child(even) {
    padding-left: 0;
  }
  #contents ul.product li .text-box .name {
    font-size: 1.5rem !important;
  }
  #contents ul.product li .text-box .catch-copy * {
    font-size: 1.7rem !important;
  }
    #contents ul.product li .text-box .price {
    font-size: 1.8rem !important;
  }
  #contents ul.product li:nth-child(n+2) {
    padding-top: 80px;
  }
  .insta {
    padding: 80px 0;
  }
  .insta p {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
  }
  .insta img {
    width: 25px;
  }
  ul.slick-dots {
    gap: 25px;
  }
  /* モーダル内 */
  .box-wrapper .modal .close::before,
.box-wrapper .modal .close::after {
    width: 30px !important;
  }
  .box-wrapper .modal .close {
    width: 30px !important;
    height: 30px !important;
    top: 30px !important;
    right: 30px !important;
  }
}
/* ------------------  modal  ------------------ */
#contents .inner .img-box:after {
  transform: rotate(90deg);
}

#contents .inner .img-box {
  transition: 0.3s;
  position: relative;
}

#contents .inner .img-box img {
  transition: 0.3s;
}

#contents .inner .img-box:before,
#contents .inner .img-box:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 10px;
  background: #fff;
  height: 14px;
  width: 1px;
  z-index: 2;
}

#contents .inner .img-box:after {
  transform: rotate(90deg);
}

.box-wrapper .modal {
  background-color: rgba(5, 5, 5, 0.87);
  width: 100%;
  height: 100vh;
  padding: 150px 0;
  margin: 0;
  overflow: scroll;
  position: fixed;
  left: 0;
  top: -100vh;
  z-index: 0;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
}

.box-wrapper .modal.active {
  top: 0;
  z-index: 9999;
}

.box-wrapper .modal .close {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 999;
  cursor: pointer;
}

.box-wrapper .modal.active .close {
  display: block;
}

.box-wrapper .modal .close::before,
.box-wrapper .modal .close::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0;
  margin: auto;
  transition: all 0.5s 0s ease;
}

.box-wrapper .modal .close::after {
  transform: rotate(45deg);
}

.box-wrapper .modal .coordinate:not(:last-child) {
  margin-bottom: 400px;
}

.box-wrapper .modal .coordinate .top {
  margin-bottom: 200px;
  align-items: center;
}

.box-wrapper .modal .coordinate .top .text h2 {
  color: #fff;
  margin: 0 0 35px;
  line-height: 1em;
  font-size: 5.8rem;
  position: relative;
}

.box-wrapper .modal .coordinate .top .text-box {
  font-size: 1.5rem;
  line-height: 2;
}

.box-wrapper .modal .coordinate .top,
.box-wrapper .modal .coordinate .bottom {
  gap: 100px;
}

.box-wrapper .modal .coordinate .top > * {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

.box-wrapper .modal .coordinate .bottom > * {
  width: 100%;
  max-width: 650px;
}

/* ------------------  slick  ------------------ */
.slick-dots {
  bottom: 25px !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 45px !important;
}

/* ------------------  FV  ------------------ */
#bc-tmpl #con00 {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

#bc-tmpl .t1.imgW img.pconly {
  max-width: 720px;
  margin: 0 auto;
}

p.catch {
  font-size: 1.5rem;
  text-align: center;
  line-height: 3.4;
  margin: 0 0 150px 0;
}

@media only screen and (max-width: 768px) {
  p.catch {
    margin: 0;
  }
}
@media screen and (max-width: 750px) {
  .container {
    padding: 0 20px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .box-wrapper .fv {
    margin-bottom: 0;
  }
  .box-wrapper .fv .left {
    margin-top: 7%;
    width: 45%;
  }
  .box-wrapper .fv .right {
    left: 5%;
    top: 5%;
    right: auto;
    bottom: auto;
    width: 70%;
    padding: 0;
  }
  .box-wrapper .catch {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2em;
  }
  .box-wrapper .item-head .item {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .box-wrapper .box .top {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  .box-wrapper .box .top .num-box {
    position: unset;
    text-align: center;
    margin: 0 auto 50px;
    justify-items: center;
    max-width: 100%;
  }
  .box-wrapper .box .top .num-box *:nth-child(1) {
    max-height: 6vw;
  }
  .box-wrapper .box .top .num-box *:nth-child(2) {
    max-height: 11vw;
    max-width: 100%;
  }
  .box-wrapper .box .top .img-box {
    width: 100%;
  }
  .box-wrapper .box .top .img-box .img:before {
    left: -7px;
    bottom: -7px;
  }
  .box-wrapper .box.reverse-box .top .img-box .img:before {
    left: auto;
    right: -7px;
  }
  .box-wrapper .box .bottom {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .box-wrapper .item-box {
    /*gap: 100px 0;*/
  }
  .box-wrapper .box {
    /*gap: 100px 0;*/
  }
  .slick-dots *,
.slick-dots *:before {
    width: 10px !important;
    height: 10px !important;
  }
  .slick-dots {
    margin: 10px auto 0;
  }
  .box-wrapper .link .ttl img {
    width: 80%;
  }
}
/* ------------------  FV  ------------------ */
.fsXXXXL {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .fsXXXXL {
    font-size: 100px;
    font-size: 9vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXXXL {
    font-size: 13vw !important;
  }
}
.fsXXXL {
  line-height: 100%;
}

@media only screen and (min-width: 769px) {
  .fsXXXL {
    font-size: 100px;
    font-size: 5vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXXL {
    font-size: 100px;
    font-size: 19vw !important;
  }
}
.fsXXL,
#bc-tmpl .quote2:after,
#bc-tmpl .quote2:before {
  line-height: 100%;
}

@media only screen and (min-width: 769px) {
  .fsXXL,
#bc-tmpl .quote2:after,
#bc-tmpl .quote2:before {
    font-size: 4.5vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXL,
#bc-tmpl .quote2:after,
#bc-tmpl .quote2:before {
    font-size: 9vw !important;
  }
}
.fsXL {
  line-height: 120%;
}

@media only screen and (min-width: 769px) {
  .fsXL {
    font-size: 3.4vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsXL {
    font-size: 7.3vw !important;
  }
}
.fsL {
  line-height: 130%;
}

@media only screen and (min-width: 769px) {
  .fsL {
    font-size: 2.2vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsL {
    font-size: 5.4vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .fsML {
    font-size: 1.8vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsML {
    font-size: 4vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .fsM,
.popnav.popnav-plus:before {
    font-size: 1.6vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsM,
.popnav.popnav-plus:before {
    font-size: 5vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .fsSM {
    font-size: 1.4vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsSM {
    font-size: 3.9vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .fsS,
#bc-tmpl .slick-dots button:before,
.product.buy .thumb:before,
.credits * {
    font-size: 1vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsS,
#bc-tmpl .slick-dots button:before,
.product.buy .thumb:before,
.credits * {
    font-size: 3.1vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .fsXS,
#bc-tmpl .fnav a {
    font-size: 0.9vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsXS,
#bc-tmpl .fnav a {
    font-size: 2.9vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .fsXXS {
    font-size: 0.8vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXS {
    font-size: 2.4vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .fsXXXS {
    font-size: 0.6vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXXS {
    font-size: 2vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfsXXXXL {
    line-height: 100%;
    font-weight: bold;
    font-size: 9vw !important;
  }
  .pcfsXXXL {
    line-height: 100%;
    font-weight: bold;
    font-size: 5vw !important;
  }
  .pcfsXXL {
    line-height: 100%;
    font-weight: bold;
    font-size: 4.5vw !important;
  }
  .pcfsXL {
    line-height: 120%;
    font-size: 3.4vw !important;
  }
  .pcfsL {
    line-height: 130%;
    font-size: 2.2vw !important;
  }
  .pcfsL {
    font-size: 1.8vw !important;
  }
  .pcfsM {
    font-size: 1.6vw !important;
  }
  .pcfsSM {
    font-size: 1.4vw !important;
  }
  .pcfsS {
    font-size: 1vw !important;
  }
  .pcfsXS {
    font-size: 0.9vw !important;
  }
  .pcfsXXS {
    font-size: 0.8vw !important;
  }
  .pcfsXXXS {
    font-size: 0.6vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .spfsXXXXL {
    line-height: 100%;
    font-weight: bold;
    font-size: 13vw !important;
  }
  .spfsXXXL {
    line-height: 100%;
    font-weight: bold;
    font-size: 19vw !important;
  }
  .spfsXXL {
    line-height: 100%;
    font-weight: bold;
    font-size: 9vw !important;
  }
  .spfsXL {
    line-height: 120%;
    font-size: 7.3vw !important;
  }
  .spfsL {
    line-height: 130%;
    font-size: 5.4vw !important;
  }
  .spfsL {
    font-size: 4vw !important;
  }
  .spfsM {
    font-size: 5vw !important;
  }
  .spfsSM {
    font-size: 3.9vw !important;
  }
  .spfsS {
    font-size: 3.1vw !important;
  }
  .spfsXS {
    font-size: 2.9vw !important;
  }
  .spfsXXS {
    font-size: 2.4vw !important;
  }
  .spfsXXXS {
    font-size: 2vw !important;
  }
}
.pcfix .fsXXXXL {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .pcfix .fsXXXXL {
    font-size: 100px;
    font-size: 130px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsXXXXL {
    font-size: 13vw !important;
  }
}
.pcfix .fsXXXL {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .pcfix .fsXXXL {
    font-size: 100px;
    font-size: 70px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsXXXL {
    font-size: 100px;
    font-size: 19vw !important;
  }
}
.pcfix .fsXXL,
.pcfix #bc-tmpl .quote2:after,
#bc-tmpl .pcfix .quote2:after,
.pcfix #bc-tmpl .quote2:before,
#bc-tmpl .pcfix .quote2:before {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .pcfix .fsXXL,
.pcfix #bc-tmpl .quote2:after,
#bc-tmpl .pcfix .quote2:after,
.pcfix #bc-tmpl .quote2:before,
#bc-tmpl .pcfix .quote2:before {
    font-size: 50px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsXXL,
.pcfix #bc-tmpl .quote2:after,
#bc-tmpl .pcfix .quote2:after,
.pcfix #bc-tmpl .quote2:before,
#bc-tmpl .pcfix .quote2:before {
    font-size: 9vw !important;
  }
}
.pcfix .fsXL {
  line-height: 120%;
}

@media only screen and (min-width: 769px) {
  .pcfix .fsXL {
    font-size: 38px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsXL {
    font-size: 7.3vw !important;
  }
}
.pcfix .fsL {
  line-height: 130%;
}

@media only screen and (min-width: 769px) {
  .pcfix .fsL {
    font-size: 27px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsL {
    font-size: 5.4vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .fsML {
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsML {
    font-size: 4vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .fsM,
.pcfix .popnav.popnav-plus:before {
    font-size: 19px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsM,
.pcfix .popnav.popnav-plus:before {
    font-size: 5vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .fsSM {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsSM {
    font-size: 3.9vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .fsS,
.pcfix #bc-tmpl .slick-dots button:before,
#bc-tmpl .slick-dots .pcfix button:before,
.pcfix .product.buy .thumb:before,
.product.buy .pcfix .thumb:before,
.pcfix .credits *,
.credits .pcfix * {
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsS,
.pcfix #bc-tmpl .slick-dots button:before,
#bc-tmpl .slick-dots .pcfix button:before,
.pcfix .product.buy .thumb:before,
.product.buy .pcfix .thumb:before,
.pcfix .credits *,
.credits .pcfix * {
    font-size: 3.1vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .fsXS,
.pcfix #bc-tmpl .fnav a,
#bc-tmpl .fnav .pcfix a {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsXS,
.pcfix #bc-tmpl .fnav a,
#bc-tmpl .fnav .pcfix a {
    font-size: 2.9vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .fsXXS {
    font-size: 10px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsXXS {
    font-size: 2.4vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .fsXXXS {
    font-size: 8px !important;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix .fsXXXS {
    font-size: 2vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix .pcfsXXXXL {
    line-height: 100%;
    font-size: 130px !important;
  }
  .pcfix .pcfsXXXL {
    line-height: 100%;
    font-size: 70px !important;
  }
  .pcfix .pcfsXXL {
    line-height: 100%;
    font-size: 50px !important;
  }
  .pcfix .pcfsXL {
    line-height: 120%;
    font-size: 38px !important;
  }
  .pcfix .pcfsL {
    line-height: 130%;
    font-size: 27px !important;
  }
  .pcfix .pcfsL {
    font-size: 24px !important;
  }
  .pcfix .pcfsM {
    font-size: 19px !important;
  }
  .pcfix .pcfsSM {
    font-size: 16px !important;
  }
  .pcfix .pcfsS {
    font-size: 14px !important;
  }
  .pcfix .pcfsXS {
    font-size: 12px !important;
  }
  .pcfix .pcfsXXS {
    font-size: 10px !important;
  }
  .pcfix .pcfsXXXS {
    font-size: 8px !important;
  }
}
.fsXXXXL * {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .fsXXXXL * {
    font-size: 100px;
    font-size: 9vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXXXL * {
    font-size: 13vw;
  }
}
.fsXXXL * {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .fsXXXL * {
    font-size: 100px;
    font-size: 5vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXXL * {
    font-size: 100px;
    font-size: 19vw;
  }
}
.fsXXL *,
#bc-tmpl .quote2:after *,
#bc-tmpl .quote2:before * {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .fsXXL *,
#bc-tmpl .quote2:after *,
#bc-tmpl .quote2:before * {
    font-size: 4.5vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXL *,
#bc-tmpl .quote2:after *,
#bc-tmpl .quote2:before * {
    font-size: 9vw;
  }
}
.fsXL * {
  line-height: 120%;
}

@media only screen and (min-width: 769px) {
  .fsXL * {
    font-size: 3.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsXL * {
    font-size: 7.3vw;
  }
}
.fsL * {
  line-height: 130%;
}

@media only screen and (min-width: 769px) {
  .fsL * {
    font-size: 2.2vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsL * {
    font-size: 5.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .fsML * {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsML * {
    font-size: 4vw;
  }
}
@media only screen and (min-width: 769px) {
  .fsM *,
.popnav.popnav-plus:before * {
    font-size: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsM *,
.popnav.popnav-plus:before * {
    font-size: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .fsSM * {
    font-size: 1.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsSM * {
    font-size: 3.9vw;
  }
}
@media only screen and (min-width: 769px) {
  .fsS *,
#bc-tmpl .slick-dots button:before *,
.product.buy .thumb:before *,
.credits * * {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsS *,
#bc-tmpl .slick-dots button:before *,
.product.buy .thumb:before *,
.credits * * {
    font-size: 3.1vw;
  }
}
@media only screen and (min-width: 769px) {
  .fsXS *,
#bc-tmpl .fnav a * {
    font-size: 0.9vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsXS *,
#bc-tmpl .fnav a * {
    font-size: 2.9vw;
  }
}
@media only screen and (min-width: 769px) {
  .fsXXS * {
    font-size: 0.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXS * {
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .fsXXXS * {
    font-size: 0.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .fsXXXS * {
    font-size: 2vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfsXXXXL * {
    line-height: 100%;
    font-weight: bold;
    font-size: 9vw;
  }
  .pcfsXXXL * {
    line-height: 100%;
    font-weight: bold;
    font-size: 5vw;
  }
  .pcfsXXL * {
    line-height: 100%;
    font-weight: bold;
    font-size: 4.5vw;
  }
  .pcfsXL * {
    line-height: 120%;
    font-size: 3.4vw;
  }
  .pcfsL * {
    line-height: 130%;
    font-size: 2.2vw;
  }
  .pcfsL * {
    font-size: 1.8vw;
  }
  .pcfsM * {
    font-size: 1.6vw;
  }
  .pcfsSM * {
    font-size: 1.4vw;
  }
  .pcfsS * {
    font-size: 1vw;
  }
  .pcfsXS * {
    font-size: 0.9vw;
  }
  .pcfsXXS * {
    font-size: 0.8vw;
  }
  .pcfsXXXS * {
    font-size: 0.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .spfsXXXXL * {
    line-height: 100%;
    font-weight: bold;
    font-size: 13vw;
  }
  .spfsXXXL * {
    line-height: 100%;
    font-weight: bold;
    font-size: 19vw;
  }
  .spfsXXL * {
    line-height: 100%;
    font-weight: bold;
    font-size: 9vw;
  }
  .spfsXL * {
    line-height: 120%;
    font-size: 7.3vw;
  }
  .spfsL * {
    line-height: 130%;
    font-size: 5.4vw;
  }
  .spfsL * {
    font-size: 4vw;
  }
  .spfsM * {
    font-size: 5vw;
  }
  .spfsSM * {
    font-size: 3.9vw;
  }
  .spfsS * {
    font-size: 3.1vw;
  }
  .spfsXS * {
    font-size: 2.9vw;
  }
  .spfsXXS * {
    font-size: 2.4vw;
  }
  .spfsXXXS * {
    font-size: 2vw;
  }
}
.pcfix * .fsXXXXL * {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .pcfix * .fsXXXXL * {
    font-size: 100px;
    font-size: 130px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsXXXXL * {
    font-size: 13vw;
  }
}
.pcfix * .fsXXXL * {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .pcfix * .fsXXXL * {
    font-size: 100px;
    font-size: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsXXXL * {
    font-size: 100px;
    font-size: 19vw;
  }
}
.pcfix * .fsXXL *,
.pcfix * #bc-tmpl .quote2:after *,
#bc-tmpl .pcfix * .quote2:after *,
.pcfix * #bc-tmpl .quote2:before *,
#bc-tmpl .pcfix * .quote2:before * {
  line-height: 100%;
  font-weight: bold;
}

@media only screen and (min-width: 769px) {
  .pcfix * .fsXXL *,
.pcfix * #bc-tmpl .quote2:after *,
#bc-tmpl .pcfix * .quote2:after *,
.pcfix * #bc-tmpl .quote2:before *,
#bc-tmpl .pcfix * .quote2:before * {
    font-size: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsXXL *,
.pcfix * #bc-tmpl .quote2:after *,
#bc-tmpl .pcfix * .quote2:after *,
.pcfix * #bc-tmpl .quote2:before *,
#bc-tmpl .pcfix * .quote2:before * {
    font-size: 9vw;
  }
}
.pcfix * .fsXL * {
  line-height: 120%;
}

@media only screen and (min-width: 769px) {
  .pcfix * .fsXL * {
    font-size: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsXL * {
    font-size: 7.3vw;
  }
}
.pcfix * .fsL * {
  line-height: 130%;
}

@media only screen and (min-width: 769px) {
  .pcfix * .fsL * {
    font-size: 27px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsL * {
    font-size: 5.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .fsML * {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsML * {
    font-size: 4vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .fsM *,
.pcfix * .popnav.popnav-plus:before * {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsM *,
.pcfix * .popnav.popnav-plus:before * {
    font-size: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .fsSM * {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsSM * {
    font-size: 3.9vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .fsS *,
.pcfix * #bc-tmpl .slick-dots button:before *,
#bc-tmpl .slick-dots .pcfix * button:before *,
.pcfix * .product.buy .thumb:before *,
.product.buy .pcfix * .thumb:before *,
.pcfix * .credits * *,
.credits .pcfix * * * {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsS *,
.pcfix * #bc-tmpl .slick-dots button:before *,
#bc-tmpl .slick-dots .pcfix * button:before *,
.pcfix * .product.buy .thumb:before *,
.product.buy .pcfix * .thumb:before *,
.pcfix * .credits * *,
.credits .pcfix * * * {
    font-size: 3.1vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .fsXS *,
.pcfix * #bc-tmpl .fnav a *,
#bc-tmpl .fnav .pcfix * a * {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsXS *,
.pcfix * #bc-tmpl .fnav a *,
#bc-tmpl .fnav .pcfix * a * {
    font-size: 2.9vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .fsXXS * {
    font-size: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsXXS * {
    font-size: 2.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .fsXXXS * {
    font-size: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .pcfix * .fsXXXS * {
    font-size: 2vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcfix * .pcfsXXXXL * {
    line-height: 100%;
    font-size: 130px;
  }
  .pcfix * .pcfsXXXL * {
    line-height: 100%;
    font-size: 70px;
  }
  .pcfix * .pcfsXXL * {
    line-height: 100%;
    font-size: 50px;
  }
  .pcfix * .pcfsXL * {
    line-height: 120%;
    font-size: 38px;
  }
  .pcfix * .pcfsL * {
    line-height: 130%;
    font-size: 27px;
  }
  .pcfix * .pcfsL * {
    font-size: 24px;
  }
  .pcfix * .pcfsM * {
    font-size: 19px;
  }
  .pcfix * .pcfsSM * {
    font-size: 16px;
  }
  .pcfix * .pcfsS * {
    font-size: 14px;
  }
  .pcfix * .pcfsXS * {
    font-size: 12px;
  }
  .pcfix * .pcfsXXS * {
    font-size: 10px;
  }
  .pcfix * .pcfsXXXS * {
    font-size: 8px;
  }
}
@media only screen and (min-width: 769px) {
  .rp10 {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp10 {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp20 {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp20 {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp30 {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp30 {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp40 {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp40 {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp50 {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp50 {
    padding-top: 25vw;
    padding-bottom: 25vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp70 {
    padding-top: 14vw;
    padding-bottom: 14vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp70 {
    padding-top: 35vw;
    padding-bottom: 35vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp100 {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp100 {
    padding-top: 50vw;
    padding-bottom: 50vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp150 {
    padding-top: 30vw;
    padding-bottom: 30vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp150 {
    padding-top: 75vw;
    padding-bottom: 75vw;
  }
}
@media only screen and (min-width: 769px) {
  .rp200 {
    padding-top: 40vw;
    padding-bottom: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .rp200 {
    padding-top: 100vw;
    padding-bottom: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt10 {
    padding-top: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt10 {
    padding-top: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt20 {
    padding-top: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt20 {
    padding-top: 10vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt30 {
    padding-top: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt30 {
    padding-top: 15vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt40 {
    padding-top: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt40 {
    padding-top: 20vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt50 {
    padding-top: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt50 {
    padding-top: 25vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt100 {
    padding-top: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt100 {
    padding-top: 50vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt150 {
    padding-top: 30vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt150 {
    padding-top: 75vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpt200 {
    padding-top: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpt200 {
    padding-top: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb10 {
    padding-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb10 {
    padding-bottom: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb20 {
    padding-bottom: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb20 {
    padding-bottom: 10vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb30 {
    padding-bottom: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb30 {
    padding-bottom: 15vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb40 {
    padding-bottom: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb40 {
    padding-bottom: 20vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb50 {
    padding-bottom: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb50 {
    padding-bottom: 25vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb100 {
    padding-bottom: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb100 {
    padding-bottom: 50vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb150 {
    padding-bottom: 30vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb150 {
    padding-bottom: 75vw;
  }
}
@media only screen and (min-width: 769px) {
  .rpb200 {
    padding-bottom: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .rpb200 {
    padding-bottom: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcp10 {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }
  .pcp20 {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
  .pcp30 {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }
  .pcp40 {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
  .pcp50 {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  .pcp100 {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .pcp150 {
    padding-top: 30vw;
    padding-bottom: 30vw;
  }
  .pcp200 {
    padding-top: 40vw;
    padding-bottom: 40vw;
  }
  .pcpt10 {
    padding-top: 2vw;
  }
  .pcpt20 {
    padding-top: 4vw;
  }
  .pcpt30 {
    padding-top: 6vw;
  }
  .pcpt40 {
    padding-top: 8vw;
  }
  .pcpt50 {
    padding-top: 10vw;
  }
  .pcpt100 {
    padding-top: 20vw;
  }
  .pcpt150 {
    padding-top: 30vw;
  }
  .pcpt200 {
    padding-top: 40vw;
  }
  .pcpb10 {
    padding-bottom: 2vw;
  }
  .pcpb20 {
    padding-bottom: 4vw;
  }
  .pcpb30 {
    padding-bottom: 6vw;
  }
  .pcpb40 {
    padding-bottom: 8vw;
  }
  .pcpb50 {
    padding-bottom: 10vw;
  }
  .pcpb100 {
    padding-bottom: 20vw;
  }
  .pcpb150 {
    padding-bottom: 30vw;
  }
  .pcpb200 {
    padding-bottom: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .spp10 {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .spp20 {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  .spp30 {
    padding-top: 15vw;
    padding-bottom: 15vw;
  }
  .spp40 {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }
  .spp50 {
    padding-top: 25vw;
    padding-bottom: 25vw;
  }
  .spp100 {
    padding-top: 50vw;
    padding-bottom: 50vw;
  }
  .spp150 {
    padding-top: 75vw;
    padding-bottom: 75vw;
  }
  .spp200 {
    padding-top: 100vw;
    padding-bottom: 100vw;
  }
  .sppt10 {
    padding-top: 5vw;
  }
  .sppt20 {
    padding-top: 10vw;
  }
  .sppt30 {
    padding-top: 15vw;
  }
  .sppt40 {
    padding-top: 20vw;
  }
  .sppt50 {
    padding-top: 25vw;
  }
  .sppt100 {
    padding-top: 50vw;
  }
  .sppt150 {
    padding-top: 75vw;
  }
  .sppt200 {
    padding-top: 100vw;
  }
  .sppb10 {
    padding-bottom: 5vw;
  }
  .sppb20 {
    padding-bottom: 10vw;
  }
  .sppb30 {
    padding-bottom: 15vw;
  }
  .sppb40 {
    padding-bottom: 20vw;
  }
  .sppb50 {
    padding-bottom: 25vw;
  }
  .sppb100 {
    padding-bottom: 50vw;
  }
  .sppb150 {
    padding-bottom: 75vw;
  }
  .sppb200 {
    padding-bottom: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm10 {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm10 {
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm20 {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm20 {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm30 {
    margin-top: 6vw;
    margin-bottom: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm30 {
    margin-top: 15vw;
    margin-bottom: 15vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm40 {
    margin-top: 8vw;
    margin-bottom: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm40 {
    margin-top: 20vw;
    margin-bottom: 20vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm50 {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm50 {
    margin-top: 25vw;
    margin-bottom: 25vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm70 {
    margin-top: 14vw;
    margin-bottom: 14vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm70 {
    margin-top: 35vw;
    margin-bottom: 35vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm80 {
    margin-top: 16vw;
    margin-bottom: 16vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm80 {
    margin-top: 40vw;
    margin-bottom: 40vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm90 {
    margin-top: 18vw;
    margin-bottom: 18vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm90 {
    margin-top: 45vw;
    margin-bottom: 45vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm100 {
    margin-top: 20vw;
    margin-bottom: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm100 {
    margin-top: 50vw;
    margin-bottom: 50vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm150 {
    margin-top: 30vw;
    margin-bottom: 30vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm150 {
    margin-top: 75vw;
    margin-bottom: 75vw;
  }
}
@media only screen and (min-width: 769px) {
  .rm200 {
    margin-top: 40vw;
    margin-bottom: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .rm200 {
    margin-top: 100vw;
    margin-bottom: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt5 {
    margin-top: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt5 {
    margin-top: 2.5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt10 {
    margin-top: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt10 {
    margin-top: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt20 {
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt20 {
    margin-top: 10vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt30 {
    margin-top: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt30 {
    margin-top: 15vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt40 {
    margin-top: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt40 {
    margin-top: 20vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt50 {
    margin-top: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt50 {
    margin-top: 25vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt60 {
    margin-top: 12vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt60 {
    margin-top: 30vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt70 {
    margin-top: 14vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt70 {
    margin-top: 35vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt80 {
    margin-top: 16vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt80 {
    margin-top: 40vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt90 {
    margin-top: 18vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt90 {
    margin-top: 45vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt100 {
    margin-top: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt100 {
    margin-top: 50vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt150 {
    margin-top: 30vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt150 {
    margin-top: 75vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmt200 {
    margin-top: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmt200 {
    margin-top: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb5 {
    margin-bottom: 1vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb5 {
    margin-bottom: 2.5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb10 {
    margin-bottom: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb10 {
    margin-bottom: 5vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb20 {
    margin-bottom: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb20 {
    margin-bottom: 10vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb30 {
    margin-bottom: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb30 {
    margin-bottom: 15vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb40 {
    margin-bottom: 8vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb40 {
    margin-bottom: 20vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb50 {
    margin-bottom: 10vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb50 {
    margin-bottom: 25vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb60 {
    margin-bottom: 12vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb60 {
    margin-bottom: 30vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb70 {
    margin-bottom: 14vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb70 {
    margin-bottom: 35vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb80 {
    margin-bottom: 16vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb80 {
    margin-bottom: 40vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb90 {
    margin-bottom: 18vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb90 {
    margin-bottom: 45vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb100 {
    margin-bottom: 20vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb100 {
    margin-bottom: 50vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb150 {
    margin-bottom: 30vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb150 {
    margin-bottom: 75vw;
  }
}
@media only screen and (min-width: 769px) {
  .rmb200 {
    margin-bottom: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .rmb200 {
    margin-bottom: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .pcm10 {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  .pcm20 {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }
  .pcm30 {
    margin-top: 6vw;
    margin-bottom: 6vw;
  }
  .pcm40 {
    margin-top: 8vw;
    margin-bottom: 8vw;
  }
  .pcm50 {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
  .pcm60 {
    margin-top: 12vw;
    margin-bottom: 12vw;
  }
  .pcm70 {
    margin-top: 14vw;
    margin-bottom: 14vw;
  }
  .pcm80 {
    margin-top: 16vw;
    margin-bottom: 16vw;
  }
  .pcm90 {
    margin-top: 18vw;
    margin-bottom: 18vw;
  }
  .pcm100 {
    margin-top: 20vw;
    margin-bottom: 20vw;
  }
  .pcm150 {
    margin-top: 30vw;
    margin-bottom: 30vw;
  }
  .pcm200 {
    margin-top: 40vw;
    margin-bottom: 40vw;
  }
  .pcmt10 {
    margin-top: 2vw;
  }
  .pcmt20 {
    margin-top: 4vw;
  }
  .pcmt30 {
    margin-top: 6vw;
  }
  .pcmt40 {
    margin-top: 8vw;
  }
  .pcmt50 {
    margin-top: 10vw;
  }
  .pcmt60 {
    margin-top: 12vw;
  }
  .pcmt70 {
    margin-top: 14vw;
  }
  .pcmt80 {
    margin-top: 16vw;
  }
  .pcmt90 {
    margin-top: 18vw;
  }
  .pcmt100 {
    margin-top: 20vw;
  }
  .pcmt150 {
    margin-top: 30vw;
  }
  .pcmt200 {
    margin-top: 40vw;
  }
  .pcmb10 {
    margin-bottom: 2vw;
  }
  .pcmb20 {
    margin-bottom: 4vw;
  }
  .pcmb30 {
    margin-bottom: 6vw;
  }
  .pcmb40 {
    margin-bottom: 8vw;
  }
  .pcmb50 {
    margin-bottom: 10vw;
  }
  .pcmb60 {
    margin-bottom: 12vw;
  }
  .pcmb70 {
    margin-bottom: 14vw;
  }
  .pcmb80 {
    margin-bottom: 16vw;
  }
  .pcmb90 {
    margin-bottom: 18vw;
  }
  .pcmb100 {
    margin-bottom: 20vw;
  }
  .pcmb150 {
    margin-bottom: 30vw;
  }
  .pcmb200 {
    margin-bottom: 40vw;
  }
}
@media only screen and (max-width: 768px) {
  .spm10 {
    margin-top: 5vw;
    margin-bottom: 5vw;
  }
  .spm20 {
    margin-top: 10vw;
    margin-bottom: 10vw;
  }
  .spm30 {
    margin-top: 15vw;
    margin-bottom: 15vw;
  }
  .spm40 {
    margin-top: 20vw;
    margin-bottom: 20vw;
  }
  .spm50 {
    margin-top: 25vw;
    margin-bottom: 25vw;
  }
  .spm60 {
    margin-top: 30vw;
    margin-bottom: 30vw;
  }
  .spm70 {
    margin-top: 35vw;
    margin-bottom: 35vw;
  }
  .spm80 {
    margin-top: 40vw;
    margin-bottom: 40vw;
  }
  .spm90 {
    margin-top: 45vw;
    margin-bottom: 45vw;
  }
  .spm100 {
    margin-top: 50vw;
    margin-bottom: 50vw;
  }
  .spm150 {
    margin-top: 75vw;
    margin-bottom: 75vw;
  }
  .spm200 {
    margin-top: 100vw;
    margin-bottom: 100vw;
  }
  .spmt10 {
    margin-top: 5vw;
  }
  .spmt20 {
    margin-top: 10vw;
  }
  .spmt30 {
    margin-top: 15vw;
  }
  .spmt40 {
    margin-top: 20vw;
  }
  .spmt50 {
    margin-top: 25vw;
  }
  .spmt60 {
    margin-top: 30vw;
  }
  .spmt70 {
    margin-top: 35vw;
  }
  .spmt80 {
    margin-top: 40vw;
  }
  .spmt90 {
    margin-top: 45vw;
  }
  .spmt100 {
    margin-top: 50vw;
  }
  .spmt150 {
    margin-top: 75vw;
  }
  .spmt200 {
    margin-top: 100vw;
  }
  .spmb10 {
    margin-bottom: 5vw;
  }
  .spmb20 {
    margin-bottom: 10vw;
  }
  .spmb30 {
    margin-bottom: 15vw;
  }
  .spmb40 {
    margin-bottom: 20vw;
  }
  .spmb50 {
    margin-bottom: 25vw;
  }
  .spmb60 {
    margin-bottom: 30vw;
  }
  .spmb70 {
    margin-bottom: 35vw;
  }
  .spmb80 {
    margin-bottom: 40vw;
  }
  .spmb90 {
    margin-bottom: 45vw;
  }
  .spmb100 {
    margin-bottom: 50vw;
  }
  .spmb150 {
    margin-bottom: 75vw;
  }
  .spmb200 {
    margin-bottom: 100vw;
  }
}
@media only screen and (min-width: 769px) {
  .pconly {
    display: block;
  }
  .sponly {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .sponly {
    display: block;
  }
  .pconly {
    display: none !important;
  }
}
/* .fontjp1 {     font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Original Yu Gothic", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;     font-weight: 300; } .fontjp2 {     font-family: 'Lora', 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;     font-weight: 400 !important; } .fontjp3 {     font-family: 'Roboto+Condensed', 'Roboto', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Original Yu Gothic", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;     font-weight: 400; } .fontjp4 {     font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;     font-weight: 500; } .font5 {     font-family: "Barlow Condensed", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif !important;     font-weight: 500 !important; } .font6 {     font-family: "Barlow Condensed", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif !important;     font-weight: 300 !important; } .en-font {     font-family: 'Roboto+Condensed'; } .en-font3 {     font-family: 'Montserrat', 'Roboto', sans-serif; } .jp-font {     font-family: 'Roboto', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif; } .jp-font-selif {     font-family: 'Hiragino Mincho ProN', serif; } */
.lh100 {
  line-height: 100% !important;
}

.lh110 {
  line-height: 110% !important;
}

.lh120 {
  line-height: 120% !important;
}

.lh130 {
  line-height: 130% !important;
}

.lh140 {
  line-height: 140% !important;
}

.lh150 {
  line-height: 150% !important;
}

.lh160 {
  line-height: 160% !important;
}

.lh170 {
  line-height: 170% !important;
}

.lh180 {
  line-height: 180% !important;
}

.lh190 {
  line-height: 190% !important;
}

.lh200 {
  line-height: 200% !important;
}

.relative {
  position: relative;
}

.absolute {
  position: relative;
}

.fixed {
  position: relative;
}

.hidden {
  display: none !important;
}

.bold {
  font-weight: bold;
}

.marker1 {
  background: linear-gradient(transparent 60%, #e4c546 0%);
}

.marker2 {
  display: inline;
  padding: 10px 0px;
  background: #e4c546;
}

.marker3 {
  background: linear-gradient(transparent 60%, #840606 0%);
}

.taC {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .taCSP {
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .taCPC {
    text-align: center;
  }
}
.taR {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .taRSP {
    text-align: right;
  }
}
@media only screen and (min-width: 769px) {
  .taRPC {
    text-align: right;
  }
}
.taL {
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .taLSP {
    text-align: left;
  }
}
@media only screen and (min-width: 769px) {
  .taLPC {
    text-align: left;
  }
}
.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

@media only screen and (min-width: 769px) {
  .absolutePC {
    position: absolute;
  }
  .relativePC {
    position: relative;
  }
  .fixedPC {
    position: fixed;
  }
}
@media only screen and (max-width: 768px) {
  .absoluteSP {
    position: absolute;
  }
  .relativeSP {
    position: relative;
  }
  .fixedSP {
    position: fixed;
  }
}
.imgW img,
.imgW video {
  width: 100%;
  height: auto;
}

.imgH img,
.imgH video {
  width: auto;
  height: 100%;
}

.imgC img,
.imgC video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.w100vw {
  width: 100vw;
  position: relative;
  left: calc(50% - 50vw);
}

@media only screen and (min-width: 769px) {
  .pcw100vw {
    width: 100vw;
    position: relative;
    left: calc(50% - 50vw);
  }
}
@media only screen and (max-width: 768px) {
  .spw100vw {
    width: 100vw;
    position: relative;
    left: calc(50% - 50vw);
  }
}
.fcRed {
  color: #840606;
}

.fcWhite {
  color: #fff;
}

.fcBlack {
  color: #000;
}

.bgWhite {
  background: #fff;
}

.bgBlack {
  background: #000;
}

.bgBlack * {
  color: #fff;
}

.bgGray {
  background: #f5f5f5;
}

.multiply {
  mix-blend-mode: multiply;
}

.r45 {
  transform: rotate(45deg);
}

.r90 {
  transform: rotate(90deg);
}

.r135 {
  transform: rotate(135deg);
}

.r180 {
  transform: rotate(180deg);
}

.r225 {
  transform: rotate(225deg);
}

.r270 {
  transform: rotate(270deg);
}

.r315 {
  transform: rotate(315deg);
}

.ico40 {
  display: block;
  width: 40px;
  margin-left: auto;
  margin-right: auto;
}

.mt0vw {
  margin-top: 0vw;
}

.mt5vw {
  margin-top: 5vw;
}

.mt10vw {
  margin-top: 10vw;
}

.mt20vw {
  margin-top: 20vw;
}

.mt30vw {
  margin-top: 30vw;
}

.mt40vw {
  margin-top: 40vw;
}

.mt50vw {
  margin-top: 50vw;
}

.mt100vw {
  margin-top: 100vw;
}

@media only screen and (min-width: 769px) {
  .pcmt0vw {
    margin-top: 0vw;
  }
  .pcmt5vw {
    margin-top: 5vw;
  }
  .pcmt10vw {
    margin-top: 10vw;
  }
  .pcmt20vw {
    margin-top: 20vw;
  }
  .pcmt30vw {
    margin-top: 30vw;
  }
  .pcmt40vw {
    margin-top: 40vw;
  }
  .pcmt50vw {
    margin-top: 50vw;
  }
  .pcmt100vw {
    margin-top: 100vw;
  }
}
@media only screen and (max-width: 768px) {
  .spmt0vw {
    margin-top: 0vw;
  }
  .spmt5vw {
    margin-top: 5vw;
  }
  .spmt10vw {
    margin-top: 10vw;
  }
  .spmt20vw {
    margin-top: 20vw;
  }
  .spmt30vw {
    margin-top: 30vw;
  }
  .spmt40vw {
    margin-top: 40vw;
  }
  .spmt50vw {
    margin-top: 50vw;
  }
  .spmt100vw {
    margin-top: 100vw;
  }
}
.mb0vw {
  margin-bottom: 0vw;
}

.mb10vw {
  margin-bottom: 10vw;
}

.mb20vw {
  margin-bottom: 20vw;
}

.mb30vw {
  margin-bottom: 30vw;
}

.mb40vw {
  margin-bottom: 40vw;
}

.mb50vw {
  margin-bottom: 50vw;
}

.mb100vw {
  margin-bottom: 100vw;
}

@media only screen and (min-width: 769px) {
  .pcmb0vw {
    margin-bottom: 0vw;
  }
  .pcmb5vw {
    margin-bottom: 5vw;
  }
  .pcmb10vw {
    margin-bottom: 10vw;
  }
  .pcmb20vw {
    margin-bottom: 20vw;
  }
  .pcmb30vw {
    margin-bottom: 30vw;
  }
  .pcmb40vw {
    margin-bottom: 40vw;
  }
  .pcmb50vw {
    margin-bottom: 50vw;
  }
  .pcmb100vw {
    margin-bottom: 100vw;
  }
}
@media only screen and (max-width: 768px) {
  .spmb0vw {
    margin-bottom: 0vw;
  }
  .spmb5vw {
    margin-bottom: 5vw;
  }
  .spmb10vw {
    margin-bottom: 10vw;
  }
  .spmb20vw {
    margin-bottom: 20vw;
  }
  .spmb30vw {
    margin-bottom: 30vw;
  }
  .spmb40vw {
    margin-bottom: 40vw;
  }
  .spmb50vw {
    margin-bottom: 50vw;
  }
  .spmb100vw {
    margin-bottom: 100vw;
  }
}
.w40px {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
}

.w10 {
  width: 10% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w15 {
  width: 15% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w20 {
  width: 20% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w30 {
  width: 30% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w40 {
  width: 40% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w50 {
  width: 50% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w60 {
  width: 60% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w70 {
  width: 70% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w80 {
  width: 80% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.w90 {
  width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media only screen and (min-width: 769px) {
  .w10pc {
    width: 10% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w15pc {
    width: 15% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w20pc {
    width: 20% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w30pc {
    width: 30% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w40pc {
    width: 40% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w50pc {
    width: 50% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w60pc {
    width: 60% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w70pc {
    width: 70% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w80pc {
    width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w90pc {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media only screen and (max-width: 768px) {
  .w10sp {
    width: 10% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w15sp {
    width: 15% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w20sp {
    width: 20% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w30sp {
    width: 30% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w40sp {
    width: 40% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w50sp {
    width: 50% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w60sp {
    width: 60% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w70sp {
    width: 70% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w80sp {
    width: 80% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w86sp {
    width: 86% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .w90sp {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.youtube,
.iframe {
  position: relative;
  overflow: hidden;
}

.youtube:after,
.iframe:after {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.youtube iframe,
.youtube video,
.iframe iframe,
.iframe video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100% !important;
}

.clearfix:after {
  content: "";
  font-size: 0.1em;
  line-height: 0;
  display: block;
  height: 0px;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1px;
}

.clearfix {
  display: block;
}

.absolute100 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
}

@media only screen and (min-width: 769px) {
  .flex-pc2,
.flex-pc3,
.flex-pc4 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .flex-pc1-sp2,
.flex-sp2,
.flex-sp3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.flex-pc2-sp2,
.flex-pc2-sp1,
.flex-pc3-sp1,
.flex-pc3-sp2,
.flex-pc3-sp3,
.flex-pc4-sp1,
.flex-pc4-sp2,
.flex-pc4-sp4,
.flex-pc5-sp2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.flex-pc2-sp1 > div,
.flex-pc2-sp1 > li,
.flex-pc3-sp1 > div,
.flex-pc3-sp1 > li,
.flex-sp1 > div,
.flex-sp1 > li {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .flex-pc2-sp1,
.flex-pc3-sp1,
.flex-sp1 {
    flex-direction: column;
  }
  .flex-pc2-sp1 > div + div,
.flex-pc2-sp1 > li + li,
.flex-pc3-sp1 > div + div,
.flex-pc3-sp1 > li + li,
.flex-sp1 > div + div,
.flex-sp1 > li + li {
    margin-top: 4.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .flex-pc1-sp2 > div,
.flex-pc1-sp2 > li,
.flex-sp2 > div,
.flex-sp2 > li,
.flex-pc2-sp2 > div,
.flex-pc2-sp2 > li,
.flex-pc3-sp2 > div,
.flex-pc3-sp2 > li,
.flex-pc4-sp2 > div,
.flex-pc4-sp2 > li,
.flex-pc5-sp2 > div,
.flex-pc5-sp2 > li {
    width: calc((100% - 4vw) / 2);
  }
  .flex-pc1-sp2 > div:nth-child(n+3),
.flex-pc1-sp2 > li:nth-child(n+3),
.flex-sp2 > div:nth-child(n+3),
.flex-sp2 > li:nth-child(n+3),
.flex-pc2-sp2 > div:nth-child(n+3),
.flex-pc2-sp2 > li:nth-child(n+3),
.flex-pc3-sp2 > div:nth-child(n+3),
.flex-pc3-sp2 > li:nth-child(n+3),
.flex-pc4-sp2 > div:nth-child(n+3),
.flex-pc4-sp2 > li:nth-child(n+3),
.flex-pc5-sp2 > div:nth-child(n+3),
.flex-pc5-sp2 > li:nth-child(n+3) {
    margin-top: 4.4vw;
  }
}
@media only screen and (min-width: 769px) {
  .flex-pc2 > div,
.flex-pc2 > li,
.flex-pc2-sp1 > div,
.flex-pc2-sp1 > li,
.flex-pc2-sp2 > div,
.flex-pc2-sp2 > li {
    width: calc((100% - 3vw) / 2);
  }
  .flex-pc2 > div:nth-child(n+3),
.flex-pc2 > li:nth-child(n+3),
.flex-pc2-sp1 > div:nth-child(n+3),
.flex-pc2-sp1 > li:nth-child(n+3),
.flex-pc2-sp2 > div:nth-child(n+3),
.flex-pc2-sp2 > li:nth-child(n+3) {
    margin-top: 3vw;
  }
}
@media only screen and (min-width: 769px) {
  .flex-pc3 > div,
.flex-pc3 > li,
.flex-pc3-sp1 > div,
.flex-pc3-sp1 > li,
.flex-pc3-sp2 > div,
.flex-pc3-sp2 > li,
.flex-pc3-sp3 > div,
.flex-pc3-sp3 > li {
    width: calc((100% - 3vw - 3vw) / 3);
  }
  .flex-pc3 > div:nth-child(n+4),
.flex-pc3 > li:nth-child(n+4),
.flex-pc3-sp1 > div:nth-child(n+4),
.flex-pc3-sp1 > li:nth-child(n+4),
.flex-pc3-sp2 > div:nth-child(n+4),
.flex-pc3-sp2 > li:nth-child(n+4),
.flex-pc3-sp3 > div:nth-child(n+4),
.flex-pc3-sp3 > li:nth-child(n+4) {
    margin-top: 3vw;
  }
}
@media only screen and (max-width: 768px) {
  .flex-pc3-sp3 > div,
.flex-pc3-sp3 > li {
    width: calc((100% - 3vw - 3vw) / 3);
  }
  .flex-pc3-sp3 > div:nth-child(n+4),
.flex-pc3-sp3 > li:nth-child(n+4) {
    margin-top: 3vw;
  }
}
@media only screen and (min-width: 769px) {
  .flex-pc4 > div,
.flex-pc4 > li,
.flex-pc4-sp1 > div,
.flex-pc4-sp1 > li,
.flex-pc4-sp2 > div,
.flex-pc4-sp2 > li,
.flex-pc4-sp4 > div,
.flex-pc4-sp4 > li {
    width: calc((100% - 3vw - 3vw - 3vw) / 4);
  }
  .flex-pc4 > div:nth-child(n+5),
.flex-pc4 > li:nth-child(n+5),
.flex-pc4-sp1 > div:nth-child(n+5),
.flex-pc4-sp1 > li:nth-child(n+5),
.flex-pc4-sp2 > div:nth-child(n+5),
.flex-pc4-sp2 > li:nth-child(n+5),
.flex-pc4-sp4 > div:nth-child(n+5),
.flex-pc4-sp4 > li:nth-child(n+5) {
    margin-top: 3vw;
  }
}
@media only screen and (min-width: 769px) {
  .flex-pc5 > div,
.flex-pc5 > li,
.flex-pc5-sp1 > div,
.flex-pc5-sp1 > li,
.flex-pc5-sp2 > div,
.flex-pc5-sp2 > li {
    width: calc((100% - 3vw - 3vw - 3vw - 3vw) / 5);
  }
  .flex-pc5 > div:nth-child(n+6),
.flex-pc5 > li:nth-child(n+6),
.flex-pc5-sp1 > div:nth-child(n+6),
.flex-pc5-sp1 > li:nth-child(n+6),
.flex-pc5-sp2 > div:nth-child(n+6),
.flex-pc5-sp2 > li:nth-child(n+6) {
    margin-top: 3vw;
  }
}
@media only screen and (max-width: 768px) {
  .flex-pc4-sp4 > div,
.flex-pc4-sp4 > li {
    width: calc((100% - 4vw - 4vw - 4vw) / 4);
  }
  .flex-pc4-sp4 > div:nth-child(n+5),
.flex-pc4-sp4 > li:nth-child(n+5) {
    margin-top: 4vw;
  }
}
.centery {
  align-self: center;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.order3 {
  order: 3;
}

.order4 {
  order: 4;
}

.order5 {
  order: 5;
}

.order6 {
  order: 6;
}

.order7 {
  order: 7;
}

.order8 {
  order: 8;
}

@media only screen and (min-width: 769px) {
  .orderpc1 {
    order: 1;
  }
  .orderpc2 {
    order: 2;
  }
  .orderpc3 {
    order: 3;
  }
  .orderpc4 {
    order: 4;
  }
  .orderpc5 {
    order: 5;
  }
  .orderpc6 {
    order: 6;
  }
  .orderpc7 {
    order: 7;
  }
  .orderpc8 {
    order: 8;
  }
}
@media only screen and (max-width: 768px) {
  .ordersp1 {
    order: 1;
  }
  .ordersp2 {
    order: 2;
  }
  .ordersp3 {
    order: 3;
  }
  .ordersp4 {
    order: 4;
  }
  .ordersp5 {
    order: 5;
  }
  .ordersp6 {
    order: 6;
  }
  .ordersp7 {
    order: 7;
  }
  .ordersp8 {
    order: 8;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-y {
  flex-direction: column;
}

.flex-left {
  justify-content: flex-start;
}

.flex-right {
  justify-content: flex-end;
}

.flex-top {
  align-items: flex-start;
}

.flex-bottom {
  align-items: flex-end;
}

.flexself_center {
  align-self: center;
}

.flexself_left {
  align-self: flex-start;
}

.flexself_right {
  align-self: flex-end;
}

@media screen and (max-width: 948px) {
  .all {
    max-width: 100%;
  }
}
.logo100px {
  width: 100px;
}

.logo120px {
  width: 120px;
}

.bgGray {
  background: rgba(0, 0, 0, 0.5);
}

.bgBlack {
  background: #000;
  color: #fff;
}

.bgBlack * {
  color: #fff;
}

.bgWhite {
  background: #000;
  color: #000;
}

.bgWhite * {
  color: #000;
}

/* .slick .onslidedots//ドット画像の上 .slick-arrow-img//画像矢印 */
.slick-for {
  height: 100%;
}

.slick-active {
  opacity: 1 !important;
  z-index: 10;
}

.slick-prev,
.slick-next {
  margin: 0px;
  padding: 0px;
  position: absolute;
  z-index: 2 !important;
  position: absolute !important;
}

@media only screen and (min-width: 769px) {
  .slick-prev,
.slick-next {
    top: calc(50% - 20px);
    width: 40px !important;
    height: 40px !important;
  }
}
@media only screen and (max-width: 768px) {
  .slick-prev,
.slick-next {
    top: calc(50% - 15px);
    width: 30px !important;
    height: 30px !important;
  }
}
@media only screen and (min-width: 769px) {
  .slick-prev {
    left: 1vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .slick-prev {
    left: 3vw !important;
  }
}
@media only screen and (min-width: 769px) {
  .slick-next {
    right: 1vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .slick-next {
    right: 3vw !important;
  }
}
.tapnext .slick-prev {
  display: none !important;
}

.tapnext .slick-next {
  position: absolute !important;
  transform: translate(0, 0) !important;
  background: rgba(255, 0, 0, 0.5);
  opacity: 0;
  width: 100% !important;
  height: 100% !important;
  top: 0px !important;
  left: 0px !important;
  bottom: 0px !important;
  right: 0px !important;
}

.slick-arrow-img .slick-prev {
  background: url("https://feature-tool.bcg.staff-start.com/assets/uploads/202210/6a7a0115-4ebe-4ab1-9002-32f25b20e62b/assets/img/arrowL.png") no-repeat center center;
  background-size: contain;
}

.slick-arrow-img .slick-prev:before {
  display: none;
}

.slick-arrow-img .slick-next {
  background: url("https://feature-tool.bcg.staff-start.com/assets/uploads/202210/6a7a0115-4ebe-4ab1-9002-32f25b20e62b/assets/img/arrowR.png") no-repeat center center;
  background-size: contain;
}

.slick-arrow-img .slick-next:before {
  display: none;
}

.slick-arrow1 .slick-prev,
.slick-arrow1 .slick-next {
  background: #000;
}

.slick-arrow1 .slick-prev:hover,
.slick-arrow1 .slick-next:hover {
  background: #000;
}

.slick-arrow1 .slick-prev:before,
.slick-arrow1 .slick-next:before {
  opacity: 1;
  content: "";
  display: block;
  position: absolute;
  top: 34%;
}

@media only screen and (min-width: 769px) {
  .slick-arrow1 .slick-prev:before,
.slick-arrow1 .slick-next:before {
    width: 12px;
    height: 12px;
    border-top: solid 0.2vw #fff;
    border-right: solid 0.2vw #fff;
  }
}
@media only screen and (max-width: 768px) {
  .slick-arrow1 .slick-prev:before,
.slick-arrow1 .slick-next:before {
    width: 9px;
    height: 9px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
  }
}
.slick-arrow1 .slick-prev:before {
  left: 35% !important;
  transform: rotate(-135deg);
}

.slick-arrow1 .slick-next:before {
  right: 35% !important;
  transform: rotate(45deg);
}

.slick-arrow2 .slick-prev:before,
.slick-arrow2 .slick-next:before {
  display: none;
}

.slick-arrow2 .slick-prev {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

@media only screen and (min-width: 769px) {
  .slick-arrow2 .slick-prev {
    border-width: 13.3333333333px 20px 13.3333333333px 0;
  }
}
@media only screen and (max-width: 768px) {
  .slick-arrow2 .slick-prev {
    border-width: 10px 15px 10px 0;
  }
}
.slick-arrow2 .slick-next {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

@media only screen and (min-width: 769px) {
  .slick-arrow2 .slick-next {
    border-width: 13.3333333333px 0 13.3333333333px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .slick-arrow2 .slick-next {
    border-width: 10px 0 10px 15px;
  }
}
.slick-dots li button:before {
  content: "" !important;
  background: #444548 !important;
  opacity: 1 !important;
  width: 24px !important;
  height: 2px !important;
  color: transparent !important;
}

.slick-dots li.slick-active button:before {
  content: "" !important;
  width: 24px !important;
  height: 2px !important;
  background-color: #fff !important;
  opacity: 1 !important;
  color: transparent !important;
}

.slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 13px;
}

.onslidedots {
  position: relative;
}

@media only screen and (min-width: 769px) {
  .onslidedots .slick-dots {
    bottom: 10px !important;
  }
}
@media only screen and (max-width: 768px) {
  .onslidedots .slick-dots {
    bottom: 10px !important;
  }
}
.slick-dots li {
  margin: 0px !important;
}

.slick-nav .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.thumnail .slick-slide {
  display: block !important;
  float: none !important;
  flex: 0 0 47.5%;
}

/* .slick-prev, .slick-next {     z-index: 4;     z-index: 10 !important;     position: absolute !important;     background: #fff;     border: 2px solid #000;     &:before {         display: none;     }     @media only screen and (min-width: 769px) {         position: absolute;         top: calc(50% - 1.2vw);         width: 2.4vw;         height: 2.4vw;         border-top: solid .5vw #000;         border-right: solid .5vw #000;     }     @media only screen and (max-width:768px) {         position: absolute;         top: calc(50% - 10px);         width: 20px;         height: 20px;         border-top: solid 3px #000;         border-right: solid 3px #000;     } } .slick-prev {     @media only screen and (min-width: 769px) {         left: 11vw !important;     }     @media only screen and (max-width:768px) {         left: 50vw !important;     }     transform: rotate(-135deg); } .slick-next {     @media only screen and (min-width: 769px) {         right: 11vw !important;     }     @media only screen and (max-width:768px) {         right: 116vw !important;     }     transform: rotate(45deg); } */
/* 　縦　/ 横 928 / 1259 =1398 option popnav-plusプラスアイコン .scrl-closeスクロールで削除 .type1シンプル .type2上下コンテンツ .type3重なり横移動 */
/* popnav クリック対象 */
.popnav {
  cursor: pointer;
  position: relative;
}

.popnav.popnav-plus:before {
  content: "+" !important;
  display: block;
  text-align: center;
  font-weight: normal;
  opacity: 1;
  color: #fff;
  background: black;
  position: absolute;
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  .popnav.popnav-plus:before {
    bottom: 8px;
    right: 8px;
    line-height: 30px;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .popnav.popnav-plus:before {
    bottom: 5px;
    right: 5px;
    line-height: 18px;
    width: 20px;
    height: 20px;
  }
}
.popon #popup {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.5s ease;
}

.openpop {
  cursor: pointer;
}

#popup {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: auto;
  z-index: 100;
  background: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

#popup.scrl-close {
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
}

#popup .pop-main {
  position: relative;
  z-index: 1;
}

#popup .pop-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  z-index: 0;
  pointer-events: none;
}

@media only screen and (min-width: 769px) {
  #popup .pop-bg {
    height: 1000vh;
  }
}
@media only screen and (max-width: 768px) {
  #popup .pop-bg {
    height: 10000vh;
  }
}
#popup * {
  color: #fff;
}

#popup p {
  margin: 0px;
}

#popup .pop-prev,
#popup .pop-next {
  visibility: hidden;
  pointer-events: none;
  top: calc(50% - 25px);
}

@media only screen and (min-width: 769px) {
  #popup .pop-prev,
#popup .pop-next {
    position: absolute;
    width: 70px;
    height: 50px;
  }
  #popup .pop-prev img,
#popup .pop-next img {
    position: absolute;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #popup .pop-prev,
#popup .pop-next {
    position: absolute;
    width: 50%;
    height: 137vw;
  }
  #popup .pop-prev img,
#popup .pop-next img {
    position: absolute;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
  }
}
#popup .pop-prev img {
  left: 0px;
}

@media only screen and (min-width: 769px) {
  #popup .pop-prev {
    left: calc(50% - 26.6666666667vh - 70px - 2vw);
  }
}
@media only screen and (max-width: 768px) {
  #popup .pop-prev {
    left: calc(7vw - 12px);
  }
}
#popup .pop-next img {
  right: 0px;
  transform: rotate(180deg);
}

@media only screen and (min-width: 769px) {
  #popup .pop-next {
    right: calc(50% - 26.6666666667vh - 70px + 2vw);
  }
}
@media only screen and (max-width: 768px) {
  #popup .pop-next {
    right: calc(7vw - 12px);
  }
}
#popup .pop-close {
  cursor: pointer;
  z-index: 100;
  pointer-events: auto;
  background: #000;
}

@media only screen and (min-width: 769px) {
  #popup .pop-close {
    position: fixed;
    width: 30px;
    height: 30px;
    right: 15px;
    top: 15px;
    border: 10px solid #000;
  }
}
@media only screen and (max-width: 768px) {
  #popup .pop-close {
    position: fixed;
    width: 24px;
    height: 24px;
    right: 5%;
    top: 30px;
    z-index: 1000;
    border: 3px solid #000;
  }
}
#popup .pop-close:before {
  content: "";
  display: block;
  background: #fff;
  transform: rotate(45deg);
  top: 48%;
  width: 144%;
  left: -20%;
  position: absolute;
}

@media only screen and (min-width: 769px) {
  #popup .pop-close:before {
    height: 1px;
  }
}
@media only screen and (max-width: 768px) {
  #popup .pop-close:before {
    height: 1px;
  }
}
#popup .pop-close:after {
  content: "";
  display: block;
  background: #fff;
  transform: rotate(-45deg);
  top: 48%;
  width: 144%;
  left: -22%;
  position: absolute;
}

@media only screen and (min-width: 769px) {
  #popup .pop-close:after {
    height: 1px;
  }
}
@media only screen and (max-width: 768px) {
  #popup .pop-close:after {
    height: 1px;
  }
}
#popup .slick-dotted.slick-slider {
  margin-bottom: 0px;
}

#popup.type1 {
  height: 100vh;
}

@media only screen and (min-width: 769px) {
  #popup.type1 .pop-main {
    position: absolute;
    top: 10vh;
    left: 15vh;
    width: calc(100vw - 30vh);
    height: 80vh !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    z-index: 1;
  }
}
@media only screen and (max-width: 768px) {
  #popup.type1 .pop-main {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 300vh !important;
  }
}
#popup.type1 .popcon {
  display: none;
}

#popup.type1 .popcon.on {
  display: block;
}

#popup.type1 .popcon {
  height: 100%;
}

@media only screen and (min-width: 769px) {
  #popup.type1 .popcon .flexpc {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
#popup.type1 .popcon .main-img {
  height: 100%;
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  #popup.type1 .popcon .main-img {
    position: relative;
    order: 1;
    width: 53.3333333333vh;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #popup.type1 .popcon .main-img {
    width: 86vw;
    height: 129vw;
    margin: 7vw;
  }
}
#popup.type1 .popcon .main-img .slide {
  height: 100%;
}

@media only screen and (min-width: 769px) {
  #popup.type1 .popcon .subcon {
    order: 2;
    width: calc(100% - 53.3333333333vh - 7vw);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  #popup.type1 .popcon .subcon {
    margin: 0 7vw 7vw;
    padding-bottom: 100px;
  }
}
#popup.type2 {
  position: fixed !important;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow-y: scroll;
}

@media only screen and (min-width: 769px) {
  #popup.type2 .pop-main {
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - 20vh);
  }
}
@media only screen and (max-width: 768px) {
  #popup.type2 .pop-main {
    margin-top: 0vw;
    margin-bottom: 0vw;
  }
}
@media only screen and (min-width: 769px) {
  #popup.type2 .popcon {
    padding: 10vh 0px;
  }
}
@media only screen and (max-width: 768px) {
  #popup.type2 .popcon {
    padding: 7vw 0px;
    height: 180vw;
  }
}
@media only screen and (min-width: 769px) {
  #popup.type2 .popcon .flexpc {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
#popup.type2 .popcon .main-img {
  height: 100%;
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  #popup.type2 .popcon .main-img {
    position: relative;
    order: 1;
    width: 53.3333333333vh;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #popup.type2 .popcon .main-img {
    width: 86vw;
    height: 129vw;
    margin: 0 7vw 14vw;
  }
}
#popup.type2 .popcon .main-img .slide {
  height: 100%;
}

@media only screen and (min-width: 769px) {
  #popup.type2 .popcon .subcon {
    order: 2;
    width: calc(100% - 53.3333333333vh - 7vw);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  #popup.type2 .popcon .subcon {
    margin: 0 7vw 7vw;
  }
}
.pop-on01 .pop-type3 #pop-con01,
.pop-on02 .pop-type3 #pop-con02,
.pop-on03 .pop-type3 #pop-con03,
.pop-on04 .pop-type3 #pop-con04,
.pop-on05 .pop-type3 #pop-con05,
.pop-on06 .pop-type3 #pop-con06,
.pop-on07 .pop-type3 #pop-con07,
.pop-on08 .pop-type3 #pop-con08,
.pop-on09 .pop-type3 #pop-con09,
.pop-on10 .pop-type3 #pop-con10,
.pop-on11 .pop-type3 #pop-con11,
.pop-on12 .pop-type3 #pop-con12,
.pop-on13 .pop-type3 #pop-con13,
.pop-on14 .pop-type3 #pop-con14,
.pop-on15 .pop-type3 #pop-con15,
.pop-on16 .pop-type3 #pop-con16,
.pop-on17 .pop-type3 #pop-con17,
.pop-on18 .pop-type3 #pop-con18,
.pop-on19 .pop-type3 #pop-con19,
.pop-on20 .pop-type3 #pop-con20,
.pop-on21 .pop-type3 #pop-con21,
.pop-on22 .pop-type3 #pop-con22,
.pop-on23 .pop-type3 #pop-con23,
.pop-on24 .pop-type3 #pop-con24,
.pop-on25 .pop-type3 #pop-con25,
.pop-on26 .pop-type3 #pop-con26,
.pop-on27 .pop-type3 #pop-con27,
.pop-on28 .pop-type3 #pop-con28,
.pop-on29 .pop-type3 #pop-con29,
.pop-on30 .pop-type3 #pop-con30 {
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  #popup.pop-type3 {
    height: 100%;
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 768px) {
  #popup.pop-type3 {
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 769px) {
  #popup.pop-type3 .pop-main {
    position: absolute;
    top: 10vh;
    left: 15vh;
    width: calc(100vw - 30vh);
    height: 80vh !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    z-index: 1;
  }
}
@media only screen and (max-width: 768px) {
  #popup.pop-type3 .pop-main {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 300vh !important;
  }
}
#popup.pop-type3 .pop-con {
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

@media only screen and (min-width: 769px) {
  #popup.pop-type3 .pop-con {
    top: 0px;
    left: 0px;
    width: 100%;
    position: absolute;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #popup.pop-type3 .pop-con {
    top: 0px;
    left: 0px;
    width: 100%;
    position: absolute;
    height: 100%;
  }
}
#popup.pop-type3 .pop-prev,
#popup.pop-type3 .pop-next {
  z-index: 10;
  visibility: hidden;
  pointer-events: none;
}

#popup.pop-type3 .pop-prev.on,
#popup.pop-type3 .pop-next.on {
  visibility: visible !important;
  pointer-events: auto !important;
  cursor: pointer;
}

/*!  * animate.css -http://daneden.me/animate  * Version - 3.7.0  * Licensed under the MIT license - http://opensource.org/licenses/MIT  *  * Copyright (c) 2018 Daniel Eden  */
.typing {
  display: flex;
  align-items: center;
  justify-content: center;
}

.typing-effect1 {
  opacity: 0;
  width: 1ch;
  -webkit-animation: typing 1s steps(1);
  animation: typing 1s steps(1);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect2 {
  opacity: 0;
  width: 2ch;
  -webkit-animation: typing 2s steps(2);
  animation: typing 2s steps(2);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect3 {
  opacity: 0;
  width: 3ch;
  -webkit-animation: typing 2s steps(3);
  animation: typing 2s steps(3);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect4 {
  opacity: 0;
  width: 4ch;
  -webkit-animation: typing 2s steps(4);
  animation: typing 2s steps(4);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect5 {
  opacity: 0;
  width: 5ch;
  -webkit-animation: typing 2s steps(5);
  animation: typing 2s steps(5);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect6 {
  opacity: 0;
  width: 6ch;
  -webkit-animation: typing 2s steps(6);
  animation: typing 2s steps(6);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect7 {
  opacity: 0;
  width: 7ch;
  -webkit-animation: typing 2s steps(7);
  animation: typing 2s steps(7);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect8 {
  opacity: 0;
  width: 8ch;
  -webkit-animation: typing 2s steps(8);
  animation: typing 2s steps(8);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect9 {
  opacity: 0;
  width: 9ch;
  -webkit-animation: typing 2s steps(9);
  animation: typing 2s steps(9);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect10 {
  opacity: 0;
  width: 10ch;
  -webkit-animation: typing 2s steps(10);
  animation: typing 2s steps(10);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect11 {
  opacity: 0;
  width: 11ch;
  -webkit-animation: typing 2s steps(11);
  animation: typing 2s steps(11);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect12 {
  opacity: 0;
  width: 12ch;
  -webkit-animation: typing 2s steps(12);
  animation: typing 2s steps(12);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect13 {
  opacity: 0;
  width: 13ch;
  -webkit-animation: typing 2s steps(13);
  animation: typing 2s steps(13);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect14 {
  opacity: 0;
  width: 14ch;
  -webkit-animation: typing 2s steps(14);
  animation: typing 2s steps(14);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect15 {
  opacity: 0;
  width: 15ch;
  -webkit-animation: typing 2s steps(15);
  animation: typing 2s steps(15);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect16 {
  opacity: 0;
  width: 16ch;
  -webkit-animation: typing 2s steps(16);
  animation: typing 2s steps(16);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect17 {
  opacity: 0;
  width: 17ch;
  -webkit-animation: typing 2s steps(17);
  animation: typing 2s steps(17);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect18 {
  opacity: 0;
  width: 18ch;
  -webkit-animation: typing 2s steps(18);
  animation: typing 2s steps(18);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect19 {
  opacity: 0;
  width: 19ch;
  -webkit-animation: typing 2s steps(19);
  animation: typing 2s steps(19);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect20 {
  opacity: 0;
  width: 20ch;
  -webkit-animation: typing 2s steps(20);
  animation: typing 2s steps(20);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect30 {
  opacity: 0;
  width: 30ch;
  -webkit-animation: typing 2s steps(30);
  animation: typing 2s steps(30);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect40 {
  opacity: 0;
  width: 40ch;
  -webkit-animation: typing 2s steps(40);
  animation: typing 2s steps(40);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect50 {
  opacity: 0;
  width: 50ch;
  -webkit-animation: typing 2s steps(50);
  animation: typing 2s steps(50);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect60 {
  opacity: 0;
  width: 60ch;
  -webkit-animation: typing 2s steps(60);
  animation: typing 2s steps(60);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.typing-effect70 {
  opacity: 0;
  width: 70ch;
  -webkit-animation: typing 2s steps(70);
  animation: typing 2s steps(70);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes typing {
  from {
    opacity: 0;
    width: 0;
  }
  1%, 100% {
    opacity: 1;
  }
}
@keyframes typing {
  from {
    opacity: 0;
    width: 0;
  }
  1%, 100% {
    opacity: 1;
  }
}
.whiteout {
  -webkit-animation: whiteout;
  animation: whiteout;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes whiteout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes whiteout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.appear {
  -webkit-animation-name: textTranslate;
  animation-name: textTranslate;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  1%, 99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  1%, 99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.textTranslate {
  -webkit-animation-name: textTranslate;
  animation-name: textTranslate;
}

@-webkit-keyframes textTranslate {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes textTranslate {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn2 {
  -webkit-animation: fadeIn2 cubic-bezier(0.47, 0.01, 0.87, 0.43);
  animation: fadeIn2 cubic-bezier(0.47, 0.01, 0.87, 0.43);
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  -webkit-animation: fadeInLeft2;
  animation: fadeInLeft2;
}

@-webkit-keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-3%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-3%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  -webkit-animation: fadeInRight2;
  animation: fadeInRight2;
}

@-webkit-keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(3%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(3%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  -webkit-animation: fadeInUp2 cubic-bezier(0.47, 0.01, 0.33, 0.62);
  animation: fadeInUp2 cubic-bezier(0.47, 0.01, 0.33, 0.62);
}

@-webkit-keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp3 {
  -webkit-animation-name: fadeInUp3;
  animation-name: fadeInUp3;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomIn2 {
  from {
    opacity: 0;
    transform: scale3d(0, 0, 0);
  }
  10%, 90% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(0, 0, 0);
  }
}
@keyframes zoomIn2 {
  from {
    opacity: 0;
    transform: scale3d(0, 0, 0);
  }
  10%, 90% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(0, 0, 0);
  }
}
.zoomIn2 {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInDown2 {
  from {
    transform: translate3d(0, -100px, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown2 {
  from {
    transform: translate3d(0, -100px, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown2 {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInLeft2 {
  from {
    transform: translate3d(-100px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInLeft2 {
  from {
    transform: translate3d(-100px, 0, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInLeft2 {
  -webkit-animation-name: slideInLeft2;
  animation-name: slideInLeft2;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInRight {
  from {
    visibility: visible;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    visibility: visible;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInRight2 {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInRight2 {
  from {
    visibility: visible;
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInRight2 {
  from {
    visibility: visible;
    transform: translate3d(100px, 0, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInUp2 {
  from {
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp2 {
  from {
    transform: translate3d(0, 100px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp2 {
  -webkit-animation-name: slideInUp2;
  animation-name: slideInUp2;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideInUp3 {
  from {
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes slideInUp3 {
  from {
    transform: translate3d(0, 50px, 0);
    visibility: visible;
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slideInUp3 {
  -webkit-animation-name: slideInUp2;
  animation-name: slideInUp2;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
  -webkit-animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.42, 0, 0.2, 1);
}

@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    transition: none !important;
  }
}
/* .credits.hrefempty urlからは非表示 */
.cta[data-state=disable] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

.cta[data-state=disable] span.autolink {
  display: none;
}

.cta[data-state=enable] a {
  pointer-events: auto !important;
}

.cta[data-state=enable] span.autolink {
  display: inline-block;
}

.credits {
  position: relative;
  z-index: 2;
}

.credits.hrefempty a[href=""],
.credits.hrefempty a[href=XXX] {
  display: none;
}

.credits a {
  text-decoration: none !important;
}

.credits a:hover {
  text-decoration: underline !important;
}

@media only screen and (min-width: 769px) {
  .credits li + li {
    margin-top: 0.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .credits li + li {
    margin-top: 8px;
  }
}
.credits * {
  line-height: 120%;
  pointer-events: auto;
}

.product {
  position: relative;
}

.product * {
  pointer-events: auto;
}

.product a {
  text-decoration: none;
}

.product.noimg .ref-item div {
  float: none !important;
  margin-left: 0px !important;
  display: blockx !important;
  padding-right: 5px;
  line-height: 160% !important;
  width: 100% !important;
}

.product.noimg div.thumb {
  display: none !important;
}

.product.center div {
  text-align: center;
}

.product.one li {
  float: none !important;
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .product.two > div,
.product.two ul {
    width: 100%;
  }
  .product.two ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .product.two li {
    float: none !important;
    width: 46%;
  }
}
@media only screen and (max-width: 768px) {
  .product.twosp > div,
.product.twosp ul {
    width: 100%;
  }
  .product.twosp ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .product.twosp li {
    float: none !important;
    width: 46%;
  }
}
@media only screen and (min-width: 769px) {
  .product.three > div,
.product.three ul {
    width: 100%;
  }
  .product.three ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .product.three li {
    float: none !important;
    width: 30%;
    padding-right: 5%;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 769px) {
  .product.four > div,
.product.four ul {
    width: 100%;
  }
  .product.four ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .product.four li {
    box-sizing: border-box;
    float: none !important;
    width: 25%;
    padding-right: 5%;
  }
}
.product.nobrand .brand {
  display: none !important;
}

.product.org .thumb {
  float: none !important;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 0px !important;
  width: 65px !important;
  height: 80px !important;
  overflow: hidden;
}

.product.org .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.product.org .ref-item {
  min-height: 80px;
  margin-bottom: 13px;
}

.product.org .ref-item div.brand,
.product.org .ref-item div.price,
.product.org .ref-item div.catch-copy,
.product.org .ref-item div.name {
  margin: 3px 0px 3px 73px;
  display: block;
}

.product.org .ref-item div.name {
  float: none;
  display: -webkit-box !important;
  line-height: 110%;
  color: #000;
  font-size: 12px !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-height: 4em;
}

.product.buy .thumb {
  float: none !important;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 0px !important;
  width: 50px !important;
  height: 50px !important;
  overflow: hidden;
}

.product.buy .thumb:before {
  content: "BUY";
  box-sizing: border-box;
  border: 1px solid #fff;
  line-height: 48px;
  display: block;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #000;
  transition: all 0.5s ease;
}

.product.buy .thumb img {
  display: none !important;
}

.product.buy li:hover .thumb:before {
  border: 1px solid #fff;
  color: #000;
  background: #fff;
  transition: all 0.5s ease;
}

.product * {
  /*margin: 0px 0px 2px;*/
}

@media only screen and (min-width: 769px) {
  .product * {
    font-size: 11px !important;
  }
}
@media only screen and (max-width: 768px) {
  .product * {
    font-size: 10px !important;
  }
}
.product .ul {
  width: 100%;
}

.product .article {
  width: 100%;
  max-width: initial;
}

.product .title,
.product .description {
  display: none;
}

.product .ref-item {
  margin: 0px 0 15px !important;
  min-height: 50px;
  position: relative;
}

.product .ref-item div {
  float: none;
  display: block !important;
  line-height: 110% !important;
  font-size: 11px;
  color: #000;
  padding: 0px;
  width: calc(100% - 60px);
  margin-left: 60px !important;
}

.product .ref-item div.thumb {
  float: none !important;
  position: absolute;
  left: 0px;
  top: 0px;
  margin: 0px !important;
  margin-left: 0px !important;
  width: 50px !important;
  height: 50px !important;
  overflow: hidden;
}

.product .ref-item div.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.product .ref-item div.brand {
  font-size: 9px !important;
}

/*.product .name {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      max-height: 25px;
      overflow: hidden;
    }*/
.testbg {
  background: #ff07c6;
  opacity: 0.3;
}

.test .rellax-img {
  background: #f00;
}

.test .test-content {
  pointer-events: none;
  position: absolute;
  width: 100vw;
  height: auto;
  top: 0px;
  left: 0px;
  z-index: 2;
  display: block;
}

@media only screen and (min-width: 769px) {
  .test .test-content {
    margin-top: 0vw;
  }
}
@media only screen and (max-width: 768px) {
  .test .test-content {
    margin-top: 0vw;
  }
}
.test .test-content img {
  width: 100%;
  height: auto;
  opacity: 0.2;
}

.test .test-border {
  pointer-events: none;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: calc(50vw - 50%);
  margin-left: auto;
  margin-right: auto;
  border-right: rgba(255, 7, 198, 0.5) 1px dotted;
}

.test > .container {
  position: relative;
}

.test > .container:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -1;
  background: #ff07c6;
  pointer-events: none;
}

.test > .container:nth-of-type(1):before {
  opacity: 0.1;
}

.test > .container:nth-of-type(2):before {
  opacity: 0.2;
}

.test > .container:nth-of-type(3):before {
  opacity: 0.3;
}

.test > .container:nth-of-type(4):before {
  opacity: 0.4;
}

.test > .container:nth-of-type(5):before {
  opacity: 0.1;
}

.test > .container:nth-of-type(6):before {
  opacity: 0.2;
}

.test > .container:nth-of-type(7):before {
  opacity: 0.3;
}

.test > .container:nth-of-type(8):before {
  opacity: 0.4;
}

.test > .container:nth-of-type(9):before {
  opacity: 0.1;
}

.test > .container:nth-of-type(10):before {
  opacity: 0.2;
}

.test > .container:nth-of-type(11):before {
  opacity: 0.3;
}

.test > .container:nth-of-type(12):before {
  opacity: 0.4;
}

.test1 .hero .imgW {
  width: 100px;
  height: 100px;
}

.test1 .hero .imgW img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.exp {
  /*   .nav1{       a{           @extend .bgBlack;           padding:4%;           display:block;       }   }   */
}

.fontjp1 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

.fontjp2 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.fonten1 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fonten2 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fonten3 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.fonten10 {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fonten10 * {
  font-family: acumin-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fonten11 {
  font-family: acumin-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fonten11 * {
  font-family: acumin-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fonten12 {
  font-family: acumin-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.fonten12 * {
  font-family: acumin-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.fonten13 {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fonten13 * {
  font-family: acumin-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fonten14 {
  font-family: acumin-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fonten14 * {
  font-family: acumin-pro, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fonten20 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fonten20 * {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.fonten21 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fonten21 * {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fonten22,
#loader p,
#loader .logo-loader,
.credits *,
.product.buy .thumb:before {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.fonten22 *,
#loader p *,
#loader .logo-loader *,
.credits * *,
.product.buy .thumb:before * {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.fonten23 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fonten23 * {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fonten24 {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fonten24 * {
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fonten51 {
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
}

.fonten51 * {
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
}

.fonten52 {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  font-style: normal;
}

.fonten52 * {
  font-family: adobe-garamond-pro, serif;
  font-weight: 600;
  font-style: normal;
}

.fonten53 {
  font-family: adobe-garamond-pro, serif;
  font-weight: 700;
  font-style: normal;
}

.fonten53 * {
  font-family: adobe-garamond-pro, serif;
  font-weight: 700;
  font-style: normal;
}

.fonten101,
#bc-tmpl .quote2:after,
#bc-tmpl .quote2:before {
  font-family: "ivyora-display", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fonten63 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.fonten62 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fonten61 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-weight: 500;
  font-style: normal;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.op {
  transition: all 0.5s ease;
}

.op:hover {
  opacity: 0.5;
}

#loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  top: 0px;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#loader .logo-loader {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #000;
}

@media only screen and (min-width: 769px) {
  #loader .logo-loader {
    width: 13%;
    margin-bottom: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  #loader .logo-loader {
    width: 30%;
    margin-bottom: 6vw;
  }
}
#loader p {
  width: 100%;
  text-align: center;
  color: #fff;
}

.done #loader {
  transform: translateY(-100vh);
  transition: opacity 0.5s ease, transform 0.5s ease 0.5s;
  opacity: 0;
  pointer-events: none;
}

.all {
  width: 100vw;
  background: #fff;
  overflow: hidden;
}

#bc-tmpl {
  overflow-x: hidden;
  width: 100vw;
  position: relative;
  left: calc(50% - 50vw);
}

#bc-tmpl * {
  box-sizing: border-box;
}

#bc-tmpl p {
  line-height: 180%;
}

@media only screen and (max-width: 768px) {
  #bc-tmpl .container {
    max-width: 100%;
  }
}
#bc-tmpl .container .inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .container .inner {
    width: 90vw;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .container .inner {
    width: 92vw;
  }
}
@media only screen and (min-width: 769px) {
  #bc-tmpl .container .innerPC {
    width: 90vw;
    min-width: 982px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .container .innerSP {
    width: 92vw;
    margin-left: auto;
    margin-right: auto;
  }
}
#bc-tmpl .container .inner.fix {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .container .inner.fix {
    width: 982px;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .container .inner.fix {
    width: 92vw;
  }
}
#bc-tmpl .container .inner p + p {
  margin-top: 1.3rem;
}

#bc-tmpl .logo1 {
  position: absolute;
  z-index: 10;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .logo1 {
    left: 2vw;
    top: 2vw;
  }
}
#bc-tmpl .logo1.fixed {
  position: fixed;
}

#bc-tmpl .copyRH {
  position: fixed;
  writing-mode: vertical-rl;
  top: 0px;
  right: 1.1vw;
  text-align: center;
  height: 100vh;
  z-index: 3;
}

#bc-tmpl .copyLH {
  position: fixed;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  top: 0px;
  left: 1.1vw;
  text-align: center;
  height: 100vh;
  z-index: 3;
}

#bc-tmpl .scrl a {
  text-decoration: none !important;
  position: relative;
}

#bc-tmpl .nav1 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .nav1 > li {
    padding: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .nav1 > li {
    padding: 1vw;
  }
}
#bc-tmpl .underline {
  text-decoration: underline !important;
}

#bc-tmpl .hunderline:hover {
  text-decoration: underline !important;
}

#bc-tmpl .arrowXS {
  display: block;
  width: 7px;
  height: 7px;
  transform: rotate(135deg);
}

#bc-tmpl .arrowXS.arrowBLK {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

#bc-tmpl .arrowXS.arrowWHT {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#bc-tmpl .arrowS {
  display: block;
  width: 15px;
  height: 15px;
  transform: rotate(135deg);
}

#bc-tmpl .arrowS.arrowBLK {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

#bc-tmpl .arrowS.arrowWHT {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#bc-tmpl .arrowM {
  display: block;
  width: 25px;
  height: 25px;
  transform: rotate(135deg);
}

#bc-tmpl .arrowM.arrowBLK {
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}

#bc-tmpl .arrowM.arrowWHT {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

#bc-tmpl .arrowL {
  display: block;
  width: 40px;
  height: 40px;
  transform: rotate(135deg);
}

#bc-tmpl .arrowL.arrowBLK {
  border-top: 4px solid #000;
  border-right: 4px solid #000;
}

#bc-tmpl .arrowL.arrowWHT {
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
}

#bc-tmpl .typing {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

#bc-tmpl .typing-effect {
  opacity: 0;
  width: 30ch;
  -webkit-animation: typing 2s steps(30);
  animation: typing 2s steps(30);
  white-space: nowrap;
  overflow: hidden;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes typing {
  from {
    opacity: 0;
    width: 0;
  }
  1%, 100% {
    opacity: 1;
  }
}
#bc-tmpl .line-effect {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  line-height: 110%;
}

#bc-tmpl .blackline {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #000;
}

#bc-tmpl .quote1 {
  position: relative;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .quote1 {
    padding: 7%;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .quote1 {
    padding: 7%;
  }
}
#bc-tmpl .quote1:before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

#bc-tmpl .quote1:after {
  position: absolute;
  bottom: 0px;
  right: 0px;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}

#bc-tmpl .quote2 {
  position: relative;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .quote2 {
    padding: 7%;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .quote2 {
    padding: 10%;
  }
}
#bc-tmpl .quote2:before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: "“";
  display: block;
  width: 30px;
  height: 30px;
  opacity: 0.7;
  mix-blend-mode: multiply;
  color: #c76e53;
}

#bc-tmpl .quote2:after {
  position: absolute;
  bottom: 0px;
  right: 0px;
  content: "”";
  display: block;
  width: 30px;
  height: 30px;
  opacity: 0.7;
  color: #c76e53;
  mix-blend-mode: multiply;
}

#bc-tmpl .fnav a {
  text-decoration: none;
}

#bc-tmpl .fnav1 {
  text-align: center;
}

#bc-tmpl .fnav1 li {
  display: inline-block;
  padding: 2px;
  text-align: center;
  line-height: 100%;
}

#bc-tmpl .fnav2 {
  text-align: center;
}

#bc-tmpl .fnav2 li {
  position: relative;
  display: inline-block;
  padding: 0px 4px 0px 8px;
  margin: 0px;
  text-align: center;
  line-height: 100%;
}

#bc-tmpl .fnav2 li + li:before {
  top: 10%;
  left: 0px;
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background: #000;
}

#bc-tmpl .container {
  width: 100vw;
  position: relative;
  left: calc(50% - 50vw);
  box-sizing: border-box;
}

#bc-tmpl #con00 .hero {
  position: relative;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl #con00 .hero {
    height: 50vw;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl #con00 .hero {
    height: 120vw;
    /*height: 76vw;*/
  }
  #bc-tmpl #con00 {
    padding: 0 15px !important;
  }
}
#bc-tmpl #con00 .imgs {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

#bc-tmpl #con00 .t1 {
  position: absolute;
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl #con00 .t1 {
    width: 80%;
    left: 10vw;
    top: 19vw;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl #con00 .t1 {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
#bc-tmpl #con00 .logo {
  position: absolute;
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl #con00 .logo {
    width: 7%;
    left: 2vw;
    top: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl #con00 .logo {
    width: 12%;
    left: 4vw;
    top: 0vw;
  }
}
#bc-tmpl #con00 .box {
  width: calc(50% - 0.5vw);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

#bc-tmpl #con00 .box > div {
  height: 100%;
}

#bc-tmpl #con00 .box div div {
  padding: 0;
}

#bc-tmpl #con00 .box.one > div:first-child {
  -webkit-animation: scr1 36s -18s linear infinite;
  animation: scr1 36s -18s linear infinite;
}

#bc-tmpl #con00 .box.one > div:last-child {
  -webkit-animation: scr2 36s linear infinite;
  animation: scr2 36s linear infinite;
}

#bc-tmpl #con00 .box.two > div:first-child {
  -webkit-animation: scr3 36s -18s linear infinite;
  animation: scr3 36s -18s linear infinite;
}

#bc-tmpl #con00 .box.two > div:last-child {
  -webkit-animation: scr4 36s linear infinite;
  animation: scr4 36s linear infinite;
}

@-webkit-keyframes scr1 {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes scr1 {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scr2 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
@keyframes scr2 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
@-webkit-keyframes scr3 {
  0% {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes scr3 {
  0% {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}
@-webkit-keyframes scr4 {
  0% {
    transform: translateY(-200%);
  }
  to {
    transform: translateY(0%);
  }
}
@keyframes scr4 {
  0% {
    transform: translateY(-200%);
  }
  to {
    transform: translateY(0%);
  }
}
@-webkit-keyframes scr1sp {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scr1sp {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scr2sp {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes scr2sp {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes scr3sp {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes scr3sp {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes scr4sp {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes scr4sp {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .products .product1 {
    margin-bottom: 10vw;
  }
}
#bc-tmpl .products .product-img {
  margin-bottom: 0px;
}

#bc-tmpl .products .product-brand,
#bc-tmpl .products .product-name {
  line-height: 120%;
}

#bc-tmpl .products .buy {
  border: 1px solid #000;
  padding: 2px 4px;
  line-height: 100%;
  margin-left: 10px;
}

#bc-tmpl .products a:hover .name {
  text-decoration: underline;
}

#bc-tmpl .products a:hover .buy {
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: all 0.5s ease;
}

#bc-tmpl .slick-dots {
  text-align: left;
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  #bc-tmpl .slick-dots {
    padding-left: 2px;
    bottom: 5px !important;
  }
}
#bc-tmpl .slick-dots > * {
  padding: 0px;
  margin: 2px;
}

#bc-tmpl .slick-dots button {
  padding: 0px;
  margin: 2px;
}

#bc-tmpl .slick-dots button:before {
  margin: 2px;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .conF {
    width: 60%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .conF {
    width: 100%;
    padding-top: 20vw;
  }
  #bc-tmpl .conF .btn {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
  }
}
#bc-tmpl .conF .ico40 {
  width: 40px;
}

#bc-tmpl .conF .w40px {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
}

#bc-tmpl .conF .w50px {
  width: 50px;
  margin-left: auto;
  margin-right: auto;
}

#bc-tmpl .conF .w60px {
  width: 60px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 769px) {
  #bc-tmpl .rmb3 {
    margin-bottom: 0.6vw !important;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .rmb3 {
    margin-bottom: 1.5vw !important;
  }
}
@media only screen and (min-width: 769px) {
  #bc-tmpl .rmt0 {
    margin-top: 0vw !important;
  }
}
@media only screen and (max-width: 768px) {
  #bc-tmpl .rmt0 {
    margin-top: 0vw !important;
  }
}
#bc-tmpl .btns {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  #bc-tmpl .btns {
    width: 300px;
  }
}
#bc-tmpl .btns li + li {
  margin-top: 10px;
}

#bc-tmpl body > div > ul.item_reference_b--tpl-Y {
  display: none;
}

/***********************/
/*11/11追記*/
/**********************/
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
/***********************/
/*anchor-links*/
/**********************/
.anchor-links {
  margin: 170px auto 0;
  max-width: 1150px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.anchor-links__item {
  width: 216px;
  flex-shrink: 0;
  margin-bottom: 30px;
  list-style: none;
}
.anchor-links__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.anchor-links__link:hover {
  text-decoration: none;
}
.anchor-links__ttl {
  font-size: 24px;
  color: #000000;
}
.anchor-links__thumb {
  margin-top: 5px;
  width: 100%;
}
.anchor-links__arrow {
  margin-top: 5px;
  width: 17px;
}

@media screen and (max-width: 768px) {
  .anchor-links {
    margin-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }
  .anchor-links__item {
    width: 115px;
  }
  .anchor-links__thumb {
    height: auto;
  }
  .anchor-links__ttl {
    margin-top: 0;
    font-size: 12px;
  }
  .anchor-links__arrow {
    margin-top: 0;
    width: 11px;
  }
}
/***********************/
/*section*/
/**********************/
.section {
  margin-top: 170px;
}
.section-ttl {
  font-size: 40px;
  text-align: center;
}
.section-main {
  margin-top: 67px;
}
.section-back {
  margin: 0 auto;
  width: 160px;
  display: flex;
  align-items: center;
  text-decoration: underline;
  font-size: 23px;
  color: black;
  padding-top: 40px;
}
.section-back img {
  width: 12px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .section {
    margin-top: 70px;
  }
  .section-ttl {
    font-size: 30px;
  }
  .section-back {
    justify-content: center;
    width: 140px;
    font-size: 18px;
  }
}
/***********************/
/*itemSlider*/
/**********************/
.itemSlider {
  aspect-ratio: 386/483;
}
.itemSlider-item {
  height: 100%;
}
.itemSlider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.itemSlider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0 !important;
  transform: translateY(100%);
  gap: 15px;
}
.itemSlider .slick-dots li {
  padding: 0 !important;
  width: 7px;
  height: 7px;
}
.itemSlider .slick-dots li.slick-active button {
  background-color: black;
}
.itemSlider .slick-dots li:before {
  display: none;
}
.itemSlider .slick-dots li button {
  background-color: #DDDDDD;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.itemSlider .slick-dots li button::before {
  display: none;
}

/***********************/
/*outro*/
/**********************/
.outro {
  margin-top: 200px;
  padding-bottom: 200px;
}
.outro-logo {
  margin: 0 auto;
  width: 128px;
  display: block;
}
.outro-list {
  padding: 0;
  margin-top: 48px;
  justify-content: center;
  display: flex;
}
.outro-list__item {
  margin-right: 50px;
  list-style: none;
}
.outro-list__item:last-child {
  margin-right: 0;
}
.outro-list__item a {
  font-size: 22px;
  color: black;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .outro {
    margin-top: 183px;
    padding-bottom: 52px;
  }
  .outro-logo {
    margin: 0 auto;
    width: 93px;
  }
  .outro-list {
    margin-top: 34px;
  }
  .outro-list__item {
    margin-right: 35px;
  }
  .outro-list__item a {
    text-align: center;
    font-size: 15px;
  }
}
/***********************/
/*上書き*/
/**********************/
#contents ul.product li .text-box .name {
  min-height: 80px;
}

#contents ul.product li .text-box .price {
  margin-top: 10px;
}

#contents ul.product li .text-box .catch-copy {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .box-wrapper .catch {
    font-size: 12px;
    padding-bottom: 0;
  }
}
#contents ul.product li .text-box a.btn {
  background-color: black;
  color: white;
  border-radius: 0;
}

@media screen and (min-width: 769px) {
  #contents #padede ul.product li:nth-child(9) .inner:before {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  #contents #down ul.product li:nth-child(5) .inner:before {
    display: none !important;
  }
}

.catch-copy {
    margin-top: 10px;
}
.catch-copy {
    line-height: 1em;
    font-size: 1.5rem !important;
    font-weight: 400;
    color: #000;
    margin: 20px 0;
}
/*# sourceMappingURL=style.css.map */