@charset "UTF=8";

html {
    visibility: hidden;
  }
  html.wf-active {
    visibility: visible;
  }

body {
    position: relative;
    width: 100%;
    /* min-width: 1200px; */
    margin: 0 auto;
    font-feature-settings: "palt" 1;
    font-family: "yu-gothic-pr6n", sans-serif;

}

body.animate {
    animation: kotei .1s linear 5.2s both;
}
@keyframes
kotei {
  0%{
    overflow: hidden;
  }
  100%{
    overflow: auto;
  }
}


a {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.pc {
    display: none;
}

.sp {
    display: block;
}
.sp3 {
    display: none;
}

.main {
    overflow: hidden;
}



/* ---------------------------------------------------------------- top button ----------------------------------------------------------------- */

.top-button {
    position: fixed;
    z-index: 9;
    display: flex;
    bottom: 2%;
    right: 2%;
    justify-content: center;
    align-items: center;
    background-color: #f57469;
    width: 65px;
    aspect-ratio: 1 / 1;
    border-radius: 20%;
    z-index: 10;
    opacity: 0;
    transition: 0.5s ease all;
}
.top-button.active {
    opacity: 1;
}

.top-button a {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #fff;
}
.top-button a::after {
    display: block;
    content: '';
    width: 2em;
    aspect-ratio: 1 / 1;
    margin: 2px auto 0 auto;
    background: url(../img/top_button.webp) no-repeat center / contain;
}




/* ---------------------------------------------------------------- header ----------------------------------------------------------------- */



.loaded .header {
    position: absolute;
    width: 100vw;
    height: auto;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 1s ease all;
    opacity: 1;

}
.header {
    height: 0;
}

body .bg.active {
    position: absolute;
    width: 100vw;
    height: 100%;
    background-color: #321400;
    z-index: 10;
    opacity: 0.5;
    transition: 1s ease-in-out all;
}


.header-inner {
    position: relative;
    width: 100%;
}

.header-inner .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    height: 60px;
    margin: 0 auto;

}

.loaded  .header-wrap .print {
    font-size: clamp(25px, 2.08vw, 35px);
    color: transparent;
    background: url(../img/header_logo_w.webp) no-repeat center / contain;
    z-index: 5;
    transition: 1s 3.5s ease all;
    opacity: 1;

}
.header-wrap .print {
    font-size: clamp(25px, 2.08vw, 35px);
    color: transparent;
    background: url(../img/header_logo_w.webp) no-repeat center / contain;
    z-index: 5;
    opacity: 0;

}


.header-wrap .pulldown{
    display: flex;
    width: auto;
    align-items: center;
    margin-left: auto;

}

.pulldown p,a {
    font-size: 22px;
    color: #f57469;
}

/* ハンバーガー */

.loaded  .header-wrap .header-wrap01{ 
    position: fixed;
    width: 30vw;
    max-width: 120px;
    height: 40vw;
    max-height: 170px;
    right: 2%;
    top: -1%;
    transform: translateY(0);
    z-index: 30;
    transition: 1.8s 3s ease-in-out all;
    background: url(../img/hamburger_bg.webp) no-repeat center / contain;


}

.header-wrap .header-wrap01 {
    transform: translateY(-150vw);
}

.header-wrap01 .header-down {
    width: 100%;
    height: 100%;
    transform: translateY(0);
    transition: 0.2s ease-in-out all;
    background: url(../img/hamburger_bg.webp) no-repeat center / contain;

}
.header-wrap01 .header-down:hover {
    transform: translateY(7%);   

}

.header-down .header-pepar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 50;

}

.hamburger {
    position: relative;
    display: block;
    width: auto;
    z-index: 30;
    cursor: pointer;

}

.header-pepar .hamburger {
    width: 100%;
    height: auto;
    font-size: clamp(18px, 5vw, 25px);
    color: #eb7b6b;
    font-family: sans-serif;
    font-weight: 600;
    margin: 0 auto;
}


.hamburger .open,
.hamburger .close {
    display: block;
    margin-bottom: 0.5em;
    text-align: center;
    font-family: "neue-kabel", "yu-gothic-pr6n", sans-serif;
}
.hamburger .close {
    display: none;
}

 .hamburger.active .close {
    display: block;
}
.hamburger.active .open {
    display: none;
}

.hamburger span {
    display: block;
    width: 50%;
    height: 4px;
    border-radius: 50px;
    margin: 0 auto 0.5em auto;
    background-color: #eb7b6b;
    transition: 0.5s ease;

}

.hamburger.active span:nth-of-type(1) {
    transition: 0.5s ease;
    transform: translateY(10px) rotate(20deg);
}

.hamburger.active span:nth-of-type(2) {
    transform: translateY(-5px) rotate(-20deg);
    transition: 0.5s ease;
}

/* ハンバーガーメニュー内容 */

.header-inner .header-box {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 10;
    width: 30%;
    height: 100vh;
    border-radius: 5vw 0 0  5vw;
    background: #f29b87 url(../img/hamburger_border.png) repeat center / contain;
    background-size: contain;
}

.header-box .menu-wrap {
    position: relative;
    display: flex;
    flex-direction: column ;
    justify-content: center;
    width: 100%; 
    height: 100%;
}

.header-wrap .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 80%;
    margin: auto 0;
    background-color: #f29b87;
}

.menu .menu-text {
    width: auto;
    height: auto;
    text-align: left;
    margin: 20% auto 0 auto;    
    margin-left: auto;
    z-index: 50;
}


.menu p,
.menu a {
    display: block;
    font-size: 25px;
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    transition: 0.2s ease-in-out all;
}
.menu a:hover {
    color: #616161;
}
.menu .postage-ham {
    margin-bottom: 3vh;
}

.menu ul {
    padding: 2vh 0 3vh 0;
}
.menu ul li {
    margin-bottom: 2.5vh;
}
.menu ul li:last-child {
    margin-bottom: 0;
}
.menu ul  li a {
    font-size: 18px;
}

.menu-wrap .menu02 {
    position: absolute;
    width: 23vw;
    height: auto;
    bottom: 0;
    left: 50%;
    margin: 0 auto;
    transform: translateX(-50%);
}
.menu-wrap .menu02 img {
    width: 100%;
    pointer-events: none;
    aspect-ratio: 1 / 1;

}

#target01 {
    padding-right: 0;
    transform: translateX(150vw);
    transition: ease 1s;
}
#target01.active {
    transform: translatex(70vw);
}


/* ---------------------------------------------------------------- top ----------------------------------------------------------------- */


.top {
    width: 100%;
    height: auto;
}

.top-inner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 65vw;
    /* min-height: 800px; */
    /* max-height: 1200px; */
    border-radius: 0 0 50px 50px;
    background-color: #f29b87;
}

.loaded .top-inner .top-logo {
    position: absolute;
    width: 100%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: 0.5s 3.5s ease-in-out all;

}
.top-inner .top-logo {
    position: absolute;
    width: 100%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    
}

.top-logo h1{
    display: block;
    font-size: clamp(180px, 15vw, 300px);
    /* font-size: 142px; */
    text-wrap: nowrap;
    background: url(../img/fv_logo.webp) no-repeat center / contain;
    color: transparent;
}

.top-wrap01-sp {
    display: none;
}

.top-inner .top-wrap01 {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 95%;
    margin: 0 auto;
    bottom: 20%;
    left: 50%;
    transform: translate(-50% , 50%);
}

.top-wrap01 p {
    width: 30%;
    height: auto;
    font-size: 20px;
    font-size: clamp(18px, 1.5vw, 28px);
    letter-spacing: 0.05em;
    line-height: 2;
    color: #fff;
    
    
}

.top-inner .top-hand,
.top-inner .bottom-hand {
    position: absolute;
    max-width: 800px;
    bottom: 13%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.top-inner .top-hand {
    width: 20%;
    max-width: 384px;
    top: 41%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
}

.top-inner .bottom-hand {
    width: 45%;
}

.top-inner .bottom-hand .bottom-hand-wrap,
.top-inner .top-hand .top-hand-wrap {
    position: relative;
    width: 100%;
    background-color: #eee;
}

.bottom-hand-wrap img,
.top-hand-wrap img{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-inner .top-hand .top-hand-1 {
    position: absolute;
    width: 100%;
    height: 50;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    background-color: #eee;
}



.top-inner .top-deco02,
.top-inner .top-deco02-sp {
    position: absolute;
    height: 100%;
    width : 100%;
    top: 0;
    z-index: 1;
    pointer-events: none;

}


.top-inner .top-deco01 img,
.top-inner .top-deco02 img,
.top-inner .top-deco02-sp img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

/* 上の手 全体 */
.loaded .top-inner .top-deco02 .hand-top1,
.loaded .top-inner .top-deco02 .hand-top2 {
    width: 20%;
    max-width: 384px;
    top: 11%;
    left: 50%;
    transform: translate(-50% , -50%);
    opacity: 1;
    transition: 1s ease-in-out all;
    animation: hand 0.5s 2s ease-in-out 1 forwards;
}
.top-inner .top-deco02 .hand-top1,
.top-inner .top-deco02 .hand-top2 {
    top: -24%;
    left: 50%;
    transform: translate(-50% , -50%);
    opacity: 0;

}
@keyframes hand {
    0% {
        top: 11%;
    }
    100% {
        top: -100%;
    }
}


/* 上の手 親指のみ */
.top-inner .top-deco02 .hand-top2 {
    z-index: 2;
}

/* 下の手 全体 */
.top-inner .top-deco02 .hand-bottom1,
.top-inner .top-deco02 .hand-bottom2 {
    display: block;
    top: 88%;
    width: 40vw;
    max-width: 800px;
    min-width: 600px;
    z-index: -1;
}

.top-inner .top-deco02 .hand-bottom2 {
    z-index: 2;
    
}
.top-inner .top-deco02 .hand-bottom1_sp,
.top-inner .top-deco02 .hand-bottom2_sp {
    display: none;
}

/* 左１番目 */
/* 動きデコ */
.loaded .top-inner .top-deco01 img:nth-child(1) {
    width: 2vw;
    min-width: 24px;
    max-width: 50px;
    top: 46%;
    left: 4%;
    transform: translate(-50%, -50%) rotate(26deg) ;
    opacity: 1;
    transition: 0.2s 1s ease-in-out all;
    animation: shoot1-a 0.5s 1.3s ease-in-out 1 forwards;

}
.top-inner .top-deco01 img:nth-child(1) {
    top: 46%;
    left: 4%;
    transform: translate(-50%, -50%) rotate(26deg) ;
    opacity: 0;

}
@keyframes shoot1-a {
    0% {
        transform: translate(-50%, -50%) rotate(26deg);
        opacity: 1;
    }
    8% {
        transform: translate(-50%, -50%) rotate(35deg); }
    25% {
        transform: translate(-50% , -50%) rotate(15deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(20deg); 
    }
    70% { opacity: 1;}
    100% {
        transform: translate(-50%, -50%) rotate(5deg); 
        opacity: 0;
    }

   
}
/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-1 {
    width: 8vw;
    min-width: 96px;
    max-width: 180px;
    top: 53%;
    left: 8%;
    animation: shoot1-b 2.5s 1s ease-in-out 1 forwards;
    transition: 1s ease-in-out all;
    transform: translate(-50% , -50%) rotate(0);
    opacity: 1;

}
.top-inner .top-deco02 .deco2-1 {
    top: 40%;
    left: 3%;
    transform: translate(-50% , -50%) rotate(25deg);
    opacity: 0;

}
@keyframes shoot1-b {
    0% {
        top: 53%;
        left: 8%;
        transform: translate(-50%, -50%) rotate(0) ;

    }
    10% {
        transform: translate(-50%, -50%) rotate(-10deg); }
    15% {
        transform: translate(-50%, -50%) rotate(15deg); }
    20% {
        transform: translate(-50%, -50%) rotate(-18deg); }

    50% {
        top: 53%;
        left: 8%;
        transform: translate(-50%, -50%) rotate(-18deg); 

    }
    70% {
        transform: translate(-50%, -50%) rotate(-18deg); 
        top: 30%;
        

    }
    80% {
        transform: translate(-50%, -50%) rotate(60deg);  }

    100% {
        top: 100%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-40deg);  
    }
}

/* 左２番目 */
/* 動きデコ */
.loaded .top-inner .top-deco01 img:nth-child(2) {
    width: 5vw;
    min-width: 72px;
    max-width: 100px;
    top: 34%;
    left: 17%;
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
    transition: 0.2s 1s ease all;
    animation: shoot2-a 0.5s 1.3s ease-in-out 1 forwards;
}
.top-inner .top-deco01 img:nth-child(2) {
    top: 34%;
    left: 17%;
    opacity: 0;

}

@keyframes shoot2-a {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 1;
    }
    8% {
        transform: translate(-50%, -50%) rotate(5deg); }
    25% {
        transform: translate(-50%, -50%) rotate(-8deg); }

    50% {
        transform: translate(-50%, -50%) rotate(5deg);}
    70% {
        opacity: 1; }

     100% {
        opacity: 0; }
}

/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-2 {
    width: 15vw;
    min-width: 180px;
    max-width: 300px;
    top: 16%;
    left: 8%;
    animation: shoot2-b 2.5s 1s ease-in-out 1 forwards;
    transition: 1s ease-in-out all;
    opacity: 1;
    transform: translate(-50% , -50%) rotate(0);

}
.top-inner .top-deco02 .deco2-2 {
    opacity: 0;
    top: 4%;
    left: -1%;
    transform: translate(-50% , -50%) rotate(20deg);

}
@keyframes shoot2-b {
    0% {
        top: 16%;
        left: 8%;
       transform: translate(-50%, -50%) rotate(0deg);

    }
    10% {
        transform: translate(-50%, -50%) rotate(5deg); }
    15% {
        transform: translate(-50%, -50%) rotate(-12deg); }
    20% {
        transform: translate(-50%, -50%) rotate(15deg); }

    50% {
        top: 16%;
        left: 8%;
        transform: translate(-50%, -50%) rotate(15deg); 

    }
    65% {
        transform: translate(-50%, -50%) rotate(15deg); 
        top: 6%;

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

    100% {
        top: 100%;
        left: 50%;

    }
}

/* 左３番目 */
/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-3 {
    width: 10vw;
    min-width: 120px;
    max-width: 200px;
    top: 20%;
    left: 30%;
    opacity: 1;
    transform: translate(-50% , -50%) rotate(0);
    transition: 1s ease-in-out all;
    animation: shoot3 2.5s 1s ease-in-out 1 forwards;

}
.top-inner .top-deco02 .deco2-3{
    top: 15%;
    left: 20%;
    opacity: 0;
    transform: translate(-50% , -50%) rotate(20deg);

}

@keyframes shoot3 {
    0% {
        top: 20%;
        left: 30%;
        transform: translate(-50%, -50%) rotate(0);

    }
    10% {
        transform: translate(-50%, -50%) rotate(-5deg); }
    15% {
        transform: translate(-50%, -50%) rotate(15deg); }
    20% {
        transform: translate(-50%, -50%) rotate(-10deg); }

    50% {
        top: 20%;
        left: 30%;
        transform: translate(-50%, -50%) rotate(-10deg); 

    }
    65% {
        transform: translate(-50%, -50%) rotate(-10deg); 
        top: 10%;

    }
    80% {
        transform: translate(-50%, -50%) rotate(15deg);  }

    100% {
        top: 100%;
        left: 50%;

    }
}

/* 真ん中 */
/* 動きデコ */
.loaded .top-inner .top-deco01 img:nth-child(3) {
    width: 4vw;
    min-width: 57px;
    max-width: 90px;
    top: 26%;
    left: 38%;
    transition: 0.2s 1s ease all;
    transform: translate(-50%, -50%) scale(1); 
    animation: shoot3-a 0.5s 1.3s ease-in-out 1 forwards;
}
.top-inner .top-deco01 img:nth-child(3) {
    top: 26%;
    left: 38%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0); 


}
@keyframes shoot3-a {
    0% {
        top: 26%;
        left: 40%;
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0; 
    }
    25% {
        top: 26%;
        left: 38%;
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
      }
    50% {
        transform: translate(-50%, -50%) scale(1);
      }   
    60% {
        transform: translate(-50%, -50%) scale(1);
    }
    70% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }


    100% {
        transform: translate(-50%, -50%) scale(1);  
        opacity: 0;

    }
}
/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-4 {
    width: 16vw;
    min-width: 192px;
    max-width: 400px;
    top: 18%;
    left: 48%;
    transform: translate(-50% , -50%) rotate(0) scale(0.9);
    opacity: 1;
    transition: 1s ease-in-out all;
    animation: shoot4-b 2.5s 1s ease-in-out 1 forwards;

}
.top-inner .top-deco02 .deco2-4 {
    opacity: 0;
    top: -24%;
    left: 48%;
    transform: translate(-50% , -50%) rotate(0);

}
@keyframes shoot4-b {
    0% {
        top: 18%;
        left: 48%;
        transform: translate(-50%, -50%) rotate(0) scale(0.9);
        }
    10% {
        transform: translate(-50%, -50%) rotate(0) scale(0.9);
    }
    25% {
        transform: translate(-50%, -50%) rotate(0) scale(1);
    }
    50% {
        top: 18%;
        left: 48%;
        transform: translate(-50%, -50%) rotate(0) scale(1); 

        }
    65% {
        transform: translate(-50%, -50%) rotate(-22deg); 
        top: 15%;
    
    }
    80% {
        transform: translate(-50%, -50%) rotate(15deg);  }

    100% {
        top: 100%;
        left: 48%;

    }
}


