@charset "UTF-8";

/* MV
---------------------------------------------------*/
#mv {
    background-image: url('../images/top/fv_bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    margin-top: 70px;
    margin-bottom: 120px;
    padding-bottom: 40px;
    flex-shrink: 0;
    overflow: hidden;
}
#mv .inner {
    position: relative;
    width: 90.6255%;
    margin: 0 auto;
    padding: 138px 0 60px;
}
#mv .inner .mv_txt {
    width: 46.72%;
    margin-bottom: 160px;
}
#mv .inner .mv_halal {
    position: absolute;
    top: 109.8px;
    right: -38px;
    width: 36.2%;
    transform: rotate(-15deg);
}
#mv .inner .mv_txt img { width: 100%;}
#mv .inner .mv_search .search-bar {
    margin: 0 auto;
}

/*  768px  */
@media screen and (max-width: 768px) {

    #mv {
        background-image: url('../images/top/fv_sp.webp');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        width: 100%;
        margin-top: 17.92vw;
        margin-bottom: 30.72vw;
        padding-bottom: 0;
        flex-shrink: 0;
        overflow: hidden;
    }
    #mv .inner {
        width: 89.7%;
        margin: 0 auto;
        padding: 5.12vw 0 23.04vw;
    }
    #mv .inner .mv_txt {
        width: 100%;
        margin-bottom: 91.90vw;
    }
    #mv .inner .mv_halal {
        position: absolute;
        width: 320px;
        top: 240px;
        left: 14px;
        transform: rotate(-15deg);
    }
    #mv .inner .mv_txt img { width: 100%;}
    #mv .inner .mv_search .search-bar {
        margin: 0 auto;
    }
    
}

.ttl_part {
    border-radius: 10px;
	-webkit-border-radius: 10px;
    background-color: #E0F0F3;
    padding: 10px 20px !important;
    margin: 0 !important;
}

/*  768px  */
@media screen and (max-width: 768px) {

    .ttl_part {
        border-radius: 2.56vw;
        -webkit-border-radius: 2.56vw;
        padding: 2.56vw 5.12vw !important;
    }

}

/* new_prod
---------------------------------------------------*/
#new_prod {
    width: 100%;
    margin-bottom: 80px;
}
#new_prod .inner {
    width: 93.75%;
    max-width: 1200px;
    margin: 0 auto;
}
#new_prod .inner ul {
    display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	justify-content: flex-start;
    -webkit-justify-content: flex-start;
    margin-top: 40px;
}
#new_prod .inner ul li {
    width: 15.41%;
    margin-left: 12px;
}
#new_prod .inner ul .img a img {
    width: 100%;
    height: 200px;
}


/*  768px  */
@media screen and (max-width: 768px) {

    #new_prod {
        margin-bottom: 30.72vw;
    }
    #new_prod .inner {
        width: 100%;
        max-width: 89.7%;
        margin: 0 auto;
    }
    #new_prod .inner ul {
        margin-top: 10.24vw;
    }
    #new_prod .inner ul li {
        width: 48.8%;
        margin-bottom: 5.12vw;
    }

}



/* category
---------------------------------------------------*/
#category {
    width: 100%;
    margin-bottom: 240px;
}
#category .inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
#category .inner ul {
    display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	justify-content: center;
    -webkit-justify-content: center;
}
#category .inner ul li {
    margin-top: 40px;
    margin-left: 20px;
    width: 21.67%;
}
#category .inner ul li:first-child,
#category .inner ul li:nth-child(5) {
    margin-left: 0;
}
#category .inner ul li .img {
    width: 100%;
}
#category .inner ul li a {
    border-radius: 16px;
	-webkit-border-radius: 16px;
    display: block;
    width: 100%;
    padding: 16px;
    transition: all 0.5s; 
    -webkit-transition: all 0.5s; 
    position: relative;
}
#category .inner ul li a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 6px solid #129CDE;
    content: '';
    border-radius: 16px;
	-webkit-border-radius: 16px;
}
#category .inner ul li a .img  {
    width: 64px;
    margin: 0 auto;
    transition: all 0.5s; 
    -webkit-transition: all 0.5s; 
}
#category .inner ul li a .img.hover { display: none;}
#category .inner ul li a .img img { width: 100%;}
#category .inner ul li a h4 {
    color: #129CDE;
    font-family: "Kiwi Maru", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3em;
    text-align: center;    
    margin-top: 10px;   
}
#category .inner ul li a:hover {
    transition: all 0.5s; 
    -webkit-transition: all 0.5s; 
    opacity: 1;
    background: linear-gradient(#129CDE, #18668B);
}
#category .inner ul li a:hover::before {
    display: none;
}
#category .inner ul li a:hover .img.normal { display: none;}
#category .inner ul li a:hover .img.hover { display: block;}
#category .inner ul li a:hover h4 { color: #FFF;}

