@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(250 251 252) 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: -3rem;
}

.desc_detail5 #coffret .slick-dots li{
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  margin: 0 0.75rem;
}

.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(170 170 170 / 40%);
  border-radius: 100%;
  opacity: 1;
}

.desc_detail5 #coffret .slick-dots li.slick-active button:before{
  background-color: #AAAAAA;
}

.desc_detail5 #coffret .slick-prev,
.desc_detail5 #coffret .slick-next{
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: rgba(169, 170, 170, .6);
  z-index: 5;
}

.desc_detail5 #coffret .slick-prev{
  left: -2.5rem;
  transform: translateY(-50%) translateX(-50%);
}

.desc_detail5 #coffret .slick-next{
  right: -2.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: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: translateX(25%) rotate(45deg);
}

.desc_detail5 #coffret .slick-next:before{
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  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: -2rem; */
  }

  .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/4573623435338/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: #666;
    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 4rem;
}

.desc_detail5 #coffret .sec_lead  .check_wrap {
    width: 74rem;
    background: rgb(255 255 255 / 50%);
    margin: 0 auto;
    padding: 4rem 5rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl {
    font-size: 1.8rem;
    color: #96BDB3;
    position: relative;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto .5rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl::before, .desc_detail5 #coffret .sec_lead .check_ttl::after {
    position: absolute;
    content: '';
    width: .8rem;
    height: .8rem;
    top: 40%;
    transform: translate(0, -50%);
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435338/dia.svg) center center / cover no-repeat;
}

.desc_detail5 #coffret .sec_lead .check_ttl::before {
    left: -1.2rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl::after {
    right: -1.2rem;
}

.desc_detail5 #coffret .sec_lead .check_wrap li {
    font-size: 1.4rem;
    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;
}

.desc_detail5 #coffret .sec_lead .check_wrap li::before {
    content: '';
    position: absolute;
    background: url(https://f-organics.jp/Contents/ProductDetail/4573623435338/check.svg) center center / cover no-repeat;
    width: 1.6rem;
    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(236 244 242 / 80%), rgb(255 255 255 / 80%), rgb(255 255 255 / 80%), rgb(236 244 242 / 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: 45rem;
    margin: 0 auto;
    display: block;
}

.desc_detail5 #coffret .sec_kit .kit_wrap {
    width: 44rem;
    background: #fff;
    border: 1px solid rgb(150 189 179 / 40%);
    margin: 0 auto;
    padding: 0 3rem 2rem;
}

.desc_detail5 #coffret .sec_kit .kit_ttl {
    color: #96BDB3;
    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: #fff;
    height: .1rem;
    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/4573623435338/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/4573623435338/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;
}

.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 / 50%);
    width: 74rem;
    margin: 1.5rem auto 0;
}

.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;
}

.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.3rem;
}

.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: right;
    margin-top: 2rem;
}

.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;
}

.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: 81rem;
    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: .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: .5rem;
    line-height: 1;
    padding: .3rem 0 .2rem;
    margin-top: .5rem;
}

.desc_detail5 #coffret .sec_item .item_blk .item_ttl {
    /* height: 5rem; */
}

.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;
    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(206 191 209 / 40%) 60%);
}

/*--------------------------------
            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;
}
.desc_detail5 #coffret .accordion_wrap::before {
    content: none;
}

.desc_detail5 #coffret .accordion_wrap {
    padding-bottom: 0;
    height: auto;
}
}
/*--------------------------------
            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/4573623435338/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 3rem;
}

.desc_detail5 #coffret .sec_lead .check_wrap {
    width: 35rem;
    padding: 2.5rem 2.8rem;
}

.desc_detail5 #coffret .sec_lead .check_ttl {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.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: 33rem;
}

.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;
}

.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: 1.5rem 2rem;
    border-radius: .5rem;
}

.desc_detail5 #coffret .sec_point .point_blk .ingredient_list li img {
    width: 7rem;
}

.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 {
    /* margin-bottom: .5rem; */
    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_item .sec_ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}
.product-slide-section .item_list__item {
	min-width: auto;
}	

}