/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-serif-jp-medium.woff2") format("woff2");
}
/* Cormorant Bold */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Cormorant Medium */
@font-face {
  font-display: swap;
  font-family: "Cormorant";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/cormorant-bold.woff2") format("woff2");
}
/* Bodoni Regular */
@font-face {
  font-display: swap;
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./fonts/bodoni-moda-regular.woff2") format("woff2");
}
/*
====================================================================
 Colors
====================================================================
*/
/*
====================================================================
 Mixins
====================================================================
*/
/*
====================================================================
 DESIGN
====================================================================
*/
.section__body {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}

.in-viewport .section__body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.page-section01 {
  padding-bottom: 0;
}

.introduction {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
  transition-delay: 0.5s;
}
.in-viewport .introduction {
  opacity: 1;
  transform: translateY(0);
}

.case-panel__item {
  margin-top: 80px;
  scroll-margin-top: 110px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.case-panel__item.in-viewport {
  opacity: 1;
  transform: translateY(0);
}
.case-panel__header {
  background-color: #333;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.case-panel__header::before {
  content: "";
  display: block;
  position: static;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  grid-row: 1/3;
}
.case01 .case-panel__header::before {
  background: url(../images/design/icon_case_01.svg) center center/contain no-repeat;
}
.case02 .case-panel__header::before {
  background: url(../images/design/icon_case_02.svg) center center/contain no-repeat;
}
.case03 .case-panel__header::before {
  background: url(../images/design/icon_case_03.svg) center center/contain no-repeat;
}
.case04 .case-panel__header::before {
  background: url(../images/design/icon_case_04.svg) center center/contain no-repeat;
}
.case05 .case-panel__header::before {
  background: url(../images/design/icon_case_05.svg) center center/contain no-repeat;
}
.case06 .case-panel__header::before {
  background: url(../images/design/icon_case_06.svg) center center/contain no-repeat;
}
.case07 .case-panel__header::before {
  background: url(../images/design/icon_case_07.svg) center center/contain no-repeat;
}
.case-panel__header .category {
  font-size: 16px;
  padding: 1px 10px;
  border-radius: 26px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #c7b299;
  align-self: flex-end;
}
.case-panel__header h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 3px;
}
.case-panel__header h3 span {
  display: block;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  color: white;
}
.case-panel-supplement {
  width: 800px;
  margin: 5px auto 0 0;
  text-align: right;
  font-size: 11px;
}
.case-panel__content {
  margin-top: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: 800px 1fr;
  padding-right: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  background: linear-gradient(to top, white 54px, #333 54px);
}
.gallery__main {
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.3));
  transition: opacity 0.5s;
  opacity: 1;
}
.gallery__thumbnails li {
  margin-bottom: 4px;
  cursor: pointer;
  position: relative;
}
.gallery__thumbnails li img {
  opacity: 0.3;
  transition: opacity 0.3s;
  will-change: opacity;
}
.gallery__thumbnails li.is-active img {
  opacity: 1;
}

.detail-list {
  display: grid;
  row-gap: 10px;
  grid-template-columns: repeat(3, auto);
  margin-top: 15px;
  padding: 15px 0 18px;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}
.detail-list__item {
  display: flex;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: center;
}
.detail-list__item span {
  display: block;
}
.detail-list__item span.heading {
  width: 120px;
  text-align: center;
  background-color: #333;
  color: white;
  border-radius: 32px;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / DESIGN
  ====================================================================
  */
  .page-section01 .container {
    padding: 0;
  }
  .page-section01 h2 .jp {
    padding: 0 15px;
    letter-spacing: -0.02em;
  }
  .introduction {
    padding: 0 15px;
  }
  .case-panel__item {
    margin-top: 40px;
    scroll-margin-top: 60px;
  }
  .case-panel__header {
    padding: 15px;
    grid-template-columns: 50px 1fr;
    gap: 8px 15px;
  }
  .case-panel__header::before {
    width: 50px;
    height: 50px;
    grid-row: unset;
    outline: 1px solid white;
  }
  .case01 .case-panel__header::before {
    background: url(../images/design/txt_case_01.svg) center center/80% auto no-repeat;
  }
  .case02 .case-panel__header::before {
    background: url(../images/design/txt_case_02.svg) center center/80% auto no-repeat;
  }
  .case03 .case-panel__header::before {
    background: url(../images/design/txt_case_03.svg) center center/80% auto no-repeat;
  }
  .case04 .case-panel__header::before {
    background: url(../images/design/txt_case_04.svg) center center/80% auto no-repeat;
  }
  .case05 .case-panel__header::before {
    background: url(../images/design/txt_case_05.svg) center center/80% auto no-repeat;
  }
  .case06 .case-panel__header::before {
    background: url(../images/design/txt_case_06.svg) center center/80% auto no-repeat;
  }
  .case-panel__header .category {
    align-self: unset;
  }
  .case-panel__header h3 {
    font-size: 25px;
    grid-column: 1/3;
  }
  .case-panel__header h3 span {
    letter-spacing: -0.015em;
    white-space: nowrap;
  }
  .case-panel-supplement {
    width: auto;
    margin: 5px 15px 0;
  }
  .case-panel__content {
    margin-top: 20px;
    padding: 0 15px;
  }
  .gallery {
    display: block;
    padding: 0 15px 20px 15px;
    background: #333;
  }
  .gallery__thumbnails {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
  .gallery__thumbnails li {
    margin-bottom: 0;
  }
  .detail-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top: 15px;
    padding: 18px 0;
  }
  .detail-list__item {
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: flex-start;
  }
  .detail-list__item span {
    font-size: 17px;
  }
  .detail-list__item span.heading {
    width: 35%;
    flex-shrink: 0;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=design.css.map */