@charset "utf-8";

/* 共通 -------------------------------- */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    color: #363636;
    font-family: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'Meiryo', sans-serif;
}
ul{
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

li{
    list-style-type: none;
}

a{
    text-decoration: none;
}

p{
    margin: 0;
}

h2{
    margin: 0;
}

.common_window{
    max-width: 768px;
    margin: 0 auto;
    background-color: #fff;
}

img{
    width: 100%;
    vertical-align: middle;
    transition: 0.3s;
}

#footer_2018 img{
    width: auto;
}

#header_box img{
    width: auto;
}

.inner{
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.contents_pg{
    display: none;
}

button{
    border: none;
    background: none;
}

/* TOPへリンクボタン */
.pagetop{
    position: fixed;
    display: block;
    bottom: 1%;
    right: 2%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 999999;
}

.pagetop.UpMove {
    animation: UpAnime 0.5s forwards;
}

.txt_left{
    text-align: left;
}
.txt_right{
    text-align: right;
}


/* アニメーション設定 */
.popup {
    animation-name: zoomIn;
    animation-duration: 2s;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fadeIn-title_item{
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s cubic-bezier(.33,1,.68,1) forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.item_title_1{
    animation-delay: 1s;
}
.item_title_2{
    animation-delay: 1.5s;
}
.item_title_3{
    animation-delay: 2s;
}
.item_title_4{
    animation-delay: 2.5s;
}

.plaza_firework{
    transform: scale(0.5);
    transition: all 0.5s 1.0s;
    opacity: 0;
}
.plaza_firework.animated{
    transform: scale(1);
    opacity: 1;
}

.fadeIn_scroll_right {
  transform: translate3d(100px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn_scroll_right.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadeIn_scroll_left {
  transform: translate3d(-100px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn_scroll_left.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.slideIn_scroll_left {
  transform: translate3d(-500px, 0, 0);
  transition: 1s;
}
.slideIn_scroll_left.animated {
  transform: translate3d(0, 0, 0);
}


.fadeIn_scroll_bottom {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}
.fadeIn_scroll_bottom.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.slideIn_scroll_left {
  transform: translate3d(-500px, 0, 0);
  transition: 0.5s;
}
.slideIn_scroll_left.animated {
  transform: translate3d(0, 0, 0);
}


.shopping_man_1{
    transform: rotate(-100deg);
    transform-origin: 0 bottom;
    transition: 1s;
    opacity: 0;
}

.shopping_man_1.animated{
    transform: rotate(0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* 共通 ここまで -------------------------------- */



/* 固定背景用  -------------------------------- */
.page_body {
    position: relative;
    z-index: 999;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page_bg {
    @media (min-width: 768px) {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("../img/index/bg_mv-pc.png") center/cover no-repeat;
        z-index: -999;

    }
}

/* ヘッダー  -------------------------------- */
header{
    width: 100%;
    background-color: #fff;

    & .header_inner{
        @media (min-width: 768px){
            width: 375px;
        }

        & .header_logo{
            padding: 10px 10px ;
            width: 30%;
        }
        @media (min-width: 768px){
            position: relative;
            margin: 0 auto;

            & .header_logo{
                width: 100%;
                max-width: 111px;

                &:hover{
                    opacity: 0.6;
                }
            }

        }
    }

}
/* ヘッダー ここまで -------------------------------- */


/* コンテンツ中央スクロール */
.main_contents {
    background-color: #fff;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    flex: 1;
    overflow-x: clip;

    @media (min-width: 768px){
        position: relative;
        z-index: 1;
        max-width: 375px;
        overflow-x: clip;
    }
}

/* メインビジュアル */

.mv_bg{
   position: relative;
   margin: 0 auto;
   z-index: -5;
   
}
h1{
    text-align: center;
    position: absolute;
    top: 5%;
    right: 0;
    left: 0;
    width: 85%;
    margin: auto;
}
.item_title_1,.item_title_2,.item_title_3,.item_title_4{
    position: absolute;
}
.item_title_1{
    width: 8%;
    bottom: 20%;
    right: 26%;
}
.item_title_2{
    width: 11%;
    bottom: 14%;
    left: 11%;
}
.item_title_3{
    width: 12%;
    bottom: 10%;
    right: 11%;
}
.item_title_4{
    width: 12%;
    bottom: 10%;
    left: 27%;
}


/* 広場 */
.plaza_wrap{
    margin: -15% 0 0 0;
    z-index: 10;
    overflow-x: clip;
}
.bg_plaza{
    margin: 0 auto;
    background-color: #f4f1eb;
    padding-bottom: 18%;
}
.plaza_1{
    position: relative;
    height: 5%;
}
.plaza_txt{
    width: 90%;
}

.plaza_man_1{
    position: absolute;
    display: block;
    width: 25%;
    top: 40%;
    right: 5%;
}
.plaza_firework{
   position: absolute;
    width: 27%;
    top: 1%;
    right: 5%;
}

.plaza_2{
    position: relative;
    height: 5%;  
}
.plaza_txt2{
    width: 90%;
}
.plaza_man_2{
   position: absolute;
   display: block;
   width: 30%;
    top: 30%;
    left: 5%;
}

/* お買い物 */
.shopping_wrap{
    margin: -30% 0 0 0;
    z-index: 10;
    position: relative;
    overflow-x: clip;
    
}
.box_shopping{
    position: absolute;
    top:1.5%;
}
.shopping_man_1{
     position: absolute;
     top:16%;
     left: 0;
     width:18%;
}
.shopping_1{
    padding-top: 25%;
}
.shopping_2{
    margin-top: 5%;
    width: 83%;
}
.cp_box{
    position: relative;
}
.btn_appdl{
    position: absolute;
    bottom: 21%;
    left: 50%;
    transform: translateX(-50%); 
    width: 83%;
    filter: drop-shadow(0 3px 3px rgba(0,0,0,0.5));
    transition: .3s;
}

.btn_appdl:hover{
    filter: drop-shadow(0 0 2px  rgba(0,0,0,0.2))invert(10%);
}

.cp{
    margin-top: 20px;
}
.balloon_1{
    position: absolute;
    bottom: -30px;
    right: 5%;
    width: 9%;
}
.txt_detail{
    margin-top: 12%;
    width: 70%;
}
.btn_detail{
    display: block;
    width: 83%;
    margin: 4% auto 0 auto;
    filter: drop-shadow(0 3px 3px rgba(0,0,0,0.5));
    transition: .3s;
}
.btn_detail:hover{
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.2))invert(10%);
}

.balloon_2{
    width: 15%;
    position: absolute;
    bottom: -7%;
    left: 5%;
}

/* 先行オープンショップ */
.shop_wrap{
    margin: -18% 0 0 0;
    overflow-x: clip;
}
.shop_wrap h2{
    width: 85%;
    margin: auto;
}
.shop_1{
 position: relative;
}
.bg_shop_1{
    margin: -20% 0 0 0;
}
.lead_shop{
    position: absolute;
    top: 35%;
    left: 0;
    width: 65%;
}
.txt_shop_1{
   position: absolute;
   bottom: 17%;
   left: 50%;
   transform: translateX(-50%); 
   width: 85%;
}
.shop_list_box{
    position: relative;
}
.img_shop_1{
    position: absolute;
    top: -3%;
    right: 0;
    width: 20%;
}
.txt_shop_2{
    margin-top: 5%;
    width: 83%;
}
.txt_shop_3{
    margin-top: 30px;
}
.shop_txt_4{
    margin-top: 30px;
    width: 95%;
}
.txt_shop_5{
    margin-top: 50px;
    width: 80%;
    padding-left: 50px;
}
/* アクセス */
.check_wrap{
    position: relative;
}
.txt_check{
    position: absolute;
    top:32%;
    left: 50%;
    transform: translateX(-50%); 
    width: 75%;
}
.btn_check{
    position: absolute;
    top:45%;
    left: 50%;
    transform: translateX(-50%); 
    width: 83%;
    filter: drop-shadow(0 3px 3px rgba(0,0,0,0.5));
    transition: .3s;
}
.btn_check:hover{
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.2))invert(10%);
}

/* 注釈 */
.txt_note{
    color: #363636;
    font-size: clamp(10px, 1.5vw, 12px);
    padding: 4% 5%;
}

/* ページトップボタン */
.pagetops{
    position: fixed;
    width: 60px;
    bottom: 10px;
    right: 10px;
    z-index: 999;

    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;

    @media (min-width: 768px){
        right: calc(50% - 260px);
        bottom: 3%;
    }
}

/* メインコンテンツ ここまで -------------------------------- */

/* フッター -------------------------------- */
footer{
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    @media (min-width: 768px){
        max-width: 375px;
        margin: 0 auto;
    }
}

.link_clm_3{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 7px 0 0;
    & a{
        color: #363636;
        width: calc(100% / 3 -5px);
        font-size: clamp(10px, 1.5vw, 12px);
        @media (min-width: 768px) {
            font-size: 10px;
            &:hover {
                color: #b60081;
            }
        }

        &::after {
            content: "|";
            margin: 0 15px;
            @media (min-width: 768px){
                margin: 0 15px;
            }
        }
    }
}

.link_clm_2{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 10px 0;
    & a{
        position: relative;
        color: #363636;
        width: calc(100% / 2 -5px);
        font-size: clamp(10px, 1.5vw, 12px);
        @media (min-width: 768px){
            font-size: 10px;
            &:hover{
                color: #b60081;
            }
        }

        &::after{
            content: "|";
            margin-left: 40px;
            @media (min-width: 768px) {
                margin-left: 40px;
            }
        }

        &:last-child::after{
            content: none;
        }
    }
}

.copy_right{
    padding: 5px 0 0;
    text-align: center;
    font-size: clamp(10px, 1.5vw, 12px);
}

/* フッターの線 */
.footer_line{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #707070;
    margin: 15px 0;
}

.footer_logos{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fotter_logo_area{
    display: flex;
    align-items: center;


    & .footer_logo_b{
        width: 35%;
        margin-right: 10px;

        @media (min-width: 768px){
            width: 32%;
            &:hover{
                opacity: 0.6;
            }
        }
    }

    & ul li a{
        padding: 0;
        color: #363636;
        font-size: clamp(10px, 1.5vw, 12px);
        @media (min-width: 768px) {
            font-size: 10px;
            &:hover {
                color: #b60081;
            }
        }
    }
}

.wrap_logo_tree{
    text-align: right;
    display: block;
    width: 43%;

    @media (min-width: 768px) {
        &:hover {
            opacity: 0.6;
        }
    }
}

.logo_tree{
    width: 100%;
}

/* PC版スタイル 768px以上 --------------------------------------------- */

@media (min-width: 768px) {
    /* 広場 */
    .plaza_1{
    height: 450px;
    }
    .plaza_man_1{

        display: block;
        width: 25%;
        top: 40%;
        right: 5%;
    }
    .plaza_2{
        height: 450px;   
    }
    /* お買い物 */
    .shopping_wrap{
    margin: -120px 0 0 0;
    }
    .box_shopping{
        top:0;
    }
    .shopping_man_1{
        top:16%;
        left: 0;
        width:18%;
    }
    .shopping_1{
        padding-top: 120px;
    }


  
    /* 先行オープンショップ */
    .txt_note{
    padding: 5%;
}
}