/**
 * Swiper 4.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 14, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical>.swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  /*  pointer-events: none; */
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 1;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical>.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical>.swiper-pagination-progressbar,
.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

@media only screen and (min-width: 801px) {
  .contents .inner ul li img {
    width: auto !important;
  }
}

.sec_products img {
  width: 100%;
  height: auto;
}

.bl_eaudemuge_main_ttl {
  color: #fff;
  background: #52c48b;
  padding: 4.66926vw 0 5.44747vw;
  text-align: center;
  background-size: auto auto;
  background-color: #53c48b;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 8px, #41be7f 8px, #41be7f 16px);
}

@media screen and (min-width: 1028px) {
  .bl_eaudemuge_main_ttl {
    padding: 48px 0 56px;
  }
}

.bl_eaudemuge_main_ttl.type_column {
  padding: 4.66926vw 0 2.91829vw;
  margin-bottom: 9.72763vw;
}

@media screen and (min-width: 1028px) {
  .bl_eaudemuge_main_ttl.type_column {
    padding: 48px 0 30px;
    margin-bottom: 100px;
  }
}

.eaudemuge_main_ttl {
  display: inline-block;
  position: relative;
  font-weight: 700;
  line-height: 1;
  font-size: 3.11284vw;
  padding-bottom: 1.75097vw;
  margin-bottom: 2.91829vw;
}

.type_column .eaudemuge_main_ttl {
  font-size: 2.52918vw;
  padding-bottom: 2.72374vw;
}

@media screen and (min-width: 1028px) {
  .type_column .eaudemuge_main_ttl {
    font-size: 26px;
    font-size: 2.6rem;
    padding-bottom: 28px;
  }
}

@media screen and (min-width: 1028px) {
  .eaudemuge_main_ttl {
    font-size: 32px;
    font-size: 3.2rem;
    padding-bottom: 18px;
    margin-bottom: 30px;
  }
}

.eaudemuge_main_ttl::after {
  content: '';
  display: block;
  position: absolute;
  width: 11.67315vw;
  height: 0.38911vw;
  margin-left: -5.83658vw;
  bottom: 0;
  left: 50%;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_main_ttl::after {
    width: 120px;
    height: 4px;
    margin-left: -60px;
  }
}

.eaudemuge_main_txt {
  font-size: 2.14008vw;
  line-height: 1.6;
  font-weight: 700;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_main_txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.bl_products_overview {
  text-align: center;
  background: #fff;
  padding: 5.35019vw 0 6.42023vw;
  border-bottom: 2px solid #4fbb85;
}

@media screen and (min-width: 1028px) {
  .bl_products_overview {
    padding: 55px 0 66px;
  }
}

.products_overview_txt {
  font-size: 1.94553vw;
  font-weight: 700;
  color: #4fbb85;
  line-height: 1.6;
  padding: 0 1.94553vw;
  margin: 0 auto 4.37743vw;
}

@media screen and (min-width: 1028px) {
  .products_overview_txt {
    font-size: 20px;
    font-size: 2.0rem;
    padding: 0 20px;
    margin: 0 auto 45px;
  }
}

.products_overview_ttl {
  width: 51.55642vw;
  height: 8.94942vw;
  margin: 0 auto 4.37743vw;
  font-size: 2.72374vw;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  padding-top: 1.45914vw;
  background-size: 8px 8px;
  background-size: auto auto;
  background-color: #53c48b;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #41be7f 4px, #41be7f 8px);
  position: relative;
}

@media screen and (min-width: 1028px) {
  .products_overview_ttl {
    width: 530px;
    height: 92px;
    margin: 0 auto 45px;
    font-size: 28px;
    font-size: 2.8rem;
    padding-top: 15px;
  }
}

.products_overview_ttl::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.47471vw 0 4.47471vw 0.87549vw;
  border-color: transparent transparent transparent #fff;
}

@media screen and (min-width: 1028px) {
  .products_overview_ttl::after {
    border-width: 46px 0 46px 9px;
  }
}

.products_overview_ttl::before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.47471vw 0.87549vw 4.47471vw 0;
  border-color: transparent #fff transparent transparent;
}

@media screen and (min-width: 1028px) {
  .products_overview_ttl::before {
    border-width: 46px 9px 46px 0;
  }
}

.products_overview_txt_3step {
  font-size: 3.11284vw;
  font-weight: 700;
  color: #4fbb85;
  line-height: 1.6;
  padding: 0 1.94553vw;
  margin: 0 auto 2.33463vw;
}

@media screen and (min-width: 1028px) {
  .products_overview_txt_3step {
    font-size: 32px;
    font-size: 3.2rem;
    padding: 0 20px;
    margin: 0 auto 24px;
  }
}

.products_overview_txt_3step_col span {
  position: relative;
  z-index: 2;
}

.products_overview_txt_3step_col {
  display: inline-block;
  color: #f38d2a;
  position: relative;
  margin: 0 0.38911vw;
}

@media screen and (min-width: 1028px) {
  .products_overview_txt_3step_col {
    margin: 0 4px;
  }
}

.products_overview_txt_3step_col::after {
  position: absolute;
  content: '';
  display: block;
  width: 94%;
  height: 100%;
  top: -0.19455vw;
  left: 3%;
  background: #e0f5e8;
  z-index: 1;
}

@media screen and (min-width: 1028px) {
  .products_overview_txt_3step_col::after {
    top: -2px;
  }
}

.products_overview_txt_support {
  font-size: 2.33463vw;
  font-weight: 700;
  color: #000000;
  line-height: 1.6;
  padding: 0 1.94553vw;
  margin: 0 auto 4.86381vw;
}

@media screen and (min-width: 1028px) {
  .products_overview_txt_support {
    font-size: 24px;
    font-size: 2.4rem;
    padding: 0 20px;
    margin: 0 auto 50px;
  }
}

.products_step_img {
  max-width: 1068px;
  margin: 0 auto 0;
}

.bl_products_items {
  padding-top: 9.53307vw;
  padding-bottom: 2.43191vw;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .bl_products_items {
    padding-top: 98px;
    padding-bottom: 25px;
  }
}

.bl_products_items .sec_products_item {
  padding-bottom: 8.26848vw;
}

@media screen and (min-width: 1028px) {
  .bl_products_items .sec_products_item {
    padding-bottom: 85px;
  }
}

.products_items_ttl {
  width: 44.74708vw;
  height: 5.83658vw;
  margin: 0 auto 4.37743vw;
  font-size: 2.72374vw;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding-top: 1.6537vw;
  background-size: 8px 8px;
  background-size: auto auto;
  position: relative;
  background-color: #7acfed;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #7acfed 4px, #6bcaeb 8px);
}

.step2 .products_items_ttl {
  background-color: #f2b378;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #f2b378 4px, #f0aa69 8px);
}

.step3 .products_items_ttl {
  background-color: #f3a2ae;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #f3a2ae 4px, #f297a5 8px);
}

.step4 .products_items_ttl {
  background-color: #62c292;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, #62c292 4px, #52bc87 8px);
}

@media screen and (min-width: 1028px) {
  .products_items_ttl {
    width: 460px;
    height: 60px;
    margin: 0 auto 45px;
    font-size: 28px;
    font-size: 2.8rem;
    padding-top: 17px;
  }
}

.products_items_ttl::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.91829vw 0 2.91829vw 0.58366vw;
  border-color: transparent transparent transparent #fff;
}

@media screen and (min-width: 1028px) {
  .products_items_ttl::after {
    border-width: 30px 0 30px 6px;
  }
}

.products_items_ttl::before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.91829vw 0.58366vw 2.91829vw 0;
  border-color: transparent #fff transparent transparent;
}

@media screen and (min-width: 1028px) {
  .products_items_ttl::before {
    border-width: 30px 6px 30px 0;
  }
}

.products_item_items {
  width: 97.27%;
  max-width: 996px;
  margin: 0 auto;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}

.products_item_items .products_item_item {
  width: 29.12%;
  margin-right: 6.23%;
}

.products_item_items .products_item_item:nth-child(3n) {
  margin-right: 0;
}

.products_item_items .products_item_item>a {
  display: block;
  position: relative;
  padding-bottom: 1.45914vw;
}

@media screen and (min-width: 1028px) {
  .products_item_items .products_item_item>a {
    padding-bottom: 15px;
  }
}

.products_item_items .products_item_item>a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #dff5fd;
  display: none;
}

.step2 .products_item_items .products_item_item>a::after {
  border: 5px solid #f8e5d4;
}

.step3 .products_item_items .products_item_item>a::after {
  border: 5px solid #fde8eb;
}

.step4 .products_item_items .products_item_item>a::after {
  border: 5px solid #cdecdd;
}

.products_item_items .products_item_item>a:hover::after {
  display: block;
}

.products_item_item_img {
  margin-bottom: 1.94553vw;
}

@media screen and (min-width: 1028px) {
  .products_item_item_img {
    margin-bottom: 20px;
  }
}

.products_item_item_ttl {
  position: relative;
  margin-bottom: 1.45914vw;
  width: 22.17899vw;
  margin-left: 4.37743vw;
  font-size: 1.55642vw;
  color: #4fbb87;
}

@media screen and (min-width: 1028px) {
  .products_item_item_ttl {
    width: 228px;
    margin-bottom: 15px;
    margin-left: 45px;
    font-size: 16px;
  }
}

.products_item_item_ttl i {
  content: '';
  display: block;
  position: absolute;
  width: 2.33463vw;
  height: 2.33463vw;
  background: #4fbc88;
  background: #4fbc88;
  top: 50%;
  right: 0;
  margin-top: -1.16732vw;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .products_item_item_ttl i {
    width: 24px;
    height: 24px;
    margin-top: -12px;
  }
}

.products_item_item_ttl i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.77821vw;
  height: 0.77821vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -0.38911vw;
  margin-left: -0.48638vw;
}

@media screen and (min-width: 1028px) {
  .products_item_item_ttl i::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -5px;
  }
}

.products_item_item_label {
  display: inline-block;
  margin-bottom: 1.45914vw;
  font-size: 1.16732vw;
  border: 1px solid #000;
  padding: 0.58366vw 0.77821vw;
  line-height: 1;
  margin-left: 4.37743vw;
}

@media screen and (min-width: 1028px) {
  .products_item_item_label {
    margin-bottom: 15px;
    margin-left: 45px;
    font-size: 12px;
    padding: 6px 8px;
    font-size: 1.2rem;
  }
}

.products_item_item_txt {
  width: 22.17899vw;
  margin-left: 4.37743vw;
  font-size: 1.36187vw;
  color: #000;
}

