/*===================
    ROOT
====================*/
@font-face {
    font-family: 'fontregular'; 
    src: url('../fonts/KozGoPr6N-Regular.otf');
  }
@font-face {
    font-family: 'fontDinBold'; 
    src: url('../fonts/DINNextLTPro-Bold.otf') ;
}
@font-face {
    font-family: 'fontDinMedium'; 
    src: url('../fonts/DINNextLTPro-Medium.otf');
}
@font-face {
    font-family: 'fontMons'; 
    src: url('../fonts/Montserrat-Bold.ttf');
}
@font-face {
    font-family: 'fontMonsRegular'; 
    src: url('../fonts/Montserrat-Regular.ttf');
}

:root{
    --black:#4da2b6;
    --white:#FFFFFF;
	--topback:#bddad2;
	--menueback:#4da2b6;
    --1back:#fffeee;
	--2back:#d6e2c0;
	--3back:#fce4df;
	--4back:#e0f1ef;
    --5back:#fde0a5;
    --fontregular:'fontregular', sans-serif;
    --fontDinBold:'fontDinBold', sans-serif;
    --fontDinMedium:'fontDinMedium', sans-serif;
    --fontMons:'fontMons', sans-serif;
	--fontMonsRegular:'fontMonsRegular', sans-serif;
}

.pccenter
{ 
margin:0 auto;}
.resizeimage img
{ width:100vw; 
margin:0 auto;}

/*===================
    slider
====================*/

p#example1
{     margin-bottom: 5px;
   
    font-size: 1rempx;
	color: #ea545d; }


@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw /2);
}
.scroll-infinity__item>img {
  width: 100%;
}

/*===================
    p上ボタン
====================*/
.p_area{
    position:relative;
    margin:0 auto;
}
.p_area img{
    width:1100px;
}
.p_btn{
    position:absolute;
    left:42%;
    bottom:5%;
}
@media only screen and (max-width: 768px) {
.p_area img{
    width:100%;
}
.p_btn{
    position:absolute;
    left:20%;
    bottom:-2.5%;
}
}
.btn-cta .cta5{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 60px;
    border-radius: 50px;
    border: 1px solid #4da2b6;
    background-color: #4da2b6;
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
    transition: .2s ease-in;
}
.cta5 .arrow-white{
    position: absolute;
    width: 15px;
    height: 15px;
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    right: 25px;
    transform: rotate(-45deg);
}
@media only screen and (max-width: 768px) {
.btn-cta .cta5{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55vw;
    height: 12vw;
    border-radius: 10vw;
    border: 1px solid #4da2b6;
    background-color: #4da2b6;
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
    transition: .2s ease-in;
}
}
.btn-cta .cta5:hover,
.btn-cta .cta5:focus{
    background-color: var(--white);
    color: #e4007f;
    text-decoration: none;
}
/*===================
    BASE STYLE
====================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    
}
body{
    -moz-osx-font-smoothing: grayscale;
   
}
.bb{margin-top:-0.5vw;}

/*===================
    COMMON STYLE
====================*/
li {
    list-style: none;
}

a {
    text-decoration: none;
}
.pc-only{
    display: block;
}
.sp-only{
    display: none;
}
.bg-menueback{
    background-color: var(--menueback);
}
.bg-topback{
    background-color: var(--topback);
}
.bg-1back{
    background-color: var(--1back);
}
.bg-2back{
    background-color: var(--2back);
}
.bg-3back{
    background-color: var(--3back);
}
.bg-4back{
    background-color: var(--4back);
}
.bg-5back{
    background-color: var(--5back);
}

