@charset "utf-8";
/*------------------------------------------------------------------------------
 ROOT（CSS変数を設定）
 -------------------------------------------------------------------------------*/
 :root {
	--color1: #cdab60;
    --color2: #0f284c;
    --txt_color: #0f284c;
    --txt_color1: #ffd338;
    --txt_color2: #dd5337;
    --txt_red: #d20000;
    --bg: #dd5337;
    --bg2: #0f284c;
    --bg3: #f7f1e8;

    --txt_green: #5ac8d7;

    --sans_serif: "Noto Sans JP", sans-serif;
    --fs-xs: 1.2rem;
    --fs-sm: 1.4rem;
    --fs-md: 1.6rem;
    --fs-lg: 1.8rem;
    --fs-xl: 2rem;
    --fs-xxl: 2.4rem;
  }

/*------------------------------------------------------------------------------
 共通
 -------------------------------------------------------------------------------*/
 html{
    font-size: 62.5%;/* 1rem = 10px */
 }
 body{
    font-size: var(--fs-lg);
    margin: 0;
    font-family: var(--sans_serif);
    color: var(--txt_color);
    font-weight: 500;
    letter-spacing: 0.08rem;
    font-size: clamp(10px,1.38vw,18px);
    background: var(--bg) url(../img/bg.webp) repeat center center/75px;
    img{
        width: 100%;
    }
 }
 @media all and (max-width:768px) {
   body{
    font-size: clamp(10px, 3.38vw, 22px);
   }
 }
 
 /* 全要素に box-sizing を適用 */
 *,
 *::before,
 *::after {
 box-sizing: border-box;
 }

 ul{
    list-style: none;
 }

.txt-color1{
    color: var(--txt_color1);
}
.txt-color2{
    color: var(--txt_color2);
}
.txt-red{
    color: var(--txt_red);
}
.txt-bold{
    font-weight: bold;
}
.br_sp{
    display: none;
}

@media all and (max-width:768px) {
  .br_sp{
    display: block;
  }
}
/*------------------------------------------------------------------------------
 header
 -------------------------------------------------------------------------------*/
 header{
    width: 100%;
    height: 75px;
    background: var(--bg2) url(../img/h-border.webp) repeat center center/56px;
    display: flex;
    align-items: center;
    position: relative;
    &::after{
        content: "";
        border: 1px solid var(--color1);
        width: 100%;
        height: 1px;
        position: absolute;
        bottom: 10px;
        left: 0;
    }
 }
 h1{
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    background: url(../img/logo-to.webp) no-repeat center center/contain;
    width: 157.5px;
    height: 32px;
    margin-left: 12vw;
    margin-bottom: 10px;
 }

 @media all and (max-width:768px) {
   header{
    height: 10vw;
    &::after{
        bottom: 0.8vw;
    }
   }
   h1{
    width: min(20.8vw,156px);
    height: min(4.39vw,33px);
    margin-bottom: 1vw;
    margin-left: 4vw;
   }
 }

/*------------------------------------------------------------------------------
 main
 -------------------------------------------------------------------------------*/
 main{
    position: relative;
    &::before{
        content: "";
        background: url(../img/deco-mv01.webp) no-repeat center center/contain;
        width: min(27.42vw,356.5px);
        height: min(13.96vw,181.5px);
        position: absolute;
        top: 67.5vw;
        right: 8vw;
        animation: r-float 5s ease-in-out infinite;
    }
    &::after{
        content: "";
        background: url(../img/deco-mv02.webp) no-repeat center center/contain;
        width: min(16.30vw,212px);
        height: min(7.96vw,103.5px);
        position: absolute;
        top: 79.5vw;
        left: 13.5vw;
        animation: l-float 5s ease-in-out infinite;
        /* animation-delay: 0.4s; */
    }
 }
 .container{
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
 }
 h2{
    width: min(33.07vw,430px);
    margin: 0 auto;
    margin-bottom: min(3.07vw,40px);
    padding-top: min(4.61vw,60px);
 }
.top-txt{
    font-size: clamp(16px,1.76vw,23px);
    color: #fff;
    letter-spacing: 0.08rem;
    margin-bottom: min(4.46vw,58px);
 }
