@charset "UTF-8";
/* カスタマイズ用CSS */
/* リセット */
/* ------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  line-height: 1.5;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

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

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  line-height: 0;
}

body {
  background: #F8FAF4;
  color: #333c4e !important;
  font-size: 16px;
}

.ec-layoutRole {
  background-color: transparent;
}
.ec-layoutRole .ec-layoutRole__contents {
  max-width: 100%;
  margin: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .ec-layoutRole .ec-layoutRole__contents {
    margin: 50px 0 40px;
  }
  .ec-layoutRole .ec-layoutRole__contents .ec-layoutRole__main {
    margin: 40px 0 0;
  }
}

/* 共通header */
/* ------------------------------------------------------------ */
header {
  width: 100%;
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 50px;
  }
}
header .headerLogo {
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  header .headerLogo {
    width: auto;
    position: fixed;
    z-index: 999;
  }
}
header .headerLogo .inner {
  max-width: 1130px;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .headerLogo .inner {
    justify-content: center;
    height: 50px;
    padding: 0;
  }
}
header .headerLogo .inner h1 {
  margin: 0;
}
header .headerLogo .inner h1 a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
header .headerLogo .inner h1 a img {
  width: auto;
  height: 38px;
}
@media screen and (max-width: 767px) {
  header .headerLogo .inner h1 a img {
    height: 28px;
  }
}
header .headerLogo .inner ul {
  font-weight: bold;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  header .headerLogo .inner ul {
    display: none;
  }
}
header .headerLogo .inner ul li {
  font-size: 14px;
  font-weight: bold;
  margin-left: 20px;
}
header .headerLogo .inner ul li a {
  color: #000;
  display: block;
}
header .headerLogo .inner ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}
header .ec-headerNaviRole {
  margin: 20px auto 20px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  header .ec-headerNaviRole {
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 99;
    background: #fff;
  }
}
header .ec-headerNaviRole .ec-headerNaviRole__search {
  margin: 0;
}
@media screen and (max-width: 767px) {
  header .ec-headerNaviRole .ec-headerNaviRole__nav {
    display: none;
  }
}
header .ec-headerNaviRole .ec-headerNaviRole__nav .ec-headerNav {
  display: flex;
}
header .ec-headerNaviRole .ec-headerNaviRole__nav .ec-headerNav a {
  display: flex;
  align-items: center;
}
header .ec-headerNaviRole .ec-headerRole__cart .ec-cartNavi {
  background: #fff;
}
header .ec-headerNaviRole .ec-headerRole__cart .ec-cartNavi .ec-cartNavi__icon {
  display: flex;
}
header .ec-headerNaviRole .ec-headerRole__cart .ec-cartNavi .ec-cartNavi__icon .ec-cartNavi__badge {
  background-color: #009028;
  left: 0;
}
@media screen and (max-width: 767px) {
  header .ec-headerNaviRole .ec-headerRole__cart .ec-cartNavi .ec-cartNavi__icon .ec-cartNavi__badge {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  header .ec-headerNaviRole .ec-headerNavSP {
    border-radius: 0;
    background: #C9CACA;
    color: #fff;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  header .ec-headerNaviRole .ec-cartNaviWrap {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  header .ec-headerNaviRole .ec-cartNaviWrap .ec-cartNavi {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  header .ec-headerNaviRole .ec-cartNaviWrap .ec-cartNaviIsset {
    height: calc(100vh - 50px);
    overflow-y: scroll;
  }
}

/* 共通ブロック */
/* ------------------------------------------------------------ */
a, img {
  transition: all 0.5s ease;
}

.ec-categoryNaviRole {
  margin: 50px auto;
}
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav li {
  margin: 5px;
}
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #87AC00;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  padding: 0 30px;
  border-radius: 4px;
}
.ec-categoryNaviRole .ec-itemNav .ec-itemNav__nav li a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