.container{
    max-width: 1000px;
}
.container0{
    max-width: 1200px;

}
.font-koz{
    font-family: var(--fontregular);
}
.font-DinBold{
    font-family: var(--fontDinBold);
}
.font-DinMed{
    font-family: var(--fontDinMedium);
}
.font-Mons{
    font-family: var(--fontMons);
}
.btn-cta{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-cta .cta{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 60px;
    border-radius: 50px;
    border: 1px solid var(--black);
    background-color: var(--black);
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
    transition: .2s ease-in;
}
.cta .arrow-white{
    position: absolute;
    width: 15px;
    height: 15px;
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    right: 25px;
    transform: rotate(-45deg);
}
.btn-cta .cta:hover,
.btn-cta .cta:focus{
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
}
.btn-cta .cta:hover .arrow-white,
.btn-cta .cta:focus .arrow-white{
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}
.btn-cta .cta2{
    width: 100%;
    height: 100px;
    font-size: 18px;
}
.visible768{
    display: block;
}
.visible767{
    display: none;
}
.scrollTop {
    width: 100px;
    height: 100px;
    background:#000;
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: .2s ease-in;
    margin-top: -50px;
    margin-bottom: 30px;
}
.scrollTop.active {
    visibility: visible;
    opacity: 1;
}
.scrollTop .arrow-black{
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    transform: rotate(225deg);
    top: 30px;
}
.scrollTop:hover,
.scrollTop:focus{
    background-color: #555;
    color: #fff;

}
.scrollTop:hover .arrow-black,
.scrollTop:focus .arrow-black{
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}
.area-sec-title{
    margin: 50px 0px;
}
.area-sec-title .title-text{
    margin-bottom: 20px;
}
.area-sec-title .para-des{
    font-size: 14px;
    letter-spacing: 2px;
}

/*===================
    NAVBAR STYLE
====================*/
.header{
   width: 100%;
}
.header .logowrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}
.header-secondary .logowrap{
    height: 80px;
}
.header .logowrap .nav-logo{
    display: block;
}
.header .logowrap .nav-logo .logo-top{
    width: 100%;
    max-width: 400px;
}

.navbar{
    display: none;
}
.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 99999;
}
.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}
.nav-menu {
    display: flex;
    justify-content: space-between;
    padding: 60px 20px 50px 20px;
}

