@charset "UTF-8";

/* ===================
      ROOTS
=================== */

:root {
  --font-title: 'Century Gothic', "century-gothic", sans-serif;
  --font-title-regular-safari: "century-gothic-Regular";
  --font-title-bold-safari: "century-gothic-Bold";
  --color-font: #000000;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/

/*
.desc_detail5 #coffret .accordion_wrap {
  display: none;
}
*/

.desc_detail5 #coffret .accordion_wrap {
  position: relative;
  padding-bottom: 3rem;
  height: 9rem;
  /* margin-bottom: 2rem; */
  /* margin: 20px auto; */
  /* border: 1px solid #000; */
  overflow: hidden;
  transition: .4s;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease-in-out;
}

.desc_detail5 #coffret .accordion_wrap.open {
    height: auto !important;
    grid-template-rows: 1fr;
}

.desc_detail5 #coffret .accordion_wrap .to_close {
    display: none;
}

.desc_detail5 #coffret .accordion_wrap.open .to_close {
    display: block;
}

.desc_detail5 #coffret .accordion_wrap.open .to_open {
    display: none;
}

.desc_detail5 #coffret .accordion_wrap::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6rem;
  /* background: rgb(0,0,0); */
  background: linear-gradient(0deg, rgb(216 214 219) 40%, rgba(255, 255, 255, 0) 100%);
  transition: .4s;
}

.desc_detail5 #coffret .accordion_wrap.open:before{
  opacity: 0;
  visibility: hidden;
}

.desc_detail5 #coffret .btn_accordion_text{
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  text-decoration: underline;
  cursor: pointer;
  font-size: 1.1rem;
  /* padding-top: 3rem; */
  /* border: none; */
}

.desc_detail5 #coffret .btn_accordion {
  width: fit-content;
  margin: 1rem auto 0;
  cursor: pointer;
  position: relative;
  padding-right: 1.3rem;
  padding-bottom: 0.2rem;
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 1;
  transition: opacity .2s;
  color: #A7A8A8;
  border-bottom: 1px solid #A9AAAA;
}

.desc_detail5 #coffret .btn_accordion .arrow{
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.desc_detail5 #coffret .btn_accordion .arrow::before,
.desc_detail5 #coffret .btn_accordion .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 0.6rem;
  background: #A9AAAA;
  transition: all 0.5s;
}

.desc_detail5 #coffret .btn_accordion .arrow::after{
  width: 0.6rem;
  height: 1px;
}

.desc_detail5 #coffret .btn_accordion.active .arrow::before{
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .desc_detail5 #coffret .btn_accordion {
    margin: 2rem auto 0;
    padding-right: 3rem;
    padding-bottom: 0.4rem;
    font-size: 2rem;
    font-size: 2.1rem;
  }

  .desc_detail5 #coffret .btn_accordion .arrow{
    width: 1.4rem;
    height: 1.4rem;
  }

  .desc_detail5 #coffret .btn_accordion .arrow::before,
  .desc_detail5 #coffret .btn_accordion .arrow::after {
    height: 1.4rem;
    width: 1px;
  }

  .desc_detail5 #coffret .btn_accordion .arrow::after{
    width: 1.4rem;
    height: 1px;
  }
}


/*------------ accordion_menu ------------*/

.desc_detail5 #coffret .accordion{
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: relative;
}

.desc_detail5 #coffret .accordion + dd{
  display: none;
}

.desc_detail5 #coffret .accordion .accordion_btn{
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: var(--color-lp_primary);
  border-radius: 100%;
}

.desc_detail5 #coffret .accordion .accordion_btn:before,
.desc_detail5 #coffret .accordion .accordion_btn:after{
  content: "";
  width: 1.5rem;
  height: 0.1rem;
  background-color: #96BDB3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
}

.desc_detail5 #coffret .accordion .accordion_btn:after{
  height: 1.5rem;
  width: 0.1rem;
}

.desc_detail5 #coffret .accordion.is-active .accordion_btn:after{
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .desc_detail5 #coffret .accordion .accordion_btn{
    width: 1.3rem;
    height: 1.3rem;
    right: -2rem;
  }

  .desc_detail5 #coffret .accordion .accordion_btn:before{
    width: 1.3rem;
    height: 1.3rem;
    height: .1rem;
  }

  .desc_detail5 #coffret .accordion .accordion_btn:after{
    height: 1.3rem;
    width: 1.3rem;
    width: .1rem;
  }
}


/*------------ simplebar ------------*/