.card-wrapper{
    display: flex;
    gap: min(4.23vw,55px);
    justify-content: center;
    margin-bottom: min(6.61vw,86px);
    a{
        width: min(19.57vw,254.5px);
        transition:box-shadow 0.3s, transform 0.3s;
    }
    a:hover{
        box-shadow:0 6px 14px rgba(0, 0, 0, 0.24);
        transform:translate(0, -2px);
    }
 }
 @media all and (max-width:768px) {
     main{
        overflow: hidden;
        &::before{
            background: url(../img/deco-mv01-sp.webp) no-repeat center center/contain;
            width: 30.66vw;
            height: 24.46vw;
            top: 107.5vw;
            right: 0;
        }
        &::after{
            background: url(../img/deco-mv02-sp.webp) no-repeat center center/contain;
            width: 17.8vw;
            height: 7.53vw;
            top: 133vw;
            left: 3vw;
        }
    }
    .container{
            max-width: 100%;
        }
    h2{
        width: 74vw;
        margin: 0 auto;
        margin-bottom: 4vw;
        padding-top: 7vw;
    }
    .top-txt {
        font-size: clamp(11px, 3.62vw, 26px);
        color: #fff;
        line-height: 1.6;
        margin: 0 auto;
        margin-bottom: 6vw;
        width: 86.13vw;
    }
    .card-wrapper{
        display: flex;
        gap: 3vw;
        margin-bottom: 9vw;
        a{
            width: 34vw;
        }
    }
 }
/*------------------------------------------------------------------------------
 section
 -------------------------------------------------------------------------------*/
 section{
    width: min(70vw,910px);
    overflow: visible;
    position: relative;
    background-color: var(--bg3);
    border: 3px solid var(--color2);
    outline: 3px solid var(--color1);
    outline-offset: min(-0.23vw,-16px);
    margin: 0 auto;
    padding-bottom: min(6vw,78px);
    margin-bottom: min(6.15vw,80px);
    &::after{
        content: "";
        background: url(../img/h-kikaku01.webp) repeat-x center center/contain;
        width: 100%;
        height: min(5.76vw,75px);
        position: absolute;
        top: 0;
        left: 0;
    }
 }
 .kikaku-wrapper{
    width: min(63.84vw,830px);
    margin: 0 auto;
    text-align: left;
    line-height: 1.9;
 }
 h3{
    position: relative;
    width: fit-content;
    padding-left: min(2.76vw,36px);
    font-size: clamp(14px,1.76vw,23px);
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
        &::after{
            content: "";
            background: url(../img/mark01.webp) no-repeat center center/contain;
            width: min(2.38vw,31px);
            height: min(1.80vw,23.5px);
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
        span{
            font-size: clamp(10px,1.23vw,16px);
            font-weight: 600;
            border: 2px solid var(--txt_color);
            border-radius: 20px;
            padding: 0 8px;
            margin-left: 1rem;
            font-family: var(--sans_serif);
            font-weight: 500;
        }
    }
 .scroll-box{
    background-color: #fff;
    padding: 10px 16px;
    overflow-y: scroll;
    height: auto;
    aspect-ratio: 83/41;
    p{
        margin-bottom: min(3.07vw,40px);
    }
    li{
        position: relative;
        padding-left: min(1.53vw,20px);
        &::before{
            content: "";
            position: absolute;
            top: min(1.23vw,16px);
            left: min(0.61vw,8px);
            width: min(0.30vw,4px);
            height: min(0.30vw,4px);
            background-color: var(--txt_color);
            border-radius: 50%;
        }
    }
 }
 /* スクロールバー */
 .scroll-b::-webkit-scrollbar {
    width: min(2vw,18px);
 }

 .scroll-b::-webkit-scrollbar-thumb {
   background: #eae8e5;
   border-radius: 8px;
   border-right: 4px solid transparent; /* 透明なボーダーをつける */
   border-left: 4px solid transparent; /* 透明なボーダーをつける */
   background-clip: padding-box; /* 背景を切り取る */
 }

 .scroll-b::-webkit-scrollbar-track {
   /* 上下に余白を付ける */
   margin-top: 4px;
   margin-bottom: 4px;
 }

 #kikaku01{
    position: relative;
    h2{
        width: min(38.92vw,506px);
        margin-top: min(5.84vw,76px);
        margin-bottom: min(3.07vw,40px);
        position: relative;
        &::before{
            content: "";
            background: url(../img/deco-kikaku01_1.webp) no-repeat center center/contain;
            width: min(23.65vw,307.5px);
            height: min(16.69vw,217px);
            position: absolute;
            top: min(2vw,20px);
            left: min(36.92vw, 480px);
            animation: r-float 5s ease-in-out infinite;
        }
        &::after{
            content: "";
            background: url(../img/deco-kikaku01_2.webp) no-repeat center center/contain;
            width: min(17.69vw,230px);
            height: min(12.57vw,163.5px);
            position: absolute;
            top: min(15.38vw,200px);
            right: min(38.46vw,500px);
            animation: l-float 5s ease-in-out infinite;
        }
    }
    .code-img{
        width: min(44.30vw,576px);
        margin: 0 auto;
    }
    .copy-txt{
        width: fit-content;
        margin: 0 auto;
        margin-bottom: min(3.07vw,40px);
        position: relative;
        padding-left: min(1.53vw,20px);
        line-height: 1.2;
        &::after{
            content: "";
            background: url(../img/icon-copy.webp) no-repeat center center/contain;
            width: min(1.19vw,15.5px);
            height: min(1.5vw,19.5px);
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
    }
    /* トースト本体 */
    #toast {
        position: fixed;
        left: 50%;
        bottom: 32px;
        transform: translateX(-50%);
        background: #0f284ce9;
        color: #fff;
        padding: 10px 16px;
        border-radius: 999px;
        font-size: 12px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* 表示中 */
    #toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(-6px);
    }
    .code-txt{
        font-size: clamp(12px,1.61vw,20px);
        line-height: 1.6;
        text-align: center;
        margin-bottom: min(2.15vw,28px);
        font-weight: 600;
    }
    h3.h-coupon{
        padding-left: min(1.80vw,23.5px);
        margin-bottom: min(0.76vw,10px);
        &::after{
            content: "";
            background: url(../img/mark02.webp) no-repeat center center/contain;
            width: min(1.19vw,15.5px);
            height: min(0.96vw,12.5px);
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }
    }
    .code-notes-box{
        margin-bottom: min(2.30vw,30px);
    }
    .bn_store{
        display: block;
        width: min(52.76vw,686px);
        margin: 0 auto;
        margin-top: min(2.30vw,30px);
        transition-property: opacity;
        transition-duration: 0.5s;
        &:hover{
            opacity: 0.8; 
        }
    }
 }
 /* クーポンアニメーション */
 .shine-wrap{
  position: relative;
  overflow: hidden;
}