/* 右から4番目 */
/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-5 {
    width: 3.5vw;
    min-width: 42px;
    max-width: 70px;
    top: 30%;
    left: 66%;
    transform: translate(-50% , -50%) rotate(0);
    opacity: 1;
    transition: 1s ease-in-out all;
    animation: shoot5 2.5s 1s ease-in-out 1 forwards;
}
.top-inner .top-deco02 .deco2-5 {
    top: 20%;
    left: 74%;
    transform: translate(-50% , -50%) rotate(-10deg);
    opacity: 0;

}
@keyframes shoot5 {
    0% {
        top: 30%;
        left: 66%;
        transform: translate(-50% , -50%) rotate(0deg);

    }
    10% {
        transform: translate(-50%, -50%) rotate(10deg); }
    15% {
        transform: translate(-50%, -50%) rotate(-15deg); }
    20% {
        transform: translate(-50%, -50%) rotate(18deg); }

    50% {
        top: 30%;
        left: 66%;
        transform: translate(-50%, -50%) rotate(18deg); 

    }
    65% {
        transform: translate(-50%, -50%) rotate(18deg); 
        top: 15%;

    }
    80% {
        transform: translate(-50%, -50%) rotate(-100deg);  }

    100% {
        transform: translate(-50%, -50%) rotate(50deg);
        top: 100%;
        left: 45%;

    }
}

/* 右から3番目 */
/* 動くデコ */
.loaded .top-inner .top-deco01 img:nth-child(4) {
    width: 2vw;
    min-width: 28px;
    max-width: 50px;
    top: 28%;
    left: 90%;
    opacity: 1;
    transition: 0.2s 1s ease all;
    animation: shoot4-a 0.5s 1.3s ease-in-out 1 forwards;

}
.top-inner .top-deco01 img:nth-child(4) {
    top: 28%;
    left: 90%;
    opacity: 0;

}
@keyframes shoot4-a {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 1;
    }
    8% {
        transform: translate(-50%, -50%) rotate(35deg); }
    25% {
        transform: translate(-50% , -50%) rotate(15deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(20deg); 
    }
    70% { opacity: 1;}
    100% {
        transform: translate(-50%, -50%) rotate(5deg); 
        opacity: 0;
    }
}
/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-6 {
    width: 11vw;
    min-width: 132px;
    max-width: 250px;
    top: 25%;
    left: 82%;
    transform: translate(-50% , -50%) rotate(0);
    opacity: 1;
    transition: 1s ease-in-out all;
    animation: shoot6 2.5s 1s ease-in-out 1 forwards;
}
.top-inner .top-deco02 .deco2-6 {
    top: 0%;
    left: 86%;
    transform: translate(-50% , -50%) rotate(-25deg);
    opacity: 0;

}
@keyframes shoot6 {
    0% {
        top: 25%;
        left: 82%;
        transform: translate(-50%, -50%) rotate(0deg);

    }
    10% {
         transform: translate(-50%, -50%) rotate(-10deg); }
    15% {
         transform: translate(-50%, -50%) rotate(15deg); }
    20% {
         transform: translate(-50%, -50%) rotate(-10deg); }

    50% {
        top: 25%;
        left: 82%;    
         transform: translate(-50%, -50%) rotate(-10deg); 

    }
    65% {
         transform: translate(-50%, -50%) rotate(-10deg); 
        top: 15%;

    }
    80% {
         transform: translate(-50%, -50%) rotate(250deg);  }

    100% {
        top: 100%;
        left: 45%;

    }
}

/* 右から２番目 */
/* 動きデコ */
.loaded .top-inner .top-deco01 img:nth-child(5) {
    width: 2vw;
    min-width: 28px;
    max-width: 50px;
    top: 45%;
    left: 88%;
    opacity: 1;
    transition: 0.2s 1s ease all;
    animation: shoot5-a 0.5s 1.3s ease-in-out 1 forwards;
}
.top-inner .top-deco01 img:nth-child(5) {
    top: 45%;
    left: 88%;
    opacity: 0;

}
@keyframes shoot5-a {
    0% {
        top: 45%;
        left: 88%;
        transform: translate(-50%, -50%) scale(1);
            opacity: 1;
    }
    8% {
        transform: translate(-50%, -50%) scale(0.5) ; }
    25% {
        transform: translate(-50% , -50%) scale(1); }
    50% {
        transform: translate(-50%, -50%) scale(0.8); }
    70% { opacity: 1;}
    100% {
        top: 45%;
        left: 88%;    
        transform: translate(-50%, -50%) scale(1) ; 
        opacity: 0;
    }
}
/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-7 {
    width: 12vw;
    min-width: 156px;
    max-width: 250px;
    top: 60%;
    left: 80%;
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
    transition: 1s ease-in-out all;
    animation: shoot7 2.5s 1s ease-in-out 1 forwards;

}
.top-inner .top-deco02 .deco2-7 {
    top: 40%;
    left: 90%;
    transform: translate(-50% , -50%) rotate(-20deg);
    opacity: 0;

}
@keyframes shoot7 {
    0% {
        top: 60%;
        left: 80%;
        transform: translate(-50%, -50%) rotate(0deg);

    }
    10% {
        transform: translate(-50%, -50%) rotate(20deg); }
    15% {
        transform: translate(-50%, -50%) rotate(-15deg); }
    20% {
        transform: translate(-50%, -50%) rotate(0deg); }

    50% {
        top: 60%;
        left: 80%;
        transform: translate(-50%, -50%) rotate(0deg); 

    }
    65% {
        transform: translate(-50%, -50%) rotate(0deg); 
        top: 30%;

    }
    80% {
        transform: translate(-50%, -50%) rotate(70deg);  }

    100% {
        transform: translate(-50%, -50%) rotate(30deg);
        top: 100%;
        left: 45%;

    }
}

/* 右から１番目 */
/* ゴミ */
.loaded .top-inner .top-deco02 .deco2-8 {
    width: 15vw;
    min-width: 180px;
    max-width: 300px;
    top: 16%;
    left: 104%;
    transform: translate(-50%, -50%) rotate(20deg);
    opacity: 1;
    transition: 1s ease-in-out all;
    animation: shoot8 2.5s 1s ease-in-out 1 forwards;

}
.top-inner .top-deco02 .deco2-8 {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) rotate(-30deg);
    opacity: 0;

}
@keyframes shoot8 {
    0% {
        top: 16%;
        left: 104%;
        transform: translate(-50%, -50%) rotate(20deg);

    }
    10% {
        transform: translate(-50%, -50%) rotate(10deg); }
    15% {
        transform: translate(-50%, -50%) rotate(-15deg); }
    20% {
        transform: translate(-50%, -50%) rotate(18deg); }

    50% {
        top: 16%;
        left: 104%;
        transform: translate(-50%, -50%) rotate(18deg); 

    }
    65% {
        transform: translate(-50%, -50%) rotate(-22deg); 
        top: 5%;

    }
    80% {
        transform: translate(-50%, -50%) rotate(-100deg);  }

    100% {
        top: 100%;
        left: 45%;

    }
}





.top-wrap01 .buy-button {
    display: none;
    /* display: flex; */
    width: 16%;
    height: 100%;
    max-width: 300px;
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    justify-content: center;
    align-items: center;
}







/* ---------------------------------------------------------------- content01 ----------------------------------------------------------------- */

.content01 {
    width: 100%;
    height: 100%;
    margin: clamp(150px, 20.8vw , 400px) auto;
}

.content01 .content01-inner {
    width: 90%;
    max-width: 1488px;
    height: 100%;
    margin: 0 auto;
}

.content01-inner .content01-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3.3;
    margin-bottom: 15vw;
    margin: 0 auto;

}

.content01-wrap .content01-textbox {
    width: 65%;
    position: absolute;
    top: 0;
    left: 0;
}

.content01-wrap .content01-textbox .content-sp1 {
    display: none;
}

.content01-textbox h2,
.content02-textbox h3 {
    margin-bottom: 2em;
    font-size: clamp(33px, 2.7vw, 45px);
    letter-spacing: 0.2em;
    line-height: 1.7;
    color: #616161;
}

.content01-textbox p,
.content02-textbox p {
    width: 50%;
    max-width: 500px;
    font-size: clamp(16px, 1.33vw, 22px);
    line-height: 2;
    letter-spacing: 0.1em;
    color: #616161;

}
.content02-textbox p {
    width: 80%;
    margin-bottom: 2em;
    max-width: 550px;
}


.content01-wrap .content01-imgbox {
    position: relative;
    z-index: -1;
    display: flex;
    width: 65%;
    margin-left: auto;
    aspect-ratio: 1 / 1;
}


.content01-imgbox .content01-imgbox1.active {
    width: 63%;
    height: auto;
    position: relative;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s ease-in-out all;
}
.content01-imgbox .content01-imgbox1 {
    transform: scale(0.8);
    opacity: 0;
}
.content01-imgbox1 img {
    width: 100%;
    aspect-ratio: 5 / 7.9;

}

.content01-imgbox1::after {
    position: absolute;
    display: block;
    content: '';
    bottom: -3%;
    right: 0;
    width: 247px;
    aspect-ratio: 4 / 1 ;
    background: url(../img/content_deco.webp) no-repeat center / contain;
}

.content01-imgbox .content01-imagbox2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32%;
    height: auto;
    margin-left: auto;
}

.content01-imagbox2 img {
    width: 90%;
    min-width: 200px;    
    margin-left: auto;
    opacity: 0;
    transform: scale(0.8);
}

.content01-imagbox2.active img:nth-child(1) {
    width: 90%;
    min-width: 200px;
    margin-left: auto;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s 0.5s ease-in-out all;  
}
.content01-imagbox2.active img:nth-child(2) {
    width: 90%;
    min-width: 200px;    
    margin-left: auto;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s 1s ease-in-out all;  
}
.content01-imagbox2.active img:nth-child(3) {
    width: 90%;
    min-width: 200px;    
    margin-left: auto;
    transform: scale(1);
    opacity: 1;
    transition: 0.5s 1.5s ease-in-out all;  
}

.content01-inner .movie {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    width: 56%;
    aspect-ratio: 5 / 2.7;
    margin:  10vw auto 0 auto;
}

/* .movie {
    width: 100%;
    height: 100%;
} */


.content01-imagbox2-sp {
    display: none;
}





/* ---------------------------------------------------------------- spec01 ----------------------------------------------------------------- */



.spec {
    width: 100%;
    height: 100%;
    position: relative;
}


.spec::before,
.content02::before{
    display: block;
    content: '';
    width: 100%;
    height: 130px;
    background: url(../img/spec_border.png) repeat center / contain;
}



.spec-inner {
    position: relative;
    width: 90%;
    max-width: 1488px;
    height: auto;
    margin: clamp(150px, 20.8vw, 400px) auto;
}

.spec-inner .pulldown,
.content02 .pulldown{
    display: flex;
    width: auto;
    align-items: center;
    margin: 5vw auto;
    margin: clamp(35px, 2.9vw, 85px) auto ;

}

.spec-title h2,
.spec02-title {
    font-size: 100px;
    font-size: clamp(75px, 6.2vw, 100px);
    background: url(../img/spec_logo.webp) no-repeat left / contain;
    color: transparent;
}

.spec-inner .spec-wrap {
    display: flex;
    width: 100%;
    height: 70vw;
    max-height: 1050px;
    margin: 12px auto 0 auto;
}