.desc_detail5 #coffret .simple-bar_wrap{
  width: -moz-available;
  width: -webkit-fill-available;
  margin: auto;
}

@media (max-width: 768px) {
  .desc_detail5 #coffret .simple-bar_wrap *{
    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
  }

  .desc_detail5 #coffret .simple-bar_wrap{
    overflow-x: scroll;
    padding-bottom: 5rem;
  }

  .desc_detail5 #coffret .simple-bar_wrap *::-webkit-scrollbar{
    display:none;
  }

  .desc_detail5 #coffret .simple-bar_wrap ul{
    display: flex;
    width: fit-content;
    padding: 0 7rem;
  }

  .desc_detail5 #coffret .simplebar-track.simplebar-horizontal {
    height: 0.6rem;
    width: 61rem;
    background: rgba(255, 255, 255, .7);
    margin: auto;
  }

  .desc_detail5 #coffret .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
    top: 0;
    height: 0.6rem;
  }

  .desc_detail5 #coffret .simplebar-scrollbar:before{
    background: #A7A7A7;
    left: 0;
    right: 0;
    opacity: 1;
  }
}


/*------------ slider ------------*/

.desc_detail5 #coffret .slick-dots{
  position: absolute;
  height: 1rem;
  bottom: -2.5rem;
}

.desc_detail5 #coffret .slick-dots li{
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  margin: 0 1rem;
}

.desc_detail5 #coffret .slick-dots li button{
  width: 1rem;
  height: 1rem;
  padding: 0;
  background: transparent;
}

.desc_detail5 #coffret .slick-dots li button:before{
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  font-size: 0;
  background: rgb(255 255 255 / 40%);
  border-radius: 100%;
  opacity: 1;
}

.desc_detail5 #coffret .slick-dots li.slick-active button:before{
  background-color: #fff;
}

.desc_detail5 #coffret .slick-prev,
.desc_detail5 #coffret .slick-next{
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  background-color: rgb(255 255 255 / 70%);
  z-index: 5;
}

.desc_detail5 #coffret .slick-prev{
  left: -6rem;
  transform: translateY(-50%) translateX(-50%);
}

.desc_detail5 #coffret .slick-next{
  right: -5rem;
  transform: translateY(-50%) translateX(50%);
}

.desc_detail5 #coffret .slick-prev:before,
.desc_detail5 #coffret .slick-next:before{
  content: '';
  font-size: 0;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.desc_detail5 #coffret .slick-prev:before{
  border-bottom: 2px solid #6F5A93;
  border-left: 2px solid #6F5A93;
  transform: translateX(25%) rotate(45deg);
}

.desc_detail5 #coffret .slick-next:before{
  border-top: 2px solid #6F5A93;
  border-right: 2px solid #6F5A93;
  transform: translateX(-25%) rotate(45deg);
}

.desc_detail5 #coffret .slick-track {
  display: flex;
}

.desc_detail5 #coffret .slick-slide {
  height: auto !important;
}

@media (max-width: 768px) {
  .desc_detail5 #coffret .slick-dots{
    height: 2rem;
    bottom: -3rem;
  }

  .desc_detail5 #coffret .slick-dots li{
    width: 1rem;
    height: 1rem;
    /* line-height: 2rem; */
    margin: 0 1rem;
  }

  .desc_detail5 #coffret .slick-dots li button{
    width: 1rem;
    height: 1rem;
  }

  .desc_detail5 #coffret .slick-dots li button:before{
    /* line-height: 2rem; */
    width: 1rem;
    height: 1rem;
  }

  .desc_detail5 #coffret .slick-prev,
  .desc_detail5 #coffret .slick-next{
    width: 6rem;
    height: 6rem;
  }

  .desc_detail5 #coffret .slick-prev{
    left: 12rem;
  }

  .desc_detail5 #coffret .slick-next{
    right: 12rem;
  }

  .desc_detail5 #coffret .slick-prev:before,
  .desc_detail5 #coffret .slick-next:before{
    width: 2rem;
    height: 2rem;
  }
}


/*--------------------------------
                共 通
 --------------------------------*/

.desc_detail5 #coffret .bg_wrap {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0);
}

.desc_detail5 #coffret {
    position: relative;
    z-index: 1;
    margin: 8rem 0;
    font-family: "futura-pt", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
    color: #000;
    letter-spacing: .1em;
}


.desc_detail5 #coffret .bg_wrap::before {
    display: block;
    position: fixed;
    top: 0;
    width: 110rem;
    height: 100vh;
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/bg.jpg) center center / cover no-repeat;
    content: "";
}

