@charset "UTF-8";
/*******************************************************************************
 * Copyright (c) 2020 cyclops.
 *******************************************************************************/
/* clearfix
-------------------------------------------------------------------------------------------------------------
*/
.clr:before, .box-slick ul.slick-dots:before,
.clr:after,
.box-slick ul.slick-dots:after {
  content: "";
  display: table; }

.clr:after, .box-slick ul.slick-dots:after {
  clear: both; }

/*
.clr:after {
	display:block;
	clear:both;
	content:" ";
	visibility:hidden;
	height:0;
	font-size:0;
}
*/
/*————————————————————
	mixin.scss
——————————————————————–*/
/*
mixin集
http://coliss.com/articles/build-websites/operation/css/15-essential-sass-mixins-by-developerdrive.html
http://cappee.net/coding/sass-scss/mixin-matome
*/
/*
select,input,button,textarea{font:99% $minchou}
table {font-size:inherit;font-size:100%;}
*/
/*
function一覧
http://book.scss.jp/code/c8/07.html

*/
/*http://negimemo.net/1141

@include font-size(16);

*/
/*
http://blog.webcreativepark.net/2015/11/09-135807.html
http://coliss.com/articles/build-websites/operation/css/15-essential-sass-mixins-by-developerdrive.html
http://cappee.net/coding/sass-scss/mixin-matome
上の色を暗くする場合は$effectをdarkenへ
*/
/*@font-face {
  font-family: 'icomoon';
  src:
    url('fonts/icomoon.woff2') format('woff2'),
    url('fonts/icomoon.ttf') format('truetype'),
    url('fonts/icomoon.wof') format('woff'),
    url('fonts/icomoon.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}*/
@font-face {
	font-family: 'icomoon';
	src: url("fonts/icomoon.woff2?xwaz8j") format("woff2"),
		url("fonts/icomoon.ttf?xwaz8j") format("truetype"),
		url("fonts/icomoon.woff?xwaz8j") format("woff"),
		url("fonts/icomoon.svg?xwaz8j#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
}

.icomoon, .box-slick .slick-prev,
.box-slick .slick-next {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  -o-font-feature-settings: "liga";
  font-feature-settings: "liga";
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*————————————————————
  animate.css -http://daneden.me/animate
  Version - 3.5.1
  Licensed under the MIT license - http://opensource.org/licenses/MIT
  Copyright (c) 2016 Daniel Eden
——————————————————————–*/
.animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }
  .animated.t-300 {
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .animated.t-500 {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .animated.t-1000 {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }
  .animated.t-1500 {
    -webkit-animation-duration: 1500ms;
    animation-duration: 1500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }

/*delay*/
.d-0 {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms; }

.d-300 {
  -webkit-animation-delay: 300ms;
  animation-delay: 300ms; }

.d-600 {
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms; }

.d-900 {
  -webkit-animation-delay: 900ms;
  animation-delay: 900ms; }

.d-1200 {
  -webkit-animation-delay: 1200ms;
  animation-delay: 1200ms; }

.d-1500 {
  -webkit-animation-delay: 1500ms;
  animation-delay: 1500ms; }

.d-1800 {
  -webkit-animation-delay: 1800ms;
  animation-delay: 1800ms; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

/* use*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden; }
  to {
    visibility: visible;
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden; }
  to {
    visibility: visible;
    opacity: 1; } }

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1; }
  to {
    opacity: 0;
    visibility: hidden; } }

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1; }
  to {
    opacity: 0;
    visibility: hidden; } }

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

.flip {
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1; }
  50% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

main {
  display: block; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace,monospace;
  font-size: 1em; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; }

b, strong {
  font-weight: bolder; }

code, kbd, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

img {
  border-style: none; }

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button, input {
  overflow: visible; }

button, select {
  text-transform: none; }

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button; }

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0; }

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: .35em .75em .625em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0; }

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto; }

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

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

figure, p {
  margin: 0;
  padding: 0; }

html {
  font-size: 10px; }

body#shop-page {
  opacity: 0; }

body#shop-page.is-loaded {
  opacity: 1;
  transition: opacity 1.05s ease; }

body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #41210e;
  font-family: "Shippori Mincho B1","游明朝",YuMincho,"Hiragino Mincho ProN W3","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; }

@media only screen and (max-width: 1024px) {
  body {
    min-width: 0; } }

::-moz-selection {
  background: #fff;
  color: #43220d; }

::selection {
  background: #fff;
  color: #43220d; }

#preloadSVG { height: 0; opacity: 0; visibility: hidden; }



/* Slider */
.slick-loading .slick-list { background: #fff; }

/* Arrows */
.slick-prev,
.slick-next { position: absolute; display: block; height: 20px; width: 20px; padding: 0; border: none;
cursor: pointer; background: transparent; top: 50%;
 -webkit-transform: translate(0, -50%); -ms-transform: translate(0, -50%); transform: translate(0, -50%);
 outline: none; color: transparent; font-size: 0px; line-height: 0px;
/*
&:hover, &:focus {
    outline: none;
    background: transparent;
    color: transparent;
    &:before {
        opacity: $slick-opacity-on-hover;
    }
}
*/ }
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before { opacity: 0.25; }
.slick-prev:before,
.slick-next:before { font-family: "slick"; opacity: 0.75; -moz-osx-font-smoothing: grayscale;
 color: white; font-size: 20px; line-height: 1; -webkit-font-smoothing: antialiased;
}
.slick-prev { left: -25px; }
[dir="rtl"] .slick-prev { left: auto; right: -25px; }
.slick-prev:before { content: "←"; }
[dir="rtl"] .slick-prev:before { content: "→"; }

.slick-next { right: -25px; }
[dir="rtl"] .slick-next { left: -25px; right: auto; }
.slick-next:before { content: "→"; }
[dir="rtl"] .slick-next:before { content: "←"; }

/* Dots */
.slick-dotted.slick-slider { margin-bottom: 30px; }

.slick-dots { display: block; width: 100%; margin: 0; padding: 0; position: absolute; bottom: -25px; list-style: none; text-align: center;}
.slick-dots li { position: relative; display: inline-block; width: 20px; height: 20px; margin: 0 5px; padding: 0; cursor: pointer; }
.slick-dots li button { display: block; width: 20px; height: 20px; padding: 5px; border: 0; background: transparent; outline: none;
 color: transparent; line-height: 0px; font-size: 0px; cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus { outline: none; }
.slick-dots li button:hover:before, .slick-dots li button:focus:before { opacity: 1; }
.slick-dots li button:before { content: "•"; width: 20px; height: 20px;
 position: absolute; top: 0; left: 0;
 color: black; font-family: "slick"; font-size: 6px; line-height: 20px; text-align: center; opacity: 0.25;
 -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before { color: black; opacity: 0.75; }

/* Slider */
.slick-slider { position: relative; display: block; box-sizing: border-box;
 -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none;
 user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent;
}
.slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0;}
.slick-list:focus { outline: none; }
.slick-list.dragging { cursor: pointer; cursor: hand; }
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track { position: relative; left: 0; top: 0; display: block; }
.slick-track:before,
.slick-track:after { content: ""; display: table; }
.slick-track:after { clear: both; }
.slick-loading .slick-track { visibility: hidden; }

.slick-slide { float: left; height: 100%; min-height: 1px; display: none; }
[dir="rtl"] .slick-slide { float: right; }
.slick-slide img { display: block; }
.slick-slide.slick-loading img { display: none; }
.slick-slide.dragging img { pointer-events: none; }
.slick-initialized .slick-slide { display: block; }
.slick-loading .slick-slide { visibility: hidden; }
.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }

.slick-arrow.slick-hidden { display: none; }






.c-section_title .title_above {
  font-size: 1.875vw;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1; }

@media only screen and (max-width: 1024px) {
  .c-section_title .title_above {
    font-size: 3.4666666667vw; } }

#index-page .features_sub-title-m {
  font-size: 2.265625vw;
  letter-spacing: .04em;
  line-height: 1.6; }

@media only screen and (max-width: 1024px) {
  #index-page .features_sub-title-m {
    font-size: 6.1333333333vw; } }

#index-page .features_sub-title-l {
  font-size: 3.28125vw;
  letter-spacing: .04em;
  line-height: 1.6; }

@media only screen and (max-width: 1024px) {
  #index-page .features_sub-title-l {
    font-size: 8.8vw; }
 }

#index-page .product-intro_text-above {
  font-size: 2.34375vw;
  letter-spacing: .1em;
  line-height: 1.6; }
#index-page .product-intro_text-below {
  font-size: 2.34375vw;
  letter-spacing: -.01em;
  line-height: 1.6; }
.c-section_title .title_below {
  font-size: 3.125vw;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.6; }
@media only screen and (max-width: 1024px) {
	#index-page .product-intro_text-above { font-size: 5.3333333333vw; line-height: 1.8; }
	#index-page .product-intro_text-below { font-size: 5.3333333333vw; }
	.c-section_title .title_below { font-size: 6.6666666667vw; }
}


#l-menu .unav { font-size: .625vw; letter-spacing: .04em; line-height: 1; }
@media only screen and (max-width: 1024px) {
	#l-menu .unav { font-size: 2.5333333333vw; }
}


#index-page .concept_attention,
#index-page .concept_text sup,
#index-page .points .list_child-text sup {
 font-size: .78125vw; letter-spacing: -.055em; line-height: 1.3;
}

@media only screen and (max-width: 1024px) {
  #index-page .concept_attention,
  #index-page .concept_text sup,
  #index-page .points .list_child-text sup { font-size: 1.6vw; }
}

#index-page .points_attention {
  font-size: 1.2rem;
  letter-spacing: -.055em;
  line-height: 1.3; }

@media only screen and (max-width: 1024px) {
  #index-page .points_attention {
    font-size: 1.1rem; } }


#l-menu .gnav-list {
  font-size: 1.015625vw;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.6; }

@media only screen and (max-width: 1024px) {
  #l-menu .gnav-list {
    font-size: 3.7333333333vw;
    letter-spacing: .19em; } }

#index-page .points .list_child-text {
  font-size: 1.09375vw;
  letter-spacing: .065em;
  line-height: 1.7; }

@media only screen and (max-width: 1024px) {
  #index-page .points .list_child-text {
    font-size: 4vw;
    letter-spacing: .01em;
    line-height: 1.5; } }

.l-footer .unav {
  font-size: 1.3rem;
  letter-spacing: .15em;
  line-height: 1; }

@media only screen and (max-width: 1024px) {
  .l-footer .unav {
    font-size: 2.6666666667vw; } }

.l-footer .btn-list {
  font-size: 1.4rem;
  letter-spacing: .04em;
  line-height: 1; }

#index-page .concept_text-s {
  font-size: 1.40625vw;
  letter-spacing: .04em;
  line-height: 2.7; }

@media only screen and (max-width: 1024px) {
  #index-page .concept_text-s {
    font-size: 4vw; } }





#index-page .concept_text-m {
  font-size: 1.640625vw;
  letter-spacing: .04em;
  line-height: 1.6; }

@media only screen and (max-width: 1024px) {
  #index-page .concept_text-m {
    font-size: 5.3333333333vw; } }


.l-footer {
  position: relative;
  color: #43220d; }

.l-footer .list_anchor {
  color: #43220d;
  line-height: 1;
  text-decoration: none; }

.l-footer .btn-list {
  display: flex;
  justify-content: space-between;
  max-width: 555px;
  margin: 50px auto 65px; }

@media only screen and (max-width: 1024px) {
  .l-footer .btn-list {
    flex-direction: column;
    margin: 0;
    padding: 60px 0;
    background-color: #c5c5c5;
    max-width: none; } }

.l-footer .btn-list .list_anchor {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 38px;
  border: 1px solid #43220d; }

@media only screen and (max-width: 1024px) {
  .l-footer .btn-list .list_anchor {
    margin: 0 auto; } }

.l-footer .btn-list .list_anchor:hover .triangle-arrow {
  transform: translateX(13px); }

@media only screen and (max-width: 1024px) {
  .l-footer .btn-list .list_child-mypage {
    margin-bottom: 40px; } }

.l-footer .btn-list .list_anchor-mypage {
  width: 18px;
  height: 100%;
  background: transparent url(../img/_symbols/mypage_icon.svg) no-repeat left center;
  background-size: 18px auto;
  margin: 0 6px 0 -9px; }

.l-footer .btn-list .list_anchor-cart {
  width: 23px;
  height: 100%;
  background: transparent url(../img/common/menu_icon_cart.png) no-repeat left center;
  background-size: 23px auto;
  transform: translateX(-5px); }

.l-footer .btn-list .triangle-arrow {
  margin-top: -1.5px;
  transform: translateX(6px);
  transition: transform .25s ease; }

.l-footer .logo {
  width: 150px;
  margin: 0 auto 30px; }

@media only screen and (max-width: 1024px) {
  .l-footer .logo {
    width: 180px;
    margin: 11.666667vw auto 6.666667vw; } }

.l-footer .logo img {
  width: 100%;
  height: auto; }

.l-footer .unav {
  max-width: 750px;
  margin: 0 auto 26px;
  font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; }

@media only screen and (max-width: 1024px) {
  .l-footer .unav {
    max-width: none;
    margin: 0 8vw 10vw; } }

.l-footer .unav .list {
  display: flex;
  justify-content: space-between; }

@media only screen and (max-width: 1024px) {
  .l-footer .unav .list {
    flex-wrap: wrap; } }

@media only screen and (max-width: 1024px) {
  .l-footer .unav .list_child {
    width: 40vw;
    text-align: center;
    border: 1px solid #000;
    color: #000;
    padding: 10px 0;
    margin: 0 0 3vw 0;
    box-sizing: border-box; } }

.l-footer .unav .list_anchor {
  transition: opacity .25s ease; }

.l-footer .unav .list_anchor:hover {
  opacity: .6; }

.l-footer .copyright {
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 15px 0;
  font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 1rem;
  letter-spacing: .18em; }

@media only screen and (max-width: 1024px) {
  .l-footer .copyright {
    font-size: 1.3333333333vw; } }

.l-delayed-inner {
  position: relative;
  z-index: 9;
  mix-blend-mode: multiply; }

#l-container {
  position: relative;
  z-index: 1;
  overflow-x: hidden; }

#l-menu {
  background-color: rgba(255, 241, 229, 0.88);
  height: 100%;
  opacity: 0;
  overflow-x: hidden;
  position: fixed;
  right: 0;
  top: 0;
  transition: all .65s ease;
  visibility: hidden;
  width: 100%;
  z-index: 4;
  display: flex;
  justify-content: flex-end; }

#l-menu.is-active {
  opacity: 1;
  visibility: visible; }

#l-menu.is-active .l-wrapper {
  transform: translateX(0); }

#l-menu .l-wrapper {
  width: 27.34375vw;
  height: 100%;
  min-height: 700px;
  position: relative;
  transition: transform .75s ease;
  z-index: 2;
  padding: 6.71875vw 5.859375vw 0;
  box-sizing: border-box;
  background-color: #ffd3a2;
  transform: translateX(27.34375vw);
  will-change: transform; }

@media only screen and (max-width: 1024px) {
  #l-menu .l-wrapper {
    width: 100%;
    padding: 11.9875vw 9.859375vw 0; } }

@media only screen and (max-width: 1024px) {
  #l-menu .gnav-list {
    margin-left: 11vw;
    padding-bottom: 10vw; } }

#l-menu .gnav-list .list_child {
  padding-bottom: 1.5625vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .gnav-list .list_child {
    padding-bottom: 3.325vw; } }

#l-menu .gnav-list .list_anchor {
  position: relative;
  color: #42220f;
  text-decoration: none; }

#l-menu .gnav-list .list_anchor:hover {
  opacity: .8; }

#l-menu .gnav-list .list_anchor-cart, #l-menu .gnav-list .list_anchor-mypage {
  padding-left: 1.5vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .gnav-list .list_anchor-cart, #l-menu .gnav-list .list_anchor-mypage {
    padding-left: 5.5vw; } }

