




/* PCのcss
---------------------------------- */
@media (min-width: 768px){

/* 表示分け */
.pc-view { display: block !important; }
.sp-view { display: none !important; }

body{
    background: #000;
    font-family: 'Noto Serif JP', serif;
}

/* 背景画像表示 */
.wrapper{
    width: 100vw;
    min-height: 100vh; /*背景画像指定 */
}
.wrapper::after {
    content: '';
    background-color: rgba(0,0,0,.30);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

h1{
    width: 100%;
    position: relative;
    z-index: 1;
  
}
h1 img{
    display: block;
    height: 4.5%;
    position:fixed;
    padding-left: 25px;
    top: 5.5%;
    left:8%;
    transform: translate(-50%, -50%);
}

p{
    color: #ffffff;
    position: absolute;
    bottom: 8%;
    text-align: center;
    z-index: 1;
    line-height: 180%;
    font-size: 15px;
    width:100%; 
}

footer p{
    color: #ffffff;
    position: absolute;
    bottom: 10px;
    text-align: center;
    z-index: 1;
    font-size: 12px;
    width:100%;

}


/* NAV
---------------------------------- */
.nav{
    display: flex;
    position: absolute;
    top: 12px;
    right: 2px;
    z-index: 1;
    position:fixed;
  
}

.nav li{
    list-style: none;
    flex-wrap: nowrap;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    margin: 5px 5px 20px 5px; /* 上 | 右 | 下 | 左 */
}
.li-sns{
    width: 70%;
    position: relative;
    top: 2px; 
}


.nav a{
    color: #ffffff;
    text-decoration: none;
}

.nav-btn{
    padding: 8px 22px 8px;
    color: #ffffff;
    background-color:#1bcdcd ;
    border-radius: 40px;
    position: relative;
    top: -3px; 
}

.nav-shopbtn :hover{
    opacity: 0.9;
}

.nav-btn img{
    padding-left: 6px;
    position:relative;
    top:4px;
}

    
}/* @media */

#video{
    position: fixed;
}





/* ここからスマホのcss --------------------------------------------------------------------------- */
@media (max-width: 767px){
/* 表示分け */
.pc-view { display: none !important; }
.sp-view { display: block !important; }

ol, ul {
    list-style-type: none;
  }

body{
    background: #000;
    font-family: 'Noto Serif JP', serif;
}

.sp-view{
    width: 100%;
}
    
/* スマホ HEADER */

.cp_offcm02{
    pointer-events: none ; /* 背面要素の操作を可能にする */
}
.cp_offcm02 li{
    pointer-events: auto !important; /* 前面要素の操作を可能にする */
}

/* main */
.sp-main{
    width: 100%;

}

.sp-main-logo{
    padding-top: 500px;
    width: 65%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.container-video{
    z-index: -20;
    position: fixed;
}


/* btn */
.sp-top-btn {
    width: 100vw;
    display: flex;
    position: relative;
    top: -42px;
}
.sp-top-btn li img{
    width: 50vw;
}
.sp-top-btn-2 {
    width: 100vw;
    display: flex;
    position: relative;
    top: -48px;
}
.sp-top-btn-2 li img{
    width: 50vw;
}

/* footer */
footer{
    position: relative;
}
.sp-footer{
    padding-top: 50px;
    margin-bottom:20px ; /* 上 | 右 | 下 | 左 */
    display: flex;
    justify-content: center 
}

.sp-footer li img{
    width: 30px;
    margin: 10px;
}
.icon-right{
    margin-right: 14px;
}
footer p{
    font-size: 10px;
    text-align: center;
    color: #ffffff;
}

p{
    color: #ffffff;
    z-index: 10;
    line-height: 180%;
    font-size: 16px;
    width:80%; 
    padding-top: 12%;
    margin: auto;
}


}