/*  768px  */
@media screen and (max-width: 768px) {

    #category {
        width: 100%;
        margin-bottom: 30.72vw;
    }
    #category .inner {
        width: 100%;
        max-width: 89.7%;
        margin: 0 auto;
    }
    #category .inner ul {
        display: block;
    }
    #category .inner ul li {
        margin-top: 10.24vw;
        margin-left: 0;
        width: 100%;
    }
    #category .inner ul li a {
        border-radius: 4.096vw;
        -webkit-border-radius: 4.096vw;
        padding: 4.096vw;
        display: flex;
        justify-content: flex-start;
        -webkit-justify-content: flex-start;
    }
    #category .inner ul li a::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1.536vw solid #129CDE;
        content: '';
        border-radius: 4.096vw;
        -webkit-border-radius: 4.096vw;
    }
    #category .inner ul li a .img  {
        width: 16.384vw;
        margin: 0;
        margin-left: 5.12vw; 
    }
    #category .inner ul li a h4 {
        color: #129CDE;
        font-family: "Kiwi Maru", serif;
        font-size: 5.12vw;    
        margin-top: 2.56vw;
        margin-left: 7.68vw;
        text-align: left;  
    }
    #category .inner ul li a:hover {
        transition: all 0.5s; 
        -webkit-transition: all 0.5s; 
        opacity: 1;
        background: linear-gradient(#129CDE, #18668B);
    }
    #category .inner ul li a:hover::before {
        display: none;
    }
    #category .inner ul li a:hover .img.normal { display: none;}
    #category .inner ul li a:hover .img.hover { display: block;}
    #category .inner ul li a:hover h4 { color: #FFF;}

}



/* news
---------------------------------------------------*/
#news {
    width: 100%;
    margin-bottom: 240px;
}
#news .inner {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}
#news .inner .ttl_part {
    padding: 0;
}
#news .inner .news_inner {
    margin-top: 40px;
}
#news .inner .news_inner dl a {
    background-color: #FFF;
    border-radius: 10px;
    display: block;
    margin-top: 20px;
    padding: 16px 48px 16px 16px;
    position: relative;
}
#news .inner .news_inner dl a::before {
    position: absolute;
    top: 50%;
	right: 16px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
    width: 24px;
    height: 24px;
    background-image: url('../images/icon/icon_arrow_right.svg');
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
}
#news .inner .news_inner dl a dt {
    color: #B8B8B8;
    font-family: Kiwi Maru;
    font-size: 10px;
    font-weight: 300;
    line-height: 1.6em;
    text-align: left;
}
#news .inner .news_inner dl a dd {
    color: #3C3C3C;
    font-family: Kiwi Maru;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7em;
    overflow: hidden;
    letter-spacing: 0.04em;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#news .inner .empty {
    color: #606060;
    font-family: "Zen Maru Gothic", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85em;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    text-align: center;    
}
/*  768px  */
@media screen and (max-width: 768px) {

    #news {
        margin-bottom: 30.72vw;
    }
    #news .inner {
        width: 100%;
        max-width: 89.7%;
        margin: 0 auto;
    }
    #news .inner .news_inner {
        margin-top: 10.24vw;
    }
    #news .inner .news_inner dl a {
        border-radius: 2.56vw;
        margin-top: 5.12vw;
        padding: 4.096vw 12.288vw 4.096vw 4.096vw;
    }
    #news .inner .news_inner dl a::before {
        right: 4.096vw;
        width: 6.144vw;
        height: 6.144vw;
    }
    #news .inner .news_inner dl a dt {
        font-size: 2.56vw;
    }
    #news .inner .news_inner dl a dd {
        font-size: 3.584vw;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: unset;
        white-space: unset;
    }

}



/* info
---------------------------------------------------*/
#info {
    width: 100%;
    margin-bottom: 120px;
}
#info .inner {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
}
#info .inner ul {
    display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	justify-content: space-between;
    -webkit-justify-content: space-between;
    margin: 40px auto 0;
    width: 740px;
}
#info .inner ul li {
    width: 47.29%;
}
#info .inner ul li a {
    background-color: #129CDE;
    display: flex;
    display: -webkit-flex;
	flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
	justify-content: space-between;
    -webkit-justify-content: space-between;
    padding: 20px;
}
#info .inner ul li a:hover {
    opacity: 1;
    background: linear-gradient(to bottom, #129CDE, #18668B);
}
#info .inner ul li a .img {
    width: 27%;
}
#info .inner ul li a .img img { width: 100%;}
#info .inner ul li a .detail {
    width: 65%;
}
#info .inner ul li a .detail h4 {
    color: #FFF;
    font-family: Kiwi Maru;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3em;
    text-align: left;
}
#info .inner ul li a .detail h5 {
    color: #FFF;
    font-family: Kiwi Maru;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7em;
    text-align: left;

}


/*  768px  */
@media screen and (max-width: 768px) {

    #info {
        margin-bottom: 15.36vw;
    }
    #info .inner {
        width: 100%;
        max-width: 89.7%;
        margin: 0 auto;
    }
    #info .inner ul {
        display: block;
        margin: 10.24vw auto 0;
        width: 100%;
    }
    #info .inner ul li {
        width: 100%;
    }
    #info .inner ul li:first-child {
        margin-bottom: 5.12vw;
    }
    #info .inner ul li a {
        padding: 5.12vw;
    }
    #info .inner ul li a .detail h4 {
        font-size: 5.12vw;
    }
    #info .inner ul li a .detail h5 {
        font-size: 3.584vw;
    }

}

