*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #1f211c;
  background-color: #fff;
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .hidden-pc {
    display: none !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid #ebe8dd;
}
.header__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 1.8em;
  line-height: 1.2;
}
.header__logo img {
  display: block;
  width: 170px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    gap: 1.2em;
  }
  .header__logo img {
    width: 130px;
  }
}
.header__logo-ja {
  font-size: 1.2rem;
  color: #6b6e66;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .header__logo-ja {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}
.header__menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}
.header__tagline {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  color: #6b6e66;
  letter-spacing: 0.15em;
  margin-right: 32px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__item {
  position: relative;
}
.nav__item.is-current {
  border-bottom: 1px solid #1f211c;
}
.nav__link {
  font-family: "Baskervville", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1f211c;
  text-transform: capitalize;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: #7c956c;
  opacity: 1;
}
.nav__sub-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ebe8dd;
  padding: 8px 0;
  min-width: 160px;
}
.nav__item:hover .nav__sub-list {
  display: block;
}
.nav__sub-link {
  display: block;
  padding: 8px 16px;
  font-family: "Baskervville", serif;
  font-size: 1.2rem;
  color: #6b6e66;
}
.nav__sub-link:hover {
  color: #1f211c;
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: flex;
    z-index: 300;
    position: fixed;
    top: 10px;
    right: 0px;
  }
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: #1f211c;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 200;
  padding: 80px 32px 40px;
  transition: right 0.35s ease;
  border-left: 1px solid #ebe8dd;
}
.drawer.is-open {
  right: 0;
}
.drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: italic;
}
.drawer__nav-link {
  display: block;
  padding: 12px 0;
  font-family: "Baskervville", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #1f211c;
  border-bottom: 1px solid #ebe8dd;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 150;
}
.drawer-overlay.is-active {
  display: block;
}

.main {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: 56px;
  }
}

.hero {
  padding: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 48px 0 40px;
  }
}
.hero__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 32px;
  }
}
.hero__content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .hero__content {
    width: 100%;
  }
}
.hero__title img {
  width: 400px;
}
@media screen and (max-width: 1024px) {
  .hero__title img {
    width: 36vw;
  }
}
@media screen and (max-width: 767px) {
  .hero__title img {
    width: 164px;
  }
}
.hero__title-sep {
  font-style: italic;
  color: #6b6e66;
}
.hero__subtitle {
  font-size: 1.4rem;
  color: #6b6e66;
  letter-spacing: 0.4em;
  margin-top: 2.6em;
}
@media screen and (max-width: 767px) {
  .hero__subtitle {
    font-size: 1.2rem;
    margin-top: 1.4em;
  }
}
.hero__desc {
  font-size: 1.6rem;
  color: #6b6e66;
  line-height: 2;
  margin: 4.6em 0;
}
@media screen and (max-width: 1024px) {
  .hero__desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .hero__desc {
    margin: 1.6em 0;
  }
}
.hero__meta {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .hero__meta {
    width: 100%;
  }
}
.hero__scroll {
  font-family: "Baskervville", serif;
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: #6b6e66;
  text-transform: uppercase;
  padding: 0 0.1em 0.4em;
  border-bottom: 1px solid #1f211c;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll:hover {
  color: #7c956c;
  border-color: #7c956c;
  opacity: 1;
}
.hero__vol {
  font-family: "Baskervville", serif;
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 0.08em;
  text-align: right;
  color: #6b6e66;
  margin-top: 1em;
}

.section {
  padding: 72px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}
.section__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .section__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4em;
  border-bottom: 1px solid #ebe8dd;
  padding-bottom: 0.4em;
}
@media screen and (max-width: 767px) {
  .section__header {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
}
.section__num {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  color: #6b6e66;
  letter-spacing: 0.1em;
}
.section__title-en {
  font-family: "Baskervville", serif;
  font-size: 4rem;
  font-style: italic;
  color: #1f211c;
}
@media screen and (max-width: 1024px) {
  .section__title-en {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .section__title-en {
    font-size: 2.4rem;
  }
}
.section__title-ja {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  color: #6b6e66;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .section__title-ja {
    letter-spacing: 0.1em;
  }
}
.section__more {
  text-align: center;
  margin-top: 6em;
}
@media screen and (max-width: 767px) {
  .section__more {
    margin-top: 2.6em;
  }
}

.entry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 50px;
}
@media screen and (max-width: 1024px) {
  .entry-list {
    gap: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .entry-list {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}
.entry-list--related {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .entry-list--related {
    grid-template-columns: 1fr;
  }
}

.entry-card__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #ebe8dd;
  margin-bottom: 12px;
}
.entry-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.entry-card:hover .entry-card__img {
  transform: scale(1.03);
}
.entry-card__body {
  padding: 0 2px;
}
.entry-card__sub {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  border-bottom: 1px solid #ebe8dd;
  padding-bottom: 0.2em;
}
.entry-card__cat {
  font-family: "Baskervville", serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #7c956c;
  display: inline-block;
  margin-right: 12px;
}
.entry-card__date {
  font-family: "Baskervville", serif;
  font-size: 1.2rem;
  color: #6b6e66;
  font-style: italic;
  letter-spacing: 0.08em;
}
.entry-card__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 0.8em;
}
.entry-card__link {
  color: #1f211c;
}
.entry-card__excerpt {
  font-size: 1.2rem;
  color: #6b6e66;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.cat-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .cat-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
}