.spec-wrap .spec-title2 {
    padding: 0;
    margin-bottom: 1em;
    font-size: 25px;
    color: #ec6d5e;
    font-family: sans-serif;
    font-weight: 600;
    
}

/* スペック左 */

.spec-wrap .spec-box01 {
    display: flex;
    flex-direction: column;
    width: 35%;
    height: auto;
}

.spec-textbox {
    width: 100%;
}

.spec-textbox .spec-amount {
    display: inline-block;
    padding: 0.2em 0.5em;
    border-radius: 0.6em;
    margin-bottom: 1.5em;
    font-family: sans-serif;
    font-size: clamp(20px, 1.6vw , 25px);
    color: #fff;
    background-color: #f79b8c;
    
}

.spec-textbox p {
    margin-bottom: 4.5em;
    font-size: clamp(16px, 1.3vw,  23px);
    line-height: 2;
    letter-spacing: 0.1em;
    color: #616161;
}

.spec-box01 .spec-table {
    width: 100%;
}

.spec-table table {
    width: 100%;
}
 
.spec-table tr,
.postage02-table tr {
    border-bottom: 1px solid #616161;
}

.spec-table th,
.spec-table td,
.spec-table p ,
.postage02-table th,
.postage02-table td {
    font-size: clamp(16px, 1.3vw , 20px);
    padding: 1em 0 1em 1em;
    color: #616161;
}
.spec-table .spec-table1 {
    font-size: 16px;
    line-height: 1.5;
}

.spec-table th,
.postage02-table th {
    padding-right: 1em;
    text-align: center;
    border-right: 1px solid #616161;
}


.spec-table p {
    padding: 0.8em 0 0 1.5em ;
}


.buy-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10em;
    padding: 1em 1.5em;
    margin: 1em auto 0;
    border-radius: 0.3em;
    font-size: clamp(25px, 2.08vw, 30px);
    font-family: sans-serif ;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #616161;
    border: #616161 3px solid;
    transition: 0.2s ease-in-out all;


}
.buy-button:hover {
    color: #616161;
    background-color: #fff;
    border: #616161 3px solid;
}
.buy-button::after {
    display: inline-block;
    content: '';
    width: 0.9em;
    margin-left: 0.2em;
    aspect-ratio: 1 / 1;
    background: url(../img/buy_arrow.webp) no-repeat center / contain;
    transition: 0.2s ease-in-out all;
}
.buy-button:hover::after {
    background: url(../img/buy_arrow_b.webp) no-repeat center / contain;
}

/* スペック右 */
.spec01-box02-sp {
    display: none;
}

.spec-wrap .spec01-box02 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 60%;
    height: auto;
    margin-left: auto;
}


.spec01-box02 .spec01-imgbox {
    width: 90%;
    height: auto;
    margin-left: auto;

}

.spec-inner .spec01-wrap02-img1 {
    position: absolute;
    top: 55%;
    left: 47.5%;
    transform: translate(-50% , -50%);
    width: 15%;
    height: auto;
}



.spec-inner .spec01-wrap02-img1 img {
    display: block;
    width: 100%;
    aspect-ratio: 10 / 19;
}

.spec01-imgbox .spec01-wrap02-img2 {
    display: block;
    width: 65%;
    margin-left: auto;

}
.spec01-wrap02-img2 img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.04;
    margin-left: auto;
}

.spec01-wrap02-img2 .price {
    display: block;
    width: 56%;
    min-width: 270px;
    height: auto;
    margin: 60px auto 60px 0;
}
.spec01-wrap02-img2 .price img {
    width: 100%;
    aspect-ratio: 5 / 2.3;
}


.spec01-box02 .spec01-size {
    height: auto;
    width: 65%;
}

.spec01-size img {
    width: 45%;
    width: 15vw;
    max-width: 250px;
    min-width: 180px;
    height: auto;
    display: block;
    padding-bottom: 5%;
    margin: 0 auto;
}

.spec01-size .spec01-sizetext {
    width: 30%;
    min-width: 170px;
    margin: 0 auto;
}
.spec01-sizetext p {
    font-size: 16px;
    margin-bottom: 0.5em;
    color: #616161;

}
.spec01-sizetext p:nth-child(2) {
    margin-bottom: 0;
}

.spec01-box02 .trash {
    position: absolute;
    z-index: 9;
    bottom: 9%;
    right: 24%;
    transform: translate(50% , 50%);
    max-width: 350px;
    min-width: 250px;
    width: 20vw;
    aspect-ratio: 10 / 10.9;
    background: url(../img/spec01_trashpack.webp) no-repeat center / contain;
    
}

/* ---------------------------------------------------------------- trashmove ----------------------------------------------------------------- */




.spec-inner  #box1.active {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50% , -50%);
    display: block;
    width: 10vw;
    max-width: 170px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    z-index: 9;
    animation: goal01 3s linear forwards;
}
.spec-inner  #box1{
    position: absolute;
    top: -28%;
    left: 0;
    transform: translate(-50% , -50%);
    display: block;
    width: 10vw;
    max-width: 170px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    z-index: 9;
}
/* widthを0から100%に変化  */
@keyframes goal01 {
    0% {
        top: -28%;
        left: 0;
        transform: translate(-50% , -50%) rotate(0);
    
        }
    25% {
        top: 10%;
        left: 25%;
        transform: translate(-50% , -50%) rotate(20deg);      
    }
    50% {
        top: 35%;
        left: 47%;
        transform: translate(-50% , -50%) rotate(40deg);
    }

    70% {
        top: 30%;
        left: 60%;
        transform: translate(-50% , -50%) rotate(150deg);

    }
    75% {
        top: 35%;
        left: 65%;
        transform: translate(-50% , -50%) rotate(180deg);
    }

    100%{
        top: 72%;
        left: 72%;
        transform: translate(50%, 50%) rotate(250deg);
    }
}


 #box1 img,
 #box2 img {
    width: 100%;
    height: 100%;
 }

 #display {
    display: none;
    bottom: 2%;
    right: 2%;
    z-index: 20;
    background-color: #fff;
    padding: 1em;
 }


 .spec01-box02-sp #box2 {
    display: none;
 }

.spec-title {
    width: 100%;
    display: flex;
}




.spec-title h2 {
    width: 50%;
}







/* ---------------------------------------------------------------- point01 ----------------------------------------------------------------- */

.point01 {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: url(../img/point01_border.png) repeat center #ffeee7;
}


.point01 .point01-inner,
.point02 .point01-inner {
    width: 90%;
    max-width: 2000px;
    margin: 0 auto;
    padding: clamp(150px, 20.8vw, 400px) 0;
    background-color: #ffeee7;


}

.point01-inner .titile {
    text-align: center;
    margin-bottom: clamp(100px, 8.3vw , 256px);
}

.titile h3 {
    margin-bottom: 0.6em;
    font-size: clamp(40px, 11.1vw, 75px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f79b8c;
    font-family: "neue-kabel", "yu-gothic-pr6n", sans-serif;

}

.titile p {
    font-size: clamp(20px, 5.5vw, 26px);
    letter-spacing: 0.1em;
    color: #616161;

    
}

/* ポイント01 */
.point01-inner .point01-1.active,
.point01-inner .point01-3.active,
.point01-inner .point01-5.active{
    position: relative;
    width: 80%;
    padding: 7% 0; 
    margin-bottom: 15vw;
    background-color: #fff;
    opacity: 1;
    transition: 1s ease-in-out all;
    transform: translateX(0);
}
.point01-inner .point01-5.active{
    padding: 9% 0;
    margin-bottom: 0;
}
.point01-inner .point01-1,
.point01-inner .point01-3,
.point01-inner .point01-5 {
    position: relative;
    width: 80%;
    padding: 7% 0; 
    margin-bottom: 15vw;
    opacity: 0;
    transform: translateX(-150%);
}
.point01-inner .point01-5 {
    padding: 9% 0;
    margin-bottom: 0;
}
.point01-inner .point01-1 .point01-1-inner,
.point01-inner .point01-3 .point01-3-inner,
.point01-inner .point01-5 .point01-5-inner {
    width: 80%;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.point01-1::before,
.point01-3::before,
.point01-5::before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;

}
.point01-1::after,
.point01-3::after,
.point01-5::after {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    right: -0.8%;
    transform: translateX( 50%);
    width: 10%;
    height: 100%;
    background: url(../img/point01_paper.webp) repeat-y center / contain;
    background-size: 17%;
}

.point01-1.active h3,
.point01-3.active h3,
.point01-5.active h3 {
    position: absolute;
    top: 0;
    right: -4%;
    transform: translate(50% , -50%) scale(1);
    z-index: 3;
    font-size: clamp(150px, 12.5vw, 250px);
    font-weight: 800;
    color: #fbc3bb;
    font-family: "neue-kabel", sans-serif;
    opacity: 1;
    transition: 0.5s 1s ease-in-out all;
    z-index: 3;

}
.point01-1 h3,
.point01-3 h3,
.point01-5 h3 {
    position: absolute;
    top: 0;
    right: -4%;
    transform: translate(50% , -50%) scale(0.9);
    z-index: 3;
    font-size: clamp(150px, 12.5vw, 250px);
    font-weight: 800;
    color: #fbc3bb;
    font-family: "neue-kabel", sans-serif;
    opacity: 0;
    z-index: 3;


}

.point01-2.active h3,
.point01-4.active h3 {
    position: absolute;
    top: 0;
    left: -4%;
    transform: translate(-50%, -50%) scale(1);
    font-size: clamp(150px, 12.5vw, 250px);
    font-weight: 800;
    color: #fbc3bb;
    font-family: "neue-kabel", sans-serif;
    opacity: 1;
    transition: 0.5s 1s ease-in-out all;
    z-index: 3;

}
.point01-2 h3,
.point01-4 h3 {
    position: absolute;
    top: 0;
    left: -4%;
    transform: translate(-50%, -50%) scale(0.9);
    font-size: clamp(150px, 12.5vw, 250px);
    font-weight: 800;
    color: #fbc3bb;
    font-family: "neue-kabel", sans-serif;
    opacity: 0;
    z-index: 3;
}




.point01-1 .point01-1-img,
.point01-3 .point01-3-img,
.point01-5 .point01-5-img {
    width: 30%;
    max-width: 300px;
    margin: 0 auto;
}

.point01-1-img img,
.point01-3-img img,
.point01-5-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1 ;
    margin: 0 auto;
}

.point01-1 .point01-text,
.point01-3 .point01-text,
.point01-5 .point01-text {
    width: 62%;
    margin-left: auto;
}

.point01-text .point01-titile ,
.point02 .point01-text .point01-titile{
    margin-bottom: 0.5em;
    font-size: clamp(25px, 2.08vw, 35px);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #f79b8c;
    font-family: sans-serif;
    font-weight: 600;
}

.point01-sp {
    display: none;
}


.point01-4-inner .point01-text p  {
    margin: 0;
}
.point01-4-inner .point01-text .point01-titile{
    margin-bottom: 0.5em;
}

.point01-text  p {
    width: 100%;
    font-size: clamp(18px, 1.5vw, 25px);
    line-height: 2;
    letter-spacing: 0.08em;
    padding: 0;
    margin-bottom: 2em;
    color: #616161; 
    margin-left: auto;
}

.point02 .point01-3 .point01-text  p {
    width: 80%;
    margin-right: auto;
    margin-left: 0;
}


/* ポイント02 */

.point01-2mark-sp {
    display: none;
}

.point01-inner .point01-2.active {
    position: relative;
    align-items: center;
    width: 80%;
    padding: 10% 0; 
    margin-bottom: 15vw;
    margin-left: auto;
    background-color: #fff;
    opacity: 1;
    transition: 1s ease-in-out all;
    transform: translateX(0);

}

.point01-inner .point01-2 {
    position: relative;
    align-items: center;
    width: 80%;
    padding: 10% 0; 
    margin-bottom: 15vw;
    margin-left: auto;
    background-color: #fff;
    opacity: 0;
    transform: translateX(150%);

}

.point01-inner .point01-4.active{
    position: relative;
    align-items: center;
    width: 80%;
    padding: 9% 0; 
    margin-bottom: 15vw;
    margin-left: auto;
    background-color: #fff;
    opacity: 1;
    transition: 1s ease-in-out all;
    transform: translateX(0);
}
.point01-inner .point01-4 {
    position: relative;
    align-items: center;
    width: 80%;
    padding: 9% 0; 
    margin-bottom: 15vw;
    margin-left: auto;
    background-color: #fff;
    opacity: 0;
    transform: translateX(150%);

}


.point01-2 .point01-2-inner {
    width: 80%;
}

.point01-2::before,
.point01-4::before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: -0.8%;
    transform: translateX(-50%) scale(-1 , 1);
    width: 10%;
    height: 100%;
    background: url(../img/point01_paper.webp) repeat-y center / contain;
    background-size: 17%;
}

.point01-2::after,
.point01-4::after {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;

}

 .point01-2 .point01-text,
 .point01-4 .point01-text {
    position: relative;
    width: 64%;
}

.point01-2 .point01-text {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding-left: 0 ;
}
.point01-2 .point01-text p {
    margin: 0;
}

.point01-2 .point01-text .point01-2-p {
    margin-bottom: 1em;
}
.point01-2 .point01-text .point01-titile {
    width: 100%;
    margin-bottom: 0.5em;
}

.point01-2 .point01-2text p,
.point01-4text p {
  
    margin-bottom: 0.8em;
    padding-left: 1em;
    text-align: left;
    border-radius: 50px;
    font-size: clamp(15px, 1.25vw, 20px);
    color: #fff;
    background-color: #f78877;
 }

 .point01-2 .point01-2text {
    position: relative;
    width: 70%;
    min-width: 400px;
 }  

 .point01-2mark,
 .point01-2mark-sp {
    width: 100%;
    display: flex;
 }

 .point01-2mark-sp {
    display: none;
 }

 .point01-2mark p,
 .point01-2mark-sp p  {
    color: #000;
    background-color: #fff;
 }

 .point01-2 .point01-2mark .mark1,
 .point01-2 .point01-2mark-sp .mark1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 9em;
    max-width: 82px;
    aspect-ratio: 1 / 1;
    padding: 0.8em;
    margin: 0;
    font-size: 13px;
    font-family: "yu-gothic-pr6n", sans-serif;
    line-height: 1.2;
    letter-spacing: 0.1em;
    border-radius: 50%;
    color: #fff;
    background-color: #f78877;
 }
 .point01-2mark .mark1::before,
 .point01-2mark-sp .mark1::before {
    position: absolute;
    display: block;
    content: '';
    top: 10%;
    left: -6%;
    transform: translate(-50% , -50%);
    width: 2.5em;
    aspect-ratio: 1 / 1;
    background: url(../img/point01_02deco.webp) no-repeat center / contain;
}

