@charset "UTF-8";

/*----------------------------------------------------------------------------------------------------------------index----------*/
body {
    width: 100%;
    
    
}


.contentbox {
    overflow: hidden;
}



#mainarea .contentbox {

    overflow: hidden;
    position: relative;
}

.container-fluid {
    padding-right: 0px;
    padding-left: 0px;
}



.foot_bnr {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 10rem;
    margin-left: auto;
    margin-right: auto;
}

.fashion_caution{
    font-size:1.6rem;
    font-weight:600;
    text-align:center;
    width:100%;
    margin-top:1rem;
}




#effectimg {
    position: fixed;
    width: 100vw;
    height: 100%;
  }


#effectimg_sp{
    display:none;
    position: fixed;
    width: 100vw;
    height: 100%;
}

  
  
  

#ss_btn {
    position: fixed;
    top: 60px;
    right:6px;
    z-index: 100;
}

#ss_btn a {
    width:clamp(7rem, 2.8624rem + 11.03vw, 15rem);
    

    display: flex;
    flex-direction:column;
    justify-content:center;
    align-items: center;

    /* background color transition */
    -webkit-transition: .4s;
    -moz-transition: .4s;
    transition: .4s;

}








/* 文字が滑らかに表示される */
.smooth {
    clip-path: inset(0 100% 0 0);
    display: inline-block;
    font-weight: bold;
    transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
    line-height: 1;
    height: 100%;
    
  }
  .smooth.is-animated {
    clip-path: inset(0);
  }



  /* スクロールで出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger, .fadeInUpMinTrigger, .fadeInTrigger {
    opacity: 0;
}




/*========= レンズフレア ===============*/
#canvas{
    position:absolute;
    width:calc(100vw - 50px);
    height:100vh;
    mix-blend-mode: screen;
    top:0;
    left:0;
    z-index:10000;
}


/*========= 葉っぱが落ちる ===============*/

.leaf-wrap{
    position:relative;
    z-index: -1;
}



.wind-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
    -45deg,  /* ← 左上方向に流れる */
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px,
    transparent 6px
  );
    background-size: 200% 200%;
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: wind-move 1s linear infinite;
    z-index: 1;
  }
  
  @keyframes wind-move {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% -100%; }
  }
  
  .leaf {
    position: absolute;
    z-index: 2;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  
  .leaf li {
    position: absolute;
    list-style: none;
    background-color: #82CC48;
    border-radius: 0% 70% 70% 70%; /* 葉っぱ形 */
    transform-origin: center;
    box-shadow: inset -2px 0px 2px rgba(0, 0, 0, 0.1); /* 葉脈っぽい陰影 */
  }





/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -100%;
    width: 30%;
    height: 100vh;
    /*ナビの高さ*/
    background: linear-gradient(-40deg, #ABD9F5, #00A7E5);

    /*背景色（グラデーション）*/
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 30%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width: 768px) {

    #g-nav,
    #g-nav.panelactive #g-nav-list {
        width: 100%;
    }
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
    border-bottom: 1px dotted #d4f5fb;
}

#g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    transition: all .5s;

    font-size: calc(15px + 6 * ((100vw - 320px) / 1120));
}

#g-nav li a:hover {
    color: #ccc;
}




.head_catch{
    width:100%;
    max-width:clamp(20rem, 1.2768rem + 50.6vw, 62rem);
    bottom:-2rem;
    position:relative;
}


/* ふわっ（下から） */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}





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

.imgarea img {
    vertical-align: bottom;
    line-height: 1.0em;
}

.head-title-area{
    margin-top:clamp(7rem, 5.448rem + 4.14vw, 10rem);
    margin-bottom:2rem;
}
.main-title{
    margin-bottom:2rem;
}



body.preload .wow.fadeInLeftBig {
    opacity: 0 !important;
}


body.preload .wow.fadeInRightBig {
    opacity: 0 !important;
}