#l-menu .gnav-list .list_anchor-cart:before, #l-menu .gnav-list .list_anchor-mypage:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%); }

#l-menu .gnav-list .list_anchor-mypage:before {
  display: inline-block;
  background: transparent url(../img/_symbols/mypage_icon.svg) no-repeat center center;
  background-size: .9375vw auto;
  content: "";
  width: 1.015625vw;
  height: 1.171875vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .gnav-list .list_anchor-mypage:before {
    background-size: 3.7333333333vw auto;
    width: 3.7333333333vw;
    height: 4.4vw; } }

#l-menu .gnav-list .list_anchor-cart:before {
  display: inline-block;
  background: transparent url(../img/common/menu_icon_cart.png) no-repeat center center;
  background-size: 1.328125vw auto;
  content: "";
  width: 1.328125vw;
  height: 1.328125vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .gnav-list .list_anchor-cart:before {
    background-size: 4.4vw auto;
    width: 4.4vw;
    height: 4.4vw; } }

#l-menu .sns-list.list {
  display: flex;
  padding-bottom: 2vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .sns-list.list {
    margin-left: 11.5vw;
    padding-bottom: 7vw; } }

#l-menu .sns-list.list .list_anchor:hover {
  opacity: .8; }

#l-menu .sns-list.list .icon-instagram {
  display: block;
  width: 1.171875vw;
  height: 1.171875vw;
  margin-right: 1vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .sns-list.list .icon-instagram {
    width: 4.4vw;
    height: 4.4vw;
    margin-right: 3.5vw; } }

#l-menu .sns-list.list .icon-twitter {
  display: block;
  width: 1.40625vw;
  height: 1.171875vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .sns-list.list .icon-twitter {
    width: 5.2vw;
    height: 4.2666666667vw;
    margin-top: .2vw; } }

#l-menu .sns-list.list img {
  width: 100%;
  height: auto; }

@media only screen and (max-width: 1024px) {
  #l-menu .series-anchor-list {
    transform: translateX(-3.3vw);
    padding-bottom: 8vw; } }

#l-menu .series-anchor-list .list_child {
  padding-bottom: 1.5625vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .series-anchor-list .list_child {
    width: 51.7333333333vw;
    margin: 0 auto;
    padding-bottom: 2.5vw; } }

#l-menu .series-anchor-list .list_anchor:hover {
  opacity: .8; }

#l-menu .series-anchor-list img {
  width: 100%;
  height: auto; }

#l-menu .unav {
  margin-left: -3.125vw;
  font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; }

#l-menu .unav .unav-list {
  display: flex;
  flex-wrap: wrap;
  width: 22.09375vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .unav .unav-list {
    width: 80vw;
    margin-left: 3vw; } }

#l-menu .unav .list_child {
  width: 10.078125vw;
  height: 2.109375vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .unav .list_child {
    width: 37.8666666667vw;
    height: 7.7333333333vw; } }

#l-menu .unav .list_anchor {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #42220f;
  text-decoration: none;
  border: 1px solid #a17a57; }

#l-menu .unav .list_anchor:after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  content: "";
  transition: opacity .15s ease; }

#l-menu .unav .list_anchor:hover:after {
  opacity: .4; }

#l-menu .unav .list_child1, #l-menu .unav .list_child4 {
  margin-right: 1.015625vw;
  padding-bottom: 1.015625vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .unav .list_child1, #l-menu .unav .list_child4 {
    margin-right: 4.015625vw;
    padding-bottom: 3.015625vw; } }

#l-menu .unav .list_child2 {
  display: none; }

#l-menu .unav .list_text {
  transform: scale(0.8); }

@media only screen and (max-width: 1024px) {
  #l-menu .unav .list_text {
    transform: scale(1); } }

.is-loaded #l-menu-btn {
  transform: translateY(0); }

@media only screen and (min-width: 1025px) {
  .is-menu-active #l-menu-btn:hover span:first-of-type {
    transform: translateY(0) rotate(35deg); } }

@media only screen and (min-width: 1025px) {
  .is-menu-active #l-menu-btn:hover span:last-of-type {
    margin-top: 0 !important;
    transform: translateY(0) rotate(-35deg); } }

@media only screen and (min-width: 1025px) {
  .is-menu-active #l-menu-btn:hover span:last-of-type:before {
    -webkit-animation-delay: .2s;
    animation-delay: .2s; } }

.is-menu-active #l-menu-btn span {
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1); }

.is-menu-active #l-menu-btn span:first-of-type {
  transform: translateY(0.5078125vw) rotate(45deg); }

@media only screen and (max-width: 1024px) {
  .is-menu-active #l-menu-btn span:first-of-type {
    transform: translateY(1.3333333333vw) rotate(45deg); } }

.is-menu-active #l-menu-btn span:last-of-type {
  transform: translateY(-0.5078125vw) rotate(-45deg); }

@media only screen and (max-width: 1024px) {
  .is-menu-active #l-menu-btn span:last-of-type {
    transform: translateY(-1.4666666667vw) rotate(-45deg); } }

#l-menu-btn {
  cursor: pointer;
  height: 60px;
  position: fixed;
  right: 2vw;
  top: 2.5vw;
  transform: translateY(-53.3333333333vw);
  transition: transform .65s ease;
  width: 4.6875vw;
  z-index: 5; }

@media only screen and (max-width: 1024px) {
  #l-menu-btn {
    height: 21.8666666667vw;
    right: 5vw;
    top: -5px;
    width: 12.333333vw; } }

#l-menu-btn .l-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center; }

@media only screen and (max-width: 1024px) {
  #l-menu-btn .l-wrapper {
    align-items: flex-end; } }

@media only screen and (min-width: 1025px) {
  #l-menu-btn:hover span:first-of-type {
    transform: translateY(0.15625vw); } }

@media only screen and (min-width: 1025px) {
  #l-menu-btn:hover span:last-of-type {
    transform: translateY(-0.15625vw); } }

#l-menu-btn span {
  background-color: #231815;
  display: block;
  height: 1px;
  position: relative;
  transition: all 0.28s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%; }

#l-menu-btn span:last-of-type {
  margin-top: .859375vw; }

@media only screen and (max-width: 1024px) {
  #l-menu-btn span:last-of-type {
    margin-top: 2.4vw; } }

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh,1vh) * 100);
  background-color: #fff;
  z-index: 6; }

.loading_ripples {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; }

@-webkit-keyframes ripples-anime {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1); }
  5% {
    opacity: 1; }
  50% {
    transform: translate(-50%, -50%) scale(3.2); }
  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2); }
  99% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2); }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1); } }

@keyframes ripples-anime {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1); }
  5% {
    opacity: 1; }
  50% {
    transform: translate(-50%, -50%) scale(3.2); }
  70% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2); }
  99% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.2); }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1); } }

.loading_ripples span {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 2.8125vw;
  height: 1.015625vw;
  border: .078125vw solid #f6ab41;
  border-radius: 300%;
  opacity: 0;
  -webkit-animation: ripples-anime 2s ease infinite;
  animation: ripples-anime 2s ease infinite; }

.loading_ripples span:nth-child(1) {
  -webkit-animation-delay: .3s;
  animation-delay: .3s; }

.loading_ripples span:nth-child(2) {
  -webkit-animation-delay: .6s;
  animation-delay: .6s; }

.loading_ripples span:nth-child(3) {
  -webkit-animation-delay: .9s;
  animation-delay: .9s; }

.loading_ripples span:nth-child(4) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s; }

.loading_ripples span:nth-child(5) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

@media only screen and (max-width: 1024px) {
  .loading_ripples span {
    width: 4.8vw;
    height: 1.7333333333vw;
    border-radius: 300%; } }

.loading_bee-icon {
  opacity: 0;
  z-index: 4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

@-webkit-keyframes bee-anime {
  0% {
    transform: translateY(-20px); }
  50% {
    transform: translateY(0); }
  100% {
    transform: translateY(-20px); } }

@keyframes bee-anime {
  0% {
    transform: translateY(-20px); }
  50% {
    transform: translateY(0); }
  100% {
    transform: translateY(-20px); } }

.loading_bee-icon svg {
  width: 5.725vw;
  height: 5.9375vw;
  -webkit-animation: bee-anime 1s infinite;
  animation: bee-anime 1s infinite; }

@media only screen and (max-width: 1024px) {
  .loading_bee-icon svg {
    width: 10.7vw;
    height: 10.1333333333vw; } }

.loading_bubbles {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden;
  mix-blend-mode: screen; }

.loading_bubbles .svg {
  opacity: 0; }

.loading_bubbles .svg, .loading_bubbles .svg > div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.loading_bubbles svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.loading_waves {
  z-index: 2;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  overflow: hidden; }

@media only screen and (max-width: 1024px) {
  .loading_waves {
    min-width: 200%;
    min-height: 200%; } }

.loading_waves svg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.loading_waves #waveEnd, .loading_waves #waveMid {
  visibility: hidden; }

.is-loaded .loading_bee-icon {
  opacity: 1;
  transition: opacity .35s ease; }

.is-loaded .loading_ripples {
  opacity: 1;
  transition: opacity .35s ease; }

#l-footer .triangle-arrow {
  position: relative;
  width: 11px; }

#l-footer .triangle-arrow:before {
  position: absolute;
  top: -3.5483870968px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #43220d;
  transform: rotate(40deg); }

#l-footer .triangle-arrow:after {
  position: absolute;
  top: 3.5483870968px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #43220d;
  transform: rotate(-40deg); }

#index-page #shops .triangle-arrow {
  margin-left: 1vw;
  position: relative;
  width: 8px; }

#index-page #shops .triangle-arrow:before {
  position: absolute;
  top: -2.5806451613px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #42220f;
  transform: rotate(40deg); }

#index-page #shops .triangle-arrow:after {
  position: absolute;
  top: 2.5806451613px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #42220f;
  transform: rotate(-40deg); }

#shop-nav .triangle-arrow-bottom {
  position: relative;
  width: 1.171875vw; }

#shop-nav .triangle-arrow-bottom:before {
  position: absolute;
  top: 0;
  left: -.4507211538vw;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #42220f;
  transform: rotate(40deg); }

#shop-nav .triangle-arrow-bottom:after {
  position: absolute;
  top: 0;
  left: .4507211538vw;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #42220f;
  transform: rotate(-40deg); }

@media only screen and (max-width: 1024px) {
  #shop-nav .triangle-arrow-bottom {
    position: relative;
    width: 4vw; }
  #shop-nav .triangle-arrow-bottom:before {
    position: absolute;
    top: 0;
    left: -1.5384615385vw;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #42220f;
    transform: rotate(40deg); }
  #shop-nav .triangle-arrow-bottom:after {
    position: absolute;
    top: 0;
    left: 1.5384615385vw;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #42220f;
    transform: rotate(-40deg); } }

.c-section_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center; }

.c-section_title .title_wrap {
  position: absolute;
  top: 3.2vw;
  left: 50%;
  transform: translateX(-50%); }

@media only screen and (max-width: 1024px) {
  .c-section_title .title_wrap {
    top: 5vw; } }

.c-section_title .title_bg-img img {
  width: 100%;
  height: auto; }

#index-page .fixed-shop-icon {
  position: fixed;
  bottom: 4.21875vw;
  right: 4.21875vw;
  z-index: 3;
  transform: translateX(13vw);
  transition: transform .35s ease; }

@media only screen and (max-width: 1024px) {
  #index-page .fixed-shop-icon {
    transform: translateX(20vw); } }

#index-page .fixed-shop-icon.is-show {
  transform: translateX(0); }

#index-page .fixed-shop-icon svg {
  width: 7.8125vw;
  height: 9.6875vw; }

@media only screen and (max-width: 1024px) {
  #index-page .fixed-shop-icon svg {
    width: 15.0666666667vw;
    height: 19.0666666667vw; } }

#c-ripples {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7; }

#c-ripples_container1 {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; }

#c-ripples_container2 {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; }

#c-ripples_container2 canvas {
  width: 100%;
  height: 100%;
  pointer-events: none; }

#c-ripples_container3 {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#c-ripples_container3 canvas {
  width: 100%;
  height: 100%; }

#index-page #l-contents > section, #shop-page #l-contents > section {
  position: relative; }

#index-page .l-bg, #shop-page .l-bg {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0; }

#index-page .l-bg img, #shop-page .l-bg img {
  width: 100%;
  height: auto; }

#index-page .mv .l-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#index-page .mv .l-wrapper .mv_logo-honey {
  z-index: 2;
  position: absolute;
  top: 13.1vw;
  left: 50%;
  transform: translateX(-50%); }

@media only screen and (max-width: 1024px) {
  #index-page .mv .l-wrapper .mv_logo-honey {
    top: 12vw; } }

#index-page .mv .l-wrapper .mv_logo-honey img {
  width: 15.625vw;
  height: auto; }

@media only screen and (max-width: 1024px) {
  #index-page .mv .l-wrapper .mv_logo-honey img {
    width: 42.333333vw; } }

#index-page .mv .l-wrapper .mv_copy {
  z-index: 2;
  position: absolute;
  top: 23vw;
  left: 50%;
  transform: translateX(-50%); }

@media only screen and (max-width: 1024px) {
  #index-page .mv .l-wrapper .mv_copy {
    top: auto;
    bottom: 0; } }

#index-page .mv .l-wrapper .mv_copy svg {
  width: 53.65625vw;
  height: 15.867188vw; }

@media only screen and (max-width: 1024px) {
  #index-page .mv .l-wrapper .mv_copy svg {
    width: 99.333333vw;
    height: 27.333333vw; } }

#index-page .mv .l-wrapper .mv_new-icon {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 17.3828125vw; }

@media only screen and (max-width: 1024px) {
  #index-page .mv .l-wrapper .mv_new-icon {
    width: 36vw; } }

#index-page .mv .l-wrapper .mv_new-icon img {
  width: 100%;
  height: auto; }

#index-page .concept {
  position: relative; }

#index-page .concept .code-img {
  display: none; }

@media only screen and (max-width: 1024px) {
  #index-page .concept .code-img {
    z-index: 3;
    display: block;
    position: absolute;
    bottom: -.433333vw;
    right: 2vw;
    width: 22.6666666667vw;
    transform: translate(0, 0) !important; } }

@media only screen and (max-width: 1024px) {
  #index-page .concept .code-img img {
    width: 100%;
    height: auto; } }

#index-page .concept .honey-layer {
  z-index: 2;
  position: absolute;
  top: -1.953125vw;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  pointer-events: none; }

@media only screen and (max-width: 1024px) {
  #index-page .concept .honey-layer {
    display: none; } }

#index-page .concept .honey-layer img {
  width: 100%;
  height: auto; }

#index-page .concept_attention {
  position: absolute;
  bottom: .5vw;
  left: 3.2vw; }

@media only screen and (max-width: 1024px) {
  #index-page .concept_attention {
    bottom: 2.5vw;
    left: 6.2vw;
    transform: scale(0.9); } }

#index-page .concept_text {
  position: absolute;
  top: 28.7vw;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; }

@media only screen and (max-width: 1024px) {
  #index-page .concept_text {
    top: 54vw;
    left: 0;
    transform: translate(0, -50%);
    width: 100%; } }

#index-page .concept_text-s {
  display: inline-block; }

#index-page .concept_text sup {
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(5px); }

#index-page .concept_text-m {
  display: inline-block; }

@media only screen and (max-width: 1024px) {
  #index-page .concept_text-third {
    margin-top: -1.5vw; } }

@media only screen and (max-width: 1024px) {
  #index-page .concept_text-last {
    line-height: 1.8; } }

#index-page .features {
  position: relative;
  height: 83.59375vw;
  background-color: #ffe1bf; }

@media only screen and (max-width: 1024px) {
  #index-page .features {
    height: auto;
    padding-bottom: 78vw; } }