.point01-2 .point01-2mark .mark1::after,
.point01-2 .point01-2mark-sp .mark1::after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    right: -24%;
    transform: translate(-50% , -50%);
    width: 1.5em;
    aspect-ratio: 1 / 1;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #f78877;
}

.point01-2 .point01-2mark .mark2,
.point01-2 .point01-2mark-sp .mark2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    max-width: 300px;
    padding: 0.5em 0.5em 0.5em 1em;
    margin: auto 0 0 2em;
    margin-bottom: auto;
    border-radius: 0.5em;
    line-height: 1.7;
    letter-spacing: 0.05em;
    text-align: left;
    font-size: 12px;
    background-color: #fbc3bb;
    color: #000;
    
}

.mark2::before {
    display: block;
    content: '';
    width: 8em;
    max-width: 60px;
    aspect-ratio: 1 / 1;
    margin-right: 0.5em;
    background: url(../img/point01_02icon.webp) no-repeat center / contain;
}

.point01-2 .point01-2text .point01-2-img {
    position: absolute;
    top: 25%;
    right: -10%;
    transform: translate(50% , -50%);
    width: 35%;
    max-width: 250px;
    z-index: 5;
 }

 .point01-2-img img {
    display: block;
    width: 100%;
    margin-right: auto;
 }

/* ポイント04 */

.point01-4 .point01-4-inner,
.point02 .point01-4{
    display: flex;
    width: 90%;
    margin: 0 auto;
}

.point01-4 .point01-4-inner {
    position: relative;
}

.point02 .point01-inner .point01-4.active{
    margin: 0;
    margin-bottom: 15vw;
    margin-left: auto;
}
.point02 .point01-inner .point01-4 {
    margin: 0;
    margin-bottom: 15vw;
    margin-left: auto;

}
.point01-4-inner .point01-text {
    width: 40%;
    /* max-width: 400px; */
}


.point01-4-wrap {
    position: relative;
    display: flex;
    width: 45%;
    padding-left: 8%;
    /* max-width: 320px; */
}
.point01 .point01-4-wrap::after {
    position: absolute;
    display: block;
    content: '';
    bottom: 26%;
    right: -17%;
    transform: translate(50%, 50%);
    width: 9vw;
    max-width: 180px;
    aspect-ratio: 10 / 13;
    z-index: 2;
    background: url(../img/point01-4_trash.webp) no-repeat center / contain;
}

.point01-4-wrap .point01-4imgbox {
    width: 20%;

}

.point01-4imgbox .point01-4img {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    object-fit: contain;
}

.point01-4img img {
    width: 56px;
}
.point01-4img:nth-child(2) img {
    width: 116px;

}

.point01-4img:last-child::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    transform: translate(50% , -50%);
    width: 18px;
    aspect-ratio: 1 / 1;
    background: url(../img/point01_04_4deco.webp) no-repeat center / contain;
}


.point01-4img::after {
    display: block;
    content: '';
    width: 15px;
    height: 32px;
    background: url(../img/point01_04_arrow.webp) no-repeat center / contain;
}
.point01-4img:last-child:after {
    display: none;
}



.point01-4-wrap .point01-4text {
    width: 62%;
    margin-left: auto;
}
.point01-4text p {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0; 
    margin-bottom: 32px;
    border-radius: 0;
    text-align: left;
    line-height: 1.4;
    font-size: 15px;
    color: #f57469;
    background-color: #fff;
}
.point01-4text p:last-child {
    margin-bottom: 0;
}

.point01-inner .point01-5 { 
    padding: 9% 0;
}


/* ---------------------------------------------------------------- point01 ----------------------------------------------------------------- */


.voice {
    width: 100%;
    height: 100%;
    margin: clamp(150px, 20.8vw, 400px) auto;
}

.voice-inner {
    position: relative;
    width: 78%;
    max-width: 1280px;
    height: auto;
    margin: 0 auto;
}
 
.voice-inner .titile{
    margin-bottom: 5vw;
    text-align: center;
}

.voice-inner .voice-wrap {
    position: relative;
    width: 100%;
    max-width: 1280px;
    padding: clamp(55px, 4.58vw, 80px) 0;
    margin: 0 auto 7vw auto;
    font-size: 20px;
    color: #616161;
    border-radius: 2em;
    background-color: #ffeee7;
}
.voice-wrap::after {
    position: absolute;
    display: block;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 5vw;
    height: 6vw;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: #ffeee7;
}

.voice-wrap .voice-box {
    width: 86%;
    margin: 0 auto;

}

.voice-wrap .voice-caption {
    width: 100%;
    height: auto;
    display: flex;
}

.voice-caption .voice-caption-text {
    width: 75%;
    height: auto;
    margin-bottom: 6.2vw;
    margin-bottom: clamp(70px, 5.8vw, 100px);
}

.voice-caption-text .caption {
    margin-bottom: 0.2em;
    font-size: clamp(30px , 2.5vw, 50px);
    line-height: 1.5;
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #f78877;
}

.voice-caption-text p {
    font-size: clamp(20px, 1.6vw, 25px);
    letter-spacing: 0.1em;
}

.caption2-sp {
    display: none;
}

.voice-caption .voice-caption-img {
    width: 25%;
}

.voice-caption-img img {
    width: 100%;
}

.voice-wrap .voice-question {
    width: 100%;
    margin: 0 auto;
}

.voice-questionbox {
    margin-bottom: clamp(50px, 5vw, 128px);
}
.voice-questionbox:last-child {
    margin-bottom: 0;
}

.voice-questionbox:nth-child(2) {
    position: relative;
}

.voice-questionbox:nth-child(2)::after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    right: 8%;
    transform: translate(50% , -50%);
    width: 25%;
    aspect-ratio: 10  / 9;
    background: url(../img/voice_img01.webp) no-repeat center / contain;
}


.voice-questionbox p {
    position: relative;
    margin-bottom: 2em;
    padding-left: 4.5em;
    font-size: clamp(20px, 1.6vw, 25px);
    letter-spacing: 0.1em;
    line-height: 1.7;
}

