/*
====================================================================
 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
====================================================================
*/
/*
====================================================================
 FAQ
====================================================================
*/
.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;
}
.page-section01 h2::after {
  content: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.faq-list__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.faq-list__item.in-viewport {
  opacity: 1;
  transform: translateY(0);
}
.faq-list dl {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}
.faq-list dt {
  background-color: #c7b299;
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 10px 30px 10px 30px;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.faq-list dt::before {
  content: "Q";
  display: block;
  position: static;
  width: 50px;
  height: 50px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-size: 24px;
  font-weight: 500;
  border-radius: 50%;
}
.faq-list dt span {
  display: block;
  font-weight: 600;
}
.faq-list dd {
  display: grid;
  grid-template-columns: 50px 1fr;
  padding: 20px 30px 20px 30px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border-bottom: 1px solid #c7b299;
  background-color: white;
}
.faq-list dd::before {
  content: "A";
  display: block;
  position: static;
  width: 50px;
  height: 50px;
  border: 1px solid #c9a412;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a412;
  font-family: "Hiragino Mincho ProN", "Noto Serif", serif;
  font-size: 24px;
  border-radius: 50%;
}
.faq-list dd p {
  letter-spacing: -0.02em;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   FAQ
  ====================================================================
  */
  h2 {
    margin-bottom: 40px;
  }
  .faq-list dt {
    grid-template-columns: 40px 1fr;
    padding: 15px;
    -moz-column-gap: 15px;
         column-gap: 15px;
    align-items: flex-start;
  }
  .faq-list dt::before {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .faq-list dd {
    grid-template-columns: 40px 1fr;
    padding: 15px;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .faq-list dd::before {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .faq-list dd p {
    letter-spacing: -0.02em;
  }
  .faq-list__item:nth-child(3) dt {
    align-items: center;
  }
  .common-section-contents {
    padding-top: 50px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1119px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=faq.css.map */