.desc_detail5 #coffret .sec_lead .main_ttl_wrap {
    text-align: center;
}

.desc_detail5 #coffret section {
    padding: 8rem 0;
}

.desc_detail5 #coffret .sec_lead .main_ttl_wrap p {
    color: rgb(255 255 255 / 70%);
    font-size: 2rem;
    font-weight: 300;
}

.desc_detail5 #coffret .sec_lead .main_ttl_wrap h2 {
    font-size: 2.4rem;
    line-height: 1.7;
    margin: 1.5rem auto 5rem;
    color: #fff;
}

.desc_detail5 #coffret .sec_lead .check_wrap {
    width: 74rem;
    border: 1px solid;
    margin: 0 auto;
    padding: 4rem 5rem 4rem;
    color: #fff;
	border-top: none;
}

.desc_detail5 #coffret .sec_lead .check_ttl {
    font-size: 1.8rem;
    /* background: #96BDB3; */
    position: relative;
    font-weight: 600;
    width: fit-content;
    margin: -5.2rem auto 3rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl span::before, .desc_detail5 #coffret .sec_lead .check_ttl span::after {
    position: absolute;
    content: '';
    width: .8rem;
    height: .8rem;
    top: 40%;
    transform: translate(0, -50%);
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/dia.svg) center center / cover no-repeat;
}

.desc_detail5 #coffret .sec_lead .check_ttl span::before {
    left: -1.2rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl span::after {
    right: -1.2rem;
}

.desc_detail5 #coffret .sec_lead .check_wrap li {
    font-size: 1.5rem;
    position: relative;
    /* margin-top: 1.2rem; */
    /* width: 32rem; */
    padding-left: 2.5rem;
}

.desc_detail5 #coffret .sec_lead .check_wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
}

.desc_detail5 #coffret .sec_lead .check_wrap li::before {
    content: '';
    position: absolute;
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/check.svg) center center / cover no-repeat;
    width: 1.7rem;
    height: 1.4rem;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.desc_detail5 #coffret .sec_kit, .desc_detail5 #coffret .sec_howto {
    background: linear-gradient(rgb(222 240 245 / 80%), rgb(255 255 255 / 80%), rgb(255 255 255 / 80%), rgb(222 240 245 / 80%));
}

.desc_detail5 #coffret .sec_kit h3 {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.8;
}

.desc_detail5 #coffret .sec_kit h3 span {
    display: block;
    font-size: 1.6rem;
}

.desc_detail5 #coffret .sec_kit img {
    width: 38rem;
    margin: 0 auto 2rem;
    display: block;
}

.desc_detail5 #coffret .sec_kit .kit_wrap {
    width: 44rem;
    /* background: #fff; */
    border: 1px solid rgb(62 134 157 / 50%);
    margin: 0 auto;
    padding: 0 3rem 2rem;
}

.desc_detail5 #coffret .sec_kit .kit_ttl {
    color: #3E869D;
    position: relative;
    margin: -1.2rem auto 1.2rem;
    font-weight: 600;
    text-align: center;
    font-size: 1.6rem;
}

.desc_detail5 #coffret .sec_kit .kit_ttl::after {
    content: '';
    background: #e0e0e2;
    height: .5rem;
    width: 10rem;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.desc_detail5 #coffret .sec_kit .kit_ttl span {
    position: relative;
    z-index: 1;
}

.desc_detail5 #coffret .sec_kit .kit_wrap li {
    font-size: 1.3rem;
    position: relative;
    padding-left: 1.5rem;
    margin-top: .8rem;
}

.desc_detail5 #coffret .sec_kit .kit_wrap li::before {
    content: '';
    width: .6rem;
    height: .6rem;
    position: absolute;
    left: 0;
    top: 40%;
    transform: translate(0, -50%);
}

.desc_detail5 #coffret .sec_kit .kit_wrap li:nth-child(1)::before {
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/list_item1.svg) center center / cover no-repeat;
}

.desc_detail5 #coffret .sec_kit .kit_wrap li:nth-child(2)::before {
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/list_item2.svg) center center / cover no-repeat;
}

.desc_detail5 #coffret .sec_kit .kit_wrap li:nth-child(3)::before {
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435338/list_item3.svg) center center / cover no-repeat;
}

.desc_detail5 #coffret .sec_ttl {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 4rem;
    color: #fff;
}

.desc_detail5 #coffret .sec_ttl span {
    font-size: 2.8rem;
    display: block;
    font-weight: 400;
    letter-spacing: .1em;
}

