@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);

/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
  max-width: 100%;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #323232;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

.ft-futo {
  font-family: a-otf-futo-go-b101-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #323232;
  text-decoration: none;
}

.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}
.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  min-width: 830px;
}

.wrapper {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper-fluid {
  margin: 0 30px;
}

.none {
  display: none;
}

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

.none {
  display: none;
}

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

.block {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* RESPONSIVE
 * ----------------------------------------------- */
.sm {
  display: none !important;
}
.ssm {
  display: none !important;
}



@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  .sm {
    display: block !important;
  }

  .trans,
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }

  html {
    font-size: 13.02083vw;
  }

  body {
    font-size: 0.3rem;
  }

  .container {
    width: auto;
    min-width: 320px;
  }

  .wrapper,
  .wrapper-fluid {
    width: auto;
    margin: 0;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}
@media only screen and (max-width: 500px){
	.ssm {
  display: block !important;
}
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON TITLES
 * ----------------------------------------------- */
.sec-title {
  position: relative;
  z-index: 1;
  font-weight: bold;
  text-align: center;
  color: #603917;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.sec-title.ttl-black {
  color: #323232;
  line-height: 1.58;
}
.sec-title .txt-bg,
.sec-title .txt-underline {
  position: relative;
  display: inline-block;
  z-index: -1;
}
.sec-title .txt-bg:before,
.sec-title .txt-underline:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 50%;
  background: #cedd4f;
}
.sec-title .txt-bg {
  padding: 0 5px;
  margin-right: 5px;
}
.sec-title .txt-bg:before {
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.ie10 .sec-title .txt-bg:before {
  top: 45%;
}
.ie11 .sec-title .txt-bg:before {
  top: 38%;
}
.edge .sec-title .txt-bg:before, .firefox .sec-title .txt-bg:before {
  top: 47%;
}
.sec-title .txt-underline:before {
  bottom: -1px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.ie .sec-title .txt-underline:before {
  bottom: 7px;
}

@media print, (min-width: 768px) {
  .sec-title {
    font-size: 37px;
    line-height: 2.1;
  }
  .sec-title.ttl-black {
    font-size: 48px;
  }
  .sec-title .txt-bg:before {
    height: 54px;
  }
  .sec-title .txt-underline:before {
    height: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-title {
    font-size: 0.39rem;
    line-height: 1.7;
  }
  .sec-title.ttl-black {
    font-size: 0.48rem;
  }
  .sec-title .txt-bg:before {
    height: 0.54rem;
  }
  .sec-title .txt-underline:before {
    height: 0.18rem;
  }
}
/* PAGES
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .container {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding-bottom: 2rem;
  }
}
/* TOP MAIN
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .top-main .sec-title {
    margin-top: 55px;
  }
}
@media screen and (max-width: 767px) {
  .top-main .wrapper {
    padding: 0;
  }
  .top-main .sec-title {
    padding: 0 0.2rem;
    margin-top: 0.55rem;
  }
}
/* SECTION ABOUT
 * ----------------------------------------------- */
.top-about .about-detail {
  position: relative;
  border: 1px solid #cedd4f;
  color: #603917;
}
.top-about .about-detail > .flex {
  position: relative;
  z-index: 2;
}
.top-about .about-detail .left {
  width: 100%;
  font-weight: bold;
}
.top-about .about-detail .txt {
  line-height: 1.46;
  letter-spacing: -0.025em;
}
.top-about .about-detail .img-note {
  text-align: center;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: bold;
  text-decoration: underline;
  color: #00b900;
}
.top-about .about-detail .right {
  position: relative;
}
.top-about .about-detail .right img {
  display: block;
}
.top-about .full .img {
  position: relative;
}
.top-about .price {
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
.top-about .price .txt-large {
  letter-spacing: -0.06em;
}
.top-about .detail-list {
  background-color: #eef3ca;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.top-about .detail-list .item {
  position: relative;
}
.top-about .detail-list .item:before {
  content: "";
  background: url(../../img/lp/uv/detail_list_checked.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
}
.top-about .detail-list span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.top-about .detail-list span:before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.top-about .detail-list span.blue:before {
  background-color: #A1DBE4;
}
.top-about .detail-list span.green:before {
  background-color: #cedd4f;
}

@media print, (min-width: 768px) {
  .top-about.mb100 {
    margin-bottom: 100px;
  }
  .top-about.mb100 .about-bnr {
    margin-bottom: 53px;
  }
  .top-about .about-bnr {
    margin: 100px 0 65px;
  }
  .top-about .sec-title {
    background: url(../img/top/about_ttl_bg.png) no-repeat bottom 68px right 30px;
    -moz-background-size: 96px 103px;
    -o-background-size: 96px 103px;
    -webkit-background-size: 96px 103px;
    background-size: 96px 103px;
  }
  .top-about .sec-title .txt-bg {
    padding: 0 8px;
  }
  .top-about .sec-title .txt-bg:first-child, .top-about .sec-title .txt-bg.first-child {
    margin: 0 5px;
  }
  .top-about .sec-title .txt-bg.nth-child, .top-about .sec-title .txt-bg.last-child {
    margin-right: 8px;
  }
  .top-about .about-detail {
    border: 3px solid #cedd4f;
    margin: 59px 23px 175px;
    padding: 46px 41px 0 36px;
  }
  .top-about .about-detail .left {
    width: calc(100% - 230px);
  }
  .top-about .about-detail .txt {
    margin-bottom: 22px;
    font-size: 21px;
    line-height: 1.38;
  }
  .top-about .about-detail .img {
    margin-right: 30px;
  }
  .top-about .about-detail .img-note {
    margin: 60px auto;
    padding: 0 0 0 167px;
    font-size: 14px;
  }
  .top-about .about-detail .ft-14 {
    font-size: 14px;
  }
  .top-about .about-detail .right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 230px;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    bottom: -13px;
  }
  .top-about .about-detail .right img {
    margin-top: -10px;
  }
  .top-about .full {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .top-about .full .img {
    width: 694px;
    margin: 0 auto -77px -10px;
  }
  .top-about .price {
    margin: 10px 0 5px;
    font-size: 19px;
  }
  .top-about .price .txt-large {
    margin-left: 12px;
    font-size: 62px;
  }
  .top-about .price .txt-small {
    font-size: 15px;
  }
  .top-about .detail-list {
    padding: 26px 10px 20px 26px;
    margin-left: -3px;
    max-width: 413px;
    font-size: 19px;
  }
  .top-about .detail-list .item {
    margin-bottom: 7px;
    padding-left: 22px;
  }
  .top-about .detail-list .item:before {
    width: 17px;
    height: 15px;
    top: 5px;
  }
  .top-about .detail-list span:before {
    height: 13px;
  }
  .ie11 .top-about .detail-list span:before {
    bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .top-about.mb100 {
    margin-bottom: 2.5rem;
  }
  .top-about.mb100 .about-bnr {
    margin-bottom: 0.8rem;
  }
  .top-about .about-bnr {
    margin: 1rem 0 0.65rem;
  }
  .top-about .sec-title {
    background: url(../img/top/about_ttl_bg.png) no-repeat bottom right;
    -moz-background-size: 0.96rem 1.03rem;
    -o-background-size: 0.96rem 1.03rem;
    -webkit-background-size: 0.96rem 1.03rem;
    background-size: 0.96rem 1.03rem;
  }
  .top-about .sec-title .txt-bg {
    padding: 0 0.08rem;
  }
  .top-about .sec-title .txt-bg:first-child {
    margin: 0 0.05rem;
  }
  .top-about .sec-title .txt-bg.nth-child, .top-about .sec-title .txt-bg.last-child {
    margin-right: 0.08rem;
  }
  .top-about .about-detail {
    margin: 0.57rem 0.1rem 0.25rem;
    padding: 0.3rem 0.2rem;
  }
  .top-about .about-detail > .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-about .about-detail .left {
    width: 100%;
    -webkit-order: 1;
    order: 1;
  }
  .top-about .about-detail .txt {
    padding: 0 0.1rem 0.2rem;
    text-align: center;
    font-size: 0.35rem;
  }
  .top-about .about-detail .img {
    margin-right: 0.15rem;
  }
  .top-about .about-detail .img-note {
    margin-top: -0.3rem;
    padding: 0 0.15rem 0 1.75rem;
    font-size: 0.24rem;
    line-height: 1.5;
  }
  .top-about .about-detail .ft-14 {
    font-size: 0.14rem;
  }
  .top-about .about-detail .right {
    -webkit-order: 2;
    order: 2;
    margin: 1.5em auto 0.25rem;
  }
  .top-about .about-detail .right img {
    max-width: 3rem;
  }
  .top-about .full {
    -webkit-order: 3;
    order: 3;
    margin-top: 0.2rem;
  }
  .top-about .full .img {
    margin: 0.25rem 0 0;
  }
  .top-about .price {
    margin: 0.1rem 0 0.05rem;
    font-size: 0.28rem;
  }
  .top-about .price .txt-large {
    margin-left: 0.12rem;
    font-size: 0.62rem;
  }
  .top-about .price .txt-small {
    font-size: 0.28rem;
  }
  .top-about .detail-list {
    padding: 0.26rem 0 0.2rem 0.26rem;
    font-size: 0.32rem;
  }
  .top-about .detail-list .item {
    margin-bottom: 0.15rem;
    padding-left: 0.4rem;
  }
  .top-about .detail-list .item:before {
    width: 0.3rem;
    height: 0.28rem;
    top: 0.07rem;
  }
  .top-about .detail-list span:before {
    height: 0.2rem;
  }
  .ie11 .top-about .detail-list span:before {
    bottom: 0.04rem;
  }
}
/* SECTION PRIZES
 * ----------------------------------------------- */
.top-prizes .sec-title img {
  display: block;
}

@media print, (min-width: 768px) {
  .top-prizes .sec-title {
    width: 485px;
    margin: 74px auto 0;
  }
  .top-prizes .prizes-list .item {
    width: 33.333%;
  }
  .top-prizes .prizes-list .item img {
    padding: 0 8px;
  }
  .top-prizes .note {
    padding: 0 10px 54px;
    margin-top: -11px;
  }
}
@media only screen and (max-width: 767px) {
  .top-prizes .sec-title {
    width: 7rem;
    margin: 1rem auto 0.35rem;
  }
  .top-prizes .prizes-list {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-prizes .prizes-list .item {
    width: 50%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-prizes .note {
    padding: 0.1rem 0.1rem 0.78rem;
    margin-top: -0.11rem;
    font-size: 8px;
  }
}
/* SECTION CERT
 * ----------------------------------------------- */
.top-cert .sec-title {
  text-align: left;
  line-height: 1.78;
}
.top-cert .sec-title img {
  height: auto;
  position: absolute;
}
.top-cert .txt,
.top-cert .txt-sub {
  font-weight: bold;
}
.top-cert .txt {
  color: #603917;
  line-height: 1.65;
  letter-spacing: -0.1em;
}
.top-cert .txt-sub {
  line-height: 1.55;
}
.top-cert .img-full {
  display: block;
  width: 100%;
}

@media print, (min-width: 768px) {
  .top-cert {
    margin-top: 32px;
  }
  .top-cert .sec-title {
    padding: 0 50px;
    font-size: 40px;
  }
  .mac .top-cert .sec-title {
    font-size: 39px;
  }
  .ie10 .top-cert .sec-title {
    letter-spacing: -0.1em;
  }
  .top-cert .sec-title .txt-bg:before {
    height: 60px;
    top: 46%;
  }
  .ie11 .top-cert .sec-title .txt-bg:before {
    top: 39%;
  }
  .top-cert .sec-title .txt-bg.first-child {
    padding: 0 10px;
    margin-left: 8px;
  }
  .top-cert .sec-title .txt-bg.last-child {
    padding: 0 7px;
    margin-right: 10px;
  }
  .top-cert .sec-title img {
    width: 185px;
    top: 10px;
    right: 40px;
  }
  .mac .top-cert .sec-title img {
    right: 35px;
  }
  .ipad .top-cert .sec-title img {
    width: 165px;
  }
  .top-cert .txt,
  .top-cert .txt-sub {
    padding: 0 40px 0 49px;
  }
  .top-cert .txt {
    margin: 20px 0;
    font-size: 31px;
  }
  .top-cert .txt-sub {
    margin-bottom: 75px;
    font-size: 18px;
  }
  .top-cert .wrapper-fluid {
    margin-bottom: 59px;
  }
}
@media only screen and (max-width: 767px) {
  .top-cert {
    margin-top: 0.8rem;
  }
  .top-cert .sec-title {
    padding: 0 0.3rem;
    font-size: 0.4rem;
  }
  .top-cert .sec-title .txt-bg:before {
    height: 0.6rem;
  }
  .top-cert .sec-title .txt-bg.first-child {
    padding: 0 0.1rem;
    margin-left: 0.08rem;
  }
  .top-cert .sec-title .txt-bg.last-child {
    padding: 0 0.07rem;
    margin-right: 0.1rem;
  }
  .top-cert .sec-title img {
    width: 1.5rem;
    top: 0.1rem;
    right: 0;
  }
  .top-cert .txt {
    margin: 0.3rem 0 0.2rem;
    font-size: 0.31rem;
  }
  .top-cert .txt-sub {
    margin-bottom: 0.75rem;
    font-size: 0.23rem;
  }
  .top-cert .wrapper-fluid {
    margin-bottom: 0.8rem;
  }
}
/* SECTION CATE
 * ----------------------------------------------- */
.top-cate .sec-title {
  line-height: 1.7;
}
.top-cate .cate-img {
  display: block;
}
.top-cate .cate-list-wrapper .sec-title {
  color: #000;
}
.top-cate .cate-list-wrapper .sec-title span {
  display: inline-block;
  background-color: #fff;
}
.top-cate .small {
  display: block;
  line-height: 1.56;
  text-align: center;
}
.top-cate .cate-list .img {
  margin: 0;
  position: relative;
  width: 100%;
}
.top-cate .cate-list .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 100%;
  padding: 0.1rem;
}
.top-cate .cate-list img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.top-cate .cate-list .txt {
  position: relative;
  z-index: 1;
}
.top-cate .cate-list .img-ttl {
  max-width: 100%;
  display: block;
  margin-left: 0;
}
.top-cate .cate-list .ft-futo {
  letter-spacing: -0.03em;
}

.top-ingredients .icon-plus {
  display: block;
  max-width: 100%;
}
.top-ingredients .sec-title .txt-underline {
  line-height: 1;
  display: inline-block;
}
.top-ingredients .ft98 {
  line-height: 1;
}
.top-ingredients .txt {
  position: relative;
  text-align: center;
  line-height: 1.56;
}
.top-ingredients .txt img {
  position: absolute;
  top: 38%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  height: 100%;
  width: auto;
}
.top-ingredients .txt .right {
  right: 0;
  top: 31%;
}
.top-ingredients .ingredients-list .item {
  margin-bottom: 0;
}

.top-purchase {
  position: relative;
}
.top-purchase .note {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0.025em;
  line-height: 1;
  color: #00b900;
  text-decoration: underline;
}

@media print, (min-width: 768px) {
  .top-cate {
    margin-top: 61px;
  }
  .top-cate .sec-title {
    margin-bottom: 45px;
    font-size: 40px;
  }
  .top-cate .sec-title .txt-bg {
    padding: 0 6px;
    margin: 0 7px 0 3px;
  }
  .top-cate .sec-title .txt-bg:before {
    height: 59px;
    top: 47%;
  }
  .ie11 .top-cate .sec-title .txt-bg:before {
    top: 38%;
  }
  .top-cate .cate-img {
    max-width: 674px;
    margin: 0 auto 108px;
  }
  .top-cate .cate-list-wrapper {
    padding: 0 48px 43px;
    border: 3px solid #A1DBE4;
  }
  .top-cate .cate-list-wrapper .sec-title {
    margin: -32px auto 4px;
  }
  .top-cate .cate-list-wrapper .sec-title span {
    padding: 0 11px;
  }
  .top-cate .small {
    font-size: 18px;
  }
  .top-cate .cate-list .img {
    height: 250px;
  }
  .top-cate .cate-list .item {
    width: calc(50% - 32px);
    margin-top: 34px;
  }
  .top-cate .cate-list .item.item01 .txt {
    margin-top: -11px;
  }
  .top-cate .cate-list .item.item02 .img img {
    top: 45%;
    left: 55%;
  }
  .top-cate .cate-list .item.item02 .txt {
    margin-top: -11px;
    padding-left: 5px;
  }
  .top-cate .cate-list .item.item02 .img-ttl {
    margin-bottom: 3px;
  }
  .top-cate .cate-list .item.item02 .ft-futo {
    padding-left: 0;
  }
  .top-cate .cate-list .item.item03, .top-cate .cate-list .item.item04 {
    margin-top: 19px;
  }
  .top-cate .cate-list .item.item03 .txt, .top-cate .cate-list .item.item04 .txt {
    margin-top: -30px;
  }
  .top-cate .cate-list .item.item03 .img img {
    left: 54%;
  }
  .top-cate .cate-list .item.item03 .img-ttl {
    margin-left: -6px;
  }
  .top-cate .cate-list .txt {
    margin-top: 10px;
  }
  .top-cate .cate-list .ft-futo {
    padding-left: 3px;
    font-size: 14px;
  }

  .top-ingredients {
    margin-top: 40px;
  }
  .top-ingredients .icon-plus {
    margin: 0 auto 26px;
  }
  .top-ingredients .sec-title {
    margin-bottom: 8px;
  }
  .top-ingredients .sec-title .txt-underline {
    margin-top: 16px;
    font-size: 56px;
  }
  .top-ingredients .ft98 {
    font-size: 98px;
  }
  .ie .top-ingredients .ft98 {
    margin: 20px 0 -10px;
  }
  .top-ingredients .txt {
    width: 741px;
    margin: 0 auto 35px;
    padding: 0 0 10px;
    font-size: 18px;
  }
  .top-ingredients .txt .left {
    left: 19px;
    height: 89%;
  }
  .top-ingredients .ingredients-list {
    margin: 0 auto 45px;
  }
  .top-ingredients .ingredients-list .item {
    width: 253px;
  }

  .top-purchase {
    padding: 0 10px;
  }
  .top-purchase .note {
    bottom: 10px;
    padding-left: 81px;
    font-size: 14px;
    letter-spacing: -0.04em;
  }
}
@media only screen and (max-width: 767px) {
  .top-cate {
    margin-top: 0.65rem;
  }
  .top-cate .sec-title {
    margin-bottom: 0.45rem;
    font-size: 0.4rem;
  }
  .top-cate .sec-title .txt-bg {
    padding: 0 0.06rem;
    margin: 0 0.07rem 0 0.03rem;
  }
  .top-cate .sec-title .txt-bg:before {
    height: 0.59rem;
  }
  .top-cate .cate-img {
    margin: 0 auto 1.08rem;
  }
  .top-cate .cate-list-wrapper {
    padding: 0 0.2rem 0.4rem;
    border: 2px solid #A1DBE4;
  }
  .top-cate .cate-list-wrapper .sec-title {
    margin: -0.32rem auto 0.04rem;
  }
  .top-cate .cate-list-wrapper .sec-title span {
    padding: 0 0.11rem;
  }
  .top-cate .cate-list-wrapper .item ~ .item {
    margin-top: 0.3rem;
  }
  .top-cate .small {
    font-size: 0.3rem;
  }
  .top-cate .cate-list .img {
    height: 2.5rem;
  }
  .top-cate .cate-list .txt {
    margin-top: 0.1rem;
  }
  .top-cate .cate-list .txt img {
    max-height: 0.5rem;
  }
  .top-cate .cate-list .ft-futo {
    font-size: 0.27rem;
  }

  .top-ingredients {
    margin-top: 0.4rem;
  }
  .top-ingredients .icon-plus {
    margin: 0 auto 0.26rem;
    max-width: 0.7rem;
  }
  .top-ingredients .sec-title {
    margin: 0.7rem 0 0.4rem;
  }
  .top-ingredients .sec-title .txt-underline {
    margin-top: 0.15rem;
    font-size: 0.56rem;
  }
  .top-ingredients .ft98 {
    font-size: 0.98rem;
  }
  .top-ingredients .txt {
    margin: 0 auto 0.3rem;
    font-size: 0.33rem;
  }
  .top-ingredients .txt .left,
  .top-ingredients .txt .right {
    display: none;
  }
  .top-ingredients .ingredients-list {
    margin-bottom: 0.25rem;
  }
  .top-ingredients .ingredients-list .item {
    width: 32.5%;
  }

  .top-purchase .note {
    position: static;
    line-height: 1.5;
    font-size: 0.24rem;
  }
}
@media only screen and (max-width: 575px) {
  .top-cate .cate-list {
    padding: 0;
  }
}
/* SECTION RECOMMENDED
 * ----------------------------------------------- */
.top-recommended {
  background-color: #cfebf0;
}
.top-recommended .sec-title {
  color: #323232;
}
.top-recommended .recommended-list .item {
  position: relative;
  line-height: 1.24;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
}
.mac .top-recommended .recommended-list .item {
  letter-spacing: -0.06em;
}
.top-recommended .recommended-list .item:before {
  content: "";
  height: 100%;
  background: url(../../img/lp/uv/recommended_ico_flower.png) no-repeat center top/contain;
  position: absolute;
}

@media print, (min-width: 768px) {
  .top-recommended {
    margin: 108px 0 106px;
    padding: 73px 0 66px;
  }
  .top-recommended .sec-title {
    margin: 0 0 34px;
    font-size: 48px;
  }
  .top-recommended .recommended-list {
    margin-bottom: 60px;
  }
  .top-recommended .recommended-list .item {
    margin-bottom: 17px;
    padding-left: 72px;
    font-size: 40px;
  }
  .top-recommended .recommended-list .item:before {
    width: 51px;
    top: -1px;
    left: 10px;
  }
  .top-recommended .recommended-list .item:last-child {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .top-recommended {
    margin: 1.08rem 0 1.06rem;
    padding: 0.01rem 0 0.66rem;
  }
  .top-recommended .sec-title {
    margin: 0.6rem 0 0.3rem;
    font-size: 0.6rem;
  }
  .top-recommended .recommended-list {
    margin-bottom: 0.3rem;
    background-position: bottom 0.71rem right 0.2rem;
    -moz-background-size: 1.74rem auto;
    -o-background-size: 1.74rem auto;
    -webkit-background-size: 1.74rem auto;
    background-size: 1.74rem auto;
  }
  .top-recommended .recommended-list .item {
    margin-bottom: 0.17rem;
    padding-left: 0.6rem;
    font-size: 0.35rem;
  }
  .top-recommended .recommended-list .item:before {
    width: 0.47rem;
    top: 0.02rem;
    left: 0.05rem;
  }
  .top-recommended .recommended-list .item:last-child {
    margin-bottom: 0.04rem;
  }
}
/* MAIN ANCHOR
 * ----------------------------------------------- */
.main-anchor {
  position: fixed;
  z-index: 9999;
  background: /*#00b900*/linear-gradient(212deg, #3bb943 0%, #1ca7d1 100%); 
  -moz-box-shadow: 6px 6px 8px -5px rgba(90,89,89,0.6);
  -webkit-box-shadow: 6px 6px 8px -5px rgba(90,89,89,0.6);
  box-shadow: 6px 6px 8px -5px rgba(90,89,89,0.6);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.main-anchor .ft34 {
  font-weight: bold;
  letter-spacing: -0.02em;
}
.main-anchor .ft21 {
  font-weight: bold;
}

@media print, (min-width: 768px) {
  .main-anchor {
    bottom: 50px;
    right: 25px;
    width: 176px;
    height: 176px;
    font-size: 15px;
  }
  .main-anchor .ft34 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 34px;
  }
  .main-anchor .ft21 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .main-anchor {
    bottom: 0.2rem;
    right: 0.2rem;
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.18rem;
  }
  .main-anchor .ft34 {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    font-size: 0.45rem;
  }
  .main-anchor .ft21 {
    font-size: 0.28rem;
  }
}

/*# sourceMappingURL=style.css.map */
/*FOOTER*/
.lp-content{ text-align: center; font-size: 12px;}

/*OUTDOOR SET BUDGE*/
.outdoorset-budge{position: absolute; top:12px; margin: 0 0 0 -12px}
.outdoorset-budge img{ width: 200px; height: auto;transform: rotate(-9deg); filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));} 
@media only screen and (max-width: 428px){
		.outdoorset-budge{top:auto; bottom:80px; margin: 0 0 0 0; position: relative;z-index: 1; }
		.outdoorset-budge img{ width: 170px; height: auto;}
		.top-main .top-lead{margin: -80px 0 0 0; padding: 0;}
	}

/*CTA BUY ANIMATION*/
.cta-buy a { position: relative; overflow: hidden; display: inline-block; }
.cta-buy a::before { content: ""; position: absolute; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%); transform: skewX(-25deg); animation: shine 2s infinite; }
@keyframes shine { 0% { left: -75%; }
  100% { left: 125%; } }


/*FAQ*/
.content3 { max-width: 829px; width: 96%; margin: 0 auto; }

.faq { background: #F7F5E7; padding: 100px 0; }
.faq h2 { text-align: center; font-size: 36px;}
.faq ul { margin: 1.0rem auto; }
.faq ul li { text-indent: -1.6em; padding: 1em 1.6em 1em 3em; border-bottom: solid black 1px; }
.faq ul li h3 { font-weight: bold; color: #662F07; font-size: 1.1rem; cursor: pointer; }
.faq ul li h3::before { content: "\f101"; font-family: FontAwesome; padding: 0 0.6em 0 0; display: block; width: 1.0em; float: left; }
.faq ul li h3.open::before { content: "\f103"; }
.faq ul li p { display: none; text-indent: 0; margin: 1.0em 0 0;font-size: 1.1em; }
@media (max-width: 768px) { 
	.faq ul li { padding: 1em 1.6em 1em 1.6em; } }
@media (max-width: 480px) { 
	.faq ul li h3 { font-size: 16px; cursor: pointer; }
	}

/*INOFORMATION*/	
.information { padding: 100px 0; }
.information .content3 { padding: 2.0rem; border: 4px solid #662F07; border-radius: 12px; text-align: center; }
.information h2 { text-align: center; font-size: 1.6rem; margin-bottom: 1.0rem; }
@media (max-width: 768px) { .information .content3 { width: 90%; padding: 2.0rem 0; } }
@media (max-width: 480px) { 
	.information { padding: 60px 0; }
	.information .content3 { padding: 48px 24px; }
	.information h2 { font-size: 20px; margin-bottom: 1.6em;  } 
	}
.information .phoneno { font-family: "Sen", sans-serif; font-size: 2.6rem; }
.information .mail { font-family: "Sen", sans-serif; font-size: 1.8rem; }
.information .saleshour { font-size: 1.0rem; }
@media (max-width: 480px) { 
	.information .content3 { font-size: 16px;  }
	.information .phoneno { font-size: 22px; }
	.information .mail { font-size: 20px; }
	.information .saleshour { font-size: 16px; }
	}


