@charset "utf-8";
/* CSS Document */

/* base
-----------------------------------------------*/
/* ========== universal reset ========== */
/* ========== base style ========== */

/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* ========== border ========== */
/* ========== float ========== */
/* ========== display ========== */
/* ========== position ========== */
/* ========== overflow ========== */
/* ========== width ========== */
/* ========== margin ========== */
/* ========== background ========== */
/* ========== modal ========== */
/* ========== device displaying ========== */
/* ========== animation for ScrollTrigger.min.js  ========== */

/* other style
-----------------------------------------------*/



/* base
-----------------------------------------------*/
/* ========== universal reset ========== */
/**
* html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
* Richard Clark (http://richclarkdesign.com)
* http://cssreset.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
button, input, select, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body { line-height:1; }
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
nav ul { list-style:none; }
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
a {
margin:0;
padding:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}


/* ========== base style ========== */
* { box-sizing: border-box; }

html { height: 100%; }

body {
height: 100%;
min-height: 100%;
	background: url("../images/bg_sp.jpg") 0 0 / 750px auto repeat #beb4aa;
color: #000;
font-size: 11px;
font-family: bressay, serif;
font-weight: 400;
font-feature-settings: "palt";
}
@media (max-width:374px){
	body {
	font-size: 2.93vw;
	}
}
@media (min-width:768px){
	body {
	background: url("../images/bg_pc.jpg") 0 0 / 1000px auto repeat #beb4aa;
	}
}

