@charset "UTF-8";
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼

  01. フロントページ（frontpage）

▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */

/* slider css */
.slider {
  overflow-x: hidden;
  width: 100%;
}

.container--homeslider {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.slider .home-slider__outer {
  aspect-ratio: 1400/583;
  width: 100%;
}

.slider .home-slider {
  opacity: 0;
  transition: ease opacity 0.3s;
}
.slider .home-slider.slick-initialized {
  opacity: 1;
}

.home-slider .items a {
  width: 100%;
}

.home-slider .items img {
  width: 100%;
  height: auto;
  display: block;
}

.home-slider .owl-item.active.center {
  opacity: 1;
}

.home-slider.slick-slider .slick-arrow {
  background: transparent !important;
  width: 0.85em;
}
.home-slider.slick-slider .slick-arrow:before {
  display: grid;
  color: #009991;
  place-content: center;
  height: 3em;
  background: rgba(255,255,255,0.7) !important;
}

/* Thumbnail */
.home-slider-thumb {
  margin: 1rem 0 0;
  opacity: 0;
  transition: ease opacity 0.3s;
}
.home-slider-thumb.slick-initialized {
  opacity: 1;
}

.home-slider-thumb .items {
  position: relative;
  display: block;
}

.home-slider-thumb .items img {
  max-width: 100%;
  height: auto;
}

/* サムネイル部分をコンテナ幅に */
.home-slider-thumb-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}

