/*Main*/
.c-main{
  /* margin-top: 150px; */
}
.c-main__inner{
  text-align: center;
  margin-bottom: 115px;
}
.c-main__inner img{
  max-width: 100%;
}
@media(max-width: 768px){
  .c-main{
      margin-top: 70px;
  }
}
/*End Main*/
/*Banner*/
.c-banner{
  width: 100%;
  position: relative;
  height: 400px;
  background-size: cover;
}

.c-banner__content{
  overflow: hidden;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
}
.c-banner__title{
  font-size: 50px;
  font-weight: 600;
  font-family: YuMincho;
  margin-bottom: 47px;
}
.c-banner__txt{
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
}

.c-breadcrum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  padding: 180px 20px 0;
}
.c-breadcrum__link {
  display: block;
  letter-spacing: 1.6px;
  font-size: 15px;
  line-height: 2;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}
@media(max-width: 1024px){
  .c-banner__txt{
    font-size: 15px;
  }
  .c-banner__title {
    font-size: 42px;
    margin-bottom: 35px;
  }
  .c-banner{
      height: 300px;
  }
}

@media all and (max-width: 768px) {
  .c-banner{
      height: 160px;
  }
  .c-banner__content{
      padding: 0 5px;
      bottom: 66px;
  }
  .c-banner__title{
      font-size: 25px;
      margin-bottom: 25px;
  }
  .c-banner__txt{
      font-size: 13px;
  }
  .c-breadcrum {
      padding: 15px 20px 50px;
  }
  .c-breadcrum__link {
      font-size: 11px;
  }
}
/*End Banner*/
/**---------------------------------------------------------*/
/* PAGINATION */
.c-pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-pagination .item {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  font-weight: 500;
  font-size: 13px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin: 0 5px;
}
.c-pagination .item.prev {
  margin-right: 40px;
  margin-left: 0 !important;
}
.c-pagination .item.next {
  margin-left: 40px;
  margin-right: 0 !important;
}
.c-pagination .item-arrow img {
  display: block;
  width: 17px;
  height: 17px;
}
.c-pagination .item a {
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.c-pagination .item:not(.item-arrow) a:hover {
  opacity: 1;
}
.c-pagination .item:not(.item-arrow):hover,
.c-pagination .item.current {
  background: #B8A131;
  color: white;
}
.c-pagination .item.current,
.c-pagination .item.item-dot {
  pointer-events: none;
}
@media all and (max-width: 768px) {
  .c-pagination {
    margin-top: 30px;
  }
  .c-pagination .item {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .c-pagination .item.prev {
    margin-right: 10px;
  }
  .c-pagination .item.next {
    margin-left: 10px;
  }
}
/*End Custom*/
/**Tabs*/
.c-tabs{
  display: flex;
  justify-content: center;
  gap: 1.6%;
}
.c-tabs__item{
  width: 240px;
  font-size: 15px;
  padding: 22px 35px;
  border: 1px solid #111;
  border-radius: 100px;
  justify-content: space-between;
}
.c-tabs__item::before{
  display: none;
}
.c-tabs__item::after{
  background-image: url('../images/common/ic-arr-rightbl.png');
  width: 10px;
  height: 16px;
  display: block;
  margin-top: -1px;
}
.c-tabs__item:hover{
  background-color: #009FE8;
  color: #fff;
  border-color: #009FE8;
}
.c-tabs__item:hover::after{
  background-image: url('../images/common/ic-arr-rightw.png');
}
@media(max-width: 1024px){
  .c-tabs{
    flex-wrap: wrap;
    gap: 20px 2%;
  }
}
@media(max-width: 768px){
  .c-tabs{
    gap: 20px 4%;
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
  .c-tabs__item{
    width: 48%;
    font-size: 13px;
    padding: 15px 20px;
  }
  .c-tabs__item::after{
    width: 7px;
    height: 13px;
  }
}
/**End Tabs*/
.mainv__inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.mainv__imageBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  min-height: 530px;
  z-index: -1;
  @include media-query('s') {
    width: 200%;
  height: calc(100vh - 130px);
  left: -50%;
  }
}

.mainv__imageWrap {
  animation-name: Move;
  animation-duration: 1.8s;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
  mask-image: url("../images/common/bg-page.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  background-color: #F8F5EA;
  position: relative;
}
.mainv__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mainv__imageWrap img{
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media(max-width: 768px){
  .mainv__imageBox{
    min-height: 200px;
  }
}
/**Story*/
.c-story{
  gap: 40px;
}
.c-story__img{
  border-radius: 20px;
  width: 400px;
}
.c-story__img img{
  width: 100%;
  border-radius: 20px;
  display: block;
}
.c-story__content{
  width: 540px;
}
.c-story__content.--full{
  width: 100%;
}
@media(max-width: 768px){
  .c-story{
    flex-wrap: wrap;
    gap: 20px;
  }
  .c-story__img,
  .c-story__content{
    width: 100%;
    order: 1;
  }
  .c-story__content{
    order: 2;
  }
}
/**End Story*/
/**Product*/
.product-heading{
  border-radius: 100px;
  padding: 40px 20px;
  color: #fff;
  font-size: 22px;
  text-align: center;
  background-color: #B8A131;
}
.product-heading.--cus{
  background-color: #fff;
  text-align: left;
  color: #B8A131;
  padding: 0;
}
.c-product__infor{
  width: 100%;
  max-width: 640px;
  gap: 20px;
  margin: auto;
  align-items: flex-end;
}
.c-product__img{
  width: 166px;
}
.c-product__img img{
  width: 100%;
  display: block;
}
.c-product__content{
  width: 430px;
}
.product-dl{
  padding: 0 22px 30px;
  padding-left: 60px;
  border-bottom: 1px dashed #707070;
}
.product-dl:last-child{
  border-bottom: 0;
}
.product-dl dt{
  position: relative;
  font-size: 20px;
  color: #5A4031;
}
.product-dl dt::before{
  content: '';
  position: absolute;
  top: 1px;
  left: -35px;
  background-image: url('../images/page/ic-check.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
.product-dl dd{
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}

.product-dl.--cus{
  padding-left: 20px;
}
.product-dl.--cus dt{
  color: #B8A131;
  display: flex;
  gap: 15px;
}
.product-dl.--cus dt::before{
  background-image: url('../images/page/ic-customer.png');
  flex: 0 0 33px;
  height: 29px;
  position: relative;
  display: block;
  top: -4px;
  left: 0;
}
@media(max-width: 768px){
  .product-dl{
    padding: 0 10px 20px;
    padding-left: 30px;
  }
  .product-dl dt{
    font-size: 16px;
  }
  .product-dl dt::before{
    width: 18px;
    height: 18px;
    left: -25px;
    top: 2px;
  }
  .product-dl dd{
    font-size: 13px;
  }
  .product-heading{
    padding: 20px 10px;
    font-size: 16px;
  }
  .c-product__infor{
    flex-wrap: wrap;
    justify-content: center;
  }
  .c-product__content{
    text-align: center;
  }

  .product-dl.--cus{
    padding-left: 10px;
  }
  .product-dl.--cus dt{
    gap: 8px;
  }
  .product-dl.--cus dt::before{
    flex: 0 0 22px;
    height: 21px;
    top: 0px;
  }
}
/**End Product*/