@charset "UTF-8";
/*
  商品ラインナップ
-----------------------------------------------*/
.our-pride-02 {}

/*----------------
  sec-01
*/
.sec-01 {
  padding: 60px 0;
}
.sec-01__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
.sec-01__inner ._main {
  background-color: #fff;
  width: 90%;
  padding: 5%;
  position: relative;
  margin-top: -4%;
}
.sec-01__inner ._main ._heading01 {
  font-size: clamp( 1.25rem, calc( 1.13rem + 0.48vw ), 1.5rem );
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .sec-01 {
    padding: 100px 0;
  }
  .sec-01__inner {
    flex-direction: row;
    margin-top: 80px;
  }
  .sec-01__inner ._pic {
    width: 56%;
  }
  .sec-01__inner ._main {
    width: 47%;
    margin-left: -3%;
    margin-top: 0;
  }
}

/*----------------
  sec-02
*/
.sec-02 {
  background-color: var(--c-main-green);
  color: #fff;
  padding: 80px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.sec-02::before {
  background: url("/images/ill_05.svg") no-repeat right top;
  background-size: contain;
  content: '';
  position: absolute;
  right: -2vw;
  top: 0;
  transform: rotate(180deg);
  width: 68%;
  aspect-ratio: 1 / 1;
  opacity: 0.25;
  z-index: 0;
  overflow: hidden
}
@media screen and (min-width: 768px) {
  .sec-02 {
    padding: 100px 0;
  }
  .sec-02::before {
    width: 38%;
    opacity: 0.15;
  }
}

.sec-02__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px 0;
  margin: 40px auto 0;
}
.sec-02__inner ._pic {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
.sec-02__inner ._pic li:nth-of-type(1) {
  width: calc(100% * (380 / 480));
  margin: 0 0 0 auto;
}
.sec-02__inner ._pic li:nth-of-type(2) {
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  width: calc(100% * (270 / 480));
  margin: -50px auto 0 0;
}
.kodawari-01__list li {
  background-color: #077B86;
  border-radius: 10px;
  color: #fff;
  margin: 0 0 10px;
  padding: 30px 20px;
  text-align: center;
}
.kodawari-01__list li .kodawari-01__ttl {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  font-size: clamp( 1.125rem, calc( 1.06rem + 0.24vw ), 1.25rem ); /* 18px - 20px */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .sec-02__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .sec-02__inner ._pic {
    max-width: auto;
    margin: 0;
    width: 45%;
  }
  .sec-02__inner ._main {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .sec-02__inner ._pic {
    width: 40%;
  }
  .sec-02__inner ._main {
    width: 55%;
  }
}

/*----------------
  sec-03
*/
.sec-03 {
  padding: 60px 0;
  position: relative;
  text-align: center;
}

/* こだわり商品一覧 */
.feature-list {
  position: relative;
  text-align: left;
  margin-bottom: 7vw;
}
.feature-list:last-of-type {
  margin-bottom: 0;
}

.feature-list ._pic {
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 40 / 31;
  z-index: 3;
}

.feature-list ._main {
  display: flex;
  flex-direction: column;
  position: relative;
}
.feature-list ._main::before {
  content: "";
  display: block;
  aspect-ratio: 40 / 31;
  margin-bottom: 20px;
}
.feature-list ._main ._main__inner {
  padding: 20px 5%;
}
.feature-list ._main ._main__inner .emphasis-txt {
  color: var(--c-main-bright-green);
  font-size: clamp( 1rem, calc( 0.94rem + 0.24vw ), 1.125rem ); /* 16px - 18px */
  font-weight: bold;
  margin: 0.5em 0;
}

/*商品の特徴ボックス*/
.feature-list ._main ._main__inner .feature-box {
  background-color: #fff;
  border-radius: 0 30px 30px 30px;
  /*color: var(--c-base-text);*/
  padding: 30px;
  margin: 30px 0 0;
}
.feature-list ._main ._main__inner .feature-box .feature-box__list li {
  list-style: disc;
  margin: 0 0 1em 1.5em;
}
.feature-list ._main ._main__inner .feature-box .feature-box__list li:last-of-type {
  margin: 0 0 0 1.5em;
}
.feature-box .feature-box__list .feature-box_caption {
  font-size: clamp( 1rem, calc( 0.94rem + 0.24vw ), 1.125rem ); /* 16px - 18px */
  font-weight: bold;
  margin-bottom: 0.2em;
}

@media (min-width: 768px) {
  .sec-03 {
    padding: 100px 0;
  }
  
  .feature-list ._pic {
    width: 40vw;
  }
  .feature-list ._main {
    flex-direction: row;
  }
  .feature-list ._main::before {
    width: 40vw;
    margin-bottom: 0;
  }
  .feature-list ._main ._main__inner {
    width: 60vw;
  }

  /*左右交互にする*/
  .feature-list.l-reverse ._pic {
    right: 0;
    left: auto;
  }
  .feature-list.l-reverse ._main {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1260px) {
  .feature-list ._main ._main__inner {
    width: 60vw;
    padding: 2.5% calc(50vw - 600px) 2.5% 5%;
  }
  /*左右交互にする*/
  .feature-list.l-reverse ._main ._main__inner {
    padding: 2.5% 5% 2.5% calc(50vw - 600px);
  }
}

/*----------------
  sec-04 （商品リストはsec-03と共通）
*/
.sec-04 {
  background-color: var(--c-main-green);
  color: #fff;
  padding: 60px 0;
  position: relative;
  text-align: center;
}
.sec-04 .feature-list ._main ._main__inner .feature-box {
  background-color: #077B86;
}
.sec-04 .feature-list ._main ._main__inner .emphasis-txt {
  color: #fff;
}

@media (min-width: 768px) {
  .sec-04 {
    padding: 100px 0;
  }
}

/*----------------
  sec-05
*/
.sec-05 {
  background-color: var(--c-main-dark-green);
  color: #fff;
  padding: 70px 0 50px;
  position: relative;
  text-align: center;
}
/*オリジナル商品　自動スクロール（splide）*/
.original-products {
  margin: 40px 0;
}
.original-products .original-pd__list {
  display: flex;
  gap: 0 10px;
}
.original-products .original-pd__list ._item {
  overflow: hidden;
}
.original-products .original-pd__list ._item a {
  position: relative;
  display: block;
  transition: 0.3s;
}
/* 写真に重ねたアイコン */
.original-pd__list ._item a .pd-icon-external {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #000;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.original-pd__list ._item .pd-icon-external::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  mask-image: url("/images/icon_external.svg");
  -webkit-mask-image: url("/images/icon_external.svg");
  mask-repeat: no-repeat; 
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
  position: relative;
}
.original-pd__list img {
  height: 200px;
  width: auto;
  transition: transform .4s ease;
}

@media (min-width: 768px) {
  .original-pd__list img {
    height: 300px;
  }
}

@media (hover: hover) {
  .original-products .original-pd__list ._item a:hover {
    filter: brightness(1.3);
  }
  .original-pd__list ._item a:hover .pd-icon-external {
    background-color: var(--c-link01-hv);
  }
  .original-products .original-pd__list ._item:hover img {
    transform: scale(1.1);
  }
}

/*----------------
  sec-06
*/
.sec-06 {
  background-color: #E6E8E8;
  padding: 60px 0;
  position: relative;
}
.sec-06 .btn {
  margin: 30px 0;
}

/*
  タイトル・テキスト
-----------------------------------------------*/

/*ポイントタイトル*/
.point-ttl {
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}
/*ポイントマーク*/
.point-ttl .point-mark {
  background-color: #222;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 6px 20px;
  text-align: center;
  width: max-content;
  margin: 0 auto 20px;
}
.point-ttl .point-ttl__txt {
  font-size: clamp( 1.375rem, calc( 1.14rem + 0.96vw ), 1.875rem ); /*22px - 30px*/
  font-weight: 700;
}

/*タイトル（商品一例）*/
.ttl-example {
  border-top: 1px solid rgba(195,195,195,0.4);
  font-size: clamp( 1.125rem, calc( 1.0rem + 0.48vw ), 1.375rem ); /* 18px - 22px */
  font-weight: 700;
  margin-top: 40px;
  padding: 30px 0;
  text-align: left;
}

.lead-01 {
  color: inherit;
  font-size: calc(15rem / 16);
  line-height: 2;
}
@media screen and (min-width: 1024px) {
  .lead-01 {
    font-size: 1rem;
  }
}