a:link,
a:visited {
color: #000;
text-decoration: 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,
a:hover img,
button:hover img {
opacity: 0.70;
filter: alpha(opacity=80);
-webkit-transform: scale(1.03);
-moz-transform: scale(1.03);
-o-transform: scale(1.03);
-ms-transform: scale(1.03);
transform: scale(1.03);
}
.lnav li a:hover img {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}

div,p,h1,h2,h3,h4,h5,h6,li,dt,dd,th,td {
line-height: 100%;
font-family: bressay, serif;
font-weight: normal;
font-feature-settings: "palt";
letter-spacing: 0.025em;
}

div, article { box-sizing: border-box; }

ol, ul { list-style:none; }

img, video {
width: 100%;
display: block;
margin-left: auto;
margin-right: auto;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all  0.3s ease;
}



/* common parts
-----------------------------------------------*/
/* ========== text ========== */
/* align */
.al_left { text-align: left; }
.al_center { text-align: center; }
.al_right { text-align: right; }

/* size */
.fs10 { font-size: 10px; }
.fs11 { font-size: 11px; }
.fs12 { font-size: 12px; }
.fs13 { font-size: 13px; }
.fs14 { font-size: 14px; }
.fs15 { font-size: 15px; }
.fs16 { font-size: 16px; }
.fs17 { font-size: 17px; }
.fs18 { font-size: 18px; }
.fs19 { font-size: 19px; }
.fs20 { font-size: 20px; }
@media (max-width:374px){
	.fs10 { font-size: 2.67vw; }
	.fs11 { font-size: 2.93vw; }
	.fs12 { font-size: 3.2vw; }
	.fs13 { font-size: 3.47vw; }
	.fs14 { font-size: 3.73vw; }
	.fs15 { font-size: 4vw; }
	.fs16 { font-size: 4.27vw; }
	.fs17 { font-size: 4.53vw; }
	.fs18 { font-size: 4.8vw; }
	.fs19 { font-size: 5.07vw; }
	.fs20 { font-size: 5.33vw; }
}

/* weight */
.fw400 { font-weight: 400 !important; }
.fw500 { font-weight: 500 !important; }
.fw700 { font-weight: 700 !important; }

/* line height */
.lh130 { line-height: 130%; }
.lh140 { line-height: 140%; }
.lh150 { line-height: 150%; }
.lh160 { line-height: 160%; }
.lh170 { line-height: 170%; }
.lh180 { line-height: 180%; }
.lh190 { line-height: 190%; }
.lh200 { line-height: 200%; }
.lh210 { line-height: 210%; }


/* ========== float ========== */
/* clearfix */
.clearfix:before,
.clearfix:after {
display: table;
content: " ";
}
.clearfix:after { clear: both; }

/* float */
.float_left { float: left; }
.float_right { float: right; }


/* ========== display ========== */
.disp_block { display: block !important;}
.disp_iblock { display: inline-block !important;}
.disp_inline { display: inline !important;}
.disp_none { display: none;}
.disp_flex { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; }


/* ========== position ========== */
.posi_relative { position: relative !important; }
.posi_absolute { position: absolute !important; }
.posi_fixed { position: fixed !important; }


/* ========== overflow ========== */
.overflow_hidden { overflow: hidden !important; }


/* ========== margin ========== */
/* margin-auto */
.mx_auto { margin-left: auto; margin-right: auto; }


/* ========== device displaying ========== */
.sp_none{ display: none; }
@media (min-width:768px){.sp_none{display: block;} .tab_none { display: none; }}
.sp_only{ display: block; }
@media (min-width:768px){.sp_only{display: none;}}
.spc_none{ display: block; }
@media (min-width:991px){.s-pc_none{display: none;}}
.spc_above{ display: block; }
@media (max-width:992px){.s-pc_above{ display:none;}}
.pc_none{ display: block; }
@media (min-width:999px){.pc_none{display: block;}}
.pc_only{ display: none; }
@media (min-width:1000px){.pc_none{display: none;}
.pc_only{display: block;}
.tab_none{ display: block; }
}


/* ========== animation for ScrollTrigger.min.js  ========== */
.invisible {
transition: opacity 1s ease;
opacity: 0.0;
}
.visible {
transition: opacity 1s ease;
opacity: 1.0;
}


/* other style
-----------------------------------------------*/
.allwrapper { /* Xscroll bar hidden */
width: 100%;
overflow: hidden;
animation-delay: 0.75s;
}
.ff_ryogo {
font-family: ryo-gothic-plusn, sans-serif;
}
.ff_didot {
font-family: linotype-didot, serif;
}
.allwrapper a {
text-decoration: underline;
}

/* header */
.header {
padding: 25px 0;
}
.header_logo {
width: 76vw;
}
@media (min-width:768px){
	.header {
	padding: 50px 0;
	}
	.header_logo {
	width: 325px;
	}
}

/* mv */
.mv {
min-height: 195vw;
}
.mv_img {
animation-delay: 1.25s;
}
.mv h1 {
top: 82.93vw;
right: 0;
width: 34vw;
animation-delay: 2s;
}
.intro {
padding: 16vw 0 19.33vw;
}
.intro_title {
width: 64.27vw;
max-width: 241px;
margin-bottom: 14.67vw;
}
.intro p {
line-height: 225%;
margin-bottom: 2.25em;
letter-spacing: 0.05em;
}
.intro p:last-child {
margin-bottom: 0;
}
.lnav ul {
width: 255px;
margin-bottom: -15px;
}
.lnav li {
width: 70px;
margin-bottom: 15px;
}
@media (min-width:768px){
	.mv {
	min-height: 48vw;
	}
	.mv_inner.sp_none {
	display: flex;
	}
	.mv_img {
	width: 50%;
	margin: 0;
	}
	.mv h1 {
	top: 21.5vw;
	right: 41.5vw;
	width: 17vw;
	}
	.intro {
	padding: 75px 0 80px;
	}
	.intro_title {
	margin-bottom: 50px;
	}
	.lnav ul {
	width: 530px;
	}
	.lnav li:nth-child(2) { animation-delay: 0.15s; }
	.lnav li:nth-child(3) { animation-delay: 0.3s; }
	.lnav li:nth-child(4) { animation-delay: 0.45s; }
	.lnav li:nth-child(5) { animation-delay: 0.6s; }
	.lnav li:nth-child(6) { animation-delay: 0.75s; }
}
.allitems01 {
width: 84vw;
padding: 24vw 0 32vw;
border-bottom: 1px solid #000;
}
.allitems02 {
padding: 42.67vw 0 24vw;
}
.allitems a {
letter-spacing: 0.025em;
font-family: abril-fatface, serif;
}
@media (min-width:768px){
	.allitems01 {
	width: 670px;
	padding: 90px 0 115px;
	}
	.allitems02 {
	padding: 165px 0 70px;
	}
}
@media (min-width:900px) {
	.allitems01 {
	width: 750px;
	}
}

.sec_title {
position: relative;
font-size: 9.6vw;
letter-spacing: 0.025em;
z-index: 3;
}
.price {
position: relative;
}
.price li {
margin-bottom: 3px;
line-height: 165%;
text-align: right;
}
.price a {
text-decoration: none;
}
.price .itemname {
margin-right: 6px;
text-decoration: underline;
}
.price .buy {
display: inline-block;
margin-left: 6px;
background: #000;
vertical-align: middle;
padding: 4px 7px 1px;
line-height: 100%;
font-size: 10px;
color: #fff;
}
figure, .text, .price {
position: relative;
}
@media (min-width:768px){
	.sec_title {
	font-size: 48px;
	}
}

.sec_cassis {
margin-top: 14.5vw;
padding: 14.5vw 0 18.33vw;
}
.sec_cassis .sec_title {
margin: 0 auto -4.5vw 5.3vw;
}
.img01 .slick-slide img,
.img02 .slick-slide img,
.img03 .slick-slide img {
width: 90vw !important;
margin: 0 auto;
}
.price01,
.price02,
.price03 {
width: 70vw;
margin: 3vw 6vw 0 auto;
}
.sec_coffee-cookie {
padding: 8.33vw 0 18.33vw;
}
.sec_coffee-cookie .sec_title {
margin: 0 5.3vw -4.5vw auto;
}
.sec_blueberry {
padding: 8.33vw 0 28.66vw;
}
.sec_blueberry .sec_title {
margin: 0 auto -4.5vw;
}
.img04 {
width: 38vw;
margin: 36.67vw auto 0 13.87vw;
z-index: 1;
}
.img05 {
width: 44.53vw;
margin: -24vw auto 0 47.333vw;
z-index: 0;
}
.price04,
.price05 {
margin: 4vw 9.33vw 0 auto;
}
.img06 {
width: 70.13vw;
margin: 14vw 9.33vw 0 auto;
}
.img07 {
width: 97.5vw;
margin: 12vw auto 0;
}
.price06 {
margin: 3vw 4vw 0 auto;
}
.sec_almondbutter {
padding: 8.66vw 0 25.66vw;
}
.sec_almondbutter .sec_title {
margin: 0 auto -15vw 5.7vw;
}
.img08 {
width: 72.66vw;
margin: 0 auto 0 23.33vw;
}
.price07 {
margin: 3vw 6vw 0 auto;
}
.sec_milk {
padding: 9vw 0 24vw;
}
.sec_milk .sec_title {
margin: 0 auto -5.5vw 45.33vw;
}
.img09 {
width: 57.33vw;
margin: 0 auto 0 2vw;
}
.price08 {
margin: 3vw 60.67vw 0 auto;
}
.price08 .itemname,
.price09 .itemname {
margin-right: 0;
}
.img10 {
width: 46.67vw;
margin: -41vw 4.67vw 0 auto;
}
.price09 {
margin: 3vw 6vw 0 auto;
}
.sec_midnightsesame {
padding: 8vw 0 0;
}
.sec_midnightsesame .sec_title {
margin: 0 auto -4vw 6vw;
}
.img11 {
width: 72.67vw;
}
.price10 {
margin: 3vw 14vw 0 auto;
}
@media (min-width:768px){
	.sec_cassis {
	margin-top: 85px;
	padding: 85px 0 80px;
	}
	.sec_cassis .sec_title {
	width: 250px;
	margin: 0 auto -20px calc(50% - 275px);
	}
	.img01,
	.img02,
	.img03 {
	width: 670px;
	}	
	.img01 .slick-slide img,
	.img02 .slick-slide img,
	.img03 .slick-slide img {
	width: 510px !important;
	}
	.price01 {
	width: 350px;
	margin: 15px auto 0 calc(50% - 255px);
	}
	.price01 li {
	text-align: left;
	}
	.price02,
	.price03 {
	width: 350px;
	margin: 15px calc(50% - 250px) 0 auto;
	}
	.sec_coffee-cookie {
	padding: 70px 0 80px;
	}
	.sec_coffee-cookie .sec_title {
	width: 250px;
	margin: 0 auto -25px 50%;
	}
	.sec_blueberry {
	padding: 70px 0 95px;
	}
	.sec_blueberry .sec_title {
	width: 250px;
	margin: 0 auto -25px;
	}
	.img04 {
	width: 214px;
	margin: 170px auto 0 calc(50% - 365px);
	}
	.img05 {
	width: 251px;
	margin: -20px auto 0 calc(50% - 325px);
	}
	.price04 {
	margin: 15px calc(50% + 80px) 0 auto;
	}
	.img06 {
	width: 395px;
	margin: -465px auto 0 calc(50% - 25px);
	}
	.price05 {
	margin: 15px calc(50% - 370px) 0 auto;
	}
	.img07 {
	width: 555px;
	margin-top: 115px;
	}
	.price06 {
	margin: 15px calc(50% - 270px) 0 auto;
	}
	.sec_almondbutter {
	padding: 70px 0 80px;
	}
	.sec_almondbutter .sec_title {
	margin: 0 auto -70px calc(50% - 120px);
	}
	.img08 {
	width: 410px;
	margin: 0 calc(50% - 370px) 0 auto;
	}
	.price07 {
	margin: 15px calc(50% - 370px) 0 auto;
	}
	.sec_milk {
	padding: 70px 0 80px;
	}
	.sec_milk .sec_title {
	margin: 0 auto -25px calc(50% - 120px);
	}
	.img09 {
	width: 324px;
	margin: 0 auto 0 calc(50% - 370px);
	}
	.price08 {
	margin: 15px calc(50% + 55px) 0 auto;
	}
	.price08 .itemname, .price09 .itemname {
	margin-right: 6px;
	}
	.img10 {
	width: 262px;
	margin: -315px auto 0 50%;
	}
	.price09 {
	margin: 15px calc(50% - 255px) 0 auto;
	}
	.sec_midnightsesame {
	padding: 70px 0 0;
	}
	.sec_midnightsesame .sec_title {
	margin: 0 auto -20px calc(50% - 295px);
	}
	.img11 {
	width: 410px;
	margin: 0 auto 0 calc(50% - 240px);
	}
	.price10 {
	margin: 15px calc(50% - 168px) 0 auto;
	}
}
@media (min-width:900px) {
	.sec_coffee-cookie .sec_title { margin-left: calc(50% + 105px); }
	.img02 { margin-left: calc(50% - 230px); }
	.price02 { margin-right: calc(50% - 350px); }
	.sec_blueberry .sec_title { margin-left: calc(50% - 250px); text-align: left; }
	.img03 { margin-left: calc(50% - 470px); }
	.price03 { margin-right: calc(50% - 115px); }
	.img04 { margin-left: calc(50% - 330px); }
	.img05 { margin-left: calc(50% - 285px); }
	.price04 { margin-right: calc(50% + 40px); }
	.img06 { margin-left: calc(50% + 23px); }
	.price05 { margin-right: calc(50% - 415px); }
	.sec_almondbutter .sec_title { margin-left: calc(50% - 70px); }
	.img08 { margin-left: calc(50% + 10px); }
	.price07 { margin-right: calc(50% - 415px); }
	.sec_milk .sec_title { margin-left: calc(50% - 170px); }
	.img09 { margin-left: calc(50% - 420px); }
	.price08 { margin-right: calc(50% + 105px); }
	.img10 { margin-left: calc(50% - 50px); }
	.price09 { margin-right: calc(50% - 205px); }
}

.slick-dots {
width: auto;
z-index: 5;
left: 4vw;
bottom: -6.67vw;
}
.slick-dotted.slick-slider {
margin-bottom: 0 !important;
}
.slick-dots li {
width: 18px;
margin: 0;
}
.slick-dots li button {
position: relative;
width: 18px;
padding: 0;
}
.slick-dots li button:before {
width: 18px;
margin-top: 0;
opacity: 1 !important;
font-family: bressay, serif;
font-size: 13px;
text-align: center;
font-style: italic;
letter-spacing: 0;
color: #000 !important;
}
.slick-dots li.slick-active button:before {
color: #666666 !important;
}
.slick-dots li:first-child button:before {
content: "1";
}
.slick-dots li:nth-child(2) button:before {
content: "2";
}
.slick-dots li:nth-child(3) button:before {
content: "3";
}
.slick-dots li:nth-child(4) button:before {
content: "4";
}
@media (min-width:768px){
	.slick-dots {
	left: calc(50% - 255px);
	bottom: -27px;
	}
	.img01 .slick-dots {
	left: calc(50% + 195px);
	}
}

.slide-arrow {
position: absolute;
top: calc(50% - 4.7vw);
width: 4.8vw !important;
z-index: 5;
cursor: pointer;
}
.img08 .slide-arrow,
.img14 .slide-arrow {
top: 42%;
}
.prev-arrow {
left: 3.33vw;
}
.next-arrow {
right: 3.33vw;
}
@media (min-width:768px){
	.slide-arrow {
	width: 25px !important;
	top: calc(50% - 25px);
	}
	.prev-arrow {
	left: 70px;
	}
	.next-arrow {
	right: 70px;
	}
}

.brandbox {
width: 78.66vw;
margin: 16.67vw auto 0;
}
.brandlogo {
margin: 0 auto 5vw;
}
.agnesb .brandlogo {
width: 33.33vw;
}
.nergy .brandlogo {
width: 28vw;
}
.outro_onlinestore {
margin-top: 32px;
}
@media (min-width:768px){
	.brandbox {
	width: 450px;
	margin: 60px auto 0;
	}
	.brandlogo {
	margin: 0 auto 15px;
	}
	.agnesb .brandlogo {
	width: 125px;
	}
	.nergy .brandlogo {
	width: 105px;
	}
	.outro_onlinestore {
	margin-top: 110px;
	}
}



/* footer */
.footer {
margin-top: 55px;
padding-bottom: 35px;
background: #fff;
}
.footer * {
color: #5a5a5a !important;
letter-spacing: 0;
font-family: ryo-gothic-plusn, sans-serif;
}
.lifeandbeauty {
display: none;
}
.help {
background: #f6f6f6;
padding: 40px 0 45px;
}
.help h4 {
font-size: 22px;
}
.help h4 span {
display: block;
margin-top: 10px;
}
.help ul {
justify-content: center;
width: 285px;
margin-top: 30px;
}
.help li {
width: 50%;
font-size: 17px;
text-align: center;
}
.help li:nth-of-type(n + 3) {
margin-top: 25px;
}
.sns {
margin-top: 10px;
padding: 40px 0;
background: #f6f6f6;
}
.sns h4 {
font-size: 18px;
}
.sns ul {
width: 170px;
margin-top: 25px;
}
.sns li {
width: 30px;
}
.onlinestore {
margin-top: 10px;
padding: 35px 0 50px;
background: #f6f6f6;
}
.onlinestore * {
letter-spacing: 0.05em;
}
.onlinestore h4 {
font-size: 18px;
}
.onlinestore ul {
margin-top: 30px;
}
.onlinestore li {
margin-top: 15px;
text-align: center;
font-size: 14px;
}
.onlinestore li:first-child {
margin-top: 0;
}
.onlinestore li a {
letter-spacing: 0 !important;
}
.footerlink {
justify-content: center;
padding-top: 15px;
}
.footerlink li {
margin-bottom: 10px;
padding: 0 12px;
font-size: 10px;
border-right: 1px solid #333;;
}
.footerlink li a {
letter-spacing: 0;
}
.footer_logo {
width: 160px;
margin-top: 40px;
}
.copy {
margin-top: 20px;
}
@media (min-width:1200px){
	.footer {
	width: 100%;
	margin-top: 120px;
	padding-bottom: 70px;
	border-top: 1px solid #c9c9c9;
	}
	.lifeandbeauty {
	display: block;
	width: 735px;
	padding: 25px 0;
	}
	.footer * {
	color: #5a5a5a !important;
	letter-spacing: 0;
	}
	.footer_sec01 {
	background: #ececec;
	}
	.footer_sec01 .inner {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	width: 1200px;
	padding: 30px 0;
	}
	.help {
	width: 50%;
	padding: 60px 0 60px 80px;
	background: none;
	border-left: 1px solid #ccc;
	}
	.help h4 {
	font-size: 27px;
	text-align: left;
	}
	.help h4 br {
	display: none;
	}
	.help h4 span {
	display: inline;
	margin: 0 0 0 30px;
	font-size: 14px;
	}
	.help ul {
	justify-content: flex-start;
	width: 100%;
	margin: 30px 0 0 0;
	}
	.help li {
	width: auto;
	margin-right: 20px;
	padding-right: 20px;
	text-align: left;
	border-right: 1px solid #000;
	font-size: 16px;
	}
	.help li:nth-of-type(n + 3) {
	margin: 0;
	border-right: none;
	}
	.sns {
	display: flex;
	align-items: center;
	width: 50%;
	margin-top: 0;
	padding: 0 60px 0 80px;
	background: none;
	}
	.sns h4 {
	width: 160px;
	font-size: 15px;
	text-align: left;
	}
	.sns ul {
	width: auto;
	margin: 0;
	}
	.sns li {
	width: 50px;
	margin-right: 22px;
	}
	.onlinestore {
	margin-top: 0;
	padding: 40px 0;
	background: #ececec;
	border-top: 1px solid #ddd;
	}
	.onlinestore .inner {
	display: flex;
	justify-content: center;
	width: 1200px;
	}
	.onlinestore h4 {
	margin-right: 30px;
	font-size: 16px;
	font-weight: 700;
	}
	.onlinestore ul {
	display: flex;
	margin-top: 0;
	}
	.onlinestore li {
	margin: 0 15px 0 0;
	padding-right: 15px;
	text-align: left;
	font-size: 12px;
	border-right: 1px solid #000;
	}
	.onlinestore li:last-child {
	margin: 0;
	padding: 0;
	border-right: none;
	}
	.footerlink {
	padding-top: 50px;
	}
	.footerlink li {
	margin: 0 20px 0 0;
	padding: 0 20px 0 0;
	font-size: 12px;
	border-right: 1px solid #333;;
	}
	.footer_logo {
	width: 220px;
	margin-top: 55px;
	}
	.copy {
	margin-top: 40px;
	font-size: 12px;
	}
}

img[src^="https://jun.click.zetacx.net"],
img[src^="https://zetaclick.junonline.jp"],
img[src^="https://dev.tag.zetacx.net"] {
  position: absolute;
  width: 0;
  height: 0;
}