.deer02 {
    position: absolute;
    left: 23%;
    top: 13%;
    z-index: 100;
    width: calc(30px + 100 * ((100vw - 320px) / 1120));
}








/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/


.openbtn {
    position: fixed;
    z-index: 9999;
    top: 0px;
    right: 0px;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: linear-gradient(0.25turn, #ce2ca5, #b41e8e);
    cursor: pointer;
    width: 54px;
    height: 54px;
}

/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
    border-radius: 0px;
    background: #fff;
    width: 52%;
}

.openbtn span:nth-of-type(1) {
    top: 17px;
}

.openbtn span:nth-of-type(2) {
    top: 25px;
}

.openbtn span:nth-of-type(3) {
    top: 33px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
}



/*----------------------------------------------------------------------------------firefox fade対策----------*/
img,
x:-moz-any-link,
x:default {
    box-shadow: #000 0 0 0;
}

/*
Back to top button 
*/
#page-top {
    position: fixed;
    right: 15px;
    z-index: 100;
}

#page-top a {
    width: 50px;
    display: block;
    text-align: center;
    font: 1.1rem/100% Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    /* background color transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;

}



/* arrow icon (span tag) */
#page-top span {
    padding-top: 4px;
    width: 60px;
    height: 60px;
    display: block;
    margin-bottom: 7px;
    background: #b41e8e;
    /* rounded corners */
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    /* background color transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

#page-top a:hover span {
    background-color: #fff;
    color: #111;
}



#cat-top {
    position: fixed;
    right: 15px;
    z-index: 100;
}

#cat-top a {
    width: 50px;
    display: block;
    text-align: center;
    font: 1.1rem/100% Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    /* background color transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;

}



/* arrow icon (span tag) */
#cat-top span {
    padding-top: 4px;
    width: 60px;
    height: 60px;
    display: block;
    margin-bottom: 7px;
    background: #c30d23;
    /* rounded corners */
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    /* background color transition */
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}

#cat-top a:hover span {
    background-color: #f998a4;
    color: #111;
}




/*
haed
*/
header {}

.headerlogo {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    font-size: 0;
    padding: 0px 0;
min-height:54px;
}


.headerlogo.scbg {
    -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        background-color: rgba(255, 255, 255, .7);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
        
}

.headerlogo {
    align-items: center;
        display:flex;
        justify-content: center;
}



.headerlogo h1{
    margin:1rem 0;
}

.headerlogo h1 img {
    width: 60vw;
    max-width: 340px;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
}


#logo.mini {
    width: 210px !important;
}


.aeonlogo img {
    width: 85px;
    -webkit-transition: 0.6s ease;
    -moz-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
}

#ael.mini {
    width: 70px !important;
}



.catmenu {
    width: 100%;
    z-index: 10;
    

}



.catclick {
    padding: .7rem 0;
    font-size: 2rem;
    color: #ec6c00;
    transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    -webkit-transform: rotate(-4deg);
}

