@charset "UTF-8";
/*
====================================================================
 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
====================================================================
*/
/*
====================================================================
 PRICE
====================================================================
*/
.page-section01 h2 span.jp {
  padding: 0 105px;
}

.page-section01 {
  position: relative;
}
.page-section01::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% - 96px);
  height: 100%;
  background-color: #f8f5f3;
  top: 0;
  left: 0;
}

.case-panel {
  padding: 18px;
  margin-top: 80px;
}
.case-panel.case01 {
  margin-top: 30px;
}
.case-panel .inner-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
  transition-delay: 1s;
  padding: 40px;
  background-color: white;
  position: relative;
}
.case-panel__header {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.case-panel h3 {
  display: grid;
  grid-template-columns: 133px 1fr;
  -moz-column-gap: 30px;
       column-gap: 30px;
  line-height: 1.3;
}
.case-panel h3::before {
  content: "";
  display: block;
  position: static;
  width: 100%;
  height: 100%;
}
.case-panel h3 span {
  display: block;
  font-size: 32px;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-weight: 500;
}
.case-panel.case01 h3::before {
  background: url(../images/price/txt_case_01.svg) left center no-repeat;
  border-right: 2px solid #c9a412;
}
.case-panel.case02 h3::before {
  background: url(../images/price/txt_case_02.svg) left center no-repeat;
  border-right: 2px solid #c9a412;
}
.case-panel.case03 h3::before {
  background: url(../images/price/txt_case_03.svg) left center no-repeat;
  border-right: 2px solid #c9a412;
}
.case-panel p {
  letter-spacing: -0.02em;
}
.case-panel.in-viewport .inner-wrapper {
  opacity: 1;
  transform: translateY(0);
}

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

.cost {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: flex-end;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.cost::before {
  content: "費用";
  display: block;
  position: static;
  width: 100%;
  height: 60px;
  border: 2px solid #c9a412;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c9a412;
  line-height: 1;
}
.cost span {
  display: block;
  font-size: 32px;
  border-bottom: double 4px #333;
}

.lines {
  position: relative;
}
.lines--horizontal::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 36px);
  height: 1px;
  background-color: #333;
  top: 0;
  right: -18px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-30%);
  transition-delay: 0.5s;
  z-index: 2;
}
.lines--horizontal::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 36px);
  height: 1px;
  background-color: #333;
  bottom: 0;
  left: -18px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(30%);
  transition-delay: 0.9s;
  z-index: 2;
}
.case-panel.in-viewport .lines--horizontal::before, .case-panel.in-viewport .lines--horizontal::after {
  opacity: 1;
  transform: translateX(0);
}
.lines--vertical::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% + 36px);
  background-color: #333;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(-30%);
  transition-delay: 0.7s;
  z-index: 2;
}
.lines--vertical::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% + 36px);
  background-color: #333;
  bottom: -18px;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(30%);
  transition-delay: 1.1s;
  z-index: 2;
}
.case-panel.in-viewport .lines--vertical::before, .case-panel.in-viewport .lines--vertical::after {
  opacity: 1;
  transform: translateY(0);
}

.tab {
  background-color: #333;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7.5px 12px;
  position: absolute;
  top: -10px;
}
.tab::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom: 10px solid #333;
  left: -6px;
  top: -6px;
}
.tab span {
  font-size: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: 740px 1fr;
  -moz-column-gap: 9px;
       column-gap: 9px;
  margin: 40px 0;
}
.gallery__main {
  transition: opacity 0.5s;
  opacity: 1;
}
.gallery__thumbnails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gallery__thumbnails_02 {
  justify-content: start;
}
.gallery__thumbnails_02 li {
  margin-bottom: 10px;
}
.gallery__thumbnails li {
  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;
  gap: 10px 50px;
  grid-template-columns: repeat(2, 1fr);
}
.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 / PRICE
  ====================================================================
  */
  .page-section01 h2 span.jp {
    padding: 0 30px;
  }
  h2 span.en {
    padding: 0 0px;
  }
  .page-section01 {
    background-color: #f8f5f3;
  }
  .page-section01::before {
    content: none;
  }
  .page-section01 h2 {
    width: 100%;
  }
  .page-section01 h2 .en {
    margin-bottom: -10px;
  }
  .page-section01 h2 .en img {
    height: 41px;
  }
  .case-panel {
    padding: 0;
    margin-top: 60px;
  }
  .case-panel.case01 {
    margin-top: 40px;
  }
  .case-panel .inner-wrapper {
    padding: 40px 15px;
    transition-delay: 0.6s;
  }
  .case-panel__header {
    margin: 20px 0;
    display: block;
  }
  .case-panel h3 {
    display: block;
    padding-bottom: 8px;
    border-bottom: 2px solid #c9a412;
    margin-bottom: 20px;
  }
  .case-panel h3::before {
    height: 20px;
    background-size: contain !important;
    border-right: none !important;
  }
  .case-panel h3 span {
    font-size: 23px;
    margin-top: 10px;
  }
  .cost {
    display: grid;
    grid-template-columns: 40px 1fr;
    -moz-column-gap: 9px;
         column-gap: 9px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .cost::before {
    height: 40px;
    font-size: 14px;
  }
  .cost span {
    font-size: 25px;
  }
  .lines--horizontal::before {
    width: calc(100% + 20px);
    right: -10px;
    transition-delay: 0s;
  }
  .lines--horizontal::after {
    width: calc(100% + 20px);
    left: -10px;
    transition-delay: 0.2s;
  }
  .lines--vertical::before {
    height: calc(100% + 20px);
    top: -10px;
    transition-delay: 0.1s;
  }
  .lines--vertical::after {
    height: calc(100% + 20px);
    bottom: -10px;
    transition-delay: 0.3s;
  }
  .gallery {
    display: block;
    margin: 30px 0;
  }
  .gallery__thumbnails {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .gallery__thumbnails li {
    margin-bottom: 0;
  }
  .detail-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .detail-list__item {
    -moz-column-gap: 10px;
         column-gap: 10px;
    align-items: flex-start;
  }
  .detail-list__item span.heading {
    width: 37%;
    flex-shrink: 0;
  }
  .common-section-contents {
    padding-top: 50px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1119px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=price.css.map */