@media screen and (min-width: 1028px) {
  .products_item_item_txt {
    width: 228px;
    margin-left: 45px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/* 202509：追加  ボタン追加 */
.products_item_detail_btn {
  width: 78.620689655172414%;
  margin-left: 15.51724137931034%;
  margin-right: auto;
  margin-bottom: 35px;
}

.products_item_detail_link {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  background-color: #5ec390;
  border-radius: 8px;

  padding-top: 4%;
  padding-bottom: 4%;

  position: relative;
}

.products_item_detail_link:hover {
  opacity: 0.7;
}

.products_item_detail_link .products_item_detail_txt {
  color: #fff;
  font-size: 1.6rem;
  margin-top: 0.2em;
}

.products_item_detail_link>i {
  position: absolute;
  width: 0.77821vw;
  height: 0.77821vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 10.526315789473684%;
}

@media screen and (min-width: 1028px) {
  .products_item_detail_link>i {
    width: 8px;
    height: 8px;
  }
}

@media only screen and (max-width: 800px) {

  /* SP */
  .bl_eaudemuge_main_ttl {
    padding: 6.66667vw 0 6.4vw;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 1.06667vw, #41be7f 1.06667vw, #41be7f 2.13333vw);
  }

  .bl_eaudemuge_main_ttl.type_column {
    padding: 5.33333vw 0 3.2vw;
    margin-bottom: 13.33333vw;
  }

  .eaudemuge_main_ttl {
    font-size: 6.8vw;
    padding-bottom: 4vw;
    margin-bottom: 4.26667vw;
  }

  .type_column .eaudemuge_main_ttl {
    font-size: 4.53333vw;
    padding-bottom: 4.8vw;
    margin-bottom: 5.33333vw;
  }

  .eaudemuge_main_ttl::after {
    width: 21.33333vw;
    height: 0.53333vw;
    margin-left: -10.66667vw;
  }

  .eaudemuge_main_txt {
    font-size: 4vw;
    line-height: 1.6;
  }

  .bl_products_overview {
    padding: 6.66667vw 0 8.66667vw;
    border-bottom: 2px solid #4fbb85;
  }

  .products_overview_txt {
    width: 89.33333vw;
    font-size: 4.26667vw;
    text-align: left;
    padding: 0 0;
    margin: 0 auto 10vw;
  }

  .products_overview_ttl {
    width: 89.33333vw;
    height: 16vw;
    margin: 0 auto 6.66667vw;
    font-size: 4.93333vw;
    line-height: 1.3;
    padding-top: 2vw;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 0.53333vw, #41be7f 0.53333vw, #41be7f 1.06667vw);
    position: relative;
  }

  .products_overview_ttl::after {
    border-width: 8vw 0 8vw 0.93333vw;
  }

  .products_overview_ttl::before {
    border-width: 8vw 0.93333vw 8vw 0;
  }

  .products_overview_txt_3step {
    font-size: 5.06667vw;
    line-height: 1.6;
    padding: 0 0;
    margin: 0 auto 4.66667vw;
  }

  .products_overview_txt_3step_col {
    margin: 0 0.53333vw;
  }

  .products_overview_txt_3step_col::after {
    top: -0.4vw;
  }

  .products_overview_txt_support {
    font-size: 5.06667vw;
    padding: 0 0;
    margin: 0 auto 9.33333vw;
  }

  .products_step_img {
    max-width: 89.33333vw;
    margin: 0 auto 0;
  }

  .bl_products_items {
    padding-top: 13.33333vw;
    padding-bottom: 0vw;
  }

  .bl_products_items .sec_products_item {
    padding-bottom: 16vw;
  }

  .products_items_ttl {
    width: 89.33333vw;
    height: 16vw;
    margin: 0 auto 6.13333vw;
    font-size: 5.33333vw;
    padding-top: 5.86667vw;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 0.53333vw, #7acfed 0.53333vw, #6bcaeb 1.06667vw);
  }

  .step2 .products_items_ttl {
    background-color: #f2b378;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 0.53333vw, #f2b378 0.53333vw, #f0aa69 1.06667vw);
  }

  .step3 .products_items_ttl {
    background-color: #f3a2ae;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 0.53333vw, #f3a2ae 0.53333vw, #f297a5 1.06667vw);
  }

  .step4 .products_items_ttl {
    background-color: #62c292;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 0.53333vw, #62c292 0.53333vw, #52bc87 1.06667vw);
  }

  .products_items_ttl::after {
    border-width: 8vw 0 8vw 0.93333vw;
  }

  .products_items_ttl::before {
    border-width: 8vw 0.93333vw 8vw 0;
  }

  .products_item_items {
    width: 89.33333vw;
    max-width: 89.33333vw;
    margin: 0 auto;
  }

  .products_item_items .products_item_item {
    width: 41.33333vw;
    margin-right: 6.66667vw;
  }

  .products_item_items .products_item_item:nth-child(3n) {
    margin-right: 6.66667vw;
  }

  .products_item_items .products_item_item:nth-child(2n) {
    margin-right: 0;
  }

  .products_item_items .products_item_item>a {
    padding-bottom: 3.2vw;
  }

  .products_item_items .products_item_item>a:hover::after {
    display: none;
  }

  .products_item_item_img {
    margin-bottom: 3.46667vw;
  }

  .products_item_item_ttl {
    margin-bottom: 2vw;
    width: 100%;
    margin-left: 0;
    font-size: 3.2vw;
  }

  .products_item_item_ttl.type-hack-sp {
    letter-spacing: -0.05em;
  }

  .products_item_item_ttl i {
    width: 5.6vw;
    height: 5.6vw;
    top: 1.33333vw;
    margin-top: 0;
  }

  .products_item_item_ttl i::after {
    width: 2.13333vw;
    height: 2.13333vw;
    border-top: 0.53333vw solid #fff;
    border-right: 0.53333vw solid #fff;
    margin-top: -1.06667vw;
    margin-left: -1.46667vw;
  }

  .products_item_item_label {
    margin-bottom: 3.33333vw;
    font-size: 2.66667vw;
    padding: 1.06667vw 1.06667vw 0.66667vw;
    margin-left: 0;
  }

  .products_item_item_txt {
    width: 100%;
    margin-left: 0;
    font-size: 2.66667vw;
  }

  /* 202510追加：詳しくはこちらボタン */
  .products_item_detail_btn {
    margin-left: auto;
    margin-bottom: 6vw;
    width: 100%;
  }

  .products_item_detail_link {
    border-radius: 1.0666666666666667vw;

    padding-top: 1.33333vw;
    padding-bottom: 1.33333vw;
  }

  .products_item_detail_link .products_item_detail_txt {
    font-size: 3.2vw;
    margin-top: 0.2em;
  }

  .products_item_detail_link>i {
    position: absolute;
    width: 1.6vw;
    height: 1.6vw;
    border-top: 0.53333vw solid #fff;
    border-right: 0.53333vw solid #fff;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: 12.903225806451613%;
  }

}

/* common
---------------------------------------------*/
#contents img {
  width: 100%;
  height: auto;
}

#contents #share_wrap img {
  width: auto;
  height: auto;
}

#contents #share_wrap_sp img {
  width: 50px;
  height: auto;
}

.list_indent li {
  text-align: left;
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 0;
  font-size: 1.45914vw;
  line-height: 1.7;
  font-weight: 500;
  color: #666;
}

.list_indent li.type_14 {
  font-size: 1.36187vw;
}

.list_indent li.type_2em {
  padding-left: 2.0em;
}

.list_indent li.type_2em span.indent {
  text-align: left;
  display: inline-block;
  width: 2.2em;
}

.list_indent li.type_3em {
  padding-left: 3.0em;
}

.list_indent li.type_3em span.indent {
  text-align: left;
  display: inline-block;
  width: 3.2em;
}

.list_indent li.type_4em {
  padding-left: 4.0em;
}

.list_indent li.type_4em span.indent {
  text-align: left;
  display: inline-block;
  width: 4.2em;
}

.list_indent li.type_5em {
  padding-left: 5.2em;
}

.list_indent li.type_5em span.indent {
  text-align: left;
  text-align: right;
  display: inline-block;
  width: 5.2em;
}

@media screen and (min-width: 1028px) {
  .list_indent li {
    font-size: 15px;
    font-size: 1.5rem;
  }

  .list_indent li.type_14 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 800px) {
  .list_indent li {
    font-size: 3.2vw;
  }

  .list_indent li.type_sp_22 {
    font-size: 2.93333vw;
  }

  .list_indent li.type_14 {
    font-size: 2.93333vw;
  }

  .list_indent li.type_12_sp {
    font-size: 1.6vw !important;
  }

  .list_indent li.type_12_sp.type_2em {
    padding-left: 3.2em;
  }

  .list_indent li.type_12_sp.type_2em span.indent {
    text-align: left;
    display: inline-block;
    width: 3.2em;
  }
}

.list_indent li span.indent {
  position: absolute;
  text-align: left;
  display: inline-block;
  top: 0;
  left: 0;
}

.list_indent li:last-child {
  margin-bottom: 0 !important;
}

.list_indent.type_inline li {
  text-align: center;
  margin-bottom: 3px;
}

.list_indent.type_inline li span.indent {
  position: relative;
}

@media only screen and (min-width: 801px) {
  .list_indent.type_inline_pc li {
    text-align: center;
    margin-bottom: 3px;
  }

  .list_indent.type_inline_pc li span.indent {
    position: relative;
  }
}

.mb_10 {
  margin-bottom: 0.97276vw !important;
}

.mb_15 {
  margin-bottom: 1.45914vw !important;
}

.mb_20 {
  margin-bottom: 1.94553vw !important;
}

.mb_25 {
  margin-bottom: 2.43191vw !important;
}

.mb_30 {
  margin-bottom: 2.91829vw !important;
}

.mb_35 {
  margin-bottom: 3.40467vw !important;
}

.mb_40 {
  margin-bottom: 3.89105vw !important;
}

.mb_45 {
  margin-bottom: 4.37743vw !important;
}

.mb_50 {
  margin-bottom: 4.86381vw !important;
}

.mb_55 {
  margin-bottom: 5.35019vw !important;
}

.mb_60 {
  margin-bottom: 5.83658vw !important;
}

.mb_70 {
  margin-bottom: 6.80934vw !important;
}

.mb_80 {
  margin-bottom: 7.7821vw !important;
}

.mb_85 {
  margin-bottom: 8.26848vw !important;
}

.mb_90 {
  margin-bottom: 8.75486vw !important;
}

.mb_100 {
  margin-bottom: 9.72763vw !important;
}

@media screen and (min-width: 1028px) {
  .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_70 {
    margin-bottom: 70px !important;
  }

  .mb_80 {
    margin-bottom: 80px !important;
  }

  .mb_85 {
    margin-bottom: 85px !important;
  }

  .mb_90 {
    margin-bottom: 90px !important;
  }

  .mb_100 {
    margin-bottom: 100px !important;
  }
}

@media only screen and (max-width: 800px) {

  /* SP */
  .mb_10 {
    margin-bottom: 1.33333vw !important;
  }

  .mb_15 {
    margin-bottom: 2vw !important;
  }

  .mb_20 {
    margin-bottom: 2.66667vw !important;
  }

  .mb_25 {
    margin-bottom: 3.33333vw !important;
  }

  .mb_30 {
    margin-bottom: 4vw !important;
  }

  .mb_35 {
    margin-bottom: 4.66667vw !important;
  }

  .mb_40 {
    margin-bottom: 5.33333vw !important;
  }

  .mb_45 {
    margin-bottom: 6vw !important;
  }

  .mb_50 {
    margin-bottom: 6.66667vw !important;
  }

  .mb_55 {
    margin-bottom: 7.33333vw !important;
  }

  .mb_60 {
    margin-bottom: 8vw !important;
  }

  .mb_70 {
    margin-bottom: 9.33333vw !important;
  }

  .mb_80 {
    margin-bottom: 10.66667vw !important;
  }

  .mb_85 {
    margin-bottom: 11.33333vw !important;
  }

  .mb_90 {
    margin-bottom: 12vw !important;
  }

  .mb_100 {
    margin-bottom: 13.33333vw !important;
  }

  .mb_10_sp {
    margin-bottom: 1.33333vw !important;
  }

  .mb_20_sp {
    margin-bottom: 2.66667vw !important;
  }

  .mb_25_sp {
    margin-bottom: 3.33333vw !important;
  }

  .mb_30_sp {
    margin-bottom: 4vw !important;
  }

  .mb_35_sp {
    margin-bottom: 4.66667vw !important;
  }

  .mb_40_sp {
    margin-bottom: 5.33333vw !important;
  }

  .mb_45_sp {
    margin-bottom: 6vw !important;
  }

  .mb_50_sp {
    margin-bottom: 6.66667vw !important;
  }

  .mb_55_sp {
    margin-bottom: 7.33333vw !important;
  }

  .mb_60_sp {
    margin-bottom: 8vw !important;
  }

  .mb_65_sp {
    margin-bottom: 8.66667vw !important;
  }

  .mb_70_sp {
    margin-bottom: 9.33333vw !important;
  }

  .mb_80_sp {
    margin-bottom: 10.66667vw !important;
  }

  .mb_110_sp {
    margin-bottom: 14.66667vw !important;
  }
}

.f_bold {
  font-weight: 700;
}

.ta_c {
  text-align: center !important;
}

.ta_l {
  text-align: left !important;
}

.pos-kome {
  margin-left: -1.5em;
}

.txt_kome {
  font-size: 1.16732vw;
  position: relative;
  top: -0.58366vw;
}

@media screen and (min-width: 1028px) {
  .txt_kome {
    font-size: 12px;
    font-size: 1.2rem;
    top: -6px;
  }
}

.txt_eaudemuge_copy .txt_kome {
  font-size: 1.94553vw;
  top: -0.97276vw;
}