.desc_detail5 #coffret .sec_point .point_ttl {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.6;
}

.desc_detail5 #coffret .sec_point .point_ttl span {
    width: 4rem;
    display: block;
    margin: 0 auto 1.5rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .point_blk {
    padding: 4rem 6rem;
    display: flex;
    gap: 3.5rem;
    align-items: flex-end;
}

.desc_detail5 #coffret .sec_point .point1_wrap .img_wrap {
    width: 21rem;
}

.desc_detail5 #coffret img {
    width: 100%;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_ingredient {
    width: 37.5rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_ico {
    font-size: 1.1rem;
    border: 1px solid;
    display: inline-block;
    padding: .3rem .4rem .2rem .6rem;
    text-align: center;
    line-height: 1;
    background: #fff;
}

.desc_detail5 #coffret .sec_point .point1_wrap .point_blk:nth-child(1) .item_ico {
    color: #F2CFA1;
}

.desc_detail5 #coffret .sec_point .point1_wrap .point_blk:nth-child(2) .item_ico {
    color: #AFCAD0;
}

.desc_detail5 #coffret .sec_point .point1_wrap .point_blk:nth-child(3) .item_ico {
    color: #CEBFD1;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_name {
    font-size: 1.4rem;
    margin: .8rem 0 1.5rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_name span {
    font-weight: 600;
    font-size: 1.3rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_txt {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: .5rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap {
    margin-bottom: 8rem;
}

.desc_detail5 #coffret .sec_point .point_blk {
    background: rgb(255 255 255 / 70%);
    width: 66rem;
    margin: 4.5rem auto 6rem;
    position: relative;
    padding: 3rem 0 4rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .point_blk {
    padding: 3rem 8rem 6rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .item_img {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .item_img li {
    width: 16rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .item_img p {
    text-align: center;
    font-size: 1.3rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .base_txt .ttl_txt {
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid;
    width: 17rem;
    padding: .5rem 0 .4rem;
    margin: 2rem auto 1.2rem;
	font-weight: 600;
}

.desc_detail5 #coffret .sec_point .point2_wrap .point_blk:nth-child(1) .base_txt .ttl_txt {
    color: #96BDB3;
}

.desc_detail5 #coffret .sec_point .point2_wrap .point_blk:nth-child(2) .base_txt .ttl_txt {
    color: #CEBFD1;
}

.desc_detail5 #coffret .sec_point .point2_wrap .base_txt .detail_txt {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li {
    /* overflow: hidden; */
    /* margin-top: 1rem; */
    /* padding-left: 1rem; */
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li img {
    /* width: 10.8rem; */
    /* position: relative; */
    /* float: left; */
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dl {
    /* background: #fff; */
    /* border-radius: .5rem; */
    /* width: 52.6rem; */
    /* margin: 1rem 0 1rem -5.4rem; */
    /* padding: 2rem 2.5rem 2rem 7.8rem; */
    /* float: right; */
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dt span {
    font-size: 1.4rem;
    display: block;
}

.desc_detail5 #coffret .font_bold {
    font-weight: 600;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dt {
    font-size: 1.2rem;
    font-weight: 600;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dd {
    font-size: 1.2rem;
    /* line-height: 1.8; */
    /* padding-top: 1.2rem; */
    /* margin-top: 1.2rem; */
    /* border-top: 1px solid #EEEEEE; */
}

.desc_detail5 #coffret .note {
    font-size: 1rem;
}

.desc_detail5 #coffret .sec_point .note {
    text-align: center;
    margin-top: 2rem;
    line-height: 1.7;
}

.desc_detail5 #coffret .sec_howto p {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2;
    margin-top: -1rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .point_blk h4 {
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .point_blk h4 span {
    font-size: 1.8rem;
    display: block;
}

.desc_detail5 #coffret .review_blk {
    width: 26rem;
    position: relative;
    background: #fff;
    border-radius: .5rem;
    padding: 2rem;
}

.desc_detail5 #coffret .review_slider {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.desc_detail5 #coffret .review_blk .item_img {
    width: 4.5rem;
    position: absolute;
    top: -2rem;
    right: 0;
}

.desc_detail5 #coffret .review_blk .staff_prof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.desc_detail5 #coffret .review_blk .staff_prof img {
    width: 5rem;
}

.desc_detail5 #coffret .review_blk .staff_prof p {
    font-size: 1.1rem;
}

.desc_detail5 #coffret .review_blk .review_txt {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.desc_detail5 #coffret .sec_item {
    padding-top: 0;
    padding-bottom: 10rem;
}

.desc_detail5 #coffret .sec_item .sec_ttl {
    font-size: 2rem;
    /* margin-bottom: 3rem; */
}

