@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --primary-color: #E37109;
    --secondary-color: #FFEAB5;
    --yellow-light: #E6D3A0;
    --red: #874000;
    --brow: #3A330C;
    --bg-primary: #FC973C;
}
@keyframes blurAnime{
    from {
      filter: blur(10px);
      transform: scale(1.02);
    }

    to {
      filter: blur(0);
      transform: scale(1);
    }
}
@keyframes hiddenAnime{
    from {
     opacity: 1;
    }

    to {
      opacity: 0;
    }
}
@keyframes moveItem1MB{
    from {
      filter: blur(10px);
      transform: scale(1.02);
      top: -100px;
      left: -50px;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      top: 0px;
      left: 20px;
    }
}
@keyframes moveItem2MB{
    from {
      filter: blur(10px);
      transform: scale(1.02);
      top: -100px;
      left: -50px;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      top: 5px;
      right: 20px;
    }
}
@keyframes moveItem3MB{
    from {
      filter: blur(10px);
      transform: scale(1.02);
      top: -100px;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      top: 82px;
    }
}
@keyframes moveItem4MB{
    from {
      filter: blur(10px);
      transform: scale(1.02);
      left: -100px;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      left: 0;
    }
}
@keyframes moveItem5MB{
    from {
      filter: blur(10px);
      transform: scale(1.02);
      top: 300px;
      right: -70px;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      top: 140px;
      right: 5px;
    }
}
@keyframes moveItem6MB{
    from {
      filter: blur(10px);
      transform: scale(1.02);
      bottom: -100px;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      bottom: 84px;
      left: 79px;
    }
}


@keyframes rotateAnime{
    from {
      transform: rotate(-15deg);
      scale: 0.3;
    }

    to {
      transform: rotate(15deg);
      scale: 1;
    }
}