@media screen and (min-width: 1028px) {
  .txt_eaudemuge_copy .txt_kome {
    font-size: 20px;
    font-size: 2.0rem;
    top: -10px;
  }
}

.txt_img {
  font-size: 1.36187vw;
  line-height: 1;
  text-align: left;
  color: #666;
}

.txt_img.hack_pos {
  position: relative;
  top: -1em;
}

@media screen and (min-width: 1028px) {
  .txt_img {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.txt_eaudemuge {
  font-size: 1.75097vw;
  line-height: 1.7;
  text-align: left;
}

.txt_eaudemuge.type_24 {
  font-size: 2.33463vw;
}

.txt_eaudemuge.type_14 {
  font-size: 1.36187vw;
}

@media screen and (min-width: 1028px) {
  .txt_eaudemuge {
    font-size: 18px;
    font-size: 1.8rem;
  }

  .txt_eaudemuge.type_24 {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .txt_eaudemuge.type_14 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.txt_eaudemuge_666 {
  font-size: 1.36187vw;
  line-height: 1.7;
  text-align: left;
  color: #666;
}

@media screen and (min-width: 1028px) {
  .txt_eaudemuge_666 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.txt_eaudemuge_copy {
  font-size: 2.72374vw;
  line-height: 1.7;
  text-align: center;
  color: #4fbb85;
  font-weight: 700;
}

.txt_eaudemuge_copy.type_32 {
  font-size: 3.11284vw;
}

@media screen and (min-width: 1028px) {
  .txt_eaudemuge_copy {
    font-size: 28px;
    font-size: 2.8rem;
  }

  .txt_eaudemuge_copy.type_32 {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

@media only screen and (max-width: 800px) {

  /* SP */
  .ta_l_sp {
    text-align: left !important;
  }

  .txt_img {
    font-size: 1.86667vw;
  }

  .txt_eaudemuge {
    font-size: 4.26667vw;
    line-height: 1.7;
    letter-spacing: -0.04em;
  }

  .txt_eaudemuge.type_24 {
    font-size: 4.26667vw;
  }

  .txt_eaudemuge.type_sp_28 {
    font-size: 3.73333vw;
  }

  .txt_eaudemuge.type_14 {
    font-size: 3.2vw;
  }

  .txt_eaudemuge_666 {
    font-size: 2.93333vw;
    line-height: 1.7;
  }

  .txt_eaudemuge_copy {
    font-size: 5.06667vw;
  }

  .txt_eaudemuge_copy.type_32 {
    font-size: 4.8vw;
  }

  .txt_eaudemuge_copy.type_sp_34 {
    font-size: 4.53333vw;
    letter-spacing: -0.02em;
  }

  .txt_eaudemuge_copy.type_sp_34 .txt_kome {
    top: -1.6vw;
  }

  .txt_eaudemuge_copy.pos_hack_r {
    position: relative;
    left: 0.5em;
  }
}

.line_marker_ffff70_ex {
  font-size: 2.33463vw;
  font-weight: 700;
  color: #000;
}

@media screen and (min-width: 1028px) {
  .line_marker_ffff70_ex {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.line_marker_ffff70_ex span {
  color: #4fbb85;
  display: inline;
  padding: 2px 0 2px 6px;
  position: relative;
  background: linear-gradient(transparent 30%, #ffff70 60%);
  font-size: 2.91829vw;
}

@media screen and (min-width: 1028px) {
  .line_marker_ffff70_ex span {
    font-size: 30px;
    font-size: 3.0rem;
  }
}

.line_marker_e0f5e8 {
  display: inline;
  background: #e0f5e8;
  padding: 2px 4px;
  position: relative;
}

.line_marker_e0f5e8.type_pad_0 {
  padding-left: 0px;
  padding-right: 0px;
}

.line_marker_fff {
  display: inline;
  background: #fff;
  padding: 2px 4px 0px;
  position: relative;
}

.line_marker_fff.type-pad {
  padding-left: 8px;
  padding-right: 8px;
}

@media only screen and (max-width: 800px) {
  .line_marker_ffff70_ex {
    font-size: 4.26667vw;
  }

  .line_marker_ffff70_ex span {
    padding: 2px 0 2px 6px;
    background: linear-gradient(transparent 30%, #ffff70 60%);
    font-size: 5.06667vw;
  }
}

@media only screen and (max-width: 800px) and (min-width: 1028px) {
  .line_marker_ffff70_ex span {
    font-size: 30px;
    font-size: 3.0rem;
  }
}

.col_f38d2a {
  color: #f38d2a;
}

.fw_bold {
  font-weight: 700;
}

/* btn */
.btn_round {
  text-align: center;
}

.btn_round.type_h_60 a {
  height: 5.83658vw;
}

@media screen and (min-width: 1028px) {
  .btn_round.type_h_60 a {
    height: 60px;
  }
}

.btn_round a {
  position: relative;
  display: block;
  width: 44.74708vw;
  height: 8.75486vw;
  font-size: 1.75097vw;
  font-weight: 700;
  color: #000;
  background: #fff;
  border: 1px solid #5ec390;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

@media screen and (min-width: 1028px) {
  .btn_round a {
    font-size: 18px;
    font-size: 1.8rem;
    width: 460px;
    height: 90px;
  }
}

@media only screen and (min-width: 1025px) {
  .btn_round a {
    /* SP */
  }

  .btn_round a:hover {
    color: #666;
  }

  .btn_round a:hover i {
    opacity: 0.7;
  }
}

.btn_round a i {
  content: '';
  display: block;
  position: absolute;
  width: 2.52918vw;
  height: 2.52918vw;
  background: #fff;
  border: 1px solid #eeeeee;
  top: 50%;
  right: 1.94553vw;
  margin-top: -1.26459vw;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .btn_round a i {
    width: 26px;
    height: 26px;
    margin-top: -13px;
    right: 20px;
  }
}

.btn_round a i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.77821vw;
  height: 0.77821vw;
  border-top: 2px solid #5ec390;
  border-right: 2px solid #5ec390;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -0.38911vw;
  margin-left: -0.48638vw;
}

@media screen and (min-width: 1028px) {
  .btn_round a i::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -5px;
  }
}

@media only screen and (max-width: 800px) {

  /* SP */
  .btn_round.type_h_60 a {
    height: 13.33333vw;
  }

  .btn_round.type_h_60.type_sp_pr a {
    padding-right: 4vw;
  }

  .btn_round a {
    width: 89.33333vw;
    height: 20vw;
    font-size: 3.73333vw;
    border: 2px solid #5ec390;
    -webkit-border-radius: 1.06667vw;
    -moz-border-radius: 1.06667vw;
    -ms-border-radius: 1.06667vw;
    -o-border-radius: 1.06667vw;
    border-radius: 1.06667vw;
  }

  .btn_round a i {
    width: 5.6vw;
    height: 5.6vw;
    border: 0.26667vw solid #eeeeee;
    right: 4.66667vw;
    margin-top: -2.8vw;
  }

  .btn_round a i::after {
    width: 2.13333vw;
    height: 2.13333vw;
    margin-top: -1.06667vw;
    margin-left: -1.33333vw;
  }
}

/* dl */
.dl_num {
  text-align: left;
}

.dl_num dt {
  font-size: 2.52918vw;
  font-weight: 700;
  color: #4fbb85;
}

@media screen and (min-width: 1028px) {
  .dl_num dt {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.dl_num dd {
  font-size: 1.75097vw;
  color: #000000;
  line-height: 1.6;
}

@media screen and (min-width: 1028px) {
  .dl_num dd {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 800px) {

  /* SP */
  .dl_num dt {
    font-size: 5.06667vw;
  }

  .dl_num dd {
    font-size: 4.26667vw;
  }
}

.eaudemuge_layout_pc {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 5;
}

.w_pc_330 {
  width: 32.10117vw;
}

@media screen and (min-width: 1028px) {
  .w_pc_330 {
    width: 330px;
  }
}

.w_pc_310 {
  width: 30.15564vw;
}

@media screen and (min-width: 1028px) {
  .w_pc_310 {
    width: 310px;
  }
}

.w_pc_390 {
  width: 37.93774vw;
}

@media screen and (min-width: 1028px) {
  .w_pc_390 {
    width: 390px;
  }
}

.w_pc_370 {
  width: 35.99222vw;
}

@media screen and (min-width: 1028px) {
  .w_pc_370 {
    width: 370px;
  }
}

.w_pc_494 {
  width: 48.05447vw;
}

@media screen and (min-width: 1028px) {
  .w_pc_494 {
    width: 494px;
  }
}

.w_pc_740 {
  width: 71.98444vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .w_pc_740 {
    width: 740px;
  }
}

.w_pc_840 {
  width: 92.41245vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .w_pc_840 {
    width: 840px;
  }
}

.w_pc_950 {
  width: 92.41245vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .w_pc_950 {
    width: 950px;
  }
}

.w_pc_1028 {
  width: 100vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .w_pc_1028 {
    width: 1028px;
  }
}

@media only screen and (max-width: 800px) {
  .eaudemuge_layout_pc {
    display: block;
    width: 100%;
  }

  .w_pc_310 {
    width: 100%;
  }

  .w_pc_330 {
    width: 100%;
  }

  .w_pc_390 {
    width: 100%;
  }

  .w_pc_370 {
    width: 100%;
  }

  .w_pc_494 {
    width: 100%;
  }

  .w_pc_740 {
    width: 100%;
  }

  .w_pc_840 {
    width: 100%;
  }

  .w_pc_950 {
    width: 81.33333vw;
  }

  .w_pc_1028 {
    width: 89.33333vw;
  }
}

/* ttl */
.ttl_col_34c390 {
  font-size: 2.52918vw;
  font-weight: 600;
  color: #34c390;
  text-align: center;
  margin: 0 auto 2.91829vw;
}

@media screen and (min-width: 1028px) {
  .ttl_col_34c390 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.ttl_ribbon_ex {
  width: 64.20233vw;
  height: 8.75486vw;
  margin: 0 auto 4.37743vw;
  font-size: 2.72374vw;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  padding-top: 1.45914vw;
  background-size: 8px 8px;
  background-size: auto auto;
  background-color: #53c48b;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, #41be7f 3px, #41be7f 6px);
  position: relative;
  z-index: 5;
}

.ttl_ribbon_ex span.pos_l {
  position: relative;
  left: -1.3em;
}

.ttl_ribbon_ex span.pos_l2 {
  position: relative;
  left: -1.7em;
}

.ttl_ribbon_ex span.pos_l3 {
  position: relative;
  left: -1.5em;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon_ex {
    width: 660px;
    height: 90px;
    margin: 0 auto 45px;
    font-size: 28px;
    font-size: 2.8rem;
    padding-top: 15px;
  }
}

.ttl_ribbon_ex.type_bg_green::after {
  border-color: transparent transparent transparent #e3f9ef !important;
}

.ttl_ribbon_ex.type_bg_green::before {
  border-color: transparent #e3f9ef transparent transparent !important;
}

.ttl_ribbon_ex::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.47471vw 0 4.47471vw 0.87549vw;
  border-color: transparent transparent transparent #fff;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon_ex::after {
    border-width: 46px 0 46px 9px;
  }
}

.ttl_ribbon_ex::before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.47471vw 0.87549vw 4.47471vw 0;
  border-color: transparent #fff transparent transparent;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon_ex::before {
    border-width: 46px 9px 46px 0;
  }
}

.ttl_ribbon {
  position: relative;
  z-index: 10;
  width: 50.58366vw;
  height: 5.83658vw;
  margin: 0 auto 3.89105vw;
  font-size: 2.72374vw;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  padding-top: 0.38911vw;
  background-size: 8px 8px;
  background-size: auto auto;
  position: relative;
  background: url(../img/ttl_ribbon_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.ttl_ribbon.type_w_570 {
  width: 55.44747vw;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon.type_w_570 {
    width: 570px;
  }
}

.ttl_ribbon.type_w_460 {
  width: 44.74708vw;
  background: url(../img/ttl_ribbon_460_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon.type_w_460 {
    width: 460px;
  }
}

.ttl_ribbon.type_620 {
  background: url(../img/ttl_ribbon_620_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 60.31128vw;
  height: 8.75486vw;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon.type_620 {
    width: 620px;
    height: 90px;
  }
}

.ttl_ribbon span.pos_l {
  position: relative;
  left: -1.0em;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon {
    width: 520px;
    height: 60px;
    margin: 0 auto 40px;
    font-size: 28px;
    font-size: 2.8rem;
    padding-top: 4px;
  }
}

.ttl_ribbon.type_column {
  height: 7.7821vw;
  background: url(../img/ttl_ribbon_bg.png) 0 0 no-repeat;
  background-size: 100% 100%;
  padding-top: 0.77821vw;
  font-size: 2.52918vw;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon.type_column {
    height: 80px;
    padding-top: 8px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.ttl_ribbon.type_column span {
  display: block;
  font-size: 2.14008vw;
  margin-bottom: 0.38911vw;
  font-weight: 700;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon.type_column span {
    font-size: 22px;
    margin-bottom: 4px;
  }
}

@media only screen and (max-width: 800px) {

  /* SP */
  .ttl_col_34c390 {
    font-size: 4.26667vw;
    margin: 0 auto 3.33333vw;
  }

  .ttl_col_34c390.type_sp_38 {
    font-size: 5.06667vw;
  }

  .ttl_ribbon {
    width: 89.33333vw;
    height: 16vw;
    margin: 0 auto 6.13333vw;
    font-size: 5.33333vw;
    padding-top: 0.8vw;
    background: url(../img/ttl_ribbon_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .ttl_ribbon.type_sp_hack {
    letter-spacing: -0.06em;
  }

  .ttl_ribbon.type_w_570 {
    width: 89.33333vw;
  }

  .ttl_ribbon.type_w_460 {
    width: 89.33333vw;
    background: url(../img/ttl_ribbon_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .ttl_ribbon span.pos_sp_l {
    position: relative;
    left: -1.5em;
    letter-spacing: -0.04em;
  }

  .ttl_ribbon span.pos_sp_l2 {
    font-size: 5.06667vw;
    position: relative;
    left: -1.7em;
    letter-spacing: -0.08em;
  }

  .ttl_ribbon span.pos_l {
    font-size: 5.06667vw;
    position: relative;
    left: -1.7em;
    letter-spacing: -0.08em;
  }

  .ttl_ribbon.type_column {
    width: 89.33333vw;
    height: 16vw;
    background: url(../img/ttl_ribbon_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
    padding-top: 1.06667vw;
    font-size: 5.33333vw;
  }

  .ttl_ribbon.type_column.type_column_h {
    padding-top: 1.6vw;
    height: 22.66667vw;
    background: url(../img/ttl_ribbon_h_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .ttl_ribbon.type_column span {
    display: block;
    font-size: 3.46667vw;
    margin-bottom: 0.93333vw;
  }

  .ttl_ribbon_ex {
    width: 89.33333vw;
    height: 24vw;
    margin: 0 auto 9.06667vw;
    font-size: 4.53333vw;
    line-height: 1.3;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    padding-top: 0.8vw;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 3px, #41be7f 3px, #41be7f 6px);
    position: relative;
  }

  .ttl_ribbon_ex span.pos_l {
    position: relative;
    left: -2.0em;
    letter-spacing: -0.03em;
  }

  .ttl_ribbon_ex span.pos_l2 {
    position: relative;
    left: -1.7em;
  }

  .ttl_ribbon_ex span.pos_l2_sp {
    position: relative;
    left: -1.9em;
    letter-spacing: -0.03em;
  }

  .ttl_ribbon_ex::after {
    border-width: 12vw 0 12vw 0.93333vw;
  }

  .ttl_ribbon_ex::before {
    border-width: 12vw 0.93333vw 12vw 0;
  }
}

.sec_inner_1028 {
  position: relative;
  z-index: 5;
  width: 100vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_1028 {
    width: 1028px;
  }
}

.sec_inner_940 {
  width: 91.43969vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_940 {
    width: 940px;
  }
}

.sec_inner_900 {
  width: 87.54864vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_900 {
    width: 900px;
  }
}

.sec_inner_740 {
  width: 71.98444vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_740 {
    width: 740px;
  }
}

.sec_inner_770 {
  position: relative;
  z-index: 5;
  width: 74.90272vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_770 {
    width: 770px;
  }
}

.sec_inner_790 {
  width: 76.84825vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_790 {
    width: 790px;
  }

  .sec_inner_790 .list_indent li {
    font-size: 1.2rem;
  }

}

.sec_inner_810 {
  width: 78.79377vw;
  margin: 0 auto;
}

.sec_inner_810 .list_indent li {
  margin-top: 10px;
}

@media screen and (min-width: 1028px) {
  .sec_inner_810 {
    width: 810px;
  }

  .sec_inner_810 .list_indent li {
    font-size: 1.2rem;
    text-align: right;
  }

}

.sec_inner_620 {
  width: 60.31128vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_620 {
    width: 620px;
  }
}

.sec_inner_580 {
  width: 56.42023vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_580 {
    width: 580px;
  }
}

.sec_inner_786 {
  width: 76.45914vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .sec_inner_786 {
    width: 786px;
  }
}

.txt_center {
  display: inline-block;
  text-align: left;
  position: relative;
  left: 0;
}

@media only screen and (max-width: 800px) {

  /* SP */
  .sec_inner_1028 {
    width: 89.33333vw;
  }

  .sec_inner_940 {
    width: 89.33333vw;
  }

  .sec_inner_770 {
    width: 89.33333vw;
  }

  .sec_inner_790 {
    width: 89.33333vw;
  }

  .sec_inner_786 {
    width: 89.33333vw;
  }

  .sec_inner_810 {
    width: 89.33333vw;
  }

  .sec_inner_620 {
    width: 89.33333vw;
  }

  .sec_inner_580 {
    width: 89.33333vw;
  }
}

/* usage
---------------------------------------------*/
.sec_usage_effect {
  position: relative;
  padding: 7.19844vw 0 8.75486vw;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg2.png) center 0 repeat-x #e4f9ef;
  background-size: 1280px auto;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .sec_usage_effect {
    padding: 74px 0 90px;
  }
}

.sec_usage_effect::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 5;
  top: 0;
  right: 0;
  width: 20.81712vw;
  height: 16.53696vw;
  background: url(../img/eaudemuge_leaf_r_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_usage_effect::after {
    width: 214px;
    height: 170px;
  }
}

.sec_usage_effect::before {
  position: absolute;
  content: '';
  display: block;
  z-index: 5;
  bottom: -50px;
  left: 0;
  width: 17.31518vw;
  height: 13.61868vw;
  background: url(../img/eaudemuge_leaf_l_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_usage_effect::before {
    width: 178px;
    height: 140px;
  }
}

@media only screen and (max-width: 800px) {
  .sec_usage_effect {
    padding: 12.8vw 0 12.26667vw;
    background: url(../img/eaudemuge_sec_bg2_sp.png) center 0 no-repeat #e4f9ef;
    background-size: 100% auto;
  }

  .sec_usage_effect::after {
    width: 28vw;
    height: 20.53333vw;
    background: url(../img/eaudemuge_leaf_r_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .sec_usage_effect::before {
    width: 20.53333vw;
    height: 41.6vw;
    background: url(../img/eaudemuge_leaf_l_bg2_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }
}

.sec_usage_prevention {
  position: relative;
  padding: 9.72763vw 0 11.67315vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_usage_prevention {
    padding: 100px 0 120px;
  }
}

.sec_usage_prevention::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 5;
  top: 0;
  right: 0;
  width: 20.81712vw;
  height: 16.53696vw;
  background: url(../img/eaudemuge_leaf_r_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_usage_prevention::after {
    width: 214px;
    height: 170px;
  }
}

.sec_usage_prevention::before {
  position: absolute;
  content: '';
  display: block;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 17.31518vw;
  height: 13.61868vw;
  background: url(../img/eaudemuge_leaf_l_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_usage_prevention::before {
    width: 178px;
    height: 140px;
  }
}

@media only screen and (max-width: 800px) {
  .sec_usage_prevention {
    padding: 16.66667vw 0 15.73333vw;
  }

  .sec_usage_prevention::after {
    width: 28vw;
    height: 20.53333vw;
    background: url(../img/eaudemuge_leaf_r_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .sec_usage_prevention::before {
    width: 20.53333vw;
    height: 41.6vw;
    background: url(../img/eaudemuge_leaf_l_bg2_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }
}

.sec_usage_howto {
  position: relative;
  padding: 9.72763vw 0 9.33852vw;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg2.png) center 0 repeat-x #e4f9ef;
  background-size: 1280px auto;
}

@media screen and (min-width: 1028px) {
  .sec_usage_howto {
    padding: 100px 0 96px;
  }
}

.sec_usage_howto::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  right: 0;
  width: 20.81712vw;
  height: 16.53696vw;
  background: url(../img/eaudemuge_leaf_r_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_usage_howto::after {
    width: 214px;
    height: 170px;
  }
}

.sec_usage_howto::before {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 17.31518vw;
  height: 13.61868vw;
  background: url(../img/eaudemuge_leaf_l_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_usage_howto::before {
    width: 178px;
    height: 140px;
  }
}

@media only screen and (max-width: 800px) {
  .sec_usage_howto {
    padding: 16.53333vw 0 12.8vw;
    background: url(../img/eaudemuge_sec_bg2_sp.png) center 0 no-repeat #e4f9ef;
    background-size: 100% auto;
  }

  .sec_usage_howto::after {
    width: 28vw;
    height: 20.53333vw;
    background: url(../img/eaudemuge_leaf_r_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .sec_usage_howto::before {
    width: 19.46667vw;
    height: 35.2vw;
    background: url(../img/eaudemuge_leaf_l_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }
}

.bl_usage_voice {
  position: relative;
  padding: 7.97665vw 0 8.75486vw;
  text-align: center;
  background: url(../img/bg_skew_gray.png) 0 0 repeat #fff;
  background-size: 6px 6px;
}

@media screen and (min-width: 1028px) {
  .bl_usage_voice {
    padding: 82px 0 90px;
  }
}

.usage_voice_items {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}

.usage_voice_items .usage_voice_item {
  width: 42.41245vw;
  margin-right: 6.61479vw;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 2.43191vw;
}

@media screen and (min-width: 1028px) {
  .usage_voice_items .usage_voice_item {
    width: 436px;
    margin-right: 68px;
    margin-bottom: 25px;
  }
}

.usage_voice_items .usage_voice_item:nth-child(2n) {
  margin-right: 0;
}

.usage_voice_item_img {
  width: 10.01946vw;
}

@media screen and (min-width: 1028px) {
  .usage_voice_item_img {
    width: 103px;
  }
}

.usage_voice_item_txt {
  width: 30.15564vw;
}

@media screen and (min-width: 1028px) {
  .usage_voice_item_txt {
    width: 310px;
  }
}

.usage_voice_item_txt p {
  font-size: 1.55642vw;
  line-height: 1.6;
}

@media screen and (min-width: 1028px) {
  .usage_voice_item_txt p {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.usage_voice_item_txt p span {
  color: #4fbb85;
  font-weight: 700;
}

/* 動画API */
.usage_movie {
  display: flex;
  justify-content: center;
}
.usage_movie_container {
  margin: 0 auto;
}

.usage_movie_container ul li {
	margin: 0 auto;
}

.usage_movie_container ul {
	overflow: hidden;
}

.usage_movie_container ul li+li {
	margin-top: 30px;
}

.usage_movie_container ul li .thumb {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}

.usage_movie_container .thumb iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.usage_movie_container ul li img {
	width: 100% !important;
	height: auto !important;
}

/* リード文非表示 */
.usage_movie_container .lead {
  display: none;
}

@media only screen and (max-width: 800px) {
  .bl_usage_voice {
    padding: 10.4vw 0 12.26667vw;
    background: url(../img/bg_skew_gray.png) 0 0 repeat #fff;
    background-size: 3px 3px;
    background-size: 6px 6px;
  }

  .usage_voice_items {
    width: 85.33333vw;
    display: block;
    margin: 0 auto 4vw;
  }

  .usage_voice_items .usage_voice_item {
    width: 100%;
    margin-right: 0;
    text-align: left;
    margin-bottom: 6.66667vw;
  }

  .usage_voice_items .usage_voice_item:last-child {
    margin-bottom: 0;
  }

  .usage_voice_items .usage_voice_item:nth-child(2n) {
    margin-right: 0;
  }

  .usage_voice_item_img {
    width: 24vw;
  }

  .usage_voice_item_txt {
    width: 57.33333vw;
  }

  .usage_voice_item_txt p {
    font-size: 3.73333vw;
    line-height: 1.6;
  }
}

.sec_usage_use {
  position: relative;
  padding: 5.44747vw 0 4.37743vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_usage_use {
    padding: 56px 0 45px;
  }
}

.usage_use_ttl {
  width: 55.83658vw;
  margin: 0 auto 5.44747vw;
}

@media screen and (min-width: 1028px) {
  .usage_use_ttl {
    width: 574px;
    margin-bottom: 56px;
  }
}

.eaudemuge_check_items {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  width: 85.40856vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_check_items {
    width: 878px;
  }
}

.eaudemuge_check_items .eaudemuge_check_item {
  width: 40.85603vw;
  padding-left: 4.57198vw;
  text-align: left;
  margin-right: 3.40467vw;
  margin-bottom: 3.11284vw;
  position: relative;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_check_items .eaudemuge_check_item {
    width: 420px;
    padding-left: 47px;
    margin-right: 35px;
    margin-bottom: 32px;
  }
}

.eaudemuge_check_items .eaudemuge_check_item:nth-child(2n) {
  margin-right: 0;
}

.eaudemuge_check_items .eaudemuge_check_item::after {
  content: '';
  display: block;
  position: absolute;
  width: 3.30739vw;
  height: 3.30739vw;
  top: 0.58366vw;
  left: 0;
  background: url(../img/eaudemuge_check.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_check_items .eaudemuge_check_item::after {
    width: 34px;
    height: 34px;
    top: 6px;
  }
}

.eaudemuge_check_item_ttl {
  color: #4fbb85;
  font-size: 2.72374vw;
  font-weight: 700;
  background: #dff9ea;
  margin-bottom: 1.45914vw;
  padding: 0.38911vw 1.36187vw 0.19455vw;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_check_item_ttl {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 15px;
    padding: 4px 14px 2px;
  }
}

.eaudemuge_check_item_txt {
  color: #000;
  font-size: 1.36187vw;
  line-height: 1.6;
  letter-spacing: 0em;
  padding-left: 1.16732vw;
  position: relative;
  width: 103%;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_check_item_txt {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 12px;
  }
}

@media only screen and (max-width: 800px) {
  .sec_usage_use {
    padding: 14.13333vw 0 4vw;
  }

  .usage_use_ttl {
    width: 89.33333vw;
    margin: 0 auto 6.93333vw;
  }

  .eaudemuge_check_items {
    width: 89.33333vw;
    display: block;
    padding-left: 1.6vw;
  }

  .eaudemuge_check_items .eaudemuge_check_item {
    width: 100%;
    padding-left: 9.06667vw;
    margin-right: 0;
    margin-bottom: 6vw;
    position: relative;
  }

  .eaudemuge_check_items .eaudemuge_check_item::after {
    width: 6.8vw;
    height: 6.8vw;
    top: 0.66667vw;
  }

  .eaudemuge_check_item_ttl {
    font-size: 5.06667vw;
    margin-bottom: 3.2vw;
    padding: 1.06667vw 2.66667vw 0.26667vw;
  }

  .eaudemuge_check_item_txt {
    font-size: 3.73333vw;
    letter-spacing: 0;
    padding-left: 2.66667vw;
    width: 100%;
  }
}

.eaudemuge_list_box {
  width: 71.98444vw;
  margin: 0 auto 3.89105vw;
  border: 2px solid #5ec390;
  padding: 2.33463vw 0;
  text-align: left;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_list_box {
    width: 740px;
    margin-bottom: 40px;
    padding: 24px 0;
  }
}

.eaudemuge_list_box ul {
  margin-left: 3.89105vw;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_list_box ul {
    margin-left: 40px;
  }
}

.eaudemuge_list_box ul li {
  position: relative;
  font-size: 1.94553vw;
  line-height: 1.4;
  padding-left: 2.14008vw;
  font-weight: 700;
  margin-bottom: 0.38911vw;
}

.eaudemuge_list_box ul li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_list_box ul li {
    font-size: 20px;
    font-size: 2.0rem;
    padding-left: 22px;
    margin-bottom: 4px;
  }
}

.eaudemuge_list_box ul li i {
  content: '';
  display: block;
  position: absolute;
  width: 0.97276vw;
  height: 0.97276vw;
  background: #4fbc88;
  top: 50%;
  left: 0;
  margin-top: -0.48638vw;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_list_box ul li i {
    width: 10px;
    height: 10px;
    margin-top: -5px;
  }
}

.eaudemuge_arrow_btm {
  width: 25.29183vw;
  margin: 0 auto 1.45914vw;
}

@media screen and (min-width: 1028px) {
  .eaudemuge_arrow_btm {
    width: 260px;
    margin-bottom: 15px;
  }
}

.usage_prevention_sec_ttl {
  width: 78.79377vw;
  margin: 0 auto 4.66926vw;
}

@media screen and (min-width: 1028px) {
  .usage_prevention_sec_ttl {
    width: 810px;
    margin-bottom: 48px;
  }
}

.ttl_ribbon_img_01 {
  display: block;
  position: absolute;
  z-index: 5;
  top: -8.26848vw;
  right: -6.90661vw;
  width: 14.78599vw !important;
  height: auto;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon_img_01 {
    top: -85px;
    right: -71px;
    width: 152px !important;
  }
}

.ttl_ribbon_img_02 {
  display: block;
  position: absolute;
  z-index: 5;
  top: -7.87938vw;
  right: -7.19844vw;
  width: 17.70428vw !important;
  height: auto;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon_img_02 {
    top: -81px;
    right: -74px;
    width: 182px !important;
  }
}

.sec_about_effect .ttl_ribbon_img_02 {
  top: -7.87938vw;
  right: -7.19844vw;
}

@media screen and (min-width: 1028px) {
  .sec_about_effect .ttl_ribbon_img_02 {
    top: -81px;
    right: -74px;
  }
}

img.pc_img {
  display: block !important;
}

img.sp_img {
  display: none !important;
}

.ttl_ribbon_img_03 {
  display: block;
  position: absolute;
  z-index: 5;
  top: -7.00389vw;
  right: -6.51751vw;
  width: 17.31518vw !important;
  height: auto;
}

@media screen and (min-width: 1028px) {
  .ttl_ribbon_img_03 {
    top: -72px;
    right: -67px;
    width: 178px !important;
  }
}

@media only screen and (max-width: 800px) {
  .usage_prevention_sec_ttl {
    width: 89.33333vw;
    margin: 0 auto 8vw;
  }

  .eaudemuge_list_box {
    width: 89.33333vw;
    margin: 0 auto 5.33333vw;
    border: 2px solid #5ec390;
    padding: 2.93333vw 0;
  }

  .eaudemuge_list_box ul {
    margin-left: 3.33333vw;
    margin-right: 4.66667vw;
  }

  .eaudemuge_list_box ul li {
    position: relative;
    font-size: 3.2vw;
    line-height: 1.5;
    padding-left: 4vw;
    font-weight: 700;
    margin-bottom: 1.86667vw;
  }

  .eaudemuge_list_box ul li:last-child {
    margin-bottom: 0;
  }

  .eaudemuge_list_box ul li i {
    width: 1.6vw;
    height: 1.6vw;
    top: 1.33333vw;
    margin-top: 0;
  }

  .eaudemuge_arrow_btm {
    width: 44vw;
    margin: 0 auto 4vw;
  }

  .ttl_ribbon_img_01 {
    top: -12.26667vw;
    right: 0.53333vw;
    width: 19.2vw !important;
    height: auto;
  }

  .ttl_ribbon_img_02 {
    top: -12.53333vw;
    right: -0.8vw;
    width: 22.93333vw !important;
    height: auto;
  }

  .sec_about_effect .ttl_ribbon_img_02 {
    top: -4.53333vw;
    right: 0.13333vw;
  }

  img.pc_img {
    display: none !important;
  }

  img.sp_img {
    display: block !important;
  }

  .ttl_ribbon_img_03 {
    top: -4.8vw;
    right: -1.86667vw;
    width: 22.13333vw !important;
  }
}

/* top
---------------------------------------------*/
.top_main {
  width: 100%;
  background: url(../images/top/top_main_bg.jpg) center 0 no-repeat #fff;
  background-size: auto 100%;
}

@media screen and (min-width: 1400px) {
  .top_main {
    background-size: cover;
    background-position: top;
  }
}

.top_main_inner {
  position: relative;
  width: 100%;
  height: 64.00778vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .top_main_inner {
    max-width: 1400px;
    height: 658px;
  }
}

.top_main_message {
  position: absolute;
  width: 52.14008vw;
  top: 8.75486vw;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1028px) {
  .top_main_message {
    width: 536px;
    top: 90px;
  }
}

.top_contents {
  background: url(../images/top/top_contents_bg.jpg) center 0 repeat #f8fcfb;
  background-size: auto 5000px;
  position: relative;
  padding: 8.56031vw 0 9.14397vw;
}

@media screen and (min-width: 1028px) {
  .top_contents {
    padding: 88px 0 94px;
  }
}

.cart_area {
  margin-bottom: 10.67vw;
}

@media screen and (min-width: 1028px) {
  .cart_area {
    margin-bottom: 80px;
  }
}

.ttl_underlne {
  font-weight: 700;
  text-align: center;
  color: #5ec390;
  line-height: 1;
  font-size: 2.72374vw;
  padding-bottom: 1.94553vw;
  margin-bottom: 3.89105vw;
  border-bottom: 2px solid #5ec390;
}

@media screen and (min-width: 1028px) {
  .ttl_underlne {
    font-size: 28px;
    font-size: 2.8rem;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }
}

.sec_top_contents {
  width: 100vw;
  margin: 0 auto 6.80934vw;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 1028px) {
  .sec_top_contents {
    width: 1028px;
    margin-bottom: 70px;
  }
}

.top_contents_items {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}

.top_contents_items .top_contents_item {
  width: 32.29572vw;
  margin-right: 1.45914vw;
  margin-bottom: 1.94553vw;
}

@media screen and (min-width: 1028px) {
  .top_contents_items .top_contents_item {
    width: 332px;
    margin-right: 15px;
    margin-bottom: 20px;
  }
}

.top_contents_items .top_contents_item:nth-child(3n) {
  margin-right: 0;
}

.top_contents_items .top_contents_item a {
  display: block;
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding-bottom: 2.33463vw;
}

@media screen and (min-width: 1028px) {
  .top_contents_items .top_contents_item a {
    padding-bottom: 24px;
  }
}

.top_contents_items .top_contents_item a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #dffeee;
  display: none;
}

.top_contents_items .top_contents_item a:hover::after {
  display: block;
}

.top_contents_items .top_contents_item a i {
  content: '';
  display: block;
  position: absolute;
  width: 2.33463vw;
  height: 2.33463vw;
  background: #4fbc88;
  bottom: 0.97276vw;
  right: 0.97276vw;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .top_contents_items .top_contents_item a i {
    width: 24px;
    height: 24px;
    bottom: 10px;
    right: 10px;
  }
}

.top_contents_items .top_contents_item a i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.77821vw;
  height: 0.77821vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -0.38911vw;
  margin-left: -0.48638vw;
}

@media screen and (min-width: 1028px) {
  .top_contents_items .top_contents_item a i::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -5px;
  }
}

.top_contents_item_img {
  margin-bottom: 1.75097vw;
}

@media screen and (min-width: 1028px) {
  .top_contents_item_img {
    margin-bottom: 18px;
  }
}

.top_contents_item_ttl {
  font-size: 1.75097vw;
  font-weight: 700;
  color: #5ec390;
  margin: 0 1.55642vw 1.16732vw 2.14008vw;
  line-height: 1.4;
}

@media screen and (min-width: 1028px) {
  .top_contents_item_ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 16px 12px 22px;
  }
}

.top_contents_item_txt {
  font-size: 1.36187vw;
  color: #000;
  margin: 0 2.14008vw;
}

@media screen and (min-width: 1028px) {
  .top_contents_item_txt {
    font-size: 14px;
    font-size: 1.4rem;
    margin: 0 22px;
  }
}

.top_contents_leaf_01 {
  position: absolute;
  background: url(../images/top/top_contents_leaf_01.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 20.42802vw;
  height: 16.14786vw;
  top: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 1028px) {
  .top_contents_leaf_01 {
    width: 210px;
    height: 166px;
  }
}

.top_contents_leaf_02 {
  position: absolute;
  background: url(../images/top/top_contents_leaf_02.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 10.89494vw;
  height: 22.9572vw;
  top: 49.02724vw;
  left: 0;
  z-index: 1;
}

@media screen and (min-width: 1028px) {
  .top_contents_leaf_02 {
    width: 112px;
    height: 236px;
    top: 504px;
  }
}

.top_contents_leaf_03 {
  position: absolute;
  background: url(../images/top/top_contents_leaf_03.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 14.39689vw;
  height: 22.56809vw;
  top: 80.15564vw;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 1028px) {
  .top_contents_leaf_03 {
    width: 148px;
    height: 232px;
    top: 824px;
  }
}

.top_contents_leaf_04 {
  position: absolute;
  background: url(../images/top/top_contents_leaf_04.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 17.50973vw;
  height: 14.39689vw;
  bottom: 0;
  left: 0;
  z-index: 1;
}

@media screen and (min-width: 1028px) {
  .top_contents_leaf_04 {
    width: 180px;
    height: 148px;
  }
}

@media only screen and (max-width: 800px) {
  .top_main {
    background: url(../images/top/top_main_bg_sp.jpg) center bottom no-repeat #fff;
    background-size: cover;
  }

  .top_main_inner {
    width: 100%;
    height: 110vw;
    margin: 0 0;
  }

  .top_main_message {
    position: absolute;
    width: 100%;
    top: 0;
  }

  .top_contents {
    background: #f3fcf8;
    position: relative;
    padding: 11.73333vw 0 12.53333vw;
  }

  .ttl_underlne {
    font-size: 6.93333vw;
    padding-bottom: 3.2vw;
    margin-bottom: 9.33333vw;
    border-bottom: 2px solid #5ec390;
  }

  .sec_top_contents {
    width: 89.33333vw;
    margin: 0 auto 19.33333vw;
  }

  .top_contents_items {
    display: block;
  }

  .top_contents_items .top_contents_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8vw;
  }

  .top_contents_items .top_contents_item:nth-child(3n) {
    margin-right: 0;
  }

  .top_contents_items .top_contents_item:last-child {
    margin-bottom: 0;
  }

  .top_contents_items .top_contents_item a {
    border: 1px solid #e5e5e5;
    padding-bottom: 8vw;
  }

  .top_contents_items .top_contents_item a:hover::after {
    display: none;
  }

  .top_contents_items .top_contents_item a i {
    width: 5.6vw;
    height: 5.6vw;
    bottom: 4vw;
    margin-top: -2.8vw;
    right: 4vw;
  }

  .top_contents_items .top_contents_item a i::after {
    width: 2.13333vw;
    height: 2.13333vw;
    border-top: 0.53333vw solid #fff;
    border-right: 0.53333vw solid #fff;
    margin-top: -1.06667vw;
    margin-left: -1.46667vw;
  }

  .top_contents_item_img {
    margin-bottom: 5.06667vw;
  }

  .top_contents_item_ttl {
    font-size: 4.8vw;
    margin: 0 10.66667vw 3.2vw 6.13333vw;
    line-height: 1.4;
  }

  .top_contents_item_txt {
    font-size: 4.26667vw;
    margin: 0 6.13333vw 0 6.13333vw;
    line-height: 1.6;
    letter-spacing: -0.02em;
  }

  .top_contents_leaf_01 {
    width: 28vw;
    height: 22.13333vw;
  }

  .top_contents_leaf_02 {
    width: 14.93333vw;
    height: 31.46667vw;
    top: 418.66667vw;
  }

  .top_contents_leaf_03 {
    width: 19.73333vw;
    height: 30.93333vw;
    top: 641.33333vw;
  }

  .top_contents_leaf_04 {
    width: 24vw;
    height: 19.73333vw;
  }
}

/* about
---------------------------------------------*/
.bl_about_60 {
  position: relative;
  padding: 7.7821vw 0 0.09727vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .bl_about_60 {
    padding: 80px 0 1px;
  }
}

.bl_about_60::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 5;
  top: 0;
  right: 0;
  width: 20.81712vw;
  height: 16.53696vw;
  background: url(../img/eaudemuge_leaf_r_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .bl_about_60::after {
    width: 214px;
    height: 170px;
  }
}

.bl_about_60::before {
  position: absolute;
  content: '';
  display: block;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 17.31518vw;
  height: 13.61868vw;
  background: url(../img/eaudemuge_leaf_l_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .bl_about_60::before {
    width: 178px;
    height: 140px;
  }
}

.about_60_box {
  position: relative;
  z-index: 5;
  width: 100vw;
  margin: 0 auto;
  border: 1px solid #5ec390;
  -webkit-border-radius: 0.77821vw;
  -moz-border-radius: 0.77821vw;
  -ms-border-radius: 0.77821vw;
  -o-border-radius: 0.77821vw;
  border-radius: 0.77821vw;
  overflow: hidden;
  padding: 3.89105vw 0 0.97276vw;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .about_60_box {
    width: 1028px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    padding: 40px 0 10px;
  }
}

.about_60_cosme_con {
  background: #f9eebd;
  padding: 2.91829vw 0 2.91829vw;
}

@media screen and (min-width: 1028px) {
  .about_60_cosme_con {
    padding: 30px 0 30px;
  }
}

.about_60_cosme_con_txt {
  font-size: 1.75097vw;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 1028px) {
  .about_60_cosme_con_txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 800px) {
  .bl_about_60 {
    padding: 13.33333vw 0 2.66667vw;
  }

  .bl_about_60::after {
    width: 28vw;
    height: 20.53333vw;
    background: url(../img/eaudemuge_leaf_r_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .bl_about_60::before {
    bottom: -2.66667vw;
    width: 20.53333vw;
    height: 41.6vw;
    background: url(../img/eaudemuge_leaf_l_bg2_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .about_60_box {
    width: 89.33333vw;
    margin: 0 auto;
    border: 2px solid #5ec390;
    -webkit-border-radius: 2.13333vw;
    -moz-border-radius: 2.13333vw;
    -ms-border-radius: 2.13333vw;
    -o-border-radius: 2.13333vw;
    border-radius: 2.13333vw;
    overflow: hidden;
    padding: 9.06667vw 0 2.66667vw;
  }

  .about_60_cosme_con {
    padding: 4vw 0 4.66667vw;
  }

  .about_60_cosme_con_txt {
    font-size: 3.73333vw;
    line-height: 1.6;
    font-weight: 700;
    text-align: center;
  }

  .about_60_box_img {
    position: relative;
    width: 88.26667vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

.sec_about_effect {
  position: relative;
  padding: 9.14397vw 0 9.14397vw;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg2.png) center 0 repeat-x #e4f9ef;
  background-size: 1280px auto;
}

@media screen and (min-width: 1028px) {
  .sec_about_effect {
    padding: 94px 0 94px;
  }
}

.sec_about_effect::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  right: 0;
  width: 20.81712vw;
  height: 16.53696vw;
  background: url(../img/eaudemuge_leaf_r_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_about_effect::after {
    width: 214px;
    height: 170px;
  }
}

.sec_about_effect::before {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 17.31518vw;
  height: 13.61868vw;
  background: url(../img/eaudemuge_leaf_l_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_about_effect::before {
    width: 178px;
    height: 140px;
  }
}

@media only screen and (max-width: 800px) {
  .sec_about_effect {
    padding: 12.53333vw 0 14vw;
    background: url(../img/eaudemuge_sec_bg2_sp.png) center 0 no-repeat #e4f9ef;
    background-size: 100% auto;
  }

  .sec_about_effect::after {
    width: 28vw;
    height: 20.53333vw;
    background: url(../img/eaudemuge_leaf_r_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .sec_about_effect::before {
    width: 20.53333vw;
    height: 41.6vw;
    background: url(../img/eaudemuge_leaf_l_bg2_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }
}

.sec_about_3step {
  position: relative;
  padding: 9.14397vw 0 8.75486vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_about_3step {
    padding: 94px 0 90px;
  }
}

.sec_about_3step::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  top: 0;
  right: 0;
  width: 20.81712vw;
  height: 16.53696vw;
  background: url(../img/eaudemuge_leaf_r_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_about_3step::after {
    width: 214px;
    height: 170px;
  }
}

.sec_about_3step::before {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  bottom: 40.27237vw;
  left: 0;
  width: 12.64591vw;
  height: 13.61868vw;
  background: url(../img/eaudemuge_leaf_l2_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .sec_about_3step::before {
    width: 130px;
    height: 140px;
    bottom: 414px;
  }
}

.about_step123_img {
  width: 88.5214vw;
  margin: 0 auto 7.29572vw;
}

@media screen and (min-width: 1028px) {
  .about_step123_img {
    width: 910px;
    margin-bottom: 75px;
  }
}

/* 202510追加：製品一覧遷移バナー追加 */
.bnr_products {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  width: 62.25681vw;
}

@media screen and (min-width: 1028px) {
  .bnr_products {
    width: 640px;
  }
}

.bnr_products-link {
  display: block;
}

.bnr_products-link:hover {
  opacity: 0.7;
}

.about_3step_leaf_l_sp {
  display: none;
}

.sec_about_quality {
  position: relative;
  padding: 0vw 0 10.21401vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_about_quality {
    padding: 0px 0 105px;
  }
}

.about_quality_con {
  width: 64.20233vw;
  margin: 0 auto;
  display: table;
}

@media screen and (min-width: 1028px) {
  .about_quality_con {
    width: 660px;
  }
}

.about_quality_con_l {
  display: table-cell;
  vertical-align: middle;
  width: 32.10117vw;
}

@media screen and (min-width: 1028px) {
  .about_quality_con_l {
    width: 330px;
  }
}

.about_quality_con_r {
  display: table-cell;
  vertical-align: middle;
  width: 32.10117vw;
  padding-left: 3.89105vw;
}

.about_quality_con_r p {
  position: relative;
  width: 110%;
  top: -1em;
}

@media screen and (min-width: 1028px) {
  .about_quality_con_r {
    width: 330px;
    padding-left: 40px;
  }
}

.sec_about_history {
  position: relative;
  padding: 8.75486vw 0 8.75486vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_about_history {
    padding: 90px 0 90px;
  }
}

.sec_about_history .swiper-slide-active {
  z-index: 20;
}

.sec_about_history .swiper-container {
  width: 70.03891vw !important;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 0.4s 0.3s ease-out;
  -moz-transition: opacity 0.4s 0.3s ease-out;
  -ms-transition: opacity 0.4s 0.3s ease-out;
  -o-transition: opacity 0.4s 0.3s ease-out;
  transition: opacity 0.4s 0.3s ease-out;
}

@media screen and (min-width: 1028px) {
  .sec_about_history .swiper-container {
    width: 720px !important;
  }
}

.sec_about_history .swiper-container.state-active {
  opacity: 1;
}

.sec_about_history .swiper-button-prev {
  top: 50%;
  left: 0;
  margin-left: -5.35019vw;
  width: 2.43191vw;
  height: 4.0856vw;
  background: url(../img/icon_pager_arr_l.png) center center no-repeat;
  background-size: 100% auto;
  -webkit-transition: opacity 0.3s 0s ease-out;
  -moz-transition: opacity 0.3s 0s ease-out;
  -ms-transition: opacity 0.3s 0s ease-out;
  -o-transition: opacity 0.3s 0s ease-out;
  transition: opacity 0.3s 0s ease-out;
  z-index: 30;
}

@media screen and (min-width: 1028px) {
  .sec_about_history .swiper-button-prev {
    width: 25px;
    height: 42px;
    margin-left: -55px;
  }
}

.sec_about_history .swiper-button-next {
  top: 50%;
  right: 0;
  margin-right: -5.35019vw;
  width: 2.43191vw;
  height: 4.0856vw;
  background: url(../img/icon_pager_arr_r.png) center center no-repeat;
  background-size: 100% auto;
  -webkit-transition: opacity 0.3s 0s ease-out;
  -moz-transition: opacity 0.3s 0s ease-out;
  -ms-transition: opacity 0.3s 0s ease-out;
  -o-transition: opacity 0.3s 0s ease-out;
  transition: opacity 0.3s 0s ease-out;
  z-index: 30;
}

@media screen and (min-width: 1028px) {
  .sec_about_history .swiper-button-next {
    width: 25px;
    height: 42px;
    margin-right: -55px;
  }
}

.about_history_items .about_history_item {
  border: 1px solid #5ec390;
  -webkit-border-radius: 0.77821vw;
  -moz-border-radius: 0.77821vw;
  -ms-border-radius: 0.77821vw;
  -o-border-radius: 0.77821vw;
  border-radius: 0.77821vw;
  width: 70.03891vw;
  height: 38.42412vw;
  padding: 3.89105vw 0 3.89105vw;
  -webkit-transition: opacity 0.2s 0s ease-out;
  -moz-transition: opacity 0.2s 0s ease-out;
  -ms-transition: opacity 0.2s 0s ease-out;
  -o-transition: opacity 0.2s 0s ease-out;
  transition: opacity 0.2s 0s ease-out;
  position: relative;
}

@media screen and (min-width: 1028px) {
  .about_history_items .about_history_item {
    width: 720px;
    height: 395px;
    padding: 40px 0 40px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
  }
}

.about_history_item_year {
  position: absolute;
  display: inline-block;
  width: auto;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #5ec390;
}

.about_history_item_year img {
  width: auto !important;
  height: 3.89105vw !important;
}

@media screen and (min-width: 1028px) {
  .about_history_item_year img {
    height: 40px !important;
  }
}

.about_history_item_con {
  width: 63.22957vw;
  margin: 0 auto;
}

.about_history_item_con.text-only {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media screen and (min-width: 1028px) {
  .about_history_item_con {
    width: 650px;
  }
}

.about_history_item_img {
  width: 39.88327vw;
  margin: 0 auto;
}

@media screen and (min-width: 1028px) {
  .about_history_item_img {
    width: 410px;
  }
}

.about_history_item_img.type_pos_ab {
  position: absolute;
  top: 13.61868vw;
  left: 50%;
  margin-left: -19.94163vw;
}

@media screen and (min-width: 1028px) {
  .about_history_item_img.type_pos_ab {
    top: 140px;
    margin-left: -205px;
  }
}

@media only screen and (max-width: 800px) {
  .sec_about_3step {
    padding: 15.33333vw 0 13.33333vw;
  }

  .sec_about_3step::after {
    width: 28vw;
    height: 20.53333vw;
    background: url(../img/eaudemuge_leaf_r_bg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .sec_about_3step::before {
    bottom: auto;
    top: 140vw;
    width: 20.53333vw;
    height: 41.6vw;
    background: url(../img/eaudemuge_leaf_l_bg2_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .about_step123_img {
    width: 89.33333vw;
    margin: 0 auto 13.33333vw;
  }

  .bnr_barriergel {
    width: 89.33333vw;
    margin: 0 auto 14.66667vw;
  }

  /* 202510追加：製品一覧遷移バナー追加 */
  .bnr_products {
    width: 89.33333vw;
    margin: 0 auto;
  }

  .about_3step_leaf_l_sp {
    position: absolute;
    content: '';
    display: block;
    z-index: 1;
    bottom: 0;
    left: 0;
    top: 677.33333vw;
    width: 20.53333vw;
    height: 41.6vw;
    background: url(../img/eaudemuge_leaf_l_bg2_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }

  .sec_about_quality {
    padding: 0vw 0 12vw;
  }

  .about_quality_con {
    width: 89.33333vw;
    display: block;
  }

  .about_quality_con_l {
    display: block;
    width: 100%;
  }

  .about_quality_con_r {
    display: block;
    width: 100%;
    padding-left: 0;
  }

  .about_quality_con_r p {
    width: 100%;
    top: 0;
  }

  .sec_about_history {
    padding: 12vw 0 12vw;
  }

  .sec_about_history .swiper-container {
    width: 76vw !important;
  }

  .sec_about_history .swiper-button-prev {
    margin-left: -8vw;
    margin-top: -2.8vw;
    width: 3.33333vw;
    height: 5.6vw;
  }

  .sec_about_history .swiper-button-next {
    margin-right: -8vw;
    width: 3.33333vw;
    height: 5.6vw;
    margin-top: -2.8vw;
  }

  .about_history_items {
    width: 76vw;
    margin: 0 auto;
  }

  .about_history_items .about_history_item {
    width: 76vw;
    border: 2px solid #5ec390;
    -webkit-border-radius: 2.13333vw;
    -moz-border-radius: 2.13333vw;
    -ms-border-radius: 2.13333vw;
    -o-border-radius: 2.13333vw;
    border-radius: 2.13333vw;
    height: 88vw;
    padding: 9.33333vw 0 2.66667vw;
    margin: 0 auto;
  }

  .about_history_item_year img {
    height: 9.33333vw !important;
  }

  .about_history_item_con {
    width: 62.66667vw;
  }

  .about_history_item_img {
    width: 62.66667vw;
  }

  .about_history_item_img.type_pos_ab {
    position: absolute;
    top: 36vw;
    margin-left: -31.33333vw;
  }
}

/* method
---------------------------------------------*/
.sec_method_prevention {
  padding: 7.19844vw 0 6.32296vw;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg2.png) center 0 repeat-x #e4f9ef;
  background-size: 1280px auto;
}

@media screen and (min-width: 1028px) {
  .sec_method_prevention {
    padding: 74px 0 65px;
  }
}

.sec_method_point {
  padding: 8.26848vw 0 7.29572vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_method_point {
    padding: 85px 0 75px;
  }
}

.sec_method_select {
  padding: 7.7821vw 0;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg2.png) center 0 repeat-x #e4f9ef;
  background-size: 1280px auto;
}

@media screen and (min-width: 1028px) {
  .sec_method_select {
    padding: 80px 0;
  }
}

.method_point_items {
  width: 76.84825vw;
  margin: 0 auto 3.89105vw;
}

@media screen and (min-width: 1028px) {
  .method_point_items {
    width: 790px;
    margin-bottom: 40px;
  }
}

.method_point_items .method_point_item {
  padding-left: 24.51362vw;
  position: relative;
  text-align: left;
  margin-bottom: 5.44747vw;
  padding-top: 0.38911vw;
}

@media screen and (min-width: 1028px) {
  .method_point_items .method_point_item {
    padding-left: 252px;
    margin-bottom: 56px;
    padding-top: 4px;
  }
}

.method_point_items .method_point_item:last-child {
  margin-bottom: 0;
}

.method_point_item_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 20.62257vw;
}

@media screen and (min-width: 1028px) {
  .method_point_item_img {
    width: 212px;
  }
}

.method_point_item_ttl {
  text-align: left;
  position: relative;
  width: 110%;
  padding-left: 1.2em;
  margin-bottom: 2.14008vw;
  font-size: 2.52918vw;
  line-height: 1.3;
  font-weight: 700;
  color: #4fbb85;
  left: -0.2em;
}

@media screen and (min-width: 1028px) {
  .method_point_item_ttl {
    font-size: 26px;
    font-size: 2.6rem;
    margin-bottom: 22px;
  }
}

@media only screen and (max-width: 800px) {
  .method_point_item_ttl {
    font-size: 3.2vw;
  }
}

.method_point_item_ttl span.indent {
  position: absolute;
  text-align: left;
  display: inline-block;
  top: -0.3em;
  left: 0;
  font-size: 2.91829vw;
  line-height: 1.7;
  font-weight: 700;
}

@media screen and (min-width: 1028px) {
  .method_point_item_ttl span.indent {
    font-size: 30px;
    font-size: 3.0rem;
  }
}

.method_point_item_dl dt {
  position: relative;
  padding-left: 2.43191vw;
  margin-bottom: 1.45914vw;
  font-size: 2.14008vw;
  line-height: 1.7;
  font-weight: 700;
  color: #4fbb85;
}

@media screen and (min-width: 1028px) {
  .method_point_item_dl dt {
    padding-left: 25px;
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}

.method_point_item_dl dt::after {
  content: '';
  display: block;
  position: absolute;
  width: 1.16732vw;
  height: 1.16732vw;
  top: 50%;
  left: 0;
  margin-top: -0.77821vw;
  background: #4fbb85;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .method_point_item_dl dt::after {
    width: 12px;
    height: 12px;
    margin-top: -8px;
  }
}

.method_point_item_dl dd {
  margin-bottom: 3.40467vw;
}

@media screen and (min-width: 1028px) {
  .method_point_item_dl dd {
    margin-bottom: 35px;
  }
}

.method_point_item_dl dd:last-child {
  margin-bottom: 0 !important;
}

.method_point_item_btn {
  text-align: left;
}

.method_point_item_btn.type_purple a {
  color: #5052a3;
  border: 1px solid #5052a3;
}

.method_point_item_btn.type_purple a i {
  background: #5052a3;
}

.method_point_item_btn a {
  position: relative;
  left: 0.38911vw;
  display: block;
  width: 44.74708vw;
  height: 8.75486vw;
  font-size: 1.94553vw;
  font-weight: 700;
  color: #4fbb85;
  background: #fff;
  border: 1px solid #4fbb85;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  padding-top: 1.75097vw;
  padding-left: 2.91829vw;
}

.method_point_item_btn a span {
  display: block;
  font-size: 1.55642vw;
  margin-bottom: 0.38911vw;
}

@media screen and (min-width: 1028px) {
  .method_point_item_btn a span {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}

@media screen and (min-width: 1028px) {
  .method_point_item_btn a {
    left: 4px;
    font-size: 20px;
    font-size: 2.0rem;
    width: 460px;
    height: 90px;
    padding-top: 18px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 1025px) {
  .method_point_item_btn a:hover {
    opacity: 0.7;
  }
}

.method_point_item_btn a i {
  content: '';
  display: block;
  position: absolute;
  width: 2.33463vw;
  height: 2.33463vw;
  background: #4fbc88;
  top: 50%;
  right: 1.94553vw;
  margin-top: -1.16732vw;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .method_point_item_btn a i {
    width: 24px;
    height: 24px;
    margin-top: -12px;
    right: 20px;
  }
}

.method_point_item_btn a i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.77821vw;
  height: 0.77821vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: 50%;
  left: 50%;
  margin-top: -0.38911vw;
  margin-left: -0.48638vw;
}

@media screen and (min-width: 1028px) {
  .method_point_item_btn a i::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -5px;
  }
}

@media only screen and (max-width: 800px) {
  .sec_method_prevention {
    padding: 12.66667vw 0 10.66667vw;
    background: url(../img/eaudemuge_sec_bg2_sp.png) center 0 no-repeat #e4f9ef;
    background-size: 100% auto;
  }

  .sec_method_point {
    padding: 11.33333vw 0 10vw;
  }

  .sec_method_select {
    padding: 12.66667vw 0 10.66667vw;
    background: url(../img/eaudemuge_sec_bg2_sp.png) center 0 no-repeat #e4f9ef;
    background-size: 100% auto;
  }

  .method_point_items {
    width: 89.33333vw;
    margin: 0 auto 6.66667vw;
  }

  .method_point_items .method_point_item {
    padding-left: 0;
    position: relative;
    text-align: left;
    margin-bottom: 12vw;
    padding-top: 0;
  }

  .method_point_items .method_point_item:last-child {
    margin-bottom: 0;
  }

  .method_point_item_img {
    width: 57.33333vw;
    position: static;
    margin: 0 auto 5.83658vw;
  }

  .method_point_item_ttl {
    width: 100%;
    padding-left: 1.2em;
    margin-bottom: 4.66667vw;
    font-size: 5.06667vw;
    line-height: 1.3;
    color: #4fbb85;
    left: -0.2em;
  }

  .method_point_item_ttl span.indent {
    top: -0.3em;
    font-size: 5.86667vw;
  }

  .method_point_item_dl dt {
    padding-left: 4.53333vw;
    margin-bottom: 3.46667vw;
    font-size: 4.53333vw;
    line-height: 1.7;
  }

  .method_point_item_dl dt::after {
    width: 2.66667vw;
    height: 2.66667vw;
    margin-top: -1.6vw;
  }

  .method_point_item_dl dd {
    margin-bottom: 8vw;
  }

  .method_point_item_dl dd:last-child {
    margin-bottom: 0 !important;
  }

  .method_point_item_btn.type_purple a {
    border: 2px solid #5052a3;
  }

  .method_point_item_btn.type_sp_hack a {
    letter-spacing: -0.06em;
  }

  .method_point_item_btn.type_sp_hack a span {
    letter-spacing: 0;
  }

  .method_point_item_btn a {
    left: 0;
    width: 89.33333vw;
    height: 20vw;
    font-size: 4.53333vw;
    border: 2px solid #4fbb85;
    -webkit-border-radius: 1.06667vw;
    -moz-border-radius: 1.06667vw;
    -ms-border-radius: 1.06667vw;
    -o-border-radius: 1.06667vw;
    border-radius: 1.06667vw;
    overflow: hidden;
    padding-top: 4vw;
    padding-left: 5.33333vw;
  }

  .method_point_item_btn a span {
    display: block;
    font-size: 3.73333vw;
    margin-bottom: 0.53333vw;
  }

  .method_point_item_btn a i {
    width: 5.6vw;
    height: 5.6vw;
    top: 50%;
    margin-top: -2.8vw;
    right: 3.46667vw;
  }

  .method_point_item_btn a i::after {
    width: 2.13333vw;
    height: 2.13333vw;
    border-top: 0.53333vw solid #fff;
    border-right: 0.53333vw solid #fff;
    margin-top: -1.06667vw;
    margin-left: -1.46667vw;
  }
}

/* trouble
---------------------------------------------*/
.sec_trouble_measure {
  padding: 7.19844vw 0 6.80934vw;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg.png) center center no-repeat #d8f6e8;
  background-size: 1280px auto;
}

@media screen and (min-width: 1028px) {
  .sec_trouble_measure {
    padding: 74px 0 70px;
  }
}

.sec_trouble_type {
  padding: 7.7821vw 0 7.58755vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_trouble_type {
    padding: 80px 0 78px;
  }
}

.sec_trouble_nikibi {
  padding: 8.94942vw 0 6.32296vw;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg2.png) center 0 repeat-x #e4f9ef;
  background-size: 1280px auto;
}

@media screen and (min-width: 1028px) {
  .sec_trouble_nikibi {
    padding: 92px 0 65px;
  }
}

.sec_trouble_cause {
  padding: 5.83658vw 0 9.72763vw;
  text-align: center;
  background: #fff;
}

@media screen and (min-width: 1028px) {
  .sec_trouble_cause {
    padding: 60px 0 100px;
  }
}

.sec_trouble_prevention {
  padding: 8.94942vw 0 6.80934vw;
  text-align: center;
  background: url(../img/eaudemuge_sec_bg2.png) center 0 repeat-x #e4f9ef;
  background-size: 1280px auto;
}

@media screen and (min-width: 1028px) {
  .sec_trouble_prevention {
    padding: 92px 0 70px;
  }
}

@media only screen and (max-width: 800px) {

  /* SP */
  .sec_trouble_measure {
    padding: 12.53333vw 0 12.53333vw;
    background: url(../img/eaudemuge_sec_bg_sp.png) center center no-repeat #d8f6e8;
    background-size: cover;
  }

  .sec_trouble_type {
    padding: 9.6vw 0 10.13333vw;
  }

  .sec_trouble_nikibi {
    padding: 12.53333vw 0 8.26667vw;
    text-align: center;
    background: url(../img/eaudemuge_sec_bg2_sp.png) center 0 no-repeat #e4f9ef;
    background-size: 100% auto;
  }

  .sec_trouble_cause {
    padding: 9.33333vw 0 10.66667vw;
  }

  .sec_trouble_prevention {
    padding: 12.53333vw 0 13.33333vw;
    text-align: center;
    background: url(../img/eaudemuge_sec_bg2_sp.png) center 0 no-repeat #e4f9ef;
    background-size: 100% auto;
  }
}

/* column
---------------------------------------------*/
.cont_sec.cont_sec_last {
  padding-bottom: 9.72763vw;
}

@media screen and (min-width: 1028px) {
  .cont_sec.cont_sec_last {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 800px) {
  .cont_sec.cont_sec_last {
    padding-bottom: 13.33333vw;
  }
}

.column_link_items {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.column_link_items li {
  margin: 0 1.45914vw 0.97276vw;
}

@media screen and (min-width: 1028px) {
  .column_link_items li {
    margin: 0 15px 10px;
  }
}

.column_link_items li a {
  font-size: 2.33463vw;
  color: #fff;
  font-weight: 700;
  padding-right: 3.30739vw;
  position: relative;
}

@media screen and (min-width: 1028px) {
  .column_link_items li a {
    font-size: 24px;
    font-size: 2.4rem;
    padding-right: 34px;
  }
}

.column_link_items li a i {
  content: '';
  display: block;
  position: absolute;
  width: 2.52918vw;
  height: 2.52918vw;
  top: 50%;
  right: 0;
  margin-top: -1.55642vw;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

@media screen and (min-width: 1028px) {
  .column_link_items li a i {
    width: 26px;
    height: 26px;
    margin-top: -16px;
    right: 0;
  }
}

.column_link_items li a i::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.97276vw;
  height: 0.97276vw;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(135deg);
  top: 50%;
  left: 50%;
  margin-top: -0.38911vw;
  margin-left: -0.48638vw;
}

@media screen and (min-width: 1028px) {
  .column_link_items li a i::after {
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
  }
}

@media only screen and (min-width: 1025px) {
  .column_link_items li a {
    /* SP */
  }

  .column_link_items li a:hover {
    color: #c6e451;
  }

  .column_link_items li a:hover i {
    transform: translateY(2px);
  }

  .column_link_items li a:hover i::after {
    border-top: 3px solid #c6e451;
    border-right: 3px solid #c6e451;
  }
}

.column_header.type_pb {
  padding-bottom: 0vw;
}

@media screen and (min-width: 1028px) {
  .column_header {
    padding-bottom: 0px;
  }
}

.cont_sec {
  width: 100% !important;
}

.column_ttl_info {
  text-align: center;
  margin: 0 auto 3.89105vw;
  position: relative;
}

.column_ttl_info::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  top: -2.91829vw;
  right: 0;
  width: 13.61868vw;
  height: 22.37354vw;
  background: url(../column/img/column_leaf_r_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .column_ttl_info::after {
    top: -30px;
    width: 140px;
    height: 230px;
  }
}

@media only screen and (max-width: 1280px) {
  .column_ttl_info::after {
    top: -5.83658vw;
    right: -1.94553vw;
  }
}

.column_ttl_info::before {
  position: absolute;
  content: '';
  display: block;
  z-index: 1;
  top: -2.91829vw;
  left: 0;
  width: 14.39689vw;
  height: 22.37354vw;
  background: url(../column/img/column_leaf_l_bg.png) 0 0 no-repeat;
  background-size: 100% auto;
}

@media screen and (min-width: 1028px) {
  .column_ttl_info::before {
    top: -30px;
    width: 148px;
    height: 230px;
    bottom: -50px;
  }
}

@media only screen and (max-width: 1280px) {
  .column_ttl_info::before {
    top: -5.83658vw;
    left: -1.94553vw;
  }
}

@media screen and (min-width: 1028px) {
  .column_ttl_info {
    width: 100%;
    margin-bottom: 40px;
  }
}

.column_ttl_info_supervise {
  font-size: 2.14008vw;
  color: #4fbb85;
  position: relative;
  font-weight: 700;
  margin-bottom: 2.43191vw;
  padding-bottom: 1.45914vw;
  line-height: 1;
}

.column_ttl_info_supervise::after {
  content: '';
  display: block;
  position: absolute;
  width: 5.83658vw;
  height: 2px;
  background: #4fbb85;
  bottom: 0;
  left: 50%;
  margin-left: -2.91829vw;
}

@media screen and (min-width: 1028px) {
  .column_ttl_info_supervise {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .column_ttl_info_supervise::after {
    width: 60px;
    margin-left: -30px;
  }
}

.column_ttl_info_txt {
  color: #666;
  line-height: 1.6;
  font-size: 1.75097vw;
  margin-bottom: 1.45914vw;
}

@media screen and (min-width: 1028px) {
  .column_ttl_info_txt {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.column_ttl_info_name {
  font-size: 2.33463vw;
  color: #4fbb85;
  font-weight: 700;
  line-height: 1;
}

.column_ttl_info_name span {
  font-size: 2.91829vw;
}

@media screen and (min-width: 1028px) {
  .column_ttl_info_name {
    font-size: 24px;
    font-size: 2.4rem;
  }

  .column_ttl_info_name span {
    font-size: 30px;
    font-size: 3.0rem;
  }
}

/* 202509追加：注釈 */
.column_ttl_info_caution {
  margin-top: 0.92593vw;
}

.column_ttl_info_caution li  {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.11111vw;
  line-height: 1.5;
  color: #666666;
}

@media screen and (min-width: 1028px) {
  .column_ttl_info_caution {
    margin-top: 10px;
  }

  .column_ttl_info_caution li {
    font-size: 12px;
    color: #666666;
  }
}

@media only screen and (max-width: 800px) {
  .column_link_items {
    width: 82.66667vw;
    width: 89.33333vw;
    margin: 0 auto;
  }

  .column_link_items li {
    margin: 0 2.66667vw 1.33333vw;
    margin: 0 2.13333vw 1.33333vw;
  }

  .column_link_items li a {
    font-size: 4.26667vw;
    padding-right: 6.13333vw;
  }

  .column_link_items li a i {
    width: 3.46667vw;
    height: 3.46667vw;
    margin-top: -2.13333vw;
  }

  .column_link_items li a i::after {
    width: 1.86667vw;
    height: 1.86667vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin-top: -1.2vw;
    margin-left: -0.66667vw;
  }

  .column_header.type_pb {
    padding-bottom: 5.33333vw;
    padding-bottom: 0;
  }

  .column_ttl_info {
    width: 100vw;
    width: 100%;
    margin: 0 auto 12vw;
    position: relative;
  }

  .column_ttl_info::after {
    top: 6vw;
    width: 18.66667vw;
    height: 30.66667vw;
  }

  .type_pb .column_ttl_info::after {
    top: 1.33333vw;
  }

  .column_ttl_info::before {
    top: 6vw;
    left: 0;
    width: 19.73333vw;
    height: 30.66667vw;
  }

  .type_pb .column_ttl_info::before {
    top: 1.33333vw;
  }

  .column_ttl_info_supervise {
    font-size: 4.8vw;
    margin-bottom: 2.66667vw;
    padding-bottom: 2.66667vw;
  }

  .column_ttl_info_supervise::after {
    width: 16vw;
    height: 1px;
    margin-left: -8vw;
  }

  .column_ttl_info_txt {
    font-size: 3.73333vw;
    margin-bottom: 2.66667vw;
    letter-spacing: -0.02em;
  }

  .column_ttl_info_name {
    font-size: 6.13333vw;
  }

  .column_ttl_info_name span {
    font-size: 7.73333vw;
  }

  /* 202509追加：注釈 */
  .column_ttl_info_caution {
    position: relative;
    z-index: 2;

    margin: 2vw auto 0; 
    width: 89.33333vw;
  }

  .column_ttl_info_caution li  {
    font-size: 2.93333vw;
    line-height: 1.455;
    text-align: left;
    
  }
}

/* headerBtm
---------------------------------------------*/
#headerBtm nav>ul>li {
  font-size: 1.1666666666666667vw;
}

@media screen and (min-width: 1201px) {
  #headerBtm nav>ul>li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

#headerBtm nav>ul>li>a {
  height: 108px;
  padding: 0 1vw;
  -webkit-transition: padding 0s 0s linear;
  -moz-transition: padding 0s 0s linear;
  -ms-transition: padding 0s 0s linear;
  -o-transition: padding 0s 0s linear;
  transition: padding 0s 0s linear;
}

@media screen and (min-width: 1201px) {
  #headerBtm nav>ul>li>a {
    padding: 0 11px;
  }
}

@media screen and (min-width: 1201px) {
  #headerBtm nav>ul>li>a br.tab {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  #headerBtm nav>ul>li {
    font-size: 1.1666666666666667vw;
  }
}