.cat-card {
  border-right: 1px solid #ebe8dd;
}
.cat-card:last-of-type {
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .cat-card {
    border: 0;
    border-bottom: 1px solid #ebe8dd;
  }
}
.cat-card__link {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 6px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .cat-card__link {
    padding: 20px 16px;
  }
}
.cat-card__num {
  font-family: "Baskervville", serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.2;
  color: #7c956c;
}
.cat-card__name-en {
  font-family: "Baskervville", serif;
  font-size: 2.8rem;
  font-style: italic;
  color: #1f211c;
  transition: color 0.2s;
}
@media screen and (max-width: 1024px) {
  .cat-card__name-en {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .cat-card__name-en {
    font-size: 1.8rem;
  }
}
.cat-card__link:hover .cat-card__name-en {
  color: #7c956c;
}
.cat-card__name-ja {
  font-size: 1.4rem;
  color: #6b6e66;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  .cat-card__name-ja {
    font-size: 1.2rem;
  }
}
.cat-card__count {
  font-family: "Baskervville", serif;
  font-size: 1.6rem;
  font-style: italic;
  color: #7c956c;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .cat-card__count {
    margin-top: 1em;
  }
}
.cat-card__count-unit {
  font-size: 1rem;
  margin-left: 2px;
}

.section--tags {
  padding: 50px 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .tag-list {
    gap: 4px;
  }
}
.tag-list__link {
  display: inline-block;
  font-family: "Baskervville", serif;
  font-size: 1.2rem;
  color: #6b6e66;
  border: 1px solid #ebe8dd;
  padding: 6px 12px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .tag-list__link {
    font-size: 1rem;
  }
}
.tag-list__link:hover {
  border-color: #7c956c;
  color: #7c956c;
  opacity: 1;
}

.btn-more {
  display: inline-block;
  font-family: "Baskervville", serif;
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: 0.2em;
  color: #6b6e66;
  border-bottom: 1px solid #1f211c;
  padding: 0 0.1em 0.4em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 767px) {
  .btn-more {
    font-size: 1.2rem;
  }
}
.btn-more:hover {
  border-color: #7c956c;
  color: #7c956c;
  opacity: 1;
}

.single-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .single-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.single-wrap {
  padding-top: 56px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .single-wrap {
    padding-top: 40px;
    padding-bottom: 56px;
  }
}

