﻿/* common */
:root{
  --container: 1280px;
  --gutter: 24px;
  --gap: 32px;
  --text: #333;
  --muted: #666;
  --bg: #fff;
  --modal-bg: rgba(0,0,0,.72);
  --radius: 999px;
}
@media (max-width: 768px){
  :root{
    --gutter: 16px;
    --gap: 20px;
  }
}

.mainframe_ {
  width: 100vw;
}

.l-container{
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 24px;
}

img, video{
  max-width: 100%;
  height: auto;
  display: block;
}
a{
  color: inherit;
  text-decoration: none;
}
.pc{
  display: block !important;
}
.sp{
    display:none !important;
}
@media (max-width:768px){
    .pc{
      display: none !important;
    }
    .sp{
        display:inline !important;
    }
}
html.is-modal-open,
html.is-modal-open body{
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}

.fadein.is-show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  .fadein {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* mv */
.mv__title{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.mv__media{
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.mv__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__cta{
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  background: transparent;
  border: 0;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 10px;
  font-family: 'Sackers Gothic Std', "Sackers Gothic";
  font-size: 16px;
}
@media (max-width: 768px){
  .mv__media{
    height: unset;
  }
}

/* modal */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.modal.is-open{
  display: block;
}
.modal__overlay{
  position: absolute;
  inset: 0;
  background: var(--modal-bg);
}
.modal__panel{
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 48px));
  margin: 60px auto;
  background: transparent;
}

.modal__close{
  position: absolute;
  top: -40px;right: -80px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.modal__title{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
@media (max-width: 768px){
  .modal__panel{
    width: calc(100% - 24px);
    margin: 60% auto;
  }
  .modal__close {
    right: 0;
    top: -60px;
  }
}
/* modal__pc */
.modal__video{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.modal__iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* modal__voices */
.modal__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 12px;
}
.modal__nav[disabled]{
  opacity: .3;
  cursor: default;
}
.modal__nav--prev{ left: -52px; }
.modal__nav--next{ right: -52px; }
    
[data-voices-modal].modal{
  display: grid;
  place-items: center;
  padding: 32px;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
[data-voices-modal].modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
[data-voices-modal] .modal__panel{
  width: min(880px, 100%);
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  position: relative;
}
[data-voices-modal] .modal__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #333;
  border: 0;
  cursor: pointer;
}
[data-voices-modal] .modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 50;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #333;
  border: 0;
  cursor: pointer;
  line-height: 1;
  font-size: 22px;
}

[data-voices-modal] .modal__nav--prev{ left: 12px; }
[data-voices-modal] .modal__nav--next{ right: 12px; }

@media (max-width: 900px){
  .modal__nav--prev{
    left: 0;
  }
  .modal__nav--next{
    right: 0;
  }
  [data-voices-modal] .modal__nav{
    color: #fff;
  }
  [data-voices-modal] .modal__close{
  top: 10px;
  right: 12px;
  z-index: 50;
  color: #fff;
  font-size: 50px;
}
}

/* about */
.about{
  padding: 120px 0;
  text-align: center;
}
.about__head{
  margin-bottom: 40px;
}
.about__mark{
  margin: 0 auto 14px;
  width: 24vw;
}
.about__body{
  max-width: 1100px;
  margin: 0 auto;
}
.about__title{
  margin: 0 0 18px;
  font-size: 16px;
  letter-spacing: .06em;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: normal;
  text-align: center;
}
.about__excerpt p,
.about__moreInner p{
  margin: 0 0 40px;
  line-height: 2.1;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 16px;
}
.about__toggle{
  margin-top: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  letter-spacing: .06em;
}
.about__body > .about__toggle{
  transition: opacity .35s ease, visibility .35s ease;
}
.about__body > .about__toggle[aria-expanded="true"]{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}
@media (max-width: 768px){
  .about__title{
    font-size: 16px;
  }
  .about__excerpt p,
  .about__moreInner p{
    text-align: left;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 24px;
  }
}

.about__more{
  margin-top: 18px;
  text-align: center;
}
@media (max-width: 900px){
  .about{
    padding: 60px 0;
  }
  .about__mark{
    width: 70vw;
  }
}

/* merchant voice */
.voices{
  background-image: url(https://www.deandeluca.co.jp/cms/img/usr/about_dd/merchant/01.jpg);
  padding: 80px 0 120px;
}
.voices__head{
  margin-bottom: 40px;
}
.voices__title{
  margin: 0 0 20px;
  font-size: 28px;
  letter-spacing: .02em;
}
.voices__title img{
  width: 310px;
}
.voices__lead{
  margin: 0;
  font-family: "a-otf-ryumin-pr6n", serif;
}
    .voices__scroller{
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px;
    }
    .voices__list{
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(240px, 1fr);
      gap: 20px;
      padding: 0;
      margin: 0;
      list-style: none;
    }
    @media (min-width: 900px){
      .voices__list{
        grid-auto-columns: 340px;
        gap: 26px;
      }
    }
    .voiceCard{
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      text-align: left;
      cursor: pointer;
    }
    .voiceCard__figure{
      margin: 0;
      aspect-ratio: 5 / 7;
      overflow: hidden;
    }
    .voiceCard__img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .voiceCard__meta{
      padding-top: 24px;
    }
    .voiceCard__role{
      margin: 0 0 4px;
      font-size: 12px;
      letter-spacing: .14em;
      color: #252525;
      font-family: 'Sackers Gothic Std', "Sackers Gothic";
    }
    .voiceCard__name{
      margin: 0;
      font-size: 24px;
      letter-spacing: .06em;
      font-family: "a-otf-ryumin-pr6n", serif;
    }
    .voiceCard__more{
      margin: 8px 0 0;
      font-size: 12px;
      letter-spacing: .06em;
      color: var(--muted);
    }
    /* Voicesモーダル中 */
    .voiceModal{
      width: min(800px, 100%);
      margin: 0 auto;
      color: #333;
    }
    .voiceModal__grid{
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 28px;
      align-items: start;
    }
    @media (max-width: 900px){
      .voiceModal{
        padding: 0;
      }
      .voiceModal__grid{
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }
    
    .voiceModal__media{
      margin: 0;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: #000;
    }
    .voiceModal__img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .voiceModal__side{
      padding-top: 50px;
    }
    .voiceModal__role{
      margin: 0 0 6px;
      font-size: 12px;
      letter-spacing: .14em;
      opacity: .85;
      font-family: 'Sackers Gothic Std', "Sackers Gothic";
    }
    .voiceModal__name{
      margin: 0 0 10px;
      font-size: 28px;
      letter-spacing: .06em;
      font-family: "a-otf-ryumin-pr6n", serif;
    }
    .voiceModal__title{
      margin: 0 0 18px;
      opacity: .85;
    }
    .voiceModal__body{
      line-height: 2.0;
      opacity: .95;
    }

     @media (max-width: 900px){
      .voiceModal__body {
    line-height: 1.7;
      }
      .voiceModal__side{
        padding: 10px 20px 40px;
      }
       .voiceModal__media{
      margin: 0;
      aspect-ratio: 1 / 1.2;
       }
       .voiceModal__role {
        margin: 0;
       }
       .voiceModal__name{
        font-size: 22px;
       }
       .voiceModal__title {
        margin: 0 0 10px;
       }
    }
/* =========================================
   Certification - Sticky Stack
========================================= */

.certMenu{
  padding: 1px 0 0;
  background: #F8F8F8;
}

/* stack */
.certMenu__stack{
  position: relative;
  margin: 120px auto 0;
  padding-bottom: 120px;
}

/* 共通パネル */
.certMenu__panel{
  position: sticky;
  top: calc(var(--headerH, 76px) + 0px);
  background: #F8F8F8;
  border-radius: 8px;
  z-index: 1;
  margin-top: -120px; /* 重なり量 */
  padding: 0;
}

/* 最初のパネル（説明） */
.certMenu__panel:first-child{
  margin-top: 60px;
}

/* 重なり順 */
.certMenu__panel:nth-child(1){ z-index: 1; }
.certMenu__panel:nth-child(2){ z-index: 2; }
.certMenu__panel:nth-child(3){ z-index: 3; }
.certMenu__panel:nth-child(4){ z-index: 4; }

/* =========================
   説明ブロック
========================= */

.certMenu__intro{
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.certMenu__eyebrow{
  margin: 0 auto 20px;
}
/*
.certMenu__headline{
  margin: 0 auto 24px;
  font-size: 24px;
  font-family: "a-otf-ryumin-pr6n", serif;
  letter-spacing: 1.3px;
  line-height: 2.4rem;
  color: #555;
}
*/
.certMenu__lead{
  font-size: 14px;
  line-height: 1.8rem;
  letter-spacing: 1.4px;
  color: #555;
}

/* =========================
   資格パネル内部
========================= */

.certMenu__row{
  display: flex;
  align-items: start;
  gap: 60px;
  height: 105vh;
}

.certMenu__stack > .certMenu__panel:nth-child(4) .certMenu__row{
  height: auto; /* 好きな高さに */
}
.certMenu__media{
  flex: .8;
  margin: 0;
}

.certMenu__media img{
  width: 100%;
  height: auto;
  display: block;
}

.certMenu__text{
  flex: 0.8;
  padding: 40px 100px 0 0;
}
.certMenu__text img{
  height: 40px;
  width: auto;
}
.certMenu__title{
  margin: 0 0 12px;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 1.1px;
  color: #555;
  padding: 10px 0 0 0;
}

.certMenu__en{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .16em;
  color: #999;
  font-family: 'Sackers Gothic Std', "Sackers Gothic";
}

.certMenu__text p{
  text-align: left;
  margin: 10px 0 20px;
  font-size: 14px;
  line-height: 1.8rem;
  letter-spacing: 1.2px;
  font-family: "a-otf-ryumin-pr6n", serif;
}

/* =========================================
   SP（普通スクロール）
========================================= */

@media (max-width: 768px){

  .certMenu__stack{
    margin: 60px auto 0;
    padding-bottom: 60px;
  }

  .certMenu__panel{
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
    border-radius: 0;
    padding: 0;
  }

  .certMenu__panel + .certMenu__panel{
    margin-top: 40px !important;
  }

  .certMenu__row{
    flex-direction: column;
    gap: 10px;
    height: auto;
  }
  .certMenu__media{
    flex: unset;
  }

  .certMenu__text{
    flex: unset;
    padding: 0;
  }
  .certMenu__text img{
  height: 30px;
  margin: 10px 0;
}

  .certMenu__headline{
    font-size: 20px;
    line-height: 2rem;
  }

  .certMenu__lead{
    padding: 0 20px;
    font-size: 14px;
  }

  .certMenu__text p{
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.6rem;
  }
}

/* story */
.story{
  padding: 120px 0;
  background-image: url(https://www.deandeluca.co.jp/cms/img/usr/about_dd/merchant/KDM720__.jpg);
  background-size: cover;
  background-position-x: 30%;
  position: relative;
}
.story::before{
  content: "";
  position: absolute;
  inset: 0;
  background:rgba(255,255,255,.7);
  pointer-events: none;
}
.story > *{
  position: relative;
  z-index: 1;
}
.story__inner{
  display: grid;
  grid-template-columns: .75fr 1.05fr;
  gap: 70px;
  align-items: start;
}



.story__title{
  margin: 40px 0 20px;
  font-size: 28px;
  letter-spacing: .02em;
}
.story__body p{
  margin: 0 0 24px;
  line-height: 2.1;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 14px;
}
.story__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.storyCard{
  position: relative;
  display: block;
  margin: 0;
  width: 84%;
}
.storyCard--photo,
.storyCard--mark{
  overflow: hidden;
}
.storyCard--photo{
  grid-column: 1 / 3;
  aspect-ratio: 7 / 5;
  max-width: 62%; 
  margin: 10px auto 0 60px;
}
.storyCard--photo img{
  width: 100%;
  height: auto;
}
.storyCard--mark{
  grid-column: 2 / 3;
  width: 80%;
  aspect-ratio: 7 / ;
  /*border-radius: 999px;*/
  overflow: hidden;
  justify-self: end;
  margin: -70px 0 20px 0;
}
.storyCard--link .storyCard__figure{
  margin: 0;
  aspect-ratio: 7 / 5;
  overflow: hidden;
}
.storyCard--link:nth-of-type(1){
  margin-top: -86px;
}
.storyCard--link:nth-of-type(2){
  margin: 40px 0px 0 -20px;
}
.storyCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.storyCard__cta{
  width: 130%;
  position: absolute;
  text-align: right;
    right: 0;
  bottom: -35px;
  font-size: 12px;
  letter-spacing: .06em;
  padding: 6px 10px;
}

@media (max-width: 900px){
  .story{
    padding: 0;
  }
  .story__body{
    padding: 0 20px;
  }
  .story__body p{
  margin: 0 0 20px;
  }
  .story__inner{
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 80px;
  }
  .story__title{
    padding: 0 20px;
  }
  .story__grid{
    padding: 10px;
    gap: 10px 6px;
  }
  .storyCard{
    width: 120%;
    margin: -70px 0 40px 0;
  }
  .storyCard--photo{
  max-width: 82%; 
  margin: 0 20px 0 0;
  }
  .storyCard__cta{
    width: 100%;
    bottom: -55px;
    right: 0;
    padding: 6px 0;
    text-align: start;
  }
  .storyCard--link:nth-of-type(1){
    width: 100%;
    margin: -10px 0 0px;

  }
  .storyCard--link:nth-of-type(2) {
    width: 100%;
    margin: 40px 0px 0 0px;
}
}
/* related */
.related{
  padding: 60px 0;
}
.related__title{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.relatedNav__list{
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.relatedNav__item:last-child{
  border-right: none;
}


.relatedNav__item{
  border-right: 1px solid rgba(0,0,0,.15);
}
.relatedNav__link{
  display: grid;
  grid-template-columns: 7fr .3fr;
  align-items: center;
  padding: 10px 20px 10px 10px;
}

.relatedNav__text{
  font-size: 20px;
  letter-spacing: .06em;
  font-family: "a-otf-ryumin-pr6n", serif;
}

.relatedNav__icon{
  font-size: 10px;
}

.relatedNav__label{
  grid-column: 1 / -1;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--muted);
  font-family: 'Sackers Gothic Std', "Sackers Gothic";
}

.relatedCards{
  background: #bfbfbf;
  padding: 60px 200px;
  max-width: unset;
}

.relatedCards__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px){
  .related{
    padding: 20px 0 0;
  }
  .relatedNav__link{
    padding: 4px 0 18px;
  }
  .relatedNav__list{
    flex-direction: column;
    margin: 0 10px 30px;
    grid-template-columns: repeat(1, 1fr);
  }
  .relatedNav__item{
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,.15);
  }
  .relatedNav__text{
    font-size: 18px;
  }
}

@media (max-width: 900px){
  .relatedCards{
    padding: 4%;
  }
  .relatedCards__list{
    /*grid-template-columns: 1fr;*/
    grid-template-columns: repeat(2, 2fr);
    gap: 20px;
  }
}

.relatedCard__figure{
  margin: 0 0 10px;
  background: #fff;
  aspect-ratio: 7 / 5;
  overflow: hidden;
}
.relatedCard__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.relatedCard__title{
  margin: 0;
  font-size: 14px;
  letter-spacing: .06em;
  font-family: "a-otf-ryumin-pr6n", serif;
}
/* =========================================================
  黒丸＋白文字矢印（→）
========================================================= */
.circleArrow{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #000;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.circleArrow__icon{
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 0 2px 4px 2px;
  transform: translateX(1px);
  will-change: transform, opacity;
}

.relatedNav__link:hover .circleArrow__icon,
.relatedNav__link:focus-visible .circleArrow__icon{
  animation: arrow-slide-out-in .45s ease-out;
}

@keyframes arrow-slide-out-in{
  0%{
    transform: translateX(1px);
    opacity: 1;
  }
  45%{
    transform: translateX(14px);
    opacity: 0;
  }
  46%{
    transform: translateX(-10px);
    opacity: 0;
  }
  100%{
    transform: translateX(1px);
    opacity: 1;
  }
}
.mv__media{
  position: relative;
}
.mv__video{
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.mv__cta{
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  pointer-events: auto;
}
.mv__video{
  pointer-events: none;
}
.pane-footer .block-footer-content {
  display: none;
}