@charset "UTF-8";
/* 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", "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;
}

@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;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .main-header {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .main-header {
    margin-bottom: 0.48rem;
  }
  .main-header .wrapper {
    padding: 0;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
.main-footer .anchor {
  position: fixed;
  z-index: 9999;
  background-color: #00b900;
  -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-footer .anchor:hover{
	text-decoration: none
}

.main-footer .ft34 {
  font-weight: bold;
  letter-spacing: -0.02em;
}
.main-footer .ft21 {
  font-weight: bold;
}

@media print, (min-width: 768px) {
  .main-footer .anchor {
    bottom: 50px;
    right: 25px;
    width: 156px;
    height: 156px;
    font-size: 14px;
    line-height: 1.0em;
  }
  .main-footer .ft34 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 34px;
  }
  .main-footer .ft21 {
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .main-footer .anchor {
    bottom: 0.2rem;
    right: 0.2rem;
    width: 2.1rem;
    height: 2.1rem;
    font-size: 0.18rem;
  }
  .main-footer .ft34 {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    font-size: 0.45rem;
  }
  .main-footer .ft21 {
    font-size: 0.28rem;
  }
}
/* 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;
  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: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%;
}
.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
 * ----------------------------------------------- */
/* SECTION ABOUT
 * ----------------------------------------------- */