.catclick span {
    background: linear-gradient(transparent 70%, #faf18f 70%);
}



.info-wrap{
    border:5px solid #804f21;
    border-radius: 2rem;
    padding:2rem;
    background:#fff;
}

.info-wrap img{
    border-radius: 2rem;
}

.info-half-wrap{
    border:5px solid #009be4;
    border-radius: 2rem;
    background:#fff;
}

.info-wrap.closet{
    padding:0;
    
}

.event_space{
    height:650px;
}

.fg-frame{
    

    padding-bottom: calc(80px + 180*((100vw - 320px) / 1120));
}




.fadeInUpMin {
    animation-name: fadeInUpMin;
    animation-duration: .6s;
    animation-fill-mode: forwards;
    opacity: 0;
}


@keyframes fadeInUpMin {
    from {
        opacity: 0;
        transform: translate3d(-8%, 6%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}







@keyframes fadeInDownMin {
    from {
        opacity: 0;
        transform: translate3d(0, -8%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDownMin {
    animation-name: fadeInDownMin;
}






@keyframes fadeIn {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
}




@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(-8%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}







@keyframes fadeInLeftMin {
    from {
        opacity: 0;
        transform: translate3d(-8%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftMin {
    animation-name: fadeInLeftMin;
}







@keyframes fadeInRightMin {
    from {
        opacity: 0;
        transform: translate3d(8%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRightMin {
    animation-name: fadeInRightMin;
}



.card {
    border: none;
    background: none;
    border-radius: 0;
}


.card-img {
    position: relative;

}

.card-text {
    line-height: 1.3;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;

}

.card-text ul {
    margin-left: 1.5rem;
}

.card-text li {
    list-style: circle;
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 160%;
}

.bg_fish01 {
    position:absolute;
    right:-8rem;
    bottom:20%;
    width: calc(150px + 30 * ((100vw - 320px) / 1120));

}

.bg_fish02 {
    position:absolute;
    left:-9rem;
    top:40%;
    width: calc(150px + 30 * ((100vw - 320px) / 1120));

}


.bg_fish03 {
    position:absolute;
    left:-12rem;
    top:35%;
    width: calc(130px + 20 * ((100vw - 320px) / 1120));

}


.bg_fish04 {
    position:absolute;
    right:-12rem;
    top:25%;
    width: calc(150px + 30 * ((100vw - 320px) / 1120));

}

.bg_fish05 {
    position:absolute;
    right:-8rem;
    bottom:30%;
    width: calc(150px + 30 * ((100vw - 320px) / 1120));

}


.bg_fish06 {
    position:absolute;
    right:-1rem;
    top:20%;
    width: calc(150px + 35 * ((100vw - 320px) / 1120));

}


.bg_fish07 {
    position:absolute;
    right:-10rem;
    bottom:40%;
    width: calc(150px + 30 * ((100vw - 320px) / 1120));

}


.bg_fish08 {
    position:absolute;
    right:-18rem;
    top:10%;
    width: calc(150px + 30 * ((100vw - 320px) / 1120));

}


.itemfont {
    letter-spacing: 0;
    font-size: 1.1rem;
}

.shopname {
    margin-top: .8rem;
    border-top: 1px solid #fff;
    padding-top: .8rem;
}



.grid-item {}

.gi-last {
    margin-bottom: 0rem;
}


.code-area {
    margin-bottom: 0rem;
}



#head_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;

    gap: .5rem;

}




.contentstitlebox {
    position: relative;
    z-index: 15;
    margin-top: -9rem;
}



.contents_title {
    display: inline-flex;

    justify-content: center;

    background: #f5f2e9;
    padding: 2rem 2rem 0 2rem;
    border-radius: 2rem 2rem 0 0;
    width: calc(200px + 140 * ((100vw - 320px) / 1120));

}



.menu_title {
    display: inline-flex;

    justify-content: center;

    background: #f5f2e9;

    padding: 2rem 1.5rem 0 1.5rem;
    border-radius: 2rem 2rem 0 0;
    margin-top: 8rem;

    width: calc(340px + 270 * ((100vw - 320px) / 1120));

}


.menu_newopen {
    padding: 0rem 0;
    width: 20%;
}

.menu_info {
    padding: 0rem 0;
    width: 100%;
}

.menu_code {
    width: 100%;
}


.menu_code {
    width: clamp(37rem, -21.8912rem + 68.24vw, 60rem);
    margin-bottom:calc(30px + 10 * ((100vw - 320px) / 1120));

    
    text-align:center;
}




.menu_code a {
    width: 100%;
    position: relative;
}

.menu_code_title{
    padding:0;
    width: calc(250px + 150 * ((100vw - 320px) / 1120));
    margin-bottom:1.5rem;
    
    text-align:center;
}














.menu_play {

    padding: 2rem 0;
    width: calc(50% - 1.5rem);
}

.menu_trip {
    background: #e3f3fc;
    padding: 2rem 0;
}

.menu_gurume {
    background: #fff6d4;
    padding: 2rem 0;
}



#mainarea{

    background: linear-gradient(to bottom, #00AAE7, #6BC7F1 70%);

}




/*
content
*/

#gift01 {
    width: 100%;
    
    padding: 0;
    

    background: linear-gradient(to bottom, #3BBCEC, #ABD9F5 25%);

    position:relative;
}

#gift01::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    background: url(../images/code_foot.png) no-repeat center bottom;
    background-size: contain;
    
}


.wave_inner{
    background: url(../images/bg_wave.png) repeat left top;
    padding-bottom:10rem;
}



#gift01 .inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom:17rem;
    position:relative;
}

#gift01 .inner::before {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    top:0;
    background: url(../images/bg_cat_body_left.png) repeat-y left top;
    background-size:150px;
    
}

#gift01 .inner::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    right:0;
    top:0;
    background: url(../images/bg_cat_body_right.png) repeat-y right top;
    background-size:150px;
    
}


.gift_01_bg{
    position:relative;
    z-index:20;
}

.gift_01_bg::before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    left:0;
    top:0;
    background: url(../images/cat01_title_bg_left.png) no-repeat left top;
    background-size:200px;
    z-index:-1;
}

.gift_01_bg::after{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    right:0;
    top:0;
    background: url(../images/cat01_title_bg_right.png) no-repeat right top;
    background-size:320px;
    z-index:-1;
}



.gift01_title{
    
    width: 100%;
    max-width: clamp(34rem, 10.3632rem + 63.03vw, 86rem);
    margin-left:auto;
    margin-right:auto;
    margin-bottom:2rem;
    margin-top:clamp(5rem, 1.8176rem + 8.48vw, 12rem);
    
    position:relative;
    

}



.gift01_footer {
    background: url(../images/bg_gift01_foot.png) repeat-x left bottom;
    background-size: 50%;
    padding:5rem 0;
}


.gift02_header {
    background: url(../images/bg_gift01_foot03.png) repeat-x left bottom;
    background-size:calc(250px + 220*((100vw - 320px) / 1120));
    padding-bottom:calc(40px + 40*((100vw - 320px) / 1120));
    padding-top: calc(40px + 0*((100vw - 320px) / 1120));
    margin-top:-15rem;
}



#gift02 {
    width: 100%;
    padding: 0;

    background: linear-gradient(to bottom, #3BBCEC, #ABD9F5 25%);
    position:relative;
}


#gift02::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    background: url(../images/code_foot.png) no-repeat center bottom;
    background-size: contain;
    
}




#gift02 .inner {

    width: 100%;
    margin: 0 auto;
    padding-bottom:17rem;
    position:relative;

}



#gift02 .inner::before {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    top:0;
    background: url(../images/bg_cat_body_left.png) repeat-y left top;
    background-size:150px;
}

#gift02 .inner::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    right:0;
    top:0;
    background: url(../images/bg_cat_body_right.png) repeat-y right top;
    background-size:150px;
    
}




.gift_02_bg{
    position:relative;
    z-index:20;
}

.gift_02_bg::before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    left:0;
    top:0;
    background: url(../images/cat02_title_bg_left.png) no-repeat left top;
    background-size:220px;
}

.gift_02_bg::after{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    right:0;
    top:0;
    background: url(../images/cat02_title_bg_right.png) no-repeat right top;
    background-size:250px;
}


.gift02_title{
    
    width: 100%;
    max-width: clamp(34rem, 10.3632rem + 63.03vw, 86rem);
    margin-left:auto;
    margin-right:auto;
    margin-bottom:2rem;
    margin-top:clamp(5rem, 1.8176rem + 8.48vw, 12rem);
}






#gift03 {
    width: 100%;
    padding: 0;

    background: linear-gradient(to bottom, #3BBCEC, #ABD9F5 25%);
    position:relative;
}

#gift03::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    background: url(../images/code_foot.png) no-repeat center bottom;
    background-size: contain;
    
}


