@charset "utf-8";

/*=============================
 setting jsbody addClass lp
=============================*/
.lp #main {
  padding: 0;
  margin: 5px !important;
  width: 100%;
}
.lp #special-content {
  text-align: left;
  border: none;
  padding-top: 0 !important;
  padding-bottom: 40px!important;
}
@media ( max-width: 991px ) {
  .lp .main-top {
    padding: 0 !important;
    margin: 0 !important;
  }
  .lp #special-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin: 0 -20px;
  }
}
section {
  padding: 0 1.5%;
}
@media ( min-width: 992px ) {
  section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
  }
}
.section {
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
}
.section-harf {
  padding: 50px 0px 25px;
  position: relative;
}
@media (max-width: 550px) {
  .section {
    padding: 50px 0px;
  }
}
@media (max-width: 1200px) {
  .section {
    padding: 40px 0px;
  }
  .section-harf {
    padding: 25px 0px;
    position: relative;
  }
}
.section * {
  font-feature-settings: "palt" 1;
  position: relative;
  z-index: 1;
}
.section p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6 !important;
}
.section-overlay {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(49, 47, 47, 0.3);
}
.color-gray {
  color: #777;
}


/*=============================
 flex
=============================*/
.sepalate__boxwrap {
  display: flex;
  flex-direction: row;
}
.column {
  width: 25%;
}
.sepalate__box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sepalate__box__inner {
  flex: 1;
  border: 1px solid #333;
  padding: 20px;
  min-height: 100px;
  text-align: center;
}
.sepalate__box__inner + .sepalate__box__inner {
  margin-left: 15px;
}
.sepalate__list {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.sepalate__list__inner {
  width: 24%;
  padding: 5px 20px;
}
@media (max-width: 770px) {
  .sepalate__box {
      flex-direction: column;
  }
  .sepalate__box__inner + .sepalate__box__inner {
      margin-top: 10px;
      margin-left: 0;
  }
   .sepalate__list {
      flex-wrap: wrap;
  }
  .sepalate__list__inner {
      margin-top: 10px;
      width: 49%;
  }
  .sepalate__list__inner + .sepalate__list__inner {
      margin-left: 0;
  }
  .sepalate__list__inner:nth-child(even) {
      margin-left: 1%;
  }
}


/*=============================
 animation
=============================*/
.fade-in-bottom {
  opacity: 0;
  animation-name: fadein-bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
  0% {
     opacity: 0;
     transform: translateY(20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0);
  }
}
.marker {
  background: -webkit-linear-gradient(left, rgb(255 156 188 / .7) 50%, transparent 50%);
  background: linear-gradient(left, rgb(255,156,188) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% .6em;
  background-position: 100% .5em;
  transition: 2s;
}
.marker.is-active {
  background-position: 0% .8em;
}
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 0.6s;
}
.fadein.is-active {
  opacity : 1;
  transform : translate(0, 0);
}

.section .fadein:nth-child(2),
.section-harf .fadein:nth-child(2){
  transition-delay: .4s;
}
.section .fadein:nth-child(3),
.section-harf .fadein:nth-child(3){
  transition-delay: .5s;
}
.section .fadein:nth-child(4),
.section-harf .fadein:nth-child(4){
  transition-delay: .7s;
}

.sepalate__list .fadein:nth-child(2) {
  transition-delay: .2s;
}
.sepalate__list .fadein:nth-child(3) {
  transition-delay: .3s;
}
.sepalate__list .fadein:nth-child(4) {
  transition-delay: .4s;
}


/*=============================
 contents
=============================*/
.wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.mv-wrapper {
  position: relative;
  height: 90vh;
  max-height: 260px;
  width: 100%;
  background-size: 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-image: url(./img/range_mv.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.webp .mv-wrapper {
  background-image:url(./img/range_mv.webp);
}
/*@media only screen and (-webkit-min-device-pixel-ratio:1.5){*/
@media (max-width:480px){
  .mv-wrapper {
    background-image:url(./img/range_mv@2x.jpg);
  }
  .webp .mv-wrapper {
    background-image:url(./img/range_mv@2x.webp);
  }
}
.mv-wrapper::before {
  background-image: -moz-linear-gradient(135deg, rgba(0, 0, 0, .6) 0%, rgba(1, 10, 64, .6) 100%);
  background-image: -webkit-linear-gradient(135deg, rgba(0, 0, 0, .6) 0%, rgba(1, 10, 64, .6) 100%);
  background-image: -ms-linear-gradient(135deg, rgba(0, 0, 0, .6) 0%, rgba(1, 10, 64, .6) 100%);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 0;
}
.mv-wrapper-content {
  position: absolute;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mv-wrapper .content-inner {
  top: calc(50% + 10px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  margin: 0 auto;
  padding: 15px;
}
.mv-title,
.mv-wrapper p {
  color: #FFF;
}
.mv-title {
  font-size: 2rem;
}

.imageheader {
  max-width: 1400px;
  margin: 0 auto;
  /* height: 100vh;
  max-height: 400px;
  background-size: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  background-image: url(./img/tigerpay_bn.jpg);*/
}
.lead {
  display: flex;
  justify-content: center;
  position: relative;
  margin: -50px auto 0;
  padding: 30px;
  overflow: hidden;
}
.lead__conts {
  position: relative;
  padding: 2rem;
  background: #FFF;
  z-index: 2;
  text-align: center;
  font-size: 1.6rem;
  box-shadow: 0px 0px 30px rgba(62,14,136,0.12);
  border-radius: 9px;
}
.lead__conts__heading {
  font-weight: bold;
  color: #fc0033;
  text-shadow:
  1px  1px     #fff,
 -1px  1px     #fff,
  1px -1px     #fff,
 -1px -1px     #fff,
  1px  1px 5px #555;
}
.category-list li {
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.category-list li a {
  width: 150px;
  height: 150px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.category-list li a span {
  background: rgba(0,0,0,.6);
  width: 90%;
  text-align: center;
  color: #fff;
  padding: .5rem;
  font-size: 1.2rem;
}
.category-list li:nth-child(1) {
  background-image: url();
}
.category-list li:nth-child(2) {
  background-image: url();
}
.bottom_area.category-list li:nth-child(1) {
  background-image: url(https://pics.xprice.co.jp/wp-content/uploads/2020/02/osouji_thumbnail.jpg);
}
.bottom_area.category-list li:nth-child(2) {
  background-image: url(https://pics.xprice.co.jp/i/0059/4967576130059M.jpg);
}
.bottom_area.category-list li:nth-child(3) {
  background-image: url(https://pics.xprice.co.jp/i/0754/4960673760754M.jpg);
}
.bottom_area.category-list li:nth-child(4) {
  background-image: url(https://pics.xprice.co.jp/i/2604/4906064272604M.jpg);
}
.bottom_area.category-list li:nth-child(5) {
  background-image: url(https://pics.xprice.co.jp/i/3099/4905009243099M.jpg);
}
.bottom_area.category-list li:nth-child(6) {
  background-image: url(https://pics.xprice.co.jp/i/0792/4960673760792M.jpg);
}

/* bgImage */
#pot {
  background: url(./img/bg_pot.jpg) no-repeat center;
  background-size: cover;
}
#ih {
  background: url(./img/bg_ih.jpg) no-repeat center;
  background-size: cover;
}
#kitchen {
  background: url(./img/bg_kitchen.jpg) no-repeat center;
  background-size: cover;
}
.overarea .section-title,
.overarea p {
  color: #FFF;
}
.section-title span {
  background: rgba(255, 255, 255, 0);
  padding: 8px 15px;
  border: 2px solid rgba(188, 213, 49, 0);
  border-top: none;
  padding-top: 0px;
  font-size: 18px;
  border-bottom: 2px solid #bcd531;
}
.section-title .heading {
  margin: 3rem 0 1rem;
}
.decoration-text {
  position: absolute;
  right: -28px;
  border-bottom: 0px;
  font-size: 16rem;
  color: rgba(245, 245, 245, .4);
  bottom: -70px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}
.prodarea {
  position: relative;
}
.itemmain {
  width: 48%;
  text-align: center;
  display: flex;
  align-items: center;
}
.itemdetail {
  width: 52%;
  padding: 25px;
}
.itemmain .thumb {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.prod__heading {
  color: #111;
  font-size: 2rem;
}
.prod__subtext {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 5px;
}
.lnkbtn {
  cursor: pointer;
  display: block;
  max-width: 360px;
  background-color: #ff0c36;
  border-radius: 3px;
  box-shadow: 0 -4px 0 rgba(0,0,0,0.1) inset;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  padding: 10px;
  margin: 1.5rem 0 .5rem;
  text-align: center;
  text-decoration: none;
  color: #fff !important
}
.lnkbtn:hover {
  opacity: .9;
}
.boxlnk {
  display: block;
}
.boxlnk:hover {
  opacity: .7;
}
.heading {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 30px;
}
.heading::after {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 3px;
  content: '';
  background-image: -webkit-gradient(linear, left top, right top, from(#3452ff), to(#ff1053));
  background-image: -webkit-linear-gradient(left, #3452ff 0%, #ff1053 100%);
  background-image: linear-gradient(to right, #3452ff 0%, #ff1053 100%);
}
.heading + p {
  margin-bottom: 15px;
}
.c_heading {
  text-align: center;
  margin: 40px 0 0;
}
.sub_heading {
  color: #333;
  line-height: 1.6 !important;
}

/* prod list */
.nonsld {
  border: none !important;
  max-width: 100%;
}
.nonsld li {
  min-width: 180px !important;
  max-width: 342px !important;
  border: none !important;
  height: auto !important;
}
.nonsld li:hover {
  background-color: transparent !important;
}
.nonsld li:hover img,
.nonsld li:hover a {
  opacity: .7 !important;
}
.nonsld .txt-productname a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
  line-height: 1.6;
}
.product-list{
  border: none !important;
}
.bottom_area.category-list li {
  border-radius: 50%;
    background-position: -25% center;
    background-size: cover;
}

/* fixedbox */
#fixedbox {
  position: fixed;
  bottom: 50%;
/*  right: -247px; */
  right: 0;
  z-index: 999;
}
#fixedbox::before {
  content: "目次";
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  color: #FFF;
  width: 2.5rem;
  height: 100%;
  padding: 0 5px;
  background-image: -moz-linear-gradient(135deg, rgb(52, 82, 255) 0%, rgb(255, 16, 83) 100%);
  background-image: -webkit-linear-gradient(135deg, rgb(52, 82, 255) 0%, rgb(255, 16, 83) 100%);
  background-image: -ms-linear-gradient(135deg, rgb(52, 82, 255) 0%, rgb(255, 16, 83) 100%);
}
#fixedbox #index {
  padding: 10px 10px 10px 38px;
  background: rgba(257,255,255,.7);
}

@media (max-width: 480px) {
  .product-list ul.nonsld {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: wrap;
  }
  .product-list ul.nonsld li {
    width: calc(100% / 2 - 2px) !important;
    padding: 5px;
    height: auto !important;
    overflow: initial;
    min-width: initial !important;
  }
  .product-list ul.nonsld .txt-productname a {
    line-height: 1.2;
  }
  .product-list ul.nonsld li .txt-productname {
    height: auto !important;
  }
  br.mbr {
    display: none;
  }
}

@media (min-width: 769px) {
  .mv-wrapper {
    min-height: 360px;
  }
  .mv-title,
  .mv-wrapper p {
    text-align: center;
  }
  .mv-title {
    font-size: 2.8rem;
  }
  .prodarea + .prodarea {
    margin: 40px 0 0;
  }
}
@media ( max-width: 767px ) {
  .prodarea {
    flex-direction: column;
  }
  .headingwrap {
    position: absolute;
    top: 30px;
  }
  .itemmain {
    width: 100%;
    padding: 40px 0 0;
    margin-top: 25px;
  }
  .itemdetail {
    width: 100%;
    padding: 25px 8px;
  }
  .lnkbtn {
    margin-right: auto;
    margin-left: auto;
  }
}

/******************** 追加 ********************/
.howto p{
  margin-bottom: 15px;
}
.product-list ul li img{
  margin: 0 auto;
}
/* スライダー */
.bx-viewport{
	height:100% !important;
}
.bx-prev,.bx-next{
  display:none;
}
@media ( max-width: 703px ) {
  li.search-item{
    width:50% !important;
  }
}
/* こちらもおすすめ */
.feature_bnr{
  max-width: 100%;
}
.feature_area >div{
  text-align: center;
}
.feature_area p{
  padding-top: 5px;
}
@media ( max-width: 767px ) {
  .feature_area >div{
    margin-bottom: 2em;
  }
}
/* 全体調整 */
@media ( max-width: 767px ) {
  .p-mb10 p{
    margin-bottom: 10px;
  }
}
@media ( min-width: 768px ) {
  .p-mb10 p{
    margin-bottom: 0;
  }
}
.p-mt15{
  margin-top: 15px;
}