/* SP時のサムネイルスライダーを画面幅の90%に */
@media (max-width: 767px) {
  .home-slider-thumb-container {
    max-width: 95%;
    padding: 0;
  }
  
  .home-slider-thumb {
    margin: 1rem auto 0;
  }  
  /* サムネイル画像を大きく表示 */
  .home-slider-thumb .items {
    /* padding: 0 2px; */
  }
  
  .home-slider-thumb .items img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.container--homeslider {
  max-width: 1240px;
}
.container--homeslider-thumb {
  max-width: 1240px;
}

@media (max-width: 1399px) {
  .home-slider.slick-slider .slick-prev {
    left: 0;
  }
  .home-slider.slick-slider .slick-next {
    right: 0;
  }
}

@media (max-width: 1199px) {
  .container--homeslider {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .home-slider-thumb {
    margin: 0.5rem 0 0;
    /* padding: 0 1.5rem; */
    gap: 0.5rem;
  }
  .container--homeslider-thumb {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* HomeSlider Slick */
.slider .home-slider .slick-list {
  overflow: visible;
  padding: 0;
}
.slider .home-slider .slick-slide {
  opacity: 0.3;
  transition: ease all 0.6s;
  pointer-events: none;
}
.slider .home-slider .slick-slide.slick-current {
  opacity: 1;
  pointer-events: initial;
}
/* HomeSliderThumb Slick */
.home-slider-thumb {
  line-height: 0;
}
.home-slider-thumb .slick-list {
  margin: 0 -5px;
}
.home-slider-thumb .slick-track:not(:has(.slick-slide:nth-child(6))) {
  transform: translate3d(0, 0px, 0px) !important;
}
.home-slider-thumb .slick-slide {
  margin: 0 5px;
  opacity: 0.4;
  transition: ease all 0.3s;
  position: relative;
  cursor: pointer;
}
.home-slider-thumb .slick-slide.slick-current {
  opacity: 1;
}
.home-slider-thumb .slick-slide.slick-current:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 5px solid #ff99af;
}
.home-slider-thumb .slick-slide img {
  display: block;
}
@media (max-width: 767px) {
  .home-slider-thumb .slick-slide.slick-current:after {
    border-width: 2px;
  }
}

/* ==========================================
  blog
========================================== */
/* Blog css */
.blog1 .home-blog .owl-stage {
  counter-reset: my-sec-counter;
  display: flex;
}

.blog1 .home-blog .owl-item {
  padding: 0 2px;
}

.blog1 .home-blog .owl-item:before,
.blog1 .home-blog .owl-item:after {
  background-color: #f5ab1e;
}

.blog1 .home-blog .owl-item:before {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter);
  position: absolute;
  top: 0px;
  left: 15px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  border-radius: 0px 5% 25% 25%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.blog1 .home-blog .owl-item:after {
  content: "";
  width: 20px;
  height: 15px;
  position: absolute;
  top: 0px;
  left: 2px;
  opacity: 0.8;
  border-radius: 20px 5px 0px 0px;
}

.blog1 .home-blog .blog-start {
  border: 1px solid #eee;
  border-radius: 5px;
  margin-top: 15px;
}

.blog1 .home-blog .blog-start .blog-image {
  display: flex;
}

.blog1 .home-blog .blog-start .blog-image a img {
  backface-visibility: hidden;
}

.blog1 .home-blog .blog-start .blog-content {
  padding: 30px;
}

.blog1 .home-blog .blog-start .blog-content .blog-title h6 {
  font-size: 16px;
}

.blog1 .home-blog .blog-start .blog-content .blog-title h6 a {
  display: block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog1 .home-blog .blog-start .blog-content .blog-title span.blog-admin {
  display: block;
  margin-top: 7px;
  line-height: 1;
}

.blog1 .home-blog .blog-start .blog-content .blog-title span.blog-admin span.blog-editor {
  color: #000;
  font-weight: 600;
}

.blog1 .home-blog .blog-start .blog-content p.blog-description {
  color: #999;
  margin-top: 21px;
}

.blog1 .home-blog .blog-start .blog-content a.read-link {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0s ease-in-out 0s;
  -o-transition: all 0s ease-in-out 0s;
  transition: all 0s ease-in-out 0s;
}

.blog1 .home-blog .blog-start .blog-content a.read-link span {
  color: #000;
}

.blog1 .home-blog .blog-start .blog-content a.read-link:hover span {
  color: #f5ab1e;
}

.blog1 .home-blog .blog-start .blog-content a.read-link i {
  padding-left: 5px;
  font-size: 12px;
}

.blog1 .home-blog .blog-start .blog-content a.read-link:hover i {
  padding-left: 10px;
}

.blog1 .home-blog .blog-start .blog-content a.read-link span,
.blog1 .home-blog .blog-start .blog-content a.read-link:hover span,
.blog1 .home-blog .blog-start .blog-content a.read-link i,
.blog1 .home-blog .blog-start .blog-content a.read-link:hover i {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.blog1 .home-blog .blog-start .blog-content .blog-date-comment {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  line-height: 1;
}

.blog1 .home-blog .blog-start .blog-content .blog-date-comment a {
  font-weight: 600;
}

.blog1 .all-blog {
  text-align: center;
  margin-top: 30px;
}

@media (max-width: 991px) {
  /* blog css */
  .blog1 .home-blog .blog-start .blog-content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  /* blog css */
  .blog1 .home-blog .blog-start .blog-content p.blog-description {
    margin-top: 8px;
  }
}
/* ==========================================
  Brand
========================================== */
.ec-brandRole {
  position: relative;
  background: #40B2AC;
  overflow: hidden;
  margin-bottom: 3.75rem;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.ec-brandRole__txts {
  position: relative;
  z-index: 1;
  flex: 0 0 50%;
  color: #fff;
}
.ec-brandRole__ttl {
  font-size: 2.25rem;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 1em;
}
.ec-brandRole__ttl .-sml {
  font-size: 0.72em;
}
.ec-brandRole__txt {
  font-size: 1rem;
  line-height: 2.25;
}
.ec-brandRole__bg {
  position: absolute;
  z-index: 0;
  height: 100%;
  top: 0;
  left: 50%;
  text-align: left;
  padding: 0;
  width: 50%;
  height: 100%;
}
.ec-brandRole__bg:before {
  content: "";
  background: #40B2AC;
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 7.5rem;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: linear-gradient(#40B2AC);
}
.ec-brandRole__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .ec-brandRole {
    padding: 0 0 1.875rem;
    margin-bottom: 1.875rem;
  }
  .ec-brandRole__txts {
    flex: 0 0 100%;
  }
  .ec-brandRole__ttl {
    font-size: min(8vw, 1.875rem);
    text-align: center;
    line-height: 1.42;
    margin-bottom: 0.75em;
  }
  .ec-brandRole__ttl .-sml {
    display: block;
    line-height: 1.32;
    margin-bottom: 0.75em;
  }
  .ec-brandRole__txt {
    line-height: 2;
  }
  .ec-brandRole__bg {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
  }
  .ec-brandRole__bg:before {
    height: 16vw;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -1px;
    top: auto;
    aspect-ratio: 1/1;
    z-index: 1;
  }
}
/* ==========================================
  Category Img
========================================== */
/*====================================
Base: style.css
=====================================*/
/* Category image css */
/* .category-img1{
    background-color: #f7f7f7;
} */
.category-img1 .home-category .h-cate,
.category-img1 .home-ranking-slider .h-cate {
  text-align: center;
}

/*.category-img1 .home-category .h-cate .c-img a{
    position: relative;
    border: 1px solid #666;
    border-radius: 100%;
    width: 100%;
    aspect-ratio: 7 / 8;
    display: grid;
    place-items: center;
    margin: auto;
}
.category-img1 .home-category .h-cate .c-img a::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    border-radius: 100%;
    transform: scale(0);
}*/
/* .category-img1 .home-category .h-cate .c-img a::before,
.category-img1 .home-category .h-cate:hover .c-img a::before{
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.category-img1 .home-category .h-cate:hover .c-img a::before{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
} */
.category-img1 .home-category .h-cate .c-img a span {
  color: #fff;
  font-size: 14px;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 0px;
  left: 0px;
  opacity: 0;
  visibility: hidden;
}

.category-img1 .home-category .h-cate:hover .c-img a span {
  opacity: 1;
  visibility: visible;
}

.category-img1 .home-category .h-cate .c-img a span,
.category-img1 .home-category .h-cate:hover .c-img a span {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.category-img1 .home-category .h-cate span.cat-num {
  margin-top: 3px;
  display: inline-block;
}

/* Carousel button css */
.home-category.owl-carousel .owl-nav,
.home-ranking-slider.owl-carousel .owl-nav {
  margin-top: 0;
}

.home-category.owl-carousel .owl-nav button,
.home-ranking-slider.owl-carousel .owl-nav button,
.h-t-products1 .trending-products .owl-nav button,
.testimonial-bg1 .testi-m .owl-nav button {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  color: #333;
  font-size: min(10vw, 2.5rem);
  margin: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  /* opacity: 0;
  visibility: hidden; */
}

.category-img1 .home-category .owl-nav button.owl-prev {
  left: 0;
}

.category-img1 .home-category .owl-nav button.owl-next {
  right: 0;
}

/* .category-img1 .home-category:hover .owl-nav button{
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}
.category-img1 .home-category:hover .owl-nav button.owl-prev{
    left: -10px;
}
.category-img1 .home-category:hover .owl-nav button.owl-next{
    right: -10px;
} */
.home-category.owl-carousel .owl-nav button.owl-prev,
.h-t-products1 .trending-products .owl-nav button.owl-prev,
.testimonial-bg1 .testi-m .owl-nav button.owl-prev {
  left: 10px;
}

.home-category.owl-carousel .owl-nav button.owl-next,
.h-t-products1 .trending-products .owl-nav button.owl-next,
.testimonial-bg1 .testi-m .owl-nav button.owl-next {
  right: 10px;
}

.h-t-products1 .trending-products .owl-nav button,
.testimonial-bg1 .testi-m .owl-nav button {
  opacity: 1;
  visibility: visible;
}

.h-t-products1 .trending-products .owl-nav button:hover,
.testimonial-bg1 .testi-m .owl-nav button:hover {
  background-color: #fff;
  color: #f5ab1e;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

.h-t-products1 .trending-products .owl-nav button.owl-prev,
.home-ranking-slider.owl-carousel .owl-nav button.owl-prev,
.testimonial-bg1 .testi-m .owl-nav button.owl-prev {
  left: -1rem;
  justify-content: flex-start;
}

.h-t-products1 .trending-products .owl-nav button.owl-next,
.home-ranking-slider.owl-carousel .owl-nav button.owl-next,
.testimonial-bg1 .testi-m .owl-nav button.owl-next {
  right: -1rem;
  justify-content: flex-end;
}

/* Carousel Dots css */
.testimonial-bg1 .testi-m.owl-theme .owl-dots {
  margin-top: 30px;
  line-height: 0px;
}

.testimonial-bg1 .testi-m.owl-theme .owl-dots button {
  margin-right: 10px;
}

.testimonial-bg1 .testi-m.owl-theme .owl-dots button:last-child {
  margin-right: 0px;
}

.testimonial-bg1 .testi-m.owl-theme .owl-dots button.owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px;
  background-color: #f5ab1e;
  border-radius: 50%;
}

.testimonial-bg1 .testi-m.owl-theme .owl-dots .owl-dot.active span,
.testimonial-bg1 .testi-m.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #000;
}

/* Swiper button css */
.pro-tab-slider {
  position: relative;
}

.pro-tab-slider .swiper-buttons {
  height: 100%;
  height: -o-calc(100%);
  height: -ms-calc(100%);
  height: -moz-calc(100%);
  height: -webkit-calc(100%);
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

.pro-tab-slider .swiper-buttons .content-buttons {
  height: 100%;
  position: relative;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next,
.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev {
  background-image: none;
  height: 30px;
  width: 30px;
  display: flex;
  border-radius: 50%;
  color: #333;
  opacity: 1;
  z-index: 6;
  font-size: 20px;
  box-shadow: 0px 0px 12px 0px rgba(123, 190, 70, 0.1);
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next:hover,
.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev:hover,
.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next:focus {
  background-color: #fff;
  color: #f5ab1e;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next {
  right: -30px;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev {
  left: -30px;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next:after {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 800;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev:after {
  content: "\f104";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 800;
}

@media screen and (max-width: 767px) {
  .pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next {
    right: 0px;
  }
  .pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev {
    left: 0px;
  }
  .h-t-products1 .trending-products .owl-nav button.owl-prev,
  .home-ranking-slider.owl-carousel .owl-nav button.owl-prev,
  .testimonial-bg1 .testi-m .owl-nav button.owl-prev {
    left: -0.25rem;
  }
  .h-t-products1 .trending-products .owl-nav button.owl-next,
  .home-ranking-slider.owl-carousel .owl-nav button.owl-next,
  .testimonial-bg1 .testi-m .owl-nav button.owl-next {
    right: -0.25rem;
  }
}
/* ==========================================
  Home Countdown
========================================== */
/*====================================
Base: style.css
=====================================*/
/* deal of the day css */
.home-countdown1 .back-img {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  height: 450px;
}

.home-countdown1 .back-img .deal-content {
  max-width: 427px;
}

.home-countdown1 .back-img .deal-content h2 {
  color: #fff;
  line-height: 1;
}

.home-countdown1 .back-img .deal-content span.deal-c {
  color: #fff;
  font-size: 16px;
  margin-top: 19px;
  font-weight: 500;
}

/* timer */
.home-countdown1 .back-img .deal-content ul.contdown_row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 23px;
}

.home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section {
  background-color: #f5ab1e;
  position: relative;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section:after {
  content: ":";
  position: absolute;
  right: -13px;
  bottom: 50%;
  transform: translateY(50%);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section:last-child:after {
  display: none;
}

.home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section span.countdown_timer {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section span.countdown_title {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
}

.home-countdown1 .back-img .deal-content a {
  margin-top: 30px;
}

.home-countdown1 .back-img .deal-content a:hover {
  color: #fff;
}

@media (max-width: 1199px) {
  /* deal countdown css */
  .home-countdown1 .back-img {
    background-position: top;
    height: 350px;
  }
  .home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section span.countdown_timer {
    font-size: 22px;
  }
  .home-countdown1 .back-img .deal-content a {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  /* deal countdown css */
  .home-countdown1 .back-img {
    height: 350px;
  }
  .home-countdown1 .back-img .deal-content span.deal-c {
    font-size: 14px;
  }
  .home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section span.countdown_timer {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  /* deal countdown css */
  .home-countdown1 .back-img {
    height: 350px;
  }
  .home-countdown1 .back-img .deal-content span.deal-c {
    font-size: 14px;
  }
  .home-countdown1 .back-img .deal-content h2 {
    margin-top: 5px;
    font-size: 18px;
  }
  .home-countdown1 .back-img .deal-content ul.contdown_row {
    margin-top: 11px;
  }
  .home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section {
    width: 60px;
    height: 60px;
  }
  .home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section span.countdown_timer {
    font-size: 20px;
  }
  .home-countdown1 .back-img .deal-content ul.contdown_row li.countdown_section:after {
    font-size: 20px;
  }
  .home-countdown1 .back-img .deal-content a {
    margin-top: 18px;
  }
}
@media (max-width: 479px) {
  /* deal of the day css */
  .home-countdown1 .back-img {
    background-position: left 40% bottom;
  }
}
/* ==========================================
  Home Slider
========================================== */
/* slider css */
.slider {
  overflow-x: hidden;
}

.slider .home-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.slider .home-slider .img-back {
  width: 100%;
  aspect-ratio: 13/5;
  /* height: 650px; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider .home-slider .img-back .h-s-content {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 55%;
}

.slider .home-slider .img-back .h-s-content.slide-c-l {
  left: 10%;
}

.slider .home-slider .img-back .h-s-content.slide-c-r {
  right: 10%;
  text-align: right;
}

.slider .home-slider .img-back .h-s-content.slide-c-c {
  left: 10%;
  right: 10%;
  margin: 0 auto;
  text-align: center;
}

.slider .home-slider .owl-item.active .img-back .h-s-content span,
.slider .home-slider .owl-item.active .img-back .h-s-content h1,
.slider .home-slider .owl-item.active .img-back .h-s-content a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slider .home-slider .owl-item.active .img-back .h-s-content span {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
  animation-duration: 0.7s;
}

.slider .home-slider .owl-item.active .img-back .h-s-content h1 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-duration: 1s;
}

.slider .home-slider .owl-item.active .img-back .h-s-content a {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
}

.slider .home-slider .img-back .h-s-content span {
  font-size: 20px;
  font-weight: 600;
}

.slider .home-slider .img-back .h-s-content h1 {
  font-size: 50px;
  margin-top: 12px;
}

.slider .home-slider .img-back .h-s-content a {
  margin-top: 19px;
}

/* slider navigation css */
.owl-theme .owl-nav {
  margin-top: 0px;
}

.slider .home-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.slider .home-slider .owl-nav button {
  background-color: #f5ab1e;
  color: #fff;
  border: 2px solid #f5ab1e;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  font-size: 18px;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 100%;
}

.slider .home-slider .owl-nav button.owl-prev {
  left: 30px;
}

.slider .home-slider .owl-nav button.owl-next {
  right: 30px;
}

.slider .home-slider .owl-nav button:hover {
  background-color: transparent;
  color: #f5ab1e;
}

/* slider dot css */
.slider .home-slider .owl-dots {
  position: absolute;
  bottom: 10px;
  right: 0px;
  left: 0px;
  line-height: 0px;
}

.slider .home-slider .owl-dots button {
  margin-right: 10px;
}

.slider .home-slider .owl-dots button:last-child {
  margin-right: 0px;
}

.slider .home-slider .owl-dots button.owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px;
  background-color: #f5ab1e;
  border-radius: 50%;
}

.slider .home-slider .owl-dots button.owl-dot.active span,
.slider .home-slider .owl-dots button.owl-dot:hover span {
  background-color: #000000;
}

.slider .owl-theme .owl-nav .disabled {
  opacity: 1;
}

/* Swiper button css */
.pro-tab-slider {
  position: relative;
}

.pro-tab-slider .swiper-buttons {
  height: 100%;
  height: -o-calc(100%);
  height: -ms-calc(100%);
  height: -moz-calc(100%);
  height: -webkit-calc(100%);
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
}

.pro-tab-slider .swiper-buttons .content-buttons {
  height: 100%;
  position: relative;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next,
.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev {
  background-image: none;
  height: 30px;
  width: 30px;
  display: flex;
  border-radius: 50%;
  color: #333;
  opacity: 1;
  z-index: 6;
  font-size: 20px;
  box-shadow: 0px 0px 12px 0px rgba(123, 190, 70, 0.1);
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next:hover,
.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev:hover,
.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next:focus {
  background-color: #fff;
  color: #f5ab1e;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  outline: none;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-next:after {
  content: "\f105";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 800;
}

.pro-tab-slider .swiper-buttons .content-buttons .swiper-button-prev:after {
  content: "\f104";
  font: normal normal normal 14px/1 FontAwesome;
  font-weight: 800;
}

/* Thumbnail */
.home-slider-thumb {
  margin: 1rem 0 0;
}

.home-slider-thumb .owl-item {
  transition: ease all 0.3s;
  opacity: 0.4;
  cursor: pointer;
}

.home-slider-thumb .owl-item.current {
  opacity: 1;
}

.home-slider-thumb .items {
  position: relative;
  display: block;
}

.home-slider-thumb .items img {
  max-width: 100%;
  height: auto;
}

.home-slider-thumb .items span {
  position: absolute;
  display: grid;
  place-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

@media (max-width: 1199px) {
  /* slider css */
  .slider .home-slider .img-back {
    /* height: 450px; */
  }
  .slider .home-slider .img-back .h-s-content span {
    font-size: 18px;
  }
  .slider .home-slider .img-back .h-s-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  /* slider css */
  .slider .home-slider .img-back .h-s-content {
    bottom: 35%;
    width: 60%;
    transform: translateY(35%);
  }
  .slider .home-slider .img-back .h-s-content.slide-c-r {
    right: 8%;
  }
  .slider .home-slider .img-back .h-s-content h1 {
    font-size: 35px;
    margin-top: 9px;
  }
  .slider .home-slider .img-back .h-s-content a {
    margin-top: 16px;
  }
  /* carousel button css */
  .slider .home-slider .owl-nav button.owl-prev {
    left: 20px;
  }
  .slider .home-slider .owl-nav button.owl-next {
    right: 20px;
  }
}
@media (max-width: 1199px) {
  .container--homeslider {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  /* slider css */
  .slider .home-slider {
    width: 100%;
  }
  .slider .home-slider .img-back {
    aspect-ratio: 1/1;
    height: auto;
  }
  .slider .home-slider.owl-carousel .owl-item:nth-child(1) .img-back {
    background-position: right 60% bottom;
  }
  .slider .home-slider.owl-carousel .owl-item:nth-child(2) .img-back {
    background-position: left 65% bottom;
  }
  .slider .home-slider .img-back .h-s-content {
    width: 80%;
    bottom: 40%;
    transform: translateY(40%);
  }
  .slider .home-slider .img-back .h-s-content.slide-c-l {
    left: 5%;
  }
  .slider .home-slider .img-back .h-s-content.slide-c-r {
    right: 5%;
  }
  .slider .home-slider .img-back .h-s-content.slide-c-c {
    left: 5%;
    right: 5%;
  }
  .slider .home-slider .img-back .h-s-content span {
    font-size: 16px;
  }
  .slider .home-slider .img-back .h-s-content h1 {
    font-size: 28px;
    margin-top: 13px;
  }
  .slider .home-slider .img-back .h-s-content a {
    margin-top: 18px;
  }
  .slider .home-slider.owl-theme .owl-nav {
    display: none;
  }
  /* Thumbnail */
  .home-slider-thumb {
    margin: 0.5rem 0 0;
    /* padding: 0 1.5rem; */
    gap: 0.5rem;
  }
}
/* ==========================================
  Movie
========================================== */
.ec-movieRole {
  width: min(100%, 980px);
  margin: auto;
  padding-top: 3.125rem;
}

.ec-movieRole__item {
  display: flex;
  gap: 4%;
}

.ec-movieRole__item:not(:last-child) {
  margin-bottom: 25px;
}



.ec-movieRole__thumb {
}

.ec-movieRole__right {
  flex-grow: 1;
  font-size: 16px;
}

.ec-movieRole__ttl {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.ec-movieRole__item:hover {
  color: #000;
  text-decoration: underline;
}
.ec-movieRole__item:hover .ec-movieRole__thumb {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .ec-movieRole {
    padding-top: 2.625rem;
  }
  .ec-movieRole__item {
    gap: 2.5%;
  }
  .ec-movieRole__thumb {
    display: block;
    margin: 0 auto 0.8rem;
    width: max(160px, 25%);
  }
  .ec-movieRole__thumb img {
    display: block;
    width: 100%;
    height: auto;
  } 
  .ec-movieRole__right {
    font-size: 12.5px;
    flex: 1;
  }
  .ec-movieRole__ttl {
    margin-bottom: 10px;
    font-size: 1.25em;
  }
}
@media (max-width: 575px) {
  .ec-movieRole {
  }
  .ec-movieRole__item {
    flex-wrap: wrap;
  }
  .ec-movieRole__thumb {
    width: 100%;
  }
  .ec-movieRole__thumb img {
  } 
  .ec-movieRole__right {
  }
  .ec-movieRole__ttl {
  }
}
/* ==========================================
  News Letter
========================================== */
/*====================================
Base: style.css
=====================================*/
/* news letter css */
.news-img {
  /* min-height: 450px; */
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.news-letter1 .home-news {
  width: 50%;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

.news-letter1 .home-news h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.news-letter1 .home-news p {
  color: #fff;
  margin-top: 8px;
}

.news-letter1 .home-news form {
  width: 70%;
  position: relative;
  margin-top: 22px;
  border-radius: 25px;
  overflow: hidden;
}

.news-letter1 .home-news form input {
  width: 100%;
  padding: 10px 15px 10px 20px;
  border-radius: 25px;
}

.news-letter1 .home-news form button {
  position: absolute;
  right: 0px;
  height: 100%;
}

.news-letter1 .home-news form button.news-sub {
  display: none;
}

@media (max-width: 1199px) {
  /* newletter css */
  .news-letter1 .home-news form {
    width: 90%;
  }
  .news-letter1 .news-img {
    background-position: bottom;
  }
}
@media (max-width: 991px) {
  /* new letter css */
  .news-letter1 .news-img {
    background-position: top;
  }
  .news-letter1 .home-news {
    width: 70%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .news-letter1 .home-news .news h2.news-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  /* news letter css */
  .news-letter1 .home-news h2 {
    font-size: 20px;
  }
  .news-letter1 .home-news form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 12px;
    border-radius: 0;
    overflow: unset;
  }
  .news-letter1 .home-news form button {
    display: none;
    margin-top: 20px;
    position: unset;
  }
  .news-letter1 .home-news form button.news-sub {
    display: block;
  }
}
@media (max-width: 479px) {
  /* newslatter */
  .news-letter1 .home-news {
    width: 100%;
  }
}
/* ==========================================
  Testimonial Bg
========================================== */
/*====================================
Base: style.css
=====================================*/
/* Testimonial css */
.testimonial-bg1 {
  background-color: #f9f9f9;
}

.testimonial-bg1 .testi-m .testimonial-area {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #eee;
}

.testimonial-bg1 .testi-m .testimonial-area:before {
  content: "\f10d";
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 20px;
  font-weight: 900;
  background-color: #ffb503;
  color: #fff;
  width: 60px;
  height: 60px;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 7px auto;
  border-radius: 50px;
}

.testimonial-bg1 .testi-m .testimonial-area:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border: 1px solid #ffb503;
  border-radius: 50px;
}

.testimonial-bg1 .testi-m .testimonial-area span.tsti-title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 13px;
}

.testimonial-bg1 .testi-m .testimonial-area p {
  margin-top: 16px;
}

.testimonial-bg1 .testi-m .testimonial-area .testi-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.testimonial-bg1 .testi-m .testimonial-area .testi-name h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.testimonial-bg1 .testi-m .testimonial-area .testi-name span {
  color: #ffb503;
  display: flex;
  margin-top: 17px;
}

.testimonial-bg1 .testi-m .testimonial-area .testi-name span i {
  margin-right: 5px;
}

.testimonial-bg1 .testi-m .testimonial-area .testi-name span i:last-child {
  margin-right: 0px;
}

@media (max-width: 767px) {
  /* testimonial css */
  .testimonial-bg1 .testi-m .testimonial-area {
    padding: 15px;
  }
  .testimonial-bg1 .testi-m .testimonial-area:after {
    top: 15px;
  }
  .testimonial-bg1 .testi-m .testimonial-area p {
    margin-top: 6px;
  }
  .testimonial-bg1 .testi-m .testimonial-area .testi-name {
    margin-top: 5px;
  }
  /* blog css */
  .blog1 .home-blog .blog-start .blog-content p.blog-description {
    margin-top: 8px;
  }
  .blog1 .all-blog {
    margin-top: 20px;
  }
}
/* ==========================================
  Top Banner
========================================== */
/* Banner grid css */
.t-banner1 .home-offer-banner {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
}

.t-banner1 .home-offer-banner .o-t-banner {
  width: calc(50% - 30px);
  margin-left: 30px;
  position: relative;
}

.t-banner1 .home-offer-banner .o-t-banner a.image-b {
  display: block;
  overflow: hidden;
  position: relative;
}

.t-banner1 .home-offer-banner .o-t-banner a.image-b::before,
.t-banner1 .home-offer-banner .o-t-banner a.image-b::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 10px;
  left: 10px;
  opacity: 0;
  visibility: hidden;
  filter: alpha(opacity=0);
  z-index: 1;
}

.t-banner1 .home-offer-banner .o-t-banner a.image-b::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
}

.t-banner1 .home-offer-banner .o-t-banner a.image-b::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  -webkit-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
}

.t-banner1 .home-offer-banner .o-t-banner a.image-b:hover::after,
.t-banner1 .home-offer-banner .o-t-banner a.image-b:hover::before {
  opacity: 1;
  visibility: visible;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.t-banner1 .home-offer-banner .o-t-banner:hover a.image-b img {
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.t-banner1 .home-offer-banner .o-t-banner a.image-b::before,
.t-banner1 .home-offer-banner .o-t-banner a.image-b::after,
.t-banner1 .home-offer-banner .o-t-banner a.image-b:hover::after,
.t-banner1 .home-offer-banner .o-t-banner a.image-b:hover::before,
.t-banner1 .home-offer-banner .o-t-banner a.image-b img,
.t-banner1 .home-offer-banner .o-t-banner:hover a.image-b img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.t-banner1 .home-offer-banner .o-t-banner .o-t-content {
  width: 50%;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: 30px;
}

.t-banner1 .home-offer-banner .o-t-banner .o-t-content h6 {
  font-size: 22px;
  color: #000;
}

.t-banner1 .home-offer-banner .o-t-banner .o-t-content a {
  margin-top: 21px;
}

.t-banner1 .home-offer-banner .o-t-banner .banner-color h6 {
  color: #000;
}

@media (max-width: 1199px) {
  /* two banner css */
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content h6 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  /* grid banner css */
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content {
    left: 15px;
  }
}
@media (max-width: 767px) {
  /* two banner css */
  .t-banner1 .home-offer-banner {
    margin-left: -15px;
  }
  .t-banner1 .home-offer-banner .o-t-banner {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}
@media (max-width: 600px) {
  /* two banner css */
  .t-banner1 .home-offer-banner {
    margin-left: -15px;
  }
  .t-banner1 .home-offer-banner .o-t-banner {
    width: calc(100% - 15px);
    margin-left: 15px;
    margin-top: 15px;
  }
  .t-banner1 .home-offer-banner .o-t-banner:first-child {
    margin-top: 0px;
  }
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content {
    left: 15px;
    width: 60%;
  }
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content a {
    margin-top: 12px;
  }
}
@media (max-width: 479px) {
  /* banner grid css */
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content h6 {
    font-size: 16px;
  }
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content a {
    margin-top: 14px;
  }
}
@media (max-width: 320px) {
  /* grid banner css */
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content {
    width: 75%;
  }
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content h6 {
    font-size: 16px;
  }
  .t-banner1 .home-offer-banner .o-t-banner .o-t-content a {
    margin-top: 8px;
  }
}
.ec-swiper {
  overflow: hidden;
  position: relative;
}
.ec-swiper-outer {
  position: relative;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.ec-swiper-outer .swiper-button-next, .ec-swiper-outer .swiper-button-prev {
  color: #333;
  background: none;
  font-size: 3rem;
  display: flex;
  align-items: center;
  padding: 0;
}
.ec-swiper-outer .swiper-button-next {
  justify-content: flex-end;
  right: -0.5rem;
}
.ec-swiper-outer .swiper-button-prev {
  justify-content: flex-start;
  left: -0.5rem;
}
.ec-swiper-outer .swiper-button-next:after,
.ec-swiper-outer .swiper-button-prev:after {
  display: none;
}
@media screen and (max-width: 1399px) {
  .ec-swiper .swiper-slide {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .ec-swiper {
    padding-left: 0;
    padding-right: 0;
  }
  .ec-swiper-outer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .ec-swiper-outer .swiper-button-next, .ec-swiper-outer .swiper-button-prev {
    font-size: min(10vw, 2.5rem);
    color: #333;
  }
  .ec-swiper-outer .swiper-button-next {
    /* right: 0.25rem; */
  }
  .ec-swiper-outer .swiper-button-prev {
    /* left: 0.25rem; */
  }
}
.ec-homePromary {
  line-height: 0;

}
.container--prime-slider {
  max-width: calc(1276px + 1.5rem);
  padding-right: 50px;
  padding-left: 50px;
}
.ec-homePromary__item {
  text-align: center;
  overflow: hidden;
  border-radius: min(0.8vw, 0.625rem);
}
.ec-homePromary__item a {
  width: 100%;
}
.ec-homePromary__item img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  
}
.ec-homePromary .slick-slide {
    margin: 0 min(1vw ,0.75rem);
}
@media screen and (max-width: 767px) {
  .container--prime-slider {
    padding-left: 30px;
    padding-right: 30px;
  }
  .ec-homePromary__item {
    border-radius: 1.9vw;
  }
}

/* ==========================================
  Topics
========================================== */
.section-topics {
  background: #D6F1F0;
}

.section-voice {
  background: #D6F1F0;
}

.section-product-summary {
  margin-top: 50px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .section-product-summary {
    margin-top: 35px;
    margin-bottom: 70px;
  }
}
.ec-homeTopics {
  /* margin-bottom: 2rem; */
}
.ec-homeTopics__outer {
  padding-top: 0.625rem;
}
.ec-homeTopics__item {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid #aaaaaa;
}
.ec-homeTopics__item__flex {
    display: flex;
    gap: 20px;
}
.homeTopics__item__flex__left {
    width: 80px;
}
.homeTopics__item__flex__left img {
    object-fit: cover;
    object-position: center;
}
.ec-homeTopics__data {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.ec-homeTopics__data .-date {
  flex: 0 0 7em;
}
.ec-homeTopics__data .-category {
  text-align: center;
  font-size: 0.75rem;
  border-radius: 100em;
  color: #fff;
  padding: 0.25em 1.25em;
  line-height: 1.25;
  background: #009991;
}
.ec-homeTopics__ttl {
  font-size: 1.125rem;
}
.ec-homeTopics__ttl a {
  color: #000;
  display: block;
}
.ec-homeTopics__ttl a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .ec-homeTopics__ttl {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .ec-homeTopics__item {
    padding: 0.8rem 0 0.9rem;
  }
  .ec-homeTopics__data {
    margin-bottom: 0.35rem;
  }
  .ec-homeTopics__ttl {
    font-size: clamp(0.75rem, 3.2vw, 1rem);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 表示する最大行数 */
    overflow: hidden;
  }

  .ec-homeTopics__item__flex {
      display: flex;
      gap: 20px;
  }
  .homeTopics__item__flex__left {
      width: 80px;
  }
  .homeTopics__item__flex__left img {
      object-fit: cover;
      object-position: center;
  }
}
/* ==========================================
  Ranking
========================================== */
.ec-homeRanking {
  /* margin-bottom: 3.125rem; */
}
.ec-homeRanking__item {
  position: relative;
}
.ec-homeRanking__item .-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #009991;
  text-align: center;
}
.ec-homeRanking .-rank {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-content: center;
  width: 1.63em;
  height: 2.42em;
  padding-bottom: 0.3em;
  color: #333;
  font-weight: 700;
  font-size: 1.1875rem;
  background: #EEEEEE;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 50% 80%, 0 100%);
  z-index: 1;
}
.ec-homeRanking .-rank--1 {
  background: #E9BC00;
  color: #fff;
}
.ec-homeRanking .-rank--2 {
  background: #AFAFB0;
  color: #fff;
}
.ec-homeRanking .-rank--3 {
  background: #E17B34;
  color: #fff;
}
.ec-homeRanking .-name {
  text-align: center;
  font-size: clamp(0.9rem, 1.33vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  line-height: 1.6;
}
@media (max-width: 767px) {
  .ec-homeRanking {
    /* margin-bottom: 1.25rem; */
  }
  .ec-homeRanking .-rank {
    font-size: clamp(0.6875rem, 2.93vw, 1rem);
  }
  .ec-homeRanking .-name {
    font-size: clamp(0.625rem, 2.67vw, 1rem);
    line-height: 1.25;
    margin-top: 0.5em;
  }
  .ec-homeRanking__item .-price {
    font-size: 0.8rem;
  }
}

/* HomeRanking Slick */
.ec-homeRanking .slick-list {
  margin: 0 -0.9375rem;
}
.ec-homeRanking .slick-slide {
  margin: 0 0.9375rem;
}
@media (max-width: 767px) {
  .ec-homeRanking .slick-list {
    margin: 0 -0.5rem;
  }
  .ec-homeRanking .slick-slide {
    margin: 0 0.5rem;
  }
}

/* ==========================================
  HomeProducts
========================================== */
.ec-homeProducts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem 0.875rem;
  padding-top: 3.125rem;
}
@media (max-width: 767px) {
  .ec-homeProducts__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
    padding-top: 1.25rem;
  }
}
@media (max-width: 479px) {
  .ec-homeProducts__list {
    grid-template-columns: repeat(2, 1fr);
    /* gap: 3.9vw; */
    gap: 1vw 0;
  }
  .ec-homeProducts .owl-carousel .owl-nav button {
    translate: 0 -4vw;
    font-size: 9vw;
  }
  .ec-homeProducts .owl-carousel .owl-nav button.owl-prev {
    left: -10px;
  }
  .ec-homeProducts .owl-carousel .owl-nav button.owl-next {
    right: -10px;
  }
}
/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼

02. 商品詳細ページ（/product）

▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ */
/* ==========================================
  Tab
========================================== */
/*====================================
Base: style5.css
=====================================*/
/* tab css */
.pro-page-content .pro-page-tab ul.nav.nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 60px;
}

.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item {
  margin-right: 40px;
}

.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item:last-child {
  margin-right: 0px;
}

.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link {
  position: relative;
  color: #666;
  font-size: 14px;
  padding: 0px 7px;
  margin-bottom: 0px;
  text-transform: uppercase;
  border: none;
}

.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link.active,
.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link:hover {
  border: none;
}

.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link.active {
  color: #f5ab1e;
}

.pro-page-content .pro-page-tab ul.nav.nav-tabs li.nav-item a.nav-link.active:after {
  background-color: #f5ab1e;
  content: "";
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  left: -5px;
  width: 5px;
  height: 5px;
  border-radius: 25px;
}

.pro-page-content .pro-page-tab .tab-content iframe {
  width: 100%;
}

/* description css */
.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-1content h4 {
  font-size: 16px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-1content ul.tab-description {
  list-style-type: unset;
  padding-left: 15px;
  margin-top: 18px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-1content ul.tab-description li {
  margin-top: 5px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-1content ul.tab-description li:first-child {
  margin-top: 0px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content {
  margin-top: 17px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content h4 {
  font-size: 16px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content ul.tab-description {
  list-style-type: unset;
  padding-left: 15px;
  margin-top: 18px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content ul.tab-description li {
  margin-top: 5px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .tab-2content ul.tab-description li:first-child {
  margin-top: 0px;
}

/* ==========================================
  Reviews
========================================== */
/*====================================
Base: style5.css
=====================================*/
/* reviews css */
.pro-page-content .pro-page-tab .tab-content .tab-pane h4.reviews-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews {
  border-top: 1px solid #eee;
  margin-top: 28px;
  padding-top: 30px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews span.p-rating i.e-star {
  color: #f5ab1e;
  font-size: 18px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews p.review-desck {
  font-size: 13px;
  margin-top: 9px;
  margin-bottom: 9px;
  line-height: 1;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews a {
  color: #f5ab1e;
  text-decoration: underline;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews h4.review-head {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews span.reviews-editor {
  font-weight: 500;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews span.reviews-editor span.review-name {
  font-weight: normal;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .customer-reviews p.r-description {
  margin-top: 10px;
  line-height: 1;
  font-size: 13px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form {
  margin-top: 24px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form h4 {
  font-size: 18px;
  color: #333;
  line-height: 1;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form {
  margin-top: 12px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form label {
  font-size: 14px;
  margin-top: 15px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form label:first-child {
  margin-top: 0px;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form input {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  border: 1px solid #eee;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form form textarea {
  width: 100%;
  margin-top: 10px;
  font-size: 14px;
  border: 1px solid #eee;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form span {
  display: block;
  margin-top: 10px;
  line-height: 1;
}

.pro-page-content .pro-page-tab .tab-content .tab-pane .review-form span i {
  color: #ddd;
}

/* ==========================================
  Product Sselect
========================================== */
.ec-productPhotos {
  flex: 0 1 auto;
  max-width: 43%;
}
.ec-productPhotos__main {
  overflow: hidden;
}
.ec-productPhotos__main__outer {
  margin-bottom: 3.125rem;
}
.ec-productPhotos__main__link {
  display: block;
  position: relative;
}
.ec-productPhotos__main__link img {
  width: 100%;
}
.ec-productPhotos__main__link .-float {
  position: absolute;
  display: grid;
  place-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ec-productPhotos__main__item {
  background: #fafafa;
}
.ec-productPhotos__main.owl-carousel .owl-nav button {
  background: #fff !important;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  font-size: 2.5rem;
  display: flex;
  right: -0.75em;
  justify-content: flex-start;
  padding-left: 0.3em !important;
}
.ec-productPhotos__main.owl-carousel .owl-nav button.owl-prev {
  right: auto;
  left: -0.75em;
  justify-content: flex-end;
  padding-left: 0 !important;
  padding-right: 0.3em !important;
}
.ec-productPhotos__thumb {
  border: none;
  margin-top: 1.875rem;
}
.ec-productPhotos__thumb__link {
  padding: 0;
  margin: 0 !important;
}
.ec-productPhotos__thumb__link.active {
  border: 1px solid #f00 !important;
}
.ec-productPhotos__thumb.owl-carousel .owl-nav button.owl-next {
  right: -0.5em;
}
.ec-productPhotos__thumb.owl-carousel .owl-nav button.owl-prev {
  left: -0.5em;
}
.ec-productPhotos__description__txt {
  font-size: 1rem;
  line-height: 2.25;
  margin-bottom: 2.5rem;
  text-align: justify;
}
.ec-productPhotos__description__mov-btn {
  margin-bottom: 2.5rem;
}
.ec-productPhotos__description__btns {
  display: flex;
  gap: 1.25rem;
}
.ec-productPhotos__description__btns__item {
  color: #009991;
  font-size: clamp(1rem, 1.67vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  border: 3px solid #009991;
  border-radius: 0.625rem;
  background: #EBF8F7;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 0.35em;
  justify-content: center;
  min-height: 3.75rem;
  width: min(20rem, 100%);
}
.ec-productPhotos__description__btns__item.--white {
  background: #fff;
}
.ec-productPhotos__description__btns__item .-icon {
  margin-right: 0.7em;
}
.ec-productPhotos__description__btns__item .-icon--mov {
  font-size: 1.4em;
  margin-right: 0.3em;
}
.ec-productPhotos__description__btns__item:hover {
  background: #f5ab1e;
  color: #fff;
  border-color: #f5ab1e;
}
.ec-productPhotos__description__btns__item:hover svg path {
  fill: #fff;
}

@media (max-width: 1199px) {
  .ec-productPhotos__description__btns {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .ec-productPhotos {
    max-width: none;
    width: 100%;
  }
  .ec-productPhotos__main__outer {
    margin-bottom: 1.5625rem;
  }
  .ec-productPhotos__thumb {
    margin-top: 1.25rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .ec-productPhotos__thumb.owl-carousel .owl-nav button.owl-next {
    right: -0.5em;
  }
  .ec-productPhotos__thumb.owl-carousel .owl-nav button.owl-prev {
    left: -0.5em;
  }
  .ec-productPhotos__description__txt {
    line-height: 1.875;
    margin-bottom: 1.875rem;
  }
  .ec-productPhotos__description__btns {
    justify-content: space-between;
    gap: 0;
  }
  .ec-productPhotos__description__btns__item {
    width: 48%;
    font-size: clamp(0.875rem, 4.26vw, 1rem);
    flex-flow: column;
    text-align: center;
    align-items: center;
    line-height: 1.3125;
    padding: min(3.7vw, 0.875rem) 0;
    border-width: 2px;
  }
  .ec-productPhotos__description__btns__item .-icon {
    margin-right: 0;
    margin-bottom: 0.3em;
  }
}
.ec-productSelect__ttl {
  font-size: 2.25rem;
  line-height: 1.66;
  margin-bottom: 1rem;
}
.ec-productSelect__price {
  font-size: 1.875rem;
  font-weight: 700;
  display: flex;
  line-height: 1em;
  margin-bottom: 1em;
  align-items: baseline;
}
.ec-productSelect__price__left {
  font-size: 0.67em;
  font-weight: 600;
  flex: 0 1 3.3em;
}
.ec-productSelect__price__right {
  font-weight: inherit;
}
.ec-productSelect__price__right .-tax {
  font-weight: 600;
  font-size: 0.53em;
  font-feature-settings: "palt";
}
.ec-productSelect__action {
  border-radius: 0.625rem;
  background: #F7F7F7;
  padding: 1.875rem;
}
.ec-productSelect__action__row {
  display: flex;
  align-items: center;
}
.ec-productSelect__action__row:not(:first-child) {
  margin-top: 1.5rem;
}
.ec-productSelect__action__thumb {
  flex: 0 1 auto;
  width: max(3.75rem, 15%);
}
.ec-productSelect__action__txts {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2%;
  padding-left: 6%;
  justify-content: space-between;
}
.ec-productSelect__action__txts .-grade {
  flex: 0;
  line-height: 1.875;
  font-size: 1rem;
}
.ec-productSelect__action__txts .-action {
  flex: 1;
  max-width: 75%;
}
.ec-productSelect__inputNum {
  margin-bottom: 0 0 1.5rem;
  font-size: 1.125rem;
}
.ec-productSelect__inputNum__inner {
  align-items: center;
  margin-bottom: 0;
  display: flex;
  gap: 1.66em;
}
.ec-productSelect__inputNum__inner input[type=number] {
  text-align: center;
  padding: 0.3em 0.3em;
  border-radius: 0.3125rem;
}
.ec-productSelect__inputNum__field {
  flex: 0 1 auto;
  height: 2.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}
.ec-productSelect__inputNum__field .-btn-field {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  background: #e4e4e4;
  border-radius: 0.3125rem;
  font-size: 1.875rem;
}
.ec-productSelect__inputNum__txt {
  font-size: 0.77em;
}

@media (max-width: 1199px) {
  .ec-productSelect__ttl {
    font-size: clamp(1.875rem, 3.05vw, 2.25rem);
  }
  .ec-productSelect__price {
    font-size: clamp(1.5625rem, 2.55vw, 1.875rem);
  }
}
@media (max-width: 991px) {
  .ec-productSelect__action__txts {
    padding-left: 3%;
    gap: 3%;
  }
}
@media (max-width: 767px) {
  .ec-productSelect {
    margin-bottom: 1.5625rem;
    width: 100%;
  }
  .ec-productSelect__ttl {
    font-size: 1.5rem;
    line-height: 1.66;
  }
  .ec-productSelect__price {
    font-size: 1.5rem;
    line-height: 1.5em;
  }
  .ec-productSelect__price__left {
    font-size: 0.83em;
  }
  .ec-productSelect__price__right .-tax {
    font-size: 0.53em;
  }
  .ec-productSelect__action {
    padding: 1.25rem;
  }
  .ec-productSelect__action__txts {
    flex-wrap: wrap;
  }
  .ec-productSelect__action__txts .-action {
    max-width: none;
  }
  .ec-productSelect__inputNum__inner {
    margin-bottom: 1em;
    flex-flow: column;
    gap: 0.5rem;
  }
}
@media (max-width: 600px) {
  .ec-productSelect__price {
    margin-bottom: 0.5em;
  }
  .ec-productSelect__action__thumb {
    width: min(28%, 5.625rem);
  }
  .ec-productSelect__action__txts .-grade {
    width: 100%;
    flex: none;
    margin-bottom: 0.5em;
  }
  .ec-productSelect__action__txts .-action {
    flex: none;
    width: min(18.75rem, 100%);
  }
}
.ec-productFeature {
  display: flex;
  gap: 4%;
  margin-bottom: 6.25rem;
}
.ec-productFeature__left {
  flex: 1 0 auto;
  width: min(38%, 28.75rem);
  overflow: hidden;
}
.ec-productFeature__left img {
  border-radius: 0.625rem;
}
@media (max-width: 767px) {
  .ec-productFeature {
    display: block;
    margin-bottom: 1.5625rem;
  }
  .ec-productFeature__left {
    width: auto;
    margin-bottom: 1.5625rem;
  }
}
/* -----------------------------------
  フロー系
----------------------------------- */
.ec-productStep {
  margin-bottom: 3.125rem;
}
.ec-productStep__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(3.2%, 2.5rem);
  padding-top: 2.5025rem;
  padding-left: 0;
  padding-right: 0;
}
.ec-productStep__list--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.ec-productStep__list--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.ec-productStep__item {
  position: relative;
  list-style: none;
  display: flex;
  flex-flow: column;
}
.ec-productStep__item__inner {
  position: relative;
  background: #D6F1F0;
  padding: 0.625rem 0.625rem 1.7rem;
  border-radius: 0.625rem;
  flex: 1;
}
.ec-productStep__item__inner--flex {
  display: flex;
  gap: 5%;
  padding: 0.625rem;
  align-items: flex-start;
  align-content: flex-start;
}
.ec-productStep__item__inner--type2 { background: #F3FADE; }
.ec-productStep__item .ec-productStep__item__inner:after {
  content: "";
  display: block;
  height: 2.4rem;
  aspect-ratio: 0.8660254038;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #D6F1F0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.9rem;
  margin: auto;
}
.ec-productStep__item .ec-productStep__item__inner--type2:after { background: #F3FADE; }
.ec-productStep__item:last-child .ec-productStep__item__inner:after,
.ec-productStep__item .ec-productStep__item__inner--no-arrow:after {
  display: none;
}
.ec-productStep__num {
  font-size: 0.875rem;
  line-height: 1.1;
  background: #009991;
  width: 5.72em;
  height: 5.72em;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  top: -2.86em;
}
.ec-productStep__num .-num {
  font-size: 2.15em;
}
.ec-productStep__hd {
  display: flex;
  align-items: flex-start;
  color: #009991;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5em;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.ec-productStep__hd .-txt {
  flex: 1;
}
.ec-productStep__hd .-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 0.75em;
  margin-right: 0.65em;
  background: #009991;
  border-radius: 10em;
  padding: 0 1.2em;
}
.ec-productStep__hd .-label:after {
  content: "";
  display: block;
  width: 0.625em;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 100%,100% 0,0 0);
  background: #009991;
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  margin: auto;
}
.ec-productStep__pic {
  margin-bottom: 1.25rem;
  max-width: 100%;
  text-align: center;
}
.ec-productStep__pic--flex {
  margin-bottom: 0;
}
.ec-productStep__ttl {
  color: #009991;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 1em;
}
.ec-productStep__txt {
  font-size: 1.125rem;
  font-size: 1rem;
  text-align: justify;
  line-height: 1.875;
  letter-spacing: 0;
}
.ec-productStep__txt--type2 {
  color: #65AB31;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.55;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.ec-productStep__txt--flex {
  flex: 1;
  padding-right: calc(5% - 0.625rem);
  padding-top: 1rem;
}
.ec-productStep__illust {
  position: absolute;
  left: 1rem;
  bottom: -0.5rem;
}
.ec-productStep__illust--right {
  left: auto;
  right: 1rem;
}

@media (max-width: 1199px) {
  .ec-productStep {
    overflow-x: scroll;
  }
  .ec-productStep--col2 { overflow-x: visible; }
  .ec-productStep__list {
    grid-template-columns: repeat(4, 17.5rem);
    gap: 2.5rem;
  }
  .ec-productStep__list--col3 { grid-template-columns: repeat(3, 1fr); }
  .ec-productStep__list--col2 { grid-template-columns: repeat(2, 1fr); }
  .ec-productStep__item__inner--flex {
    display: block;
  }
  .ec-productStep__txt--flex {
    padding-top: 0;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  .ec-productStep__hd {
    flex-wrap: wrap;
    justify-content: center;
    background: #D6F1F0;
    margin-bottom: 0;
    border-radius: 0.625rem 0.625rem 0 0;
  }
  .ec-productStep__hd .-label {
    margin-right: 0;
    margin-top: -0.7em;
    margin-bottom: 0.5em;
  }
  .ec-productStep__hd .-txt {
    display: block;
    width: 100%;
    flex: auto;
    text-align: center;
  }
  .ec-productStep__hd ~ .ec-productStep__item__inner {
    border-radius: 0 0 0.625rem 0.625rem;
  }  
  .ec-productStep__pic--flex {
    margin-bottom: 1.25rem;
  }
  .ec-productStep__txt--type2 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
  }
}
  @media (max-width: 991px) {
  .ec-productStep__txt--flex {
    /* font-size: clamp(1rem, 1.82vw, 1.125rem); */
  }
}
@media (max-width: 767px) {
  .ec-productStep--col2 { overflow-x: scroll; }
  .ec-productStep {
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-bottom: 1.25rem;
  }
  .ec-productStep__list {
    grid-template-columns: repeat(4, min(74.7vw, 17.5rem));
    padding-top: 1.7875rem;
    padding-left: 12px;
  }
  .ec-productStep__list--col2 {
    grid-template-columns: repeat(2, min(74.7vw, 17.5rem));
  }
  .ec-productStep__hd .-label {
    line-height: 1.7;
  }
  .ec-productStep__hd ~ .ec-productStep__item__inner {
    padding-top: 0.3125rem;
  }
  .ec-productStep__num {
    font-size: 0.625rem;
  }
  .ec-productStep__ttl {
    font-size: 1.125rem;
    margin-bottom: 0.5em;
  }
  .ec-productStep__pic--flex {
    margin-bottom: 0.625rem;
  }
}
.ec-productNutrition__list {
  display: grid;
  height: 100%;
}
.ec-productNutrition__list--col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.ec-productNutrition__item:not(:has(.ec-productNutrition__item)) {
  border-bottom: 2px solid #009991;
  padding-bottom: 1.25rem;
}
.ec-productNutrition__pic {
  margin-bottom: 1.25rem;
}
.ec-productNutrition__pic img {
  max-width: 100%;
  vertical-align: bottom;
  border-radius: 0.625rem;
}
.ec-productNutrition__ttl {
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: 600;
  padding: 0.55em;
  min-height: 2.87em;
  color: #009991;
  background: #D6F1F0;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.ec-productNutrition__ttl:not(:first-of-type) {
  margin-top: 2.1875rem;
}
.ec-productNutrition__txt {
  font-size: 1rem;
  line-height: 2.25;
}
.ec-productNutrition__data {
  margin-bottom: 0;
  font-size: 1rem;
  display: grid;
  grid-template-columns: 45% 1fr;
}
.ec-productNutrition__data__ttl, .ec-productNutrition__data__txt {
  line-height: 1.25;
  padding: 0.5em 0 1em;
  margin-bottom: 0;
}
.ec-productNutrition__data__ttl:not(:first-of-type), .ec-productNutrition__data__txt:not(:first-of-type) {
  border-top: 1px solid #EEEEEE;
  padding-top: 1em;
}
.ec-productNutrition__data__ttl {
  font-weight: 400;
  padding-left: 0.25em;
  padding-right: 0.5em;
}
.ec-productNutrition__data__ttl.--bold {
  font-weight: 600;
}
.ec-productNutrition__data__txt.--bold {
  font-weight: 600;
}

@media (max-width: 1199px) {
  .ec-productNutrition__list {
    gap: min(3.34vw, 2.5rem);
  }
}
@media (max-width: 767px) {
  .ec-productNutrition__list {
    display: block;
  }
  .ec-productNutrition__item:not(:has(.ec-productNutrition__item)) {
    padding-bottom: 0;
    border-bottom: none;
  }
  .ec-productNutrition__pic {
    text-align: center;
    margin-bottom: 1.875rem;
  }
  .ec-productNutrition__ttl {
    margin-bottom: 0.7rem;
  }
  .ec-productNutrition__ttl, .ec-productNutrition__ttl:not(:first-of-type) {
    margin-top: 1rem;
  }
  .ec-productNutrition__data__ttl, .ec-productNutrition__data__txt {
    padding: 0.4em 0 0.8em;
  }
  .ec-productNutrition__data__ttl:not(:first-of-type), .ec-productNutrition__data__txt:not(:first-of-type) {
    padding-top: 0.8em;
  }
  .ec-productNutrition__data__ttl {
    padding-left: 0.625rem;
  }
}
/* Bootstrap がっつりめにオーバーライド */
.ec-productQa__item.accordion-item {
  background: #F7F7F7;
  border-radius: 0.625rem;
  border: none;
}
.ec-productQa__item.accordion-item:not(:last-child) {
  margin-bottom: 1.875rem;
}
.ec-productQa__q__inner.accordion-button {
  color: #009991;
  font-size: 1.5rem;
  line-height: 1.25em;
  font-weight: 600;
  position: relative;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 1.9rem 2.5rem 1.9rem 1.9rem;
  align-items: stretch;
}
.ec-productQa__q__inner.accordion-button:before {
  content: "Q.";
  display: flex;
  align-items: flex-start;
  font-size: 1.25em;
  width: 1.5em;
  margin-right: 0.7em;
}
.ec-productQa__q__inner.accordion-button:after {
  display: none;
}
.ec-productQa__q__inner.accordion-button .-txt {
  flex: 1;
  padding-right: 1rem;
}
.ec-productQa__q__inner.accordion-button .-icon {
  display: block;
  width: 0.75em;
  height: 0.75em;
  position: relative;
}
.ec-productQa__q__inner.accordion-button .-icon:before, .ec-productQa__q__inner.accordion-button .-icon:after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  position: absolute;
  border: 1px solid #000;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  transition: ease opacity 0.3s;
}
.ec-productQa__q__inner.accordion-button .-icon:before {
  transform: rotate(90deg);
}
.ec-productQa__q__inner.accordion-button:not(.collapsed) .-icon:before {
  opacity: 0;
}
.ec-productQa__a__inner {
  font-size: 1.125rem;
  display: flex;
  align-items: flex-start;
  line-height: 2.25em;
  padding: 0.5rem 1.9rem 1.9rem;
}
.ec-productQa__a__inner:before {
  content: "A.";
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 1.875em;
  width: 1.5em;
  margin-right: 0.7em;
  font-weight: 600;
}
.ec-productQa__a__inner .-txt {
  flex: 1;
}
@media (max-width: 991px) {
  .ec-productQa__a__inner {
    font-size: clamp(1rem, 1.82vw, 1.125rem);
  }
}
@media (max-width: 767px) {
  .ec-productQa__q__inner.accordion-button {
    padding: 1.25rem;
    font-size: 1.125rem;
  }
  .ec-productQa__q__inner.accordion-button:before {
    font-size: 1.33em;
    margin-right: 0;
  }
  .ec-productQa__q__inner.accordion-button .-icon {
    width: 1em;
    height: 1em;
  }
  .ec-productQa__a__inner {
    padding: 0.5rem 1.25rem 1.25rem;
    font-size: 1rem;
    line-height: 1.875em;
    text-align: justify;
    letter-spacing: 0;
  }
  .ec-productQa__a__inner:before {
    font-size: 1.5rem;
    margin-right: 0;
  }
}
/* ==========================================
  Voice
========================================== */
.ec-voiceRole {
    position: relative;
}

.ec-voiceRole__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 0;
    background: #fff;
    border-radius: 0.5rem;
    padding: 2rem 2rem 2.5rem;
}

.ec-voiceRole__item {
}

.ec-voiceRole__item:not(:last-child) {
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #f1f1f1;
}

.ec-voiceRole__item__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ec-voiceRole__thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: none;
}

.ec-voiceRole__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-voiceRole__right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ec-voiceRole__star {

    margin: 0.3rem 0 0.75rem;
}

.ec-voiceRole__star__score {
    color: #e4e4e4;
    position: relative;
    letter-spacing: 0;
    font-size: 0.9375rem;
}

.ec-voiceRole__star__score:before {
  content: "★★★★★";
  display: block;
  position: absolute;
  color:#FFBA00;
	width: 5em;
	overflow:hidden;
	white-space:nowrap;
  pointer-events: none;
}
.ec-voiceRole__star__score.-score45:before { width: 4.5em; }
.ec-voiceRole__star__score.-score40:before { width: 4em; }
.ec-voiceRole__star__score.-score35:before { width: 3.5em; }
.ec-voiceRole__star__score.-score30:before { width: 3em; }
.ec-voiceRole__star__score.-score25:before { width: 2.5em; }
.ec-voiceRole__star__score.-score20:before { width: 2em; }
.ec-voiceRole__star__score.-score15:before { width: 1.5em; }
.ec-voiceRole__star__score.-score10:before { width: 1em; }
.ec-voiceRole__star__score.-score05:before { width: 0.5em; }
.ec-voiceRole__star__score.-score00:before { width: 0em; }

.ec-voiceRole__ttl__outer {
    /* display: flex;
    align-items: flex-start; */
    font-size: 1.25rem;
    line-height: 1.8rem;
}
.ec-voiceRole__ttl {
    font-weight: 600;
    color: #000;
    font-size: 1em;
    flex: 1;
    line-height: inherit;
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; */
}

.ec-voiceRole__ttl a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.ec-voiceRole__user {
  font-size: 0.7em;
  /* width: 10.5em; */
  line-height: inherit;
}

.ec-voiceRole__txt {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.75;
    color: #333;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    position: relative;
}

.ec-voiceRole__txt:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5em;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.ec-voiceRole__txt.collapsed {
    /* max-height: 5.25em; */
    overflow: hidden;
    position: relative;
}

.ec-voiceRole__txt.open {
  display: block;
  -webkit-line-clamp: unset;
}

.ec-voiceRole__txt.open:after {
  display: none;
}

.ec-voiceRolre__more {
  letter-spacing: 0;
  font-size: 0.9375rem;
  color: #009991;
  font-weight: 600;
  background: none;
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  padding: 0.5rem 0;
}
.ec-voiceRolre__more:before {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(50% 100%,100% 0,0 0);
  background: #009991;
  margin-right: 0.5em;
}
.ec-voiceRolre__more.open:before {
  scale: 1 -1;
}

.ec-voiceRolre__more__outer {
  display: flex;
  justify-content: center;
}

.ec-voiceRole__spMore {
    width: 100%;
    text-align: center;
    border: 1px solid #333;
    display: block;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #009991;
    margin-top: 0.625rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.ec-voiceRole__spMore:hover {
    background: #009991;
    color: #fff;
    border-color: #009991;
}

.ec-voiceRole__loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Owl Carousel ナビゲーション矢印 */
.ec-voiceRole .owl-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

.ec-voiceRole .owl-nav button {
    position: absolute;
    background: #fff;
    border: 2px solid #009991;
    color: #009991;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    outline: none;
}

.ec-voiceRole .owl-nav button:hover {
    background: #009991;
    color: #fff;
}

.ec-voiceRole .owl-nav .owl-prev {
    left: -50px;
}

.ec-voiceRole .owl-nav .owl-next {
    right: -50px;
}

.ec-voiceRole .owl-nav button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ec-voiceSummary {
  background: #fff;
  border-radius: 0.625rem;
  margin-bottom: 1.875rem;
}
.ec-voiceSummary__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 3.2%;
  padding: 1rem 0;
  min-height: 5rem;
}
.ec-voiceSummary__txt {
  color: #000;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
}
.ec-voiceSummary__txt .-count {
  color: #009991;
  font-size: 1.5em;
}
.ec-voiceSummary__score {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #000;
  display: flex;
  letter-spacing: 0;
  align-items: center;
}
.ec-voiceSummary__score__star {
  color: #e4e4e4;
  font-size: 1.25em;
  position: relative;
  margin-right: 0.75em;
}
.ec-voiceSummary__score__star:before {
  content: "★★★★★";
  display: block;
  position: absolute;
  color:#FFBA00;
	width: 5em;
	overflow:hidden;
	white-space:nowrap;
  pointer-events: none;
}
.ec-voiceSummary__score__star.-score45:before { width: 4.5em; }
.ec-voiceSummary__score__star.-score40:before { width: 4em; }
.ec-voiceSummary__score__star.-score35:before { width: 3.5em; }
.ec-voiceSummary__score__star.-score30:before { width: 3em; }
.ec-voiceSummary__score__star.-score25:before { width: 2.5em; }
.ec-voiceSummary__score__star.-score20:before { width: 2em; }
.ec-voiceSummary__score__star.-score15:before { width: 1.5em; }
.ec-voiceSummary__score__star.-score10:before { width: 1em; }
.ec-voiceSummary__score__star.-score05:before { width: 0.5em; }
.ec-voiceSummary__score__star.-score00:before { width: 0em; }

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .ec-voiceRole .owl-nav .owl-prev {
        left: 10px;
    }
    
    .ec-voiceRole .owl-nav .owl-next {
        right: 10px;
    }
}

@media (max-width: 991px) {
    .ec-voiceRole__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ec-voiceRole .owl-nav {
      top: 0;
      bottom: 0;
      margin: auto;
      transform: none;
    }
    .ec-voiceRole__list {
      grid-template-columns: 1fr;
      padding: 0;
      background: none;
    }

    .ec-voiceRole__item {
      background: #fff;
      border-radius: 0.625rem;
      padding: 1.875rem 1.25rem 1.5625rem;
    }
    
    .section-voice {
      padding: 2.5rem 0;
    }

  .ec-voiceSummary {
    border-radius: 0.5rem;
    margin-bottom: 0.9375rem;
  }
  .ec-voiceSummary__inner {
    padding: 0.625rem 0;
    gap: 0.1875rem 0;
    min-height: auto;
    flex-wrap: wrap;
  }
  .ec-voiceSummary__txt {
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }
  
  .ec-voiceRole__ttl__outer {
    flex-wrap: wrap;
    font-size: 1.125rem;
    
  }
  .ec-voiceRole__ttl {
    width: 100%;
    flex: auto;
    margin-bottom: 0.25em;
    line-height: 1.5;
  }

  .ec-voiceRole__ttl a {
    display: block;
  }

  .ec-voiceRole__user {
    font-size: 0.88em;
    /* font-weight: 600; */
    width: 10.5em;
  }

  .ec-voiceRole__txt {
    font-size: 1rem;
    -webkit-line-clamp: 4;
  }
}

.ec-voiceRole__more {
  letter-spacing: 0;
  font-size: 0.9375rem;
  color: #009991;
  font-weight: 600;
  margin-top: 1rem;
}
.ec-voiceRole__more a {
  color: inherit;
  text-decoration: underline;
}
.ec-voiceRole .owl-carousel .owl-nav button.owl-next,
.ec-voiceRole .owl-carousel .owl-nav button.owl-prev {
  font-size: 1.5rem;
}
.ec-voiceRole .owl-carousel .owl-nav button.owl-next {
  right: -1.2rem;
}
.ec-voiceRole .owl-carousel .owl-nav button.owl-prev {
  left: -1.2rem;
}

/* ==========================================
  Lists Products
========================================== */
.ec-list-ttl {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
  text-shadow: 0 0 0.5em rgb(0, 0, 0);
}
.ec-list-ttl__outer {
  background: url("../img/list/bg_ttl_pc.png") no-repeat;
  background-size: cover;
  margin-bottom: 1.875rem;
  min-height: 15.625rem;
  padding: 2rem 2rem;
  display: grid;
  place-content: center;
  border-radius: 0.625rem;
}
.ec-list-ttl__outer--hb101 { background: url("../img/list/bg_ttl_hb101.png") no-repeat; }
.ec-list-ttl__outer--nioinonno { background: url("../img/list/bg_ttl_nioinonno.png") no-repeat center / cover; }
.ec-list-ttl__outer--haricare { background: url("../img/list/bg_ttl_haricare.png") no-repeat center / cover; }
.ec-list-ttl__outer--cosmetics { background: url("../img/list/bg_ttl_cosmetics.png") no-repeat left / cover; }
.ec-list-ttl__outer--helth { background: url("../img/list/bg_ttl_helth.png") no-repeat center / cover; }
.ec-list-ttl__outer--drink { background: url("../img/list/bg_ttl_helth.png") no-repeat center / cover; }
.ec-list-ttl__outer--bath { background: url("../img/list/bg_ttl_bath.png") no-repeat center / cover; }
.ec-list-ttl__outer--noiwandaful { background: url("../img/list/bg_ttl_noiwandaful.png") no-repeat left / cover; }

@media (max-width: 767px) {
  .ec-list-ttl {
    font-size: clamp(1.25rem, 5.3vw, 1.5rem);
  }
  .ec-list-ttl__outer {
    min-height: 9.375rem;
    padding: 2rem 1rem;
    width: calc(100% + 1.5rem);
    border-radius: 0;
    margin-left: -0.75rem;
    margin-bottom: 1.625rem;
  }
}
.ec-listsProducts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(2.6vw, 1.875rem);
}
@media (max-width: 991px) {
  .ec-listsProducts__list {
    gap: 2vw;
  }
}
@media (max-width: 767px) {
  .ec-listsProducts__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem min(2.6vw, 0.9375rem);
  }
}
@media (max-width: 600px) {
  .ec-listsProducts__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .ec-listsProducts .owl-carousel .owl-nav button {
    translate: 0 -4vw;
    font-size: 9vw;
  }
  .ec-listsProducts .owl-carousel .owl-nav button.owl-prev {
    left: -10px;
  }
  .ec-listsProducts .owl-carousel .owl-nav button.owl-next {
    right: -10px;
  }
}

/* ==========================================
  Our Products Tab
========================================== */
.our-products-tab {
  padding: 3.75rem 0;
}




/* ==========================================
  商品詳細 CSSカスタム
========================================== */

.ec-productRole .ec-productRole__btn {
  display: flex;
  justify-content: center;
  width: 100%;
}
.ec-blockBtn--favorite {
  min-width: 250px !important;
}
.ec-sliderItemRole .slick-slider {
  margin-bottom: 0.625rem;
  overflow: hidden;
}
.ec-sliderItemRole .item_visual {
  opacity: 0;
  transition: ease opacity 0.3s;
}
.ec-sliderItemRole .item_visual.slick-initialized {
  opacity: 1;
}
.ec-productRole .ec-productRole__profile {
  margin-left: 0;
}
.ec-productRole__description--02 {
  margin-top: 1.5625rem;
}
@media (max-width: 767px) {
  .ec-productRole {
    padding: 0 10px;
  }
  .ec-productRole .ec-productRole__profile {
    /* padding-top: 1.25rem; */
    padding-top: 0.35rem;
  }
  .ec-sliderItemRole {
    padding: 0;
  }
  .ec-NavTabs1 .nav-link {
    letter-spacing: 0;
  }
}

/* 商品タイトルのスタイル */
.ec-productRole .ec-productRole__title .ec-headingTitle {
    font-weight: bold;
    color: #000;
}

/* 数量選択UI - 静的データ準拠 */
.ec-productSelect__inputNum {
    margin: 0 0 1.5rem;
}

.ec-productSelect__inputNum__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
}

.ec-productSelect__inputNum__field {
    display: flex;
    align-items: center;
    border: 2px solid #E5E5E5;
    border-radius: 0.5rem;
    overflow: hidden;
    width: fit-content;
}

.ec-productSelect__inputNum__field .-btn-field {
    background: #F8F8F8;
    border: none;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-productSelect__inputNum__field .-btn-field:hover {
    background: #009991;
    color: #fff;
}

.ec-productSelect__inputNum__field .-btn-field:disabled {
    background: #F0F0F0;
    color: #CCC;
    cursor: not-allowed;
}

.ec-productSelect__inputNum__field .js-prod-volume {
    border: none;
    width: 5rem;
    height: 3rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    -moz-appearance: textfield;
}

.ec-productSelect__inputNum__field .js-prod-volume::-webkit-outer-spin-button,
.ec-productSelect__inputNum__field .js-prod-volume::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ec-productSelect__inputNum__field .js-prod-volume:focus {
    outline: none;
    background: #F9F9F9;
}

.ec-productSelect__inputNum__txt {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
    /* 数量選択パーツを中央寄せ */
    .ec-productSelect__inputNum {
        text-align: center;
        /* margin-top: 0.5rem; */
        margin: 0 0 1rem;
    }
    
    .ec-productSelect__inputNum__inner {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    
    .ec-productSelect__inputNum__field {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .ec-productSelect__inputNum__field .js-prod-volume {
        flex: 1;
        width: auto;
    }
    
    .ec-productSelect__inputNum__txt {
        text-align: center;
    }
    
    /* お気に入りボタンをスマホ時中央寄せ */
    .ec-productRole__btn {
        text-align: center;
    }
    
    .ec-productRole__btn button {
        margin: 0 auto;
    }
}

/* KikakuLayoutプラグイン使用時も数量選択を表示 */
#kikaku_layout_area ~ .ec-productSelect__inputNum,
.ec-productSelect__inputNum {
    display: block !important;
    visibility: visible !important;
}

.ec-productSelect__inputNum * {
    visibility: visible !important;
}

/* 商品コードと関連カテゴリを非表示 */
.ec-productRole__code,
.ec-productRole__category {
    display: none;
}

/* 商品タグを非表示 */
/* ul.ec-productRole__tags {
    display: none !important;
} */

/* 価格表示のスタイル修正 */
.ec-productSelect__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ec-productSelect__price__left {
    font-size: 1rem;
    color: #333;
    font-weight: normal;
}

.ec-productSelect__price__right {
    font-size: 1.5rem;
    color: #009991;
    font-weight: bold;
}

.ec-productSelect__price__right .-tax {
    font-size: 0.875rem;
    color: #666;
    font-weight: normal;
    margin-left: 0.25rem;
}


/* 商品タグのスタイル調整 */
.ec-productRole .ec-productRole__tags {
    margin-top: 16px;
    padding: 0;
    padding-bottom: 16px;
    border-bottom: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
}
@media (max-width: 767px) {
    .ec-productRole .ec-productRole__tags {
        padding-bottom: 1.375rem;
    }
}


/* 商品価格のスタイル調整 */
.ec-productRole .ec-productRole__price {
    color: #333;
    font-size: 28px;
    padding: 0;
    border-bottom: 0;
}

.ec-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.ec-price__label {
    font-size: 1rem;
    color: #000;
    font-weight: normal;
}

.ec-price__price {
    font-size: 1.75rem;
    color: #000;
    font-weight: bold;
}

span.ec-price__price.price02-default {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: -0.06rem;
}

.ec-price {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.ec-sliderItemRole {
    margin-bottom: 0;
}

.ec-sliderItemRole .slick-slider {
    margin-bottom: 0;
}

.slideThumb {
    /* margin: 2rem 0px 0 !important; */
}

.ec-price__tax {
    font-size: 0.875rem;
    color: #000;
    font-weight: normal;
}

/* サムネイルナビゲーションを表示 */
.ec-sliderItemRole .item_nav {
  display: flex !important;
  flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
    opacity: 0;
    transition: ease opacity 0.3s;
  }
.ec-sliderItemRole .item_nav.slick-initialized {
  opacity: 1;
}
.ec-sliderItemRole .item_nav .slick-list {
  width: 100%;

}
.ec-sliderItemRole .item_nav .slick-track {
  display: flex !important;
  min-width: 100%;
}
.ec-sliderItemRole .item_nav .slick-slide {
  height: auto !important;
}
.ec-sliderItemRole .item_nav .slick-prev,
.ec-sliderItemRole .item_nav .slick-next {
  color: #000;
}
.ec-sliderItemRole .item_nav .slick-prev {
  left: 0;
  scale: -1 1;
}
.ec-sliderItemRole .item_nav .slick-next {
  right: 0;
}
.ec-sliderItemRole .item_nav .slick-prev:before,
.ec-sliderItemRole .item_nav .slick-next:before {
  content: "";
  height: 1rem;
  aspect-ratio: cos(30deg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #333;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* サムネイル画像のホバー・アクティブスタイル */
.item_nav .slideThumb {
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
    width: calc(20% - 8px);
    margin-bottom: 0;
}

.item_nav .slideThumb:hover,
.item_nav .slideThumb.active {
    opacity: 1;
    border-color: #009991;
}

.item_nav .slideThumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* Slick カルーセル化した時のスタイル */
.item_nav.slick-slider {
    padding: 0 1.5rem;
}

.item_nav.slick-slider .slick-slide {
  padding: 0 0.1875rem;
}
.item_nav.slick-slider .slideThumb {
    /* width: auto; */
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    display: block;
}

/* KikakuLayoutプラグインのPCレイアウト */
@media (min-width: 769px) {
    .kikaku-product-item {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .kikaku-product-item__info {
        display: flex !important;
        flex: 1;
        gap: 1rem;
        align-items: center;
    }
    
    .kikaku-product-item__image {
        flex: 0 0 100px;
        width: 100px;
    }
    
    .kikaku-product-item__image img {
        width: 100%;
        height: auto;
    }
    
    .kikaku-product-item__details {
        flex: 1;
        display: block;
        align-items: center;
        /* gap: 1rem; */
    }
    
    .kikaku-product-item__name {
        font-size: 1rem;
        margin: 0;
    }
    
    .kikaku-product-item__price {
        font-size: 1.25rem;
        font-weight: bold;
        color: #e95520;
        margin: 0;
    }
    
    .kikaku-product-item__action {
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    .kikaku-cart-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.6rem 1.5rem;
        background: #009991;
        color: #fff;
        border: none;
        border-radius: 0.25rem;
        font-size: 1rem;
        white-space: nowrap;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .kikaku-cart-btn img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
    }
    
    .kikaku-cart-btn:hover {
        background: #007a74;
    }
}

/* KikakuLayoutプラグインのSPレイアウト調整 */
@media (max-width: 768px) {
    span.ec-price__tax {
        white-space: nowrap;
    }
    
    span.ec-price__label {
        white-space: nowrap;
    }
    
    span.ec-price__price.price02-default {
        font-weight: bold;
        font-size: 1.25rem;
        max-width: 230px;
        white-space: nowrap;
    }
    
    .ec-productRole .ec-productRole__price {
        color: #333;
        font-size: 28px;
        padding: 0;
        border-bottom: 0;
        justify-self: center;
    }
    
    /* KikakuLayout SPレイアウト - 容量カード形式 */
    .kikaku-product-list {
        display: block !important;
    }
    
    .kikaku-product-item {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        margin-bottom: 1rem;
        background: #fff;
    }
    
    .kikaku-product-item__info {
        display: flex !important;
        flex: 1;
        align-items: center;
        gap: 1rem;
    }
    
    .kikaku-product-item__image {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }
    
    .kikaku-product-item__image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .kikaku-product-item__details {
        flex: 1;
        display: flex !important;
        flex-direction: column;
        /* gap: 0.5rem; */
    }
    
    .kikaku-product-item__name {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    
    .kikaku-product-item__price {
        font-size: 1rem;
        font-weight: bold;
        color: #e95520;
        margin-bottom: 0.75rem;
    }
    
    /* actionをdetailsの中に移動 */
    .kikaku-product-item__action {
        /* margin-top: 0.5rem; */
    }
    
    .kikaku-product-item__details .kikaku-product-item__action {
        display: block !important;
    }
    
    .kikaku-cart-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: #009991;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        white-space: nowrap;
        cursor: pointer;
        width: 100%;
    }
    
    .kikaku-cart-btn img {
        width: 16px;
        height: 16px;
        filter: brightness(0) invert(1);
    }
    
    .kikaku-cart-btn:hover {
        background: #007a74;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .ec-sliderItemRole .item_nav {
        display: none !important;
        /* margin-top: 70px; */
    }
    
    .item_nav .slideThumb {
        width: calc(25% - 7.5px);
    }
    
    /* SP用スライダースタイル */
    .item_visual.slick-slider {
      margin-bottom: 0;

    }
    .item_nav.slick-slider {
        padding: 0 40px;
        margin-top: 3rem;
    }

    
}

/* 規格選択エリアのスタイル */
fieldset#kikaku_layout_area {
    border-radius: 0.625rem;
    background: #F7F7F7;
    padding: 1.875rem;
}

.ec-productRole .ec-productRole__actions {
    padding: 0;
}

/* カートに入れるボタン - 静的データ準拠 */
.-action {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 会員プログラム・キャンペーンボタン */
.ec-productPhotos__description__btns {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.ec-productPhotos__description__btns__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #009991;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #009991;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s;
    background: #fff;
}

.ec-productPhotos__description__btns__item.--white {
    background: #fff;
}

.ec-productPhotos__description__btns__item:hover {
    background: #009991;
    color: #fff;
    text-decoration: none;
}

.ec-productPhotos__description__btns__item:hover .-icon svg path {
    fill: #fff;
}

.ec-productPhotos__description__btns__item .-icon {
    margin-bottom: 0.5rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .ec-productPhotos__description__btns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* 会員プログラム・キャンペーンボタン用（横並び） */
.ec-productPhotos__description__btns .btn-style7 {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    padding: 1rem;
    margin: 0;
    flex: 1;
}

.item_visual .slick-arrow {
    background: rgba(255,255,255,0.7) !important;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    font-size: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: -0.75em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0.3em !important;
    align-items: center;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.4);
}
.item_visual .slick-arrow.slick-prev {
    right: auto;
    left: -0.75em;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 0 !important;
    padding-right: 0.3em !important;
}

.item_visual .slick-arrow:before {
    content: "";
    height: 1rem;
    aspect-ratio: cos(30deg);
    clip-path: polygon(0 0,100% 50%,0 100%);
    background: #333;
    position: absolute;
    left: 0.4em;
}

.item_visual .slick-arrow.slick-prev {
    scale: -1 1;
    z-index: 1;
}

/* 元のフォーム要素を非表示（数量選択は除外） */
.ec-productRole__profile form#form1 label,
.ec-productRole__profile form#form1 select,
.ec-productRole__profile button.add-cart {
  display: none;
}

/* 数量選択フィールドは表示 */
#kikaku_layout_area form#form1 .ec-productSelect__inputNum {
  display: block !important;
}

/* 静的データ準拠のスタイル */
#kikaku_layout_area .kikaku-product-list {
  margin-top: 0.5rem;
}

#kikaku_layout_area .kikaku-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  /* margin-bottom: 1rem; */
  background: none;
  border: none;
  border-radius: 0.5rem;
}

#kikaku_layout_area .kikaku-product-item__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#kikaku_layout_area .kikaku-product-item__image {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

#kikaku_layout_area .kikaku-product-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#kikaku_layout_area .kikaku-product-item__details {
  flex-grow: 1;
}

#kikaku_layout_area .kikaku-product-item__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  line-height: 1.2;
}

#kikaku_layout_area .kikaku-product-item__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #006560;
}

#kikaku_layout_area .kikaku-product-item__action {
  flex-shrink: 0;
}

/* カートボタン - 静的データ準拠 */
#kikaku_layout_area .kikaku-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #009991;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

#kikaku_layout_area .kikaku-cart-btn:hover {
  background: #f5ab1e;
  transform: none;
  box-shadow: none;
}

#kikaku_layout_area .kikaku-cart-btn img {
  width: 1.25rem;
  height: 1.25rem;
  filter: brightness(0) invert(1);
}

#kikaku_layout_area .kikaku-cart-btn--disabled {
  padding: 0.75rem 1.5rem;
  background: #e8e8e8;
  color: #999;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: not-allowed;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  #kikaku_layout_area .kikaku-product-item {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0.9rem 0.7rem;
    margin-bottom: 0;
  }
  
  #kikaku_layout_area .kikaku-product-item__action {
    /* width: 100%; */
  }
  
  #kikaku_layout_area .kikaku-cart-btn {
    width: 100%;
    padding: 0.9rem 0.5rem;
  }

  #kikaku_layout_area .kikaku-product-item__name {
    font-size: 1rem;
  }

  #kikaku_layout_area .kikaku-product-item__image {
    flex: 0 0 33%;
    max-width: 140px;
  }
  #kikaku_layout_area .kikaku-product-item__price {
    margin-bottom: 0.3rem;
    font-size: 1.125rem;
  }
}

/* ====================================
   お気に入りボタン
==================================== */
.ec-blockBtn--favorite {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background-color: #EBF8F7 !important;
    color: #009B90 !important;
    border: 2px solid #B2D5D1 !important;
    border-radius: 25px !important;
    padding: 10px 30px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    text-decoration: none !important;
    transition: all 0.3s;
    cursor: pointer;
    min-width: 200px !important;
    height: 50px !important;
    width: auto !important;
    line-height: normal !important;
}

.ec-blockBtn--favorite:hover {
    background-color: #D4EFEC !important;
    border-color: #9AC4BF !important;
    color: #009B90 !important;
    text-decoration: none !important;
}

/* 登録済み状態 */
.ec-blockBtn--favorite.registered {
    background-color: #B2D5D1 !important;
    border-color: #9AC4BF !important;
    color: #009B90 !important;
}

.ec-blockBtn--favorite.registered:hover {
    background-color: #9AC4BF !important;
    border-color: #88B5AF !important;
    color: #009B90 !important;
}

.ec-blockBtn--favorite[disabled] {
    cursor: not-allowed !important;
    opacity: 0.65 !important;
}

.ec-blockBtn--favorite[disabled]:hover {
    background-color: #B2D5D1 !important;
    border-color: #9AC4BF !important;
}

/* ==============================
HG-101ページ用
============================== */
.ecHg101-history__item {
  font-size: 1rem;
  padding-top: 3.125rem;
  margin-bottom: 3.125rem;
}
ecHg101-history__item:last-child {
  margin-bottom: 0;
}
.ecHg101-history__item__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(90deg, #ffffff 0, #ffffff 3.125rem, #F0F2D8 3.125rem);
  padding-right: 1.25rem;
}
.ecHg101-history__item__inner--even {
  flex-flow: row-reverse;
  background: linear-gradient(-90deg, #ffffff 0, #ffffff 3.125rem, #F0F2D8 3.125rem);
  padding-left: 1.25rem;
  padding-right: 0;
}
.ecHg101-history__pic {
  margin-top: -3.125rem;
  width: min(49%, 37.5rem);
}
.ecHg101-history__cont {
  width: min(48%, 36.875rem);
  padding-top: 1.5625rem;
  padding-bottom: 1.875rem;
}
.ecHg101-history__ttl {
  color: #000;
  font-size: 1.875rem;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
  margin-bottom: 0.5rem;
}
.ecHg101-history__ttl .-label {
  color: #fff;
}
.ecHg101-history__subttl {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.8;
}
.ecHg101-history__txt {
  font-size: 1rem;
  line-height: 2.25;
}
@media (max-width: 1199px) {
  .ecHg101-history__ttl {
    font-size: clamp(1.5rem, 2.51vw, 1.875rem);
  }
  .ecHg101-history__subttl {
    font-size: clamp(1.125rem, 1.67vw, 1.25rem);
  }
}
@media (max-width: 991px) {
  .ecHg101-history__pic {
  width: min(40%, 37.5rem);
  }
  .ecHg101-history__cont {
    width: min(56%, 36.875rem);
  }
}
@media (max-width: 767px) {
  .ecHg101-history__item {
    margin-bottom: 2.5rem;
  }
  .ecHg101-history__item:last-child {
    margin-bottom: 0;
  }
  .ecHg101-history__item__inner {
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: #F0F2D8;
    padding: 0;
  }
  .ecHg101-history__item__inner--even {
    justify-content: flex-start;
  }
  .ecHg101-history__pic {
    width: calc(100% - (0.5rem * 2));
  }
  .ecHg101-history__cont {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1.25rem;
  }
  .ecHg101-history__ttl {
    padding-left: calc(0.5rem * 2);
    padding-right: calc(0.5rem * 2);
  }
  .ecHg101-history__ttl .-label {
  }
  .ecHg101-history__subttl {
    padding-left: calc(0.5rem * 2);
    padding-right: calc(0.5rem * 2);
  }
  .ecHg101-history__txt {
    padding-left: calc(0.5rem * 2);
    padding-right: calc(0.5rem * 2);
  }
}

/* ==========================================
  商品詳細 決済一覧
========================================== */
.ec-paymentList {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 1.6%;
}
.ec-paymentList__outer {
}
.ec-paymentList__item {
}
.ec-paymentList__btn {
  color: #000;
  background: #F7F7F7;
  border: 2px solid #E4E4E4;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3125;
  border-radius: 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  width: 100%;
  padding: 0.25em 0.3em;
  min-height: 3.75rem;
  text-align: left;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
.ec-paymentList__btn--amazon {
  /* background: #EBF8F7;
  border-color: #009991;   */
}
.ec-paymentList__btnIcon {
  width: min(16%, 1.875rem);
}
.ec-paymentList__btnIcon--app {
  width: min(11%, 1.3125rem);
}
.ec-paymentList__btnIcon--amazon {
  width: min(55%, 6.375rem);
}
.ec-paymentList__btnIcon img {
  height: auto;
}
.ec-paymentList__btnTxt {
  font-size: clamp(0.875em, 1.23vw, 1em);
}
.ec-paymentList__toolChip {
  border: 1px solid #009991;
  border-radius: 0.1875rem;
  box-shadow: 0 0.1875rem 0.1875rem rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 0;
  right: 0;
  background: #fff;
  padding: 0.5rem 0.75rem;
}
.ec-paymentList__toolChip:before,
.ec-paymentList__toolChip:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  rotate: 45deg;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
  transform-origin: right;
}
.ec-paymentList__toolChip:before {
  background: #fff;
  z-index: 1;
}
.ec-paymentList__toolChip:after {
  border: 1px solid #009991;
  border-left: transparent;
  border-top: transparent;
  z-index: 2;
}
.ec-paymentList__toolChip--left:before,
.ec-paymentList__toolChip--left:after {
  left: calc((100% / 6) - 0.5rem);
  right: auto;
  margin: 0;
}
.ec-paymentList__toolChip--right:before,
.ec-paymentList__toolChip--right:after {
  left: auto;
  right: calc((100% / 6) - 0.5rem);
  margin: 0;
}
.ec-paymentList__toolChip__txt {
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}
.ec-paymentList__toolChip__icons {
  display: flex;
  gap: 0.625rem;
}
.ec-paymentList__toolChip__icons .-item {
  /* flex: 1; */
}
.ec-paymentList__toolChip__icons .-item img {
  max-width: 100%;
  height: auto;
}
.ec-paymentList__toolChip__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  color: #fff;
  font-size: 1rem;
  width: 1.5em;
  height: 1.5em;
  background: #009991;
  border-radius: 100em;
  visibility: hidden;
}
.ec-paymentList__toolChip__amazon {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.1rem 0;
}
.ec-paymentList__toolChip__amazon__left {
  font-size: 0.875rem;
  max-width: 16em;
  width: 36%;
  text-align: center;
  /* display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center; */
}
.ec-paymentList__toolChip__amazon__right {
  flex: 1;
}
.ec-paymentList__toolChip__amazon__txt {
  font-size: inherit;
  line-height: 1.2;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0;
  margin-bottom: 0.3em;
}
.ec-paymentList__toolChip__amazon__logo {
  max-width: 100% !important;
  width: auto !important;
}
.ec-paymentList__txtLink {
  color: #009991;
  font-weight: 600;
  margin-top: 0.5rem;
}
.ec-paymentList__txtLink .-link {
  color: inherit;
  text-decoration: underline;
}
.ec-productBanner {
  margin-top: 2.1875rem;
}
.ec-productBanner__item a {
  display: block;
}
@media (max-width: 991px) {
  .ec-paymentList {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-paymentList__toolChip--left:before,
  .ec-paymentList__toolChip--left:after,
  .ec-paymentList__toolChip--right:before,
  .ec-paymentList__toolChip--right:after {
    left: calc((100% / 4) - 0.5rem);
    right: auto;
    margin: 0;
  }
  .ec-paymentList__toolChip--center:before,
  .ec-paymentList__toolChip--center:after {
    left: auto;
    right: calc((100% / 4) - 0.5rem);
    margin: 0;
  }
  .ec-paymentList__toolChip--right {
    bottom: calc(50% + 1rem);
  }
}
@media (max-width: 767px) {
  .ec-paymentList {
    display: block;
  }
  .ec-paymentList__outer {
  }
  .ec-paymentList__item {
    position: relative;
  }
  .ec-paymentList__item + .ec-paymentList__item {
    margin-top: 0.625rem;
  }
  .ec-paymentList__btn {
  }
  .ec-paymentList__btnIcon {
  }
  .ec-paymentList__btnTxt {
    font-size: 1em;
  }
  .ec-paymentList__toolChip {
    bottom: calc(100% + 0.3125rem);
  }
  .ec-paymentList__toolChip:before,
  .ec-paymentList__toolChip:after {
    display: none;
  }
  .ec-paymentList__toolChip:before {
  }
  .ec-paymentList__toolChip:after {
  }
  .ec-paymentList__toolChip--left:before,
  .ec-paymentList__toolChip--left:after {
  }
  .ec-paymentList__toolChip--right:before,
  .ec-paymentList__toolChip--right:after {
  }
  .ec-paymentList__toolChip__txt {
  }
  .ec-paymentList__toolChip__icons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .ec-paymentList__toolChip__icons .-item {
    width: auto;
    height: 1.625rem;
    flex: 0;
  }
  .ec-paymentList__toolChip__icons .-item img {
    height: 100%;
    width: auto;
    max-width: none;
  }
  .ec-paymentList__txtLink {
    text-align: right;
    font-size: 0.9375rem;
  }
  .ec-paymentList__txtLink .-link {
  }
  .ec-productBanner {
    margin-top: 2.5rem;
  }
  .ec-productBanner__item a {
    display: block;
  }
  .ec-paymentList__toolChip__close {
    visibility: visible;
  }
}
@media (max-width: 600px) {
  .ec-paymentList__toolChip__amazon {
    flex-flow: column;
    gap: 0.5rem;
  }
  .ec-paymentList__toolChip__amazon__left {
    width: 100%;
  }
  .ec-paymentList__toolChip__amazon__logo {
    width: 7.5rem !important;
  }
}


/* ==========================================
  ヘルプ・ご利用ガイド
========================================== */
.ec-faqSide .member {
    width: 100%;
    text-align: center;
    padding: 1.875rem 6% 1.875rem;
    margin-bottom: 10px;
    background: #f7f0e4;
}
.ec-faqSide .member-title {
  padding: 0 10px;
  margin: 0 auto;
}
.ec-faqSide .member-title img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.ec-faqSide .new-member {
    margin: 1.25rem 0;
    padding-bottom: 1rem;
    border-bottom: dashed 1px #a49c94;
}
.ec-faqSide .side-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
    font-size: 1.25rem;
    letter-spacing: 0;
    font-feature-settings: "palt";
    border-radius: 0.25em;
    padding: 0.5em 0;
}
.ec-faqSide .first-member {
    display: inline-block;
    text-decoration: underline;
    font-size: 0.875rem;
    color: #174800;
    margin-top: 10px;
}
.ec-faqSide .add-member {
    background: #c60c0c;
}
.ec-faqSide .add-member:hover {
    opacity: 0.8;
}
.ec-faqSide .yet-member {
}
.ec-faqSide .yet-member:hover {
    opacity: 0.8;
}
.ec-faqSide .login-member {
    background: #df7900;
}
.ec-faqSide .login-member.side-button {
}
@media (max-width: 767px) {
  .ec-faqSide .member {
    width: min(100%, 500px);
    margin: 0 auto 2rem;
  }
}

/* ----------------------------------- */
/* タブカスタムスタイル */
/* ----------------------------------- */

/* =============================== */
/* ニオイノンノ Start */
.p-nonno140-container {
  width: min(100%, 920px);
  margin: auto;
}
.p-nonno140-dilution {
  color: #f02727;
  font-size: 5rem;
  line-height: 1em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝B", serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.25rem;
}
.p-nonno140-dilution__inner {
  background: linear-gradient(transparent 0%, transparent 60%, #ff0 60%, #ff0 90%, transparent 90%) !important;
  line-height: inherit;
}
.p-nonno140-dilution .-small {
  font-size: 0.6em;
  line-height: inherit;
}
.p-nonno140-step {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.p-nonno140-step__item {
  text-align: center;
  padding-right: 5.5rem;
}
.p-nonno140-step__item:last-child {
  padding-right: 0;
}
.p-nonno140-step__img {
  margin-bottom: 1rem;
  position: relative;
}
.p-nonno140-step__img:after {
  content: "";
  display: block;
  height: 3.75rem;
  aspect-ratio: cos(30deg);
  clip-path: polygon(0 0,100% 50%,0 100%);
  background: #d6f1f0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc( 100% + 1rem );
  margin: auto;
}
.p-nonno140-step__item:last-child .p-nonno140-step__img:after {
  display: none;
}
.p-nonno140-step__txt {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
}
@media (max-width: 991px) {
  .p-nonno140-container {
  }
  .p-nonno140-dilution {
  }
  .p-nonno140-dilution__inner {
  }
  .p-nonno140-dilution .-small {
  }
  .p-nonno140-step {
    overflow-x: scroll;
    justify-content: start;
  }
  .p-nonno140-step__item {
  }
  .p-nonno140-step__item:last-child {
  }
  .p-nonno140-step__img {
  }
  .p-nonno140-step__img:after {
  }
  .p-nonno140-step__item:last-child .p-nonno140-step__img:after {
  }
  .p-nonno140-step__txt {
  }
}
@media (max-width: 767px) {
    .p-nonno140-container {
  }
  .p-nonno140-dilution {
    font-size: 3.5rem;
  }
  .p-nonno140-dilution__inner {
  }
  .p-nonno140-dilution .-small {
    font-size: 0.54em;
  }
  .p-nonno140-step {
  }
  .p-nonno140-step__item {
  }
  .p-nonno140-step__item:last-child {
  }
  .p-nonno140-step__img {
  }
  .p-nonno140-step__img:after {
  }
  .p-nonno140-step__item:last-child .p-nonno140-step__img:after {
  }
  .p-nonno140-step__txt {
  }
}
/* ニオイノンノ End */

/* ==========================================
  ニオイノンノの使い方
========================================== */
.page_how_to_use .mv {
  background-color: #d5eff1;
}

.page_how_to_use .mv img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  background-color: #d5eff1;
}
.page_how_to_use--hb101 .mv img {
  background-color: #eede31;
}

.page_how_to_use .howto_navi {
  color: #FFF;
  display: contents;
}

.page_how_to_use .menu {
  background-color: #88bdff;
  color: #FFF;
  font-size: 18px;
  width: 100%;
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: bold;
}

.page_how_to_use--hb101 .menu {
  background: #39a538;
}

.page_how_to_use .category {
  display: flex;
  max-width: 978px;
  width: 90%;
  margin: auto;
  justify-content: space-evenly;
  padding-top: 15px;
  padding-bottom: 15px;
}

.page_how_to_use .category li {
  display: flex;
  align-items: center;
  border-right: 3px #FFF solid;
  padding-right: 35px;
}

.page_how_to_use .category li img {
  margin-right: 9px;
}

.page_how_to_use .category li:last-child {
  border-right: none;
}

.page_how_to_use .howtohb101__container {
  max-width: 1185px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* margin-top: 124px; */
}

.page_how_to_use .cate-item:nth-child(odd) {
  background-color: #ddeceb;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page_how_to_use--hb101 .cate-item:nth-child(odd) {
  background: #f3f3f2;
}

.page_how_to_use .leftcontents img,
.page_how_to_use .rightcontents img {
  max-width: 100%;
  height: auto;
}

.page_how_to_use .cate-item .leftcontents {
  width: 41%;
  max-width: 416px;
}
.page_how_to_use .cate-item .leftcontents--floating {
  position: absolute;
  top: -1.25rem;
}

.page_how_to_use .cate-item:nth-child(odd) .rightcontents {
  max-width: 550px;
  width: 54%;
  margin-right: 0;
  margin-left: auto;
}

.page_how_to_use--hb101 .cate-item:nth-child(odd) .rightcontents {
  width: 59%;
  max-width: 600px;
}

.page_how_to_use .cate-item:nth-child(even) {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.page_how_to_use .cate-item:nth-child(even) .rightcontents {
  max-width: 550px;
  width: 54%;
  margin-right: auto;
  margin-left: 0;
}

.page_how_to_use--hb101 .cate-item:nth-child(even) .rightcontents {
  width: 59%;
  max-width: 600px;
}

.page_how_to_use .cate-item:nth-child(even) .leftcontents {
  text-align: right;
}

.page_how_to_use .contents {
  display: flex;
  flex-wrap: wrap;
  max-width: 1024px;
  width: 95%;
  margin: auto;
  justify-content: space-between;

}

.page_how_to_use .rightcontents {
  position: relative;
}

.page_how_to_use .bubble_white {
  background-image: url(../img/nonno/bubble_white.png);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0;
  margin-left: auto;
  min-height: min(144px, 11.9vw);
}

.page_how_to_use .bubble_white p {
  font-size: min(24px, 1.98vw);
  line-height: min(36px, 2.97vw);
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: bold;
  padding-top: 23px;
  padding-bottom: 23px;
  margin-left: min(128px, 10.5vw);
  position: relative;
  font-feature-settings: "palt";
}

.page_how_to_use .bubble_white p:before {
  position: absolute;
  left: min(-60px, 5.78vw);
  content: "";
  display: inline-block;
  max-width: 60px;
  width: 30%;
  max-height: 60px;
  height: 30%;
  background: url(../img/nonno/q.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.page_how_to_use .bubble_black {
  background-image: url(../img/nonno/bubble_black.png);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: min(144px, 11.9vw);
}
.page_how_to_use--hb101 .bubble_black {
  background-image: url(../img/howto_hb101/bubble_black.png);
}

.page_how_to_use .bubble_black p {
  font-size: min(24px, 1.98vw);
  line-height: min(36px, 2.97vw);
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: bold;
  margin: auto;
  padding-top: 23px;
  margin-left: min(87px, 7.19vw);
  position: relative;
  padding-top: 23px;
  padding-bottom: 23px;
  font-feature-settings: "palt";
}

.page_how_to_use .bubble_black p:before {
  position: absolute;
  left: min(-60px, 5.78vw);
  content: "";
  display: inline-block;
  max-width: 60px;
  width: 30%;
  max-height: 60px;
  height: 30%;
  background: url(../img/nonno/q.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.page_how_to_use--hb101 .bubble_white p:before,
.page_how_to_use--hb101 .bubble_black p:before {
  background: url(../img/howto_hb101/q.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.page_how_to_use .answer {
  margin-top: 23px;
}

.page_how_to_use .answer p {
  font-size: 1rem;
  line-height: 1.75;
  width: 100%;
  padding-left: min(130px, 10.7vw);
}

.page_how_to_use .answer p:before {
  position: absolute;
  left: min(76px, 6.28vw);
  content: "";
  display: inline-block;
  max-width: 34px;
  width: 7%;
  max-height: 37px;
  height: 16%;
  background: url(../img/nonno/a.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.page_how_to_use .answer_right {
  margin-top: 23px;
}

.page_how_to_use .answer_right p {
  font-size: 1rem;
  line-height: 1.75;
  padding-left: min(90px, 7.4vw);
  position: relative;
}

.page_how_to_use .answer_right p:before {
  position: absolute;
  left: min(29px, 2.39vw);
  content: "";
  display: inline-block;
  max-width: 34px;
  width: 7%;
  max-height: 38px;
  height: 37px;
  background: url(../img/nonno/a.png) no-repeat;
  background-position: center;
  background-size: contain;
}

.page_how_to_use--hb101 .answer p:before,
.page_how_to_use--hb101 .answer_right p:before {
  background: url(../img/howto_hb101/a.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.page_how_to_use .readmore {
  position: relative;
  text-align: right;
  z-index: 10;
}

.page_how_to_use .readmore::after {
  content: "";
  background: url(../img/nonno/readmore.png) no-repeat center/contain;
  width: 36px;
  height: 36px;
  position: absolute;
  right: 6%;
  top: 0;
  z-index: -1;
}
.page_how_to_use--hb101 .readmore::after {
  background: url(../img/howto_hb101/readmore.png) no-repeat center/contain;
}

.page_how_to_use .readmore a {
  font-size: 1rem;

  display: inline-block;
  margin-left: 0;
  margin-top: 0;
  font-weight: bold;
  position: relative;
  right: 8%;
  top: 0;
}

.page_how_to_use .hb101_cart,
.page_how_to_use_sub .hb101_cart {
  background: url(../img/nonno/product.png) no-repeat center/contain;
  max-width: 880px;
  width: 90%;
  position: relative;
  height: 550px;
  margin: auto;
  margin-bottom: 100px;
}

.page_how_to_use--hb101 .hb101_cart,
.page_how_to_use_sub--hb101 .hb101_cart {
  max-width: 882px;
  background: url(../img/howto_hb101/product.png) no-repeat center/contain;
}

.page_how_to_use .cart_flex a,
.page_how_to_use_sub .cart_flex a {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

.page_how_to_use .cart_flex span,
.page_how_to_use_sub .cart_flex span {
  margin-top: 58px;
  position: relative;
  left: 10px;
  color: #000;
}


.page_how_to_use .introduce__purchase,
.page_how_to_use_sub .introduce__purchase {
  position: absolute;
  top: 51%;
  right: 0;
  width: 33%;
}

.page_how_to_use .introduce__purchaseItem,
.page_how_to_use_sub .introduce__purchaseItem {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
}

.page_how_to_use .s8addcartPlg,
.page_how_to_use_sub .s8addcartPlg {
  width: 100%;
}


.page_how_to_use .pc_only {
  display: block;
}

.page_how_to_use .sp_only {
  display: none;
}

.page_how_to_use .btn.btn-primary,
.page_how_to_use_sub .btn.btn-primary {
  background: #d85145;
  color: #fff;
  border-radius: 10em;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 1190px) {
  .page_how_to_use .theme_main_only #main {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .page_how_to_use .pc_only {
    display: none;
  }

  .page_how_to_use .sp_only {
    display: block;
  }

  .page_how_to_use .category {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .page_how_to_use .howto_navi {
    padding: 0 1em;
    display: inline;
  }

  .page_how_to_use .main {
    top: 0;
    margin-top: 10px;
  }

  .page_how_to_use .category li {
    width: 45%;
    padding-right: 0;
  }

  .page_how_to_use .category li:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }

  .page_how_to_use .howtohb101__container {
    margin-top: 0;
  }

  .page_how_to_use .contents {
    width: 90%;
    max-width: 92.1vw;
    flex-direction: column;
  }

  .page_how_to_use .cate-item .leftcontents {
    max-width: 54.1vw;
    width: 64%;
  }
  .page_how_to_use .cate-item .leftcontents--floating {
    position: static;
  }
  .page_how_to_use .cate-item:nth-child(odd) .leftcontents {
    margin-left: auto;
    margin-right: 0;
  }
  .page_how_to_use .cate-item:nth-child(even) .leftcontents {
    margin-left: 0;
    margin-right: auto;
  }
  .page_how_to_use--hb101 .cate-item .leftcontents {
    display: flex;
    align-items: flex-start;
    flex-flow: row-reverse;
  }
  .page_how_to_use--hb101 .cate-item:nth-child(even) .leftcontents {
    justify-content: flex-end;
  }

  /* .page_how_to_use .cate01 .leftcontents {
    max-width: 54.1vw;
    width: 64%;
    margin-right: 0;
    margin-left: auto;
  }

  .page_how_to_use .cate02 .leftcontents {
    max-width: 40.1vw;
    width: 45%;
  }

  .page_how_to_use .cate03 .leftcontents {
    max-width: 53.6vw;
    width: 45%;
    margin: auto;
  }

  .page_how_to_use .cate04 .leftcontents {
    max-width: 51.9vw;
    width: 58%;
  }

  .page_how_to_use .cate05 .leftcontents {
    max-width: 49.2vw;
    width: 45%;
    margin-right: 0;
    margin-left: auto;
  }

  .page_how_to_use .cate06 .leftcontents {
    max-width: 53.2vw;
    width: 58%;
  } */

  .page_how_to_use .cate-item:nth-child(even) .contents {
    flex-direction: column-reverse;
  }

  .page_how_to_use .cate-item:nth-child(odd) {
    padding-top: 5.85vw;
    padding-bottom: 5.85vw;
  }

  .page_how_to_use .cate-item .rightcontents {
    max-width: 100%;
    width: 100%;
  }

  .page_how_to_use .cate-item:nth-child(odd) .rightcontents,
  .page_how_to_use .cate-item:nth-child(even) .rightcontents {
      width: 100%;
      max-width: 100%;
  }

  .page_how_to_use .bubble_white p,
  .page_how_to_use .bubble_black p {
    font-size: 4.16vw;
    line-height: 7.2vw;
    padding-top: 12.4vw;
    margin-left: 15%;
  }

  .page_how_to_use .bubble_white {
    background-image: url(../img/nonno/bubble_white_sp.png);
    min-height: 38.4vw;
  }

  .page_how_to_use--hb101 .bubble_black {
    background-image: url(../img/nonno/bubble_black_sp.png);
  }

  .page_how_to_use .bubble_black {
    background-image: url(../img/howto_hb101/bubble_black_sp.png);
    min-height: 38.4vw;
  }

  .page_how_to_use--hb101 .bubble_white,
  .page_how_to_use--hb101 .bubble_black {
      width: calc(100% + 6vw);
      margin-left: -3vw;
  }

  .page_how_to_use .bubble_white p:before,
  .page_how_to_use .bubble_black p:before {
    width: 8.266666666666666vw;
    height: 8vw;
    top: 0;
    left: -10vw;
    bottom: 0;
    margin: auto;
  }

  .page_how_to_use .answer p,
  .page_how_to_use .answer_right p {
    font-size: 4.266666666666667vw;
    line-height: 6.4vw;
    margin: auto;
    font-weight: 100;
    margin-left: 0;
    margin-top: 0;
    margin-right: 0;
  }

  .page_how_to_use--hb101 .answer p,
  .page_how_to_use--hb101 .answer_right p {
    padding-left: min(130px, 10.7vw);
  }

  .page_how_to_use .answer p:before,
  .page_how_to_use .answer_right p:before {
    left: 0%;
    width: 8%;
    /* height: 26%; */
  }

  .page_how_to_use .readmore {
    width: 90%;
    margin: auto;
  }

  .page_how_to_use .readmore::after {
    width: 7.733333333333333vw;
    height: 7.733333333333333vw;
    right: 0;
  }

  .page_how_to_use .hb101_cart,
  .page_how_to_use_sub .hb101_cart {
    width: 90%;
    height: 68vw;
    background: url(../img/nonno/sp_product.png) no-repeat center/contain;
  }

  .page_how_to_use--hb101 .hb101_cart,
  .page_how_to_use_sub--hb101 .hb101_cart {
    background: url(../img/howto_hb101/sp_product.png) no-repeat center/contain;
    height: 94vw;
  }

  .page_how_to_use .btn.btn-primary.btn-block,
  .page_how_to_use_sub .btn.btn-primary.btn-block {
    width: 50%;
    margin-right: 0;
    margin-left: auto;
    padding: 5px;
  }

  .page_how_to_use .btn.btn-primary,
  .page_how_to_use_sub .btn.btn-primary {
    min-height: auto;
    font-size: 4vw;
  }

  .page_how_to_use .introduce__purchase,
  .page_how_to_use_sub .introduce__purchase {
    width: 100%;
    top: 60%;
  }

  .page_how_to_use .introduce__purchaseItem,
  .page_how_to_use_sub .introduce__purchaseItem {
    row-gap: 4vw;
  }
  .page_how_to_use .cart_flex a,
  .page_how_to_use_sub .cart_flex a {
    font-size: 3.8vw;
  }
  .page_how_to_use .cart_flex a img,
  .page_how_to_use_sub .cart_flex a img {
    width: 2em;
    height: auto;
  }
}
/* ==========================================
  ニオイノンノの使い方 下層
========================================== */
.page_how_to_use_sub .underhowto_main {
  margin-bottom: 200px;
}
.page_how_to_use_sub #topicpath li a {
  color: #000;
  margin-left: 1rem;
}
.page_how_to_use_sub #topicpath li {
  color: #39A437;
}
.page_how_to_use_sub .onayami_container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 80px;
  background: #FFF;
  border: solid 13px #F2F2F1;
  border-radius: 10px;
}
.page_how_to_use_sub .onayami_inner {
  width: 95%;
  margin: auto;
  padding: 20px 0;
  display: flex;
  column-gap: 20px;
  justify-content: center;
}
.page_how_to_use_sub .onayami_container h3 {
  margin: 33px 0 33px;
  font-size: 36px;
  font-weight: bold;
  display: inline-block;
}
.page_how_to_use_sub h3.marugo.etc_q {
  width: 265px;
}
.page_how_to_use_sub .onayami_container h3:after {
  border-radius: 5px;
  /* 線幅の半分 */
  content: "";
  display: block;
  height: 10px;
  /* 線幅 */
  margin-top: -15px;
  background: linear-gradient(transparent 0%, #80ceff 0%);
}
.page_how_to_use_sub--hb101 .onayami_container h3:after {
  background: linear-gradient(transparent 0%, #efde31 0%);
}
.page_how_to_use_sub .qa {
  max-width: 612px;
  width: 60%;
}
.page_how_to_use_sub .qa_q {
  display: flex;
}
.page_how_to_use_sub .qa_txt {
  font-size: 18px;
}
.page_how_to_use_sub .qa img {
  display: block;
  height: 40px;
  margin-right: 20px;
}
.page_how_to_use_sub .qa_illust {
  display: flex;
  height: auto;
  align-items: flex-start;
  margin-top: 33px;
  column-gap: 20px;
}
.page_how_to_use_sub .qa_illust--item2 {
  display: grid;
  grid-template-columns: 80% 20%;
}
.page_how_to_use_sub .qa_a {
  padding: 20px 40px 20px 20px;
  margin: 2em auto;
  background: #80ceff;
  display: flex;
}
.page_how_to_use_sub--hb101 .qa_a {
  background: #efde31;
}
.page_how_to_use_sub .big_a {
  font-weight: bold;
  font-size: 56px;
  margin-right: 20px;
}
/*使い方*/
.page_how_to_use_sub .how_to_container {
  margin-bottom: 50px;
}
.page_how_to_use_sub .how_to_container h2 {
  font-weight: bold;
  font-size: 36px;
}
.page_how_to_use_sub .how_to_container p {
  font-size: 16px;
}
.page_how_to_use_sub .how_to_container h2 span {
  color: #518fdb;
  font-size: 48px;
  position: relative;
  padding-top: 10px;
}
.page_how_to_use_sub--hb101 .how_to_container h2 span {
  color: #39A437;
}
.page_how_to_use_sub .how_to_container h2 span::before {
  position: absolute;
  content: "";
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background-color: #EFDE31;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.page_how_to_use_sub .how_to_container .title {
  margin: auto;
  text-align: center;
}
.page_how_to_use_sub .how_to_container .title:before,
.page_how_to_use_sub .how_to_container .title:after {
  border-radius: 15px;
  /* 線幅の半分 */
  content: "";
  display: block;
  height: 15px;
  /* 線幅 */
  margin-top: -15px;
  background: linear-gradient(transparent 0%, #80ceff 0%);
  margin-bottom: 25px;
  margin-top: 15px;
}
.page_how_to_use_sub--hb101 .how_to_container .title:before,
.page_how_to_use_sub--hb101 .how_to_container .title:after {
  background: linear-gradient(transparent 0%, #efde31 0%);
}
.page_how_to_use_sub .howto_list {
  width: 100%;
  padding: 20px 50px 30px;
  position: relative;
}
.page_how_to_use_sub .white {
  background-color: #fff;
}
.page_how_to_use_sub .gray {
  background-color: #F2F2F1;
}
.page_how_to_use_sub .list_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.page_how_to_use_sub .howto_on {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 10px 30px;
  grid-template-areas: "case_img case_detail";
  max-width: 970px;
  /* width: 90%; */
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.page_how_to_use_sub .howto_on .case_img {
  grid-area: case_img;
}
.page_how_to_use_sub .howto_on .case_img img {
  width: 100%;
  height: auto;
}
.page_how_to_use_sub .howto_on .case_detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "case_ttl"
    "case_txt";
  justify-content: start;
  justify-items: stretch;
  grid-area: case_detail;
  row-gap: 20px;
}
.page_how_to_use_sub .howto_on .case_ttl {
  grid-area: case_ttl;
  font-size: 1.625rem;
}
.page_how_to_use_sub .howto_on .case_txt {
  grid-area: case_txt;
  line-height: 2;
}
.page_how_to_use_sub .howto_on strong {
  display: block;
}
.page_how_to_use_sub .under_maru {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: -26px;
  margin: auto;
}
.page_how_to_use_sub .howto_on p {
  font-size: 18px;
}
.page_how_to_use_sub .how_pic {
  width: 264px;
  height: 209px;
}
.page_how_to_use_sub .maru {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* flex-flow: column; */
  vertical-align: text-top;
  background-color: #80ceff;
  height: 34px;
  width: 34px;
}
.page_how_to_use_sub--hb101 .maru {
  background-color: #efde31;

}
/*お客様の声*/
.page_how_to_use_sub .user_voice {
  margin-bottom: 200px;
}
.page_how_to_use_sub .user_voice .title {
  font-weight: bold;
  font-size: 36px;
  display: flex;
  align-items: center;
  margin: auto;
}
.page_how_to_use_sub .user_voice .title:before,
.page_how_to_use_sub .user_voice .title:after {
  content: "";
  flex-grow: 1;
  height: 15px;
  background: #80ceff;
  display: block;
  border-radius: 10px;
}
.page_how_to_use_sub--hb101 .user_voice .title:before,
.page_how_to_use_sub--hb101 .user_voice .title:after {
  background: #39A437;
}
.page_how_to_use_sub .user_voice .title:before {
  margin-right: 30px;
}
.page_how_to_use_sub .user_voice .title:after {
  margin-left: 30px;
}
.page_how_to_use_sub .speech-bubble {
  position: relative;
  border: solid 5px #518fdb;
  max-width: 320px;
  width: 31%;
  padding: 20px 15px;
  border-radius: 5px;
}
.page_how_to_use_sub--hb101 .speech-bubble {
  border-color: #39A437;
}
.page_how_to_use_sub .speech-bubble:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 53px;
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-top-color: #518fdb;
  border-bottom: 0;
  border-right: 0;
  margin-left: -13px;
  margin-bottom: -40px;
}
.page_how_to_use_sub--hb101 .speech-bubble:before {
  border-top-color: #39A437;
}
.page_how_to_use_sub .speech-bubble:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 59px;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-top-color: #fff;
  border-bottom: 0;
  border-right: 0;
  margin-left: -13px;
  margin-bottom: -30px;
}
.page_how_to_use_sub .fukidashi {
  display: flex;
  column-gap: 30px;
  margin: 50px 10px 145px 10px;
  justify-content: center;
}
.page_how_to_use_sub .speech-bubble h3 {
  margin-bottom: 16px;
  line-height: 30px;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0;
}
.page_how_to_use_sub .speech-bubble p {
  line-height: 28px;
  font-size: 1rem;
}
.page_how_to_use_sub .speech-bubble a {
  font-size: 14px;
  color: #000;
  font-weight: bold;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 33px;
}
.page_how_to_use_sub .speech-bubble span {
  position: absolute;
  z-index: 2;
}
.page_how_to_use_sub img.user_icon {
  position: absolute;
  width: 122px;
  bottom: -28%;
  right: 0;
}
.page_how_to_use_sub .voice_button,
.page_how_to_use_sub .top_button {
  margin: auto;
  text-align: center;
  position: relative;
}
.page_how_to_use_sub .voice_button {
  width: 403px;
}
.page_how_to_use_sub .voice_button a,
.page_how_to_use_sub .top_button a {
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  z-index: 5;
  height: 64px;
  transition: all 0.3s;
  width: 100%;
}
.page_how_to_use_sub .voice_button a {
  position: relative;
}
.page_how_to_use_sub .voice_button a span {
  position: relative;
  background-color: #518fdb;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  padding: 15px;
  transition: ease all 0.3s;
}
.page_how_to_use_sub--hb101 .voice_button a span {
  background-color: #39a437;
}
.page_how_to_use_sub .voice_button a:hover span {
  translate: 0.5em 0.5em;
}
.page_how_to_use_sub .voice_button a:before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.5em;
  display: block;
  width: 100%;
  height: 100%;
  background: #2661a8;
  z-index: 0;
}
.page_how_to_use_sub--hb101 .voice_button a:before {
  background: #2C752A;
}
.page_how_to_use_sub .voice_button .box {
  background-color: #2661a8;
  max-width: 345px;
  width: 90%;
  margin: auto;
}
.page_how_to_use_sub--hb101 .voice_button .box {
  background: #2C752A;
}
.page_how_to_use_sub .voice_button .box,
.page_how_to_use_sub .top_button .box {
  height: 64px;
  left: 10px;
  top: 10px;
  z-index: 1;
  position: absolute;
}
/*ワンポイントアドバイス*/
.page_how_to_use_sub .onepoint {
  /* max-width: 1183px;
  width: 90%; */
  background-color: #80ceff;
  padding: 30px 66px 50px 66px;
  margin: auto;
}
.page_how_to_use_sub--hb101 .onepoint {
  background-color: #efde31;
}
.page_how_to_use_sub .onepoint .title {
  display: flex;
  align-items: baseline;
}
.page_how_to_use_sub .onepoint h2 {
  font-weight: bold;
  font-size: 48px;
  color: #fff;
  margin: 55px auto 30px;
}
.page_how_to_use_sub .sp_br {
  display: none;
}
.page_how_to_use_sub .point {
  background-color: #fff;
  max-width: 929px;
  width: 90%;
  margin-bottom: 50px;
  padding: 25px;
  margin: auto;
  margin-bottom: 30px;
}
.page_how_to_use_sub .point p {
  font-size: 18px;
  line-height: 36px;
}
.page_how_to_use_sub img.flag {
  z-index: 1;
  position: absolute;
}
.page_how_to_use_sub img.cart_icon {
  margin: auto;
}
.page_how_to_use_sub .osusume {
  margin: 100px 0;
}
.page_how_to_use_sub .marugo {
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
.page_how_to_use_sub .osusume .title {
  font-weight: bold;
  font-size: 24px;
  color: #000;
  margin-bottom: 50px;
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  text-align: center;
  overflow: hidden;
}
.page_how_to_use_sub .osusume .title .-inner {
  position: relative;
  display: inline-block;
  max-width: 80%;
}
.page_how_to_use_sub .osusume .title .-inner:before,
.page_how_to_use_sub .osusume .title .-inner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1em;
  rotate: -30deg;
  border-left: 2px solid #000;
}
.page_how_to_use_sub .osusume .title .-inner:after {
  left: auto;
  right: -1em;
  rotate: 30deg;
}

.page_how_to_use_sub .banner_howto {
  display: flex;
  justify-content: center;
  column-gap: 15px;
}
.page_how_to_use_sub .banner_howto img {
  max-width: 100%;
  height: auto;

}
.page_how_to_use_sub .top_button {
  max-width: 255px;
  width: 90%;
  margin: 50px auto 0;
}
.page_how_to_use_sub .top_button a {
  background-color: #518fdb;
  display: block;
  width: 100%;
}
.page_how_to_use_sub .top_button .box {
  background-color: #2661a8;
  width: 255px;
}
.page_how_to_use_sub .top_button a:hover {
  transform: translate(10px, 10px);
}
.page_how_to_use_sub .cart_flex a {
  display: flex;
  align-items: flex-end;
}
.page_how_to_use_sub .cart_flex span {
  font-size: 24px;
  margin-top: 58px;
  position: relative;
  left: 10px;
  color: #000;
}
.page_how_to_use_sub.sibahu {
  height: 170rem;
}

@media (max-width: 767px) {
  .page_how_to_use_sub .underhowto_main {
    margin-bottom: 0;
  }
  .page_how_to_use_sub .sp_only {
    display: block !important;
  }
  .page_how_to_use_sub .pc_only {
    display: none !important;
  }
  .page_how_to_use_sub #topicpath {
    margin-bottom: 20px;
  }
  .page_how_to_use_sub .onayami_container h3 {
    margin-top: 0;
    white-space: nowrap;
    font-size: 26px;
  }
  .page_how_to_use_sub .qa {
    width: 64%;
  }
  .page_how_to_use_sub .qa_txt {
    font-size: 16px;
  }
  .page_how_to_use_sub .qa_a {
    /* display: block; */
    width: 81vw;
    /* margin: 0 calc(42% - 18vw); */
  }
  .page_how_to_use_sub .qa_q {
    align-items: flex-start;
    row-gap: 20px;
    margin-bottom: 30px;
  }
  .page_how_to_use_sub .qa_illust {
    /* margin-top: 0; */
    column-gap: 10px;
    width: 35%;
  }
  .page_how_to_use_sub .qa_illust--item2 {
    grid-template-columns: 1fr;
  }
  .page_how_to_use_sub .onayami_inner {
    column-gap: 5px;
  }
  .page_how_to_use_sub .qa_a {
    padding: 15px 10px;
  }
  .page_how_to_use_sub .howto_on {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    gap: 0px 0px;
    grid-template-areas:
      "case_img"
      "case_detail";
    align-items: center;
    row-gap: 30px;
  }
  .page_how_to_use_sub .howto_list {
    padding: 25px;
  }
  .page_how_to_use_sub .howto_on .case_detail {
    display: block;
  }
  .page_how_to_use_sub .howto_on .case_ttl {
    font-size: 1.3125rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .page_how_to_use_sub .howto_on .case_txt {
    text-align: left;
    line-height: 32px;
  }
  .page_how_to_use_sub .howto_on .case_img {
    margin: auto;
    width: min(100%, 360px);
  }
  .page_how_to_use_sub .fukidashi {
    flex-direction: column;
    align-items: center;
    row-gap: 150px;
  }
  .page_how_to_use_sub .speech-bubble {
    width: 100%;
    min-height: 346px;
  }
  .page_how_to_use_sub img.user_icon {
    bottom: -28%;
  }
  .page_how_to_use_sub .onepoint {
    width: 100%;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 2rem;
  }
  .page_how_to_use_sub .osusume .title.sp_only {
    display: flex !important;
    justify-content: center;
  }
  .page_how_to_use_sub .btn.btn-primary.btn-block {
    width: 50%;
    margin-right: 0;
    margin-left: auto;
    padding: 5px;
  }
  .page_how_to_use_sub .how_to_container {
    margin-bottom: 40px;
  }
  .page_how_to_use_sub .banner_howto {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
  }
  .page_how_to_use_sub .point {
    width: 100%;
  }
  .page_how_to_use_sub img.flag {
    left: 3vw;
  }
  .page_how_to_use_sub .onepoint h2 {
    letter-spacing: 0;
  }
  .page_how_to_use_sub .user_voice {
    margin-bottom: 100px;
  }
  .page_how_to_use_sub .voice_button {
    width: min(90vw, 403px);
  }
  .page_how_to_use_sub .voice_button a {
    font-size: min(5.7vw, 24px);
  }
  .page_how_to_use_sub .voice_button .box,
  .page_how_to_use_sub .top_button .box {
    left: 3px;
    top: 8px;
  }
  .page_how_to_use_sub .osusume .title {
    font-size: 20px;
  }
  .page_how_to_use_sub .osusume .title .-inner:before {
    rotate: -20deg;
  }
  .page_how_to_use_sub .osusume .title .-inner:after {
    rotate: 20deg;
  }
  .page_how_to_use_sub .ios_img {
    max-width: 10%;
  }
}

.page_how_to_use_sub table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: #000;
}

.page_how_to_use_sub table tr {
  background-color: #fff;
  padding: .35em;
  border-bottom: 1px solid #bbb;
}
.page_how_to_use_sub table thead{
  border-bottom: 5px solid #ff9900;
}
.page_how_to_use_sub table tr:last-child{
    border-bottom: none
}
.page_how_to_use_sub table th,
.page_how_to_use_sub table td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #bbb;
  font-size: 18px;
  text-align: center;
}
.page_how_to_use_sub table th:last-child,
.page_how_to_use_sub table td:last-child{
    border: none;
    width: 270px;
    vertical-align: middle;
}
.page_how_to_use_sub table tbody th {
    color: #ff9901;
}
.page_how_to_use_sub table .txt{
    text-align: center;
}
.page_how_to_use_sub table img.hyou {
    width: 185px;
    margin: auto;
    padding: 0 0 14px 0;
    display: block;
}

@media screen and (max-width: 767px) {
  .page_how_to_use_sub table th,
  .page_how_to_use_sub table td {
    font-size: 1rem;
  }
  .page_how_to_use_sub table th:last-child,
  .page_how_to_use_sub table td:last-child {
    width: 50%;
  }
  .page_how_to_use_sub table img.hyou {
    width: min(100%, 185px);
  }
}

/* ================================================================== */
/* Taba CMS */
/* ================================================================== */
/* メイン */
.ec-tabaMain {}
.ec-pageHeader--taba {
}
.ec-tabaMain {}
.ec-tabaSingle p {
  font-size: 1.125rem;
  margin-bottom: 1em;
  line-height: 1.75;
}
.ec-tabaMain .ec-pageHeader h1 {
  margin: 0;
}
/* サイドバー */
.ec-tabaSide .tabacms_widget h4 {
  font-size: 1rem;
  background: #d6f1f0;
  padding: 0.6em 1em;
}
.ec-tabaSide .tabacms_widget .form-select {
  border-radius: 0;
  margin-bottom: 0.8em;
}
.ec-tabaSide .tabacms_widget .input-group input[type='search'] {
  border-radius: 0;
}
.ec-tabaSide .tabacms_widget .input-group .btn {
  border-radius: 0;
  font-size: 1em;
}
/* 記事アーカイブ用 */
.ec-tabaArchive .tabacms_post_list {
  /* font-size: 1.125rem; */
  font-size: 1rem;
  font-weight: normal;
}
.ec-tabaArchive .tabacms_post_list li {
  padding: 1.5rem 0 !important;
  border-bottom: 1px solid #aaaaaa;
}
.ec-tabaArchive .tabacms_post_list li:first-child {
  padding-top: 0 !important;
}
.ec-tabaArchive .tabacms_post_list .tabacms_post_list__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ec-tabaArchive .tabacms_post_list li time {
  margin: 0 0.3em 0 0;
  /* font-size: 0.9375rem; */
  font-size: 1rem;
}
.ec-tabaArchive .tabacms_post_list li label {
  background: #c57e7e;
  font-size: 0.75em;
}
/* 記事シングル用 */
.ec-tabaSingle__thumb {
  text-align: center;
  margin-bottom: 3rem;
}
.ec-tabaSingle__date {

}
.ec-tabaSingle__iframe {
}
.ec-tabaMain__iframe iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  /* メイン */
  .ec-tabaMain {}
  .ec-pageHeader--taba {
  }
  .ec-tabaMain {}
  .ec-tabaSingle p {
  }
  .ec-tabaMain .ec-pageHeader h1 {
  }
  /* サイドバー */
  .ec-tabaSide .tabacms_widget h4 {
  }
  .ec-tabaSide .tabacms_widget .form-select {
  }
  .ec-tabaSide .tabacms_widget .input-group input[type='search'] {
  }
  .ec-tabaSide .tabacms_widget .input-group .btn {
  }
  /* 記事アーカイブ用 */
  .ec-tabaMain.ec-tabaArchive {
    margin-bottom: 4rem;
  }
  .ec-tabaArchive .tabacms_post_list {
    /* font-size: 1rem; */
  }
  .ec-tabaArchive .tabacms_post_list li {
  }
  .ec-tabaArchive .tabacms_post_list li:first-child {
  }
  .ec-tabaArchive .tabacms_post_list li:last-child {
    border-bottom: none;
  }
  .ec-tabaArchive .tabacms_post_list li time {
  }
  /* 記事シングル用 */
  .ec-tabaSingle__date {
  }
  .ec-tabaSingle__iframe {
  }
  .ec-tabaMain__iframe iframe {
  }
}
@media screen and (max-width: 767px) {
  /* メイン */
  .ec-tabaMain {}
  .ec-pageHeader--taba {
  }
  .ec-tabaMain {}
  .ec-tabaSingle p {
    font-size: 1rem;
  }
  .ec-tabaMain .ec-pageHeader h1 {
    padding-top: 0;
    border-top: none;
  }
  /* サイドバー */
  .ec-tabaSide .tabacms_widget h4 {
  }
  .ec-tabaSide .tabacms_widget .form-select {
  }
  .ec-tabaSide .tabacms_widget .input-group input[type='search'] {
  }
  .ec-tabaSide .tabacms_widget .input-group .btn {
  }
  /* 記事アーカイブ用 */
  .ec-tabaMain.ec-tabaArchive .ec-pageHeader h1 {
    font-size: clamp(1rem, 5vw, 1.5rem);
    margin-bottom: 0;
  }
  .ec-tabaArchive .tabacms_post_list {
    font-size: clamp(0.75rem, 3.2vw, 1rem);
  }
  .ec-tabaArchive .tabacms_post_list li,
  .ec-tabaArchive .tabacms_post_list li:first-child {
    padding: 1rem 0 !important;
  }
  .ec-tabaArchive .tabacms_post_list li:first-child {
  }
  .ec-tabaArchive .tabacms_post_list li:last-child {
    border-bottom: none;
  }
  .ec-tabaArchive .tabacms_post_list .tabacms_post_list__left {
    justify-content: flex-start;
    margin: 0 0 0.5em;
  }
  .ec-tabaArchive .tabacms_post_list li time {
    margin: 0 2em 0 0;
  }
  /* 記事シングル用 */
  .ec-tabaSingle__date {
  }
  .ec-tabaSingle__iframe {
  }
  .ec-tabaMain__iframe iframe {
  }
}
/* アーカイブtype2（サムネ付き） */
.ec-tabaArchive--type2 .tabacms_post_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
}
.ec-tabaArchive--type2 .tabacms_post_list__thumb {
    overflow: hidden;
    aspect-ratio: 1.66 / 1;
    margin-bottom: 13px;
}
.ec-tabaArchive--type2 .tabacms_post_list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease all 0.3s;
}
.ec-tabaArchive--type2 .tabacms_post_list li {
    padding: 0 !important;
    border: none;
    display: block;
}
.ec-tabaArchive--type2 .tabacms_post_list li:hover .tabacms_post_list__thumb img {
  scale: 1.1;
}
.ec-tabaArchive--type2 .tabacms_post_list .tabacms_post_list__left {margin-bottom: 5px;}
.ec-tabaArchive--type2 .tabacms_post_list__right {
    width: 100%;
}
@media screen and (max-width: 767px) {
  .ec-tabaArchive--type2 .tabacms_post_list {
    grid-template-columns: 1fr;
    gap: 35px 0;
  }
  .ec-tabaArchive--type2 .tabacms_post_list__thumb {
  }
  .ec-tabaArchive--type2 .tabacms_post_list__thumb img {
  }
  .ec-tabaArchive--type2 .tabacms_post_list li:first-child,
  .ec-tabaArchive--type2 .tabacms_post_list li {
    padding: 0 !important;
  }
  .ec-tabaArchive--type2 .tabacms_post_list li:first-child {
    padding-top: 1rem !important;
  }
  .ec-tabaArchive--type2 .tabacms_post_list .tabacms_post_list__left {
  }
  .ec-tabaArchive--type2 .tabacms_post_list__right {
  }
}





/* --------------------------------------------------
 コラムシングル
 -------------------------------------------------- */

/* コンテンツフレーム（汎用） */
.ec-tabaSingle--column .c-frame01 {
    border: 1px solid #edc6c6;
    background: #fff9f3;
    padding: 20px 30px;
    margin-bottom: 35px;
}
/* 目次 */
.ec-tabaSingle--column .ec-columnPostIndex__outer {
    background: #fffdeb;
    border: 1px solid #e1d783;
    padding: 30px 30px;
    margin-bottom: 2.5rem;
}
.ec-tabaSingle--column .ec-columnPostIndex__ttl {
    line-height: 1.25;
    font-size: 22px;
    margin-bottom: 15px;
}
.ec-tabaSingle--column .ec-columnPostIndex {
}
.ec-columnPostIndex__item {
    line-height: 1.25;
    font-size: 18px;
    
}
.ec-tabaSingle--column .ec-columnPostIndex__item:not(:last-child) {
    margin-bottom: 0.6em;
}
.ec-tabaSingle--column .ec-columnPostIndex__item a {
    color: inherit;
    text-decoration: none;
    text-indent: -1.2em;
    padding-left: 1.2em;
}
.ec-tabaSingle--column .ec-columnPostIndex__item a:before {
    content: "●";
    display: inline;
    padding-right: 0.2em;
}
.ec-tabaSingle--column .ec-columnPostIndex__item a:hover {
    text-decoration: underline;
}
/* 記事 */
.ec-tabaSingle--column p {
    margin-bottom: 25px;
}
.ec-tabaSingle--column p a {
    display: inline;
}
.ec-tabaSingle--column p a:hover {
    text-decoration: underline;
}
.ec-tabaSingle--column img {
    max-width: 100%;
    vertical-align: bottom;
    display: inline-block;
}
.ec-tabaSingle--column table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 35px;
}
.ec-tabaSingle--column tr {
    font-size: inherit;
}
.ec-tabaSingle--column th,
.ec-tabaSingle--column td {
    font-size: 16px;
    font-weight: normal;
    padding: 0.6em 1em;
    border: 1px solid #999;
}
.ec-tabaSingle--column th {
    background: #eee;
}
.ec-tabaSingle--column td {
}
@media screen and (max-width: 768px) {
  .ec-tabaSingle--column .ec-columnPostIndex__outer {
    padding: 1.25rem 1rem;

  }
  .ec-tabaSingle--column .ec-columnPostIndex__ttl {
    font-size: 1.125rem;
  }
  .ec-columnPostIndex__item {
    font-size: 1rem;
  }
}




/* ================================================================== */
/* カートページ cart */
/* ================================================================== */

#page_cart .hidden #div_AmazonBanner {
  display: none;
}

/* ================================================================== */
/* マイページ mypage */
/* ================================================================== */
/* 会員ランク */
.ec-mypageRank {
  margin: 24px auto 55px;
}
.ec-mypageRank__inner {
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  padding: 1rem 1.5% 1rem 3%;
  width: calc(100% - (26px * 2));
  margin: auto;
}
.ec-mypageRank__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6%;
}
.ec-mypageRank__ttl {
  display: flex;
  align-items: center;
  font-size: 1.375em;
  line-height: 1.25;
  color: #009991;
  font-weight: bold;
}
.ec-mypageRank__ttl .-icon svg {
  color: #ff0000;
  width: 1.7em;
  margin-right: 0.25em;
}
.ec-mypageRank .current-rank {
  font-size: 1em;
  flex: 1;
}
.ec-mypageRank .current-rank .rank {
  color: #ff0000;
  font-size: 1.1em;
  font-weight: bold;
}
.ec-mypageRank .next_info {
  font-size: 0.90625em;
  width: 33%;
  background: #f7f7f9;
  padding: 0.7em 2%;
}
.ec-mypageRank .next_info .-count {
  color: #c74838;
  font-weight: bold;
}
.ec-mypageRank .next_info .rank {
  color: #2981ba;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .ec-mypageRank {

  }
  .ec-mypageRank__inner {
  }
  .ec-mypageRank__left {
    flex-wrap: wrap;
    gap: 0.3em;
  }
  .ec-mypageRank__ttl {
    font-size: 1.25em;
    width: 100%;
    margin-right: 0;
  }
  .ec-mypageRank__ttl .-icon svg {
    width: 1.4em;
  }
  .ec-mypageRank .current-rank {
  }
  .ec-mypageRank .current-rank .rank {
  }
  .ec-mypageRank .next_info {
    width: 50%;
  }
  .ec-mypageRank .next_info .-count {
  }
  .ec-mypageRank .next_info .rank {
  }
}
@media screen and (max-width: 991px) {
  .ec-mypageRank {
    margin: 20px auto 25px;

  }
  .ec-mypageRank__inner {
    flex-wrap: wrap;
    padding: 1.125rem 0.75rem;
    gap: 1em;
    width: calc(100% - (16px * 2));
  }
  .ec-mypageRank__left {
  }
  .ec-mypageRank__ttl {
    font-size: 1.125em;
  }
  .ec-mypageRank__ttl .-icon svg {
  }
  .ec-mypageRank .current-rank {
    letter-spacing: 0;
    font-size: 0.9375em;
  }
  .ec-mypageRank .current-rank .rank {
  }
  .ec-mypageRank .next_info {
    width: 100%;
    letter-spacing: 0;
  }
  .ec-mypageRank .next_info .-count {
  }
  .ec-mypageRank .next_info .rank {
  }
}
/* カード編集 */
.ec-mypageUserCardList {
  margin-bottom: 15px;
}
.ec-mypageUserCardList__item {
}
.ec-mypageUserCardList__item td span {
  display: inline-block;
}




/* ================================================================== */
/* 会社概要 company */
/* ================================================================== */

.page_company #main{
  width:100%;
}
.page_company .mv {
  height: 383px;
  text-align: center;
  overflow: hidden;
}
.page_company .mv img {
  object-fit: cover;		
  object-position: center left;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .page_company .mv {
    height: auto;
  }
  .page_company .mv img {
    width: 100%;
  }
}

.page_company .sub-nav{
  margin-bottom:90px;
}
.page_company .sub-nav-list{
  margin-top:50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.page_company .sub-nav-list .list-item {
  /* float: left; */
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}
.page_company .sub-nav-list .list-item a {
  display: block;
  /* width: 291px; */
  height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  color: #539a00;
}
  .page_company .sub-nav-list .list-item a:hover{
    background:#539a00;
    color:#fff;
  }

.page_company .sub-nav-list .list-item:last-child a{
  padding:0;
}

.page_company .company__ttl{
  max-width: 1170px;
  margin:0 auto;
}
.page_company .company__ttl .company__h3{
  text-align:center;
  font-size: 2.3rem;
  color: #539a00;
  margin-bottom:60px;
  font-weight: 600;
}
.page_company .company__text{
  max-width: 1170px;
  margin:0 auto 80px auto;
}
.page_company .company__text .company__p{
  text-align: center;
  font-size:18px;
  color:#444444;
  line-height: 2.7em;
  width: 100%;
  padding:0 30px;
}
.page_company .company__contents{
  max-width: 1170px;
  margin:0 auto 80px auto;
  display:flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
    @media screen and (max-width: 767px){
      .page_company .company__contents{
        margin:0 auto 30px auto;
      }
    }

    @media screen and (max-width: 767px){
    }

.page_company .company__contents__p{
  text-align:center;
  font-size: 18px;
  line-height: 2.1em;
  margin: 0 auto 0 auto;
  padding:0 30px;
}

.page_company .company__left{
  width: 50%;
  padding-right: 20px;
}

  @media screen and (max-width: 767px){
    .page_company .company__left{
      width:100%;
      padding-right: 0;
    }
  }

.page_company .company__left .company__p{
  font-size: 18px;
  line-height: 1.7em;
  margin-top:40px;
  padding-left:30px;
}

.page_company .company__right{
  width: 50%;
  padding-left: 20px;
}
  @media screen and (max-width: 767px){
    .page_company .company__right{
      width: 100%;
      padding-left:0;
    }
  }

.page_company .company__h3{
  font-size:1.75rem;
  color: #539a00;
  font-weight: normal;
  /* margin-top: 80px; */
  font-weight: 600;
}
.page_company .company__h3 .-min{
  font-size: 0.66em;
}

.page_company .company__reason{
  display:flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page_company .company__reason .company__left{
  width: 50%;
  padding-right: 20px;
}

.page_company .company__reason .company__right{
  padding-left:20px;
  padding-right: 40px;
  max-width: 584px;
}

.page_company .company__reason .company__right .company__h3 span{
  display:block;
}
.page_company .company__reason .company__right .company__h3 span:first-child{
  font-size: 20px;
  line-height: 1em;
  margin-bottom: 30px;
}
.page_company .company__reason .company__right .company__h3 span:nth-child(2){
  font-size: 30px;
  line-height: 1em;
  margin-bottom: 25px;
  left: -17px;
  position: relative;
}

.page_company .company__reason .company__right .company__h3 span:last-child{
  font-size: 30px;
  line-height: 1em;
}

.page_company .company__reason .company__right .company__p{
  margin-top: 80px;
  font-size: 18px;
  line-height: 2.1em;
}

.page_company .company__summary{
  background:url("../img/company/ctg04__summary.png") 0 0 no-repeat;
  background-size:100%;
}

.page_company .company .company__summary h3{
  display: block;
  width: 194px;
  margin: 0 auto;
  padding: 140px 0;
}

.page_company .company .company__summary h3 img{
  width: auto;
  display:block;
}

.page_company .company .company__details{
  max-width: 920px;
  margin: 0 auto;
}

.page_company .company .company__details .company__left{
  width: 100%;
}

.page_company .company .company__details .company__right{
  width: 45%;
}

.page_company .company .company__details .company__h3{
  margin-top: 0;
  font-size: 24px;
  line-height: 1em;
  margin-bottom: 80px;
}

  

.page_company .company .company__details tr td:first-child{
  min-width: 10em;
  color: #539a00;
  padding: 0.5em 1.5em;
  /* padding-right: 35px;
  padding-bottom: 35px; */
  font-weight: 600;
}

.page_company .details_item1 span{
  letter-spacing: 4em;
}
.page_company .details_item2 span{
  letter-spacing: 0.65em;
}
.page_company .details_item3 span{
  letter-spacing: 4em;
}
.page_company .details_item4 span{
  letter-spacing: 1.45em;
}
.page_company .details_item5 span{
  letter-spacing: 0.65em;
}
.page_company .details_item6 span{
  letter-spacing: 0.52em;
}
.page_company .details_item7 span{
  letter-spacing: 1.45em;
}
.page_company .details_item8 span{
  letter-spacing: 1.5em;
}
.page_company .details_item9 td:first-child span{
  letter-spacing: 0.65em;
}
.page_company .details_item10 span{
  letter-spacing: 0.65em;
}
.page_company .details_item11 span{
  letter-spacing: 1.45em;
}
.page_company .details_item12 span{
  letter-spacing: 1.45em;
}
.page_company .details_item13 span{
  letter-spacing: 1.45em;
}

@media screen and (max-width: 1170px){
    .page_company .company .company__summary h3{
      padding: 30px 0;
    }
  }

@media screen and (max-width: 1090px){
  .page_company .company .company__details{
    width: 90%;
  }
  .page_company .company__reason .company__right .company__p{
    margin-top:30px;
  }

  .page_company .company__reason .company__right .company__h3 span:first-child,
  .page_company .company__reason .company__right .company__h3 span:nth-child(2),
  .page_company .company__reason .company__right .company__h3 span:last-child{
    font-size: 2rem;
    line-height:1.75em;
  }
  .page_company .company__reason .company__right .company__h3 span:nth-child(2){
    left: 0;
  }
  .page_company .company__reason .company__right .company__h3 span:last-child{
    
  }
  .page_company .company__reason .company__right .company__h3{
    margin-top: 0;
  }
}

@media screen and (max-width: 767px){
  
  .page_company .company__text .company__p,
  .page_company .company__contents__p,
  .page_company .company__left .company__p,
  .page_company .company__reason .company__right .company__p,
  .page_company .details_item9 td:last-child li{
    line-height: 2.1em;
    letter-spacing: 0.35rem;
    font-size: 15px;
  }

  .page_company .sub-nav {
    padding: 0;
  }

  .page_company .sub-nav nav{
    padding: 0 0;
  }

  .page_company .sub-nav-list .list-item {
    font-size: clamp(1rem, 3.3vw, 1.3rem);
  }

  .page_company .sub-nav-list .list-item a{
    line-height: 3em !important;
    padding: 0;
  }
  .page_company .company .sub-nav-list .list-item:last-child{
    line-height: 3em !important;
    padding: 0;
  }

  .page_company .sub-nav-list{
    margin-top:0;
  }

  .page_company .company .sub-nav-list .list-item:last-child{
    width: 100%;
  }

  .page_company .company__h3{
    margin-top: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    font-size: 1.375rem;
  }
  .page_company .company__text{
    margin-bottom:40px;
  }

  .page_company .company__ttl .company__h3{
    margin-bottom:40px;
    font-size: 1.5rem;
  }

  .page_company .company .company__details .company__h3{
    display:none;
  }

  .page_company .company .company__details .company__right{
    width: 100%;
    margin:0 auto;
  }
  .page_company .company .company__details .company__left{
    width: 100%;
    margin:0 auto;
  }
  .page_company .company .company__summary h3{
    padding:0;
  }
  .page_company .company__reason .company__right .company__p{
    margin-top: 40px;
  }
  .page_company .company__reason .company__right .company__h3 span{
    text-align: left;
    font-size: 2.5rem !important;
  }
  .page_company .company__reason .company__right .company__h3 span:first-child,
  .page_company .company__reason .company__right .company__h3 span:nth-child(2),
  .page_company .company__reason .company__right .company__h3 span:last-child{
    line-height:2.1em;
  }
  .page_company .company__reason .company__right .company__h3 span:nth-child(2){
    left:0;
  }
  .page_company .company__reason .company__right .company__h3{
    padding-left:0;
    padding-right:0;
    width:100%;
    margin-top: 30px;
  }

  .page_company .company__reason .company__right{
    padding-left:0;
    padding-right:0;
    width:90%;
    margin:0 auto;
  }
  .page_company .company__reason .company__left{
    width: 100%;
    padding-right:0;
  }

  .page_company .company__text .company__p{
    text-align:left;
    width:100%;
    margin:0 auto;
    margin-top:0;
  }
  .page_company .company__contents__p{
    width: 100%;
    text-align: left;
  }

  .page_company .company__left .company__p{
    padding-left: 30px;
    width: 100%;
    padding-right: 30px;
    margin-top: 0;
  }
}

@media screen and (max-width: 414px){
  .page_company .sub-nav-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .page_company .company__table td{
    display:block;
  }
  .page_company .company .company__details tr{
    padding-bottom: 30px;
    display: block;
  }
  .page_company .company .company__details tr td:first-child{
    padding-bottom:15px;
  }
}

.page_company .company__catch {
  height: 383px;
  text-align: center;
  overflow: hidden;
}
.page_company .company__catch img {
  object-fit: cover;		
  object-position: center;
  width: auto;
  height: 100%;
}

@media screen and (max-width: 767px){
  .page_company .company__catch {
    height: auto;
  }
  .page_company .company__catch img {
    max-width: none;
    max-height: none;
    height: 47vw;
    width: 100%;
  }

  .page_company .company__summary{
    padding: 3.5em 0;
    background-size: cover;
  }
}


/* ================================================================== */
/* 緑のまほろば mahoroba */
/* ================================================================== */
/******************************
font
******************************/
.mahoroba .mahoroba__main {
  font-size: 62.5% !important;
  font-weight: 500;
  letter-spacing: .125em;
  font-family: '游ゴシック体', 'Yu Gothic', YuGothic, sans-serif;
}

.mahoroba .mahoroba__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1190px) {
  .mahoroba .theme_main_only #main {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .mahoroba .mahoroba__container {
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.mahoroba .mv {
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .mahoroba .mv {
    margin: 0;
    top: 0;
  }
}

.mahoroba .mv__img {
  width: 100%;
  height: 100%;
  object-position: center;
}

@media (max-width: 768px) {
  .mahoroba .mv__img {
    display: none;
  }
}

.mahoroba .mv__sp {
  display: none;
}

@media (max-width: 768px) {
  .mahoroba .mv__sp {
    display: block;
    position: relative;
  }
  .mahoroba .mv__spImg {
    width: 100%;
  }
  .mahoroba .mv__spSection {
    width: 100%;
    position: absolute;
    top: 45%;
  }
}

@media (max-width: 768px) and (max-width: 320px) {
  .mahoroba .mv__spSection {
    top: 45%;
  }
}

@media (max-width: 768px) {
  .mahoroba .mv__spHeading {
    margin: 0 0 20px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.65em;
    color: #184800;
    text-align: center;
    display: block;
  }
  .mahoroba .mv__spHeading--span {
    display: block;
  }
  .mahoroba .mv__spParagraph {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.65em;
    color: #184800;
    text-align: center;
    display: block;
  }
  .mahoroba .mv__spParagraph--span {
    display: block;
  }
  .mahoroba .mv__spParagraph--span:nth-child(3) {
    margin: 0 0 20px;
  }
}

.mahoroba .feature__intro {
  margin: 0 0 202px;
  padding-top: 115px;
}

@media (max-width: 768px) {
  .mahoroba .feature__intro {
    display: none;
  }
}

.mahoroba .feature__text {
  width: 100%;
  height: 625px;
  background-image: url("../img/product/mahoroba/feature_bg.png");
  background-size: cover;
  background-position: 50%;
  position: relative;
}

.mahoroba .feature__textWrap {
  width: 510px;
  height: 410px;
  position: absolute;
  top: calc(50% - 240px);
  right: 6%;
}

@media (min-width: 1400px) {
  .mahoroba .feature__textWrap {
    right: 10%;
  }
}

@media (min-width: 1600px) {
  .mahoroba .feature__textWrap {
    right: 15%;
  }
}

@media (min-width: 1800px) {
  .mahoroba .feature__textWrap {
    right: 20%;
    top: 18%;
  }
}

@media (min-width: 1920px) {
  .mahoroba .feature__textWrap {
    right: 25%;
    top: 18%;
  }
}

.mahoroba .feature__text::before {
  content: "";
  width: 719px;
  height: 912px;
  background-image: url("../img/product/mahoroba/feature_ls.png");
  background-size: cover;
  background-position: 50%;
  display: block;
  position: absolute;
  top: -115px;
  left: 0;
}

@media (max-width: 1300px){
.mahoroba .feature__text::before {
    width: 619px;
    height: 786px;
    top: -85px;
    left: -50px;
}
}

@media (max-width: 1250px) {
.mahoroba .feature__text::before {
    width: 512px;
    height: 649px;
    top: -85px;
    left: -50px;
}
}

.mahoroba .feature__text::after {
  content: "";
  width: 354px;
  height: 342px;
  background-image: url("../img/product/mahoroba/feature_icon.png");
  background-size: cover;
  display: block;
  position: absolute;
  right: 0;
  bottom: calc(0% - 175px);
}

.mahoroba .feature__heading {
  margin: 0 0 60px;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.65em;
  color: #184800;
  text-align: center;
  display: block;
}

.mahoroba .feature__heading--span {
  display: block;
}

.mahoroba .feature__paragraph {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.65em;
  color: #000;
  text-align: center;
  display: block;
}

.mahoroba .feature__paragraph--span {
  display: block;
}

.mahoroba .feature__paragraph--span:nth-child(4) {
  margin: 0 0 60px;
}

.mahoroba .feature__point {
  margin: 0 0 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .mahoroba .feature__point {
    margin: 0 0 50px;
    display: block;
  }
}

.mahoroba .feature__pointHeading--h2 {
  font-size: 1.875rem;
  display: block;
  text-align: center;
  margin: 0 0 60px;
  color: #184801;
}

@media (max-width: 768px) {
  .mahoroba .feature__pointHeading--h2 {
    font-size: 1.5rem;
    line-height: 1.5em;
  }
  .mahoroba .feature__pointHeading--span {
    display: block;
  }
}

.mahoroba .feature__pointItem {
  width: 30%;
}

@media (max-width: 768px) {
  .mahoroba .feature__pointItem {
    width: 100%;
    margin: 0 0 30px;
  }
}

.mahoroba .feature__pointItem--img {
  width: 100%;
  margin: 0 0 20px;
}

@media (max-width: 768px) {
  .mahoroba .feature__pointItem--img {
    width: 60%;
    margin: 0 auto 10px;
    display: block;
  }
}

.mahoroba .feature__pointItem--paragraph {
  font-size: 1.25rem;
  line-height: 1.65em;
  text-align: center;
  color: #184800;
}

@media (max-width: 768px) {
  .mahoroba .feature__pointItem--paragraph {
    font-size: 1.125rem;
  }
}

.mahoroba .feature__pointItem--paragraph span {
  display: block;
}

.mahoroba .introduce__title {
  width: 100%;
  margin: 0 0 150px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__title {
    display: none;
  }
}

.mahoroba .introduce__titleSp {
  display: none;
}

@media (max-width: 768px) {
  .mahoroba .introduce__titleSp {
    width: 100%;
    margin: 0 0 20px;
    display: block;
  }
}

.mahoroba .introduce__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mahoroba .introduce__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mahoroba .introduce__itemSection--sp {
  display: none;
}

@media (max-width: 768px) {
  .mahoroba .introduce__itemSection--sp {
    width: 100%;
    display: block;
  }
  .mahoroba .introduce__itemSection--sp .introduce__itemSection--heading {
    margin: 30px 0 10px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #184800;
    display: block;
  }
  .mahoroba .introduce__itemSection--sp .introduce__itemSection--span {
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 10px 0 0;
    display: block;
  }
}

.mahoroba .introduce__item--img {
  width: 30%;
  height: 270px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mahoroba .introduce__item--top {
  width: 100%;
  padding: 0 48px 100px 60px;
  border-bottom: 1px dotted #333;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--top {
    padding: 0;
  }
}

.mahoroba .introduce__item--top .introduce__item--img {
  width: 318px;
  height: 376px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--top .introduce__item--img {
    width: 50%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
  }
}

.mahoroba .introduce__item--top .introduce__itemText {
  width: calc(100% - 348px);
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--top .introduce__itemText {
    width: 100%;
    margin: 0 0 30px;
  }
}

.mahoroba .introduce__item--middle {
  width: 50%;
  border-right: 1px dotted #333;
  border-bottom: 1px dotted #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--middle {
    width: 100%;
    border-right: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.mahoroba .introduce__item--middle:nth-of-type(2) {
    padding: 30px 29px 60px 58px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--middle:nth-of-type(2) {
    padding: 0;
  }
}

.mahoroba .introduce__item--middle:nth-of-type(2) .introduce__item--img {
width: 193px;
    height: 359px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--middle:nth-of-type(2) .introduce__item--img {
    width: 50%;
    height: auto;
    margin: 0;
    padding: 5%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.mahoroba .introduce__item--middle:nth-of-type(2) .introduce__itemText {
    width: calc(100% - 46%);
    margin-top: -3.75rem;
    margin-left: -1.875rem
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--middle:nth-of-type(2) .introduce__itemText {
    width: 50%;
  }
}

.mahoroba .introduce__item--middle:nth-of-type(3) {
  padding: 30px 0 60px 56px;
  border-right: none;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--middle:nth-of-type(3) {
    padding: 0;
  }
}

.mahoroba .introduce__item--middle:nth-of-type(3).introduce__item--img {
width: 245px;
    height: 353px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--middle:nth-of-type(3) .introduce__item--img {
    width: 50%;
    height: auto;
    margin: 0;
    padding: 5%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.mahoroba .introduce__item--middle:nth-of-type(3) .introduce__itemText {
    width: calc(100% - 55%);
    /* margin-top: -3.75rem; */
    margin-left: -1.25rem;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--middle:nth-of-type(3) .introduce__itemText {
    width: 50%;
  }
}
@media (max-width: 350px){
.mahoroba .introduce__item--middle:nth-of-type(2) .introduce__itemText,
.mahoroba .introduce__item--middle:nth-of-type(3) .introduce__itemText,
.mahoroba .introduce__item--bottom .introduce__itemText {
    margin-top: 0;
}
}
.mahoroba .introduce__item--bottom {
  margin: 0 0 140px;
  padding: 35px 75px 0;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--bottom {
    margin: 0;
    padding: 0;
  }
}

.mahoroba .introduce__item--bottom .introduce__item--img {
    width: 195px;
    height: 370px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--bottom .introduce__item--img {
    width: 50%;
    height: auto;
    margin: 0;
    padding: 5%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.mahoroba .introduce__item--bottom .introduce__itemText {
  width: calc(100% - 200px);
  margin-top: -170px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--bottom .introduce__itemText {
    width: 50%;
        margin-top: -3.125rem;
  }
}

.mahoroba .introduce__item--heading {
  margin: 0 0 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 2em;
  color: #184800;
  display: block;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--heading {
    display: none;
  }
}

.mahoroba .introduce__item--span {
  font-size: 1.125rem;
}

.mahoroba .introduce__item--heading--large {
  font-size: 1.875rem;
}

.mahoroba .introduce__item--paragraph {
  font-size: 1.25rem;
  line-height: 1.65em;
  color: #184800;
}
@media (max-width: 768px) {
  .mahoroba .introduce__item--paragraph {
    font-size: 1.125rem;
  }
  .mahoroba .introduce__item--paragraph > br {
    display: none;
  }
}

.mahoroba .introduce__item--paragraph--large {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--paragraph--large {
    font-size: 1.125rem;
  }
}

.mahoroba .introduce__item--paragraph span {
  display: block;
}

@media (max-width: 768px) {
  .mahoroba .introduce__item--paragraph span {
    display: inline;
  }
}

.mahoroba .introduce__purchase {
  width: 100%;
  margin: 30px 0 0;
}
.mahoroba .introduce__purchase .introduce__purchaseItem {
  /* width: 100%; */
}

.mahoroba .introduce__purchase--top {
  margin: 20px 0 0;
  padding: 0px 74px 0 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchase--top {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }
}

.mahoroba .introduce__purchase--middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchase--middle {
    width: 100%;
    display: block;
  }
}

.mahoroba .introduce__purchase--middle .introduce__purchaseItem01 {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchase--middle .introduce__purchaseItem01 {
    padding: 0;
  }
}

.mahoroba .introduce__purchase--middle .introduce__purchaseItem02 {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchase--middle .introduce__purchaseItem02 {
    padding: 0;
  }
}

.mahoroba .introduce__purchase--bottom {
  padding: 0 23px;
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchase--bottom {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchaseItem {
    margin: 0 0 30px;
  }
  .mahoroba .introduce__purchaseItem:last-child {
    margin: 0 0 50px;
  }
}

.mahoroba .introduce__purchaseItem--span {
  margin: 0 0 20px;
  font-size: 1.75rem;
  color: #184800;
  display: block;
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchaseItem--span {
    margin: 0 0 10px;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
  }
}
/*
.mahoroba .introduce__purchaseItem--span::before {
  content: "・";
}*/

@media (max-width: 768px) {
  .mahoroba .introduce__purchaseItem--span::before {
    content: none;
  }
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchaseItem--span > span:nth-child(1) {
    display: none;
  }
}


.mahoroba .howto {
  width: 100%;
  height: 1000px;
  background-image: url("../img/product/mahoroba/howto_bg.png");
  background-size: cover;
  background-position: 50%;
  position: relative;
}

@media (max-width: 768px) {
  .mahoroba .howto {
    height: 100%;
  }
}

.mahoroba .howto::after {
  content: "";
  width: 200px;
  height: 200px;
  background-image: url("../img/product/mahoroba/howto_icon.png");
  background-size: cover;
  display: block;
  position: absolute;
  bottom: -90px;
  right: 5%;
}

@media (max-width: 768px) {
  .mahoroba .howto::after {
    width: 120px;
    height: 120px;
    bottom: -60px;
    right: 0;
  }
}

.mahoroba .howto__title {
  margin: 0 auto;
  padding: 70px 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .mahoroba .howto__title {
    padding: 30px 0;
  }
}

@media (max-width: 768px) {
  .mahoroba .howto__heading--img {
    display: none;
  }
}

.mahoroba .howto__heading--imgSp {
  display: none;
}

@media (max-width: 768px) {
  .mahoroba .howto__heading--imgSp {
    width: 100%;
    display: block;
  }
}

.mahoroba .howto__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .mahoroba .howto__layout {
    display: block;
  }
}

.mahoroba .howto__item {
  width: 48%;
  margin: 0 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .mahoroba .howto__item {
    width: 100%;
    margin: 0 0 30px;
  }
}

.mahoroba .howto__item:nth-child(3), .howto__item:nth-child(4) {
  margin: 0;
}

@media (max-width: 768px) {
  .mahoroba .howto__item:nth-child(3), .howto__item:nth-child(4) {
    margin: 0 0 30px;
  }
}

@media (max-width: 768px) {
  .mahoroba .howto__item:nth-child(4) {
    margin: 0;
    padding: 0 0 50px;
  }
}

.mahoroba .howto__item--img {
  width: 278px;
  height: 278px;
}

@media (max-width: 768px) {
  .mahoroba .howto__item--img {
    width: 40%;
    height: 40%;
  }
}

.mahoroba .howto__item--paragraph {
  width: calc(100% - 302px);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.65em;
  color: #221815;
}

@media (max-width: 768px) {
  .mahoroba .howto__item--paragraph {
    width: calc(100% - 45%);
    font-size: 1.125rem;
    font-weight: 500;
  }
}

.mahoroba .purchase {
  margin: 60px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .mahoroba .purchase {
    margin: 100px 0 0;
  }
}

@media (max-width: 768px) {
  .mahoroba .purchase__link {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .mahoroba .purchase__link img {
    width: 100%;
  }
}

.mahoroba .introduce__purchaseItem--link {
  display: block;
}

@media (max-width: 768px) {
  .mahoroba .introduce__purchaseItem--link {
    display: none;
  }
}

.mahoroba .introduce__purchaseItem--linkSp {
  display: none;
}

@media (min-width: 769px) {
.mahoroba .btn-block{
  /* width: 350px!important;
  max-width: 100%; */
}}

@media (max-width: 768px) {
  .mahoroba .btn-block {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .mahoroba .btn-block a {
    width: 100%;
    height: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background-color: #de5d50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 25px;
  }
}

.mahoroba .maccha{
  line-height: 31px;
}
.mahoroba .maccha_s{
  font-size: 21px;
}

/* ティーバッグ茶　品切れ対応 */
.mahoroba .btn-primary-nohover {
    color: #fff;
    background-color: #c0c0c0;
    border-color: #c0c0c0; 
}

.mahoroba .btn-nohover {
    font-size: 16px;
    font-size: 1rem;
    padding: 13px 16px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 1.42857143;
}

@media (max-width: 768px) {
  .mahoroba .btn-nohover {
    width: 100%;
  }
}

.mahoroba .btn.btn-primary {
  background: #d85145;
  color: #fff;
  border-radius: 10em;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  padding-left: 3em;
  padding-right: 3em;
  max-width: 350px;
}
  
@media (max-width: 768px) {
  .mahoroba .btn.btn-primary.btn-block {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    padding: 5px;
  }
  
  .mahoroba .btn.btn-primary.btn-block {
    min-height: auto;
    font-size: 4vw;
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }
} 
/* ティーバッグ茶　品切れ対応 End */

/* ================================================================== */
/* プレゼントキャンペーン */
/* ================================================================== */
.ec-campaignRole {
  padding-top: 4rem;
}
.ec-campaignList__tabs {
  display: flex;
  width: 100%;
  margin: auto auto 40px;
  border-radius: 60px;
  background-color: rgba(255, 255, 255, 0.15);
  column-gap: 6px;
  position: relative;
  background: #efefef;
  overflow: hidden;
}
.ec-campaignList__tab {
  flex: 1;
  width: 100%;
  border-radius: 60px;
  font-size: 14px;
  color: #7a7a7a;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
  transition: ease all 0.3s;
    padding: 0.75em 0;
}
.ec-campaignList__tab.active {
  color: #fff;
}
.ec-campaignList__indicator {
  position: absolute;
  bottom: 0;
  height: 100%;
  background-color: #000;
  transition: left 0.3s ease;
  border-radius: 60px;
  width: 0;
  left: 0;
  z-index: 0;
  opacity: 1;
}
.ec-campaignList__indicator.hidden {
  opacity: 0;
}
.ec-campaignList__all {
  text-align: center;
  display: flex;
  justify-content: center;
}
.ec-campaignList__all__inner {
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 0.5rem 2rem;
  border: 1px solid #000;
  border-radius: 0.3rem;
  min-height: 3.75rem;
  cursor: pointer;
  transition: ease all 0.3s;
}
.ec-campaignList__all__inner:hover {
  background: #ccc;
}
.ec-campaignList__all.active .ec-campaignList__all__inner {
  background: #000;
  color: #fff;
}
.ec-campaignList__contents {
  display: flex;
  gap: 1rem min(1.4%, 1rem);
  flex-wrap: wrap;
}
.ec-campaignList__content {
  width: calc((100% - min((1.4% * 3), (1rem * 3))) / 4);
}
.ec-campaignList__content__img {
  aspect-ratio: 26 / 17;
  margin-bottom: 0.5rem;
}
.ec-campaignList__content__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.ec-campaignList__content__ttl {
  font-size: 1.25rem;
  letter-spacing: 0em;
  line-height: 1.4;
  font-feature-settings: "palt";
  margin-bottom: 0.6rem;
}
.ec-campaignList__content__ttl .-small {
  font-size: 0.85em;
}
.ec-campaignList__content__txt {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.ec-campaignList__inactive .-txt {
  font-size: 4rem;
  display: grid;
  place-content: center;
  color: #999;
  border: 1px solid #999;
  aspect-ratio: 26 / 17;
  width: 100%;
}
@media (max-width: 991px) {
  .ec-campaignRole {
    padding-top: max(1.5rem, 6.4vw);
  }
  .ec-campaignList__tabs {
    background: transparent;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0;
  }
  .ec-campaignList__tab {
    background: #efefef;
    width: 48%;
    flex: none;
    padding: 0.5em;
  }
  .ec-campaignList__tab.active {
    background: #000;
  }
  .ec-campaignList__indicator {
    visibility: hidden !important;
  }
  .ec-campaignList__contents {
    flex-wrap: wrap;
    gap: 1rem 3%;
    justify-content: flex-start;
  }
  .ec-campaignList__content {
    width: calc((100% - 3%) / 2);
  }
  .ec-campaignList__active__inner {
    display: flex;
    align-items: flex-start;
    gap: 3%;
  }
  .ec-campaignList__content__img {
    width: 40%;
  }
  .ec-campaignList__content__img img {
  }
  .ec-campaignList__content__txts {
    flex: 1;
  }
  .ec-campaignList__content__ttl {
  }
  .ec-campaignList__content__txt {}
  .ec-campaignList__inactive .-txt {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .ec-campaignRole {}
  .ec-campaignList__tabs {
  }
  .ec-campaignList__tab {
  }
  .ec-campaignList__tab.active {
  }
  .ec-campaignList__indicator {
  }
  .ec-campaignList__contents {
    gap: 4vw 3%;
  }
  .ec-campaignList__active__inner {
    display: block;
  }
  .ec-campaignList__content__img {
    width: 100%;
  }
  .ec-campaignList__content__img img {
  }
  .ec-campaignList__content__txts {
  }
  .ec-campaignList__content__ttl {
  }
  .ec-campaignList__content__txt {}
  .ec-campaignList__inactive .-txt {
    width: 100%;
  }
}
@media (max-width: 600px) { 
  .ec-campaignRole {}
  .ec-campaignList__tabs {
  }
  .ec-campaignList__tab {
    width: 100%;
  }
  .ec-campaignList__tab.active {
  }
  .ec-campaignList__indicator {
  }
  .ec-campaignList__contents {
    gap: min(8vw, 2rem) 3%;
  }
  .ec-campaignList__content {
    width: 100%;
  }
  .ec-campaignList__content__img {
  }
  .ec-campaignList__content__img img {
  }
  .ec-campaignList__content__txts {
  }
  .ec-campaignList__content__ttl {
    text-align: center;
  }
  .ec-campaignList__content__txt {}
}
/* JS絞り込み出し分け */
.ec-campaignList__active,
.ec-campaignList__inactive {
  display: none;
}
.js-filter__item.active {
  order: 0;
}
.js-filter__item.inactive {
  order: 1;
}
.js-filter__item.active .ec-campaignList__active {
  display: block;
}
.js-filter__item.inactive .ec-campaignList__inactive {
  display: block;
}
@media (max-width: 600px) { 
  .js-filter__item.inactive {
    display: none;
  }
}