.desc_detail5 #coffret .sec_item .item_blk {
    width: 24rem;
    background: #fff;
    border-radius: 2rem;
    margin: 0 .8rem;
    padding: 3rem;
}

.desc_detail5 #coffret .sec_item .item_wrap {
    width: 76rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.desc_detail5 #coffret .sec_item .item_blk .item_cate {
    color: #A9AAAA;
    border: 1px solid #BEBEBE;
    border-radius: 1rem;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1;
    padding: 0.6rem 0 .5rem;
    /* margin-bottom: 1rem; */
}

.desc_detail5 #coffret .sec_item .item_blk .item_vari {
    background: #BEBEBE;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 1rem;
    line-height: 1;
    padding: 0.8rem 0 .5rem;
    margin-top: 1rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_name {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 1rem -2rem 1.5rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_price {
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    gap: .5rem;
    align-items: center;
    margin: 0 -2rem;
}

.desc_detail5 #coffret .sec_item .item_blk .tax {
    /* font-size: 1rem; */
}
.desc_detail5 #coffret .sec_point .point2_wrap .point_blk:nth-child(2) .accordion_btn:before, .desc_detail5 #coffret .sec_point .point2_wrap .point_blk:nth-child(2) .accordion_btn:after {
    background-color: #CEBFD1;
}
.desc_detail5 #coffret .marker_green {
    background: linear-gradient(transparent 60%, rgb(150 189 179 / 40%) 60%);
}

.desc_detail5 #coffret .marker_purple {
    background: linear-gradient(transparent 60%, rgb(111 90 147 / 20%) 60%);
}
.desc_detail5 #coffret .sec_lead .check_ttl::before, .desc_detail5 #coffret .sec_lead .check_ttl::after {
    content: '';
    background: #fff;
    height: .1rem;
    width: 25rem;
    background-size: 100%;
    position: absolute;
    top: 40%;
    left: -27.3rem;
    transform: translate(0, -50%);
}
.desc_detail5 #coffret .sec_lead .check_ttl::after {
    left: auto;
    right: -27.3rem;
}
.desc_detail5 #coffret .sec_lead .check_ttl span {
    position: relative;
    z-index: 1;
}

.desc_detail5 #coffret .sec_kit .item_list {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 6rem;
}

.desc_detail5 #coffret .sec_kit .item_list li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.desc_detail5 #coffret .sec_kit .item_list img {
    width: 10rem;
    margin-bottom: 0;
}

.desc_detail5 #coffret .sec_kit .item_list li:nth-child(2) img {
    width: 11.3rem;
    margin-top: -4rem;
}

.desc_detail5 #coffret .sec_kit .item_detail dt {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.desc_detail5 #coffret .sec_kit .item_detail dd {
    font-size: 1.3rem;
    line-height: 1.7;
}

.desc_detail5 #coffret .sec_point .point_blk::before {
    content: '';
    position: absolute;
    width: 10rem;
    height: 2rem;
    top: -2rem;
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/bg_point.png) center center / cover no-repeat;
    left: 50%;
    transform: translate(-50%, 0);
}

.desc_detail5 #coffret .sec_point .point_num {
    color: #6F5A93;
    font-size: 2.4rem;
    text-align: center;
    margin-top: -4.5rem;
    position: relative;
    z-index: 1;
}

.desc_detail5 #coffret .sec_point .point_blk h4 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 1rem auto 2rem;
}

.desc_detail5 #coffret .sec_point .img_main {
    width: 24rem;
    margin: 0 auto 1rem;
}

.desc_detail5 #coffret .sec_point .point_detail {
    font-size: 1.3rem;
    text-align: center;
    /* line-height: 1.8; */
}

.desc_detail5 #coffret .sec_point .point1 .point_detail {
    position: relative;
}

.desc_detail5 #coffret .sec_point .point1 .img_sub {
    position: absolute;
    width: 6.5rem;
    bottom: -2rem;
    right: 8rem;
}

.desc_detail5 #coffret .sec_point .point_detail p {
    line-height: 1.7;
    margin-top: 1.5rem;
}
.desc_detail5 #coffret .sec_point .oil_detail h5 {
    text-align: center;
    font-size: 2rem;
    position: relative;
    color: #D67AA0;
    margin: 0 auto 1.2rem;
	width: 50rem;
}

.desc_detail5 #coffret .sec_point .oil_detail h5::after {
    left: auto !important;
    right: 0;
}

