@charset "UTF-8";
/* お知らせ一覧
---------------------------------------------------------------------------- */
#blog .p-archive {
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  #blog .p-archive {
    padding: 5rem 0 8rem;
  }
}
#blog .p-archive__item {
  border-bottom: 1px solid rgba(177, 130, 138, 0.3);
}
#blog .p-archive__item:first-child {
  border-top: 1px solid rgba(177, 130, 138, 0.3);
}
#blog .p-archive__link {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem 0;
}
@media screen and (min-width: 768px) {
  #blog .p-archive__link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #blog .p-archive__link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #blog .p-archive__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 2rem 0;
  }
}
#blog .p-archive__date {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #955A64;
  flex-shrink: 0;
  min-width: 9rem;
}
#blog .p-archive__ttl {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  line-height: 1.6;
  flex: 1;
}
@media screen and (max-width: 767px) {
  #blog .p-archive__ttl {
    font-size: 1.5rem;
  }
}
#blog .p-archive__arrow {
  color: #955A64;
  font-size: 1.4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #blog .p-archive__arrow {
    display: none;
  }
}

/* お知らせ詳細
---------------------------------------------------------------------------- */
#blog-detail .p-single {
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  #blog-detail .p-single {
    padding: 5rem 0 8rem;
  }
}
#blog-detail .p-single__body {
  max-width: 80rem;
  margin: 0 auto;
}
#blog-detail .p-single__body p {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #393030;
  line-height: 2;
}
#blog-detail .p-single__body p + p {
  margin-top: 2.4rem;
}
#blog-detail .p-single__body h2 {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.6;
  margin: 5rem 0 2rem;
  padding-left: 1.6rem;
  border-left: 3px solid #955A64;
}
#blog-detail .p-single__back {
  max-width: 80rem;
  margin: 6rem auto 0;
  padding-top: 4rem;
  border-top: 1px solid rgba(177, 130, 138, 0.3);
}
#blog-detail .p-single__back a {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media screen and (min-width: 768px) {
  #blog-detail .p-single__back a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #blog-detail .p-single__back a:hover {
    opacity: 0.7;
  }
}

/* 下層ヘッダー
---------------------------------------------------------------------------- */
.l-header.is-fixed {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

body.is-menu-open .l-header {
  background: transparent;
  box-shadow: none;
}

/* ページヘッダー（下層共通）
---------------------------------------------------------------------------- */
.p-page-hero {
  background: #e9e1df;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.p-page-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
  width: 28rem;
  height: 14rem;
  background: url("../images/common/logo_mark.svg") no-repeat center/contain;
  opacity: 0.06;
  pointer-events: none;
}
.p-page-hero__en {
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #b1828a;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}
.p-page-hero__date {
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #b1828a;
  margin-bottom: 1.6rem;
}
.p-page-hero__ttl {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #955A64;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-page-hero__ttl {
    font-size: 2.8rem;
  }
}
.p-page-hero__ttl span {
  display: inline-block;
  position: relative;
}
.p-page-hero__ttl span::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

/* single
---------------------------------------------------------------------------- */
#blog-detail .ending {
  margin-top: 6rem;
  text-align: center;
}
#blog-detail .ending .back a {
  color: #955A64;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  #blog-detail .ending .back a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #blog-detail .ending .back a:hover {
    opacity: 0.7;
  }
}

/* 404
---------------------------------------------------------------------------- */
#not-found .p-not-found {
  padding: 8rem 0 12rem;
}
@media screen and (max-width: 767px) {
  #not-found .p-not-found {
    padding: 5rem 0 8rem;
  }
}
#not-found .p-not-found p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #393030;
  margin-bottom: 4rem;
}
#not-found .p-not-found__back a {
  color: #955A64;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #not-found .p-not-found__back a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  #not-found .p-not-found__back a:hover {
    opacity: 0.7;
  }
}/*# sourceMappingURL=under.css.map */