@-webkit-keyframes wrench {
    0% {
      -webkit-transform: rotate(-12deg);
      transform: rotate(-12deg);
    }

    8% {
      -webkit-transform: rotate(12deg);
      transform: rotate(12deg);
    }

    10% {
      -webkit-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    18% {
      -webkit-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    20% {
      -webkit-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    28% {
      -webkit-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    30% {
      -webkit-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    38% {
      -webkit-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    40% {
      -webkit-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    48% {
      -webkit-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    50% {
      -webkit-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    58% {
      -webkit-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    60% {
      -webkit-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    68% {
      -webkit-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    75% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }

  @keyframes wrench {
    0% {
      -webkit-transform: rotate(-12deg);
      -ms-transform: rotate(-12deg);
      transform: rotate(-12deg);
    }

    8% {
      -webkit-transform: rotate(12deg);
      -ms-transform: rotate(12deg);
      transform: rotate(12deg);
    }

    10% {
      -webkit-transform: rotate(24deg);
      -ms-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    18% {
      -webkit-transform: rotate(-24deg);
      -ms-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    20% {
      -webkit-transform: rotate(-24deg);
      -ms-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    28% {
      -webkit-transform: rotate(24deg);
      -ms-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    30% {
      -webkit-transform: rotate(24deg);
      -ms-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    38% {
      -webkit-transform: rotate(-24deg);
      -ms-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    40% {
      -webkit-transform: rotate(-24deg);
      -ms-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    48% {
      -webkit-transform: rotate(24deg);
      -ms-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    50% {
      -webkit-transform: rotate(24deg);
      -ms-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    58% {
      -webkit-transform: rotate(-24deg);
      -ms-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    60% {
      -webkit-transform: rotate(-24deg);
      -ms-transform: rotate(-24deg);
      transform: rotate(-24deg);
    }

    68% {
      -webkit-transform: rotate(24deg);
      -ms-transform: rotate(24deg);
      transform: rotate(24deg);
    }

    75% {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }

@media (prefers-reduced-motion: no-preference) {
    .anime-shake .spices-item:not(.item-salt):not(.item-logo) .inner-img img{
        -webkit-animation: wrench 2.5s ease infinite;
        animation: wrench 2.5s ease infinite;
    }
    .anime-rotate .spices-item:not(.item-salt):not(.item-logo) .inner-img img{
        animation-name:rotateAnime;
        animation-duration: 1.5s;
        animation-fill-mode:forwards;

    }
    .trouble-list.anime-blur .trouble-item{
        animation-name:blurAnime;
        animation-duration: 1s;
        animation-fill-mode:forwards;
    }
    .trouble-list.anime-blur .trouble-item.item-1{
        animation-name:moveItem1MB;
        animation-duration: 1s;
    }
    .trouble-list.anime-blur .trouble-item.item-2{
        animation-name:moveItem2MB;
        animation-duration: 1s;
    }
    .trouble-list.anime-blur .trouble-item.item-3{
        animation-name:moveItem3MB;
        animation-duration: 1s;
    }
    .trouble-list.anime-blur .trouble-item.item-4{
        animation-name:moveItem4MB;
        animation-duration: 1s;
    }
    .trouble-list.anime-blur .trouble-item.item-5{
        animation-name:moveItem5MB;
        animation-duration: 1s;
    }
    .trouble-list.anime-blur .trouble-item.item-6{
        animation-name:moveItem6MB;
        animation-duration: 1s;
    }
}


html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
html,
body {
  min-height: 100%;
  height: auto;
  scroll-behavior: smooth;
}
.eachTextAnime span{
    opacity: 0;
}
.eachTextAnime.appeartext span{
    animation:text_anime_on 3s ease-out forwards;
}
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}

.ff-notosan{
    font-family: "Noto Sans", sans-serif;
}
.ff-public-san{
    font-family: "Public Sans", sans-serif;

}
body{
    width: 100%;
    letter-spacing: -0.6px;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0px;
    font-weight: 500;
}
body *{
    box-sizing: border-box;
}
p,h3  {
    margin: 0px;
}
h3{
    font-weight: 500;
}
img {
    width: 100%;
}
.bg-brow {
    background-color: var( --brow );
}
.bg-primary{
    background-color: var( --bg-primary );
}
.bg-secondary{
    background-color: var( --secondary-color );
}
.color-red{
    color: var( --red );
}
.color-secondary{
    color: var( --secondary-color );
}
.color-black{
    color: #000000;;
}
.color-yellow-light{
    color: var(--yellow-light);
}
.color-white{
    color: #FFFBF0;
}
.color-brow{
    color: var( --brow );
}
.fs-10{
    font-size: 10px;
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.fs-16{
    font-size: 16px;

}
.fs-20{
    font-size: 20px;
}
.fs-24{
    font-size: 24px;
}
.fs-32{
    font-size: 32px;
}
.mg-bt-20{
    margin-bottom: 20px;
}
.mg-bt-30{
    margin-bottom: 30px;
}
.spacing-big {
    letter-spacing: 16px;
    margin-left: 24px;
}
.bold{
    font-weight: bold;
}
.black{
    font-weight: 900;
}
.demilight{
    font-weight: 300;
}
.regular{
    font-weight: 400;
}
.spacing-0{
    letter-spacing: 0px;
}
.align-center{
    text-align: center;
}
.align-left{
    text-align: left;
}
.align-right{
    text-align: right;
}
.btn {
    display: inline-block;
    font-family: "Noto Sans", sans-serif;
    border-radius: 50px;
    padding: 6px;
    background-color: var( --primary-color );
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    min-width: 159px;
    letter-spacing: 0px;
    text-align: center;
}

.btn.btn-big {
    font-size: 16px;
    padding: 19px 10px;
    min-width: 263px;
}
.section {
    background-size: cover;
    position: relative;
    z-index: 1;
    max-width: 996px;
    margin: 0 auto;
}
.section-banner {
    position: relative;
}

.section .inner-content {
    position: relative;
    /* overflow: hidden; */
}
/*.section-trouble{
    background-image: url('img/1000001940.jpg');
}
*/
.section-banner .inner-content {
    padding: 110px 15px 40px 15px;
    height: 100vh;
}

.section-banner .inner-content .logo-text img {
    max-width: 200px;
}

.section-banner .inner-content .logo-icon img {
    max-width: 100px;
}

.section-banner .inner-content .logo-icon {
    margin: 20px 0px 10px 0px;
}

.section-banner .inner-content .btn {
    margin-top: 15px;
}

.section-title {
    padding: 10px 30px 10px 30px;
    background-color: var(--brow);
    width: 88vw;
    border-radius: 100px;
    transform: translateY(-50%);
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 400px;
}
.trouble-list {
    position: relative;
    max-width: 330px;
    margin: 0px auto;
    padding-top: 410px;
    margin-top: 5px;
}
.trouble-item.item-1,.trouble-item.item-6{
    width: 139px;
}
.trouble-item.item-3{
    width: 120px;
}
.trouble-item.item-2,
.trouble-item.item-4,
.trouble-item.item-5,
.trouble-item.item-10,
.trouble-item.item-9,
.trouble-item.item-7,
.trouble-item.item-8{
    width: 115px;
}
.trouble-item{
    position: absolute;
}
.trouble-item .content-box {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    background-color: #FBF2E7;
    border: 1px solid var( --primary-color );
    border-radius: 50%;
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.trouble-item .content-box .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    width: 100%;
    color: #1a1a1a;
}
.trouble-item.item-1 {
    top: 0px;
    left: 20px;
}

.trouble-item.item-2 {
    top: 5px;
    right: 20px;
}

.trouble-item.item-3 {
    top: 82px;
    left: 112px;
    z-index: 1;
}

.trouble-item.item-4 {
    top: 113px;
}

.trouble-item.item-5 {
    top: 140px;
    right: 5px;
    z-index: 2;
}

.trouble-item.item-6 {
    bottom: 84px;
    left: 79px;
}

.img-men,.img-women {
    position: absolute;
    bottom: 5px;
}

.img-men img, .img-women img {
    height: 144px;
    width: auto;
}

.trouble-list .img-women {
    right: 0;
}

.trouble-list .img-men {
    left: 10px;
}

.section-text-bg {
    padding: 60px 30px 60px 40px;
}

.section-you-want .inner-content {
    padding-top: 0;
    padding-bottom: 50px;
}
.section-you-want .box-conent{
    position: relative;
    max-width: calc( 100% - 60px );
    margin: auto;
    margin-top: 40px;

}
.section-you-want .box-conent .wrap-content{
    background-color: #FFFBF0;
    border-radius: 29px;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.section-you-want .box-conent .step-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 40px;
    margin-bottom: 30px;
}

.step-item.align-center.choose img {
    width: 70px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.step-item.align-center.measure img {
    width: 30px;
    margin-top: 32px;
}

.step-item.send img {
    width: 43px;
    margin-top: 30px;
}

.step-item {
    position: relative;
    padding-bottom: 25px;
}

.step-item:after {
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    color: #000;
    font-weight: 400;
}

.step-item:last-child:after {
    display: none;
}

.step-item .description {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.step-item.align-center.send .description {
    bottom: -13px;
}
.section-you-want .box-conent .btn {
    margin-top: 50px;
}
.box-spices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -15px;
}

.section-list-spices .inner-content {
    padding: 50px 30px;
}

.spices-item {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    width: calc( 33.33% - 15px );
    margin-right: 15px;
    margin-bottom: 15px;
    background-color: #fff;;
}

.spices-item img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 50%;
}

.spices-item .inner-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    transition: all .3s;
}

.box-spices.salt {
    margin-top: 15px;
    margin-bottom: 15px;
}
section.section.section-purchase.bg-secondary {
    background-color: #ffeab5;
}

section.section.section-customize {
    background-color: #FAEFD3;
}

section.section.section-customize .inner-content {
    padding-top: 30px;
    padding-bottom: 30px;
}
.customize-lis {
    margin-top: 40px;
}

.customize-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 7px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0px 10px;
}

.customize-item {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.customize-item .inner-img{
    position: relative;
    width: 100%;
    padding-top: 78%;
}
.customize-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-customize .wrap-button {
    margin-bottom: 50px;
}
.section-monitor-survey {
    background-image: url("img/backgroud-arrow.jpg");
}

.section-monitor-survey .section-title {
    transform: none;
    margin-bottom: 20px;
}

.section-monitor-survey .inner-content {
    padding-top: 30px;
    padding-bottom: 50px;
}

.survey-item .circle-img {
    width: 55px;
    position: absolute;
    border-radius: 50%;
    right: -10px;
    overflow: hidden;
    transform: translateY(-30%)
}

.survey-list {
    display: flex;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 16px;
    margin-bottom: -20px;
}
.survey-item {
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--brow);
}
.survey-item .avatar {
    position: absolute;
    width: 55px;
    left: 38%;
    transform: translateX(-50%);
    top: calc(100% - 10px);
}
.survey-item.item-2 .avatar {
    left: 30%;
}

.survey-item.item-3 .avatar {
    width: 42px;
}

.survey-item .circle-img {
    width: 40px;
    position: absolute;
    border-radius: 50%;
    right: -10px;
    overflow: hidden;
}

.survey-item.item-1 {
    width: 100%;
    max-width: 265px;
    margin: 0 auto;
    margin-bottom: 55px;
}

.survey-item.item-2 {
    max-width: 165px;
    margin-left: 10px;
}

.survey-item.item-3 {
    max-width: 136px;
    top: -40px;
    left: 100%;
    transform: translateX(-100%);
}
.survey-item .circle-img .inner-image {
    position: relative;
    padding-top: 100%;
}

.survey-item .circle-img .inner-image img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
.survey-item.arrow-above {
    max-width: 265px;
    margin: 20px auto;
    margin-bottom: 10px;
}

.survey-item.arrow-above .circle-image {
    left: -10px;
}

.survey-item.arrow-above .circle-img {
    left: 0px;
    top: 0;
    transform: translate(-50%,-65%);
}

.survey-item:after,.survey-item:before {
    content: '';
    display: inline;
    position: absolute;
    top: calc( 100% - 6px);
    left: calc( 50% - 5px);
    background-size: contain;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    width: 10px;
    height: 17px;
    background-color: #f5f3e9;
    transform: rotate(12deg);
}
.survey-item:before{
    width: 12px;
    height: 19px;
    background-color: var( --brow );
    left: calc( 50% - 6px);
    clip-path: polygon(97% 0, 0 0, 48% 100%);
}
.survey-item .content {
    position: relative;
    background-color: #F5F3E9;
    padding: 15px 5px;
    border-radius: 10px;
    text-align: center;
}
.survey-item.arrow-above .content{
    padding: 20px 10px;
}
.survey-item.arrow-above:after,.survey-item.arrow-above:before {
    content: '';
    display: inline;
    position: absolute;
    background-size: contain;
    top: -13px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    transform: none;
}
.survey-item.arrow-above:before {
    left: calc(50% - 6px);
    top: -15px;
}

.block {
    display: block;
}

section.section.about-us {
    background-color: #FFF8E5;
}

.about-us .box-conent {
    padding-top: 40px;
}

.hiden-global {
    display: none;
}

.logo-box {
    max-width: 215px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 30px;
}

.list-image-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.img-about-item {
    margin-bottom: -5px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-content .col-left {
    width: 45%;
}

.footer-content .col-right {
    width: 55%;
}

.footer .inner-content {
    padding: 30px 40px;
}

.footer-content.social img {
    width: 36px;
    height: auto;
}

.wrap-img-logo {
    margin-top: 50px;
    margin-bottom: 50px;
}
.footer-content a {
    display: inline-block;
    color: #000;
    text-decoration: none;
}
.footer-content p {
    margin-bottom: 20px;
    white-space: nowrap;
}
.hide-mobile{
    display: none;
}
.dots .dot-item {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    margin-left: 8px;
}

.dots .dot-item.item-1 {
    background-color: #D98272;
}
.dots .dot-item.item-2 {
    background-color: #E53F28;
}
.dots .dot-item.item-3 {
    background-color: #840D1C;
}
.dots .dot-item.item-4 {
    background-color: #F7D06D;
}
.dots .dot-item.item-5 {
    background-color: #47543E;
}
.dots .dot-item.item-6 {
    background-color: #BBCA10;
}

.dots {
    margin-top: 5px;
    margin-bottom: 50px;
}
div#pre-loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var( --secondary-color );
}
div#pre-loading.hidden{
    animation: hiddenAnime;
    animation-duration: 1s;
}

div#pre-loading img {
    width: 80px;
    height: auto;
}
body.preloading{
    overflow: hidden;
}
/*
.section.section-trouble .inner-content{
    height: 100vh;
    align-items: center;
}

.section.section-trouble .trouble-list {
    top: 50%;
    transform: translateY(-50%);
}
*/
.pralax-section.pralax-section3 {
    position: relative;
}
.pralax-section3 .section .inner-content {
     position: absolute;
    top: 50%;  /* position the top  edge of the element at the middle of the parent */
    left: 50%; /* position the left edge of the element at the middle of the parent */

    transform: translate(-50%, -50%); /
}
.pralax-section3 .section .inner-content-title
{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
}
.inner-content-img img {
    height: 80vh;
    object-fit: cover;
}

.footer {
    background-color: #fff;
    padding-bottom: 80px;
}

.footer .instagram-img {
    width: 70px;
}

.footer .logo-footer {
    width: 300px;
    margin-left: 5px;
    margin-top: 4cap;
}

.footer .left-footer {
    display: flex;
    flex-direction: column;
}

.footer .content-footer  {
    width: 100%;
    justify-content: space-between;
    display: flex;
}

.footer .content-footer .box-links {
    width: 300px;
}

.footer .links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer .links li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

.footer .links li a:hover {
    text-decoration: underline;
}

.margin-bottom-lg {
    margin-bottom: 100px;
}

.font-bold {
    font-weight: bold;
}

@media screen and (min-width: 900px) {
    body{
        background-image: url(./img/background-body.jpg);
    }
}
@media screen and (min-width: 768px) {
    .d-fs-16{
        font-size: 16px;
    }
    .d-fs-12{
        font-size: 12px;
    }
    .align-center-desktop {
        text-align: center;
    }
    .section-banner .bg {
        /* background-image: url("img/background-pc2.jpg"); */
        background-repeat: no-repeat;
        background-position: center;
        background-size: 1150px;
        transition: all .3s;
    }
    .section .inner-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 60px 20px;
        width: 100%;
    }
    .section-banner .inner-content {
        max-width: 100vw !important;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .1s ease 0s;
    }
    .section-banner .inner-content.fixed{
        position: fixed;
        top: 50vh !important;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .section-banner {
        overflow: hidden;
        height: calc(100vh + 300px);
    }
    .hide-desktop{
        display: none;
    }
    .hide-mobile{
        display: block;
    }

    .section-banner .inner-content .logo-icon {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .logo-text {
        margin-top: 5px;
    }

    .section-banner .inner-content .btn {
        margin-top: 30px;
    }

    /*.section-trouble {
        background-image: url(img/background3.jpg);
    }*/
    .section-title {
        border-radius: 50px;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;

    }

    .trouble-list {
        padding-top: 430px;
        max-width: 670px;
    }

    .section-you-want .box-conent {
        max-width: 580px;
        position: relative;
        width: 100%;
    }

    .section-you-want .box-conent:after {
        content: "";
        display: inline-block;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
        position: absolute;
        background-color: #FFFBF0;
        top: -10px;
        left: -10px;
        border-radius: 29px;
        z-index: 1;
        opacity: 0.8;
    }
    .step-item.align-center.choose img {
        width: 94px;
        margin-top: 10px;
    }

    .step-item.align-center.measure img {
        width: 40px;
        margin-top: 35px;
    }

    .step-item.send img {
        width: 55px;
        margin-top: 33px;
    }

    .step-box {
        padding: 0px 15px;
        max-width: 450px;
        margin: 0 auto;
    }

    .step-item {
        padding-bottom: 40px;
    }
    .step-item .color-brow {
        font-size: 16px;
    }

    .step-item.align-center.send .description {
        bottom: -16px;
    }

    .section-you-want .box-conent .btn {
        margin-top: 30px;
    }
    .section-you-want .inner-content {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .section-text-bg .inner-content {
        padding: 0px;
    }

    .spices-item {
        width: calc( calc( 100% / 6 ) - 15px );
    }
    .spices-item.item-salt  .inner-img p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .spices-item.item-salt .inner-img {
        background-color: #FFF8E5;
    }

    .spices-item.item-logo .inner-img img {
        width: 45%;
        height: auto;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        border-radius: 0px;
    }

    .spices-item.item-logo .inner-img {
        background-color: var(--secondary-color);
    }

    .box-spices {
        margin-bottom: 40px;
    }
    section.section.section-customize .inner-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .customize-list {
        grid-gap: 15px;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    .section-monitor-survey .section-title {
        margin-bottom: 50px;
        transform: translateY(-50%);
    }

    .survey-item.item-1 {
        max-width: 295px;
    }

    .survey-list {
        flex-direction: column;
        max-width: 620px;
        margin: 0 auto;
        margin-bottom: -50px;
    }

    .survey-item.item-2 {
        max-width: 185px;
    }

    .survey-item.item-3 {
        max-width: 155px;
        left: 100%;
        transform: translateX(-100%);
        top: -20px;
    }
    .survey-item .content {
        padding: 20px 15px;
    }
    .trouble-item.item-4 {
        top: 120px;
        left: 100px;
    }

    .trouble-item.item-3 {
        top: 30px;
        left: 200px;
    }

    .trouble-item.item-7 {
        top: 10px;
        left: 350px;
        z-index: 2;
    }

    .trouble-item.item-9 {
        top: 100px;
        left: 410px;
        z-index: 1;
    }

    .trouble-item.item-2 {
        top: 20px;
    }

    .trouble-item.item-10 {
        top: 232px;
        left: 40px;
    }

    .trouble-item.item-6 {
        top: 175px;
        left: 245px;
    }

    .trouble-item.item-8 {
        top: 175px;
        right: 37px;
    }

    .section-trouble .inner-content {
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .trouble-list .img-men {
        left: 170px;
    }

    .trouble-list .img-women {
        right: 150px;
    }
    .survey-item.arrow-above {
        margin-top: 50px;
        max-width: 296px;
    }
    .section.footer .inner-content {
        max-width: 1000px;
    }

    .footer-content.social .wrap-img-logo img {
        width: 275px;
    }

    .wrap-img-logo {
        margin-top: 20px;
        margin-bottom: 0px;
    }

    .footer-content .col-left {
        width: calc(100% - 250px);
    }

    .footer-content .col-right {
        width: 250px;
    }

    .footer-content.social {
        margin-bottom: 60px;
    }
    .about-us .inner-content {
        max-width: 1000px;
    }

    .about-us .inner-content .wrap-content {
        display: flex;
        flex-wrap: wrap;
        align-items: end;
        margin-top: 60px;
    }

    .about-us .inner-content .wrap-content .box-conent {
        width: 40%;
        padding: 70px 20px;
        order: 1;
        margin-left: 40px;
    }

    .about-us .inner-content .wrap-content .wrap-button {
        width: calc( 60% - 40px );
        order: 2;
        padding: 0px 20px;
    }

    .list-image-about {
        order: 3;
        margin-top: 60px;
        grid-template-columns: repeat(4,1fr);
        grid-gap: 15px;
        width: 100%;
    }

    .wrap-button {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wrap-button .btn {
        max-width: 265px;
        margin-bottom: 0px;
        margin-top: 30px;
    }

    .section-customize .wrap-button .btn {
        margin-top: 0px;
    }

    .img-about-item {
        padding: 15px;
        background-color: #fff;
        padding-bottom: 60px;
    }

    .img-about-item .inner-image {
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        padding-top: 77%;
        width: 100%;
    }

    .img-about-item .inner-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    section.section.section-customize {
        background-color: #FFF8E5;
    }
    .break-section {
        background-color: #FFEAB5;
        width: 100%;
        height: 80px;
    }

    .section-monitor-survey .inner-content {
        padding-top: 0px;
    }
    .section-monitor-survey{
        background-image: url("img/1000001943.jpg");
    }
    .section-you-want .inner-content .color-brow {
        font-size: 16px;
    }

    .section-you-want h3.fs-16 {
        font-size: 24px;
        color: var(--brow);
    }


    @keyframes moveItem1DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: -100px;
          left: -50px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 0px;
          left: 20px;
        }
    }
    @keyframes moveItem2DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: -100px;
          right: -50px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 20px;
          right: 20px;
        }
    }
    @keyframes moveItem3DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: -100px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 30px;
          left: 200px;
        }
    }
    @keyframes moveItem4DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          left: 0px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 120px;
          left: 100px;
        }
    }
    @keyframes moveItem5DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: 300px;
          right: -70px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 140px;
          right: 5px;
        }
    }
    @keyframes moveItem6DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: 375px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 175px;
          left: 245px;
        }
    }
    @keyframes moveItem7DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: -100px;
          left: 400px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 10px;
          left: 350px;
        }
    }
    @keyframes moveItem8DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: 275px;
          right: -100px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 175px;
          right: 37px;
        }
    }
    @keyframes moveItem9DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: 0px;
          left: 500px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 100px;
          left: 410px;
        }
    }
    @keyframes moveItem10DT{
        from {
          filter: blur(10px);
          transform: scale(1.02);
          top: 300px;
          left: -50px;
        }

        to {
          filter: blur(0);
          transform: scale(1);
          top: 232px;
          left: 40px;
        }
    }
    @media (prefers-reduced-motion: no-preference) {
        .anime-rotate .spices-item:not(.item-salt):not(.item-logo) .inner-img img{
            animation-name:rotateAnime;
            animation-duration: 1.5s;
            animation-fill-mode:forwards;
        }
        .trouble-list.anime-blur .trouble-item{
            animation-name:blurAnime;
            animation-duration: 1s;
            animation-fill-mode:forwards;
        }
        .trouble-list.anime-blur .trouble-item.item-1{
            animation-name:moveItem1DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-2{
            animation-name:moveItem2DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-3{
            animation-name:moveItem3DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-4{
            animation-name:moveItem4DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-5{
            animation-name:moveItem5DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-6{
            animation-name:moveItem6DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-7{
            animation-name:moveItem7DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-8{
            animation-name:moveItem8DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-9{
            animation-name:moveItem9DT;
            animation-duration: 1s;
        }
        .trouble-list.anime-blur .trouble-item.item-10{
            animation-name:moveItem10DT;
            animation-duration: 1s;
        }
    }
}

.wrap-banner {
    max-width: 996px;
    margin: 0 auto;
}
#backgroud-scroll{
    background-repeat: no-repeat;
    background-position: top;
    background-size: 1150px;
    /* background-color: #fbefd3; */
    position: absolute;
    left: 0;
    top: -50px;
    width: 100%;
}
#backgroud-scroll img {
    width: 100%;
    max-width: 996px;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media screen and (max-width: 768px){
    .pralax-section3 .section .inner-content {
      width: 100%;
    }

    .hide-in-mobile {
        display: none !important;
    }

    .show-in-mobile {
         display: block !important;
    }

    .mobile-box-footer {
        display: flex;
        justify-content: space-between;
    }

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

    .margin-bottom-0-mobile {
        margin: 0;
    }

    .width-full-mobile {
        width: 100% !important; 
    }

    .box-text-mobile {
        width: 70% !important;
    }

    .hide-desktop {
        margin-bottom: 50px;
    }


    #smooth-content {
        background-color:transparent}
    #smooth-wrapper { background:transparent;}
    body { background:transparent;}
    html {background:transparent;}
    .section-trouble .section-title {
      /*margin-top: -30px;
      margin-bottom: 0;*/
    }
    /*.section-banner .bg {
        background-image: url(img/banner-mb.jpg);
        position: absolute;
        width: calc(100% + 30px);
        margin-left: -30px;
        margin-top: -30px;
        height: calc(100% + 30px);
        background-size: 400px;
        background-color: #fbefd3;
        background-repeat: no-repeat;
        background-position: top center;
    }*/
}