.desc_detail5 #coffret .sec_point .oil_detail h5 span {
    position: relative;
    z-index: 1;
}

.desc_detail5 #coffret .sec_point .oil_detail h5::before, .desc_detail5 #coffret .sec_point .oil_detail h5::after {
    height: .1rem;
    width: 21.5rem;
    background: #D67AA0;
    content: '';
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.desc_detail5 #coffret .sec_point .point2 .detail_txt dt {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.desc_detail5 #coffret .sec_point .point2 .detail_txt dd {
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.7;
    margin: .5rem auto 2rem;
}

.desc_detail5 #coffret .sec_point .ingredient_list li {
    background: rgb(255 255 255 / 20%);
    width: 46rem;
    margin: .8rem auto 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: .5rem;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list img {
    mix-blend-mode: multiply;
    width: 10rem;
}

.desc_detail5 #coffret .sec_point .oil_detail {
    margin-bottom: 3rem;
}

.desc_detail5 #coffret .sec_point .oil_detail:nth-child(2) h5 {
    color: #6BBE9D;
}

.desc_detail5 #coffret .sec_point .oil_detail:nth-child(3) h5::before, .desc_detail5 #coffret .sec_point .oil_detail:nth-child(3) h5::after {
    background: #DF944D;
}

.desc_detail5 #coffret .sec_point .oil_detail:nth-child(2) h5::before, .desc_detail5 #coffret .sec_point .oil_detail:nth-child(2) h5::after {
    background: #6BBE9D;
    width: 12.5rem;
}


.desc_detail5 #coffret .sec_point .point3 .img_area {
    position: relative;
}

.desc_detail5 #coffret .sec_point .point3 .img_sub {
    width: 11.6rem;
    position: absolute;
    bottom: 0;
    right: 11rem;
}

.desc_detail5 #coffret .sec_howto .sec_ttl {
    color: #000;
}

.desc_detail5 #coffret .sec_howto .by_scene {
    background: rgb(255 255 255 / 30%);
    padding: 3rem 5rem 4rem;
    width: 66rem;
    margin: 3rem auto 0;
}

.desc_detail5 #coffret .sec_howto .by_scene h4 {
    font-size: 1.8rem;
    color: #6F5A93;
    position: relative;
    margin: 0 auto 2rem;
    font-weight: 600;
    width: fit-content;
}

.desc_detail5 #coffret .sec_howto .by_scene h4::before, .desc_detail5 #coffret .sec_howto .by_scene h4::after {
    content: '';
    position: absolute;
    width: .8rem;
    height: .8rem;
    top: 40%;
    transform: translate(0, -50%);
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/dia_howto.svg) center center / cover no-repeat;
}

.desc_detail5 #coffret .sec_howto .by_scene h4::before {
    left: -1.4rem;
}

.desc_detail5 #coffret .sec_howto .by_scene h4::after {
    right: -1.4rem;
}

.desc_detail5 #coffret .sec_howto .by_scene ul {
    display: flex;
    gap: 1rem;
}

.desc_detail5 #coffret .sec_howto .by_scene  li {
    width: 18rem;
}

.desc_detail5 #coffret .sec_howto .by_scene dt {
    font-size: 1.4rem;
    font-weight: 600;
    margin: .5rem 0 .3rem;
}

.desc_detail5 #coffret .sec_howto .by_scene dd {
    font-size: 1.2rem;
}
.desc_detail5 #coffret .marker_blue {
    background: linear-gradient(transparent 60%, rgb(61 134 157 / 20%) 60%);
}


.desc_detail5 #coffret .sec_item .item_blk .item_ttl {
    height: 7rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_price dt {
    font-size: 1rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_price.font_red {
    color: #C12929;
}

.desc_detail5 #coffret .sec_item .item_blk .item_price dd {
    line-height: 1.6;
}
.desc_detail5 #coffret .sec_item .item_blk .note {
    color: #888888;
    text-align: center;
    margin: .5rem -2rem 0;
    letter-spacing: .05em;
}
.desc_detail5 #coffret .sec_point .point3 {
    margin-bottom: 0 !important;
}
.desc_detail5 #coffret .oil_detail.accordion_wrap {
    height: 13rem;
}
.desc_detail5 #coffret .sec_point .oil_detail:nth-child(3) h5 {
    color: #DF944D;
}

/*--------------------------------
            Responsive
 --------------------------------*/

@media screen and (max-width: 1400px){
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}


/*--------------------------------
            Layout  PC
 --------------------------------*/
