* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: rgb(46, 46, 46);
}

body {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #d0d67b49;
}

main {
    flex: 1;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

li {
    list-style: none;
}

a{
    text-decoration: none;
}

/*部品*/

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid {
    display: grid;
    justify-content: center;
    align-items: center;
}

.wrapper {
    padding-inline: 6%;
}

.clip{
    border-radius: 100px;
    overflow: hidden;
}

.btn {
    border-radius: 15px;
    background-color: #f2f3d9;
    border: 2px solid #6b6b6b;
    padding: 3px 15px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b6b6b;
    cursor: pointer;
    transition: .4s;
}

.btn:hover {
    background-color: #bf760e;
    border-color: #bf760e;
    color: #f2f3d9;
}

.title {
    background-color: #f7e6b8;
    padding-inline: 10% 20px;
    width: fit-content;
    overflow: hidden;
}

.title-text  {
    font-family: "bungee",sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(4rem,12.5vw,6rem);
    color: #fbca44;
}

.insert {
    transform: translateY(100%);
    transition: 1.5s cubic-bezier(.22,1,.36,1);
}

.insert.active {
    transform: translate(0);
}

.fadein {
    transform: translateY(60px);
    opacity: 0;
    transition: 1.5s;
}

.fadein.show {
    transform: translateY(0);
    opacity: 1;
}

.main-cover {
    background-color: #f2f3d9;
}

.scroll-fade {
    opacity: 0;
}

/*hero*/

.hero {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: -20;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.hero-cookie {
    position: absolute;
    width: clamp(500px,40vw,600px);
    top: 16%;
    left: 35%;
    transition: 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-cookie1 {
    transform: translateY(-200px);
    z-index: 30;
}

.hero-cookie2 {
    transform: translate(150px,-150px);
}

.hero-cookie3 {
    transform: translateX(200px);
    z-index: 28;
}

.hero-cookie4 {
    transform: translate(200px,150px);
    z-index: 10;
}

.hero-cookie5 {
    transform: translate(-100px,100px);
    z-index: 25;
}

.hero-cookie6 {
    transform: translate(-200px,100px);
    z-index: 20;
}

.hero-cookie7 {
    transform: translate(-150px,-150px);
    z-index: 15;
}

.hero-cookie.hero-cookie1.active{
    transform: translateY(-400px);
}

.hero-cookie.hero-cookie2.active{
    transform: translate(400px,-300px);
}

.hero-cookie.hero-cookie3.active{
    transform: translateX(600px);
}

.hero-cookie.hero-cookie4.active{
    transform: translate(400px,300px);
}

.hero-cookie.hero-cookie5.active{
    transform: translate(-400px,300px);
}

.hero-cookie.hero-cookie6.active{
    transform: translateX(-700px);
}

.hero-cookie.hero-cookie7.active{
    transform: translate(-400px,-300px);
}

.hero-text {
    opacity: 1;
    transition: 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-text.active {
    opacity: 0;
}

.hero-text1 {
    position: absolute;
    top: 34%;
    left: 8%;
    text-align: center;
}

.hero-text1 p{
    font-family: 'Bungee',sans-serif;
    font-size: 2.6rem;
    letter-spacing: 3px;
}

.hero-text2 {
    position: absolute;
    top: 40%;
    right: 8%;
}

.hero-text2 span {
    display: inline-block;
    font-family: 'Bungee',sans-serif;
    font-size: 2.6rem;
    letter-spacing: 3px;
    animation: up 3s cubic-bezier(.22,.61,.36,1) infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes up {
    5%{
        transform: translateY(0);
        opacity: .8;
    }
    10%{
        transform: translateY(-5px);
        opacity: 1;
    }   
    15%{
        transform: translateY(0);
        opacity: .8;
    }
    100%{
        transform: translateY(0);
    }
}

/*header*/

.header {
    width: 100%;
    padding: 20px 50px 0;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: #f2f3d9;
    z-index: 100;
}

.header-logo {
    width: 400px;
    transition: .3s;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-right {
    gap: 50px;
}

.shop {
    color: #bf760e;
    letter-spacing: 0.15rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: .4s;
    position: relative;
}

.shop::before{
    content: "";
    position: absolute;
    bottom: -5px;
    opacity: 0;
    width: 0px;
    height: 2px;
    background-color: #bf760e;
    border-radius: 999px;
    transition: 0.4s;
    transform: translateX(-50%);
    left: 50%;
}

.shop:hover:before {
    width: 100%;
    opacity: 1;
}

.icon {
    width: 35px;
    stroke: #bf760e;
    stroke-width: 1.5;
    transition: .3s;
}

.icon:hover {
    opacity: 0.7;
}

.header-cart-wrap {
    position: relative;
}

.header-cart {
    position: relative;
    z-index: 0;
}

.cart-count {
    position: absolute;
    bottom: 3px;
    right: -10px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #bf760e;
    color: #f2f3d9;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: .3s;
    visibility: visible;
    opacity: 1;
    z-index: -10;
}

.cart-count.hidden {
    opacity: 0;
    visibility: hidden;
}

.header-favorite-wrap {
    position: relative;
}

.header-favorite {
    position: relative;
    z-index: 0;
}

.favorite-count {
    position: absolute;
    bottom: 3px;
    right: -10px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #bf760e;
    color: #f2f3d9;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: .3s;
    visibility: visible;
    opacity: 1;
    z-index: -10;
}

.favorite-count.hidden {
    opacity: 0;
    visibility: hidden;
}

.cookie-wrap {
    width: 70px;
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    transform: translate(0);
    transition: 1s cubic-bezier(0.215, 0.610, 0.355, 1);
    z-index: 20;
}

.cookie-wrap p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-60%);
    color: #bf760e;
    font-weight: 500;
}

@keyframes cookie {
    0%{
        trandform: rotate(0deg);
    }
    50%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.cookie {
    animation: cookie 10s linear infinite;
    animation-play-state: paused;
}

.cookie-wrap:hover .cookie {
    animation-play-state: running;
}

.cookie-wrap.open {
    transform: translateX(110px);
}

/*menu*/

.drawer {
    pointer-events: none;
    position: relative;
    z-index: 100;
}

.drawer.open {
    pointer-events: auto;
}

.drawer.open .menu-wrap {
    transform: translateX(0);
}

.drawer.open .overlay {
    opacity: 1;
}

.overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 1s cubic-bezier(0.215, 0.610, 0.355, 1);
    cursor: pointer;
}

.menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: clamp(550px,90vw,900px);
    height: 100vh;
    overflow: hidden;
    transform: translateX(100%);
    transition: 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.menu-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu {
    position: fixed;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    right: 10%;
    top: 7%;
    z-index: 30;
}

.menu-logo {
    width: clamp(180px, 25vw, 220px);
    cursor: pointer;
    transition: .3s;
}

.menu-logo:hover {
    transform: translateX(-10px);
    opacity: 0.7;
}

.menu-list {
    font-size: clamp(48px,7vw,72px);
    line-height: 1.5;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.menu-list a {
    font-family: 'Bungee',sans-serif;
    color: #fbca44;
}

.menu-list li {
    width: fit-content;
    transition: 0.3s;
}

.menu-list li:hover {
    transform: translateX(-10px);
    opacity: 0.7 ;
}

/*blank*/

.blank {
    height: 100vh;
}

/*about*/
.about-area {
    padding-top: 100px;
}

.about-title {
    margin: 100px 0 100px 200px;
    font-size: 2rem;
}

.about-img {
    margin-top: 200px;
    width: 100%;
    position: relative;
    z-index: 0;
}

.about-img1,.about-img2 {
    width: clamp(700px,50vw,960px);
}

.about-img1 {
    margin-left: auto;
    position: relative;
    z-index: 10;
}

.about-img2 {
    margin-right: auto;
    transform: translateY(-100px);
    position: relative;
    z-index: 0; 
}

.shadow {
    box-shadow: 12px 12px 2px 1px rgb(191,118,14,0.75);
}

.about-text {
    padding-left: 25%;
}

.about-text p {
    width: fit-content;
    font-size: 1.3rem;
    margin-top: 60px;
    line-height: 4.0rem;
}

.about-text p:last-child {
    padding-left: 250px;
}

/*lineup*/
.horizontal {
    position: sticky;
    top: 100px;
}

.products {
    display: flex;
    justify-content: start;
    width: max-content;
    height: 80vh;
    gap: 80px;
    transform: translateX(0);
}

.card {
    width: 960px;
    flex-shrink: 0;
    gap: 30px;
}

.card-img {
    width: 480px;
    position: relative;
    z-index: 10;
}

.card-img img {
    position: relative;
    z-index: 0;
}

.card-img::after {
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    z-index: -10;
    background-image: url(img/hover-effect.png);
    background-size: cover;
    opacity: 0;
    transition: 0.8s;
}

.card-img:hover::after{
    opacity: 0.8;
}

.card-right {
    flex:1;
    width: 480px;
    height: 360px;
    color: #000;
}

.card-title {
    width: fit-content;
    font-family: 'Bungee',sans-serif;
    font-size: 2.8rem;
}

.card-top {
    width: 100%;
}

.card-sub-title {
    font-size: 1.5rem;
}

.card-txt {
    width: 380px;
    margin-top: 60px;
    font-size: 1.1rem;
    line-height: 2.0rem;
}

.card-bottom {
    margin-top: 80px;
    justify-content: space-between;
}

.card-price {
    font-size: 1.2rem;
}

.favorite {
    stroke: #292929;
    transition: .4s;
    cursor: pointer;
}

.favorite:hover {
    stroke: #bf760e;
    opacity: 0.7;
}

.favorite.active {
    stroke: #bf760e;
}


/*master*/
.master-area {
    padding-top: 200px;
    padding-bottom: 150px;
}

.master-int {
    width: clamp(470px,70vw,720px);
    margin: 410px auto 0;
    padding: 100px 30px 30px 30px;
    background-color: aliceblue;
    border-radius: 50px;
    position: relative;
    transform: translateX(60px);
}

.master-int img {
    width: 500px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-120px,-280px);
}

.master-int-text {
    width: 70%;
    margin-left: auto;
    margin-top: 30px;
}

.master-name-en {
    font-size: 1.8rem;
}

.master-name-ja {
    font-size: 1.2rem;
    padding-left: clamp(30px,8vw,100px);
}

.master-int-text-bottom {
    margin-top: 30px;
}

.master-int-text-bottom p {
    margin-top: 1.2rem;
}

/*gift box*/
.gift-area {
    width: 100%;
    position: relative;
    padding: 100px 0 200px 0;
}

.gift-content {
    width: 100%;
    height: 100%;
    margin-top: 50px;
}

.gift-clip {
    width: 500px;
    border-radius: 999px;
    overflow: hidden;
    transform: translateY(-200px);
    z-index: 0;
}

.gift-text {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 3.0rem;
    background-color: #f7e6b8;
    padding: 20px 30px;
    border-radius: 50px;
    transform: translateX(100px);
    z-index: 10;
}

/*look*/

.look {
    width: 100%;
    height: 100vh;
    overflow: hidden;

    background-image: url(img/クッキー見開き.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
}

/*access*/
.access-area {
    height: 130vh;
    padding-top: 150px;
    text-align: center;
    border-bottom: 1px solid #000;
    position: relative;
    z-index: 10;
    background-color: #f2f3d9;
}

.low-title {
    margin-bottom: 15px;
    font-size: 2rem;
}

.map {
    margin: 100px 0 30px;
    width: 100%;
    height: 500px;
    filter: grayscale(100%);
}

.access-bottom {
    margin-bottom: 40px;
}

.shop-name{
    font-size: 2rem;
    padding: 20px;
}

.access-btn {
    border-radius: 999px;
    background-color: #f2f3d9;
    border: 1px solid #000;
    padding: 10px 40px;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: .4s;
}

/*information*/

.info-area {
    height: 80vh;
    padding-top: 150px;
    border-bottom: 1px solid #000;
}

.info-top {
    text-align: center;
}

.info-contents {
    width: max-content;
    margin: 100px auto 0;
    grid-template-columns: 120px 1fr;
    justify-content: end;
    gap: 30px;
    font-size: 1.1rem;
    position: relative;
}

.more {
    position: absolute;
    right: -100px;
    bottom: -200px;
}

.allow {
    border-bottom: 1px solid #000;
    transition: .3s;
    cursor: pointer;
}

.allow p {
    padding-inline: 5px;
    transition: .3s;
}

.allow span {
    width: 20px;
    border-bottom: 1px solid #000;
    transform: 
    translate(2px,6px)
    rotate(45deg);
    transition: .3s;
}

.allow:hover{
    border-color: #bf760e;
    transform: translateX(2px);
}

.allow:hover span {
    border-color: #bf760e;
    transform: 
    translate(4px,6px)
    rotate(45deg);
}

.allow:hover p {
    color: #bf760e;
    transform: translateX(-4px);
}

/*footer*/

.footer-wrap {
    padding: 30px;
    justify-content: space-between;
}

.footer-in {
    gap: 20px;
}

/*contact*/

.full-title {
    background-color: #f7e6b8;
    text-align: center;
    margin-block: 40px;
    overflow: hidden;
}

.contact-wrap {
    padding: 80px 7% 100px 7%;
}

.contact-form {
    width: 700px;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    align-items: start;
    margin: 0 auto;
}

.contact-form label {
    font-size: 1.2rem;
}

.contact-form input{
    width: 100%;
    padding: 10px;
    border: 1px solid #9b9a9a;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: 0.4s;
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #9b9a9a;
    border-radius: 10px;
    transition: 0.4s;
}

.contact-form input:hover, 
.contact-form textarea:hover {
    border-color: #bf760e;
} 

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #bf760e;
    box-shadow: 0 0 20px 3px #f7e6b8;
}

.contact-btn {
    display: block;
    margin: 0 auto;
    margin-top: 100px;
    font-size: 1.2rem;
    font-weight: 500;
}


/*detail*/

.detail-wrap {
    margin: 0 auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}

.detail-img {
    width:  800px;
    height: auto;
}

.detail-right {
    margin-bottom: 50px;
}

.detail-txt {
    width: 450px;
}

.detail-price {
    margin-top: 40px;
}

.detail-allow {
    width: 800px;
    margin: 0 auto 80px;
    justify-content: space-between;
    font-size: 1.0rem;
    font-family: 'Bungee',sans-serif;
}

.b-allow p {
    padding-left: 5px;
}

.b-allow span{
    transform: 
        rotate(-45deg)
        translate(-6px,3px);
}

.b-allow:hover span {
    border-color: #bf760e;
    transform: 
    translate(-2px,5px)
    rotate(-45deg);
}

.b-allow:hover {
    transform: translateX(-4px);
}

.b-allow:hover p {
    transform: translateX(6px);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 700px;
    height: 300px;
    background-color: aliceblue;
    border-radius: 25px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    opacity: 0;
    backdrop-filter: blur(10px);
    z-index: 100;
    pointer-events: none;
    transition: 0.3s;
}

.cancel {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
}

.cancel-icon {
    stroke: #686868;
    cursor: pointer;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.modal-content {
    height: 100%;
    flex-direction: column;
}

.modal-txt {
    width: fit-content;
    margin: 0 auto 50px;
    font-size: 1.3rem;
}

.modal-bottom {
    width: 70%;
    margin: 0 auto;
    justify-content: space-between;
}

.modal-btn {
    background-color: aliceblue;
}

/*favorite*/
.favorite-area {
    margin-bottom: 100px;
}

.favorite-wrap {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding-right: 50px;
    justify-content: space-between;
}

.favorite-img {
    flex: 1;
    display: block;
    position: relative;
    z-index: 0;
}

.favorite-img img{
    position: relative;
    z-index: 1;
}

.favorite-img::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-image: url(img/hover-effect.png);
    background-size: cover;
    z-index: -1;
    opacity: 0;
    transition: 0.8s;
}

.favorite-img:hover::before {
    opacity: 0.8;
}

.favorite-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.favorite-side {
    gap: 40px;
}

.favorite-content {
    justify-content: space-between;
}

.favorite-price {
    font-size: 1.3rem;
}

.favorite-btn {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 auto;
}

.favorite-noitem {
    width: fit-content;
    margin: 50px auto 0;
    font-size: 1.3rem;
}

/*cart*/
.cart-area{
    margin-bottom: 100px;
}

.cart-wrap {
    width: 100%;
    max-width: 620px;
    justify-content: space-between;
    margin: 0 auto;
    gap: 10px;
}

.cart-img {
    flex: 1;
    width: 480px;
    position: relative;
}

.cart-img img {
    width: 240px;
    margin-left: auto;
    position: relative;
    z-index: 0;
}

.cart-img::after {
    display: block;
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: 0;
    right: 0;
    z-index: -10;
    background-image: url(img/hover-effect.png);
    background-size: cover;
    opacity: 0;
    transition: 0.8s;
}

.cart-img:hover::after{
    opacity: 0.8;
}

.cart-right {
    flex: 1;
}

.cart-name {
    font-size: 1.3rem;
}

.cart-bottom {
    margin-top: 30px;
    justify-content: space-between;
}

.cart-price {
    font-size: 1.2rem;
}

.cart-delete {
    margin-left: 300px;
    width: 32px;
    fill: #6b6b6b;
    cursor: pointer;
}

.cart-btn-wrap {
    width: 150px;
    justify-content: space-between;
    margin-left: 20px;
}

.cart-btn-wrap p {
    font-size: 1.2rem;
}

.cart-btn {
    width: 50px;
    background-color: #f2f3d9;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
}

.cart-btn:hover {
    border-color: #bf760e;
    color: #bf760e;
}

.cart-total {
    width: fit-content;
    margin: 50px auto 0;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
}

.cart-buy-btn {
    display: block;
    margin: 50px auto 0;
}

.cart-noitem {
    width: fit-content;
    margin: 50px auto 0;
    font-size: 1.3rem;
}

/*onlilneshop*/

.shop-bar {
    width: 70%;
    margin: 0 auto;
    justify-content: start;
    align-items: flex-start;
    border: 1px solid #000;
    border-radius: 15px;
}

.shop-category {
    font-size: 1.1rem;
    justify-content: flex-start;
    padding: 10px;
}

.shop-sort {
    font-size: 1.1rem;
    padding: 10px;
}

.pulldown {
    width: 25px;
    height: 25px;
    stroke: #000;
    cursor: pointer;
    margin-left: 8px;
    transition: 0.8s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.pulldown.active {
    transform: rotateX(180deg);
}

.shop-hidden-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.8s;
}

.shop-hidden-list.active {
    max-height: 210px;
    padding: 0 30px 15px 60px;
    opacity: 1;
}

.shop-hidden-list li {
    margin-bottom: 8px;
    padding: 3px;
    cursor: pointer;
    transition: .4s;
}

.shop-category-list li.active {
    background-color: #f7e6b8;
    color: #bf760e;
}

.shop-hidden-list li:hover {
    color: #bf760e;
}

.shop-content-wrap {
    grid-template-columns: repeat(auto-fit,minmax(330px,1fr));
    column-gap: 3.6%;
    row-gap: 60px;
    margin-block: 100px;
}

.shop-wrap {
    width: fit-content;
    height: auto;
    position: relative;
    margin: 0 auto;
}

.shop-title {
    width: 200px;
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 2rem;
    z-index: 25;
}

.shop-favorite {
    position: absolute;
    top: 0;
    right: 50px;
    z-index: 25;
}

.shop-img-wrap {
    position: relative;
}

.shop-img {
    display: block;
    width: 100%;
    margin: 0 auto;
    height: auto;
    position: relative;
    z-index: 10;
}

.shop-img-wrap::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background-image: url(img/hover-effect.png);
    background-size: cover;
    z-index: 0;
    opacity: 0;
    transition: 0.8s;
}

.shop-img-wrap:hover::after {
    opacity: 0.8;
}

.shop-price {
    position: absolute;
    left: 50%;
    bottom: 75px;
    transform: translateX(-50%);
    width: fit-content;
    font-size: 1.5rem;
    z-index: 20;
}

.shop-btn {
    display: block;
    margin: 0 auto 20px;
}

/*レスポンシブ*/
/*SP*/
@media (max-width:767px) {

/*hero*/

.hero-logo {
    width: 239px;
    top: 50%;
    left: 50%;
}

.hero-cookie {
    width: 350px;
    top: 28%;
    left: 7%;
}

.hero-cookie1{
    transform: translateY(-60px);
}

.hero-cookie2{
    transform: translate(80px,-50px);
}

.hero-cookie3{
    transform: translateX(70px);
}

.hero-cookie4{
    transform: translate(50px,80px);
}

.hero-cookie5{
    transform: translate(-50px,60px);
}

.hero-cookie6{
    transform: translateX(-70px);
}

.hero-cookie7{
    transform: translate(-90px,-70px);
}

.hero-cookie.hero-cookie1.active{
    transform: translateY(-290px);
}

.hero-cookie.hero-cookie2.active{
    transform: translate(100px,-240px);
}

.hero-cookie.hero-cookie3.active{
    transform: translate(160px,240px);
}

.hero-cookie.hero-cookie4.active{
    transform: translate(60px,320px);
}

.hero-cookie.hero-cookie5.active{
    transform: translate(-60px,320px);
}

.hero-cookie.hero-cookie6.active{
    transform: translate(-190px,240px);
}

.hero-cookie.hero-cookie7.active{
    transform: translate(-100px,-240px);
}

.hero-text1 p,
.hero-text2 span {
    font-size: 2.0rem;
}

.hero-text1{
    top: 10%;
    left: 25%;
}

.hero-text2 {
    top: 80%;
    left: 25%;
}


/*header*/
    .header {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .header-logo {
        display: none;
    }

    .header-right {
        gap: 25px;
        margin: 0 auto;
    }

/*menu*/

.menu {
    right: 15%;
}

/*部品*/
.title {
    padding-left: 30px;
}

/*about*/

.about-title {
    width: fit-content;
    margin-inline: auto;
}

.about-text {
    padding: 0;
}

/*products*/

.horizontal {
    position: static;
    height: auto;
}

.products {
    width: 100%;
    height: auto;
    flex-direction: column;
    overflow: visible;
    transform: none !important;
    margin-top: 80px;
}

.card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-img {
    width: 100%;
}

.card-right {
    width: 100%;
}

.card-txt {
    width: 100%;
    margin-top: 40px;
}

.card-bottom {
    margin-top: 30px;
}

/*master*/
.master-area .title {
    padding: 5px;
}

.master-int {
    transform: translateX(0);
    width: 100%;
}

.master-int img {
    position: relative;
    width: 100%;
    transform: translate(0,-260px);
}

/*gift box*/
.gift-content {
    display: block;
    margin-top: 100px;
}

.gift-clip {
    width: 100%;
    border-radius: 0;
    transform: translateY(0);
    margin-top: 50px;
}

.gift-text {
    max-width: 767px;
    width: 100%;
    border-radius: 0;
    transform: translateX(0);
    padding-left: 20px;
    padding-right: 0;
}

.footer-wrap {
    padding: 10px;
}

.footer-wrap p {
    width: min-content;
}

/*access*/

.access-area {
    height: 150vh;
}

/*information*/

.more {
    right: 0;
}

/*contact*/
.contact-form {
    display: block;
    width: 100%;
}


/*detail*/
.detail-right {
    width: 100%;
    margin: 0 auto 50px;
    padding: 20px;
}

.detail-txt {
    width: 100%;
}

.detail-allow {
    width: 80%;
}

/*favorite*/
.favorite-wrap {
    padding: 0;
    margin-bottom: 50px;
    display: block;
}

.favorite-right {
    flex: none;
    width: 350px;
    margin: 0 auto;
    gap: 10px;
}

.favorite-content {
    display: block;
}

.favorite-side {
    margin-top: 10px;
    justify-content: flex-start;
}

.favorite-btn {
    margin: 0 auto 0 0;
}

/*cart*/
.cart-wrap{
    display: block;
}

.cart-img img {
    margin: 0 auto;
}

.cart-img::after {
    right: 50%;
    transform: translateX(50%);
}

.cart-right{
    flex: 0;
    width: fit-content;
    margin: 0 auto;
}

.cart-bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.cart-price {
    text-align: center;
}

.cart-btn-wrap{
    margin: 10px auto 0;
}

.modal {
    width: 350px;
}

.modal-bottom {
    flex-direction: column;
    gap: 20px;
}

/*onlineshop*/
.shop-bar {
    display: block;
}

.shop-sort {
    justify-content: flex-start;
}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {
/*hero*/
.hero-logo {
    width: 239px;
    top: 44%;
}

.hero-cookie{
    width: 400px;
    top: 23%;
    left: 31%;
}

.hero-text1 p,
.hero-text2 span {
    font-size: 2.0rem;
}

.hero-text1 {
    top: 69%;
    left: 20%;
}

.hero-text2 {
    top: 74%;
    right: 20%;
}

.hero-cookie1{
    transform: translateY(-150px);
}

.hero-cookie2{
    transform: translate(80px,-80px);
}

.hero-cookie3{
    transform: translateX(90px);
}

.hero-cookie4{
    transform: translate(80px,80px);
}

.hero-cookie5{
    transform: translate(-80px,80px);
}

.hero-cookie6{
    transform: translateX(-90px);
}

.hero-cookie7{
    transform: translate(-100px,-100px);
}

.hero-cookie.hero-cookie1.active {
    transform: translateY(-280px);
}

.hero-cookie.hero-cookie2.active {
    transform: translate(330px,-180px);
}

.hero-cookie.hero-cookie3.active {
    transform: translate(450px,80px);
}

.hero-cookie.hero-cookie4.active {
    transform: translate(200px,300px);
}

.hero-cookie.hero-cookie5.active {
    transform: translate(-200px,300px);
}

.hero-cookie.hero-cookie6.active {
    transform: translate(-450px,80px);
}

.hero-cookie.hero-cookie7.active {
    transform: translate(-330px,-180px);
}

/*header*/
.header {
    padding-inline: 20px;
}

.header-right {
    gap: 30px;
}

/*menu*/
.menu {
    right: 10%;
}

/*gift box*/
.gift-clip {
    transform: translateY(0);
}

.gift-text {
    transform: translateX(0);
}

/*favorites*/
.favorite-wrap {
    display: block;
}

.favorite-img {
    margin: 0 auto;
    width: 400px;
}

.favorite-right {
    flex: none;
    width: 600px;
    margin: 0 auto;
}

.favorite-btn {
    margin: 0 0 0 auto;
}


}

@media (max-width: 820px) and (min-width: 768px){
    .hero-cookie.hero-cookie3.active {
        transform: translate(320px,120px);
    }

    .hero-cookie.hero-cookie4.active {
        transform: translate(100px,370px);
    }

    .hero-cookie.hero-cookie5.active {
        transform: translate(-190px,365px) scale(1.05);
    }
}