#index-page .features .code-img {
  z-index: 10;
  display: block;
  position: absolute;
  bottom: 5.533333vw;
  left: -.288889vw;
  width: 8.805556vw; }

@media only screen and (max-width: 1024px) {
  #index-page .features .code-img {
    display: none; } }

#index-page .features .code-img img {
  width: 100%;
  height: auto; }

#index-page .features .honey-layer {
  z-index: 2;
  position: absolute;
  top: 7.03125vw;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  pointer-events: none; }

@media only screen and (max-width: 1024px) {
  #index-page .features .honey-layer {
    display: none; } }

#index-page .features .honey-layer img {
  width: 100%;
  height: auto; }

#index-page .features .c-section_title .title_below {
  letter-spacing: -.04em; }

@media only screen and (max-width: 1024px) {
  #index-page .features .c-section_title .title_below {
    white-space: nowrap; } }

#index-page .features_sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18vw;
  margin-bottom: 2vw;
  color: #ca5e00; }

@media only screen and (max-width: 1024px) {
  #index-page .features_sub-title {
    padding-top: 38vw; } }

#index-page .features_sub-title-m {
  margin-top: 2px; }

#index-page .features .tns-outer {
  position: relative;
  width: 60.625vw;
  margin: 0 auto; }

#index-page .features .tns-nav {
  display: none; }

#index-page .features .tns-controls button {
  top: 20vw;
  width: 3vw;
  height: 3vw;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-size: 0;
  border: none; }

#index-page .features .tns-controls button[data-controls=prev] {
  left: -2.1vw;
  position: absolute;
  width: 21px; }

#index-page .features .tns-controls button[data-controls=prev]:before {
  position: absolute;
  top: 10.6666666667px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #43220d;
  transform: rotate(140deg); }

#index-page .features .tns-controls button[data-controls=prev]:after {
  position: absolute;
  top: 23.3333333333px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #43220d;
  transform: rotate(-140deg); }

#index-page .features .tns-controls button[data-controls=next] {
  right: -3vw;
  position: absolute;
  width: 21px; }

#index-page .features .tns-controls button[data-controls=next]:before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #43220d;
  transform: rotate(40deg); }

#index-page .features .tns-controls button[data-controls=next]:after {
  position: absolute;
  top: 28px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #43220d;
  transform: rotate(-40deg); }

#index-page .features-title_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 52.8125vw;
  margin: 0 auto 3vw; }

@media only screen and (max-width: 1024px) {
  #index-page .features-title_list {
    display: none; } }

#index-page .features-title_list .list_child {
  width: 25.234375vw; }

@media only screen and (min-width: 1025px) {
  #index-page .features-title_list .list_child {
    cursor: pointer; } }

@media only screen and (min-width: 1025px) {
  #index-page .features-title_list .list_child:hover {
    opacity: .8; } }

#index-page .features-title_list .list_child img {
  width: 100%;
  height: auto; }

#index-page .features-title_list .list_child1, #index-page .features-title_list .list_child2 {
  margin-bottom: .5vw; }

#index-page .features-title_list .list_child2, #index-page .features-title_list .list_child4 {
  margin-left: 2.1875vw; }

@media only screen and (max-width: 1024px) {
  #index-page .features_list {
    padding-bottom: 4vw; } }

@media only screen and (max-width: 1024px) {
  #index-page .features_list > * + * {
    margin-top: 5.3vw; } }

#index-page .features_list .list_child-title {
  width: 53.04375vw;
  margin: 0 auto .25vw; }

@media only screen and (max-width: 1024px) {
  #index-page .features_list .list_child-title {
    width: 88.1333333333vw;
    margin: 0 auto; } }

#index-page .features_list .list_child-title img {
  transform: translateX(-0.25vw); }

#index-page .features_list .list_child-img {
  width: 52.34375vw;
  margin: 0 auto; }

@media only screen and (max-width: 1024px) {
  #index-page .features_list .list_child-img {
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 88.34375vw; } }

@media only screen and (max-width: 1024px) {
  #index-page .features_list .list_child.is-active .list_child-img {
    margin-bottom: 8vw; } }

#index-page .features_list img {
  width: 100%;
  height: auto; }

@media only screen and (max-width: 1024px) {
  .for-mobile#index-page .product-intro .gooey-movie #js-video {
    display: none; } }

@media only screen and (max-width: 1024px) {
  .for-mobile#index-page .product-intro .gooey-movie_thumb {
    display: block;
    opacity: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .for-mobile#index-page .product-intro .gooey-movie_thumb img {
    width: 100%;
    height: auto; } }

#index-page .product-intro .c-section_title .title_below {
  letter-spacing: .14em; }

#index-page .product-intro_text {
  position: absolute;
  top: 24.2vw;
  left: 19.5vw;
  text-align: center; }

@media only screen and (max-width: 1024px) {
  #index-page .product-intro_text {
    top: 35.2vw;
    left: 0;
    width: 100%; } }

#index-page .product-intro_text-above {
  font-weight: 700; }

#index-page .product-intro_text-below {
  font-weight: 700; }

#index-page .product-intro .gooey-movie {
  z-index: 3;
  position: absolute;
  bottom: -4.4921875vw;
  left: -12.25vw;
  width: 55.203125vw;
  height: 32.203125vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product-intro .gooey-movie {
    bottom: auto;
    top: -69vw;
    left: -25vw;
    width: 150vw;
    height: 84vw; } }

#index-page .product-intro .gooey-movie_thumb {
  display: none; }

#index-page .product-intro .l-wrapper {
  z-index: 3;
  position: relative;
  height: 100%; }

#index-page .product-intro .l-bg {
  z-index: 2;
  position: relative; }

#index-page .product-intro #js-video {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

#index-page .product-intro #js-gooey-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 {
    margin-top: -19vw; } }

#index-page .product .list_child1 .right {
  margin-right: 1.8vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 .right {
    margin-right: 0; } }

#index-page .product .list_child1 .text1 {
  margin-top: 4.54375vw;
  width: 22.75vw;
  margin-bottom: .2vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 .text1 {
    width: 63.2vw;
    margin-top: .7vw; } }

#index-page .product .list_child1 .text2 {
  width: 19.53125vw;
  margin-bottom: 3.2625vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 .text2 {
    width: 70.6666666667vw;
    margin-top: -4vw; } }

#index-page .product .list_child1 .text3 {
  width: 19.4375vw;
  margin-bottom: 1.78125vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 .text3 {
    width: 64.666667vw;
    margin-top: 10.5vw;
    margin-bottom: 4.78125vw; } }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 .text3 img {
    margin-left: -2vw; } }

#index-page .product .list_child1 .text4 {
  width: 23.4375vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 .text4 {
    width: 72vw;
    margin-bottom: 4.1625vw !important; } }

#index-page .product .list_child1 .product-img {
  width: 34.265625vw;
  margin-top: 3.5625vw;
  margin-left: 3.140625vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child1 .product-img {
    width: 88vw;
    margin-left: auto;
    margin-top: 19.5625vw; } }

#index-page .product .list_child2 .right {
  margin-right: 1.8vw; }

#index-page .product .list_child2 .text1 {
  width: 29.78125vw;
  margin-top: 1.1vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .text1 {
    width: 84.333333vw;
    margin-top: -.9vw; } }

#index-page .product .list_child2 .text1 img {
  margin-left: -2vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .text1 img {
    margin-left: 0; } }

#index-page .product .list_child2 .text2 {
  width: 19.28125vw;
  margin-bottom: 3.2625vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .text2 {
    width: 74.6666666667vw;
    margin-top: -3.9vw;
    margin-bottom: 10.2625vw; } }

#index-page .product .list_child2 .text3 {
  width: 19.4375vw;
  margin-bottom: 1.78125vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .text3 {
    width: 66.6666666667vw;
    margin-bottom: 4.78125vw; } }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .text3 img {
    margin-left: -2vw; } }

#index-page .product .list_child2 .text4 {
  width: 20.859375vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .text4 {
    width: 64.8vw;
    margin-bottom: 4.1625vw !important; } }

#index-page .product .list_child2 .product-img {
  width: 36.375vw;
  margin-top: 1.6vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .product-img {
    width: 94vw;
    margin-top: 3.6vw; } }

#index-page .product .list_child2 .product-img img {
  margin-left: -2.5vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child2 .product-img img {
    margin-left: 0; } }

#index-page .product .list_child3 .right {
  margin-right: .4vw; }

#index-page .product .list_child3 .text1 {
  width: 27.78125vw;
  margin-top: 1.3vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .text1 {
    width: 78.666667vw;
    margin-top: .3vw; } }

#index-page .product .list_child3 .text1 img {
  margin-left: -.75vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .text1 img {
    margin-left: 0; } }

#index-page .product .list_child3 .text2 {
  width: 18.28125vw;
  margin-top: .5vw;
  margin-bottom: 1.25vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .text2 {
    width: 66.6666666667vw;
    margin-top: -3.5vw; } }

#index-page .product .list_child3 .text3 {
  width: 20.8125vw;
  margin-bottom: .3vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .text3 {
    width: 73.333333vw; } }

#index-page .product .list_child3 .text3 img {
  margin-left: -.75vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .text3 img {
    margin-left: -3vw; } }

#index-page .product .list_child3 .text4 {
  width: 20.859375vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .text4 {
    width: 64vw;
    margin-bottom: 5.1625vw !important; } }

#index-page .product .list_child3 .product-img {
  width: 35.775vw;
  margin-top: .4vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .product-img {
    width: 91.666667vw;
    margin-top: 10.6vw; } }

#index-page .product .list_child3 .product-img img {
  margin-left: -1.1vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child3 .product-img img {
    margin-left: 5vw; } }

#index-page .product .list_child {
  position: relative; }

#index-page .product .list_child-inner {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 62.5vw;
  margin-left: 14.0625vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child-inner {
    width: 100vw;
    margin-left: 0; } }

#index-page .product .list_child-content {
  display: flex; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child-content {
    flex-direction: column; } }

#index-page .product .list_child-content .left {
  width: 37.5vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child-content .left {
    width: 100vw; } }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child-content .left .product-img {
    margin-left: auto;
    margin-right: auto; } }

#index-page .product .list_child-content .left img {
  width: 100%;
  height: auto; }

#index-page .product .list_child-content .right {
  width: 25.78125vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child-content .right {
    width: 100vw; } }

#index-page .product .list_child-content .right .text4 {
  margin-bottom: 1.1625vw; }

#index-page .product .list_child-content .right .cart-btn, #index-page .product .list_child-content .right .text1, #index-page .product .list_child-content .right .text2, #index-page .product .list_child-content .right .text3, #index-page .product .list_child-content .right .text4 {
  margin-right: auto;
  margin-left: auto; }

#index-page .product .list_child-content .right .cart-btn {
  width: 21.25vw; }

@media only screen and (max-width: 1024px) {
  #index-page .product .list_child-content .right .cart-btn {
    width: 58.6666666667vw; } }

#index-page .product .list_child-content .right .cart-btn_anchor:hover {
  opacity: .8; }

#index-page .product .list_child-content .right .cart-btn_img {
  width: 100%;
  height: auto; }

#index-page .product .list_child-content .right img {
  width: 100%;
  height: auto; }

#index-page .product .list_child-bg {
  z-index: 2;
  position: relative;
  font-size: 0; }

#index-page .product .list_child-bg img {
  width: 100%;
  height: auto; }

#index-page .points .c-section_title .title_below {
  letter-spacing: .08em; }

#index-page .points_inner {
  position: absolute;
  top: 23.5vw;
  left: 48.5%;
  transform: translateX(-50%); }

@media only screen and (max-width: 1024px) {
  #index-page .points_inner {
    top: 47.5vw;
    left: 0;
    transform: translateX(0);
    width: 100%; } }

#index-page .points_attention {
  font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  width: 46.96875vw;
  position: absolute;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-50%);
  color: #804c1c; }

@media only screen and (max-width: 1024px) {
  #index-page .points_attention {
    width: 87.733334vw;
    bottom: 4vw; } }

#index-page .points .list {
  display: flex;
  justify-content: center;
  width: 72.625vw;
  margin: 0 auto;
  transform: translateX(1.8vw); }

@media only screen and (max-width: 1024px) {
  #index-page .points .list {
    flex-direction: column;
    width: 91.4666666667vw;
    transform: translateX(0); } }

#index-page .points .list_child1 .list_child-img {
  transform: translateX(5.25vw);
  width: 16.25vw; }

@media only screen and (max-width: 1024px) {
  #index-page .points .list_child1 .list_child-img {
    transform: translateX(1.25vw);
    width: 44vw; } }

#index-page .points .list_child2 .list_child-img {
  transform: translateX(5.25vw);
  width: 17.03125vw; }

@media only screen and (max-width: 1024px) {
  #index-page .points .list_child2 .list_child-img {
    transform: translateX(1.25vw);
    width: 44vw; } }

#index-page .points .list_child3 .list_child-img {
  transform: translateX(5.25vw);
  width: 17.03125vw; }

@media only screen and (max-width: 1024px) {
  #index-page .points .list_child3 .list_child-img {
    transform: translateX(1.25vw);
    width: 44vw; } }

#index-page .points .list_child {
  width: 33%; }

@media only screen and (max-width: 1024px) {
  #index-page .points .list_child {
    display: flex;
    width: 100%;
    margin-bottom: 11.65vw; } }

#index-page .points .list_child sup {
  top: .12em; }

#index-page .points .list_child-img {
  margin-bottom: .65vw; }

#index-page .points .list_child-img img {
  width: 100%;
  height: auto; }

#index-page .points .list_child-text {
  text-align: center;
  color: #804c1c; }

@media only screen and (max-width: 1024px) {
  #index-page .points .list_child-text {
    text-align: left;
    margin-top: 8vw;
    margin-left: 2.333333vw; } }

#index-page .points .list_child-text sup {
  vertical-align: baseline; }




/*
#index-page .series_content-slider {
  display: flex;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 4vw;
  left: 0; }

@media only screen and (max-width: 1024px) {
  #index-page .series_content-slider {
    top: 17vw; } }

#index-page .series_content-slide {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 15.0390625vw;
  height: 31.328125vw;
  font-size: 0; }

@media only screen and (max-width: 1024px) {
  #index-page .series_content-slide {
    width: 41.0666666667vw;
    height: 78.2666666667vw; } }

#index-page .series_content-slide a {
  display: block;
  width: 100%;
  height: 100%; }

#index-page .series_content-slide img {
  position: absolute;
  z-index: 1;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
  width: 18.9453125vw;
  height: 31.328125vw;
  overflow: hidden;
  pointer-events: none;
  transform-origin: center;
  transform: translateX(-1.953125vw); }

@media only screen and (max-width: 1024px) {
  #index-page .series_content-slide img {
    width: 47.7333333333vw;
    height: 78.2666666667vw;
    transform: translateX(-3.3333333333vw); } }
*/




.for-pc { display: block; }
.for-sp { display: none; }
.for-lte-320 { display: none; }
@media only screen and (max-width: 1024px) {
  .for-pc { display: none; }
  .for-sp { display: block; }
}
@media only screen and (max-width: 320px) {
  .for-lte-320 { display: block; }
 }


.for-IE11 #l-menu-btn span {
  height: 2px; }


.tns-outer {
  padding: 0 !important; }

.tns-outer [hidden] {
  display: none !important; }

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer; }

.tns-slider {
  transition: all 0s; }

.tns-slider > .tns-item {
  box-sizing: border-box; }

.tns-no-calc {
  left: 0;
  position: relative; }

.tns-gallery {
  left: 0;
  min-height: 1px;
  position: relative; }

.tns-gallery > .tns-item {
  left: -100%;
  position: absolute;
  transition: transform 0s,opacity 0s; }

.tns-gallery > .tns-slide-active {
  left: auto !important;
  position: relative; }

.tns-gallery > .tns-moving {
  transition: all .25s; }

.tns-autowidth {
  display: inline-block; }

.tns-lazy-img {
  opacity: .6;
  transition: opacity .6s; }