.nav-link{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    padding: 8px 0px;
}
.nav-item:nth-child(1){
    border-top: 1px solid var(--white);
}
.nav-link:hover{
    color: var(--white);
}

    .nav-menu {
        position: fixed;
        top: -300%;
        right: 0;
        flex-direction: column;
        background-color: var(--menueback);
        color: var(--white);
        width: 100%;
        max-width: 500px;
        transition: 0.3s;
        overflow-y: scroll;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        top: 0;
        
    }

    

    .hamburger {
        display: block;
        cursor: pointer;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hamburger.active .bar{
        background-color: var(--white);
    }
    .nav-link{
        font-size: 14px;
    }
    .big{
        font-size: 2.5rem;
        width: 80px;
        display: inline-block;
    }
    .small{
        font-size: 10px;
        display: inline-block;
    }
    

/*===================
    MAIN STYLE
====================*/
.img-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-wrap .hero{
    object-fit: cover;
}
.sec2{
    padding: 100px 0px 0px 0px;
}
.sec2-content{
    margin-bottom: 100px;
}
.sec2-content .img-content{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec2-content .txt-content .num{
    text-align: center;
    font-size: 10rem;
    display: block;
    color: var(--white);
    margin-top: -2rem;
}
.sec2-content .txt-content .area-title{
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-top: -7rem;
    text-align: center;
}
 .mini-des{
    display: block;
    font-size: 1rem;
    letter-spacing: 2px;
    text-align: center;
    padding: 7px ;
    width: 100%;
    max-width: 300px;
    margin: 0px auto;
    border: 1px solid #000;
    background-color: var(--white);
    margin-top: -1rem;
}
.sec2-content .txt-content .numbox{
    margin-bottom: 30px;
}
.sec3{
    position: relative;
    padding-top: 60px;
    padding-bottom: 40px;
}
.keyword{
    top:-180%;
    left:37%;
    color:#4da2b6;
    font-weight:bold;
    font-size:55pt;
    position:absolute;
}
.sec3 .bg-pattern{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45vh;
    overflow: hidden;
    background-image: url('../img/top/bgpc.jpg');
    background-repeat: repeat;
}
.sec3 .container{
    position: relative;
    z-index: 3;
}
.sec3 .sec-title-area{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 45px;
}
.sec3 .sec-title-area .sec-title{
    padding: 10px 20px;
    color: var(--white);
    letter-spacing: 2px;
    background-color: var(--black);
}
.sec3 .sec-title-area .sec-title h3{
    margin-bottom: 0px;
    font-size: 2.5rem;
}
.sec3 .sec-title-area .mini-des{
    margin-top: -.5rem;
}
.sec3 .sec3-content{
    width: 100%;
    max-width: 700px;
    margin: 0px auto 40px auto ;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
}
.sec3 .sec3-content .content-wrap .img-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec3 .content-box .date-box{
    border-bottom: 1px solid var(--black);
    padding-bottom: 5px;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.sec3 .content-box .date-box .date-to,
.sec3 .content-box .date-box .date-from{
    display: flex;
    align-items: center;
}
.sec3 .content-box .date-box .day{
    font-size: 14px;
    writing-mode: vertical-lr;
    margin-left: -3px;
    margin-bottom: -2px;
    font-weight: bold;
    
}
.arrow-black-bold{
    width: 15px;
    height: 15px;
    border-right: 5px solid var(--black);
    border-bottom: 5px solid var(--black);
    margin: 0px 7px;
    transform: rotate(-45deg);
}
.sec3 .content-box .detail-box .event-title h4{
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.sec3 .content-box .detail-box .des-box p{
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1rempx;
}
.sec3 .content-box .link-box{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.sec3 .content-box .link-box a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--menueback);
    color: var(--white);
}
.sec4{
    width: 100%;
    background-color:#4da2b6;
    background-repeat: repeat;
    padding: 100px 20px 160px 20px;
}
.sec4 .lottery-area{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 40px;
}
.sec4 .lottery-area .img-box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/*===================
    STAFF STYLE
====================*/
.staff-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.staff-content .post-content{
    margin: 30px 10px;
}
.staff-content .post-content .post-thumb{
    overflow: hidden;
    margin-bottom: 10px;
}
.staff-content .post-content .thumb-img{
    
    overflow: hidden;
    transition: .4s ease;
}
.staff-content .post-content .thumb-img:hover,
.staff-content .post-content .thumb-img:focus{
    transform: scale(1.2);
}
.staff-content .post-content .floor{
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 14px;
}
.staff-content .post-content .brand-name{
    margin-bottom: 0px;
    font-size: 16px;
}
.staff-content .post-content .brand-link{
    color: var(--black);
    text-decoration: none;
}
.staff-content .post-content .brand-link:hover,
.staff-content .post-content .brand-link:focus{
    color: var(--black);
    text-decoration: none;
}
.staff-content .post-content .staff-name{
    margin-bottom: 0px;
    font-size: 14px;
}
.sec2-staff{
    margin-bottom: 40px;
    max-width:1100px;
    margin:0 auto;
}

/*===================
    STAFF SINGLE STYLE
====================*/
.sec1-single .container{
    max-width: 800px;
}
.sec1-single .single-content{
    padding: 80px 20px;
}
.sec1-single .single-content .s-logo{
    width: 100%;
    max-width: 280px;
}
.sec1-single .single-content .shop-logo{
    margin-bottom: 40px;
}
.sec1-single .single-content .post-thumb img{
    width: 100%;
    max-width: 600px;
}
.sec1-single .single-content .post-thumb{
    margin-bottom: 30px;
}
.sec1-single .single-content .post-text{
    margin-bottom: 45px;
}
.sec1-single .single-content .brand-name{
    font-size: 1.7rem;
    margin-bottom: 0px;
}
.sec1-single .single-content .main-content{
    margin-bottom: 45px;
}
.sec1-single .single-content .main-content p{
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.5rem;
    margin-bottom: 2rem;
}
.sec1-single .single-content .main-content img{
    width: 100%;
    display: block;
    max-width: 600px;
    margin: 10px auto 20px auto;
}
.btn-cta .cta-single{
    border-radius: 0px;
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    overflow: hidden;
}
.cta-single .arrow-black-left{
    position: absolute;
    width: 60px;
    height: 60px;
    border-left: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    left: 20px;
    transform: rotate(45deg);
}
.btn-cta .cta-single:hover,
.btn-cta .cta-single:focus{
    background-color: var(--black);
    color: var(--white);
    text-decoration: none;
}
.btn-cta .cta-single:hover .arrow-black-left,
.btn-cta .cta-single:focus .arrow-black-left{
    border-left: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}
/*===================
    GOURMENT STYLE
    FAMILY STYLE
    TREND STYLE
====================*/
.content-loop-wrap .brand-box{
    margin-bottom: 40px;
}
.content-loop-wrap .box img{
    max-width: 100vw;
}
.content-loop-wrap .brand-box:nth-child(even) .row{
    flex-direction: row-reverse;
}
.content-loop-wrap .detail-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.content-loop-wrap .detail-wrap .des-box p{
   font-size: 14px;
   letter-spacing: 2px;
   line-height: 1.3rem;
}
.slick-dots li button:before{
    font-size: 6px;
}
.middle-bar-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 40px;
}
.middle-bar{
    width: 100%;
    max-width: 350px;
    height: 1px;
    background-color: var(--black);
}
/*===================
    FEATURE STYLE
====================*/
.feature-wrap{
    padding: 40px 0px 0px 0px;
    background-color: var(--menueback);
}
.feature-content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 60px;
}
.feature-content .feature-box{
    margin: 10px 5px;
}
.feature-bg-pattern{
    width: 100%;
    width: 100%;
    height: 50px;
    overflow: hidden;
    background-color: var(--menueback);
    background-repeat: repeat;
}
/*===================
    FOOTER STYLE
====================*/
.footer-content{
    width: 100%;
    max-width: 700px;
    padding: 10px 20px;
    margin: 0 auto;
}
.footer-content .para{
    font-size: 14px;
    margin-bottom: 5px;
}
.footer-content .para-wrap{
    width: 100%;
    max-width: 600px;
    margin: 0px auto 30px auto;
}
.footer-content .address-area{
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 20px 0px 50px 0px;
    text-align: center;
}
.footer-content .copyright .copy{
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
}





/*-------- max width 900 ------------------*/
@media only screen and (max-width: 900px) {
    .sec2-content .txt-content .num{
        font-size: 6rem;
    }
    .sec2-content .txt-content .area-title{
        font-size: 1.6rem;
        margin-top: -4rem;
    }
    .sec2-content .txt-content .numbox{
        margin-bottom: 40px;
    }
.keyword{
    top:-125%;
    left:34%;
    color:#4da2b6;
    font-weight:bold;
    font-size:9vw;
    position:absolute;
}
}
/*-------- max width 768 ------------------*/
@media only screen and (max-width: 768px) {
.visible768{
    display: none;
}
.visible767{
    display: block;
}
.nav-menu{
    max-width: unset;
}
    .sec2-content .margin-dif .numbox{
        margin-bottom: -20px;
        z-index: 2;
        position: relative;
    }
    .sec2-content  .img-content{
        margin-bottom: 20px;
    }
    .btn-cta{
        margin-bottom: 25px;
    }
    .vertical-bar{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .vertical-bar span{
        height: 96px;
        width: 1px;
        background-color: var(--black);

    }
    .sec2{
        padding: 70px 0px;
    }
    .sec2-content{
        margin-bottom: 20px;
    }
    .sec4{
        padding-right:20px ;
        padding-left: 20px;
    }
    .sec4 .lottery-area{
        padding: 40px 20px;
    }
    .staff-content{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr ;
    }
    .feature-content{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .staff-content .post-content .brand-link{
        font-size: 14px;
    }
    .staff-content .post-content .staff-name,
    .staff-content .post-content .floor{
        font-size: 12px;
    }
    .header .logowrap .nav-logo .logo-top,
    .header-secondary .logowrap .nav-logo .logo-top{
        width: 100%;
        max-width: 200px;
    }
    .content-loop-wrap .brand-box:nth-child(even) .row{
        flex-direction: unset;
    }
    .content-loop-wrap .brand-box{
       padding: 20px;
    }
    .header .logowrap{
        height: 100px;
    }
.keyword{
    top:-100%;
    left:33%;
    color:#4da2b6;
    font-weight:bold;
    font-size:9vw;
    position:absolute;
}
}
/*-------- max width 567 ------------------*/
@media only screen and (max-width: 567px) {
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }
    .sec3 .content-box .date-box{
        font-size: 1.8rem;
    }
    .sec3 .content-box .date-box .day{
        font-size: 14px;
       
    }
    .sec3 .sec3-content .content-wrap .img-box{
        margin-bottom: 25px;
    }
    .sec3 .sec-title-area .sec-title h3{
        font-size: 24px;
    }
    .btn-cta .cta2{
        width: 100%;
        height: 80px;
        font-size: 14px;
    }
    .staff-content{
        display: grid;
        grid-template-columns: 1fr 1fr  ;
    }
    .feature-content{
        display: grid;
        grid-template-columns: 1fr ;
    }
    .feature-bg-pattern{
        height: 100px;
        background-color:#4da2b6;
	
        background-repeat: repeat;
    }
    .sec4,
    .sec3 .bg-pattern{
        background-color:#4da2b6;
    }
    .area-sec-title .title-text{
        font-size: 1.4rem;
    }
.keyword{
    top:55%;
    left:33%;
    color:#4da2b6;
    font-weight:bold;
    font-size:9vw;
    position:absolute;
}
}