@media (min-width: 769px) {
  .desc_detail5 #coffret .sp_only{display: none;}
	
.desc_detail5 #coffret .sec_point .point1_wrap .item_ingredient {
    display: block;
}
.desc_detail5 #coffret .sec_point .point2_wrap .base_txt .detail_txt {
    display: block;
}
}
/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 768px) {

  html {
    font-size: calc(10 * (100vw / 390));
  }

  .desc_detail5 #coffret{
    margin: 5rem 0 3rem;
  }
  .desc_detail5 #coffret .sp_only{display: block;}
  .desc_detail5 #coffret .pc_only{display: none;}

  .desc_detail5 #coffret small.note{
    font-size: 2rem;
  }
  .desc_detail5 #coffret section{
    padding: 5rem 0;
  }

.desc_detail5 #coffret .bg_wrap::before {
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435321/bg_sp.jpg) center center / cover no-repeat;
    width: 100%;
}

.desc_detail5 #coffret .sec_lead .main_ttl_wrap p {
    font-size: 1.6rem;
}

.desc_detail5 #coffret .sec_lead .main_ttl_wrap h2 {
    font-size: 1.8rem;
    margin: 1rem auto 4rem;
}

.desc_detail5 #coffret .sec_lead .check_wrap {
    width: 35rem;
    padding: 2.4rem 2.6rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    margin-top: -3.4rem;
}

.desc_detail5 #coffret .sec_lead .check_wrap li {
    font-size: 1.3rem;
    width: auto;
    margin-top: 1rem;
}

.desc_detail5 #coffret .sec_kit h3 {
    font-size: 1.8rem;
}

.desc_detail5 #coffret .sec_kit h3 span {
    font-size: 1.3rem;
}

.desc_detail5 #coffret .sec_kit img {
    width: 28rem;
}

.desc_detail5 #coffret .sec_kit .kit_wrap {
    width: 35rem;
    padding: 0 1.8rem 1.8rem 1.8rem;
}

.desc_detail5 #coffret .sec_kit .kit_wrap li {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-top: 1rem;
}

.desc_detail5 #coffret .sec_kit .kit_ttl {
    font-size: 1.4rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.desc_detail5 #coffret .sec_ttl span {
    font-size: 2.4rem;
}

.desc_detail5 #coffret .sec_ttl {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.desc_detail5 #coffret .sec_point .point_ttl span {
    width: 3.2rem;
    margin-bottom: .5rem;
}

.desc_detail5 #coffret .sec_point .point_ttl {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.desc_detail5 #coffret .sec_point .point_blk {
    width: 35rem;
    padding: 3rem 1.5rem;
    margin-bottom: 5rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .point_blk {
    display: block;
    padding: 2rem 1.5rem 2.5rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .img_wrap {
    width: 19.5rem;
    margin: 0 auto -.8rem;
    padding-right: 3rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .detail_wrap {
    text-align: center;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_name {
    font-size: 1.3rem;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_name span {
    font-size: 1.2rem;
    display: block;
}

.desc_detail5 #coffret .sec_point .point1_wrap .item_txt {
    font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.desc_detail5 #coffret .sec_point .point1_wrap .item_ingredient {
    width: 100%;
}

.desc_detail5 #coffret .sec_point .point2_wrap .item_img li {
    width: 12rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .item_img p {
    font-size: 1.1rem;
    letter-spacing: .05em;
}

.desc_detail5 #coffret .sec_point .point2_wrap .point_blk {
    padding: 2rem 1.5rem 3rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .item_img li img {
    margin-left: -1rem;
    margin-bottom: -1rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .base_txt .ttl_txt {
    font-size: 1.4rem;
    width: 16rem;
    padding-bottom: .2rem;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dl {
    width: 20rem;
    padding: 0 2rem 0 0;
    margin: 0;
    background: transparent;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li {
    /* background: #fff; */
    padding: 1rem 0 1rem 1rem;
    width: 100%;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list img {
    width: 10rem;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dd {
    /* width: 28rem; */
    /* margin-left: -8rem; */
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dt span {
    font-size: 1.3rem;
    padding-bottom: .2rem;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li dt {
    font-size: 1.2rem;
    /* margin-top: .5rem; */
}
.desc_detail5 #coffret .sec_point .point1_wrap {
    margin-bottom: 5rem;
}

.desc_detail5 #coffret .sec_point .point2_wrap .base_txt .detail_txt {
    margin-bottom: 0;
}

.desc_detail5 #coffret .sec_point .point2_wrap .accordion_wrap {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
	height: 8rem;
}

.desc_detail5 #coffret .sec_point .note {
    text-align: left;
}
.desc_detail5 #coffret .review_blk {
    width: 23rem;
    margin: .6rem;
}

.desc_detail5 #coffret .sec_item .item_wrap {
    width: auto;
}

.desc_detail5 #coffret .sec_item .item_blk {
    width: 23rem;
    /* margin: .6rem; */
    padding: 3rem 2rem;
    border-radius: 2rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_img {
    width: 19rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_cate, .desc_detail5 #coffret .sec_item .item_blk .item_vari {
    padding: 0.4rem 0 0.2rem;
    border-radius: .6rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_name {
    font-size: 1.2rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_price {
    font-size: 1.2rem;
}

.desc_detail5 #coffret .sec_item {
    padding-bottom: 7rem;
}
.desc_detail5 #coffret .sec_lead .check_wrap ul {
    justify-content: normal;
    gap: .5rem 4rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl::after {
    right: -9.4rem;
    left: auto !important;
}

.desc_detail5 #coffret .sec_kit .item_list {
    display: block;
    margin-top: 3rem;
}

.desc_detail5 #coffret .sec_kit .item_list li {
    width: 35rem;
    margin: 2rem auto 0;
    gap: 1rem;
}

.desc_detail5 #coffret .sec_kit .item_list li:nth-child(1) img {
    padding-right: 1.8rem;
}

.desc_detail5 #coffret .sec_kit .item_list li:nth-child(2) img {
    width: 10rem;
    margin-top: 0;
}

.desc_detail5 #coffret .sec_kit .item_detail dt {
    font-size: 1.3rem;
    margin-bottom: .8rem;
}