.tns-lazy-img.tns-complete {
  opacity: 1; }

.tns-ah {
  transition: height 0s; }

.tns-ovh {
  overflow: hidden; }

.tns-visually-hidden {
  left: -10000em;
  position: absolute; }

.tns-transparent {
  opacity: 0;
  visibility: hidden; }

.tns-fadeIn {
  opacity: 1;
  z-index: 0; }

.tns-fadeOut, .tns-normal {
  opacity: 0;
  z-index: -1; }

.tns-vpfix {
  white-space: nowrap; }

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block; }

.tns-t-subp2 {
  height: 10px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 310px; }

.tns-t-ct {
  position: absolute;
  right: 0;
  width: 2333.3333333%;
  width: 2333.3333333333%; }

.tns-t-ct:after {
  clear: both;
  content: "";
  display: table; }

.tns-t-ct > div {
  float: left;
  height: 10px;
  width: 1.4285714%;
  width: 1.4285714286%; }

.tns-horizontal.tns-subpixel {
  white-space: nowrap; }

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal; }

.tns-horizontal.tns-no-subpixel:after {
  clear: both;
  content: "";
  display: table; }

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left; }

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%; }



/*————————————————————
	design.scss
——————————————————————–*/
/** heading*/
/*————————————————————
	contents.scss
——————————————————————–*/
.box-sp {
  display: block; }

.box-pc {
  display: none; }

#l-menu .sns-list.list .icon-twitter {
  margin-right: 1vw; }

#l-menu .sns-list.list .icon-line {
  display: block;
  width: 1.171875vw;
  height: 1.171875vw; }

@media only screen and (max-width: 1024px) {
  #l-menu .sns-list.list .icon-twitter {
    margin-right: 3.5vw; }
  #l-menu .sns-list.list .icon-line {
    width: 4.4vw;
    height: 4.4vw; } }



#index-page #concept .concept_attention {
  left: auto;
  right: 6.2vw; }

#index-page #features {
  padding-bottom: 60px; }

#index-page #product-intro {
  display: none; }


#index-page #howto {
  padding-bottom: 40px;
  background: #FFF0A8; }
  #index-page #howto .howto_inner {
    padding-top: 40vw; }
    #index-page #howto .howto_inner .step {
      padding-bottom: 40px; }
  #index-page #howto .title .title_wrap {
    width: 100%; }
  #index-page #howto .title03 {
    margin: 0 auto 30px;
    width: 43.066vw; }
    #index-page #howto .title03 img {
      width: 100%;
      height: auto; }
  #index-page #howto p.howto_catch {
    margin: 0 0 20px;
    position: relative; }
    #index-page #howto p.howto_catch span.border {
      position: relative;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      color: #F38436;
      font-size: 6.6666666667vw;
      font-weight: bold;
      text-align: center;
      -webkit-text-stroke: 4px #fff;
      text-stroke: 4px #fff;
      z-index: 9; }
    #index-page #howto p.howto_catch span.color {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      color: #F38436;
      font-size: 6.6666666667vw;
      font-weight: bold;
      text-align: center;
      z-index: 10; }
  #index-page #howto p.howto_txt {
    margin: 0 auto 20px;
    font-size: 4vw;
    text-align: center;
    line-height: 1.6;
    color: #804C15;
    font-weight: bold;
    width: 80vw; }
  #index-page #howto .box-note {
    margin: 0 auto;
    width: 75vw;
    box-sizing: border-box;
    /*
			.title04 {
				margin: 0 0 20px;
				color: #E3803A;
				text-align: center;
				font-size: 4vw;
				position: relative;
				&:before {
					content: '';
					width: 38px;
					height: 1px;
					background: #E3803A;
					display: block;
					position: absolute;
					top: 50%;
					left: 10%;
				}
				&:after {
					content: '';
					width: 38px;
					height: 1px;
					background: #E3803A;
					display: block;
					position: absolute;
					top: 50%;
					right: 10%;
				}
			}
			.box-note_inner {
				display: flex;
				align-items: center;
				img {
					width: 15vw;
				}
				p {
					padding-left: 15px;
					color: #804C15;
					font-size: 3.5vw;
					font-weight: bold;
					line-height: 1.4;
				}
			}
			*/ }
    #index-page #howto .box-note img { width: 100%; height: auto; }


#index-page #concept .concept_attention { left: auto; right: 6.2vw; }

#product-page #l-contents .heading {
  padding-top: 110px;
  padding-bottom: 40px;
  background: url(../img/product01/heading_bg.jpg) no-repeat 50% 50%;
  background-size: auto 100%; }
  #product-page #l-contents .heading img {
    width: 100%;
    height: auto; }
  #product-page #l-contents .heading p.catch {
    position: relative;
    line-height: 1.5; }
    #product-page #l-contents .heading p.catch span.border {
      display: block;
      width: 100%;
      color: #F38436;
      font-size: 7vw;
      font-weight: bold;
      text-align: center;
      -webkit-text-stroke: 4px #fff;
      text-stroke: 4px #fff;
      z-index: 9; }
    #product-page #l-contents .heading p.catch span.color {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      color: #673918;
      font-size: 7vw;
      font-weight: bold;
      text-align: center;
      z-index: 10; }
    #product-page #l-contents .heading p.catch span.small {
      font-size: 5vw; }
      #product-page #l-contents .heading p.catch span.small sub {
        font-size: 2.5vw; }
    #product-page #l-contents .heading p.catch__second {
      margin-bottom: 20px; }
      #product-page #l-contents .heading p.catch__second span {
        font-size: 6vw; }
  #product-page #l-contents .heading .fig__second {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto; }
  #product-page #l-contents .heading .fig p.price {
    margin-top: 10px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
    color: #673918; }
  #product-page #l-contents .heading .fig p.price span { font-size: 10px; }


  #product-page #l-contents .heading ul.btn { width: 70%; max-width: 500px; margin: 0 auto 40px; font-size: 0; text-align: center;}
  #product-page #l-contents .heading ul.btn li { width: 100%; padding: 10px 0;font-size: clamp(15px, 4.0vw, 20px); font-weight: bold;}
  #product-page #l-contents .heading ul.btn li a { display: block; padding: 15px 0px; border-radius: 5px; color: #673918; text-decoration: none;}
  #product-page #l-contents .heading ul.btn li a img { margin-right: 10px; width: 20px; height: auto; }

  #product-page #l-contents .heading ul.btn li span { display: block; padding: 15px 0px; background: #ccc; border-radius: 5px; color: #fff; text-decoration: none;}
  #product-page #l-contents .heading ul.btn li span svg { display: block; width: 20px; fill: #fff;
	 position: absolute; left: 20%; top: 50%; transform: translate(0,-50%); z-index: 2;}

  #product-page #l-contents .heading ul.btn li form { position: relative;}
  #product-page #l-contents .heading ul.btn li form input[type="submit"] { position: relative; display: block; width: 100%; padding: 15px 0; border-radius: 5px; border: none; color: #673918; font-weight: 700; z-index: 1;}
  #product-page #l-contents .heading ul.btn li form svg { display: block; width: 20px; fill: #673918;
	 position: absolute; left: 20%; top: 50%; transform: translate(0,-50%); z-index: 2;}


  #product-page #l-contents .heading .title02 {
    margin-bottom: 40px;
    font-size: 7vw;
    color: #804C1C;
    text-align: center;
    line-height: 1.5; }
  #product-page #l-contents .heading__bottom {
    margin: 0 auto;
    width: 80%; }

#product-page #l-contents .unit .box-title {
  margin-bottom: 50px;
  padding: 20px 0 40px;
  background: url(../img/common/title_bg.png) no-repeat 50% 100%;
  background-size: 100% auto; }
  #product-page #l-contents .unit .box-title h2 {
    color: #fff;
    text-align: center;
    font-size: 24px;
    line-height: 1.5; }
  #product-page #l-contents .unit .box-title__e { display: block; font-size: 12px; }
  #product-page #l-contents .unit .box-title__s { font-size: 16px; }
  #product-page #l-contents .unit .box-title__undeline { position: relative; z-index: 1; }
    #product-page #l-contents .unit .box-title__undeline:after {
      content: '';
      width: 100%;
      height: 8px;
      background: #F38436;
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: -1; }

#product-page #l-contents .unit .box-flex {
  margin: 0 auto 30px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  #product-page #l-contents .unit .box-flex li {
    margin-bottom: 20px;
    width: 46%; }
    #product-page #l-contents .unit .box-flex li img {
      width: 100%;
      height: auto; }

#product-page #l-contents .unit .box-flex__second {
  margin-bottom: 0; }
  #product-page #l-contents .unit .box-flex__second li {
    width: 49%; }

#product-page #l-contents .unit .title03 {
  margin: 0 auto 20px;
  position: relative;
  display: table; }
  #product-page #l-contents .unit .title03 span.border {
    display: block;
    width: 100%;
    color: #F38436;
    font-size: 5vw;
    font-weight: bold;
    text-align: center;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
    z-index: 9; }
  #product-page #l-contents .unit .title03 span.color {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #CA5E00;
    font-size: 5vw;
    font-weight: bold;
    text-align: center;
    z-index: 10; }
  #product-page #l-contents .unit .title03:before {
    content: '';
    width: 40px;
    height: 1px;
    background: #CA5E00;
    position: absolute;
    top: 50%;
    left: -50px; }
  #product-page #l-contents .unit .title03:after {
    content: '';
    width: 40px;
    height: 1px;
    background: #CA5E00;
    position: absolute;
    top: 50%;
    right: -50px; }

#product-page #l-contents .unit .title04 {
  margin: 0 auto 30px;
  color: #804C1C;
  font-size: 4vw;
  text-align: center;
  line-height: 1.6; }

#product-page #l-contents .unit.box01 {
  padding-bottom: 20px;
  background: #FFDEBD;
  font-weight: normal; }

#product-page #l-contents .unit__p {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  font-size: 10px;
  font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  color: #804C1C; }

#product-page #l-contents .unit.box02 {
  padding-bottom: 30px;
  background: #FFDEBD;
  position: relative; }
  #product-page #l-contents .unit.box02 .fig {
    margin: 0 auto 30px;
    width: 70%;
    position: relative;
    z-index: 10; }
    #product-page #l-contents .unit.box02 .fig img {
      width: 100%;
      height: auto; }

#product-page #l-contents .unit .box02__pic01 {
  position: absolute;
  top: 150px;
  left: -30px;
  width: 122px;
  height: auto;
  mix-blend-mode: multiply; }

#product-page #l-contents .unit .box02__pic02 {
  position: absolute;
  top: 190px;
  right: -50px;
  width: 122px;
  height: auto;
  mix-blend-mode: multiply; }

#product-page #l-contents .unit .box02__pic03 {
  position: absolute;
  bottom: 10px;
  left: -40px;
  width: 122px;
  height: auto;
  mix-blend-mode: multiply; }




#product-page.product01 #l-contents .heading ul.btn li a { background: #ffa336;}
#product-page.product01 #l-contents .heading ul.btn li form input[type="submit"] { background: #ffa336;}


#product-page.product02 #l-contents .heading { padding-top: 70px; background-image: url(../img/product02/heading_bg.jpg); }
#product-page.product02 #l-contents .heading .fig__first { margin-left: auto; margin-right: auto; width: 80%; position: relative; }
#product-page.product02 #l-contents .heading .fig__first img.badge { width: 80px; position: absolute; top: 40px; left: 0; }
#product-page.product02 #l-contents .heading ul.btn li a { background: #FF922C; }
#product-page.product02 #l-contents .heading ul.btn li form input[type="submit"] { background: #FF922C; }

#product-page.product02 #l-contents .unit.box01 { background: #FFE9B2;}
#product-page.product02 #l-contents .unit.box02 { background: #FFE9B2;}
#product-page.product02 #l-contents .unit.box02 .fig.third { margin-top: 60px; width: 90%;}

#product-page.product03 #l-contents .heading { padding-top: 70px; background-image: url(../img/product03/heading_bg.jpg);}
#product-page.product03 #l-contents .heading .fig__first { margin-left: auto; margin-right: auto; width: 80%; }
#product-page.product03 #l-contents .heading ul.btn li a { background: #FFB400; }
#product-page.product03 #l-contents .heading ul.btn li form input[type="submit"] { background: #FFB400; }

#product-page.product03 #l-contents .unit.box01 { background: #FFF7C4; }
#product-page.product03 #l-contents .unit.box02 { background: #FFF7C4; }
#product-page.product03 #l-contents .unit.box02 .fig.third { margin-top: 60px; width: 90%; }

#product-page.product04 #l-contents .heading { padding-top: 70px; background-image: url(../img/product04/heading_bg.jpg); }
#product-page.product04 #l-contents .heading p.catch__first span.color { color: #0192A3; }
#product-page.product04 #l-contents .heading p.catch__first span.small { font-size: 4vw; }
#product-page.product04 #l-contents .heading .fig__first { margin-top: 30px; margin-left: auto; margin-right: auto; width: 80%; position: relative; }
#product-page.product04 #l-contents .heading .fig__first img.badge { width: 80px; position: absolute; top: 0; left: 0; }

#product-page.product04 #l-contents .heading ul.btn li a { background: #7AC8D1; color: #fff;}
#product-page.product04 #l-contents .heading ul.btn li form input[type="submit"] { background: #7AC8D1; color: #fff;}
#product-page.product04 #l-contents .heading ul.btn li form svg{ fill: #fff;}

#product-page.product04 #l-contents .heading .cart-sub { position: relative; width: 70%; margin: 0 auto;
 background: url(../img/product04/-sub.png) no-repeat 50% 50%; background-size: 100% auto;}
#product-page.product04 #l-contents .heading .cart-sub img { width: 100%; height: auto; }
#product-page.product04 #l-contents .heading .cart-sub ul.btn { margin: 0; position: absolute; left: 50%; bottom: 10px; width: 100%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#product-page.product04 #l-contents .heading .cart-sub ul.btn li { display: flex; align-items: center; justify-content: center;
color: #fff; color: #7AC8D1; text-decoration: none; width: 90%; }
#product-page.product04 #l-contents .heading .cart-sub ul.btn li img { margin-right: 10px; width: 20px; height: auto; }
#product-page.product04 #l-contents .heading ul.btn li a svg{ fill: #fff;}

#product-page.product04 #l-contents .unit .box-title { background-image: url(../img/common/title_bg-blue.png); }
#product-page.product04 #l-contents .unit .box-title__undeline:after { background: #1AA8B9; }

#product-page.product04 #l-contents .unit .title03 span.color { color: #1AA8B9; }

#product-page.product04 #l-contents .unit .title03:before,
#product-page.product04 #l-contents .unit .title03:after { background-color: #1AA8B9; }
#product-page.product04 #l-contents .unit.box01 { background: #D8F5FD; }
#product-page.product04 #l-contents .unit.box02 { background: #D8F5FD; }
#product-page.product04 #l-contents .unit.box02 .fig.third { margin-top: 60px; width: 90%; }

#product-page.product04 #l-contents .unit .box02__pic01 { left: -20px; width: 100px; }
#product-page.product04 #l-contents .unit .box02__pic02 { top: 150px; right: -40px; }


#product-page.product05 #l-contents .heading { padding-top: 70px; background-image: url(../img/product05/heading_bg.jpg); }
#product-page.product05 #l-contents .heading p.catch__first span.color { color: #EA545E; font-size: 8vw; }
#product-page.product05 #l-contents .heading p.catch__first span.border { font-size: 8vw; }
#product-page.product05 #l-contents .heading p.catch__first span.small { margin-bottom: -40px; font-size: 6vw; line-height: 1.8; display: block; }
#product-page.product05 #l-contents .heading .fig__first { margin-top: 30px; margin-left: auto; margin-right: auto; width: 80%; position: relative; }
#product-page.product05 #l-contents .heading .fig__first img.badge { width: 80px; position: absolute; top: 0; left: 0;}
#product-page.product05 #l-contents .heading .title02 img { margin-top: 40px; max-width: 240px; }
#product-page.product05 #l-contents .heading .title02 sub { font-size: 10px; }