section:not(#guide) {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide) {
    padding: 40px 0;
  }
}
section:not(#guide) h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2B2B2B;
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  section:not(#guide) h3 {
    font-size: 28px;
    margin: 0 0 20px;
  }
}
section:not(#guide) h3::after {
  content: attr(data-subtitle);
  color: #333c4e;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  section:not(#guide) h3::after {
    font-size: 18px;
  }
}
section:not(#guide)#about .inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner {
    display: block;
    position: static;
    height: auto;
  }
}
section:not(#guide)#about .inner figure {
  max-width: 900px;
  width: 100%;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner figure {
    position: static;
  }
}
section:not(#guide)#about .inner figcaption {
  background: #fff;
  opacity: 1;
  width: 50%;
  margin-top: 220px;
  padding: 60px 8%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner figcaption {
    box-sizing: border-box;
    position: static;
    width: 100%;
    margin: 0;
    padding: 40px 15px;
  }
}
section:not(#guide)#about .inner figcaption .txt {
  margin: 20px 0 60px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner figcaption .txt {
    margin: 0 0 20px;
  }
}
section:not(#guide)#about .inner figcaption .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  padding: 0;
}
section:not(#guide)#about .inner figcaption .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background: #009028;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
}
section:not(#guide)#about .inner figcaption .btn a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section:not(#guide)#about .inner div {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 50%;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner div {
    position: static;
    width: 100%;
  }
}
section:not(#guide)#about .inner div ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  section:not(#guide)#about .inner div ul {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner div ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner div ul li {
    width: 100%;
    margin-top: 20px;
  }
}
section:not(#guide)#about .inner div ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  background: #fff;
  color: #333c4e;
  border-radius: 25px;
  border: 1px solid #ccc;
}
section:not(#guide)#about .inner div ul li a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section:not(#guide)#about .inner div ul li a img {
  width: 24px;
}
section:not(#guide)#about .inner div ul li a span {
  font-weight: bold;
  margin-left: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  section:not(#guide)#about .inner div ul li a {
    width: 50px;
    height: 50px;
  }
  section:not(#guide)#about .inner div ul li a span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner div ul li a {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  section:not(#guide)#about .inner div p {
    width: 40%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner div p {
    width: 80%;
    margin: 0 auto;
  }
}
section:not(#guide)#about .inner div p a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 50px;
  background: #172200;
  color: #fff;
  border-radius: 6px;
  margin: 30px auto 0;
}
section:not(#guide)#about .inner div p a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section:not(#guide)#about .inner div p a span {
  font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 1320px) {
  section:not(#guide)#about .inner div p a {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  section:not(#guide)#about .inner div p a {
    width: 100%;
    margin-top: 20px;
  }
}
section:not(#guide)#gallery {
  background: #fff;
  padding: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#gallery {
    padding: 40px 0;
  }
}
section:not(#guide)#gallery .inner {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
}
section:not(#guide)#gallery .inner ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#gallery .inner ul {
    margin-top: 20px;
  }
}
section:not(#guide)#gallery .inner ul li {
  width: 23.5%;
  max-width: 600px;
  margin: 0 2% 20px 0;
  position: relative;
}
section:not(#guide)#gallery .inner ul li:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#gallery .inner ul li {
    width: 48%;
    margin: 0 4% 0 0;
  }
  section:not(#guide)#gallery .inner ul li:nth-of-type(n+3) {
    margin: 4% 4% 0 0;
  }
  section:not(#guide)#gallery .inner ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
section:not(#guide)#gallery .inner ul li::before {
  content: "";
  display: block;
  padding-top: 100%;
}
section:not(#guide)#gallery .inner ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
section:not(#guide)#recommend, section:not(#guide)#history {
  background: #fff;
}
section:not(#guide)#recommend .inner, section:not(#guide)#history .inner {
  margin: 0 auto;
}
section:not(#guide)#recommend .inner .slick-slider, section:not(#guide)#history .inner .slick-slider {
  margin: 40px auto 0;
  padding: 0 35px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider, section:not(#guide)#history .inner .slick-slider {
    margin: 20px auto 0;
    padding: 0 20px;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide, section:not(#guide)#history .inner .slick-slider .slick-slide {
  margin: 0 15px;
  transition: all 0.5s ease;
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide:hover, section:not(#guide)#history .inner .slick-slider .slick-slide:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-slide, section:not(#guide)#history .inner .slick-slider .slick-slide {
    margin: 0 5px;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide p.photo, section:not(#guide)#history .inner .slick-slider .slick-slide p.photo {
  width: 100%;
  position: relative;
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide p.photo::before, section:not(#guide)#history .inner .slick-slider .slick-slide p.photo::before {
  content: "";
  display: block;
  padding-top: 100%;
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide p.photo img, section:not(#guide)#history .inner .slick-slider .slick-slide p.photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide p.title, section:not(#guide)#history .inner .slick-slider .slick-slide p.title {
  color: #333c4e;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-slide p.title, section:not(#guide)#history .inner .slick-slider .slick-slide p.title {
    font-size: min(3vw, 18px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide p.price, section:not(#guide)#history .inner .slick-slider .slick-slide p.price {
  color: #333c4e;
  font-size: 16px;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-slide p.price, section:not(#guide)#history .inner .slick-slider .slick-slide p.price {
    font-size: min(3vw, 16px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide p.stock, section:not(#guide)#history .inner .slick-slider .slick-slide p.stock {
  color: #333c4e;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-slide p.stock, section:not(#guide)#history .inner .slick-slider .slick-slide p.stock {
    font-size: min(3vw, 16px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-slide p.description, section:not(#guide)#history .inner .slick-slider .slick-slide p.description {
  color: #333c4e;
  font-size: 14px;
  margin: 10px 0 0;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-slide p.description, section:not(#guide)#history .inner .slick-slider .slick-slide p.description {
    font-size: min(3vw, 14px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-prev, section:not(#guide)#history .inner .slick-slider .slick-prev {
  width: 48px;
  height: 48px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-prev, section:not(#guide)#history .inner .slick-slider .slick-prev {
    width: 24px;
    height: 24px;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-prev::before, section:not(#guide)#history .inner .slick-slider .slick-prev::before {
  content: "";
  background: url(../../../../html/template/default/assets/img/common/arrow_back_ios.png);
  width: 48px;
  height: 48px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-prev::before, section:not(#guide)#history .inner .slick-slider .slick-prev::before {
    width: 24px;
    background-size: contain;
    height: 24px;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-next, section:not(#guide)#history .inner .slick-slider .slick-next {
  width: 48px;
  height: 48px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-next, section:not(#guide)#history .inner .slick-slider .slick-next {
    width: 24px;
    height: 24px;
  }
}
section:not(#guide)#recommend .inner .slick-slider .slick-next::before, section:not(#guide)#history .inner .slick-slider .slick-next::before {
  content: "";
  background: url(../../../../html/template/default/assets/img/common/arrow_forward_ios.png);
  width: 48px;
  height: 48px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .slick-slider .slick-next::before, section:not(#guide)#history .inner .slick-slider .slick-next::before {
    background-size: contain;
    width: 24px;
    height: 24px;
  }
}
section:not(#guide)#recommend .inner .btn, section:not(#guide)#history .inner .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  margin: 40px auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#recommend .inner .btn, section:not(#guide)#history .inner .btn {
    margin: 20px auto 0;
  }
}
section:not(#guide)#recommend .inner .btn a, section:not(#guide)#history .inner .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background: #009028;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
}
section:not(#guide)#recommend .inner .btn a:hover, section:not(#guide)#history .inner .btn a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section:not(#guide)#newitem .inner {
  margin: 0 auto;
}
section:not(#guide)#newitem .inner .recommend_list {
  margin: 40px auto 0;
  padding: 0 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#newitem .inner .recommend_list {
    margin: 20px auto 0;
    padding: 0 20px;
  }
}
section:not(#guide)#newitem .inner .recommend_list > div {
  box-sizing: border-box;
  width: 25%;
  padding: 0 20px;
  transition: all 0.5s ease;
}
section:not(#guide)#newitem .inner .recommend_list > div:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section:not(#guide)#newitem .inner .recommend_list > div:nth-of-type(n+5) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#newitem .inner .recommend_list > div {
    width: 33.333%;
    padding: 0 5px;
  }
  section:not(#guide)#newitem .inner .recommend_list > div:nth-of-type(n+4) {
    margin-top: 10px;
  }
}
section:not(#guide)#newitem .inner .recommend_list > div p.photo {
  width: 100%;
  position: relative;
}
section:not(#guide)#newitem .inner .recommend_list > div p.photo::before {
  content: "";
  display: block;
  padding-top: 100%;
}
section:not(#guide)#newitem .inner .recommend_list > div p.photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
section:not(#guide)#newitem .inner .recommend_list > div p.title {
  color: #333c4e;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#newitem .inner .recommend_list > div p.title {
    font-size: min(3vw, 18px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#newitem .inner .recommend_list > div p.price {
  color: #333c4e;
  font-size: 16px;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#newitem .inner .recommend_list > div p.price {
    font-size: min(3vw, 16px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#newitem .inner .recommend_list > div p.stock {
  color: #333c4e;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#newitem .inner .recommend_list > div p.stock {
    font-size: min(3vw, 16px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#newitem .inner .recommend_list > div p.description {
  color: #333c4e;
  font-size: 14px;
  margin: 10px 0 0;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#newitem .inner .recommend_list > div p.description {
    font-size: min(3vw, 14px);
    margin: 5px 0 0;
  }
}
section:not(#guide)#newitem .inner .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  margin: 40px auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#newitem .inner .btn {
    margin: 20px auto 0;
  }
}
section:not(#guide)#newitem .inner .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background: #009028;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
}
section:not(#guide)#newitem .inner .btn a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section:not(#guide)#category {
  background: #fff;
  padding: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#category {
    padding: 40px 0;
  }
}
section:not(#guide)#category .inner {
  max-width: 94%;
  margin: 0 auto;
}
section:not(#guide)#category .inner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#category .inner ul {
    margin-top: 20px;
  }
}
section:not(#guide)#category .inner ul li {
  width: 24%;
  max-width: 449px;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#category .inner ul li {
    width: 100%;
    margin: 0 auto;
  }
  section:not(#guide)#category .inner ul li:nth-of-type(n+2) {
    margin: 20px 0 0;
  }
}
section:not(#guide)#category .inner ul li a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section:not(#guide)#news {
  padding: 0 0 80px;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#news {
    padding: 0 0 40px;
  }
}
section:not(#guide)#news .inner {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
}
section:not(#guide)#news .inner .ec-newsRole__news {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#news .inner .ec-newsRole__news {
    margin: 20px 0 0;
  }
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem {
  background: #fff;
  padding: 20px;
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem:nth-of-type(n+2) {
  margin-top: 20px;
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading {
  display: flex;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading {
    display: block;
  }
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading .ec-newsRole__newsDate {
  flex-shrink: 0;
  color: #009028;
  line-height: 1.2;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading .ec-newsRole__newsDate {
    margin: 0 0 10px 0;
  }
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading .ec-newsRole__newsColumn {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading .ec-newsRole__newsColumn .ec-newsRole__newsTitle {
  line-height: 1.2;
  width: 100%;
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading .ec-newsRole__newsColumn .ec-newsRole__newsClose {
  flex-shrink: 0;
  margin-left: 20px;
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsHeading .ec-newsRole__newsColumn .ec-newsRole__newsClose a {
  color: #333c4e;
}
section:not(#guide)#news .inner .ec-newsRole__news .ec-newsRole__newsItem .ec-newsRole__newsDescription {
  display: none;
  line-height: 1.2;
  margin: 0;
}
section:not(#guide)#faq {
  border-top: 1px solid #333c4e;
  border-bottom: 1px solid #333c4e;
  max-width: 1130px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  section:not(#guide)#faq {
    margin: 40px auto 0;
  }
}
section:not(#guide)#faq .inner {
  padding: 0 20px;
}

.faq_list dl {
  font-size: 18px;
  font-weight: bold;
}
.faq_list dl:nth-of-type(n+2) {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .faq_list dl:nth-of-type(n+2) {
    margin: 20px 0 0;
  }
}
.faq_list dl dt {
  background: #fff;
  padding: 20px;
}
@media screen and (max-width: 1130px) {
  .faq_list dl dt {
    line-height: 1.2;
  }
}
.faq_list dl dt strong {
  color: #009028;
  font-size: 36px;
  margin-right: 10px;
}
@media screen and (max-width: 1130px) {
  .faq_list dl dt strong {
    font-size: 18px;
    margin-right: 0;
  }
}
.faq_list dl dd {
  margin: 0;
  padding: 20px 20px 0;
  line-height: 1.2;
}

section#guide {
  margin: 0 0 80px;
}
@media screen and (max-width: 767px) {
  section#guide {
    margin: 0 0 40px;
  }
}
section#guide .inner {
  display: flex;
  flex-direction: column;
}
section#guide .inner h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #172200;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  width: 560px;
  height: 60px;
  margin: 0 auto -30px;
  border-radius: 30px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  section#guide .inner h3 {
    font-size: 18px;
    width: 80%;
    height: 40px;
    margin: 0 auto -20px;
    border-radius: 20px;
  }
}
section#guide .inner div {
  background: #E5EBDC;
  padding: 70px 0 40px;
}
@media screen and (max-width: 767px) {
  section#guide .inner div {
    padding: 40px 0 40px;
  }
}
section#guide .inner div ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1130px) {
  section#guide .inner div ul {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 1130px) {
  section#guide .inner div ul li {
    width: 80%;
    margin: 0 auto;
  }
  section#guide .inner div ul li:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
section#guide .inner div ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 120px;
  background: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 1130px) {
  section#guide .inner div ul li a {
    width: 100%;
    height: 100px;
  }
}
section#guide .inner div ul li a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
section#guide .inner div ul li a img {
  width: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1130px) {
  section#guide .inner div ul li a img {
    margin-bottom: 10px;
  }
}

/* 共通footer */
/* ------------------------------------------------------------ */
footer .ec-footerRole {
  background: #fff;
  margin: 0;
  padding: 40px 0;
  border: none;
}
footer .ec-footerRole .ec-footerRole__inner {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .ec-footerRole .ec-footerRole__inner .ec-footerNavi {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1130px) {
  footer .ec-footerRole .ec-footerRole__inner .ec-footerNavi {
    width: 100%;
    justify-content: space-around;
  }
}
footer .ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link {
  margin: 0 10px;
}
@media screen and (max-width: 1130px) {
  footer .ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link {
    margin: 0;
  }
}
footer .ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link a {
  color: #000;
  margin: 0;
  padding: 0;
  text-decoration: none;
  border: none;
}
footer .ec-footerRole .ec-footerRole__inner .ec-footerNavi .ec-footerNavi__link a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer .ec-footerRole .ec-footerRole__inner .ec-footerTitle {
  width: 200px;
  margin: 20px auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  footer .ec-footerRole .ec-footerRole__inner .ec-footerTitle {
    width: 160px;
  }
}
footer .ec-footerRole .ec-footerRole__inner .ec-footerTitle a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
footer .ec-footerRole .ec-footerRole__inner .ec-footerTitle__copyright {
  color: #000;
  text-align: center;
  font-size: 12px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  footer .ec-footerRole .ec-footerRole__inner .ec-footerTitle__copyright {
    font-size: 10px;
  }
}

/* 各ページ */
/* ------------------------------------------------------------ */
body .pc_mode {
  display: inherit;
}
@media screen and (max-width: 767px) {
  body .pc_mode {
    display: none;
  }
}
body .sp_mode {
  display: none;
}
@media screen and (max-width: 767px) {
  body .sp_mode {
    display: inherit;
  }
}
body .ec-blockTopBtn {
  background: transparent;
  width: 56px;
  height: 56px;
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  body .ec-blockTopBtn {
    width: 40px;
    height: 40px;
  }
}
body .ec-blockTopBtn img:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
body .ec-role,
body .ec-mypageRole,
body .ec-registerRole,
body .ec-searchnavRole {
  color: #333c4e;
  padding: 0 20px;
}
body .ec-pageHeader {
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  body .ec-pageHeader {
    margin: 0 0 40px;
  }
}
body .ec-pageHeader h1 {
  color: #2B2B2B;
  margin: 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  body .ec-pageHeader h1 {
    font-size: 24px;
  }
}
body .ec-off1Grid {
  display: flex;
  flex-direction: column;
}
body .ec-off1Grid:nth-of-type(n+2) {
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  body .ec-off1Grid:nth-of-type(n+2) {
    margin: 40px auto 0;
  }
}
body .ec-off1Grid .ec-off1Grid__cell {
  width: 84%;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  body .ec-off1Grid .ec-off1Grid__cell {
    width: 100%;
  }
}
body .ec-off1Grid .ec-off1Grid__cell .ec-heading-bold {
  margin: 0 0 15px;
}
body .ec-off1Grid .ec-off1Grid__cell p {
  word-break: break-all;
}
body .ec-off1Grid .ec-off1Grid__cell p + p {
  margin-top: 1em;
}
body .ec-blockBtn--action,
body .ec-blockBtn--cancel {
  border-radius: 4px;
}
body .ec-blockBtn--action {
  background-color: #0078BA;
  border-color: #0078BA;
}
body .ec-blockBtn--action:hover {
  background-color: #006E9E;
  border-color: #006E9E;
}
body .ec-blockBtn--cancel {
  background-color: #172200;
  border-color: #172200;
}
body .ec-blockBtn--cancel:hover {
  background-color: #050700;
  border-color: #050700;
}
body .ec-borderedDefs dt {
  padding: 0;
}
body .ec-borderedDefs dt .ec-label {
  margin: 0;
}
body .ec-borderedDefs dd {
  line-height: 1.5;
}
body .ec-registerCompleteRole {
  padding: 0 0 80px;
}
body .ec-welcomeMsg p + p {
  margin-top: 15px;
}
body .ec-favoriteRole__item-image {
  width: 100%;
  position: relative;
}
body .ec-favoriteRole__item-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
body .ec-favoriteRole__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
body .ec-closeBtn--circle {
  z-index: 1;
}
body .ec-zipInputHelp__icon .ec-icon img {
  top: -1px !important;
}
@media screen and (max-width: 767px) {
  body#page_homepage .ec-layoutRole__contents .ec-layoutRole__main {
    margin: 0;
  }
}
body#page_homepage .ec-layoutRole__contents .catchphrase {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  body#page_homepage .ec-layoutRole__contents .catchphrase {
    font-size: 4.5vw;
    margin: 0 auto 30px;
  }
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole {
  position: relative;
  max-width: 100%;
  margin: 0 0 90px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  body#page_homepage .ec-layoutRole__contents .ec-sliderRole {
    margin: 0 0 70px;
  }
}
@media screen and (max-width: 767px) {
  body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-list {
    padding: 0 !important;
  }
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-slider {
  margin: 0 !important;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .logo {
  width: 460px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  body#page_homepage .ec-layoutRole__contents .ec-sliderRole .logo {
    width: 30%;
  }
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-slider {
  margin-bottom: 30px;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button:hover, body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button:focus {
  outline: none;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button:hover::before, body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button:hover::before, body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button:focus::before, body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button:focus::before {
  opacity: 1;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button::before {
  content: " ";
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  text-align: center;
  opacity: 0.25;
  background-color: black;
  border-radius: 50%;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li button.thumbnail img {
  width: 0;
  height: 0;
}
body#page_homepage .ec-layoutRole__contents .ec-sliderRole .slick-dots li.slick-active button::before {
  opacity: 0.75;
  background-color: black;
}
body#page_product_list .ec-topicpath {
  background: #172200;
  padding: 10px;
  border-radius: 3px;
  border: none;
}
body#page_product_list .ec-topicpath .ec-topicpath__divider {
  color: #fff;
}
body#page_product_list .ec-topicpath a {
  color: #fff;
  font-weight: bold;
}
body#page_product_list .ec-searchnavRole__infos {
  border: none;
  color: #333c4e;
}
body#page_product_list .ec-shelfGrid__item p.ec-shelfGrid__item-image {
  width: 100%;
  position: relative;
}
body#page_product_list .ec-shelfGrid__item p.ec-shelfGrid__item-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
body#page_product_list .ec-shelfGrid__item p.ec-shelfGrid__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
body#page_product_list .ec-shelfGrid__item p + p {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}
body#page_product_list .ec-shelfGrid__item p + p + p {
  font-weight: normal;
}
body#page_product_detail .ec-productRole {
  color: #333c4e;
}
body#page_product_detail .ec-productRole .ec-grid2 {
  position: relative;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .ec-grid2 {
    padding-bottom: 80px;
  }
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-sliderItemRole {
  margin-bottom: 60px;
}
body#page_product_detail .ec-productRole .ec-grid2 .sns-button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .ec-grid2 .sns-button {
    width: 100%;
  }
}
body#page_product_detail .ec-productRole .ec-grid2 .sns-button ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  margin: 0 auto;
}
body#page_product_detail .ec-productRole .ec-grid2 .sns-button ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 25px;
  border: 1px solid #ccc;
}
body#page_product_detail .ec-productRole .ec-grid2 .sns-button ul li a:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
body#page_product_detail .ec-productRole .ec-grid2 .sns-button ul li a img {
  width: 24px;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-headingTitle {
  color: #333c4e;
  font-weight: bold;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-productRole__price {
  padding: 14px 0;
  border-bottom: 1px dotted #ccc;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-productRole__priceRegularPrice {
  padding: 14px 0 0;
  display: inline-block;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-productRole__category ul {
  margin-top: 10px;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-productRole__description {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px dotted #ccc;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-productRole__actions {
  margin: 14px 0;
  padding: 0;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-productRole__actions .ec-numberInput input {
  margin: 0;
}
body#page_product_detail .ec-productRole .ec-grid2 .ec-productRole__btn {
  width: 100%;
  margin: 14px 0 0;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .ec-grid2 .ec-sliderItemRole {
    margin: 0;
  }
}
body#page_product_detail .ec-productRole .ec-grid2 .slide-item {
  width: 30%;
  position: relative;
}
body#page_product_detail .ec-productRole .ec-grid2 .slide-item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
body#page_product_detail .ec-productRole .ec-grid2 .slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
body#page_product_detail .ec-productRole .ec-grid2 .item_nav .slideThumb {
  width: 22%;
  position: relative;
  margin: 0 4% 4% 0;
}
body#page_product_detail .ec-productRole .ec-grid2 .item_nav .slideThumb:nth-of-type(4n) {
  margin: 0 0 4% 0;
}
body#page_product_detail .ec-productRole .ec-grid2 .item_nav .slideThumb::before {
  content: "";
  display: block;
  padding-top: 100%;
}
body#page_product_detail .ec-productRole .ec-grid2 .item_nav .slideThumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dotted.slick-slider {
  margin-bottom: 70px;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button:hover, body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button:focus {
  outline: none;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button:hover::before, body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button:hover::before, body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button:focus::before, body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button:focus::before {
  opacity: 1;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button::before {
  content: " ";
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  text-align: center;
  opacity: 0.25;
  background-color: black;
  border-radius: 50%;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li button.thumbnail img {
  width: 0;
  height: 0;
}
body#page_product_detail .ec-productRole .ec-grid2 .slick-dots li.slick-active button::before {
  opacity: 0.75;
  background-color: black;
}
body#page_product_detail .ec-productRole .reason {
  margin: 80px 0 0;
}
body#page_product_detail .ec-productRole .reason h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  width: 560px;
  height: 60px;
  margin: 0 auto 40px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .reason h3 {
    font-size: 18px;
    width: 80%;
    height: 40px;
    border-radius: 20px;
  }
}
body#page_product_detail .ec-productRole .reason > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .reason > div {
    display: block;
  }
}
body#page_product_detail .ec-productRole .reason > div:nth-of-type(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .reason > div:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(1) {
  flex-shrink: 0;
  width: 400px;
  position: relative;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(1) {
    width: 100%;
    margin: 0;
  }
}
body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(1)::before {
  content: "";
  display: block;
  padding-top: 100%;
}
body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(2) {
  width: 100%;
}
body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(2) strong {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(2) strong {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(2) strong span {
  color: #000;
  font-size: 80px;
  font-weight: bold;
  font-family: Roboto;
  line-height: 1;
  vertical-align: middle;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  body#page_product_detail .ec-productRole .reason > div > div:nth-of-type(2) strong span {
    font-size: 60px;
    margin-right: 10px;
  }
}
body#page_product_detail #product_review_area {
  border: none;
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  body#page_product_detail #product_review_area {
    margin: 40px auto;
  }
}
@media screen and (max-width: 767px) {
  body#page_product_detail #product_review_area .ec-rectHeading {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
body#page_product_detail #product_review_area h4 {
  background-color: #172200;
  color: #fff;
  margin: 0;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  body#page_product_detail #product_review_area h4 {
    font-size: 16px;
  }
}
body#page_product_detail #product_review_area .recommend_average {
  color: #f7dc63;
}
body#page_product_detail #product_review_area .review_list {
  padding: 0;
}
body#page_product_detail #product_review_area .review_list li {
  background: #fff;
  margin: 20px 0 0;
  padding: 20px;
}
body#page_product_detail #product_review_area .review_list li .recommend_level {
  color: #f7dc63;
}
body#page_product_detail #product_review_area .review_list li strong {
  font-size: 18px;
  margin: 10px 0;
  display: block;
}
body#page_product_detail #product_review_area .ec-inlineBtn--action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 56px;
  margin: 30px auto 0;
  background: #009028;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  border: none;
}
body#page_product_detail #product_review_area .ec-inlineBtn--action:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}
body#page_help_about section {
  overflow: hidden;
  padding: 0;
}
body#page_help_about section#company {
  padding: 0 0 80px;
}
@media screen and (max-width: 767px) {
  body#page_help_about section#company {
    padding: 0 0 40px;
  }
}
body#page_help_about section#company figure {
  margin: 0;
}
body#page_help_about section#business {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  body#page_help_about section#business {
    padding: 40px 0;
  }
}
body#page_help_about section#business figure {
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  body#page_help_about section#business figure {
    margin: 20px auto 0;
  }
}
body#page_help_about section#business figure img {
  width: 32%;
}
body#page_help_about section#overview {
  background-color: #fff;
  padding: 80px 0 80px;
}
@media screen and (max-width: 767px) {
  body#page_help_about section#overview {
    padding: 40px 0 40px;
  }
}
body#page_help_about section#location {
  padding: 80px 0 0;
}
@media screen and (max-width: 767px) {
  body#page_help_about section#location {
    padding: 40px 0 0;
  }
}
body#page_help_about section .inner {
  max-width: 1130px;
  margin: 0 auto;
  color: #333c4e;
  padding: 0 20px;
}
body#page_help_about section .inner h2 {
  text-align: center;
  color: #2B2B2B;
  font-weight: bold;
  margin: 0;
}
body#page_help_about section .inner h3 {
  display: block;
  text-align: left;
  color: #009028;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 40px auto 10px;
}
body#page_help_about section .inner h3::after {
  content: none;
}
@media screen and (max-width: 767px) {
  body#page_help_about section .inner h3 {
    font-size: calc(1rem + 0.6vw);
    margin: 20px auto 10px;
  }
}
body#page_help_about section .inner h3 + p {
  margin: 0 !important;
}
body#page_help_about section .inner p {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body#page_help_about section .inner p {
    margin-top: 20px;
  }
}
body#page_help_about section .inner iframe {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body#page_help_about section .inner iframe {
    margin-top: 20px;
  }
}
body#page_help_about section .inner dl {
  margin-top: 40px;
  display: flex;
}
@media screen and (max-width: 767px) {
  body#page_help_about section .inner dl {
    margin-top: 20px;
    display: block;
  }
}
body#page_help_about section .inner dl:nth-of-type(n+2) {
  margin-top: 1rem;
}
body#page_help_about section .inner dl dt {
  width: 30%;
}
@media screen and (max-width: 767px) {
  body#page_help_about section .inner dl dt {
    width: 100%;
  }
}
body#page_help_about section .inner dl dd {
  width: 70%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body#page_help_about section .inner dl dd {
    width: 100%;
  }
}
body#page_user_data section {
  overflow: hidden;
  padding: 0;
}
body#page_user_data section#choose1 .ec-off1Grid__cell p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  body#page_user_data section#choose1 .ec-off1Grid__cell p {
    text-align: left;
  }
}
body#page_user_data section#choose1 .ec-off1Grid__cell figure {
  width: 100%;
  max-width: 770px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  body#page_user_data section#choose1 .ec-off1Grid__cell figure {
    margin: 20px auto 0;
  }
}
body#page_user_data section#choose2 {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  body#page_user_data section#choose2 {
    padding-top: 40px;
  }
}
body#page_user_data section#choose2 .ec-off1Grid__cell h3 {
  display: block;
  text-align: left;
  color: #009028;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 40px auto 10px;
}
body#page_user_data section#choose2 .ec-off1Grid__cell h3::after {
  content: none;
}
@media screen and (max-width: 767px) {
  body#page_user_data section#choose2 .ec-off1Grid__cell h3 {
    font-size: calc(1rem + 0.6vw);
    margin: 20px auto 10px;
  }
}
body#page_user_data section#choose2 .ec-off1Grid__cell h3 + p {
  margin: 0 !important;
}
body#page_user_data section#choose2 .ec-off1Grid__cell figure {
  width: 100%;
  max-width: 770px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  body#page_user_data section#choose2 .ec-off1Grid__cell figure {
    margin: 20px auto 0;
  }
}
body#page_user_data section#choose2 .ec-off1Grid__cell figure:nth-of-type(1) img:nth-of-type(n+2) {
  margin-top: 20px;
}
body#page_user_data section .inner {
  max-width: 1130px;
  margin: 0 auto;
  color: #333c4e;
  padding: 0 20px;
}
body#page_user_data section .inner h2 {
  text-align: center;
  color: #2B2B2B;
  font-weight: bold;
  margin: 0 0 40px;
}
@media screen and (max-width: 767px) {
  body#page_user_data section .inner h2 {
    margin: 0 0 20px;
  }
}
body#page_user_data section .inner p {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  body#page_user_data section .inner p {
    margin-top: 20px;
  }
}/*# sourceMappingURL=customize.css.map */