@charset "UTF-8";
/* --------------------------------------------

メツゲライ タモンについて
	
---------------------------------------------- */
/* Scss Document */
.imgTxt {
  position: relative;
}

.imgTxt p {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -100vw;
  font-size: 10px !important;
}

.pageTitle {
  padding: 8em 0 4em;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}
.pageTitle > span {
  font-family: "BebasNeueBold";
  font-size: 70px;
  font-size: 7rem;
}

.pageCatch {
  padding: 1em 0;
  font-size: 46px;
  font-size: 4.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pageCatch {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.pageRead {
  padding: 0em 3% 1em;
  text-align: center;
}
.pageRead:last-of-type {
  margin-bottom: 6em;
}

/* --------------------------------------------
商品一覧
---------------------------------------------- */
.product {
  padding: 8rem 3%;
  background: url("../img/productBg.png");
}
@media screen and (max-width: 599px) {
  .product {
    padding: 8rem 3% 6rem;
  }
}

.product .product__item {
  width: 90%;
  max-width: 1020px;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 599px) {
  .product .product__item {
    margin: 0 auto 0rem;
  }
}
.product .product__item > img {
  float: right;
  width: 65%;
  max-width: 680px;
  padding-left: 1rem;
}
@media screen and (max-width: 599px) {
  .product .product__item > img {
    float: none;
    width: 100%;
    padding: 0 0 0em 0;
  }
}
.product .product__item > h2 {
  width: 35%;
  float: left;
  position: relative;
  padding-bottom: 1rem;
}
.product .product__item > h2 > p {
  position: absolute;
  top: 0;
  left: -200vw;
}
.product .product__item > h2 > img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .product .product__item > h2 {
    width: 50%;
    display: block;
    margin: auto;
    float: none;
  }
}
.product .product__item > p {
  padding-bottom: 2em;
  font-size: 14px;
  font-size: 1.4rem;
}

.product-s {
  text-align: center;
  padding: 0em 0% 8rem;
  margin: auto;
  background: url("../img/productBg.png");
}

.product-s .product__item {
  display: inline-block;
  vertical-align: top;
  width: 45%;
  max-width: 480px;
  margin: 1%;
}
@media screen and (max-width: 599px) {
  .product-s .product__item {
    display: block;
    width: 70%;
    margin: auto;
    padding: 0 0 2em 0;
  }
}
.product-s .product__item > img {
  width: 100%;
}
.product-s .product__item > h2 {
  width: 60%;
  margin: auto;
}
.product-s .product__item > h2 > p {
  position: absolute;
  top: 0;
  left: -200vw;
}
.product-s .product__item > h2 > img {
  width: 100%;
}
.product-s .product__item > p {
  font-size: 14px;
  font-size: 1.4rem;
}

/* --------------------------------------------
ギフト
---------------------------------------------- */
.gift {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 10rem;
  background-size: 100% auto;
}
.gift > h2,
.gift p {
  position: relative;
  line-height: 1.4;
}

.giftBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: bottom center !important;
  background-repeat: no-repeat !important;
  background-size: 100% auto !important;
  opacity: 0;
}

.giftBg-1 {
  background: url("../img/giftBg1.png");
}
@media screen and (max-width: 599px) {
  .giftBg-1 {
    background: url("../img/giftBg1sp.png");
  }
}

.giftBg-2 {
  background: url("../img/giftBg2.png");
}
@media screen and (max-width: 599px) {
  .giftBg-2 {
    background: url("../img/giftBg2sp.png");
  }
}

.giftBg-3 {
  background: url("../img/giftBg3.png");
}
@media screen and (max-width: 599px) {
  .giftBg-3 {
    background: url("../img/giftBg3sp.png");
  }
}

.animest .giftBg {
  animation-name: fadeInBottomTop;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

.animest .giftBg-1 {
  animation-delay: 0.3s;
  transition: 0.5s cubic-bezier(0.12, 0.84, 0.43, 1.08);
}

.animest .giftBg-2 {
  animation-delay: 0.6s;
  transition: 0.5s cubic-bezier(0.12, 0.84, 0.43, 1.08);
}

.animest .giftBg-3 {
  animation-delay: 0.9s;
  transition: 0.5s cubic-bezier(0.12, 0.84, 0.43, 1.08);
}

@keyframes fadeInBottomTop {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
