/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-secondary: #64748b;
  --color-text-dark: #343432;
  --color-text-light: #64748b;
  --color-background: #f8f8f8;
  --color-background-alt: #f8fafc;
  --color-border: #e2e8f0;
  --font-family: "Noto Sans JP", sans-serif;
  --max-width: 768px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --border-radius: 0.5rem;
  --transition: 0.2s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*:where(
  :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
body {
  font-family: var(--font-family);
}
a,
button {
  cursor: revert;
}
ol,
ul,
menu,
summary {
  list-style: none;
}
ol {
  counter-reset: revert;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea {
  -webkit-user-select: auto;
}
textarea {
  white-space: revert;
}
meter {
  -webkit-appearance: revert;
  appearance: revert;
}
:where(pre) {
  all: revert;
  box-sizing: border-box;
}
::placeholder {
  color: unset;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}
::-webkit-details-marker {
  display: none;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-background);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

.pagination {
  margin: 32px 0;
}

.pagination > .nav-links > .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination > .nav-links > .page-numbers > li > .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  color: #333;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
}

.pagination > .nav-links > .page-numbers > li > .page-numbers.current {
  background: #be907c;
  color: #fff;
  border: 1px solid #be907c;
}

.breadcrumb {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none;
  background-color: #fff;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 24px 0 0;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #666;
  line-height: 15px;
}
.breadcrumb__link {
  text-decoration: none;
  color: inherit;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  position: relative;
  left: 6px;
  width: 4px;
  height: 4px;
  border-bottom: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotateZ(-45deg);
}

.breadcrumb__current {
  color: #b2b2b2;
}

.locari-buttons-wrapper {
  margin: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.locari-button {
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 343px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #be907c;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.75px;
  border-radius: var(--size-8, 8px);
  border: 2px solid #be907c;
  background: #fff;
  transition: all 0.25s ease-in;
}
.locari-button:hover {
  color: #fff;
  background: #be907c;
}

.header {
  position: sticky;
  top: 32px;
  width: 100%;
  height: 78px;
  z-index: 10;
  background: white;
}

.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .header {
    height: 53px;
  }
}

.header__inner > .header-toggle {
  margin: auto;
  padding: 0;
  position: absolute;
  width: 24px;
  height: 26px;
  top: 0;
  bottom: 0;
  left: 16px;
  border: 0;
  background: white;
}

.header__inner > .logo {
  margin: auto;
  width: 200px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .header__inner > .logo {
    width: 130px;
  }
}

.footer {
  margin: 0;
  padding: 16px;
  padding-bottom: 128px;
  width: 100%;
  background-color: var(--color-background);
}
.footer__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.footer__inner > .sns-box > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  list-style-type: none;
}
.footer__inner > .sns-box > ul > li {
  width: 22px;
}

.footer__nav {
  margin: 0 auto;
}

.footer__nav-list > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: none;
}

.footer__nav-list > ul > li > a {
  color: var(--color-text-dark);
  font-size: 12px;
}

.copyright-box {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 16px;
}

.copyright-box > .logo-box {
  margin: auto;
  width: 130px;
}

.copyright-box > .copyright {
  color: var(--color-text-light);
  font-size: 10px;
  text-align: center;
}