#product-page.product05 #l-contents .heading ul.btn li a { background: #EE858C; color: #fff;}
#product-page.product05 #l-contents .heading ul.btn li form input[type="submit"] { background: #EE858C; color: #fff;}
#product-page.product05 #l-contents .heading ul.btn li form svg{ fill: #fff;}

#product-page.product05 #l-contents .heading .cart-sub { position: relative; width: 70%; margin: 0 auto;
 background: url(../img/product05/cart-sub.png) no-repeat 50% 50%; background-size: 100% auto;}
#product-page.product05 #l-contents .heading .cart-sub img { width: 100%; height: auto; }
#product-page.product05 #l-contents .heading .cart-sub ul.btn { margin: 0; position: absolute; left: 50%; bottom: 10px; width: 100%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#product-page.product05 #l-contents .heading .cart-sub ul.btn li { display: flex; align-items: center; justify-content: center; width: 90%;
 color: #fff; color: #7AC8D1; text-decoration: none;
}
#product-page.product05 #l-contents .heading .cart-sub ul.btn li img { margin-right: 10px; width: 20px; height: auto;}

#product-page.product05 #l-contents .unit .box-title { background-image: url(../img/common/title_bg-pink.png); }
#product-page.product05 #l-contents .unit .box-title__undeline:after { background: #EE858C; }
#product-page.product05 #l-contents .unit .title03 span.color { color: #F7796C; }
#product-page.product05 #l-contents .unit .title03:before, #product-page.product05 #l-contents .unit .title03:after { background-color: #F7796C; }
#product-page.product05 #l-contents .unit.box01 { background: #FFE2DD; }
#product-page.product05 #l-contents .unit.box02 { background: #FFE2DD; }
#product-page.product05 #l-contents .unit.box02 .fig.third { margin-top: 60px; width: 90%; }

#product-page.product05 #l-contents .unit .box02__pic01 { left: -20px; width: 100px; }
#product-page.product05 #l-contents .unit .box02__pic02 { top: 150px; right: -40px; }
#product-page.product05 #l-contents .unit .box02__p { padding-left: 4vw; }



#product-page.product06 #l-contents .heading { padding-top: 70px; background-image: url('../img/product06/heading_bg.jpg'); }
#product-page.product06 #l-contents .heading p.catch__first { color: #373737; font-size: 7vw; line-height: 1; text-align: center;}
#product-page.product06 #l-contents .heading p.catch__first span.color { color: #373737;}
#product-page.product06 #l-contents .heading p.catch__first span.border { display: block; margin-bottom: 12px;}
#product-page.product06 #l-contents .heading p.catch__first span.small { font-size: 4vw;}
#product-page.product06 #l-contents .heading p.catch__first span.small:nth-of-type(2) { display: block; margin-bottom: 20px; padding-top: 10px;}
#product-page.product06 #l-contents .heading p.catch span.color { color: #000;}
#product-page.product06 #l-contents .heading .fig__first { margin-top: 30px; margin-left: auto; margin-right: auto; width: 80%; position: relative; }
#product-page.product06 #l-contents .heading .fig__first img.badge { width: 80px; position: absolute; top: 0; left: 0; }
#product-page.product06 #l-contents .heading .fig__second { max-width: 640px;}
#product-page.product06 #l-contents .heading .fig__second img { display: block; width: 80%; margin: 0 auto; }
#product-page.product06 #l-contents .heading .fig__second p.price { color: #373737;}

#product-page.product06 #l-contents .heading ul.btn li a { background: #373737; color: #fff;}
#product-page.product06 #l-contents .heading ul.btn li form input[type="submit"] { background: #373737; color: #fff;}
#product-page.product06 #l-contents .heading ul.btn li form svg{ fill: #fff;}

#product-page.product06 #l-contents .heading .title02 { color: #373737; font-size: 5vw;}
#product-page.product06 #l-contents .heading .title02 sub { font-size: 12px;}
#product-page.product06 #l-contents .heading .cart-sub { position: relative; width: 70%; margin: 0 auto;
 background: url(../img/product04/-sub.png) no-repeat 50% 50%; background-size: 100% auto; }
#product-page.product06 #l-contents .heading .cart-sub img { width: 100%; height: auto; }
#product-page.product06 #l-contents .heading .cart-sub ul.btn {	margin: 0; position: absolute; left: 50%; bottom: 10px; width: 100%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0); }
#product-page.product06 #l-contents .heading .cart-sub ul.btn li { display: flex; align-items: center; justify-content: center; color: #fff; color: #7AC8D1;
text-decoration: none;
width: 90%; }
#product-page.product06 #l-contents .heading .cart-sub ul.btn li img { margin-right: 10px; width: 20px; height: auto; }
#product-page.product06 #l-contents .unit .box-title { background-image: url('../img/common/title_bg-black.png'); }
#product-page.product06 #l-contents .unit .box-title__undeline:after { background: #5a5c5b; }
#product-page.product06 #l-contents .unit .box-title h2 sub { font-size: 14px;}
#product-page.product06 #l-contents .unit .title03 span.color { color: #373737; }
#product-page.product06 #l-contents .unit .title03:before,
#product-page.product06 #l-contents .unit .title03:after { background-color: #000;}
#product-page.product06 #l-contents .unit.box01 { background: #f2f2f2; }
#product-page.product06 #l-contents .unit.box02 { background: #f2f2f2; }

#product-page.product06 #l-contents .unit.box02 .fig.third { margin-top: 60px; width: 90%; }
#product-page.product06 #l-contents .unit .box02__pic01 { left: -20px; width: 100px; }
#product-page.product06 #l-contents .unit .box02__pic02 { top: 150px; right: -40px; }


#product-page.product07 #l-contents .heading { padding-top: 70px; background-image: url(../img/product07/heading_bg.jpg); }
#product-page.product07 #l-contents .heading p.catch__first span.color { color: #0192A3; }
#product-page.product07 #l-contents .heading p.catch__first span.small { font-size: 4vw; }
#product-page.product07 #l-contents .heading .fig__first { margin-top: 30px; margin-left: auto; margin-right: auto; width: 80%; position: relative; }
#product-page.product07 #l-contents .heading .fig__first img.badge { width: 80px; position: absolute; top: 0; left: 0; }

#product-page.product07 #l-contents .heading ul.btn li a { background: #7AC8D1; color: #fff;}
#product-page.product07 #l-contents .heading ul.btn li form input[type="submit"] { background: #7AC8D1; color: #fff;}
#product-page.product07 #l-contents .heading ul.btn li form svg{ fill: #fff;}

#product-page.product07 #l-contents .heading .cart-sub { position: relative; width: 70%; margin: 0 auto;
 background: url(../img/product04/-sub.png) no-repeat 50% 50%; background-size: 100% auto;}
#product-page.product07 #l-contents .heading .cart-sub img { width: 100%; height: auto; }
#product-page.product07 #l-contents .heading .cart-sub ul.btn { margin: 0; position: absolute; left: 50%; bottom: 10px; width: 100%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#product-page.product07 #l-contents .heading .cart-sub ul.btn li { display: flex; align-items: center; justify-content: center;
color: #fff; color: #7AC8D1; text-decoration: none; width: 90%; }
#product-page.product07 #l-contents .heading .cart-sub ul.btn li img { margin-right: 10px; width: 20px; height: auto; }
#product-page.product07 #l-contents .heading ul.btn li a svg{ fill: #fff;}

#product-page.product07 #l-contents .unit .box-title { background-image: url(../img/common/title_bg-blue.png); }
#product-page.product07 #l-contents .unit .box-title__undeline:after { background: #1AA8B9; }

#product-page.product07 #l-contents .unit .title03 span.color { color: #1AA8B9; }

#product-page.product07 #l-contents .unit .title03:before,
#product-page.product07 #l-contents .unit .title03:after { background-color: #1AA8B9; }
#product-page.product07 #l-contents .unit.box01 { background: #D8F5FD; }
#product-page.product07 #l-contents .unit.box02 { background: #D8F5FD; }
#product-page.product07 #l-contents .unit.box02 .fig.third { margin-top: 60px; width: 90%; }

#product-page.product07 #l-contents .unit .box02__pic01 { left: -20px; width: 100px; }
#product-page.product07 #l-contents .unit .box02__pic02 { top: 150px; right: -40px; }



#product-page.product08 #l-contents .heading { padding-top: 70px; background-image: url('../img/product08/heading_bg.jpg'); }
#product-page.product08 #l-contents .heading p.catch__first { color: #373737; font-size: 7vw; line-height: 1; text-align: center;}
#product-page.product08 #l-contents .heading p.catch__first span.color { color: #373737;}
#product-page.product08 #l-contents .heading p.catch__first span.border{ display: block; margin-bottom: 12px;}
#product-page.product08 #l-contents .heading p.catch__first span.small { display: block; margin-bottom: 20px; font-size: 4vw; line-height: 1.74;}
#product-page.product08 #l-contents .heading p.catch span.color { color: #000;}
#product-page.product08 #l-contents .heading .fig__first { margin-top: 30px; margin-left: auto; margin-right: auto; width: 80%; position: relative; }
#product-page.product08 #l-contents .heading .fig__first img.badge { width: 80px; position: absolute; top: 0; left: 0; }
#product-page.product08 #l-contents .heading .fig__second { max-width: 640px;}
#product-page.product08 #l-contents .heading .fig__second img { display: block; width: 80%; margin: 0 auto; }
#product-page.product08 #l-contents .heading .fig__second p.price { color: #373737;}

#product-page.product08 #l-contents .heading ul.btn li a { background: #373737; color: #fff;}
#product-page.product08 #l-contents .heading ul.btn li form input[type="submit"] { background: #373737; color: #fff;}
#product-page.product08 #l-contents .heading ul.btn li form svg{ fill: #fff;}

#product-page.product08 #l-contents .heading .title02 { color: #373737; font-size: 5vw;}
#product-page.product08 #l-contents .heading .title02 sub { font-size: 12px;}
#product-page.product08 #l-contents .heading .cart-sub { position: relative; width: 70%; margin: 0 auto;
 background: url('../img/product04/-sub.png') no-repeat 50% 50%; background-size: 100% auto; }
#product-page.product08 #l-contents .heading .cart-sub img { width: 100%; height: auto; }
#product-page.product08 #l-contents .heading .cart-sub ul.btn {	margin: 0; position: absolute; left: 50%; bottom: 10px; width: 100%;
-webkit-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0); }
#product-page.product08 #l-contents .heading .cart-sub ul.btn li { display: flex; align-items: center; justify-content: center; color: #fff; color: #7AC8D1;
text-decoration: none;
width: 90%; }
#product-page.product08 #l-contents .heading .cart-sub ul.btn li img { margin-right: 10px; width: 20px; height: auto; }
#product-page.product08 #l-contents .unit .box-title { background-image: url('../img/common/title_bg-black.png'); }
#product-page.product08 #l-contents .unit .box-title h2 { font-size: 22px;}
#product-page.product08 #l-contents .unit .box-title__undeline:after { background: #5a5c5b; }
#product-page.product08 #l-contents .unit .box-title h2 sub { font-size: 14px;}
#product-page.product08 #l-contents .unit .title03 span.color { color: #373737; }
#product-page.product08 #l-contents .unit .title03:before,
#product-page.product08 #l-contents .unit .title03:after { background-color: #000;}
#product-page.product08 #l-contents .unit.box01 { background: #f2f2f2; padding-bottom: 60px;}
#product-page.product08 #l-contents .unit.box01 .fig { width: 90%; max-width: 800px; margin: 0 auto 60px;}
#product-page.product08 #l-contents .unit.box01 .fig img { width: 100%;}