.post-header {
  margin: 0 auto 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .post-header {
    text-align: left;
  }
}
.post-header__cat {
  font-family: "Baskervville", serif;
  font-size: 1.8rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: #7c956c;
  display: inline-block;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .post-header__cat {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.post-header__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  max-width: 1000px;
  margin: 0 auto;
}
.post-header__meta {
  margin: 1em 0 2em;
}
@media screen and (max-width: 767px) {
  .post-header__meta {
    margin-top: 0.6em;
  }
}
.post-header__date {
  font-size: 1.1rem;
  color: #6b6e66;
}
@media screen and (max-width: 767px) {
  .post-header__date {
    font-size: 1rem;
  }
}
.post-header__thumb {
  margin-top: 32px;
  overflow: hidden;
  aspect-ratio: 3/2;
  max-width: 800px;
  margin: 1em auto 4em;
}
@media screen and (max-width: 767px) {
  .post-header__thumb {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.post-header__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.post-content, .page-content {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .post-content, .page-content {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    padding: 0 1em;
  }
}
.post-content h2, .page-content h2 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 3em 0 2em;
  padding-bottom: 18px;
  border-bottom: 1px solid #ebe8dd;
}
@media screen and (max-width: 767px) {
  .post-content h2, .page-content h2 {
    font-size: 2rem;
    padding-bottom: 14px;
  }
}
.post-content h3, .page-content h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 46px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .post-content h3, .page-content h3 {
    font-size: 1.8rem;
  }
}
.post-content p, .page-content p {
  margin-bottom: 2.2em;
}
.post-content a, .page-content a {
  color: #7c956c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-content ul, .page-content ul,
.post-content ol,
.page-content ol {
  padding-left: 1.6em;
  margin-bottom: 1.6em;
}
.post-content ul li, .page-content ul li,
.post-content ol li,
.page-content ol li {
  margin-bottom: 0.5em;
  list-style: disc;
}
.post-content ol li, .page-content ol li {
  list-style: decimal;
}
.post-content blockquote, .page-content blockquote {
  border-left: 2px solid #ebe8dd;
  padding-left: 20px;
  color: #6b6e66;
  font-style: italic;
  margin: 24px 0;
}
.post-content .wp-block-image, .page-content .wp-block-image {
  margin: 3em 0;
}
.post-content img, .page-content img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}
.post-content .easyLink-box, .page-content .easyLink-box {
  margin: 2em 0;
}
.post-content .hcb_wrap, .page-content .hcb_wrap {
  overflow-x: auto !important;
  max-width: 100%;
}
.post-content pre, .page-content pre,
.post-content code,
.page-content code {
  font-size: 1.4rem;
  overflow-x: auto;
}

.sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .sidebar {
    position: static;
  }
}
.sidebar__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ebe8dd;
}
.sidebar__section:last-child {
  border-bottom: none;
}
.sidebar__label {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #6b6e66;
  margin-bottom: 16px;
}
.sidebar__cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar__cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 1.3rem;
  border-bottom: 1px solid #ebe8dd;
}
.sidebar__cat-name {
  color: #1f211c;
}
.sidebar__cat-count {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  color: #6b6e66;
}
.sidebar__recent-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar__recent-link {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.sidebar__recent-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
.sidebar__recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar__recent-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar__recent-title {
  font-size: 1.3rem;
  line-height: 1.5;
}
.sidebar__recent-date {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  color: #6b6e66;
}
.sidebar__search {
  display: flex;
  border: 1px solid #ebe8dd;
}
.sidebar__search-input {
  flex: 1;
  padding: 10px 12px;
  font-size: 1.3rem;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  background: transparent;
  border: none;
  outline: none;
  color: #1f211c;
}
.sidebar__search-input::placeholder {
  color: #6b6e66;
}
.sidebar__search-btn {
  padding: 10px 14px;
  color: #6b6e66;
  font-size: 1.4rem;
  border-left: 1px solid #ebe8dd;
  transition: color 0.2s ease;
}
.sidebar__search-btn:hover {
  color: #1f211c;
}
.sidebar__author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar__author-avatar {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
}
.sidebar__author-name {
  font-size: 1.4rem;
  font-weight: 500;
}
.sidebar__author-bio {
  font-size: 1.3rem;
  color: #6b6e66;
  line-height: 1.7;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 800px;
  margin: 2em auto 0;
}
@media screen and (max-width: 767px) {
  .post-tags {
    padding: 0 1em;
  }
}
.post-tags__item {
  font-family: "Baskervville", serif;
  font-size: 1.1rem;
  color: #6b6e66;
  border: 1px solid #ebe8dd;
  padding: 4px 12px;
}
.post-tags__item:hover {
  border-color: #7c956c;
  color: #7c956c;
}

.pr-note {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  max-width: 800px;
  margin: 3.4em auto 4em;
}
@media screen and (max-width: 767px) {
  .pr-note {
    font-size: 1rem;
    margin: 3em auto;
    padding: 0 1.8em;
  }
}

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .post-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.post-nav__prev, .post-nav__next {
  background: #fff;
}
.post-nav__next {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .post-nav__next {
    text-align: left;
  }
}
.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid #ebe8dd;
}
.post-nav__dir {
  font-family: "Baskervville", serif;
  font-size: 1.4rem;
  color: #7c956c;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .post-nav__dir {
    font-size: 1.2rem;
  }
}
.post-nav__title {
  font-size: 1.3rem;
  line-height: 1.5;
}

.related {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid #ebe8dd;
}
.related__title {
  font-family: "Baskervville", serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 32px;
}

.archive-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .archive-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.archive-wrap {
  padding-top: 56px;
  padding-bottom: 80px;
}

.archive-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ebe8dd;
}
.archive-header__title {
  font-family: "Baskervville", serif;
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
}
.archive-header__desc {
  font-size: 1.3rem;
  color: #6b6e66;
  margin-top: 8px;
}

.page-wrap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .page-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-wrap {
  padding: 2em 0 8em;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .page-wrap {
    padding: 20px 14px 80px;
  }
}

.page-header {
  margin-bottom: 40px;
}
.page-header__title {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  padding: 2em 0;
}
@media screen and (max-width: 767px) {
  .page-header__title {
    font-size: 2.2rem;
    padding: 1em 0;
  }
}