.category-carousel-section {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.category-carousel-section .splide__list {
  align-items: center;
  text-align: center;
}

.category-carousel-section .splide__slide {
  padding: 0 16px;
  width: fit-content;
}
.category-carousel-section .category-card {
  padding: 8px 0;
  display: block;
  width: fit-content;
  color: #cdcdcd;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.65px;
  border-bottom: 2px solid transparent;
  transition: all 0.25s ease-in;
}

.category-carousel-section .category-card--active {
  color: #be907c;
  border-bottom: 2px solid #be907c;
}

.main-content {
  margin: auto;
  width: 100%;
  max-width: var(--max-width);
}

body.page-media-policy,
body.page-user-policy,
body.page-external-transmission,
body.page-contact {
  background-color: #fff;
}

.contact-email {
  text-align: center;
  margin: 24px 0;
}

.contact-email img {
  display: inline-block;
  vertical-align: middle;
}

.pickup-carousel-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.pickup-carousel-section .carousel-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pickup-carousel-section .carousel-card > .carousel-card__thumbnail {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.pickup-carousel-section .carousel-card > .carousel-card__thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-carousel-section .carousel-card > .carousel-card__content {
  margin: -48px auto 0 auto;
  padding: 16px;
  width: calc(100% - 32px);
  background-color: #fff;
}

.carousel-card__content {
  padding: 8px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.carousel-card__title {
  color: #343432;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.75px;
}
.carousel-card__meta {
  margin: 8px 0 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-card__category {
  margin: 0;
  padding: 3px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #be907c;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 1px;
  border-radius: 2px;
  border: 1px solid #be907c;
}
.carousel-card__post-date {
  display: block;
  color: var(--color-text-dark);
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 1px;
}

.main-content > .container > .latest-section {
  margin: 16px 0;
  width: 100%;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background-color: #fff;
}
.main-content
  > .container
  > .latest-section
  > .section-header
  > .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.main-content
  > .container
  > .latest-section
  > .section-header
  > .section-title
  > .eng {
  display: block;
  color: #343432;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: normal;
  letter-spacing: 2.1;
}

.main-content
  > .container
  > .latest-section
  > .section-header
  > .section-title
  > .jpn {
  color: #be907c;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0.5px;
}

.latets-posts-grid {
  margin: 16px 0;
}

/* MOOK Section */
.mook-section {
  margin: 32px 0;
  padding: 24px 16px 24px 16px;
  width: 100%;
}

.mook-section__inner {
  padding: 24px 16px;
  width: 100%;
  border-radius: 8px;
  background-color: #fcf1ef;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.mook-section .section-header > .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mook-section .section-header > .section-title > .eng {
  display: block;
  color: #4f2422;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: normal;
  letter-spacing: 2.2px;
}

.mook-section .section-header > .section-title > .jpn {
  color: #be907c;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.5px;
}

.mook-card {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: 100%;
  max-width: 144px;
  color: #be907c;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.5px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.mook-card__thumbnail {
  width: 100%;
  aspect-ratio: 144 / 216;
  overflow: hidden;
}

.mook-card__thumbnail > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mook-card__body {
  padding: 8px;
}

.mook-card__title {
  color: #343432;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.6px;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.mook-card__pr {
  padding: 1px 4px;
  display: inline-block;
  color: #b2b2b2;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  line-height: 100%;
  border-radius: 2px;
  border: 1px solid #b2b2b2;
}

/* MOOK Archive */
.mook-archive {
  padding: 0;
  width: 100%;
}

.mook-archive__inner {
  padding: 24px 16px;
  width: 100%;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.mook-archive .section-header > .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mook-archive .section-header > .section-title > .eng {
  display: block;
  color: #4f2422;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: normal;
  letter-spacing: 2.2px;
}

.mook-archive .section-header > .section-title > .jpn {
  color: #be907c;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 150%;
  letter-spacing: 0.5px;
}

.mook-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(144px, 1fr));
  gap: 16px;
}

.mook-archive__grid .mook-card {
  max-width: none;
}

/* Policy Page */
.policy-page {
  padding: 24px 16px;
  width: 100%;
  background-color: #fff;
}

.policy-page__header {
  margin-bottom: 24px;
}

.policy-page__title {
  color: #343432;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.policy-page__content {
  color: #343432;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.policy-page__content h2 {
  margin: 32px 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.policy-page__content h3 {
  margin: 24px 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.policy-page__content p {
  margin: 0 0 16px;
}

.policy-page__content ul {
  margin: 0 0 16px;
  padding-left: 1.5em;
  list-style: disc;
}

.policy-page__content ol {
  margin: 0 0 16px;
  padding-left: 1.5em;
  list-style: decimal;
}

.policy-page__content li {
  margin-bottom: 4px;
}

.main-content > .container > .ranking-section {
  margin: 32px 0 32px 0;
  width: 100%;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background-color: #fff;
}

.main-content
  > .container
  > .ranking-section
  > .section-header
  > .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.main-content
  > .container
  > .ranking-section
  > .section-header
  > .section-title
  > .eng {
  display: block;
  color: #343432;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: normal;
  letter-spacing: 2.1;
}

.main-content
  > .container
  > .ranking-section
  > .section-header
  > .section-title
  > .jpn {
  color: #be907c;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0.5px;
}

.post__container {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  padding: 24px;
  background-color: #fff;
}

.single-post {
  width: 100%;
  margin: 0 auto;
}

#ez-toc-container {
  padding: 20px;
  background: #fcf1ef;
  border: none;
  border-radius: 8px;
}
#ez-toc-container > .ez-toc-title-container > .ez-toc-title {
  width: 100%;
  display: block;
  color: #be907c;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 1.8px;
}

.ez-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ez-toc-list > li {
  line-height: 150% !important;
  padding: 8px 0 !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 13px !important;
}

.single-post > .header-box > .cover-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.single-post > .header-box > .cover-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post > .header-box > .title {
  margin: 16px 0 0 0;
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  text-align: left;
}

.single-post > .header-box > .meta-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.single-post > .header-box > .meta-box > .categories-box > .post-category {
  margin: 0;
  padding: 3px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #be907c;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 1px;
  border-radius: 2px;
  border: 1px solid #be907c;
}

.single-post > .header-box > .meta-box > .post-date-box > .post-date {
  margin: 0 0 0 8px;
  padding: 0;
  display: block;
  color: var(--text-body, #343432);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 1px;
}
.single-post > .header-box > .meta-box > .post-pr {
  margin-left: auto;
  padding: 0;
  display: block;
  color: var(--text-body, #343432);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 1px;
}

.single-post > .header-box > .author-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.single-post > .header-box > .author-box > .author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.single-post > .header-box > .author-box > .author-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post > .header-box > .author-box > .author-name {
  display: block;
  color: #343432;
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.65px;
}

.single-post > .author-content {
  margin: 96px 0 0 0;
  padding: 40px 16px 16px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.single-post > .author-content > .author-image {
  margin: auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
}
.single-post > .author-content > .author-name-title {
  margin: 0 0 4px;
  text-align: center;
  font-size: 10px;
  color: #666;
  font-weight: 600;
}

.single-post > .author-content > .author-name > .post-author-link {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  display: block;
  color: #333;
  text-align: center;
}

.single-post > .author-content > .author-description {
  line-height: 1.428571429;
  color: #333333;
}

.single-post > .author-content > .button-box {
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-post > .author-content > .button-box > .button {
  display: inline-block;
  padding: 10px 16px;
  border: solid 1px #be907c;
  border-radius: 8px;
  background-color: #fff;
  color: #be907c;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  text-align: center;
  line-height: 150%;
  letter-spacing: 0.65px;
}

.single-post > .post-content {
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.single-post > .post-content > h2 {
  margin: 16px 0 0 0;
  padding: 0;
  color: #343432;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.9px;
  border: 0 !important;
}

.single-post > .post-content > h3 {
  margin: 16px 0 0 0;
  padding: 0;
  color: #343432;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: normal;
}

.single-post > .post-content > p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: #343432;
  line-height: 190%;
}

.single-post > .post-content > p > a {
  color: var(--color-text-dark);
  text-decoration: underline;
}

.single-post > .post-content > .wp-block-image > img {
  width: 100%;
}

.single-post
  > .post-content
  > .post-element-external-product
  > .wp-block-group__inner-container {
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
}

.single-post
  > .post-content
  > .post-element-external-product
  > .wp-block-group__inner-container
  > figure {
  margin: 0;
  width: 100%;
}
.single-post
  > .post-content
  > .post-element-external-product
  > .wp-block-group__inner-container
  > figure
  > img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.single-post
  > .post-content
  > .post-element-external-product
  > .wp-block-group__inner-container
  > h4 {
  margin: 0;
  color: #343432;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.75px;
}
.single-post
  > .post-content
  > .post-element-external-product
  > .wp-block-group__inner-container
  > .post-element-product-text-brand,
.post-element-product-text-price {
  margin: 4px 0 0 0;
  color: #666;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.65px;
}

.single-post
  > .post-content
  > .post-element-external-product
  > .wp-block-group__inner-container
  .wp-block-button {
  width: 100%;
}
.single-post
  > .post-content
  > .post-element-external-product
  > .wp-block-group__inner-container
  .wp-block-button__link {
  margin-top: 16px;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.75px;
  border-radius: var(--size-8, 8px);
  background: #be907c;
  transition: all 0.25s ease-in;
}

.single-post > .post-content > .post-element-raw {
  width: 100%;
}
.single-post > .post-content > .post-element-raw > iframe {
  width: 100%;
  height: auto;
  border: none;
  aspect-ratio: 16/9;
}

.single-post > .post-tags {
  margin: 0;
  padding: 32px 0;
}

.post-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tags__link {
  display: block;
  padding: 4px 6px;
  color: #be907c;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 100%;
  border-radius: 50px;
  border: 1px solid #be907c;
  background: #fff;
  text-decoration: none;
  transition: all 0.25s ease-in;
}

.post-tags__link:hover {
  color: #fff;
  background: #be907c;
}

.post-element-link-button > .wp-block-button {
  margin: auto;
}

.wp-block-button__link {
  margin: auto;
  display: inline-block;
  color: #be907c;
  border-radius: 8px;
  border: 1px solid #be907c;
  background: #fff;
  transition: all 0.25s ease-in;
}
.wp-block-button__link:hover {
  color: #fff;
  background: #be907c;
}

.wp-element-caption {
  text-align: left;
}
.wp-element-caption > a {
  color: #666;
  font-size: 11px;
  text-decoration: none;
}

.archive__container {
  margin: 0;
  padding: 24px;
  width: 100%;
  background-color: #fff;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
  row-gap: 32px;
}

.post-card {
  width: 100%;
}
.post-card__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.post-card__link > .cover-image {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}

.post-card__link > .cover-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: normal;
  background-color: #be907c;
}

.post-card__title {
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.7px;
  color: #333;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.post-card__meta > .post-category {
  margin: 0;
  padding: 3px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #be907c;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: normal;
  letter-spacing: 1px;
  border-radius: 2px;
  border: 1px solid #be907c;
}
.post-card__meta > .post-date {
  margin: 0 0 0 8px;
  padding: 0;
  display: block;
  color: var(--text-body, #343432);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  line-height: 22px;
  letter-spacing: 1px;
}

/* Error page (404 / 500) */
.error-page {
  text-align: center;
  padding: 80px 16px 120px;
  background-color: #fff;
}

.error-page__code {
  font-family: var(--font-en);
  font-size: 96px;
  font-weight: 700;
  color: #be907c;
  line-height: 1;
  letter-spacing: 4px;
}

.error-page__title {
  font-size: 20px;
  font-weight: 600;
  margin: 16px 0 0;
  color: #333;
}

.error-page__message {
  font-size: 14px;
  color: #666;
  margin: 16px 0 0;
  line-height: 1.8;
}

.error-page__actions {
  margin-top: 40px;
}

.post-card__meta > .post-pr {
  margin-left: auto;
  padding: 0;
  display: block;
  color: var(--text-body, #343432);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 1px;
}