.top-about .about-detail {
  position: relative;
  border: 1px solid #cedd4f;
}
.top-about .about-detail:before, .top-about .about-detail:after {
  background: url("/img/lp/outdoorspray/top/about_bg.png") no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  z-index: 0;
}
.top-about .about-detail:after {
  -moz-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
.top-about .about-detail > .flex {
  position: relative;
  z-index: 2;
}
.top-about .about-detail .left {
  width: 100%;
  font-weight: bold;
}
.top-about .about-detail .left .txt {
  line-height: 1.46;
  letter-spacing: -0.025em;
}
.top-about .about-detail .left .note {
  line-height: 1.36;
  letter-spacing: 0.025em;
}
.top-about .about-detail .left .img-note {
  text-align: center;
  letter-spacing: -0.09em;
  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;
}

@media print, (min-width: 768px) {
  .top-about.mb100 {
    margin-bottom: 100px;
  }
  .top-about.mb100 .about-bnr {
    margin-bottom: 55px;
  }
  .top-about .about-bnr {
    margin: 100px 0 65px;
  }
  .top-about .sec-title {
    background: url(/img/lp/outdoorspray/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 {
    margin: 57px 25px 25px;
    padding: 18px 52px 43px 30px;
  }
  .top-about .about-detail:before, .top-about .about-detail:after {
    width: 366px;
    height: 294px;
  }
  .top-about .about-detail:before {
    top: -30px;
    left: -24px;
  }
  .top-about .about-detail:after {
    bottom: -33px;
    right: -27px;
  }
  .top-about .about-detail .left {
    width: calc(100% - 103px);
  }
  .top-about .about-detail .left .txt {
    padding: 19px 0 0 32px;
    font-size: 24px;
  }
  .top-about .about-detail .left .note {
    padding: 0 12px 0 47px;
    margin: 9px 0 15px;
    font-size: 14px;
    text-indent: -15px;
  }
  .top-about .about-detail .left .img {
    margin-right: 30px;
  }
  .top-about .about-detail .left .img-note {
    margin-top: -15px;
    padding: 0 0 0 130px;
    font-size: 12px;
  }
  .top-about .about-detail .ft-14 {
    font-size: 14px;
  }
  .top-about .about-detail .right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 103px;
    -ms-flex: 0 0 103px;
    flex: 0 0 103px;
    bottom: -13px;
  }
}
@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/lp/outdoorspray/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.18rem 0.2rem 0.7rem 0.2rem;
  }
  .top-about .about-detail:before, .top-about .about-detail:after {
    width: 3.66rem;
    height: 2.94rem;
  }
  .top-about .about-detail:before {
    top: -0.3rem;
    left: -0.24rem;
  }
  .top-about .about-detail:after {
    bottom: -0.33rem;
    right: -0.27rem;
  }
  .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: 2;
    order: 2;
  }
  .top-about .about-detail .left .txt {
    padding: 0 0.1rem 0.1rem;
  }
  .top-about .about-detail .left .note {
    padding: 0.1rem 0 0.3rem 0.4rem;
    font-size: 0.24rem;
    text-indent: -0.27rem;
  }
  .top-about .about-detail .left .img {
    margin-right: 0.15rem;
  }
  .top-about .about-detail .left .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-box-flex: 0;
    -webkit-flex: 0 0 1.3rem;
    -ms-flex: 0 0 1.3rem;
    flex: 0 0 1.3rem;
    -webkit-order: 1;
    order: 1;
    margin: 1.5em auto 0.25rem;
  }
}
/* 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 78px;
    margin-top: -11px;
  }
}
@media only screen and (max-width: 767px) {
  .top-prizes .sec-title {
    width: 7rem;
    margin: 1.2rem 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 .wrapper-fluid .img {
  width: 50%;
}
.top-cert .wrapper-fluid .img img {
  display: block;
}

@media print, (min-width: 768px) {
  .top-cert {
    margin-top: 29px;
  }
  .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;
  }
  .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 .item .img {
  position: relative;
}
.top-cate .item .img img {
  display: block;
}
.top-cate .item .label {
  width: auto;
  position: absolute;
}
.top-cate .item .txt-ttl {
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.075em;
  text-align: center;
}
.top-cate .item p {
  line-height: 1.43;
  text-align: justify;
}

.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: 50%;
  -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-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 .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-list {
    padding: 0 40px;
  }
  .top-cate .item {
    width: 320px;
    margin-bottom: 22px;
  }
  .top-cate .item:nth-child(3n) {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 520px;
    margin: 0 auto 35px;
  }
  .top-cate .item:nth-child(3n) .img {
    width: 317px;
    margin-right: 20px;
  }
  .top-cate .item:nth-child(3n) .label {
    left: auto;
    right: -126px;
    top: -6px;
    height: 71px;
  }
  .top-cate .item:nth-child(3n) .txt {
    width: calc(100% - 337px);
    padding-top: 65px;
  }
  .top-cate .item:nth-child(3n) .txt-ttl {
    margin: 0 0 4px 0;
    text-align: left;
  }
  .top-cate .item .label {
    height: 77px;
    bottom: -30px;
    left: -16px;
  }
  .top-cate .item .txt-ttl {
    margin: 10px 0 5px;
    font-size: 20px;
  }
  .top-cate .item p {
    font-size: 14px;
  }

  .top-ingredients {
    margin-top: -25px;
  }
  .top-ingredients .sec-title {
    margin-bottom: 4px;
  }
  .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: 660px;
    margin: 0 auto 6px;
    padding: 6px 0;
    font-size: 18px;
  }
  .top-ingredients .txt .left {
    left: 4px;
    height: 89%;
  }
  .top-ingredients .ingredients-list {
    width: 660px;
    margin: 0 auto 5px;
  }
  .top-ingredients .ingredients-list .item {
    width: 310px;
  }

  .top-purchase {
    padding: 0 10px;
  }
  .top-purchase .note {
    bottom: 5px;
    padding-left: 100px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .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-list {
    padding: 0 0.4rem;
  }
  .top-cate .item {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .top-cate .item img {
    margin-left: auto;
    margin-right: auto;
  }
  .top-cate .item .label {
    height: 1.5rem;
    bottom: -0.7rem;
    left: -0.3rem;
  }
  .top-cate .item .txt-ttl {
    margin: 0.4rem 0 0.05rem;
    font-size: 0.4rem;
  }
  .top-cate .item p {
    font-size: 0.28rem;
  }

  .top-ingredients {
    margin-top: -0.25rem;
  }
  .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: 48.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 ACTIVITIES
 * ----------------------------------------------- */
.top-activities {
  background-color: #cfebf0;
}
.top-activities .txt {
  text-align: center;
  line-height: 1.86;
  letter-spacing: -0.1em;
}
.top-activities .activities-list .item {
  position: relative;
}
.top-activities .activities-list .item img {
  display: block;
}
.top-activities .activities-list .item .label {
  position: absolute;
  width: auto;
}