.pagination {
  margin-top: 56px;
}
.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.pagination__item a,
.pagination__item .current,
.pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: "Baskervville", serif;
  font-size: 1.2rem;
  color: #6b6e66;
  border: 1px solid #ebe8dd;
  transition: border-color 0.2s, color 0.2s;
}
.pagination__item a:hover,
.pagination__item .current:hover,
.pagination__item span:hover {
  border-color: #1f211c;
  color: #1f211c;
  opacity: 1;
}
.pagination__item .current {
  border-color: #1f211c;
  color: #1f211c;
}

.footer {
  padding: 70px 0;
  background: #f6f6f0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 60px 0 50px;
  }
}
.footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }
}
.footer__brand {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .footer__brand {
    text-align: center;
    margin-bottom: 1.8em;
    width: 100%;
  }
}
.footer__logo {
  display: block;
  width: 160px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin: 0 auto;
  }
}
.footer__logo-ja {
  font-size: 1.1rem;
  color: #6b6e66;
  letter-spacing: 0.3em;
  margin-top: 1.4em;
}
@media screen and (max-width: 767px) {
  .footer__logo-ja {
    letter-spacing: 0.1em;
  }
}
.footer__menu {
  display: flex;
  gap: 1.2em;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1em;
  }
}
.footer__menu a {
  font-family: "Baskervville", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #1f211c;
}
.footer__nav-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__nav-group {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
}
.footer__nav-label {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #6b6e66;
  margin-bottom: 16px;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__nav-link {
  font-size: 1.3rem;
  color: #6b6e66;
  display: block;
  padding: 4px 0;
}
.footer__nav-link:hover {
  color: #1f211c;
  opacity: 1;
}
.footer__copy {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  color: #6b6e66;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    text-align: center;
    width: 100%;
  }
}
.footer__sub {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  color: #6b6e66;
  font-style: italic;
}

.widget {
  margin-bottom: 32px;
}
.widget__title {
  font-family: "Baskervville", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #6b6e66;
  margin-bottom: 16px;
}

.no-posts {
  font-size: 1.4rem;
  color: #6b6e66;
  text-align: center;
  padding: 48px 0;
}

.post-content--single {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.single-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .single-meta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.single-meta__label {
  font-family: "Baskervville", serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1f211c;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ebe8dd;
}

.single-search {
  display: flex;
  justify-content: flex-start;
  border: 1px solid #ebe8dd;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .single-search {
    max-width: 360px;
  }
}
.single-search__input {
  flex: 1;
  padding: 14px 16px;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  color: #1f211c;
  background: transparent;
  border: none;
  outline: none;
}
.single-search__input::placeholder {
  color: #6b6e66;
}
@media screen and (max-width: 767px) {
  .single-search__input {
    font-size: 1.2rem;
    width: 80%;
  }
}
.single-search__btn {
  padding: 14px 20px;
  background: #ebe8dd;
  border: none;
  font-family: "Baskervville", serif;
  font-size: 1.4rem;
  color: #6b6e66;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.single-search__btn:hover {
  color: #7c956c;
  background: #f6f6f0;
}
@media screen and (max-width: 767px) {
  .single-search__btn {
    width: 20%;
  }
}

.single-author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.single-author__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.single-author__body {
  flex: 1;
}
.single-author__name {
  font-family: "Baskervville", serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.single-author__bio {
  font-size: 1.3rem;
  color: #6b6e66;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .single-author__bio {
    font-size: 1.2rem;
  }
}

.section--archive {
  padding-top: 56px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .section--archive {
    padding-top: 40px;
    padding-bottom: 56px;
  }
}

.wpcf7 {
  max-width: 600px;
  margin: 3.4em auto 0;
}
.wpcf7 p {
  margin-bottom: 2.4em;
}
@media screen and (max-width: 767px) {
  .wpcf7 p {
    margin-bottom: 1.8em;
  }
}
.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #6b6e66;
  border-radius: 0;
  padding: 1em 1.2em;
  margin-top: 0.8em;
  width: 100%;
}
.wpcf7 input[type=submit] {
  background: #1f211c;
  border: none;
  border-radius: 0;
  display: block;
  color: #fff;
  font-family: inherit;
  letter-spacing: 0.2em;
  padding: 1.4em;
  margin: 3em auto 0;
  max-width: 240px;
  transition: opacity 0.2s ease;
}
.wpcf7 input[type=submit]:hover {
  opacity: 0.8;
}
.wpcf7 .wpcf7-list-item {
  margin: 0.4em 0;
  font-size: 90%;
}
.wpcf7 .wpcf7-list-item input[type=checkbox] {
  width: auto;
  display: inline-block;
  margin-right: 0.4em;
}
.wpcf7 .required {
  background: #7c956c;
  border-radius: 0;
  color: #fff;
  font-size: 70%;
  display: inline-block;
  padding: 0 0.6em;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
  border: none;
}

.wpcf7-not-valid-tip {
  font-size: 80%;
}/*# sourceMappingURL=style.css.map */