#gift03 .inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom:17rem;
    position:relative;
}



#gift03 .inner::before {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    top:0;
    background: url(../images/bg_cat_body_left.png) repeat-y left top;
    background-size:150px;
}

#gift03 .inner::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    right:0;
    top:0;
    background: url(../images/bg_cat_body_right.png) repeat-y right top;
    background-size:150px;
    
}




.gift_03_bg{
    position:relative;
    z-index:20;
}

.gift_03_bg::before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    left:0;
    top:0;
    background: url(../images/cat03_title_bg_left.png) no-repeat left top;
    background-size:250px;
}

.gift_03_bg::after{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    right:0;
    top:0;
    background: url(../images/cat03_title_bg_right.png) no-repeat right top;
    background-size:250px;
}



.gift03_title{
    width: 100%;
    max-width: clamp(34rem, 10.3632rem + 63.03vw, 86rem);
    margin-left:auto;
    margin-right:auto;
    margin-bottom:2rem;
    margin-top:clamp(5rem, 1.8176rem + 8.48vw, 12rem);
}



#gift04 {
    width: 100%;
    padding: 0;

    background: linear-gradient(to bottom, #3BBCEC, #ABD9F5 25%);
    position:relative;

}


#gift04::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    background: url(../images/code_foot.png) no-repeat center bottom;
    background-size: contain;
    
}



