/*
====================================================================
 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
====================================================================
*/
/*
====================================================================
 NEWS
====================================================================
*/
.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-section {
  position: relative;
  padding-top: 60px;
}
.page-section::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% - 96px);
  height: calc(100% - 190px);
  background-color: #f8f5f3;
  top: 0;
  left: 0;
}
.page-section .container {
  background-color: white;
  padding: 40px 0 80px 0;
}
.page-section h2 {
  margin-bottom: 70px;
}
.page-section h2 .jp {
  padding: 0 80px;
}

.news {
  width: 840px;
  margin: 0 auto;
  border-top: 0.5px solid #333;
}
.news__item {
  border-bottom: 0.5px solid #333;
}
.news__content {
  display: grid;
  grid-template-columns: auto 100px 1fr;
  padding: 24px 0;
}
.news__category {
  padding-left: 20px;
  font-family: "Cormorant";
  font-weight: 600;
  color: #c9a412;
}

/*----------------------------------------------------------------*/
@media (max-width: 767px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / NEWS
  ====================================================================
  */
  .page-section {
    padding-top: 40px;
  }
  .page-section::before {
    width: 100%;
    height: 200px;
  }
  .page-section .container {
    padding: 40px 20px;
    width: calc(100% - 30px);
  }
  .page-section h2 {
    margin-bottom: 70px;
  }
  .page-section h2 .en {
    margin-bottom: -10px;
  }
  .page-section h2 .en img {
    height: 34px;
  }
  .page-section h2 .jp {
    padding: 0 50px;
  }
  .news {
    width: 100%;
  }
  .news__content {
    grid-template-columns: auto 1fr;
  }
  .news__category {
    padding-left: 20px;
    font-family: "Cormorant";
    font-weight: 600;
    color: #c9a412;
  }
  .news__text {
    grid-column: 1/3;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 1119px) {
  /*----------------------------------------------------------------*/
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=news.css.map */