@charset "utf-8";

/* COMMON
---------------------------------------------------------------------------- */	
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

@font-face{
    font-family: bebas;
    src: url("../font/Bebas-Regular.ttf")format("truetype");
}

body{
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    color:#333;
}
.mac body{
    font-size: 15px;
}
a{
    text-decoration:underline; 
    color: #333;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
a:hover{ text-decoration: none; }

@media screen and (max-width:768px){
    body{
        font-size: 14px;
    }
}

/* header
---------------------------------------------------------------------------- */
.header{
    width:100vw;
    height: 100px;
    background-color: #fff;
    position: fixed;
    top:0;
    left:0;
    display:flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 88888;
}

/* logo */
.header-logo {
	padding: 32px 50px;
    font-size: 28px;
    font-weight: bold;
}
.header-logo a{
    display: block;
    color: #1EA52C;
    font-family: "Noto Serif JP", serif;
    text-decoration: none;
}

/* nav */
.header-menu ul{
    display: flex;
    align-items: center;
    padding-right: 50px;
}
.header-menu ul li{
    margin-left: 30px;
}
.header-menu ul li a{
    display: block;
    text-decoration: none;
}

.header-menu-shop span{
    display: block;
    text-align: center;
    font-size:12px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: -23px;
}
.header-menu-shop span::before,
.header-menu-shop span::after{
    width:10px;
    height: 14.5px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    content: "";
    display: inline-block;
    vertical-align: middle;
}
.header-menu-shop span::before{
    background-image: url("../images/header_nav_l.png");
    margin-right: 10px;
}
.header-menu-shop span::after{
    background-image: url("../images/header_nav_r.png");
    margin-left: 10px;
}



@media screen and (max-width:768px){
    .header{
        width:100vw;
        height: 60px;
    }

    /* logo */
    .header-logo {
        padding: 10px;
        font-size: 15px;
    }

    /* nav */
    .header-menu{
        position: fixed;
        top: 60px;
        left:100vw;
        width: 100%;
        height: calc(100vh - 60px);
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all  0.3s ease;
        background-color: #F5FFE5;
        padding: 30px;
    }
    .header-menu.is-open{
        left: 0;
    }
    .header-menu ul{
        display: block;
        padding-right: 0;
    }
    .header-menu ul li{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .header-menu ul li:last-child{
        margin-top: 50px;
    }

    .header-sp{
        width: 60px;
        height: 60px;
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        background-color: transparent;
    }
    
    .header-sp span {
        position: absolute;
        left: 15px;
        width: 50%;
        height: 4px;
        background-color: #1EA52C;
        border-radius: 4px;
        transition: all .5s;
    }
    .header-sp span:nth-of-type(1) {
      top: 20px;
    }
    .header-sp span:nth-of-type(2) {
      top: 30px;
    }
    .header-sp span:nth-of-type(3) {
      top: 40px
    }
    
    .header-sp.is-open span:nth-of-type(1){
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    .header-sp.is-open span:nth-of-type(2){
        opacity: 0;
        left:100%;
    }
    .header-sp.is-open span:nth-of-type(3){
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
}



/* wrap
---------------------------------------------------------------------------- */
.wrap{
    padding-top: 100px;
}
@media screen and (max-width:768px){
    .wrap{
        padding-top: 60px;
    }
}

/* main
---------------------------------------------------------------------------- */
.main{
   
}

.main-ttl{
    height: 200px;
    width:100%;
    background-image: url("../images/page_mv.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.main-ttl h1{
    padding-top: 80px;
    font-size:30px;
    font-weight: 700;
    color: #1EA52C;
    font-family: "Noto Serif JP", serif;
}

@media screen and (max-width:768px){
    .main-ttl{
        height: 120px;
        background-position: left center;
    }
    .main-ttl h1{
        padding-top: 50px;
        font-size:18px;
        text-align: center;
    }
}


/* footer
---------------------------------------------------------------------------- */
.footer{
    color: #fff;
    background-color: #292929;
    padding: 50px 0;
}

/* cta */
.footer-cta{
    text-align: center;
    padding:50px 0 100px;
}

/* main */
.footer-inner{
    display: flex;
    align-items: flex-start;
}

.footer-company,
.footer-link{
    width: 50%;
}

.footer-company-ttl{
    font-size: 28px;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 30px;
}

.footer-company ul{
    margin-bottom: 30px;
}
.footer-company ul li{
    margin-bottom: 15px;
}
.footer-company ul li i{
    margin-right: 10px;
    color: #fff;
}

.footer-link ul li{
    margin-bottom: 20px;
}
.footer-link ul li a{
    color: #fff;
    text-decoration: none;
    font-size:16px;
    font-weight: 500;
}
.footer-link ul li a:hover{
    text-decoration: underline;
}

.footer-link-copy{
    text-align: right;
    font-size:11px;
    margin-top: 150px;
}

@media screen and (max-width:768px){

    /* cta */
    .footer-cta{
        padding:30px 0 50px;
    }

    /* main */
    .footer-inner{
        display: block;
    }

    .footer-company,
    .footer-link{
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-company-ttl{
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-company ul{
        margin-bottom: 15px;
    }
    .footer-company ul li{
        margin-bottom: 10px;
    }

    .footer-link ul li{
        margin-bottom: 10px;
    }

    .footer-link-copy{
        text-align: right;
        font-size:11px;
        margin-top: 50px;
    }
}