@media print, (min-width: 768px) {
  .top-activities {
    margin-top: 65px;
    padding: 50px 15px 80px;
  }
  .top-activities .sec-title {
    margin-bottom: 52px;
  }
  .ie11 .top-activities .sec-title .txt-underline:before {
    bottom: 18px;
  }
  .top-activities .txt {
    margin: 44px 0 58px;
    font-size: 21px;
  }
  .top-activities .activities-list .item {
    width: 240px;
    margin: 0 10px;
  }
  .top-activities .activities-list .item .label {
    top: -13px;
    left: -13px;
    height: 48px;
  }
  .top-activities .activities-list .item:first-child, .top-activities .activities-list .item:nth-child(5n+2) {
    width: 350px;
    margin-bottom: 23px;
  }
  .top-activities .activities-list .item:first-child .label {
    height: 56px;
    top: -25px;
    left: -25px;
  }
  .top-activities .activities-list .item:nth-child(2) .label {
    left: -6px;
  }
  .top-activities .activities-list.bottom-list .item:first-child .label {
    height: 50px;
    top: -15px;
    left: -17px;
  }
}
@media only screen and (max-width: 767px) {
  .top-activities {
    margin-top: 0.8rem;
    padding: 0.8rem 0.2rem 0.8rem;
  }
  .top-activities .wrapper {
    padding: 0;
  }
  .top-activities .sec-title {
    margin-bottom: 0.52rem;
  }
  .top-activities .txt {
    margin: 0.3rem 0 0.5rem;
    font-size: 0.32rem;
    text-align: left;
  }
  .top-activities .activities-list {
    margin: 0 -5px;
  }
  .top-activities .activities-list .item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
  }
  .top-activities .activities-list .item .label {
    top: -0.3rem;
    left: -0.15rem;
    height: 0.8rem;
  }
}
/* SECTION RECOMMENDED
 * ----------------------------------------------- */
.top-recommended .sec-title {
  color: #323232;
}
.top-recommended .recommended-list {
  background: url("/img/lp/outdoorspray/top/recommended_bg.png") no-repeat;
}
.top-recommended .recommended-list .item {
  position: relative;
  line-height: 1.24;
  font-weight: bold;
}
.top-recommended .recommended-list .item:before {
  content: "";
  height: 100%;
  background: url("/img/lp/outdoorspray/top/recommended_ico_checked.png") no-repeat center top/contain;
  position: absolute;
}

@media print, (min-width: 768px) {
  .top-recommended .sec-title {
    margin: 49px 0 20px;
    font-size: 48px;
  }
  .top-recommended .recommended-list {
    padding-left: 105px;
    background-position: bottom 71px right 20px;
    -moz-background-size: 174px auto;
    -o-background-size: 174px auto;
    -webkit-background-size: 174px auto;
    background-size: 174px auto;
  }
  .top-recommended .recommended-list .item {
    margin-bottom: 17px;
    padding-left: 60px;
    font-size: 42px;
  }
  .top-recommended .recommended-list .item:before {
    width: 47px;
    top: 4px;
    left: 5px;
  }
  .top-recommended .recommended-list .item:last-child {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .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.42rem;
  }
  .top-recommended .recommended-list .item:before {
    width: 0.47rem;
    top: 0.04rem;
    left: 0.05rem;
  }
  .top-recommended .recommended-list .item:last-child {
    margin-bottom: 0.04rem;
  }
}

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


/*250ml */
.outdoorspray-250{ margin: 4.0em auto;}
.outdoorspray-250 .wrapper{  background: url("/img/lp/outdoorspray/top/bigbottle_spray250.jpg") no-repeat center top/cover; height:500px; padding: 4.0em;}
.outdoorspray-250 h3{ color: #FFF; font-weight: bold; font-size: 42px; line-height: 1.4em;}
.outdoorspray-250 .lead{color: #FFF; font-weight: bold; font-size: 22px;line-height: 1.4em; margin: 2.0rem 0; text-shadow: 1px 1px 6px black;}
.btn{ margin: 5.0rem auto; font-size: 28px; font-weight: bold;}
	.btn a{ display: block; text-align: center; background: linear-gradient(212deg, #3bb943 0%, #1ca7d1 100%); color: #FFFFFF; font-size: 2.0rem; border-radius: 10px; padding: 1.0em 0; text-decoration: none; width: 500px; max-width: 90%; font-weight: 600; margin: auto; box-shadow: 1px 1px 12px 1px #bbb; position: relative; overflow: hidden; white-space: nowrap;}
    .btn 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;}

@media only screen and (max-width: 767px) {
    .outdoorspray-250 .wrapper{  background: url("/img/lp/outdoorspray/top/bigbottle_spray250.jpg") no-repeat right center/cover; height:800px; padding: 4.0em 1.0em;}
    .outdoorspray-250 h3{ font-size: 7vw;}
    .outdoorspray-250 .lead{font-size: 5.1vw;}
    .btn{ margin: 5.0rem auto; font-size: 20px; font-weight: bold;}
    .btn a{ width: 100%;  font-size: 18px;   }
   /* .btn 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;}*/
}


/*CTA BUY ANIMATION*/
.cta-buy a { position: relative; overflow: hidden; display: inline-block; }
.cta-buy a::before { content: ""; position: absolute; top:0;width: 50%; height: 200%; 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%; } }