#gift04 .inner {
    width: 100%;
    margin: 0 auto;
    padding-bottom:17rem;
    position:relative;
}



#gift04 .inner::before {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    left:0;
    top:0;
    background: url(../images/bg_cat_body_left.png) repeat-y left top;
    background-size:150px;
}

#gift04 .inner::after {
    width: 100%;
    height:100%;
    content:"";
    position:absolute;
    right:0;
    top:0;
    background: url(../images/bg_cat_body_right.png) repeat-y right top;
    background-size:150px;
    
}



.gift_04_bg{
    position:relative;
    z-index:20;
}

.gift_04_bg::before{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    left:0;
    top:0;
    background: url(../images/cat04_title_bg_left.png) no-repeat left top;
    background-size:180px;
}

.gift_04_bg::after{
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    right:0;
    top:0;
    background: url(../images/cat04_title_bg_right.png) no-repeat right top;
    background-size:290px;
}



.gift04_title{
    width: 100%;
    max-width: clamp(34rem, 10.3632rem + 63.03vw, 86rem);
    margin-left:auto;
    margin-right:auto;
    margin-bottom:2rem;
    margin-top:clamp(5rem, 1.8176rem + 8.48vw, 12rem);
}



#gift05 {
    position:relative;
    margin-top:-1px;
    width: 100%;
    background: url(../images/bg_event.jpg) repeat left top;
   

    padding-top: calc(20px + 80*((100vw - 320px) / 1120));

    background-size:contain;
    z-index:15;

}

#gift05 .bg_info {
    background: url(../images/bg_info.png) no-repeat center bottom;
    background-size: contain;
    width:100%;
    max-width:1400px;
    margin-left:auto;
    margin-right:auto;
}




#gift05 .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

}










#event {
    max-width: 1200px;
    margin: 0rem auto 3rem auto;
    background: #f5f2e9;
    border-radius: 2rem;

    padding-bottom: 2rem;
    box-shadow: 0px 6px 14px rgb(0 0 0 / 30%);

}


.eventinfo {
    padding: 2rem 0rem 0rem 0rem;
    position: relative;

}

.eventinfo_title{
    width: calc(320px + 600*((100vw - 320px) / 1120));
    max-width:1200px;
    margin:0 auto 2rem auto;
    padding:0 1rem;
}