.box-slick {
  position: relative; }
  .box-slick ul.slick-dots {
    width: 100%;
    height: 15px;
    margin: 0;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -40px;
    left: 0; }
    .box-slick ul.slick-dots li {
      margin: 0 5px;
      border: none;
      width: 10px;
      list-style-type: none; }
      .box-slick ul.slick-dots li:before {
        content: none; }
      .box-slick ul.slick-dots li button {
        padding: 0;
        text-indent: -9999px;
        overflow: hidden;
        width: 10px;
        height: 10px;
        background: #fff;
        border: 1px solid #ddd;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        -webkit-box-sizing: border-box;
        -webkit-appearance: button;
        appearance: button;
        box-sizing: border-box;
        cursor: pointer;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
      .box-slick ul.slick-dots li.slick-active button {
        border-color: #ddd;
        background-color: #ddd; }
  .box-slick .slick-prev,
  .box-slick .slick-next {
    margin-top: -15px;
    position: absolute;
    display: block;
    cursor: pointer;
    background: transparent;
    color: #000;
    font-size: 30px;
    font-size: 3rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-bottom: none;
    border-left: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-indent: -9999px; }
    .box-slick .slick-prev:before,
    .box-slick .slick-next:before {
      content: none; }
  .box-slick .slick-prev {
    left: 20px;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg); }
  .box-slick .slick-next {
    right: 20px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .box-slick .target {
    position: relative; }

/*モーダルを開くボタン*/
/*
.modal-open01,
.modal-open02{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  font-weight: bold;
  color: #fff;
  background: #000;
  margin: auto;
  cursor: pointer;
  transform: translate(-50%,-50%);
}
*/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container01,
.modal-container02 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #898989;
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  box-sizing: border-box;
  z-index: 10; }
  .modal-container01 .title03,
  .modal-container02 .title03 { color: #804C1C; font-size: 24px; text-align: center; }
  .modal-container01 p,
  .modal-container02 p {
    color: #804C1C;
    font-size: 10px;
    line-height: 1.7;
    line-break: strict;
    font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; }
    .modal-container01 p strong,
    .modal-container02 p strong { font-weight: bold; font-size: 12px; }

/*モーダル本体の擬似要素の指定*/
.modal-container01:before,
.modal-container02:before { content: ""; display: inline-block; vertical-align: middle; height: 100%; }

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container01.active,
.modal-container02.active { opacity: 1; visibility: visible; }

/*モーダル枠の指定*/
.modal-body { position: relative; display: inline-block; vertical-align: middle; max-width: 500px; width: 90%;}

/*モーダルを閉じるボタンの指定*/
.modal-close {
 display: flex; height: 1px; width: 45px; align-items: center; justify-content: center; background: #000; cursor: pointer;
 position: absolute; top: -60px; right: 0; font-size: 40px; transform: rotate(45deg);
}
.modal-close:before { content: ''; height: 1px; width: 45px; background: #231815; position: absolute; top: 0; right: 0; transform: rotate(90deg);}

/*モーダル内のコンテンツの指定*/
.modal-content { background: #fff; text-align: left; padding: 30px; border-radius: 15px;}
@media (max-width: 481px) {
	.modal-close { width: 32px; top: -30px;}
	.modal-close:before { width: 32px;}
  .modal-container01 .title03,
  .modal-container02 .title03 { font-size: 18px; margin: 0 auto 15px;}
	.modal-content { padding: 20px 25px; border-radius: 12px;}
  .modal-container01 p,
  .modal-container02 p { line-height: 1.65;}
}

/*margin*/
.mb-0 { margin-bottom: 0px !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-45 { margin-bottom: 45px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-55 { margin-bottom: 55px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-65 { margin-bottom: 65px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-75 { margin-bottom: 75px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-85 { margin-bottom: 85px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-95 { margin-bottom: 95px !important; }
.mb-100{ margin-bottom: 100px !important; }

/*padding*/
.pl-0 { padding-left: 0px !important; }
.pr-0 { padding-right: 0px !important; }
.pt-0 { padding-top: 0px !important; }
.pb-0 { padding-bottom: 0px !important; }
.pl-5 { padding-left: 5px !important; }
.pr-5 { padding-right: 5px !important; }
.pt-5 { padding-top: 5px !important; }
.pb-5 { padding-bottom: 5px !important; }
.pl-10 { padding-left: 10px !important; }
.pr-10 { padding-right: 10px !important; }
.pt-10 { padding-top: 10px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pl-15 { padding-left: 15px !important; }
.pr-15 { padding-right: 15px !important; }
.pt-15 { padding-top: 15px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pl-20 { padding-left: 20px !important; }
.pr-20 { padding-right: 20px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pl-25 { padding-left: 25px !important; }
.pr-25 { padding-right: 25px !important; }
.pt-25 { padding-top: 25px !important; }
.pb-25 { padding-bottom: 25px !important; }
.pl-30 { padding-left: 30px !important; }
.pr-30 { padding-right: 30px !important; }
.pt-30 { padding-top: 30px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pl-35 { padding-left: 35px !important; }
.pr-35 { padding-right: 35px !important; }
.pt-35 { padding-top: 35px !important; }
.pb-35 { padding-bottom: 35px !important; }
.pl-40 { padding-left: 40px !important; }
.pr-40 { padding-right: 40px !important; }
.pt-40 { padding-top: 40px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pl-45 { padding-left: 45px !important; }
.pr-45 { padding-right: 45px !important; }
.pt-45 { padding-top: 45px !important; }
.pb-45 { padding-bottom: 45px !important; }
.pl-50 { padding-left: 50px !important; }
.pr-50 { padding-right: 50px !important; }
.pt-50 { padding-top: 50px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pl-55 { padding-left: 55px !important; }
.pr-55 { padding-right: 55px !important; }
.pt-55 { padding-top: 55px !important; }
.pb-55 { padding-bottom: 55px !important; }
.pl-60 { padding-left: 60px !important; }
.pr-60 { padding-right: 60px !important; }
.pt-60 { padding-top: 60px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pl-65 { padding-left: 65px !important; }
.pr-65 { padding-right: 65px !important; }
.pt-65 { padding-top: 65px !important; }
.pb-65 { padding-bottom: 65px !important; }
.pl-70 { padding-left: 70px !important; }
.pr-70 { padding-right: 70px !important; }
.pt-70 { padding-top: 70px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pl-75 { padding-left: 75px !important; }
.pr-75 { padding-right: 75px !important; }
.pt-75 { padding-top: 75px !important; }
.pb-75 { padding-bottom: 75px !important; }
.pl-80 { padding-left: 80px !important; }
.pr-80 { padding-right: 80px !important; }
.pt-80 { padding-top: 80px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pl-85 { padding-left: 85px !important; }
.pr-85 { padding-right: 85px !important; }
.pt-85 { padding-top: 85px !important; }
.pb-85 { padding-bottom: 85px !important; }
.pl-90 { padding-left: 90px !important; }
.pr-90 { padding-right: 90px !important; }
.pt-90 { padding-top: 90px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pl-95 { padding-left: 95px !important; }
.pr-95 { padding-right: 95px !important; }
.pt-95 { padding-top: 95px !important; }
.pb-95 { padding-bottom: 95px !important; }
.pl-100 { padding-left: 100px !important; }
.pr-100 { padding-right: 100px !important; }
.pt-100 { padding-top: 100px !important; }
.pb-100 { padding-bottom: 100px !important; }

/*————————————————————
	sp.scss
——————————————————————–*/
/*==================
http://nuconeco.net/responsive-ui-breakpoints/
 *-479px:		sp sideway
 *480px-:		sp portrait
 *600px-:		tablet
 *960px-:		pc small
 *1280px-:	pc large
==================*/
/* common
-------------------------------------------------------------------------------------------------------------
*/
.pc-mode a:hover {
  color: #666; }
  .pc-mode a:hover img {
    opacity: 0.6;
    filter: alpha(opacity=60); }

.pc-mode a.btn:hover:after {
  right: 4%; }

.pc-mode .tab-nav {
  display: flex;
  align-items: flex-start; }
  .pc-mode .tab-nav ul.mm-all {
    width: 120px; }
  .pc-mode .tab-nav ul.mm-genre {
    width: calc(100% - 120px); }

/*width adjust*/
/* -375px(iPhone8)
-------------------------------------------------------------------------------------------------------------
*/
/* -500px(sp sideway)
-------------------------------------------------------------------------------------------------------------
*/
/* -600px(sp sideway)
-------------------------------------------------------------------------------------------------------------
*/
@media screen and (min-width: 600px) {
	.box-sp-600 { display: none !important; }
	.box-pc-600 { display: block !important; }
	#index-page #concept .concept_attention { bottom: 2vw; }
	#index-page #howto .title03 { width: 43.066vw; max-width: 200px; margin-right: auto; margin-left: auto; }
	#index-page #howto p.howto_catch span.border { font-size: 22px; }
	#index-page #howto p.howto_catch span.color { font-size: 22px; }
	#index-page #howto p.howto_txt { font-size: 14px;width: 100%; }
	#index-page #howto .box-note { width: 100%; }
	#index-page #howto .box-note .title04 { margin-bottom: 10px; font-size: 14px; }
	#index-page #howto .box-note .title04:before { width: 38px; }
	#index-page #howto .box-note .title04:after { width: 38px; }
	#index-page #howto .box-note .box-note_inner img { width: 15vw; max-width: 75px; }
	#index-page #howto .box-note .box-note_inner p { font-size: 12px; }
}

/* 768px-1024px(sp portrait)
-------------------------------------------------------------------------------------------------------------
*/
/* 1025px （pc large）
-------------------------------------------------------------------------------------------------------------
*/
@media screen and (min-width: 1025px) {
  .box-sp {
    display: none !important; }
  .box-pc {
    display: block !important; }
  #index-page #lineup .lineup_inner {
    padding-top: 20vw; }
  #index-page #howto .howto_inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20vw;
    display: flex;
    justify-content: space-between; }
    #index-page #howto .howto_inner .step {
      width: 30%; }
      #index-page #howto .howto_inner .step .title03 {
        width: auto; }
  #product-page #l-contents .heading {
    background-size: cover; }
    #product-page #l-contents .heading .fig__first {
      max-width: 340px;
      margin-left: auto;
      margin-right: auto; }
    #product-page #l-contents .heading .fig__second {
      max-width: 680px;
      margin: 0 auto 30px;
      display: flex;
      justify-content: center;
      align-items: center; }
      #product-page #l-contents .heading .fig__second img {
        width: 50%;
        margin-right: 30px; }
      #product-page #l-contents .heading .fig__second p.price {
        margin: 0;
        width: 50%;
        font-size: 22px;
        text-align: left; }
        #product-page #l-contents .heading .fig__second p.price span {
          font-size: 13px; }
    #product-page #l-contents .heading p.catch {
      position: relative; }
      #product-page #l-contents .heading p.catch span {
        font-size: 50px !important; }
        #product-page #l-contents .heading p.catch span.small {
          font-size: 40px !important; }
      #product-page #l-contents .heading p.catch__second span {
        font-size: 38px !important; }


    #product-page #l-contents .heading ul.btn { max-width: 250px;}
    #product-page #l-contents .heading ul.btn li { font-size: 12px; }
    #product-page #l-contents .heading ul.btn li a { padding: 10px 10px; }
    #product-page #l-contents .heading ul.btn li span.nolink { padding: 10px 10px; }
    #product-page #l-contents .heading ul.btn li a svg{ display: inline-block; width: 18px; margin-right: 10px; fill: #673918; vertical-align: middle;}
    #product-page #l-contents .heading ul.btn li a em { display: inline-block; font-style: normal; vertical-align: middle;}


    #product-page #l-contents .heading .title02 {
      margin-bottom: 100px;
      font-size: 32px; }
    #product-page #l-contents .heading__bottom {
      max-width: 600px; }
  #product-page #l-contents .unit .box-title {
    margin-bottom: 80px;
    padding-bottom: 100px;
    background-image: url(../img/common/title_bg@pc.png); }
    #product-page #l-contents .unit .box-title h2 {
      font-size: 32px; }
    #product-page #l-contents .unit .box-title__e {
      font-size: 18px; }
    #product-page #l-contents .unit .box-title__s {
      font-size: 28px; }
  #product-page #l-contents .unit .box-flex {
    max-width: 800px; }
    #product-page #l-contents .unit .box-flex li {
      width: 23%; }
  #product-page #l-contents .unit .box-flex__second {
    margin-bottom: 0; }
    #product-page #l-contents .unit .box-flex__second li {
      width: 24%; }
  #product-page #l-contents .unit .title03 {
    margin: 0 auto 20px;
    position: relative;
    display: table; }
    #product-page #l-contents .unit .title03 span {
      font-size: 28px !important; }
    #product-page #l-contents .unit .title03:before {
      width: 100px;
      left: -110px; }
    #product-page #l-contents .unit .title03:after {
      width: 100px;
      right: -110px; }
  #product-page #l-contents .unit .title04 {
    font-size: 16px; }
  #product-page #l-contents .unit__p {
    max-width: 780px;
    font-size: 12px; }
  #product-page #l-contents .unit.box02 {
    padding-bottom: 100px; }
    #product-page #l-contents .unit.box02 .fig {
      max-width: 540px; }
  #product-page #l-contents .unit .box02__pic01 {
    top: 100px;
    left: -250px;
    width: 380px; }
  #product-page #l-contents .unit .box02__pic02 {
    position: absolute;
    top: 150px;
    right: -200px;
    width: 450px; }
  #product-page #l-contents .unit .box02__pic03 {
    bottom: 100px;
    left: -150px;
    width: 240px; }
  #product-page.product02 #l-contents .heading .fig__first {
    max-width: 480px; }
    #product-page.product02 #l-contents .heading .fig__first img.badge {
      width: 110px;
      top: 90px;
      left: -10px; }
  #product-page.product02 #l-contents .unit.box02 .fig.third {
    margin-top: 100px;
    max-width: 450px; }
  #product-page.product03 #l-contents .heading .fig__first {
    max-width: 450px; }
  #product-page.product03 #l-contents .unit.box02 .fig.third {
    margin-top: 100px;
    max-width: 450px; }
  #product-page.product04 #l-contents .heading .cart-sub {
    max-width: 350px;
    background-image: url(../img/product04/cart-sub@pc.png); }
    #product-page.product04 #l-contents .heading .cart-sub ul.btn {
      bottom: 15px; }
      #product-page.product04 #l-contents .heading .cart-sub ul.btn li {
        width: 70%; }
  #product-page.product04 #l-contents .heading p.catch span.small {
    font-size: 24px !important; }
  #product-page.product04 #l-contents .heading .fig__first img.badge {
    width: 110px;
    top: 0;
    left: -110px; }
  #product-page.product04 #l-contents .unit .box02__pic01 {
    top: 150px;
    left: 0px;
    width: 122px; }
  #product-page.product04 #l-contents .unit .box02__pic02 {
    position: absolute;
    top: 190px;
    right: -50px;
    width: 240px;
    height: auto; }
  #product-page.product04 #l-contents .unit__p {
    max-width: 740px; }
  #product-page.product04 #l-contents .unit .box-title {
    padding-bottom: 180px; }


  #product-page.product05 #l-contents .heading .cart-sub { max-width: 350px; background-image: url(../img/product05/cart-sub@pc.png); }
	#product-page.product05 #l-contents .heading .cart-sub ul.btn { bottom: 15px; }
	#product-page.product05 #l-contents .heading .cart-sub ul.btn li { width: 70%; }
	#product-page.product05 #l-contents .heading p.catch span.small { font-size: 24px !important; }
	#product-page.product05 #l-contents .heading p.catch span.small sub { font-size: 12px !important; }
  #product-page.product05 #l-contents .heading .fig__first img.badge { width: 110px; top: 0; left: -110px; }
  #product-page.product05 #l-contents .unit.box02 { padding-bottom: 40px; }
  #product-page.product05 #l-contents .unit .box02__pic01 { top: 150px; left: 0px; width: 122px; }
	#product-page.product05 #l-contents .unit .box02__pic02 { position: absolute; top: 190px; right: -50px; width: 240px; height: auto; }
	#product-page.product05 #l-contents .unit__p { max-width: 740px; }
	#product-page.product05 #l-contents .unit .box-title { padding-bottom: 180px; }

	#product-page.product06 #l-contents .heading p.catch__first { font-size: 40px;}
	#product-page.product06 #l-contents .heading p.catch__first span.border{}
	#product-page.product06 #l-contents .heading p.catch__first span.small { font-size: 24px !important; line-height: 1;}
	#product-page.product06 #l-contents .heading p.catch__first span.small sub { font-size: 12px !important; vertical-align: middle;}
	#product-page.product06 #l-contents .heading .fig__second img { width: 46%; }
	#product-page.product06 #l-contents .heading .title02 { font-size: 32px;}

	#product-page.product07 #l-contents .heading p.catch span.small { font-size: 24px !important; }
	#product-page.product07 #l-contents .heading p.catch span.small sub { font-size: 12px !important; }


	#product-page.product08 #l-contents .heading p.catch span.small { display: block; margin-bottom: 20px; font-size: 24px !important; }
	#product-page.product08 #l-contents .heading p.catch span.small sub { font-size: 12px !important; }
	#product-page.product08 #l-contents .heading .fig__second img { width: 46%; }
	#product-page.product08 #l-contents .heading .title02 { font-size: 32px;}
	#product-page.product08 #l-contents .unit .box-title h2 { font-size: 32px;}

}



/* 1200px （pc large）
-------------------------------------------------------------------------------------------------------------
*/

#grobalMenu { display: flex; justify-content: flex-end; width: 100%; height: 100%; background-color: rgba(255, 241, 229, 0.88);
 position: fixed; right: 0; top: 0; z-index: 4;
 opacity: 0; visibility: hidden; transition: all .65s ease;
}
#grobalMenu.is-active { opacity: 1; visibility: visible; }

#grobalMenu .menu-inner { box-sizing: border-box; width: 100%; max-width: 360px; height: 100vh; /* min-height: 700px;*/ position: relative; z-index: 2;
  background-color: #ffd3a2; transition: transform .75s ease; transform: translateX(27.34375vw); will-change: transform;
}
#grobalMenu.is-active .menu-inner { transform: translateX(0); }
#grobalMenu .menu-inner .scroll { box-sizing: border-box; width: 100%; height: 100%; padding: 50px 30px; overflow-y: scroll;}

#grobalMenu .gnav { width: 80%; max-width: 220px; margin: 0 auto 10px;}
#grobalMenu .gnav ul li { padding: 12px 0; font-size: 14px; font-weight: 600; letter-spacing: 0.3rem;}
#grobalMenu .gnav ul li a { color: #43220d; text-decoration: none;}
#grobalMenu .gnav ul li a svg { display: inline-block; width: 15px; margin-right: 8px; fill: #43220d; vertical-align: middle;}
#grobalMenu .gnav ul li a svg.icn-x { padding: 2px; background: #43220d; border-radius: 50%; fill: #ffd3a2;}
#grobalMenu .gnav ul li a img { display: inline-block; width: 15px; margin-right: 8px; vertical-align: middle;}
#grobalMenu .gnav ul li a span{ display: inline-block; vertical-align: middle;}
#grobalMenu ul.sns-link { width: 80%; max-width: 220px; margin: 0 auto 10px;}
#grobalMenu ul.sns-link li { display: inline-block; width: 30px; vertical-align: middle;}
#grobalMenu ul.sns-link li a { display: block; width: 20px;}
#grobalMenu ul.sns-link li a img { width: 100%;}
#grobalMenu ul.series-link { width: 80%; max-width: 220px; margin: 0 auto 10px;}
#grobalMenu ul.series-link li { padding: 6px 0;}
#grobalMenu ul.series-link li a { display: block;}
#grobalMenu ul.series-link li a img { width: 100%;}
#grobalMenu .subNav {}
#grobalMenu .subNav ul { font-size: 0px; text-align: center;}
#grobalMenu .subNav ul li { display: inline-block; width: 50%; padding: 6px; box-sizing: border-box;
 font-size: 10px;
 font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; letter-spacing: 0.05rem;
}
#grobalMenu .subNav ul li a { display: block; width: 100%; padding: 6px 0; border: solid 1px #43220d; border-radius: 50px; color: #43220d; text-decoration: none;}
@media (max-width: 641px) {
	#grobalMenu .menu-inner { width: 100%;}
	#grobalMenu .menu-inner .scroll { padding: 40px 25px;}
	#grobalMenu ul.series-link { margin: 0 auto 20px;}
	#grobalMenu ul.series-link li { padding: 6px 0;}
}


