@charset "UTF-8";
/* CSS Document */

:root {
      --easing: cubic-bezier(0.2, 1, 0.2, 1);
      --transition: 0.8s var(--easing);
      --color-base: #0c1210;
      --color-gray: #ddd;
      --color-theme: #b4e900;
      --color-theme-darken: #6e8f00;
      --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        -0.8rem -0.8rem 1.2rem #fff;
      --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
        -1rem -1rem 1.5rem #fff;
      --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        inset -0.8rem -0.8rem 1.2rem #fff;
      --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
        -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
    }

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
}

:focus:not(:focus-visible) {
  outline: 0;
  /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

.tablet_br{
  display: none;
}

@media screen and (min-width:769px) and ( max-width:1024px) {
.tablet_br{
  display: block;
}
}

@media only screen and (max-width: 375px) {
.block-breadcrumb .block-breadcrumb--body span{
  font-size: 12px;
}
}

.hero{
  /*background: #FEF7BF #DCBE7A #BB8B48;*/
  background: linear-gradient(28deg, rgba(254, 247, 191, 1) 0%, rgba(220, 190, 122, 1) 50%, rgba(187, 139, 72, 1) 100%);
  padding: 0 0 30px;
}

.hero_inner{
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero_inner .visual{
  width: 60%;
  padding: 2rem;
}

.hero_inner .text{
  width: 40%;
  padding: 1rem;
  text-align: center;
}

.hero_inner .text h1{
  margin: 20px 0 0px;
  font-size: 18px;
  padding: 8px 0px;
  font-weight: 600;
  text-align: left;
  position: relative;
}

.hero_inner .text h1::before {
  background-color: #231815;
  bottom: 1px;
  content: "";
  height: 1px;
  left: 0px;
  position: absolute;
  width: 46px;
}

.hero_inner .text h2{
  margin: 20px 0 20px;
  font-size: clamp(1.875rem, 1.739rem + 0.68vw, 2.25rem);
  /*color: #231815;*/
  display: block;
  font-weight: 400;
  text-align: left;
}

@media only screen and (max-width: 640px) {
  .hero_inner{
    flex-direction: column;
    align-items: unset;
}

.hero_inner .text{
  display: contents;
}/**/

.hero_inner .text h1{
  font-size: 4.25vw;
  margin: 20px 0 10px;
  order: 2;
  padding: 10px 10px;
  line-height: 1.4;
}

.hero_inner .text h1::before {
  left: 10px;
}

.hero_inner .visual{
  width: 100%;
  padding: 25px 0 0rem;
  order: 1;
}

.hero_inner .text h2{
  font-size: 9vw;
  order: 3;
  margin: 10px 0 20px;
  padding: 0px 10px;
}
}


/* slider */
    .slide-media,
    .thumb-media {
      position: relative;
      overflow: hidden;
    }

    .slide-media img,
    .thumb-media img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;/**/
    }

    .splide {
      z-index: 0;
    }

    .splide-wrapper {
      position: relative;
    }

    .gallery {
      margin-bottom: 0rem;
    }

    .gallery .splide-wrapper {
      -webkit-transition-timing-function: linear !important;
      transition-timing-function: linear !important;
    }

    .gallery .splide__slide{
      position: relative;
      z-index: 1;
      height: 320px
    }

    .gallery .slide {
      width: var(--slide-width);
      -webkit-transition: var(--transition);
      transition: var(--transition);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      --slide-width: 300px;
    }

    .gallery .slide-media {
      height: var(--slide-width);
    }

    .gallery .slide-content {
      position: absolute;
      z-index: 2;
      right: 0;
      bottom: -3px;
      left: 0;
      padding: 0;
      /*padding: 3.2rem 1.6rem 1.6rem;*/
      -webkit-transition: var(--transition);
      transition: var(--transition);
      opacity: 1;
      color: #000;
    }

    .gallery .slide-title {
      font-size: 1rem;
      line-height: 1.4;
      text-align: center;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .gallery .slide:hover {
      width: calc(var(--slide-width) * 1.1);
    }

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 640px) {
  .gallery .splide__slide{
      height: 220px
    }
  .gallery .slide {
        --slide-width: 200px;
      }
}


/* art_concept */
.art_concept{
  padding: 1.8rem 0 2rem;
}

.art_concept .list__special_text_half {
    padding: 0 0rem 0 2rem;
}

.art_concept p{
  font-size: 16px;
  padding: 20px 0px;
}

@media screen and (max-width: 767px) {
    .art_concept {
        padding: 0rem 0 2rem;
    }

    .art_concept .list__special_text_half {
    padding: 0 10px;
    }

    .art_concept p{
      font-size: 16px;
      padding: 20px 10px 0;
    }
}

h2.chef_meets_art{
  font-size: 30px;
  text-align: center;
  background: linear-gradient(28deg, rgba(254, 247, 191, 1) 0%, rgba(220, 190, 122, 1) 50%, rgba(187, 139, 72, 1) 100%);
  padding: 0.5rem 0 0.3rem;
  margin: 0;
  font-weight: 600;
}

.sku_area,
.chocolates_area{
  padding: 0px 0px 3rem;
}

.sku_area p.period{
  margin: 18px 0 0;
  text-align: center;
}

.chocolates_area .list__special_text_half h3{
  font-size: 24px;
  line-height: 1.2;
}

p.art{
  padding: 0 0 1rem;
}

p.art span{
  font-size: 120%;
}

p.chef{
  padding: 0 0 1rem;
}

p.chef span{
  font-size: 120%;
}

p.art_guide{
  padding: 0 0 1rem;
}

p.goto-lineup{
  text-align: center;
  padding: 0 0 1rem;
  text-decoration: underline;
  text-underline-offset: 8px;
}

@media screen and (max-width: 767px) {
  .sku_area,
  .chocolates_area{
  padding: 0px 0px 2rem;
}

}

@media screen and (max-width: 375px) {
  p.chef span{
  font-size: 110%;
}
}

@media (max-width: 361px) {
    .list__item_2_text h3, .list__item_3_text h3, .list__item_4_text h3 {
        font-size: 13px;
        letter-spacing: -.05em;
    }
}