.eventinfo .grid-item {
    margin-bottom: 3rem;
}


.info-right-img{
    width: calc(80px + 80*((100vw - 320px) / 1120));
    margin:0 auto;
    padding-top:5rem;
}



.infobox {
    padding: 2rem 2rem 1.5rem 2rem;
    border-radius: 2rem;
    background: #fff;
    margin-bottom: 2rem;
}


.infobox.col_pink {
    background: #fdeff5;
}

.infobox.col_yellow {
    background: #fffde5;
}

.infobox.col_beige {
    background: #f2e8da;
}

.infobox.col_blue {
    background: #dff2fc;
}



.dotright-pc {
    border-right: 3px dotted #c9a746;
}

.dottop {
    border-top: 3px dotted #c9a746;
}



.mujibox {
    display: flex;
    flex-wrap: nowrap;
    gap: 0px;

}

.mujibox img.left {
    width: calc(100%);
}

.mujibox img.rigth {
    width: calc(100%);
}



.cinemabox {
    display: flex;

    gap: 30px;

    align-items: center;

}

.cinemabox .left {
    width: 270px;
}

.cinemabox .right {
    width: calc(100% - 270px);
}


.mov_txt {
    font-size: 1.4rem;
    margin: 0;
}




.mov_info {
    background: #f0cfe3;
    padding-left: 3rem;
    padding-right: 3rem;
}

.cinema_txt {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
}

.code-text {
    color: #fcd68c;
    font-weight: 700;
    font-size: 1.8rem;
}

.play-text {
    color: #fcd68c;
    font-weight: 700;
    font-size: 1.8rem;
}

.trip-text {
    color: #fcd68c;
    font-weight: 700;
    font-size: 1.8rem;
}

.gurume-txt {
    color: #ea5504;
    font-weight: 700;
    font-size: 1.8rem;
}


.cold-txt {
    color: #0068b7;
    font-weight: 700;
    font-size: 1.8rem;
}



.tuiki {
    color: #000;
    letter-spacing: 0;
    background: #fff;
    padding: 1rem 2rem;
    text-align: left;
    width: 100%;
}

.codebox {
    
    padding-top: 0px;
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px;
    position: relative;
}




.code-title{
    width: calc(280px + 350 * ((100vw - 320px) / 1120));
    margin:0 auto 0 auto;
}




.pokapokabox {
    background-color: rgba(254, 235, 190, 0.3);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;

    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 8rem auto;
    overflow: hidden;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .pokapokabox {
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);

        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
    }

}


.pokapokabox:before {
    position: absolute;
    content: "";

    background: url(../images/poka_bg.svg) repeat-y left top;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;
}




#pokapoka_title h2 {
    position: relative;
}

#pokapoka_title h2:before {
    position: absolute;
    content: "";

    background: url(../images/poka_fukidasi01.svg) no-repeat left top;
    background-size: 110px;

    left: -8rem;
    top: 50%;

    width: 100%;
    height: 100%;
}

#pokapoka_title h2:after {
    position: absolute;
    content: "";

    background: url(../images/poka_fukidasi02.svg) no-repeat right top;
    background-size: 110px;

    right: -7rem;
    top: 0%;

    width: 100%;
    height: 100%;
}




.warmcatch {
    position: absolute;
    left: 2%;
    top: 3rem;

    width: calc(200px + 100 * ((100vw - 320px) / 1120));
}




.coldbox {
    background-color: rgba(187, 225, 245, 0.5);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-top: 80px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;

    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 8rem auto;
    overflow: hidden;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .coldbox {
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);

        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
    }

}

.coldbox:before {
    position: absolute;
    content: "";

    background: url(../images/cold_bg.svg) repeat-y left top;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;
}





#cold_title h2 {
    position: relative;
}

#cold_title h2:before {
    position: absolute;
    content: "";

    background: url(../images/cold_fukidasi01.svg) no-repeat left top;

    background-size: 110px;

    left: -8rem;
    top: 20%;

    width: 100%;
    height: 100%;
}