#l-cart-icon{ position: fixed; right: 3.2vw; top: 8.0vw; width: 32px; z-index: 2; cursor: pointer;
 transition: transform .65s ease; transform: translateY(0px);
}
.is-loaded #l-cart-icon { transform: translateY(0); }


#cart-icon { position: fixed; right: 2.8vw; top: 8.0vw; width: 36px; z-index: 2; cursor: pointer;
 transition: transform .65s ease; transform: translateY(-200px);
}
.is-loaded #cart-icon { transform: translateY(0); }
@media only screen and (max-width: 1024px) {
	#l-cart-icon,
	#cart-icon { right: 6.5vw; top: 17.7vw;}
}

#cart-icon a { display: block;}
#cart-icon svg { width: 100%; fill: #43220d;}
#cart-icon:hover { opacity: .8;}



#index-page .news { background: #FFE2DD;}
#index-page .news .inner { box-sizing: border-box; width: 100%; padding: 15px 0;}
#index-page .news a { display: block; width: 100%; max-width: 520px; margin: 0 auto; color: #804a1c; text-decoration: none;
 font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
#index-page .news a dl { display: table; width: 100%; margin: 0; }
#index-page .news a dl dt,
#index-page .news a dl dd { display: table-cell; vertical-align: middle;}
#index-page .news a dl dt { width: 120px;}
#index-page .news a dl dt img { width: 100%;}
#index-page .news a dl dd { width: auto; padding-left: 20px; letter-spacing: .04em; line-height: 1.6;}
#index-page .news a dl dd span { display: block;}
#index-page .news a dl dd span.tit { margin-bottom: 10px; color: #43220d; font-size: 15px;}
#index-page .news a dl dd span.desc { margin-bottom: 10px; font-size: 13px;}
#index-page .news a dl dd span.date { font-size: 12px;}

@media only screen and (max-width: 641px) {
	#index-page .news a dl dd span.tit { margin-bottom: 4px; font-size: 14px;}
	#index-page .news a dl dd span.desc { margin-bottom: 6px; font-size: 12px;}
	#index-page .news a dl dd span.date { font-size: 10px;}
}
@media only screen and (max-width: 481px) {
	#index-page .news .inner { padding: 12px;}
	#index-page .news a dl dt { width: 80px;}
	#index-page .news a dl dd { padding-left: 12px;}
	#index-page .news a dl dd span.tit { font-size: 12px;}
	#index-page .news a dl dd span.desc { font-size: 10px;}
}




#award { position: relative; z-index: 2; background: #fff; border-bottom: solid 2px #fff;}
#award .award-tit { position: relative; background: #f39c15; cursor: pointer;}
#award .award-tit:after { content: ''; display: block; width: 15px; height: 15px; margin-left: 320px;
 border-bottom: solid 4px #fff; border-right: solid 4px #fff;
 position: absolute; left: 50%; top: 50%; transform: translateY(-70%) rotate(45deg); transition: 0.4s linear;
}
#award .award-tit.open:after { transform: translateY(-30%) rotate(-135deg);}
#award .award-tit h2 { margin: 0px; padding: 28px 0;
 color: #fff; font-size: 32px; font-weight: 600; letter-spacing: 0.12rem; line-height: 1; text-align: center;
}
#award .award-tit h2:before,
#award .award-tit h2:after { content: ''; display: inline-block; width: 50px; height: 40px; vertical-align: middle;
 background: url('../img/top/icn-award.png') no-repeat 50% 50% / 100% auto;
}
#award .award-tit h2 span { display: inline-block; margin: 0 20px; vertical-align: middle;}
#award .ctn { display: none;}
@media (max-width: 801px) {
	#award .award-tit:after { margin: 0px; left: auto; right: 5%;}
}
@media (max-width: 641px) {
}
@media (max-width: 481px) {
	#award { border-width: 1px;}
	#award .award-tit {}
	#award .award-tit:after { bottom: 21px; width: 12px; height: 12px; border-width: 2px;}
	#award .award-tit h2 { padding: 18px 0; font-size: 20px; letter-spacing: 0rem;}
	#award .award-tit h2:before,
	#award .award-tit h2:after { width: 30px; height: 24px;}
	#award .award-tit h2 span { margin: 0 12px;}
}

.award { }
.award ul { box-sizing: border-box; width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 20px;}
.award ul li { border-bottom: solid 1px #e1e1e1;}
.award ul li:last-child { border-bottom: none;}
.award ul li dl { position: relative; width: 100%; max-width: 800px; margin: 0 auto; padding: 25px 0; text-align: center;}
.award ul li dl:before { content: ''; display: block; width: 80px; position: absolute; left: 20px; top: 50%; transform: translateY(-50%);}
.award ul li dl dt { margin-bottom: 6px; font-size: 25px; font-weight: 700; line-height: 1.25;
 background: linear-gradient(#977720 10%, #d9bb53 50%, #a57904 90%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
}
.award ul li dl dt br.sp { display: none;}
.award ul li dl dd.txt { color: #6a3906; font-size: 17px; font-weight: 700; line-height: 1.4;}
.award ul li dl dd.txt sub { vertical-align: baseline; font-size: 10px;}
.award ul li dl dd.txt span { display: inline-block; padding-left: 8px;}
.award ul li dl dd.note { margin-top: 8px; color: #6b6b6b; font-size: 10px; line-height: 1.4;
font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}
.award ul li dl dd.img { width: 100px; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);}
.award ul li dl dd.img img { width: 100%;}
@media (max-width: 801px) {
	.award ul li dl dt { font-size: 3.0vw;}
}
@media (max-width: 641px) {
	.award ul li dl { padding: 30px 0 20px;}
	.award ul li dl dd.txt { margin: 0;}
	.award ul li dl dd.txt span { display: block;}
	.award ul li dl dd.note { margin: 14px 0 0;}
	.award ul li dl dd.img { width: 80px; right: 10px; top: 20px; transform: translateY(0%);}
}
@media (max-width: 481px) {
	.award ul { padding: 0 15px;}
	.award ul li dl { padding: 20px 0 15px;}

	.award ul li dl dt { font-size: 16px;}
	.award ul li dl dt br.sp { display: block;}
	.award ul li dl dd.txt { font-size: 12px;}
	.award ul li dl dd.img { width: 50px; right: 0px; top: 20px;}
	.award ul li dl dd.note br { display: none; }
}



#index-page #lineup { padding-bottom: 60px; background: #FFFDF2; }
#index-page #lineup .lineup_inner { width: 100%; max-width: 1080px; margin: 0 auto;}
#index-page #lineup p.lineup_new { width: 88.1333333333vw; max-width: 800px; margin: 0 auto 60px; }
#index-page #lineup p.lineup_new img { width: 100%; height: auto; }


#lineup .slide-ctn { position: relative; width: 100%; height: 100%;}
#lineup .slide-ctn .ctn { width: 100%; position: absolute; left: 0; top: 36%; z-index: 2;}
#lineup .slide-ctn.top40 .ctn { top: 40%}
#lineup .slide-ctn h3 { position: relative; display: block; width: 100%; margin-bottom: 24px;
 font-size: clamp(18px,2.4vw,24px); font-weight: 700; text-align: center; line-height: 1.6;
}
#lineup .slide-ctn.top40 h3 { margin-bottom: 4px;}
#lineup .slide-ctn.top40 h3.mb { margin-bottom: 46px;}
#lineup .slide-ctn h3 span.border{ position: relative; color: #F38436; -webkit-text-stroke: 4px #fff; text-stroke: 4px #fff; z-index: 9;}
#lineup .slide-ctn h3 span.color { position: absolute; top: 0; right: 0; bottom: 0; left: 0; color: #673918; z-index: 10;}
#lineup .slide-ctn p.price { color: #673918; font-size: 10px; letter-spacing: 1px; text-align: center; line-height: 1.6;}
#lineup .slide-ctn p.price em { font-size: 14px; font-style: normal;}
#lineup .slide-ctn p.price span { font-size: 14px;}
#lineup .slide-ctn p.price span.amount { display: block;}
#lineup .slide-ctn ul { position: absolute; left: 0; bottom: 50px; width: 100%; z-index: 5; text-align: center;}
#lineup .slide-ctn ul li { margin-bottom: 8px; font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
#lineup .slide-ctn ul li.cart { min-height: 3.4em;}
#lineup .slide-ctn ul li:last-child { margin-bottom: 0px;}
#lineup .slide-ctn ul li span { position: relative; display: block; width: 74%; max-width: 200px; margin: 0 auto; padding: 6px 0; background: #ccc; border-radius: 8px; color: #fff; font-size: 14px; text-decoration: none; text-indent: 12px;}
#lineup .slide-ctn ul li a { display: block; width: 74%; max-width: 200px; margin: 0 auto; padding: 6px 0; border-radius: 8px; color: #673918; font-size: 14px; text-decoration: none;}
#lineup .slide-ctn ul.melty li a { background: #ee858c;}
#lineup .slide-ctn ul.black li a { background: #373737; color: #fff;}
#lineup .slide-ctn ul.black li span { background: #a0a0a0; color: #fff;}
#lineup .slide-ctn ul.black li span svg,
#lineup .slide-ctn ul.black li a svg { fill: #fff;}
#lineup .slide-ctn ul.sabon li a { background: #BADEF0;}
#lineup .slide-ctn ul.clear li a { background: #FFB400;}
#lineup .slide-ctn ul.moist li a { background: #FF922C;}
#lineup .slide-ctn ul.sabon li a { background: #badef0;}
#lineup .slide-ctn ul.oil li a { background: #FFA336;}
#lineup .slide-ctn ul li a svg { display: inline-block; width: 21px; margin-right: 8px; vertical-align: middle; fill: #673918;}
#lineup .slide-ctn ul li span em,
#lineup .slide-ctn ul li a em { display: inline-block; font-style: normal; vertical-align: middle;}
#lineup .slide-ctn ul li a:hover { opacity: 0.8;}
#lineup .slide-ctn ul li form { position: relative; display: block; width: 74%; max-width: 200px; margin: 0 auto;}
#lineup .slide-ctn ul li form input[type="submit"] { position: relative; display: block; width: 100%; padding: 6px 0; border-radius: 8px; border: none; z-index: 1;
 color: #673918; font-size: 14px; text-indent: 30px;
}
#lineup .slide-ctn ul.sabon li form input[type="submit"] { background: #BADEF0;}
#lineup .slide-ctn ul.melty li form input[type="submit"] { background: #ee858c;}
#lineup .slide-ctn ul.clear li form input[type="submit"] { background: #FFB400;}
#lineup .slide-ctn ul.black li form input[type="submit"] { background: #373737; color: #fff;}
#lineup .slide-ctn ul.black li form svg { fill: #fff;}
#lineup .slide-ctn ul.moist li form input[type="submit"] { background: #FF922C;}
#lineup .slide-ctn ul.oil li form input[type="submit"] { background: #FFA336;}
#lineup .slide-ctn ul li span svg,
#lineup .slide-ctn ul li form svg { display: block; width: 21px; vertical-align: middle; fill: #673918; position: absolute; left: 50%; top: 50%; transform: translate(-60px,-50%); z-index: 2;}


#lineup .slide-ctn ul li span svg { fill: #fff; transform: translate(-68px,-50%);}


#lineup .slide-ctn .bg { position: relative; width: 100%; z-index: 1;}
#lineup .slide-ctn .bg img { width: 100%;}
#lineup .slide-ctn .bg img.sp { display: none;}
@media (max-width: 1001px) {
	#index-page #lineup .lineup_inner { padding-top: 40vw;}
	#lineup .slide-ctn ul { bottom: 100px;}
}
@media (max-width: 801px) {
	#lineup .inner-sct { width: 100%;}
	#lineup .slide-ctn h3 { font-size: 4.5vw;}
	#lineup .slide-ctn p.price { font-size: 2.6vw;}
	#lineup .slide-ctn p.price em { font-size: 3.8vw;}
	#lineup .slide-ctn p.price span { font-size: 3.8vw;}
}
@media (max-width: 641px) {
	#lineup .inner-sct {padding: 40px 0 30px;}
	#lineup .slide-ctn ul { position: absolute; left: 0; bottom: 90px;}
	#lineup .slide-ctn .bg img.pc { display: none;}
	#lineup .slide-ctn .bg img.sp { display: block;}
}
@media (max-width: 481px) {
	#lineup .slide-ctn .ctn { top: 42%;}
	#lineup .slide-ctn.top40 .ctn { top: 45%}
	#lineup .slide-ctn h3 { margin-bottom: 14px; font-size: 18px;}
	#lineup .slide-ctn.top40 h3 { margin-bottom: 2px;}
	#lineup .slide-ctn.top40 h3.mb { margin-bottom: 30px;}
	#lineup .slide-ctn p.price { font-size: 10px; text-indent: 0.6em;}
	#lineup .slide-ctn p.price em { font-size: 14px;}
	#lineup .slide-ctn p.price span { font-size: 12px;}
	#lineup .slide-ctn ul { bottom: 32px;}
	#lineup .slide-ctn ul li a { padding: 5px 0; border-radius: 5px; font-size: 13px;}
	#lineup .slide-ctn ul li a svg { width: 18px; margin-right: 6px;}
	#lineup .slide-ctn ul li span svg { transform: translate(-60px,-50%);}
}





#index-page .shop { background: url('../img/top/shops/shops_bg.jpg') no-repeat 50% 50% / cover;}
#index-page .shop .inner { padding: 50px 0;}
#index-page .shop h3 { margin: 0 auto 2.5vw; text-align: center;}
#index-page .shop h3 img { width: 36%; max-width: 150px; height: auto;}

#index-page .shop p { font-size: 1.5625vw; letter-spacing: .01em; line-height: 1.6; text-align: center;}
#index-page .shop p.note { margin-bottom: 2vw; font-size: .78125vw; letter-spacing: -.055em; line-height: 1.3;}
#index-page .shop .btn { width: 80%; max-width: 260px; margin: 0 auto;}
#index-page .shop .btn a { position: relative; display: block; padding: 10px 0 12px; background: #ffa569;
 color: #42220f; font-size: 16px; font-weight: 600; letter-spacing: .04em; line-height: 1.2; text-align: center; text-decoration: none;
}
#index-page .shop .btn a:after{ content: ''; position: relative; display: inline-block; width: 8px; height: 8px;
 border-top: solid 1px #42220f; border-right: solid 1px #42220f; transform: rotate(45deg); vertical-align: middle;
}
#index-page .shop .btn a span { display: inline-block; margin-right: 15px; vertical-align: middle;}
#index-page .shop .btn a:hover { opacity: .8;}

@media only screen and (max-width: 1024px) {
	#index-page .shop h3 { margin-bottom: 7.5vw; }
	#index-page .shop p { margin-bottom: 3vw; font-size: 4.8vw; }
	#index-page .shop p.note { margin-bottom: 6vw; font-size: 2.9333333333vw;}
}
@media only screen and (max-width: 481px) {
	#index-page .shop { background: url('../img/top/shops/shops_bg@sp.jpg') no-repeat 50% 50% / cover;}
}





#index-page #series {}
#index-page #series .bg { background: url('../img/top/series/series_bg.jpg') no-repeat 50% 50% / cover;}
#index-page #series .title_wrap h2 { margin: 0;}
#index-page #series .title_wrap h2 span { display: block; margin-top: .8vw; font-size: 2.125vw; letter-spacing: .13em; }