.voice-questionbox .border {
    background:linear-gradient(transparent 55%, #fad7cf 60%);
}

.voice-questionbox p:last-child {
    margin-bottom: 0;
}

.voice-questionbox .voice-q{
    position: absolute;
    display: inline-block;
    top: -37%;
    left: 0;
    width: clamp(50px, 4.1vw, 72px);
    aspect-ratio: 1 / 1;
    background: url(../img/voice_q.webp) no-repeat center / contain;
}

.voice-questionbox .voice-a {
    position: absolute;
    display: inline-block;
    top: -3%;
    left: 0;
    width: clamp(50px, 4.1vw, 72px);
    aspect-ratio: 1 / 1;
    background: url(../img/voice_a.webp) no-repeat center / contain;
}

.voice-man {
    display: block;
    width: 12%;
    min-width: 100px;
    padding-right: 3%;
    margin: 0 auto ;
}

.voice-wrap .pasta {
    position: absolute;
    bottom: -5%;
    left: 8%;
    transform: translate(-50% , 50%);
    width: 30%;
    max-width: 250px;
    height: auto;
}

.voice-wrap .voice-trashpack.active {
    position: absolute;
    bottom: -20%;
    left: 14%;
    transform: translate(-50% , 50%) rotate(20deg);
    width: 10%;
    max-width: 100px;
    height: auto;
    animation: katakata 1s  ease-in-out 1 forwards;
}
.voice-wrap .voice-trashpack {
    position: absolute;
    bottom: -20%;
    left: 14%;
    transform: translate(-50% , 50%) rotate(20deg);
    width: 10%;
    max-width: 100px;
    height: auto;

}
@keyframes katakata {
    0% { transform: translate(-50% , 50%) rotate(20deg);}
    30% { transform: translate(-50% , 50%) rotate(-10deg);}
    50% { transform: translate(-50% , 50%) rotate(15deg);}
    70% { transform: translate(-50% , 50%) rotate(0deg);}
    100% { transform: translate(-50% , 50%) rotate(20deg);}
}


.voice-inner .buy-button,
.postage03 .buy-button1 {
    max-width: 350px;
    margin: clamp(136px, 11.3vw, 180px) auto 0 auto;
    text-align: center;

}
.postage03 .buy-button2 {
    display: none;
}

/* ---------------------------------------------------------------- content02 ----------------------------------------------------------------- */

.content02 {
    width: 100%;
    height: 100%;
}
.content02::before {
    background: url(../img/content02_border.webp) repeat center / contain;
}

.content02 .content02-inner {
    width: 90%;
    max-width: 1488px;
    height: 100%;
    margin: clamp(250px, 20.8vw, 400px) auto 0 auto;
}
.content02 .pulldown {
    width: 95%;
    max-width: 1488px;
    margin: clamp(35px, 2.9vw, 85px) auto; 
}
.content02 .pulldown p,
.content02 .pulldown a{
    color: #62bcc3;
}
.content02 .pull::after {
    background: url(../img/pulldown_icon02.webp) no-repeat center / contain;
}

.content02-inner .content02-wrap {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.content02-wrap  .content02-textbox {
    width: 50%;
}
.content02-textbox h3 {
    letter-spacing: 0.1em;
}



.content02-wrap .content02-imgbox {
    width: 50%;
}
.content02-imgbox .content02-imgbox1.active {
    position: relative;
    width: 100%;
    margin-bottom: 6%;
    opacity: 1;
    transform: scale(1);
    transition: 0.5s ease-in-out all;
}
.content02-imgbox .content02-imgbox1 {
    position: relative;
    width: 100%;
    margin-bottom: 6%;
    transform: scale(0.8);
    opacity: 0;

}
.content02-imgbox1 img{
    width: 100%;
}
.content02-imgbox .content02-imgbox1::before,
.spec02-img2::before{
    position: absolute;
    display: block;
    content: '';
    top: -2%;
    right: 18%;
    transform: translate(50%, -50%);
    width: 9vw;
    max-width: 170px;
    min-width: 120px;
    aspect-ratio: 10 / 6;
    background: url(../img/content02_deco.webp) no-repeat center / contain;
}

.content02-imgbox .content02-imagbox2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.content02-imagbox2.active img:nth-child(1) {
    width: 48%;
    transform: scale(1);
    opacity: 1;
    transition: 0.5s 0.5s ease-in-out all;
}
.content02-imagbox2 img:nth-child(1) {
    width: 48%;
    transform: scale(0.8);
    opacity: 0;
}

.content02-imagbox2.active img:nth-child(2) {
    width: 48%;
    transform: scale(1);
    opacity: 1;
    transition: 0.5s 1s ease-in-out all;
}
.content02-imagbox2 img:nth-child(2) {
    width: 48%;
    transform: scale(0.8);
    opacity: 0;
}

.content02-textbox .content02-sp1,
.content02-imagbox2-sp  {
    display: none;
}

/* ---------------------------------------------------------------- spec02 ----------------------------------------------------------------- */

.spec02::before {
    display: none;
}

.spec02-box02 {
    position: relative;
    width: 60%;
    height: 100%;
    margin-left: auto;
    margin-top: auto;
}

.spec02 .spec-textbox .spec-amount {
    background-color: #62bcc3;
    color: #fff;
}

.spec02-box02 .spec02-imgbox {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.spec02-imgbox .spec02-img1 {
    position: relative;
    width: 50%;
    height: 40%;
    margin: auto;
}
.spec02-img1 img {
    width: auto;
    height: 100%;

}
.spec02-box02 .spec02-imgbox p {
    display: flex;
    justify-content: center;
    font-size: 18px;
    color: #616161;
    text-align: left;
    line-height: 1.5;
}

.spec02-imgbox .spec02-move,
.spec02-imgbox .spec02-move-sp {
    width: 50%;
    max-width: 350px;
    height: auto;
    margin: auto 0 0 auto;
}


.spec02-move .spec02-move-inner,
.spec02-move-sp .spec02-move-inner2  {
    width: 100%;
    height: 100%;
    background: url(../img/spec02_move_01.webp) no-repeat / contain;

}

.spec02-move .spec02-move-inner .splide,
.spec02-move-sp .spec02-move-inner2 .splide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end; 

}



.spec02-move .spec02-move-inner .splide img,
.spec02-move-sp .spec02-move-inner2 .splide img {
    width: 100%;
}


.spec02-size {
    display: flex;
}

.spec02-size img {
    width: 50%;
}

.spec02-box02 .spec02-img2 {
    position: absolute;
    top: -7%;
    right: 0;
    width: 55%;
    min-width: 330px;
}
.spec02-img2::before {
    top: 0;
    right: 0;
    left: -5%;

}

.spec02-img2 img {
    width: 100%;
}

.spec02-box02-sp {
    display: none;
}

/* ---------------------------------------------------------------- point02 ----------------------------------------------------------------- */

.point02 {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: url(../img/point02_border.webp) repeat center #e0efef;
}
.point02 .point01-inner {
    background-color: #e0efef;
}

.point02 .titile h3 {
    color: #62bcc3;
} 

.point02 .point01-1.active h3,
.point02 .point01-2.active h3, 
.point02 .point01-3.active h3,
.point02 .point01-4.active h3,
.point02 .point01-5.active h3 {
    position: absolute;
    top: 0;
    right: -4%;
    transform: translate(50%, -50%);
    z-index: 3;
    font-size: clamp(150px, 12.5vw, 250px);
    font-weight: 800;
    color: #8bd1d7;
}
.point02 .point01-1 h3,
.point02 .point01-2 h3, 
.point02 .point01-3 h3,
.point02 .point01-4 h3,
.point02 .point01-5 h3 {
    position: absolute;
    top: 0;
    right: -4%;
    transform: translate(50%, -50%);
    z-index: 3;
    font-size: clamp(150px, 12.5vw, 250px);
    font-weight: 800;
    color: #8bd1d7;
}

.point02 .point01-2.active h3, 
.point02 .point01-4.active h3 {
    right: 0;
    left: 25%;
    transform: translate(-50%, -50%);
}
.point02 .point01-2 h3, 
.point02 .point01-4 h3 {
    right: 0;
    left: 25%;
    transform: translate(-50%, -50%);
}


.point02 .point01-text .point01-titile {
    color: #62bcc3;
}
.point02 .point01-2 .point01-text .point01-titile {
    margin-bottom: 0.5em;    
}


.point02 .point01-inner .point01-2 {
    position: relative;
    width: 80%;
    padding: 7% 0;
    margin-left: auto;
}

.point01-2 .point01-2-inner {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    
}

.point02 .point01-2 .point01-text p {
    width: 100%;
}

.point02 .point01-2 .point01-text {
    width: 60%;
    margin: 0;
    padding-right: 5%;
}

.point02 .point01-2 .point01-2-img {
    width: 30%;
    max-width: 300px;
}

.point02 .point01-2-img img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.point02 .point01-4 .point01-text {
    width: 40%;
    max-width: 400px;
    min-width: auto;
    padding-left: 0;
}
.point02 .point02-4-img { 
    position: relative;
    width: 55%;
    max-width: 600px;
    padding-left: 5%;
    margin-bottom: auto;

}

.point02 .point02-4-imgbox {
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 3%;
}

.point02 .point02-4-imgbox .point02-4-img02 {
    width: 20%;
    position: relative;
    padding-right: 6%;
}
.point02 .point02-4-img02:last-child {
    padding-right: 0;
}

.point02 .point02-4-img02::after {
    position: absolute;
    display: block;
    content: '';
    bottom: 25%;
    right: 8%;
    transform: translate(50% , 50%);
    width: 9%;
    aspect-ratio: 5 / 13.8;
    background: url(../img/point02_arrow.webp) no-repeat center / contain;
}
.point02 .point02-4-img02:last-child::after {
    display: none;
}

.point02 .point02-4-img02 img {
    width: 100%;
    object-fit: contain;
}

.point02 .comments,
.point02 .comments02 {
    width: 80%;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-size: clamp(13px , 1.08vw, 15px);
    color: #616161;
}




/* ---------------------------------------------------------------- postage01 ----------------------------------------------------------------- */

.postage01 {
    width: 100%;
    height: auto;
    margin: clamp(150px, 20.8vw, 400px) auto clamp(136px, 11.3vw, 180px) auto;
}

.postage01-inner ,
.postage02-inner,
.postage03-inner {
    width: 80%;
    max-width: 960px;
    height: auto;
    margin: 0 auto;

}

.postage01-inner  .titile {
    text-align: center;
    margin-bottom: 5%;
}


.postage-2000 {
    font-size: clamp(20px, 1.6vw, 25px);
    color: #f57469;
    text-align: center;
    margin-bottom: 2em;
}

.postage-1 {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 0.5em;
    color: #616161;
}

.postage-1 span {
    padding-left: 1em;
    font-size: 15px;
}

.postage-box,
.postage-box-sp {
    width: 100%;
    height: auto;
    margin-bottom: 8vw;
}
.postage01 .postage-box, .postage-box-sp {
    margin-bottom: 0;
}

.postage-box table,
.postage-box-sp table {
    width: 100%;
    margin: 0 auto;
    color: #616161;
}

.postage-box .table1,
.postage-box-sp .table1 {
    margin-bottom: 2vw;
}

.postage-box .table2,
.postage-box-sp .table2 {
    width: 80%;
    margin: 0 auto;
}

.postage-box table th,
.postage-box table td,
.postage-box-sp table th,
.postage-box-sp table td {
    /* width: clamp(120px, 10vw, 160px); */
    width: auto;
    text-align: center;
    padding: 0.5em 0;
    border: solid 1px #616161;
}

.postage-box table th,
.postage-box-sp table th {
    background-color: #ffeee7;
}

.postage-box table td,
.postage-box-sp table td {
    padding: 0.8em 0;
    font-size: 20px;
}

.postage-2 {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
    color: #616161;
}

.postage-box-sp {
    display: none;
}

/* ---------------------------------------------------------------- postage02 ----------------------------------------------------------------- */

.postage02 {
    width: 100%;
    height: auto;
    background-color: #ffeee7;
    color: #616161;
}

.postage02-inner {
    position: relative;
    padding: 5vw 0 ;
}

.postage02-inner::before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    transform: translate(-50% , -50%);
    width: 9vw;
    max-width: 140px;
    min-width: 120px;
    aspect-ratio: 10 / 6;
    background: url(../img/postage_deco.webp) no-repeat center / contain;
}

.postage02-inner h2 {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-size: clamp(28px, 2.3vw, 32vwpx);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f78877;
}

.postage02-table {
    width: 60%;
    /* width: 45.5%; */
    margin: 3% auto;
}


.postage02-table table{
    width: 100%;
}

.postage02-table h3 {
    margin-bottom: 0.5em;
    font-size: 18px;
    letter-spacing: 0.08em;
    color: #616161;
}
.postage02-table h3 span {
    margin-left: 0.5em;
    font-size: 15px;
}
.postage02-table p {
    margin-top: 1em;
    font-size: 15px;
    color: #616161;
    text-align: right;
}


.postage02-table th {
    width: 18%;
    margin: 0 auto;
    text-align: right;
    font-size: 18px;
    letter-spacing: 0.05em;
    padding-right: 1.5em;
}

.postage02-table td {
    width: 50%;
    margin: 0 auto;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.05em;

}


.postage02-table tr:first-child {
    border-top: 1px solid #616161;
}


.postage02-inner .p-text1,
.postage02-inner .p-text2 {
    width: 80%;
    margin: 0 auto 0.5em auto;
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.postage02-inner .p-text2 {
    font-size: 15px;
}


/* ---------------------------------------------------------------- postage03 ----------------------------------------------------------------- */

.postage03 {
    width: 100%;
    height: auto;
    margin: clamp(136px, 11.3vw, 180px) auto;
}



.postage03 .postage-box table th {
    background-color: #e0efef;
}

.postage03 .postage-2000 {
    color: #62bcc3;
}

.postage03-packet {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 4%;
}

.postage03-packet .p-coment {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13%;
    aspect-ratio: 1 / 1;
    margin-right: 2em;
    text-align: center;
    font-size: clamp(11px, 3.05vw , 15px);
    font-weight: 800;
    line-height: 1.2;
    border-radius: 50%;
    color: #fff;
    background-color: #62bcc3;

}
.postage03-packet .p-coment::after {
    position: absolute;
    display: block;
    content: '';
    top: 50%;
    right: -20%;
    transform: translate(-50% , -50%);
    width: 1.5em;
    aspect-ratio: 1 / 1;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #62bcc3;
}

.postage03-packet .note {
    font-weight: 500;
    font-size: 15px;
}

.postage03-packet p {
    width: 80%;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #616161;
}


.postage03 .postage-textbox {
    width: 100%;
    background-color: #e0efef;
}

.postage-textbox .postage-textwrap {
    width: 90%;
    margin: 0 auto;
    padding: 5% 0;
    color: #616161;
}

.postage-textwrap h3 {
    font-size: 20px;
    margin-bottom: 1.5em;
}


.postage-textwrap p {
    margin-bottom: 0.5em;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.7;
}
.postage-textwrap p:last-child {
    margin-bottom: 0;
}

.postage-textwrap p span {
    color: #ec6d56;
}


/* ---------------------------------------------------------------- footer ----------------------------------------------------------------- */


.footer {
    width: 100%;
    height: 64px;
    padding: 15px 0 30px 0;
    background-color: #ffeee7;
}

.footer .footer-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-inner p {
    margin-bottom: 1em;
    text-align: center;
    font-size: min(1.5vw, 16px);
    letter-spacing: 0.1em;
    line-height: 1.5;
    color: #ec6d56;
}

.footer-inner img {
    display: block;
    width: 25%;
    height: auto;
    max-width: 230px;
    min-width: 150px;
    margin: 0 auto;
}







 /* ---------------------------------------------------------------- メディアクエリ 1670px ----------------------------------------------------------------- */


 @media screen and (max-width:1670px)  {

    .content01-wrap .content01-imgbox {
        width: 62%;
        margin-left: auto;
    }

    .content02-wrap .content02-imgbox {
        width: 50%;
        margin-left: auto;
    }

    .content01 .content01-inne {
        margin: 0 0 0 auto;
    }


 }






 /* ---------------------------------------------------------------- メディアクエリ 1200px ----------------------------------------------------------------- */


@media screen and (max-width:1200px)  {

    /* body {
        min-width: 1200px;
    } */

    .header-inner .header-box {
        position: fixed;
        overflow: hidden;
        top: 0;
        left: 0;
        width: 70%;
        height: 100vh;
        border-radius: 5vw 0 0 5vw;
        background: #f29b87 url(../img/hamburger_border.png) repeat center / contain;
        background-size: contain;
    }
    #target01.active {
        transform: translatex(30vw);
    }

    .menu-wrap .menu02 {
        width: 35vw;
        height: 35vw;
        max-width: 700px;
    }
    
    .menu p, .menu a {
        font-size: clamp(18px,5vw, 25px);
    }
    .menu a:hover {
        color: #fff;
    }

    .menu ul li a,
    .menu .postage-ham ,
    .menu .buy-ham{
        font-size: clamp(14px,3.8vw, 18px);
    }
    .menu ul {
        padding: 2vh 0 4vh 0;
    }

    .header-wrap .menu {
        justify-content: start;
    }

    .menu .menu-text {
        margin: 10vh auto 0 auto;
     }
     .header-wrap01 .header-down {
        width: 100%;
        height: 100%;
        transform: translateY(0);
        transition: 0.2s ease-in-out all;
        background: url(../img/hamburger_bg.webp) no-repeat center / contain;
    
    }
    .header-wrap01 .header-down:hover {
        transform: translateY(0);
        
    
    }

}

@media screen and (max-height:650px){
    .menu-wrap .menu02 {
        display: none;
    }
}

@media screen and (max-height:650px) and (max-width:1200px)  {
    .menu-wrap .menu02 {
        display: none;
    }
}
@media screen and (max-height:600px) and (max-width:768px)  {
    .menu-wrap .menu02 {
        display: block;
    }
}
@media screen and (max-height:550px) and (max-width:768px)  {
    .menu-wrap .menu02 {
        display: none;
    }
}
@media screen and (max-height:550px) and (max-width:400px)  {
    .menu-wrap .menu02 {
        display: block;
    }
}
@media screen and (max-height:420px) and (max-width:400px)  {
    .menu-wrap .menu02 {
        display: none;
    }
}

 /* ---------------------------------------------------------------- メディアクエリ 768px ----------------------------------------------------------------- */


 @media screen and (max-width:768px)  {

    body {
        width: 100%;
        min-width: auto;
    }
    
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }

    .pc2 {
        display: block;
    }

    .top {
        margin-bottom: 50vw;
    }

    .top-button {
        bottom: 0.5%;
        width: 60px;
    }
    .top-button a::after {
        width: 1.5em;
    }

    .header-inner  .pulldown {
        display: none;
    }

    .top-inner {
        border-radius: 0 0 20px 20px;
        height: 80vh;
        aspect-ratio: 1 / 0.75;
        min-height: 450px;
        max-height: 660px;
    }

    .loaded .top-inner .top-logo {
        top: 35%;
        width: 50vh;
        width: clamp(180px, );
    }
    .top-inner .top-logo {
        top: 40%;
        width: 50vh;
    }
    .top-logo h1 {
        background: url(../img/fv_logo_sp.webp) no-repeat center / contain;
        /* font-size: clamp(150px, 46.8vw, 180px); */
        font-size: clamp(120px, 33.3vw, 180px);

    }

    .top-inner .top-hand {
        width: 40%;
        min-width: 140px;
        top: 38%;
    }
    .top-inner .bottom-hand {
        width: 77%;
        min-width: 245px;
        bottom: 8vw;
    }
    .loaded .top-inner .top-wrap01 {
        display: block;
        position: absolute;
        width: 90%;
        margin: 0 auto;
        bottom: 40%;
        opacity: 1;
        transition: 0.5s 3.5s ease-in-out all;
    }
    .top-inner .top-wrap01 {
        bottom: 40%;
        opacity: 0;
    }

    .top-wrap01 p {
        width: 95%;
        height: auto;
        margin: 0 auto;
        font-size: 16px;
        font-size: clamp(12px, 2.1vh , 16px);
        letter-spacing: 0.08em;
        line-height: 2;
        text-align: center;
    }

    .top-wrap01 .buy-button  {
        opacity: 0;
        display: block;
        width: 100%;
        max-width: 170px;
        margin: 3em auto 0 auto;
        text-align: center;
        padding: 0.5em 0;
        border-radius: 0.3em;
        font-size: 18px;
        color: #fff;
        background-color: #616161;
    }

    .buy-button:hover {
        color: #fff;
        background-color: #616161;
        border: #616161 3px solid;
    }

    .buy-button:hover::after {
        background: url(../img/buy_arrow.webp) no-repeat center / contain;
    }
    

    /* ---------------------------------------  fvここから */

        /* 上の手 全体 */
    .loaded .top-inner .top-deco02 .hand-top1,
    .loaded .top-inner .top-deco02 .hand-top2 {
        width: 40%;
        max-width: 200px;
        top: 6%;

    }
    @keyframes hand {
        0% {
            top: 6%;
        }
        100% {
            top: -100%;
        }
    }



    /* 下の手 全体 */
    .top-inner .top-deco02 .hand-bottom1,
    .top-inner .top-deco02 .hand-bottom2 {
        display: none;
    }
    .top-inner .top-deco02 .hand-bottom1_sp,
    .top-inner .top-deco02 .hand-bottom2_sp {
        display: block;
        top: 92%;
        width: 85vw;
        max-width: 450px;
        min-width: 300px;
        z-index: -1;
    } 
    .top-inner .top-deco02 .hand-bottom2_sp {
        z-index: 2;
    }

    /* 左１番目 */
    /* 動きデコ */
    .loaded .top-inner .top-deco01 img:nth-child(1) {
        width: 4.1vw;
        min-width: 15px;
        max-width: 20px;
        top: 66%;
        left: 8%;
        
    }
    .top-inner .top-deco01 img:nth-child(1) {
        top: 66%;
        left: 8%;
        transform: translate(-50%, -50%) rotate(26deg) ;
        opacity: 0;

    }
    
    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-1 {
        width: 13.8vw;
        min-width: 50px;
        max-width: 80px;
        top: 70%;
        left: 15%;

    }

    @keyframes shoot1-b {
        0% {
            top: 70%;
            left: 15%;
            transform: translate(-50%, -50%) rotate(0) ;

        }
        10% {
            transform: translate(-50%, -50%) rotate(-10deg); }
        15% {
            transform: translate(-50%, -50%) rotate(15deg); }
        20% {
            transform: translate(-50%, -50%) rotate(-18deg); }

        50% {
            top: 70%;
            left: 15%;    
            transform: translate(-50%, -50%) rotate(-18deg); 

        }
        65% {
            transform: translate(-50%, -50%) rotate(-18deg); 
            top: 50%;

        }
        80% {
            transform: translate(-50%, -50%) rotate(60deg);  }

        100% {
            top: 100%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-40deg);  
        }
    }

    /* 左２番目 */
    /* 動きデコ */
    .loaded .top-inner .top-deco01 img:nth-child(2) {
        width: 8.3vw;
        min-width: 30px;
        max-width: 45px;
        top: 45%;
        left: 24vw;
        transform: translate(-50%, -50%) rotate(0);
        opacity: 1;
    }
    .top-inner .top-deco01 img:nth-child(2) {
        top: 45%;
        left: 24vw;
        opacity: 0;
        
    }
    @keyframes shoot2-a {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
            opacity: 1;
        }
        8% {
            transform: translate(-50%, -50%) rotate(5deg); }
        25% {
            transform: translate(-50%, -50%) rotate(-8deg); }

        50% {
            transform: translate(-50%, -50%) rotate(5deg);}
        70% {
            opacity: 1; }

        100% {
            opacity: 0; }
    }

    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-2 {
        width: 30.5vw;
        min-width: clamp(100px, 17.6vh, 110px);
        max-width: 160px;
        top: 32%;
        left: 10%;
        opacity: 1;
        transform: translate(-50% , -50%) rotate(0);


    }
    .top-inner .top-deco02 .deco2-2 {
        opacity: 0;
        top: 15%;
        left: -10%;
        transform: translate(-50% , -50%) rotate(20deg);

    }
    @keyframes shoot2-b {
        0% {
            top: 32%;
            left: 10%;
            transform: translate(-50%, -50%) rotate(0deg);

        }
        10% {
            transform: translate(-50%, -50%) rotate(5deg); }
        15% {
            transform: translate(-50%, -50%) rotate(-12deg); }
        20% {
            transform: translate(-50%, -50%) rotate(15deg); }

        50% {
            top: 32%;
            left: 10%;
            transform: translate(-50%, -50%) rotate(15deg); 

        }
        65% {
            transform: translate(-50%, -50%) rotate(15deg); 
            top: 20%;

        }
        80% {
            transform: translate(-50%, -50%) rotate(-60deg);  }

        100% { 
            top: 100%;
            left: 50%;


        }
    }

    /* 左３番目 */
    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-3 {
        width: 16.6vw;
        min-width: 60px;
        max-width: 100px;
        top: 55%;
        left: 38%;
        opacity: 1;
        transform: translate(-50% , -50%) rotate(0) ;

    }
    .top-inner .top-deco02 .deco2-3{
        top: 40%;
        left: 30%;
        opacity: 0;
        transform: translate(-50% , -50%) rotate(20deg) ;

    }
    @keyframes shoot3 {
        0% {
            top: 55%;
            left: 38%;
            transform: translate(-50%, -50%) rotate(0);

        }
        10% {
            transform: translate(-50%, -50%) rotate(-5deg); }
        15% {
            transform: translate(-50%, -50%) rotate(15deg); }
        20% {
            transform: translate(-50%, -50%) rotate(-10deg); }

        50% {
            top: 55%;
            left: 38%;
            transform: translate(-50%, -50%) rotate(-10deg); 

        }
        65% {
            transform: translate(-50%, -50%) rotate(-10deg); 
            top: 30%;

        }
        80% {
            transform: translate(-50%, -50%) rotate(15deg);  }

        100% {
            top: 100%;
            left: 45%;

        }
    }

    /* 真ん中 */
    /* 動きデコ */
    .loaded .top-inner .top-deco01 img:nth-child(3) {
        width: 8.3vw;
        min-width: 30px;
        max-width: 50px;
        top: 20%;
        left: 25%;
        transform: translate(-50%, -50%) scale(1); 
        opacity: 1;
    }
    .top-inner .top-deco01 img:nth-child(3) {
        top: 20%;
        left: 25%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(0); 


    }
    @keyframes shoot3-a {
        0% {
            top: 20%;
            left: 25%;
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0; 
        }
        25% {
            top: 20%;
            left: 25%;
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 1;
        }
        50% {
            transform: translate(-50%, -50%) scale(1);
        }   
        60% {
            transform: translate(-50%, -50%) scale(1);
        }
        70% {
            transform: translate(-50%, -50%) scale(1.3);
            opacity: 1;
        }


        100% {
            transform: translate(-50%, -50%) scale(1);  
            opacity: 0;

        }
    }
    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-4 {
        width: 41.6vw;
        min-width: clamp(100px, 17.6vh, 150px);
        max-width: 220px;
        top: 15%;
        left: 48%;
        transform: translate(-50% , -50%) rotate(0) scale(0.9);
        opacity: 1;

    }
    .top-inner .top-deco02 .deco2-4 {
        opacity: 0;
        top: -24%;
        left: 48%;
        transform: translate(-50% , -50%) rotate(0);

    }
    @keyframes shoot4-b {
        0% {
            top: 15%;
            left: 48%;
            transform: translate(-50%, -50%) rotate(0) scale(0.9);
            }
        10% {
            transform: translate(-50%, -50%) rotate(0) scale(0.9);
        }
        25% {
            transform: translate(-50%, -50%) rotate(0) scale(1);
        }
        50% {
            top: 15%;
            left: 48%;
            transform: translate(-50%, -50%) rotate(0) scale(1); 

            }
        65% {
            transform: translate(-50%, -50%) rotate(-22deg) scale(1);
            top: 15%;
        
        }
        80% {
            transform: translate(-50%, -50%) rotate(15deg) scale(0.8);  }

        100% {
            top: 100%;
            left: 48%;

        }
    }


    /* 右から4番目 */
    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-5 {
        width: 8.3vw;
        min-width: 30px;
        max-width: 50px;
        top: 52%;
        left: 65%;
        transform: translate(-50% , -50%) rotate(0);
        opacity: 1;
    }
    .top-inner .top-deco02 .deco2-5 {
        top: 40%;
        left: 80%;
        transform: translate(-50% , -50%) rotate(-10deg);
        opacity: 0;

    }
    @keyframes shoot5 {
        0% {
            top: 52%;
            left: 65%;
            transform: translate(-50% , -50%) rotate(0deg);

        }
        10% {
            transform: translate(-50%, -50%) rotate(10deg); }
        15% {
            transform: translate(-50%, -50%) rotate(-15deg); }
        20% {
            transform: translate(-50%, -50%) rotate(18deg); }

        50% {
            top: 52%;
            left: 65%;
            transform: translate(-50%, -50%) rotate(18deg); 

        }
        65% {
            transform: translate(-50%, -50%) rotate(18deg); 
            top: 35%;

        }
        80% {
            transform: translate(-50%, -50%) rotate(-100deg);  }

        100% {
            transform: translate(-50%, -50%) rotate(50deg);
            top: 100%;
            left: 45%;

        }
    }

    /* 右から3番目 */
    /* 動くデコ */
    .loaded .top-inner .top-deco01 img:nth-child(4) {
        width: 4.1vw;
        min-width: 15px;
        max-width: 28px;
        top: 35%;
        left: 93%;
        opacity: 1;

    }
    .top-inner .top-deco01 img:nth-child(4) {
        top: 35%;
        left: 93%;
        opacity: 0;

    }
    @keyframes shoot4-a {
        0% {
            transform: translate(-50%, -50%) rotate(0deg);
            opacity: 1;
        }
        8% {
            transform: translate(-50%, -50%) rotate(35deg); }
        25% {
            transform: translate(-50% , -50%) rotate(15deg);
        }
        50% {
            transform: translate(-50%, -50%) rotate(20deg); 
        }
        70% { opacity: 1;}
        100% {
            transform: translate(-50%, -50%) rotate(5deg); 
            opacity: 0;
        }
    }
    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-6 {
        width: 20.8vw;
        min-width: clamp(60px, 10.5vh, 75px);
        max-width: 120px;
        top: 35%;
        left: 80%;
        transform: translate(-50% , -50%) rotate(0);
        opacity: 1;
    }
    .top-inner .top-deco02 .deco2-6 {
        top: 0%;
        left: 86%;
        transform: translate(-50% , -50%) rotate(-25deg);
        opacity: 0;

    }
    @keyframes shoot6 {
        0% {
            top: 35%;
            left: 80%;
            transform: translate(-50%, -50%) rotate(0deg);

        }
        10% {
            transform: translate(-50%, -50%) rotate(-10deg); }
        15% {
            transform: translate(-50%, -50%) rotate(15deg); }
        20% {
            transform: translate(-50%, -50%) rotate(-10deg); }

        50% {
            top: 35%;
            left: 80%;   
            transform: translate(-50%, -50%) rotate(-10deg); 

        }
        65% {
            transform: translate(-50%, -50%) rotate(-10deg); 
            top: 15%;

        }
        80% {
            transform: translate(-50%, -50%) rotate(250deg);  }

        100% {
            top: 100%;
            left: 45%;

        }
    }

    /* 右から２番目 */
    /* 動きデコ */
    .loaded .top-inner .top-deco01 img:nth-child(5) {
        width: 5.5vw;
        min-width: clamp(15px, 2.6vh, 20px);
        max-width: 30px;
        top: 52%;
        left: 85%;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(-8deg);
    }
    .top-inner .top-deco01 img:nth-child(5) {
        top: 52%;
        left: 85%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1) rotate(-8deg);
    }
    @keyframes shoot5-a {
        0% {
            top: 52%;
            left: 85%;
            transform: translate(-50%, -50%) scale(1) rotate(-8deg);
                opacity: 1;
        }
        8% {
            transform: translate(-50%, -50%) scale(0.5) rotate(-8deg) ; }
        25% {
            transform: translate(-50% , -50%) scale(1) rotate(-8deg); }
        50% {
            transform: translate(-50%, -50%) scale(0.8) rotate(-8deg); }
        70% { opacity: 1;}
        100% {
            top: 52%;
            left: 85%;    
            transform: translate(-50%, -50%) scale(1) rotate(-8deg) ; 
            opacity: 0;
        }
    }
    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-7 {
        width: 25vw;
        min-width: clamp(60px, 10.5vh, 90px);
        max-width: 130px;
        top: 62%;
        left: 72%;
        transform: translate(-50%, -50%) rotate(0);
        opacity: 1;

    }
    .top-inner .top-deco02 .deco2-7 {
        top: 40%;
        left: 90%;
        transform: translate(-50% , -50%) rotate(-20deg);
        opacity: 0;

    }
    @keyframes shoot7 {
        0% {
            top: 62%;
            left: 72%;
            transform: translate(-50%, -50%) rotate(0deg);

        }
        10% {
            transform: translate(-50%, -50%) rotate(20deg); }
        15% {
            transform: translate(-50%, -50%) rotate(-15deg); }
        20% {
            transform: translate(-50%, -50%) rotate(0deg); }

        50% {
            top: 62%;
            left: 72%;
            transform: translate(-50%, -50%) rotate(0deg); 

        }
        65% {
            transform: translate(-50%, -50%) rotate(0deg); 
            top: 50%;

        }
        80% {
            transform: translate(-50%, -50%) rotate(70deg);  }

        100% {
            transform: translate(-50%, -50%) rotate(30deg);
            top: 100%;
            left: 45%;

        }
    }

    /* 右から１番目 */
    /* ゴミ */
    .loaded .top-inner .top-deco02 .deco2-8 {
        width: 33.3vw;
        min-width: 120px;
        max-width: 300px;
        top: 16%;
        left: 104%;
        transform: translate(-50%, -50%) rotate(20deg);
        opacity: 1;

    }
    .top-inner .top-deco02 .deco2-8 {
        top: -10%;
        left: 100%;
        transform: translate(-50%, -50%) rotate(-30deg);
        opacity: 0;

    }
    @keyframes shoot8 {
        0% {
            top: 16%;
            left: 104%;
            transform: translate(-50%, -50%) rotate(20deg);

        }
        10% {
            transform: translate(-50%, -50%) rotate(10deg); }
        15% {
            transform: translate(-50%, -50%) rotate(-15deg); }
        20% {
            transform: translate(-50%, -50%) rotate(18deg); }

        50% {
            top: 16%;
            left: 104%;
            transform: translate(-50%, -50%) rotate(18deg); 

        }
        65% {
            transform: translate(-50%, -50%) rotate(-22deg); 
            top: 5%;

        }
        80% {
            transform: translate(-50%, -50%) rotate(-100deg);  }

        100% {
            top: 100%;
            left: 45%;

        }
        }


    /* ここまで */
    

   .loaded .header-wrap .print {
        font-size: clamp(18px, 5vw, 24px);
    }

    .header-wrap .print {
    font-size: clamp(18px, 5vw, 24px);
    }

    .header-pepar .hamburger {
        font-size: clamp(15px, 4.16vw, 18px);
        margin-top: 0.5em;
    }

    .hamburger span {
        width: 40%;
        margin: 0 auto 0.25em auto;
        height: 3px;
    }
    .hamburger.active span:nth-of-type(1) {
        transform: translateY(clamp(1px ,0.2vw, 3px)) rotate(20deg);
    }
    .hamburger.active span:nth-of-type(2) {
        transform: translateY(-7px) rotate(-20deg);
    }

    .loaded  .header-wrap .header-wrap01{ 
        right: 0%;
        top: -2%;
        width: 20vw;
        max-width: 90px;
        height: 23vw;
        max-height: inherit;
        transform: translateY(0);

        
    }

    .header-wrap .header-wrap01 {
        right: 0%;
        top: -2%;
        width: 20vw;
        max-width: 90px;
        height: 20vw;
        max-height: inherit;
        transform: translateY(-150vw);
    }

    .menu-wrap .menu02 {
        width: 55vw;
        height: auto;
        max-width: 700px;
        min-width: 176px;
    }

    .content01 {
        width: 100%;
        height: 100%;
        margin: min(20vw, 200px) auto;
    }

    .content01 .content01-inner, .content02 .content02-inner {
        margin: 0 auto 0 0;
        width: 100%;
    }

    .content01-inner .content01-wrap {
    width: 100%;
    min-width:  initial;
    }
    
    .content01-wrap .content01-textbox {
        position: relative;
        width: 100%;
        margin: 0 auto;
        left: 0;
    }

    .content01-wrap .content01-textbox .content-sp1 {
        position: relative;
        display: block;
        width: 80%;
    }
    .content01-wrap .content01-textbox .content-sp1::after {
        position: absolute;
        display: block;
        content: '';
        top: 27%;
        right: -2%;
        width: 24vw;
        transform: translate(50%, -50%) rotate(90deg);
        aspect-ratio: 10 / 6;
        background: url(../img/spec01_deco.webp) no-repeat center / contain;
    }

    .content-sp1 img {
        width: 100%;
        height: auto;
    }


    .content01-textbox h2 {
        position: absolute; 
        top: -6%;
        left: 7%;
        z-index: 9;
        font-size: clamp(20px, 5.5vw , 35px);
        letter-spacing: 0.15em;
        width: 95%;
        margin-bottom: 0;
        margin: 0 auto;
    }

    .content02-textbox h3 {
        font-size: min(6.1vw , 35px);
        width: 95%;
        margin-bottom: 0;
        margin-left: 7%;
    }

    .content01-textbox p, .content02-textbox p {
        width: 80%;
        margin: 20vw auto 10vw auto;
        max-width: initial;
        font-size: clamp(15px, 4.16vw, 20px);        
        line-height: 2;
        letter-spacing: 0.1em;
        color: #616161;

    }

    .content02-textbox p {
        margin: 0 auto 5vw auto;
    }


    .content01-wrap .content01-imgbox {
        z-index: -1;
        display: block;
        width: 100%;
        margin-left: 0;
        aspect-ratio: 0;
    }

    .content01-imgbox1 {
        display: none;
    }
    .content01-imgbox1::after {
        position: absolute;
        display: none;
        content: '';
        bottom: -3%;
        right: 0;
        width: 247px;
        aspect-ratio: 4 / 1;
        background: url(../img/content_deco.webp) no-repeat center / contain;
    }

    .content01-imgbox .content01-imagbox2 {
        display: none;
    }

    .content01-imagbox2-sp {
        display: block;
        position: relative;
        width: 100%;
        height: 65vw;
        max-height: 400px;
    }

    .content01-imagbox2-sp img {
        position: absolute;
        width: 30%;
        max-width: 200px;
    }
    .content01-imagbox2-sp img:nth-child(1) {
        top: 40%;
        left: 17%;
        transform: translate(-50%, -50%);
    }
    .content01-imagbox2-sp img:nth-child(2) {
        bottom: 40%;
        left: 50%;
        transform: translate(-50%, 50%);

    }
    .content01-imagbox2-sp img:nth-child(3) {
        top: 30%;
        right: 17%;
        transform: translate(50%, -50%);
    }

    .content01-inner .movie {
        width: 90%;
        margin: 20vw auto 0 auto;
    }
    .spec {
        margin-bottom: 0;
    }

    .spec-inner {
        width: 100%;
        margin: min(20vw, 200px) auto;
    }
    
    .spec-inner .pulldown, .content02 .pulldown {
        width: 95%;
    }


    .spec::before, .content02::before {
        height: min(12.5vw , 70px);
        top: 24vw;
    }
    .pulldown p, a {
        font-size: min(3.8vw, 20px);
    }
    
    .spec-title, .spec02-title {
        width: 95%;
        margin: 0 auto;
    }
    .spec-title h2 {
        width: 100%;
        font-size: min(8.3vw, 80px);
        margin: 0 auto;
    
    }

    .spec-inner .spec-wrap { 
        display: block;
        margin: 10px auto 0 auto;
        height: auto;
        max-height: inherit;
    }
    .spec-wrap .spec-box01 {
        width: 100%;
        height: auto;
    }

    .spec-wrap .spec01-box02 { 
        position: relative;
        width: 100%;
        height: auto;
        margin-left: auto;
    }

    .spec-wrap .spec-title2 {
        font-size: min(4.4vw, 25px);
        width: 100%;
        margin: 0.8em auto;
    }

    .spec-textbox {
        width: 80%;
        margin: 0 auto;
    }

    .spec-textbox .spec-amount {
        font-size: min(3.8vw, 30px);
        width: auto;
    }

    .spec-textbox p {
        margin-bottom: 2.5em;
        font-size: clamp(15px, 4.16vw, 20px);
        width: 100%;
    }

    .spec01-box02 .spec01-imgbox {
        display: none;
    }


    .spec01-box02-sp {
        position: relative;
        display: block;
    }

    .spec01-box02 .trash {
        display: none;
    }
    .spec01-box02-sp .spec-title-sp ,
    .spec02-box02-sp .spec-title-sp{
        display: flex;
        align-items: center;
        width: 95%;
        margin: 0 auto;
    }

    .spec-title-sp .spec-title {
        width: 70%;
        display: block ;
    }
    .spec-title-sp .spec-title {
        font-size: min(8.3vw, 80px);
        color: transparent;
    }
    .spec-title-sp .spec-amount {
        display: flex;
        justify-content: center;
        align-items: center ;
        text-align: center;
        width: 20vw;
        max-width: 120px;
        min-width: 60px;
        aspect-ratio: 1 / 1;
        padding: 0.5em;
        font-size: clamp(11px, 3.05vw, 20px );
        border-radius: 50%;
        margin-bottom: 1.5em;
        line-height: 1.5;
        letter-spacing: 0.05em;
        font-family: sans-serif;
        color: #fff;
        background-color: #f79b8c;
    }
    .spec02-box02-sp .spec-title-sp .spec-amount {
        background-color: #62bcc3;
    } 

    .spec01-box02-sp .trash {
        position: absolute;
        z-index: 9;
        bottom: 17%;
        right: 24%;
        transform: translate(50%, 50%);
        max-width: 300px;
        min-width: 170px;
        width: 45vw;
        aspect-ratio: 10 / 10.9;
        background: url(../img/spec01_trashpack.webp) no-repeat center / contain;
        }

    #box1 {
        display: none;
    }

    .spec01-box02-sp #box2.active {
        display: block;
        position: absolute;
        width: 27vw;
        min-width: 90px;
        max-width: 170px;
        height: 100px;
        aspect-ratio: 1 / 1;
        z-index: 5;
        bottom: 118%;
        right: 84%;
        transform: translate(50%, 50%);
        animation: goal2 2.5s 1s ease-in-out forwards;

    }
    .spec01-box02-sp #box2 {
        display: block;
        position: absolute;
        width: 27vw;
        min-width: 100px;
        max-width: 170px;
        height: 100px;
        aspect-ratio: 1 / 1;
        z-index: 5;
        bottom: 118%;
        right: 84%;
        transform: translate(50%, 50%);

    }
    .spec01-box02-sp #box2 img {
        width: 100%;
        height: auto;
    }

    @keyframes goal2 {
        0% {
            bottom: 118%;
            right: 84%;
            transform: translate(50%, 50%) rotate(0);
            }

        50% {
            right: 50%;

        }

        100% {
            bottom: 25%;
            right: 26%;
            transform: translate(50%, 50%) rotate(360deg);
        }
    }


    .spec01-box02-sp .spec01-imgbox {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 10%;
    }

    .spec01-imgbox .spec01-wrap02-img1,
    .spec02-box02-sp  .spec02-imgbox{
        display: flex;
        flex-direction: row;
        width: 95%;
        margin: 0 auto;
        max-width: 600px;
        height: auto;
        margin-top: auto;
        margin-bottom: 10%;
    }
    .spec-inner .spec01-wrap02-img1 {
        display: none;
    }

    .spec-inner .spec01-wrap02-img1-sp {
        display: block;
        margin-top: 10%;
        width: 100%;
    }

    .spec01-wrap02-img1-sp .spec01-i {
        display: block;
        width: 30%;
        aspect-ratio: 10 / 19;
        margin-top: 0;
    }

    .spec01-wrap02-img1-sp .price {
        width: 45%;
        max-width: 260px;
        aspect-ratio: 5 / 2.3;
        height: auto;
        margin-left: 5%;
    }

    .spec01-wrap02-img1-sp .spec01-size {
        width: 45%;
        margin-left: 5%;
        margin-top: 10%;
    }
    .spec01-size .spec01-sizetext {
        width: 100%;
        min-width: inherit;
        margin: 0 auto;
    }
    .spec01-sizetext p {
        font-size: clamp(12px, 3.3vw, 15px);
        margin-bottom: 0.5em;
        text-align: left;
    }

    .spec01-size img  {
        width: 80%;
        max-width: inherit ;
        min-width: inherit;
        height: auto;
        display: block;
        padding-bottom: 5%;
        margin: 0 auto;
    }

    .spec-inner #box1,
    .spec-inner #box1.active {
        display: none;
    }


    .spec01-imgbox .spec01-wrap02-img2,
    .spec02-box02-sp .spec02-img2 {
        position: relative;
        display: block;
        width: 65vw;
        max-width: 400px;
        margin-left: auto;
    }
    .spec01-imgbox .spec01-wrap02-img2::after {
        position: absolute;
        display: block;
        content: '';
        top: -1%;
        right: 20%;
        width: 20vw;
        transform: translate(50%, -50%);
        aspect-ratio: 10 / 6;        
        background: url(../img/spec01_deco.webp) no-repeat center / contain;
    }


    
    .spec02-img2::before {
        aspect-ratio: 10 / 6;
        background: url(../img/content02_deco.webp) no-repeat center / contain;
        width: 24vw;
        max-width: 150px;
        min-width: initial;
        top: 0%;
        left: 10%;
    }
    
    .spec01-wrap02-img2 img {
        display: block;
        width: 100%;
        height: auto;
        margin-left: auto;
        aspect-ratio: 5 / 4;
    }


    .spec01-imgbox .spec01-wrap02-img1::before {
        display: none;
    }

    .spec-box01 .spec-table {
        width: 80%;
        margin: 0 auto;
    }
    .spec-table p {
        padding: 0.8em 0 0 0.8em;
    }

    .buy-button ,
    .voice-inner .buy-button,
    .postage03 .buy-button {
        display: flex;
        width: 9em;
        margin: 15vw auto 0 auto;
        text-align: center;
        border-radius: 0.3em;
        font-size: clamp(18px, 5vw, 30px);
        color: #fff;
        padding: 0.8em 1.5em;
    }

    .postage03 .buy-button1{
        display: none;
    }

    .point01,
    .point02 {
        background-size: 28vw;
    }

    .point01 .point01-inner, 
    .point02 .point01-inner {
        padding: min(20vw , 200px) 0;
    }


    .point01-inner .point01-1.active, 
    .point01-inner .point01-3.active, 
    .point01-inner .point01-5.active {
        width: 100%;
        width: min(80vw, 490px);
        display: block;
        padding: 15% 0;
        margin-bottom: 17vw;
    }
    .point01-inner .point01-1,
    .point01-inner .point01-3,
    .point01-inner .point01-5 {
        width: 100%;
        width: min(80vw, 490px);
        display: block;
        padding: 15% 0;
        margin-bottom: 17vw;
    }
    
    .point01-inner .point01-1 .point01-1-inner, 
    .point01-inner .point01-3 .point01-3-inner, 
    .point01-inner .point01-5 .point01-5-inner {
        width: 100%;
        width: min(80vw, 490px);
        display: block;
    }

    .point01-1 .point01-1-img, .point01-3 .point01-3-img, .point01-5 .point01-5-img {
        width: 80%;
        margin: 0 auto;
        display: none;
    }
    .point01-1-img img, .point01-3-img img, .point01-5-img img {
        width: 100%;
        margin: 10% auto;
    }
    .point01-1 .point01-text, .point01-3 .point01-text, .point01-5 .point01-text {
        width: 80%;
        margin: 0 auto;
    }

    .point01-1::after,
     .point01-3::after,
      .point01-5::after {
        right: -2.7%;
        background-size: 55%;
    }

    .point01-2::before,
    .point01-4::before {
        left: -2.6%;
        background-size: 55%;
    }

    .point01-1.active h3, .point01-3.active h3,  .point01-5.active h3 {
        right: 12%;
        font-size: clamp(100px, 27.7vw, 150px);
    }
    .point01-1 h3, .point01-2 h3, .point01-3 h3, .point01-4 h3, .point01-5 h3 {
        right: 12%;
        font-size: clamp(100px, 27.7vw, 150px);
    }
    .point01-2.active h3, 
    .point01-4.active h3 {
        left: 25%;
        font-size: clamp(100px, 27.7vw, 150px);

    }
    .point01-2 h3, 
    .point01-4 h3 {
        left: 25%;
        font-size: clamp(100px, 27.7vw, 150px);

    }

    .point01-inner .point01-2.active,
    .point01-inner .point01-4.active {
        width: min(80vw, 490px);
        padding: 20% 0;
        display: block;
        margin-bottom: 17vw;
    }
    .point02 .point01-inner .point01-4.active {
        margin-bottom: 17vw;
    }

    .point01-inner .point01-2,
     .point01-inner .point01-4 {
        width: min(80vw, 490px);
        padding: 20% 0;
        display: block;
        margin-bottom: 17vw;

        
    }

    .point01-inner .point01-2, 
    .point01-4 .point01-4-inner {
        display: block;
        width: 80%;
    }

    .point01-2 .point01-2text {
        width: 100%;
        min-width: initial;
        margin-bottom: 20%;
    }

    .point01-text .point01-titile,
     .point02 .point01-text .point01-titile {
        display: none;
        font-size: clamp(18px,5vw, 30px);
        line-height: 1.5;
        margin-bottom: 0;
    }
    .point01-text .point01-sp {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 5%;
    }
    .point01-sp img {
        width: 40%;
        height: auto;
    }

    .point01-text .point01-sp .point01-titile,
    .point02 .point01-2 .point01-text .point01-sp .point01-titile,
    .point02 .point01-3 .point01-text .point01-sp p  {
        display: block;
        width: 55%;
        margin-left: auto;
        margin-bottom: 0;
    }

    .point01-2 .point01-text .point01-titile,
    .point01-4 .point01-text .point01-titile{
       width: 100%;
       display: block;
       margin-bottom: 0.5em;
    }
    .point01-text p {
        font-size: clamp(15px, 4.16vw, 20px);
        line-height: 1.7;
        letter-spacing: 0.1em;
        
    }
    .point02 .point01-3 .point01-text p {
        width: 100%;
    }
    

    .point01-2-p {
        width: 90%;
        margin: 0 auto;
    }

    
    .point01-2text p {
        font-size: min(3.8vw, 20px);
        text-align: left;
        padding: 0.2em 0.2em 0.2em 1.5em;
        line-height: 1.5;
    }
    .point01-2 .point01-2-inner {
        width: 80%;
    }
    .point01-2 .point01-2text .point01-2-img {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(50%, -50%);
        width: 60%;
        z-index: 5;
    }
    .point01-2.active .point01-text,
    .point01-4.active .point01-text {
        width: 100%;
    }

    .point01-2 .point01-2text p{
        text-align: left;
        border-radius: 50px;
        font-size: clamp(12px, 3.3vw, 20px);
        color: #fff;
        background-color: #f78877;
        padding: 0.8em 0 0.8em 1.5em;
    }


    .point01-2.active .point01-text{
        width: 100%;
        margin: 0 auto;
        padding-left: 0;
    }
    .point01-4.active .point01-text {
        width: 100%;
        margin: 0 auto;
        padding-left: 0;
        margin-bottom: 5%;
    }

    .point01-2mark {
        display: none;
    }
    .point01-2mark-sp{
        display: block;
        position: relative;
        width: 100%;
        margin: 0 0 0 auto;
    }
    .point01-2mark-sp .mark1-box {
        position: absolute;
        top: 50%;
        left: -5%;
        transform: translate(-50%, -50%);
    }    

    .point01-2 .point01-2mark-sp .mark1 {
        width: 5em;
        font-size: min(3.3vw, 13px);
        text-align: center;
    }
    .point01-2mark-sp .mark1::after {
        top: 65%;
        transform: translate(-50%, -50%) rotate(15deg);
    }
    .point01-2mark-sp .mark1::before {
        left: 0;
    }

    .point01-2 .point01-2mark-sp .mark2 {
        display: flex;
        align-items: center;
        width: 50vw;
        max-width: 350px;
        padding: 0.5em ;
        margin: 0;
        margin-left: auto;
        margin-bottom: 0;
        border-radius: 0.5em;
        text-align: left;
        font-size: clamp(12px, 3.3vw, 15px);
        background-color: #fbc3bb;
    }

    .point01-4-wrap {
        display: flex;
        width: 100%;
        max-width: 400px;
    }
    .point01 .point01-4-wrap::after {
        position: absolute;
        display: block;
        content: '';
        bottom: 160%;
        right: 5%;
        transform: translate(50%, 50%);
        width: 20vw;
        max-width: 180px;
        min-width: 110px;
        aspect-ratio: 10 / 13;
        z-index: 2;
        background: url(../img/point01-4_trash_sp.webp) no-repeat center / contain;
    }
    
    .point01-4-wrap .point01-4text {
        width: 55%;
    }
    .point01-4-wrap .point01-4imgbox {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .point01-4img:last-child {
        width: auto;
    }
    .point01-4img:last-child::before {
        position: absolute;
        content: '';
        top: 10%;
        right: -8%;
        transform: translate(50%, -50%);
        width: 18px;
        aspect-ratio: 1 / 1;
        background: url(../img/point01_04_4deco.webp) no-repeat center / contain;
    }

    .point01-4text p {
        margin-bottom: 30px;
        font-size: clamp(12px, 3.3vw, 16px);
    }

    .point01-4img::after {
        height: 30px;
    }
    .voice {
        margin: min(20vw , 200px) 0;
    }
    
    .voice-inner {
        width: 100%;
    }
    .voice-caption-text .caption {
        margin-bottom: 0;
        font-size: 20px;
    }

    .voice-wrap .voice-caption {
        margin-bottom: 5px;
    }

    .voice-caption-text .caption2 {
        display: none;
    }
    .caption2-sp {
        display: block;
        font-size: clamp(15px, 4.16vw, 20px);
    }

    .voice-wrap .voice-question {
        margin: 5vw auto 0 auto;
        margin: min(8.8vw, 40px) auto 0 auto;
    }

    .voice-questionbox:nth-child(2) p:nth-child(2){
        width: 65%;
    }

    .voice-questionbox p {
        margin-bottom: 1em;
        font-size: clamp(15px, 4.16vw, 20px);
        padding-left: 2.5em;

    }
    .voice-questionbox .voice-q {
        top: -5%;
        width: 30px;
    }

    
    .voice-questionbox .voice-a {
        top: 0;
        width: 30px;
    }

    .voice-questionbox:nth-child(2)::after {
        top: 75%;
        right: 12%;
        width: 30vw;
        max-width: 132px;
    }

    .voice-wrap::after {
        width: 15vw;
        height: 15vw;
    }
    .voice-wrap .pasta {
        left: 20%;
        transform: translate(-50%, 50%) rotate(40deg);
    }

    .voice-inner .voice-wrap {
        margin: 0 auto 18vw auto;
        width: 80%;
    }

    .voice-wrap .voice-trashpack.active {
        position: absolute;
        bottom: -18%;
        left: auto;
        right: 17%;
        transform: translate(50%, 50%) rotate(-20deg);
        width: 20%;
        height: auto;
        animation: katakata2 1s ease-in-out forwards;
    }
    .voice-wrap .voice-trashpack {
        position: absolute;
        bottom: -18%;
        left: auto;
        right: 17%;
        transform: translate(50%, 50%) rotate(-20deg);
        width: 20%;
        height: auto;
    }
    .voice-caption .voice-caption-text {
        margin-bottom: 0;
    }
    @keyframes katakata2 {
        0% { transform: translate(50% , 50%) rotate(-20deg);}
        30% { transform: translate(50% , 50%) rotate(10deg);}
        50% { transform: translate(50% , 50%) rotate(-15deg);}
        70% { transform: translate(50% , 50%) rotate(0deg);}
        100% { transform: translate(50% , 50%) rotate(-20deg);}
    
    }
    
    .content02-inner .content02-wrap {
        display: block;
        width: 100%;
        margin: 10vw auto min(24vw, 200px) auto;
    }
    .content02 .content02-inner {
        width: 100%;
    }
    .content02-wrap .content02-textbox {
        width: 100%;
        margin: 0 auto;
    }

    .content02-textbox .content02-sp1 {
        position: relative;
        display: block;
        width: 90%;
        margin: 5vw 0 10vw 0;
    }

    .content02-sp1 img {
        width: 100%;
        height: auto;
    }

    .content02-textbox .content02-sp1::after {
        position: absolute;
        display: block;
        content: '';
        top: 0;
        right: 25%;
        transform: translate(50%, -50%);
        width: 25vw;        aspect-ratio: 10 / 6;
        background: url(../img/content02_deco.webp) no-repeat center / contain;
    }

    .content02-imgbox {
        display: none;
    }

    .content02-imagbox2-sp {
        display: flex;
        width: 95%;
        height: 15vh;
        height: clamp(158px, 43.8vw, 300px );
        margin: 0 auto;
    }
    .content02-imagbox2-sp img:nth-child(1) {
        width: 35%;
        height: auto;
        margin-bottom: auto;
        object-fit: contain;
    }
    .content02-imagbox2-sp img:nth-child(2) {
        width: 60%;
        height: auto;
        margin: auto 0 0 auto ;
        margin-top: auto;
        object-fit: contain;
    }

    .postage02-inner {
        padding: 12vw 0;
    }

    .spec-table th, .spec-table td, .spec-table p, .postage02-table th, .postage02-table td, .spec-table .spec-table1 {
        font-size: clamp(13px, 3.6vw, 20px);
    }
    .postage02-table td {
        line-height: 1.5;
        padding: 0.5em 0 0.5em 3em;
    }

    .postage02-table th {
        padding: 0.5em 3em 0.5em 0;
    }

    .postage02-table p {
        line-height: 1.7;
        font-size: 12px;
        font-size: clamp(12px, 3.3vw, 15px);
        text-align: left;
    } 
    


    .spec02-box02 {
        display: none;
    }

    .spec01-box02 .spec01-size {
        display: none;
    }


    .spec02-box02-sp {
        display: block;
        margin-bottom: 0;
    }
    .spec02-box02-sp .spec02-wrap {
        display: flex;
        flex-direction: column-reverse;
    }

    .spec02-imgbox .spec02-img1 {
        width: 30%;
        height: 100%;
        margin-top: 0;
        margin: auto auto auto 0 ;
    }
    .spec02-img1 img {
        display: block;
        width: 100%;
        aspect-ratio: 10 / 19;
        margin-top: 0;

    }

    .spec02-imgbox .spec02-move-sp {
        width: 40%;
        margin: auto;
    
    }
    .spec02-move-sp .spec02-move-inner2  {
        width: 100%;
        height: 100%;
        background: url(../img/spec02_move_01.webp) no-repeat center / contain;

    }
    

    .spec02-move-sp p {
        line-height: 1.5;
        font-size: clamp(12px, 3.3vw, 15px);
        padding-top: 1em;
        color: #616161;
    }

    .postage01 {
        margin: min(20vw , 200px) auto 15vw auto;
    }
    .postage03 {
        margin: 15vw auto;
    }

    .postage03 .postage-textbox {
        width: 90%;
        margin: 0 auto;
    }

    .point02 .point01-1.active h3, .point02 .point01-2.active h3,
     .point02 .point01-3.active h3, .point02 .point01-4.active h3,
      .point02 .point01-5.active h3 {
        top: -1%;
        right: 15%;
        font-size: clamp(100px, 27.7vw, 150px);
    }
    .point02 .point01-1 h3, .point02 .point01-2 h3,
    .point02 .point01-3 h3, .point02 .point01-4 h3,
     .point02 .point01-5 h3 {
       top: -1%;
       right: 15%;
       font-size: clamp(100px, 27.7vw, 150px);
   }

    .point02 .point01-2.active h3, .point02 .point01-4.active h3 {
        left: 25%;
        font-size: clamp(100px, 27.7vw, 150px);
    }
    .point02 .point01-inner .point01-2.active {
        display: block;
        padding: 15% 0;
        width: min(80vw, 490px);
        margin-bottom: 17vw;
    }
    .point02 .point01-inner .point01-2 {
        display: block;
        padding: 15% 0;
        width: min(80vw, 490px);
    }
    .point02 .point01-2 .point01-text {
        width: 100%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }
    .point02 .point01-2 .point01-2-img,
    .point02 .point01-2 .point01-text .point01-titile {
        display: none;
    }
    .point02 .point01-2-img img {
        width: 100%;
        margin: 0 auto;
    }
    .point02 .point01-4 .point01-text {
        width: 100%;
        max-width: initial;
        margin: 0 auto;
    }
    .point01-inner .titile  {
        margin-bottom: 15vw;
    }
    .titile h3 {
        margin-bottom: 0.3em;
    }

    .point02 .point02-4-imgbox {
        justify-content: space-between;
    }

    .point02 .point02-4-img {
        width: 100%;
        margin: 0 auto;
        margin-bottom: auto;
    }
    .point02 .point02-4-imgbox .point02-4-img02 {
        width: 30%;
        padding-right: 6%;
    }

    .point02 .point02-4-imgbox .point02-4-img02:last-child {
        padding-right: 0;
    }

    .point02 .comments,
    .point02 .comments02 {
        width: 100%;
        margin-top: 1em;
        font-size: clamp(13px, 3.6vw, 15px);
    }

    .postage02-inner h2 {
        font-size: min(5.5vw, 25px);
        line-height: 1.5;
        text-wrap: nowrap;
    }



    .postage02-table {
        width: 80%;
        margin: 3% auto 10% auto;
    }

    .postage02-table table {
        width: 100%;
    }

    .postage02-table h3 {
        font-size: clamp(15px, 4.16vw, 20px);
    }
    .postage02-table h3 span {
        font-size: clamp(12px, 3.3vw, 15px);
    }

    .postage02-inner .p-text1, .postage02-inner .p-text2 {
        width: 100%;
        font-size: clamp(15px, 4.16vw, 20px);
    }

    .postage02-inner .p-text2 {
        width: 100%;
        font-size: 12px;
    }

    .postage02-inner::before {
        top: 0%;
        left: 18%;
        transform: translate(-50%, -50%);
        width: 5vw;
        min-width: 100px;
    }

    .postage-box {
        display: none;
    }
    
    .postage-box-sp {
        display: block;
        margin-bottom: 15vw;
    }
    
    .postage-box-sp .table1,
    .postage-box-sp .table2 {
        margin-bottom: max(5.98vw, 25px);
    }

    .postage-box-sp .table2 {
        width: 100%;
        margin-bottom: max(5.98vw, 25px);
    }

    .postage-2 {
        text-align: left;
    }
    .postage-1 span {
        padding-left: 0;
        font-size: clamp(12px, 3.3vw, 15px);
    }

    .postage-box table td, .postage-box-sp table td {
        font-size: 15px;
        width: clamp(80px, 22.2vw, 160px);

    }
    .postage03-packet p {
        font-size: clamp(15px, 4.16vw, 22px);
        line-height: 1.5;
    }

    .postage-textbox .postage-textwrap {
        width: 85%;
    }

    .postage03-packet .p-coment {
        width: 35%;
        max-width: 90px;
    }

    .postage03-packet .p-coment::after {
        right: -22%;
        z-index: -1;
    }
    .postage03-packet .note {
        font-size: clamp(12px, 3.3vw, 15px);
    }

    .postage-1 {
        display: block;
        margin-bottom: 0.5em;
        font-size: clamp(15px, 4.16vw, 20px);
    }
    .postage03 .postage-box-sp table th {
        background-color: #e0efef;
    }

    .postage-textwrap h3 {
        line-height: 1.5;
    }

    .postage-textwrap p {
        font-size: 12px;
    }

    .footer-inner p {
        font-size: 10px;
    }


}




 /* ---------------------------------------------------------------- メディアクエリ 550px ----------------------------------------------------------------- */


 @media screen and (max-width:550px)  {

    .voice-inner .voice-wrap {
    border-radius: 0;
    width: 100%;
    background-color: transparent;
    }
    .voice-wrap::after {
        width: 100%;
        background: url(../img/voice_border.webp) no-repeat center / contain;
        clip-path: none;
    }


    .postage03 .postage-textbox {
        width: 100%;
    }
    .postage02-table {
        width: 100%;
    }
 }


 /* ---------------------------------------------------------------- メディアクエリ 360px ----------------------------------------------------------------- */


 @media screen and (max-width:360px)  {

    .sp2 {
        display: none;
    }
    .sp3 {
        display: block;
    }
    .voice-questionbox:nth-child(2) p:nth-child(2){
        text-wrap: nowrap;
    }
    .loaded .top-inner .top-wrap01 {
        bottom: 37%;
    }
    .top-inner .top-wrap01 {
        bottom: 37%;
    }

 }