.desc_detail5 #coffret .sec_kit .item_detail dd {
    font-size: 1.2rem;
}

.desc_detail5 #coffret .sec_point .point_num {
    font-size: 2rem;
}

.desc_detail5 #coffret .sec_point .point_blk h4 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: .5rem auto 1rem;
}

.desc_detail5 #coffret .sec_point .img_main {
    width: 18rem;
    margin-bottom: 0;
}

.desc_detail5 #coffret .sec_point .point_detail p {
    margin-top: 1rem;
}

.desc_detail5 #coffret .sec_point .point_detail {
    font-size: 1.2rem;
}

.desc_detail5 #coffret .sec_point .point1 .img_sub {
    width: 6rem;
    right: 0rem;
    bottom: 2rem;
}

.desc_detail5 #coffret .sec_point .oil_detail h5::before, .desc_detail5 #coffret .sec_point .oil_detail h5::after {
    width: 13rem;
}

.desc_detail5 #coffret .sec_point .oil_detail h5 {
    font-size: 1.6rem;
    width: 100%;
}

.desc_detail5 #coffret .sec_point .oil_detail h5::after {
    /* width: 6rem; */
}

.desc_detail5 #coffret .sec_point .point2 .detail_txt dt {
    font-size: 1.3rem;
}

.desc_detail5 #coffret .sec_point .point2 .detail_txt dd {
    font-size: 1.2rem;
}

.desc_detail5 #coffret .sec_point .oil_detail {
    margin-bottom: 2.5rem;
}

.desc_detail5 #coffret .sec_point .point3 .img_sub {
    width: 10rem;
    right: -1rem;
}
.desc_detail5 #coffret .sec_howto .by_scene {
    width: 35rem;
    padding: 2.5rem 1.5rem;
}

.desc_detail5 #coffret .sec_howto .by_scene h4 {
    font-size: 1.5rem;
}

.desc_detail5 #coffret .sec_howto .by_scene ul {
    display: block;
}

.desc_detail5 #coffret .sec_howto .by_scene li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
	margin-top: 1rem;
}

.desc_detail5 #coffret .sec_howto .by_scene img {
    width: 9rem;
}

.desc_detail5 #coffret .sec_howto .by_scene dt {
    font-size: 1.3rem;
    margin: 0 auto .5rem;
}
.desc_detail5 #coffret .sec_item .sec_ttl {
    font-size: 1.8rem;
    /* margin-bottom: 2rem; */
}
.desc_detail5 #coffret .sec_lead .check_ttl::before, .desc_detail5 #coffret .sec_lead .check_ttl::after {
    left: -9.4rem;
    width: 7rem;
}
.desc_detail5 #coffret .sec_item .item_blk .item_vari {
    margin-top: .8rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_ttl {
    height: 5rem;
}
	
.product-slide-section .item_list__item {
	min-width: auto;
}	
}