#cold_title h2:after {
    position: absolute;
    content: "";

    background: url(../images/cold_fukidasi02.svg) no-repeat right top;

    background-size: 110px;

    right: -10rem;
    top: 0%;

    width: 100%;
    height: 100%;
}





.gurumebox {
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;

    position: relative;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .gurumebox {
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);

        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
    }

}



#code_title {
    background: url(../images/bg_beach.png) repeat-x left bottom;
    background-size: 50%;
}


#code_title .inner {

    max-width: 1200px;
    margin: 0 auto;
    padding:8rem 0 10rem 0; 

}





#first-area {
    width:100%;
    max-width: 1200px;
    margin-left:auto;
    margin-right:auto;
}



#first-area.codebox {
    position: relative;
    background: linear-gradient(-45deg, #D1E7C3, #FFFFFF 12%, #FDFEFF 85%, #D1E7C3);
    border-radius:13rem;
    z-index:10;
    padding:12rem 5rem 8rem 5rem;
    margin-top:-12rem;
}


#second-area {
    width:100%;
    max-width: 1200px;
    margin-left:auto;
    margin-right:auto;
}

#second-area.codebox {
    position: relative;
    background: linear-gradient(-45deg, #A0CEEF, #FFFFFF 5%, #FDFEFF 94%, #A0CEEF);
    border-radius:13rem;
    z-index:10;
    padding:10rem 5rem 8rem 5rem;
    margin-top:-12rem;
}


#third-area {
    width:100%;
    max-width: 1200px;
    margin-left:auto;
    margin-right:auto;
}
#third-area.codebox {
    position: relative;
    background: linear-gradient(-45deg, #F7C9DD, #FFFFFF 15%, #FDFEFF 85%, #F7C9DD);
    border-radius:13rem;
    z-index:10;
    padding:12rem 5rem 8rem 5rem;
    margin-top:-12rem;
}

#fourth-area {
    width:100%;
    max-width: 1200px;
    margin-left:auto;
    margin-right:auto;
}
#fourth-area.codebox {
    position: relative;
    background: linear-gradient(-45deg, #FFF2AD, #FFFFFF 8%, #FDFEFF 93%, #FFF2AD);
    border-radius:13rem;
    z-index:10;
    padding:8rem 5rem 8rem 5rem;
    margin-top:-12rem;
}




#party-area.codebox {
    position: relative;
    background: #fffaf3;
    padding-top: calc(2rem + 50 * ((100vw - 320px) / 1120));
}



#denim-area.codebox {
    position: relative;
    background: #fffaf3;
}


#closet-area.codebox {
    position: relative;
    background: none;
}


















#gurume {
    position: relative;
    background: url(../images/gurume_bg.jpg) repeat left top;
    padding-top: 6rem;
}

#gurume_title {}








.headtitle {

    position: relative;

    margin-left: auto;
    margin-right: auto;
    z-index: 10;
    background:url(../images/bg_head.webp) no-repeat left top;
    background-size:cover;
  overflow: hidden;
}


.headtitle-inner{
    width:100%;
    max-width: 1280px;
    margin:0 auto;
    background: url(../images/head_title_bg03.png) no-repeat center bottom;
    background-size: contain;
}


.headtitle h2 {

    margin: 0;
}


.logobg {
    padding: 0.6rem;
    background: #fff;
}

.orikomi {
    position: absolute;
    left: calc(4%);
    bottom: calc(2%);
    width: 16vw;
    max-width: 250px;

}

.orikomi img {
    filter: drop-shadow(2px 2px 6px #888);
}



.menu-code-box {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}


.menu-other-box {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}



.contentstitle {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #111;
    padding-top: .8rem;
    padding-bottom: .5rem;
    border-top: 3px double #f6bc78;
    border-bottom: 3px double #f6bc78;
}