#index-page #series .series_content { position: absolute; top: 22vw; left: 0; width: 100%;}
#index-page #series .series_content-text { font-weight: 500; color: #60290a; text-align: center; margin-bottom: 1.8vw; }
#index-page #series .ctn { padding: 340px 0 80px;}
#index-page #series h3 { margin: 0 auto 40px; font-size: 1.71875vw; font-weight: 400; letter-spacing: .01em; line-height: 1.6; text-align: center;}
#index-page #series h3 .tilt-text { display: inline-block;}

#index-page #series ul { width: 92%; max-width: 1100px; margin: 0 auto; font-size: 0; text-align: center;}
#index-page #series ul li { display: inline-block; width: 33%; padding: 12px; box-sizing: border-box;}
#index-page #series ul li a { display: block; width: 100%; max-width: 320px; margin: 0 auto;}
#index-page #series ul li a img { width: 100%; height: auto; }
#index-page #series ul li a img.sp { display: none;}
@media only screen and (max-width: 1024px) {
	#index-page #series .title_wrap h2 { font-size: 4.8vw; }
	#index-page #series .title_wrap h2 span { font-size: 4.8vw; white-space: nowrap;}
	#index-page #series .series_content { top: 38vw; }
	#index-page #series h3 { margin-bottom: 1.4vw; font-size: 4vw; }
}
@media (max-width: 801px) {
	#index-page #series .bg { background: url('../img/top/series/series_bg@sp.jpg') no-repeat 50% 50% / cover;}
	#index-page #series .title_wrap h2 { font-size: 4.0vw; }
	#index-page #series .title_wrap h2 span { font-size: 4.67vw; }

	#index-page #series .ctn { padding: 38vw 0 10vw;}
}
@media (max-width: 641px) {
	#index-page #series ul li { width: 50%; padding: 6px 0;}
}
@media (max-width: 481px) {
	#index-page #series h3 { margin-bottom: 30px;}
	#index-page #series ul { width: 85%;}
	#index-page #series ul li { width: 100%; padding: 0px;}
	#index-page #series ul li a img.pc { display: none;}
	#index-page #series ul li a img.sp { display: block;}
}




aside.function { position: relative; display: none; background: #fff; z-index: 10;}
aside.function .inner { padding: 50px 0 20px;}
aside.function ul { width: 92%; max-width: 600px; margin: 0 auto; font-size: 0; text-align: center;}
aside.function ul li { display: inline-block; width: 50%; vertical-align: middle;}
aside.function ul li a { position: relative; display: block; width: 92%; max-width: 250px; margin: 0 auto; padding: 10px 0;
 border: solid 1px #43220d; overflow: hidden;}
aside.function ul li a:after { content: ''; display: block; width: 7px; height: 7px; border-top: solid 1px #43220d; border-right: solid 1px #43220d;
 position: absolute; right: 20px; top: 50%; transform: translate(0,-50%) rotate(45deg);
}
aside.function ul li a svg { display: inline-block; width: 18px; fill: #43220d; vertical-align: middle;}
aside.function ul li a span{ display: inline-block; margin-left: 10px; vertical-align: middle; color: #43220d; font-size: 16px; }
aside.function ul li a:hover { border-color: #999;}
@media (max-width: 801px) {
	aside.function { background: #c5c5c5;}
	aside.function .inner { padding: 50px 0;}
}
@media (max-width: 641px) {
	aside.function .inner { padding: 30px 0;}
	aside.function ul li { display: block; width: 100%; padding: 15px 0;}
}
@media (max-width: 481px) {
	aside.function ul li { padding: 10px 0;}
	aside.function ul li a { padding: 12px 0;}
}





#ft { position: relative; z-index: 9; background: #fff;}
#ft .inner-ft { padding: 30px 0px;}
#ft h3 { margin-bottom: 30px; text-align: center;}
#ft h3 img { width: 50%; max-width: 160px;}
#ft ul { font-size: 0; text-align: center;}
#ft ul li { display: inline-block; font-size: 14px; padding: 0 20px; vertical-align: middle;
 font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif; letter-spacing: 0.1rem;
}
#ft ul li:first-child { border-left: 0;}
#ft ul li:last-child { border-right: 0;}
#ft ul li a { color: #43220d; text-decoration: none;}
#ft ul li a:hover { text-decoration: underline;}
#ft .copyright { padding: 10px; background: #000;}
#ft .copyright p { color: #fff; font-size: 10px; text-align: center;}
@media (max-width: 1001px) {
	#ft .inner-ft { padding: 20px 0px;}
}
@media (max-width: 801px) {
	#ft .inner-ft { padding: 50px 0px;}
	#ft ul { width: 92%; margin: 0 auto;}
	#ft ul li { width: 45%; padding: 10px;}
	#ft ul li:nth-child(2) { display: none;}
	#ft ul li a { display: block; padding: 10px 0; border: solid 1px #43220d;}
}
@media (max-width: 641px) {
}
@media (max-width: 481px) {
	#ft .inner-ft { padding: 30px 0px 40px;}
	#ft h3 { margin-bottom: 20px;}
	#ft ul li { padding: 6px; font-size: 11px; letter-spacing: 0.05rem;}
	#ft .copyright p { font-size: 9px;}
}

/*# sourceMappingURL=style.css.map */




#shop-page .shop-kv { background: url('../img/shop/shop_stores_bg.jpg') no-repeat 50% 50% / cover;}
#shop-page .shop-kv .inner-kv { padding: 100px 0;}
#shop-page .shop-kv h2 { margin: 0; margin-bottom: 1.5vw;
 font-size: 2.65625vw; font-weight: 600; letter-spacing: .08em; line-height: 1.6; text-align: center;
}

#shop-page .shop-kv p { font-size: 1.5625vw; font-weight: 600; letter-spacing: .01em; line-height: 1.6; text-align: center;}
#shop-page .shop-kv p.note { margin-top: .5vw; font-size: .703125vw; letter-spacing: -.055em; line-height: 1.3;}
@media only screen and (max-width: 1024px) {
	#shop-page .shop-kv h2 { margin-bottom: 4.5vw; font-size: 5.3333333333vw; }
	#shop-page .shop-kv p { font-size: 4.8vw; }
	#shop-page .shop-kv p.note { margin-top: 2vw; font-size: 2.9333333333vw; }
}
@media only screen and (max-width: 641px) {
	#shop-page .shop-kv { background: url('../img/shop/shop_stores_bg@sp.jpg') no-repeat 50% 50% / cover;}
}
@media only screen and (max-width: 481px) {
	#shop-page .shop-kv .inner-kv { padding: 50px 0;}
}



#shop-page .shop-ctn { background-color: #ffe0bf; }
#shop-page .shop-ctn .inner { width: 90%; max-width: 920px; margin: 0 auto; padding: 80px 0 100px;}
#shop-page .shop-ctn ul { width: 100%;
font-family: "游ゴシック体",YuGothic,"游ゴシック Medium","Yu Gothic Medium","游ゴシック","Yu Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
 font-size: 0px;
}
#shop-page .shop-ctn ul li { display: inline-block; box-sizing: border-box; width: 33.33334%; padding: 12px; font-size: 18px;}
#shop-page .shop-ctn ul li a { position: relative; display: block; width: 100%; padding: 21px 0; padding-left: 60px;
 box-sizing: border-box; border-radius: 7px; background-color: #ffb100;
 color: #43220d; letter-spacing: .04em; line-height: 1; text-decoration: none;
}
#shop-page .shop-ctn ul li a:before { content: ''; display: block; width: 28px; height: 100%;
 position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
 background: transparent url('../img/_symbols/bee_icon.svg') no-repeat center center / 100% auto;
}
#shop-page .shop-ctn ul li a:hover { opacity: 0.8;}
@media only screen and (max-width: 1024px) {
	#shop-page .shop-ctn ul li { font-size: 1.8vw;}
}
@media only screen and (max-width: 641px) {
	#shop-page .shop-ctn ul li { width: 50%; padding: 8px; font-size: 14px;}
}
@media only screen and (max-width: 481px) {
	#shop-page .shop-ctn .inner { padding: 40px 0 60px;}
	#shop-page .shop-ctn ul li { padding: 8px; font-size: 11.5px;}
	#shop-page .shop-ctn ul li a { padding: 16px 0; padding-left: 38px;}
	#shop-page .shop-ctn ul li a:before { width: 20px; left: 8px;}
}


/*

#shop-page .shop-nav_btns { font-size: 1.484375vw; letter-spacing: .04em; line-height: 1; }

@media only screen and (max-width: 1024px) {
	#shop-page .shop-nav_btns { font-size: 4.8vw; }
}

#shop-page .shop-nav_title { position: absolute; top: 10.2vw; left: 0; width: 100%; display: flex; justify-content: center; }
#shop-page .shop-nav_title img { width: 9.375vw; height: auto;}

#shop-page .shop-nav_btns {
 display: flex; justify-content: space-between; width: 41.796875vw;
 position: absolute; top: 16.5vw; left: 50%; transform: translateX(-50%);
}
#shop-page .shop-nav_btns .list_anchor {
 position: relative; display: flex; align-items: center; justify-content: center; width: 19.6875vw; height: 4.296875vw;
 background-color: #ffa945; border-radius: 4.5px; color: #673918; text-decoration: none;
}
#shop-page .shop-nav_btns .list_anchor:hover .triangle-arrow-bottom { margin-top: .5vw; }
#shop-page .shop-nav_btns .list_text { transform: translateX(-1vw);}
#shop-page .shop-nav_btns .triangle-arrow-bottom {
 position: absolute; top: 50%; right: 1.8vw; transform: translateY(-50%); transition: margin-top .35s ease;
}
#shop-page .shop-nav_btns .list_child2 { margin-left: 1.953125vw; }
@media only screen and (max-width: 1024px) {
	#shop-page .shop-nav_title { top: 10.8vw; }
	#shop-page .shop-nav_title img { width: 20.6666666667vw; }
	#shop-page .shop-nav_btns { top: 32.5vw; width: auto; flex-direction: column; }
	#shop-page .shop-nav_btns .list_anchor { width: 60.6666666667vw;　height: 14.6666666667vw; }
	#shop-page .shop-nav_btns .list_text { transform: translateX(-4vw);}
	#shop-page .shop-nav_btns .triangle-arrow-bottom { right: 5.8vw;}
	#shop-page .shop-nav_btns .list_child2 { margin-left: 0; margin-top: 6.6666666667vw;}
}

#shop-page .shop-online_title {
 display: flex; width: 100%; justify-content: center; align-items: flex-start;
 position: absolute; top: 3.7vw; left: 0;
}
#shop-page .shop-online_title img { width: 28.515625vw; height: auto; flex-shrink: 0; }

@media only screen and (max-width: 1024px) {
	#shop-page .shop-online_title { top: 6.7vw; }
	#shop-page .shop-online_title img { width: 67.3333333333vw; }
}

#shop-page .shop-online_list { display: flex; justify-content: center; position: absolute; top: 7.5vw; left: 50%; transform: translateX(-50%);}
#shop-page .shop-online_list .list_wrap { display: flex; flex-direction: column; align-items: center;}
#shop-page .shop-online_list .list_child { width: 20.703125vw; }
#shop-page .shop-online_list .list_child img { width: 100%; height: auto;}
#shop-page .shop-online_list .list_child-name { margin-bottom: 1.4vw; }
#shop-page .shop-online_list .list_child-price { margin-bottom: 2.4vw; }
#shop-page .shop-online_list .list_child-rate { margin-bottom: 2.2vw; }
#shop-page .shop-online_list .list_child .cart-btn_anchor:hover { opacity: .8; }
#shop-page .shop-online_list .list_child .cart-btn_img { width: 100%; height: auto; }
#shop-page .shop-online_list .list_child1,
#shop-page .shop-online_list .list_child2 { margin-right: 5.234375vw; }
#shop-page .shop-online_list .list_child1 .list_child-img { margin-bottom: 1.5vw; width: 8.1875vw;}
#shop-page .shop-online_list .list_child1 .list_child-name { width: 14.84375vw; }
#shop-page .shop-online_list .list_child1 .list_child-price { width: 19.53125vw; }
#shop-page .shop-online_list .list_child2 .list_child-img { margin-top: 14.5vw; margin-bottom: 2vw; width: 14.28125vw; }
#shop-page .shop-online_list .list_child2 .list_child-name { width: 21.09375vw; }
#shop-page .shop-online_list .list_child2 .list_child-price { width: 17.734375vw; }
#shop-page .shop-online_list .list_child3 .list_child-img { margin-top: 14.5vw; margin-bottom: 2vw; width: 14.28125vw; }
#shop-page .shop-online_list .list_child3 .list_child-name { width: 20.3125vw; }
#shop-page .shop-online_list .list_child3 .list_child-price { width: 17.734375vw; }

@media only screen and (max-width: 1024px) {
	#shop-page .shop-online_list { flex-direction: column; top: 38.5vw; left: 6.6666666667vw; transform: translateX(0); }
	#shop-page .shop-online_list .list_wrap	{ width: 43.2vw; }
	#shop-page .shop-online_list .list_child { display: flex; width: 86.6666666667vw; border-bottom: 1px solid #803522; }
	#shop-page .shop-online_list .list_child-rate { margin-bottom: 5.9vw; }
	#shop-page .shop-online_list .list_child1,
	#shop-page .shop-online_list .list_child2 { margin-right: 0; }
	#shop-page .shop-online_list .list_child1 { padding-bottom: 8vw; margin-bottom: 9.5vw; }
	#shop-page .shop-online_list .list_child1 .list_child-img { width: 43.2vw; }
	#shop-page .shop-online_list .list_child1 .list_child-img img { width: 21.833333vw; margin-left: 11vw; }
	#shop-page .shop-online_list .list_child1 .list_child-name { width: 44vw; margin-top: 11vw; margin-bottom: 3.4vw; }
	#shop-page .shop-online_list .list_child1 .list_child-price { margin-bottom: 4.4vw; width: 40vw; }
	#shop-page .shop-online_list .list_child2 { padding-bottom: 13vw; margin-bottom: 9.5vw; }
	#shop-page .shop-online_list .list_child2 .list_child-img { margin-top: 17.5vw; margin-bottom: 0; width: 43.2vw; }
	#shop-page .shop-online_list .list_child2 .list_child-img img { width: 37.833333vw;}
	#shop-page .shop-online_list .list_child2 .list_child-name { width: 47vw; margin-bottom: 2.4vw; }
	#shop-page .shop-online_list .list_child2 .list_child-price { margin-bottom: 3.4vw; width: 40vw; }
	#shop-page .shop-online_list .list_child3 { padding-bottom: 8vw; margin-bottom: 9.5vw; border-bottom: none; }
	#shop-page .shop-online_list .list_child3 .list_child-img { margin-top: 17.5vw; margin-bottom: 0; width: 43.2vw; }
	#shop-page .shop-online_list .list_child3 .list_child-img img { width: 37.833333vw; }
	#shop-page .shop-online_list .list_child3 .list_child-name { width: 47vw; }
	#shop-page .shop-online_list .list_child3 .list_child-price { width: 42vw; margin-bottom: 3.4vw; }
}


.for-IE11#shop-page .shop-online_list { width: 70vw;}
.for-IE11#shop-page .shop-online_list .list_wrap > * { flex-shrink: 0;}
.for-IE11#shop-page .shop-online_list .list_wrap > :not(.list_child-img):not(.list_child-name) { width: 100%;}
.for-IE11#shop-page .shop-online_list .list_child { align-items: flex-start;}
.for-IE11#shop-page .shop-links_list .list_anchor .list_icon { background: transparent url('../img/_symbols/bee_icon.svg') no-repeat center center; background-size: 1.675vw auto;}

@media only screen and (max-width: 1024px) {
	.for-IE11#shop-page .shop-online_list { width: auto; }
	.for-IE11#shop-page .shop-links_list .list_anchor .list_icon { background-size: 4vw auto; }
}

*/