.shine-wrap::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  display: inline-block;
  width: 40px;
  height: 100%;
  background-color: #ffffff88;
  animation: shine 4s ease-in-out infinite;
}

 #kikaku02{
    &::after{
        background: url(../img/h-kikaku02.webp) repeat-x center center/contain;
    }
    h2{
        width: min(57.23vw,744px);
        margin-top: min(5.84vw,76px);
        margin-bottom: min(1.53vw,20px);
        position: relative;
        &::before{
            content: "";
            background: url(../img/deco-kikaku02_1.webp) no-repeat center center/contain;
            width: min(27.65vw,359.5px);
            height: min(23vw,299px);
            position: absolute;
            top: min(-0.76vw,-20px);
            left: min(46.92vw, 610px);
            z-index: 1;
            animation: r-float 5s ease-in-out infinite;
        }
        &::after{
            content: "";
            background: url(../img/deco-kikaku02_2.webp) no-repeat center center/contain;
            width: min(23.26vw,302.5px);
            height: min(12.5vw,162.5px);
            position: absolute;
            top: min(16.92vw,220px);
            right: min(43.07vw,560px);
            animation: l-float 5s ease-in-out infinite;
        }
    }
    .entry-list li{
        position: relative;
        padding-left: min(3.07vw,40px);
        margin-bottom: min(0.76vw,10px);
        &::before{
                content: "";
                background: url(../img/list-1.webp) no-repeat center center/contain;
                width: min(2.15vw,28px);
                height: min(2.15vw,28px);
                position: absolute;
                top: min(0.30vw,4px);
                left: 0;
            }
            &:last-of-type::before{
                background: url(../img/list-2.webp) no-repeat center center/contain;
            }
        }   
        a{
            text-underline-offset: min(0.30vw,4px);
        }
        .entry-txt{
            margin-bottom: min(2vw,26px);
        }
        .h-entry_rule{
            margin-bottom: min(0.76vw,10px);
        }
        .entry_rule-box{
            margin-bottom: min(3.07vw, 40px);
            p{
                margin-bottom: 0;
            }
        }
        h3.w-contact{
            margin-top: min(2.30vw, 30px);
        }
        .w-contact-txt{
            margin-bottom: min(3.84vw,50px);
        }
    }
    .content-box{
        background: var(--color1) url(../img/bg-box.webp) repeat center center/57px 58px;
        outline: 2px solid var(--bg3);
        outline-offset: min(-0.1vw,-10px);
        padding-top: min(6.15vw,80px);
        padding-bottom: min(6.15vw,80px);
        position: relative;
        margin-bottom: min(3.07vw,40px);
        &::before{
            content: "";
            background: url(../img/deco-box.webp) no-repeat center center/contain;
            width: min(82.23vw,1069px);
            height: min(68.69vw,893px);
            position: absolute;
            top: min(1.53vw,20px);
            left: 50%;
            transform: translateX(-50%);
        }
        .h-item{
            width: min(10vw,130px);
            margin: 0 auto;
            margin-bottom: min(0.84vw,11px);
        }
        h4{
            position: relative;
            margin: 0 auto;
            margin-bottom: min(3.23vw,42px);
            z-index: 2;
        }
        &:nth-of-type(2) h4{
            width: min(35.76vw,465px);
        }
        &:nth-of-type(3) h4{
            width: min(55vw,715px);
        }
        &:nth-of-type(4) h4{
            width: min(49.15vw,639px);
        }
        &:nth-of-type(5) h4{
            width: min(56.53vw,735px);
        }
        &:nth-of-type(6) h4{
            width: min(50.42vw,655.5px);
        }
        &:nth-of-type(7) h4{
            width: min(57.23vw,744px);
        }
        &:nth-of-type(8) h4{
            width: min(44.38vw,577px);
        }
        &:nth-of-type(9) h4{
            width: min(52.42vw,681.5px);
        }
        .bn_repost{
            position: relative;
            width: min(44.23vw,575px);
            margin: 0 auto;
            margin-top: min(3.07vw,40px);
            z-index: 2;
            height: min(12.69vw, 165px);
        }
        &:last-of-type{
            margin-bottom: 0;
        }
        .is-disasled{
            opacity: 0.6;
            pointer-events: none;
            filter: grayscale(100%);
        }
    }
    .item-wrapper{
        display: flex;
        margin: 0 auto;
        gap: min(2.61vw,34px);
        justify-content: center;
        p{
            text-align: center;
            line-height: 1.6;
            .txt-s{
                font-size: clamp(8px,1.15vw,15px);
            }
        }
        .item-box{
             margin-bottom: min(0.38vw,5px);
        }
        .item-img{
            width: min(15.76vw,205px);
            position: relative;
            margin: 0 auto;
            &::after{
                content: "";
                background: url(../img/badge-5.webp) no-repeat center center/contain;
                width: min(8.61vw,112px);
                height: min(8.61vw,112px);
                position: absolute;
                bottom: 0;
                left: min(9.23vw,120px);
            }
        }
        .item-box-1{
            margin-bottom: min(0.23vw,3px);
        }
        .honzuki-img1{
            width: min(22.46vw,292px);
            position: relative;
             &::after{
                content: "";
                background: url(../img/badge-1.webp) no-repeat center center/contain;
                width: min(8.61vw,112px);
                height: min(8.61vw,112px);
                position: absolute;
                bottom: 0;
                left: min(15.38vw,200px);
            }
        }
    }
    @media all and (max-width:768px) {
        section{
            width: 93.33vw;
            border: 0.4vw solid var(--color2);
            outline: 0.4vw solid var(--color1);
            outline-offset: -2.2vw;
            padding-bottom: 6vw;
            margin-bottom: 8vw;
            &::after{
                background: url(../img/h-kikaku01-sp.webp) repeat-x center center/contain;
                height: 12.73vw;
            }
        }
        .kikaku-wrapper{
            width: 84vw;
            line-height: 1.6;
        }
        h3{
            padding-left: 5vw;
            font-size: clamp(16px,5.07vw,38px);
            width: 76.8vw;
            margin: 0 auto;
            &::after{
                width: 4vw;
                height: 3.2vw;
            }
            span{
                font-size: clamp(9px, 2.89vw, 22px);
                border: 0.26vw solid var(--txt_color);
                padding: 0 1.06vw;
                margin-left: 0;
            }
        }
        .scroll-box{
            width: 76.8vw;
            margin: 0 auto;
            padding: 2.66vw;
            aspect-ratio: 14/10;
            /* text-align: justify; */
            p{
                margin-bottom: 6.66vw;
            }
            li{
                padding-left: 2.2vw;
                &::before{
                    top: 2.4vw;
                    left: 1vw;
                    width: 0.8vw;
                    height: 0.8vw;
                }
            }
        }
        /* スクロールバー */
        .scroll-b::-webkit-scrollbar {
            width: min(4vw,18px);
        }
        #kikaku01{
            h2{
                width: 76.06vw;
                margin-top: 12vw;
                margin-bottom: 5vw;
                &::before{
                    background: url(../img/deco-kikaku01_1-sp.webp) no-repeat center center/contain;
                    width: 23.59vw;
                    height: 21.13vw;
                    top: -4vw;
                    left: 65vw;
                    z-index: 1;
                }
                &::after{
                    background: url(../img/deco-kikaku01_2-sp.webp?v=251222) no-repeat center center/contain;
                    width:23vw;
                    height: 28.79vw;
                    top: 22.5vw;
                    right: 66vw;
                }
            }
            .code-img{
                width: 76.8vw;
            }
            .copy-txt{
                margin-bottom: 5.8vw;
                padding-left: 3.6vw;
                line-height: 1.4;
                font-size: clamp(9px, 2.89vw, 22px);
                &::after{
                    background: url(../img/icon-copy.webp) no-repeat center center/contain;
                    width: 2.93vw;
                    height: 3.73vw;
                }
            }
                .code-txt{
                font-size: clamp(10px, 3.38vw, 22px);
                margin-bottom: 3vw;
                width: 72.39vw;
                margin: 0 auto;
                margin-bottom: 4vw;
            }
            h3.h-coupon{
                font-size: clamp(14px,4.58vw,32px);
                padding-left: 3vw;
                margin-bottom: 3vw;
                margin-top: 4vw;
                line-height: 1.2;
                &::after{
                    width: 2vw;
                    height: 1.6vw;
                    top: 2vw;
                    transform: translateY(0);
                }
            }
            .code-notes-box{
                margin-bottom: min(2.30vw,30px);
                width: 76.8vw;
                margin: 0 auto;
            }
            .bn_store{
                width: 76.8vw;
                margin-top: 6vw;
            }
        }
        #kikaku02{
            margin-bottom: 16vw;
            &::after{
                background: url(../img/h-kikaku02-sp.webp) repeat-x center center/contain;
            }
            h2{
                width: 64.60vw;
                margin-top: 13vw;
                margin-bottom: 5vw;
                &::before{
                    background: url(../img/deco-kikaku02_1-sp.webp?v=251222) no-repeat center center/contain;
                    width: 23vw;
                    height: 28.79vw;
                    top: -3vw;
                    left: 60vw;
                }
                &::after{
                    background: url(../img/deco-kikaku02_2-sp.webp?v=251222) no-repeat center center/contain;
                    width: 27.33vw;
                    height: 20.73vw;
                    top: 46.5vw;
                    right: 55vw;
                }
            }
            .entry-list{
                width: 76.8vw;
                margin: 0 auto;
            }
            .entry-list li{
                padding-left: 6vw;
                font-size: clamp(11px, 3.62vw, 26px);
                line-height: 1.4;
                margin-bottom: min(0.76vw,10px);
                font-weight: 600;
                &::before{
                    width: 4.66vw;
                    height: 4.66vw;
                    top: 0.2vw;
                    left: 0;
                }
                &:first-of-type{
                    margin: 2vw 0;
                }
            }   
            a{
                text-underline-offset: 0.8vw;
            }
            .entry-txt{
                width: 76.8vw;
                margin: 0 auto;
                margin-bottom: 7vw;
            }
            .h-entry_rule{
                margin-bottom: 3vw;
                line-height: 1;
                &::after{
                    top: 1.4vw;
                    left: 0;
                    transform: translateY(0);
                }
            }
            .entry_rule-box{
                margin-bottom: 6.66vw;
            }
            h3.w-contact{
                width: 76.8vw;
                margin: 6vw auto 1vw;
            }
            .w-contact-txt{
                width: 76.8vw;
                margin: 0 auto;
                margin-bottom: 8vw;
                font-size: clamp(11px, 3.62vw, 26px);
                line-height: 1.4;
            }
        }
        /* ここまで作業 */
        .content-box{
            background: var(--color1) url(../img/bg-box.webp) repeat center center/7.6vw 7.73vw;
            outline: 0.4vw solid var(--bg3);
            outline-offset: -1.2vw;
            padding-top: 11vw;
            padding-bottom: 8vw;
            margin-bottom: 8vw;
            &::before{
                content: "";
                background: url(../img/deco-box02-sp.webp) no-repeat center center/contain;
                width: 100vw;
                height: 141.4vw;
                position: absolute;
                top: -2vw;
                left: 50%;
                transform: translateX(-50%);
            }
            .h-item{
                width: 26.40vw;
                margin-bottom: 3vw;
            }
            h4{
                margin-bottom: 4.2vw;
            }
            &:nth-of-type(2){
                    &::before{
                    content: "";
                    background: url(../img/deco-box-sp.webp) no-repeat center center/contain;
                    width: 99.93vw;
                    height: 231.1vw;
                    position: absolute;
                    top: -5vw;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
            &:nth-of-type(2) h4{
                width: 65.2vw;
            }
            &:nth-of-type(3) h4{
                width: min(55.86vw,419px);
            }
            &:nth-of-type(4) h4{
                width: min(79.53vw,596.5px);
            }
            &:nth-of-type(5) h4{
                width: min(77.2vw,579px);
            }
            &:nth-of-type(6) h4{
                width: min(76.93vw,577px);
            }
            &:nth-of-type(7) h4{
                width: min(77.4vw,580.5px);
            }
            &:nth-of-type(8) h4{
                width: min(75.86vw,569px);
            }
            &:nth-of-type(9) h4{
                width: min(73.33vw,550px);
            }
            .bn_repost{
                width: 76.66vw;
                margin-top: 6vw;
                height: 22.13vw;
            }
        }
        .item-wrapper{
            flex-direction: column;
            gap: 13vw;
            p{
                line-height: 1.4;
                font-size: clamp(12px,4vw,30px);
                letter-spacing: 0.04rem;
                .txt-s{
                    font-size: clamp(11px,3.46vw,26px);
                }
            }
            .item-img{
                width: 45.6vw;
                &::after{
                    width: 24.8vw;
                    height: 24.8vw;
                    bottom: -1vw;
                    left: 33vw;
                }
            }
            .honzuki-img1{
                width: 61.06vw;
                margin: 0 auto;
                &::after{
                    width: 24.8vw;
                    height: 24.8vw;
                    bottom: -1vw;
                    left: 45vw;
                }
            }
        }
    }
/*------------------------------------------------------------------------------
 footer
 -------------------------------------------------------------------------------*/
 footer{
    width: 100%;
    height: 75px;
    background: var(--bg2) url(../img/h-border.webp) repeat center center / 56px;
    .footer-box{
        max-width: 910px;
        height: 75px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }
    .copy{
        width: 112.5px;
    }
    .f-logo-to{
        width: 108px;
    }
 }
 @media all and (max-width:768px) {
    footer{
        height: 8vw;
        .footer-box{
            height: 8vw;
            padding: 0 5vw;
        }
        .copy{
            width: 15.2vw;
        }
        .f-logo-to{
            width: 12.53vw;
        }
    }
 }

 /*------------------------------------------------------------------------------
 
 -------------------------------------------------------------------------------*/
  @keyframes r-float {
    0%, 100% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(4%);
    }
 }
 @keyframes l-float {
    0%, 100% {
        transform: translateX(0%);
    }
    50% {
        transform: translateX(-4%);
    }
 }
 @keyframes shine {
    0% {
        transform: scale(0) rotate(45deg); opacity: 0;
    }
    85% {
        transform: scale(0) rotate(45deg); opacity: 0.5;
    }
    86% {
        transform: scale(4) rotate(45deg); opacity: 1;
    }
    100% {
        transform: scale(30) rotate(45deg); opacity: 0;
    }
 }
 @media all and (max-width:768px) {
   @keyframes r-float {
        0%, 100% {
            transform: translateX(0%);
        }
        50% {
            transform: translateX(6%);
        }
    }
    @keyframes l-float {
        0%, 100% {
            transform: translateX(0%);
        }
        50% {
            transform: translateX(-6%);
        }
    }
 }