@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.3;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
}

body {
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
  font: inherit;
  color: inherit;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
  color-scheme: light;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 48px;
}
@media (min-width: 768px) {
  .wrapper {
    padding-top: 62px;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.container--no-hero {
  padding-top: 40px;
}

.main {
  flex: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 8px 16px 8px 5px;
}
@media (min-width: 768px) {
  .header {
    min-height: 62px;
    padding: 16px 32px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}
.header {
  background-color: #fff;
  color: #0D0015;
}
.header__logo img {
  height: 20px;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo img {
    height: 30px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}
.header__nav-item i {
  font-size: 18px;
}
.header__nav-item span {
  display: none;
}
@media (min-width: 992px) {
  .header__nav-item span {
    display: inline;
  }
}
.header__nav-item--cta {
  font-weight: bold;
  padding: 6px 10px;
  border: 1px solid #0D0015;
  border-radius: 999px;
}
.header__nav-item--cta:hover {
  background-color: #0D0015;
  color: #fff;
}
.header__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.header__hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #333;
  transition: background-color 0.3s;
}

.footer {
  background-color: #0D0015;
  color: #fff;
  font-size: 14px;
  margin-top: 56px;
}
.footer a {
  color: #dcdcdc;
  transition: color 0.3s;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer__inner {
  padding-top: 56px;
  padding-bottom: 56px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
  }
}
.footer__column {
  padding: 16px 0;
}
.footer__heading {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.footer__heading::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  font-size: 12px;
}
.footer__heading.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
@media (min-width: 768px) {
  .footer__heading {
    cursor: default;
    margin-bottom: 1.2em;
  }
  .footer__heading::after {
    display: none;
  }
}
.footer__list {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.footer__list.is-open {
  max-height: 500px;
  margin-top: 16px;
  margin-left: 8px;
}
@media (min-width: 768px) {
  .footer__list {
    max-height: none;
    overflow: visible;
    margin-top: 0;
    margin-left: 0;
  }
}
.footer__list li:not(:last-child) {
  margin-bottom: 0.8em;
}
.footer__list a[target=_blank]::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75em;
  margin-left: 0.4em;
  opacity: 0.7;
}
.footer__sns {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  display: flex;
  gap: 24px;
}
.footer__sns.is-open {
  max-height: 500px;
  margin-top: 16px;
  margin-left: 8px;
}
@media (min-width: 768px) {
  .footer__sns {
    max-height: none;
    overflow: visible;
    margin-top: 0;
    margin-left: 0;
  }
}
.footer__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer__copyright {
  text-align: center;
  color: #a0a0a0;
  font-size: 12px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title__sub {
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
}

.view-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-bottom: 16px;
}
.view-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
  color: #a0a0a0;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s, border-color 0.2s;
}
.view-toggle__btn.is-active {
  color: #0D0015;
  border-color: #0D0015;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
@media (min-width: 768px) {
  .archive-grid {
    grid-template-columns: repeat(var(--grid-columns, 2), 1fr);
    gap: var(--grid-gap, 32px);
  }
}
.archive-grid.is-list-view {
  grid-template-columns: 1fr;
  gap: 32px;
}
.archive-grid.is-list-view .card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.archive-grid.is-list-view .card__link {
  display: contents;
}
.archive-grid.is-list-view .card__image-wrapper {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}
.archive-grid.is-list-view .card__image-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.archive-grid.is-list-view .card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  min-width: 0;
  word-break: break-word;
}
.archive-grid.is-list-view .card__title {
  height: auto;
}
@media (min-width: 768px) {
  .archive-grid.is-list-view .card {
    grid-template-columns: 250px 1fr;
  }
  .archive-grid.is-list-view .card__body {
    padding: 0 16px;
  }
  .archive-grid.is-list-view .card__title {
    font-size: 18px;
  }
  .archive-grid.is-list-view .card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.archive-grid.is-single-view {
  grid-template-columns: 1fr;
  gap: 32px;
}
.archive-grid.is-single-view .card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.front-layout {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .front-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }
}

.front-layout__sidebar {
  position: sticky;
  top: calc(48px + 32px);
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .front-layout__sidebar {
    top: calc(62px + 32px);
  }
}

.single-layout {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .single-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }
}

.single-layout__main {
  min-width: 0;
}

.single-layout__sidebar {
  position: sticky;
  top: calc(48px + 32px);
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .single-layout__sidebar {
    top: calc(62px + 32px);
  }
}

.author-card {
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.author-card__header {
  padding: 16px 24px;
  font-size: 12px;
  font-weight: bold;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.author-card__body {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 24px;
  align-items: center;
}

.author-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #eee;
}
.author-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-card__name {
  font-weight: bold;
  margin-bottom: 8px;
}

.author-card__desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.author-card__desc.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.author-card__more {
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  font-size: 12px;
  color: #a0a0a0;
  cursor: pointer;
  font-family: inherit;
}
.author-card__more:hover {
  text-decoration: underline;
}

.sidebar-banner {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar-banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
}
.sidebar-banner:hover img {
  opacity: 0.85;
}

.sidebar-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.sidebar-card__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.ranking-list__item {
  counter-increment: ranking;
}

.ranking-list__link {
  color: #333;
  text-decoration: none;
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
}
.ranking-list__link:hover {
  text-decoration: underline;
}

.ranking-list__thumb {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
  position: relative;
}
.ranking-list__thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ranking-list__thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}
.ranking-list__thumb-placeholder > img {
  width: 60%;
  height: auto;
  object-fit: contain;
  opacity: 0.15;
}

.ranking-list__title-row {
  display: block;
}

.ranking-list__rank {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 0;
  background: #b7c7d4;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ranking-list__rank::before {
  content: counter(ranking);
}

.ranking-list__item:nth-child(1) .ranking-list__rank {
  background: #d7b23f;
}

.ranking-list__item:nth-child(2) .ranking-list__rank {
  background: #9eb6c6;
}

.ranking-list__item:nth-child(3) .ranking-list__rank {
  background: #c08a5a;
}

.ranking-list__title {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.recommend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recommend-list__item + .recommend-list__item {
  border-top: 1px solid #eee;
}

.recommend-list__item {
  padding: 8px 0;
}

.recommend-list__link {
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  font-size: 12px;
}
.recommend-list__link:hover {
  text-decoration: underline;
}

.entry-header {
  margin-bottom: 32px;
  text-align: left;
}

.entry-title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.entry-thumbnail {
  margin-bottom: 32px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #eee;
  aspect-ratio: 16/9;
}
.entry-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  height: 100%;
}

.entry-toc {
  display: none;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  background-color: #f9f9f9;
}
@media (min-width: 768px) {
  .entry-toc {
    display: block;
  }
}

.entry-toc__title {
  font-weight: bold;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.entry-toc__title::marker {
  display: none;
}

.entry-toc__title::-webkit-details-marker {
  display: none;
}

.entry-toc__title::after {
  content: "−";
  font-size: 16px;
}

.entry-toc:not([open]) .entry-toc__title::after {
  content: "+";
}

.entry-toc__body {
  margin-top: 16px;
}

.entry-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.entry-toc__item {
  font-size: 12px;
}
.entry-toc__item a {
  color: #333;
  text-decoration: none;
}
.entry-toc__item a:hover {
  text-decoration: underline;
}

.entry-toc__item.is-active > a {
  color: #0D0015;
  font-weight: 700;
  display: inline-block;
}

.entry-toc__item--level-3,
.entry-toc__item--level-4,
.entry-toc__item--level-5,
.entry-toc__item--level-6 {
  padding-left: 16px;
}

.entry-toc__item--level-4,
.entry-toc__item--level-5,
.entry-toc__item--level-6 {
  padding-left: 24px;
}

.entry-toc__item--level-5,
.entry-toc__item--level-6 {
  padding-left: 32px;
}

.entry-toc__item--level-6 {
  padding-left: 40px;
}

.entry-content {
  line-height: 1.9;
  font-size: 16px;
}
.entry-content a {
  color: #3d5a9e;
}
.entry-content a:hover {
  text-decoration: none;
}
.entry-content p {
  margin-bottom: 24px;
}
.entry-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.entry-content h3 {
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 8px;
}
.entry-content ul {
  list-style-type: square;
  padding-left: 1.5em;
  margin-bottom: 24px;
}
.entry-content ul::marker,
.entry-content ul li::marker {
  color: #3d5a9e;
}
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 24px;
}
.entry-content blockquote {
  margin: 32px 0;
  padding: 16px 24px;
  border-left: 3px solid #eee;
  color: #666;
  background-color: #f9f9f9;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14px;
}
.entry-content th,
.entry-content td {
  padding: 16px 24px;
  border: 1px solid #ccc !important;
  text-align: left;
  vertical-align: top;
}
.entry-content th,
.entry-content thead td {
  font-weight: 600;
  background-color: #f0f0f0;
}
.entry-content .wp-block-table thead {
  border-bottom: none;
}
.entry-content .wp-block-table.is-style-stripes tbody td,
.entry-content .wp-block-table.is-style-stripes tbody th,
.entry-content .wp-block-table.is-style-stripes thead td,
.entry-content .wp-block-table.is-style-stripes thead th {
  border: 1px solid #ccc !important;
}
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  scroll-margin-top: calc(48px + 44px + 16px);
}
@media (min-width: 768px) {
  .entry-content h2,
  .entry-content h3,
  .entry-content h4,
  .entry-content h5,
  .entry-content h6 {
    scroll-margin-top: calc(62px + 16px);
  }
}

.entry-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 56px 0;
}
.entry-separator span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eee;
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  margin-bottom: 32px;
}

.entry-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid #eee;
  border-radius: 999px;
  color: #333;
  text-decoration: none;
}
.entry-tag:hover {
  background-color: #f9f9f9;
}

.site-banners {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .site-banners {
    grid-template-columns: 1fr 1fr;
  }
}

.site-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.site-banner:hover {
  border-color: #a0a0a0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.site-banner__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-banner__name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}
.site-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  background: #0D0015;
  color: #fff;
  border-radius: 4px;
}
.site-banner__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
}
.site-banner__image::before {
  content: "";
  position: absolute;
  inset: 0;
  right: auto;
  width: 50%;
  z-index: 1;
}
.site-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-banner__arrow {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #a0a0a0;
  border-right: 2px solid #a0a0a0;
  transform: rotate(45deg);
  margin-left: 16px;
}
.site-banner--gs {
  background: #0D0015;
  color: #fff;
  border-color: #0D0015;
  overflow: hidden;
}
.site-banner--gs:hover {
  border-color: #0D0015;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.site-banner--gs .site-banner__image::before {
  background: linear-gradient(to right, #0D0015, transparent);
}
.site-banner--gs .site-banner__cta {
  background: #fff;
  color: #0D0015;
}
.site-banner--shop {
  background: #221002;
  color: #fff;
  border-color: #221002;
  overflow: hidden;
}
.site-banner--shop:hover {
  border-color: #221002;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.site-banner--shop .site-banner__image::before {
  background: linear-gradient(to right, #221002, transparent);
}
.site-banner--shop .site-banner__cta {
  background: #fff;
  color: #221002;
}
.site-banner__sub {
  font-size: 12px;
  opacity: 0.8;
}

.inline-ad {
  margin: 32px 0;
}

.inline-ad__inner {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #f9f9f9;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .inline-ad__inner {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    align-items: center;
  }
}

.inline-ad__media {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #fff;
}
.inline-ad__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-ad__content {
  display: grid;
  gap: 8px;
}

.inline-ad__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  background: #333;
  color: #fff;
}

.inline-ad__title {
  font-weight: 700;
  margin: 0;
}

.inline-ad__text {
  margin: 0;
  font-size: 12px;
  color: #a0a0a0;
}

.inline-ad__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #0D0015;
}

.inline-ad__cta::after {
  content: "→";
}

.entry-cta__text {
  margin: 0;
  font-size: 12px;
  color: #333;
}

.company-block {
  margin-top: 40px;
  display: grid;
  gap: 32px;
}
.company-block__section {
  padding: 24px;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.9;
  overflow: hidden;
  min-width: 0;
}
.company-block__section p {
  margin: 0 0 8px;
}
.company-block__section p:last-of-type {
  margin-bottom: 0;
}
.company-block__section .btn {
  display: block;
  margin-top: 24px;
  text-align: center;
}
.company-block__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .company-block__table {
    font-size: 14px;
  }
}
.company-block__table th,
.company-block__table td {
  padding: 16px 24px;
  border: 1px solid #eee;
  text-align: left;
}
.company-block__table th {
  background-color: rgb(241.35, 241.35, 241.35);
  white-space: nowrap;
  font-weight: 600;
  width: 120px;
}
.company-block__table a {
  color: #0D0015;
}
.company-block__table a:hover {
  text-decoration: underline;
}
.company-block__table a[target=_blank]::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75em;
  margin-left: 4px;
  opacity: 0.6;
}
.company-block__link-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.cta-card__text {
  font-size: 12px;
  color: #333;
  margin-bottom: 16px;
}

.cta-card__button {
  width: 100%;
  text-align: center;
}

.card {
  overflow: hidden;
}
.card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
}
.card__placeholder > img {
  width: 60%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  opacity: 0.12;
}
.card__image-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
}
.card__image-wrapper > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.card:hover .card__image-wrapper > img {
  opacity: 0.85;
}
.card__body {
  padding: 16px 0 0;
}
.card__category-wrapper {
  margin-bottom: 4px;
}
.card__category {
  display: inline-block;
  color: #a0a0a0;
  font-size: 12px;
  font-weight: bold;
}
.card__title {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 8px;
  line-height: 1.4;
}
.card__excerpt {
  display: none;
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.card__meta i {
  margin-right: 4px;
  opacity: 0.8;
}

.section-button {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn--primary {
  background-color: #0D0015;
  color: #fff;
}
.btn--primary:hover {
  background-color: rgb(44.5714285714, 0, 72);
}

.article-bar {
  position: sticky;
  top: 48px;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: #0D0015;
  color: #fff;
  margin: 0 -16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .article-bar {
    display: none;
  }
}

.article-bar__author {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.article-bar__author i {
  font-size: 10px;
  transition: transform 0.2s;
}
.article-bar__author[aria-expanded=true] i {
  transform: rotate(180deg);
}

.article-bar__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.article-bar__label {
  font-size: 12px;
  white-space: nowrap;
}

.article-bar__author-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
}
.article-bar__author-panel.is-open {
  display: block;
}

.article-bar__author-body {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
}

.article-bar__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eee;
}

.article-bar__author-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.article-bar__author-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.article-bar__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
.article-bar__toggle i {
  font-size: 10px;
  transition: transform 0.2s;
}
.article-bar__toggle[aria-expanded=true] i {
  transform: rotate(180deg);
}

.article-bar__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 60vh;
  overflow-y: auto;
  background: #fff;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
}
.article-bar__panel.is-open {
  display: block;
}

.article-bar__top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}
.article-bar__top:hover {
  text-decoration: underline;
}

.article-bar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
}

.article-bar__item {
  font-size: 12px;
  line-height: 1.5;
}
.article-bar__item a {
  display: block;
  padding: 6px 0;
  color: #333;
  text-decoration: none;
}
.article-bar__item a:hover {
  text-decoration: underline;
}
.article-bar__item.is-active > a {
  color: #0D0015;
  font-weight: 700;
}

.article-bar__item--level-3 {
  padding-left: 16px;
}

.article-bar__item--level-4 {
  padding-left: 24px;
}

.article-bar__item--level-5 {
  padding-left: 32px;
}

.article-bar__item--level-6 {
  padding-left: 40px;
}

.hero {
  margin-bottom: 32px;
}

.hero__main {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .hero__main {
    aspect-ratio: 21/9;
  }
}

.hero__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
@media (min-width: 768px) {
  .hero__main-overlay {
    padding: 40px;
  }
}

.hero__main-category {
  font-size: 12px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 8px;
}

.hero__main-title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 768px) {
  .hero__main-title {
    font-size: 24px;
  }
}

.hero__main-link-text {
  color: #fff;
  font-size: 12px;
  margin-top: 16px;
  opacity: 0.8;
}

.share-buttons {
  margin-top: 32px;
  text-align: center;
}

.share-buttons__label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.share-buttons__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.share-buttons__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.share-buttons__link:hover {
  color: #fff;
  border-color: transparent;
}
.share-buttons__link--x:hover {
  background: #000;
}
.share-buttons__link--facebook:hover {
  background: #1877F2;
}
.share-buttons__link--line:hover {
  background: #06C755;
}
.share-buttons__link--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.share-buttons__link--share:hover {
  background: #666;
}

.related-posts {
  margin-top: 40px;
}

.related-posts__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.related-posts__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.related-posts__grid::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .related-posts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }
}

.related-posts__grid > .card {
  flex: 0 0 calc((100% - 16px) / 1.3);
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .related-posts__grid > .card {
    flex: initial;
  }
}

.navigation-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #221002;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  overflow-y: auto;
  padding-top: 48px;
}
.navigation-menu.is-open {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .navigation-menu {
    left: auto;
    right: 0;
    width: 400px;
    padding-top: 62px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s, visibility 0.4s;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  .navigation-menu.is-open {
    transform: translateX(0);
  }
}
.navigation-menu__close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #221002;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .navigation-menu__close {
    left: 20px;
    right: auto;
  }
}
.navigation-menu__content {
  padding: 24px;
}
.navigation-menu__section {
  margin-bottom: 24px;
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
}
.navigation-menu__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.navigation-menu__section .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-bottom: 16px;
}
.navigation-menu__section .button:hover {
  opacity: 0.85;
}
.navigation-menu__section .button:last-child {
  margin-bottom: 0;
}
.navigation-menu__section .button--primary {
  background-color: #0D0015;
  color: #fff;
}
.navigation-menu__section .button--line {
  background-color: #06C755;
  color: #fff;
}
.navigation-menu__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #a0a0a0;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.navigation-menu__thumbnail-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 16px;
}
.navigation-menu__thumbnail-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #eee;
}
.navigation-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.navigation-menu__nav a {
  color: #221002;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  display: block;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.navigation-menu__nav a:hover {
  background-color: #f6f3f1;
  text-decoration: none;
}
.navigation-menu__nav a[target=_blank]::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75em;
  margin-left: 0.4em;
  opacity: 0.5;
}
.navigation-menu__expandable-header {
  display: flex;
  align-items: center;
}
.navigation-menu__expandable-header a {
  flex: 1;
}
.navigation-menu__expand-toggle {
  background: none;
  border: none;
  color: #a0a0a0;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 12px;
  transition: transform 0.2s;
}
.is-expanded .navigation-menu__expand-toggle {
  transform: rotate(180deg);
}
.navigation-menu__sub-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
}
.is-expanded .navigation-menu__sub-nav {
  display: flex;
}
.navigation-menu__sub-nav a {
  color: #221002;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  display: block;
  padding: 6px 10px;
  margin: 0 -10px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.navigation-menu__sub-nav a:hover {
  background-color: #f6f3f1;
}
.navigation-menu__sns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.navigation-menu__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #221002;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}
.navigation-menu__sns-link:hover {
  background-color: #221002;
  color: #fff;
}
.navigation-menu__utility {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.navigation-menu__utility a {
  color: #666;
  text-decoration: none;
  font-size: 12px;
}
.navigation-menu__utility a:hover {
  text-decoration: underline;
}

.search-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 11000;
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.search-overlay__card {
  width: min(92vw, 360px);
  background: #fff;
  color: #221002;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .search-overlay__card {
    width: min(80vw, 560px);
    padding: 28px 32px;
    gap: 20px;
  }
}
.search-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-overlay__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 768px) {
  .search-overlay__title {
    font-size: 18px;
  }
}
.search-overlay__close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #221002;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.search-overlay__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .search-overlay__form {
    gap: 16px;
  }
}
.search-overlay__field {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
}
.search-overlay__field i {
  color: #221002;
}
.search-overlay__field input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;
}
@media (min-width: 768px) {
  .search-overlay__field {
    padding: 14px 18px;
  }
  .search-overlay__field input {
    font-size: 16px;
  }
}
.search-overlay__clear {
  border: none;
  background: transparent;
  padding: 0;
  color: #221002;
  cursor: pointer;
  font-size: 14px;
}
.search-overlay__submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: #0D0015;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .search-overlay__submit {
    font-size: 16px;
    padding: 12px 20px;
  }
}
.search-overlay__chips-title {
  font-size: 12px;
  color: #a0a0a0;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .search-overlay__chips-title {
    font-size: 14px;
  }
}
.search-overlay__chip-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.search-overlay__chip {
  border: 1px solid #eee;
  background: #f7f7f7;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  color: #221002;
  white-space: nowrap;
  cursor: pointer;
}
@media (min-width: 768px) {
  .search-overlay__chip {
    font-size: 14px;
    padding: 8px 14px;
  }
}

.privacy-page {
  padding-top: 40px;
  padding-bottom: 80px;
}
.privacy-page .page-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.privacy {
  max-width: 900px;
  margin: 0 auto;
}
.privacy__lead {
  line-height: 1.8;
  font-size: 12px;
  color: #333;
  margin-bottom: 40px;
}
.privacy__section {
  margin-bottom: 32px;
}
.privacy__section p {
  line-height: 1.8;
  font-size: 12px;
  color: #333;
  margin-bottom: 16px;
}
.privacy__section p:last-child {
  margin-bottom: 0;
}
.privacy__heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0D0015;
}
.privacy__subheading {
  font-size: 14px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 4px solid #0D0015;
}
.privacy__list {
  padding-left: 2em;
  margin: 8px 0 16px;
  font-size: 12px;
  line-height: 1.8;
  color: #333;
}
.privacy__list li {
  margin-bottom: 4px;
}
.privacy__note {
  font-size: 12px;
  color: #a0a0a0;
}
.privacy__revision {
  margin-top: 56px;
  text-align: right;
  font-size: 12px;
  color: #333;
}

.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

.admin-bar .navigation-menu {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .navigation-menu {
    top: 46px;
  }
}

.alignnone {
  margin: 16px 0;
}

.aligncenter {
  display: block;
  margin: 16px auto;
}

.alignleft {
  float: left;
  margin: 0 16px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 16px;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 16px;
}
.wp-caption img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wp-caption-text {
  font-size: 12px;
  color: #a0a0a0;
  margin-top: 8px;
  text-align: center;
}

.wp-block-embed {
  display: block;
  margin: 24px auto;
}

.wp-block-embed__wrapper > * {
  display: block;
  margin: 0 auto;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.gallery-item {
  flex: 1 0 calc(33.333% - 8px);
  max-width: calc(33.333% - 8px);
}
.gallery-item img {
  width: 100%;
  height: auto;
}

.wp-block-gallery.wp-block-gallery {
  gap: 8px;
  margin-bottom: 24px;
}
.wp-block-gallery.wp-block-gallery .wp-block-image {
  flex-grow: 0 !important;
  flex-basis: calc(50% - 8px / 2);
  max-width: calc(50% - 8px / 2);
}
@media (min-width: 768px) {
  .wp-block-gallery.wp-block-gallery .wp-block-image {
    flex-basis: calc(33.333% - 8px);
    max-width: calc(33.333% - 8px);
  }
}
.wp-block-gallery.wp-block-gallery .wp-block-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.breadcrumb {
  padding: 16px 0;
  font-size: 12px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumb__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumb__list {
    flex-wrap: wrap;
    overflow: visible;
  }
}

.breadcrumb__item {
  flex: 0 0 auto;
  color: #a0a0a0;
}
.breadcrumb__item::after {
  content: ">";
  margin-left: 8px;
}
.breadcrumb__item:last-child::after {
  content: none;
}
.breadcrumb__item[aria-current=page] {
  color: #333;
}
.breadcrumb__item a {
  color: #a0a0a0;
  text-decoration: none;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}

.pagination {
  padding: 32px 0;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid #eee;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.2s;
}
.pagination .page-numbers.current {
  background-color: #0D0015;
  color: #fff;
  border-color: #0D0015;
}
.pagination .page-numbers:hover:not(.current) {
  background-color: #f9f9f9;
}

.contact {
  padding: 40px 0 80px;
  background: #f9f9f9;
}
@media (min-width: 768px) {
  .contact {
    padding: 80px 0 120px;
  }
}

.contact__header {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .contact__header {
    margin-bottom: 40px;
  }
}

.contact__title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: #221002;
}

.contact__lead {
  color: #333;
  font-size: 0.95rem;
}

.contact__notes {
  max-width: 780px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .contact__notes {
    margin-bottom: 36px;
    padding: 22px 26px;
  }
}

.contact__notes-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #221002;
}

.contact__notes-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

.contact__notes-link {
  display: inline-block;
  margin-top: 6px;
  color: #000040;
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 20px;
  display: grid;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 36px 40px;
    gap: 24px;
  }
}

.contact-form__group {
  display: grid;
  gap: 8px;
}
.contact-form__group label {
  font-size: 0.9rem;
  color: #333;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form__row {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .contact-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #000040;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  width: fit-content;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000040;
  box-shadow: 0 0 0 2px rgba(0, 0, 64, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__note {
  font-size: 0.8rem;
  color: #a0a0a0;
}

.contact-form__actions {
  display: flex;
  justify-content: center;
}

.contact-form__submit {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: #0D0015;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-form__submit:hover {
  background-color: #221002;
}

.contact-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #c00;
  margin-top: 4px;
}

.contact-form .wpcf7-response-output {
  max-width: 780px;
  margin: 16px auto 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}

.contact__after {
  max-width: 780px;
  margin: 24px auto 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) {
  .contact__after {
    margin-top: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

.contact__after-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
@media (min-width: 768px) {
  .contact__after-card {
    padding: 20px 24px;
    gap: 12px;
  }
}

.contact__callout-title {
  font-size: 0.95rem;
  color: #333;
}

.contact__callout-tel {
  font-size: 1.2rem;
  font-weight: 700;
  color: #221002;
}
.contact__callout-tel a {
  color: inherit;
  text-decoration: none;
}

.contact__callout-note {
  font-size: 0.8rem;
  color: #a0a0a0;
}

.contact__line-text {
  font-size: 0.9rem;
  color: #333;
}

.contact__line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.contact__line-button:hover {
  opacity: 0.85;
}

.no-results {
  text-align: center;
  padding: 60px 0 80px;
}
@media (min-width: 768px) {
  .no-results {
    padding: 80px 0 120px;
  }
}

.no-results__icon {
  font-size: 48px;
  color: #a0a0a0;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .no-results__icon {
    font-size: 64px;
  }
}

.no-results__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #221002;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .no-results__title {
    font-size: 1.5rem;
  }
}

.no-results__text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.no-results__action {
  margin-top: 32px;
}

.search-form {
  max-width: 480px;
  margin: 0 auto;
}

.search-form__field {
  display: flex;
  border: 1px solid #eee;
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-form__field:focus-within {
  border-color: #000040;
  box-shadow: 0 0 0 2px rgba(0, 0, 64, 0.15);
}

.search-form__input {
  flex: 1;
  border: none;
  padding: 0.75rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  outline: none;
  min-width: 0;
}

.search-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  border: none;
  background: #0D0015;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}
.search-form__submit:hover {
  background-color: #221002;
}

.interior-slider {
  margin-bottom: 24px;
  overflow: hidden;
}
.interior-slider .swiper-slide {
  height: auto;
}
.interior-slider .slide-image-wrapper {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #f9f9f9;
}
.interior-slider .slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.interior-slider .caption {
  margin: 0;
  padding: 8px 8px 0;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}
.interior-slider .swiper-button-prev,
.interior-slider .swiper-button-next {
  display: none;
}
@media (min-width: 768px) {
  .interior-slider .swiper-button-prev,
  .interior-slider .swiper-button-next {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    transition: background 0.2s;
  }
  .interior-slider .swiper-button-prev::after,
  .interior-slider .swiper-button-next::after {
    font-size: 14px;
  }
  .interior-slider .swiper-button-prev:hover,
  .interior-slider .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}
.interior-slider .swiper-pagination {
  position: relative;
  margin-top: 16px;
}
.interior-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #eee;
  opacity: 1;
  transition: background 0.2s;
}
.interior-slider .swiper-pagination-bullet-active {
  background: #333;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px auto;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.6;
}
.product-card p {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .product-card {
    grid-template-columns: 1fr 1fr;
  }
}
.product-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-card__name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.product-card__price-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #333;
}
.product-card__price-tax {
  font-size: 12px;
  color: #666;
}
.product-card__installment {
  padding: 8px 16px 16px;
  background: #f9f9f9;
  border-radius: 4px;
}
.product-card__installment:empty {
  display: none;
}
.product-card__installment-main {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.product-card__installment-amount {
  font-size: 22px;
  font-weight: 700;
  color: #000040;
}
.product-card__installment-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: #666;
}
.product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.product-card__btn:hover {
  opacity: 0.85;
}
.product-card__btn--primary {
  background: #0D0015;
  color: #fff;
}
.product-card__btn--outline {
  background: #fff;
  color: #333;
  border: 1px solid #eee;
}

.simulation-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 11000;
}
.simulation-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.simulation-modal__content {
  position: relative;
  width: min(92vw, 520px);
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 24px;
}
@media (min-width: 768px) {
  .simulation-modal__content {
    padding: 32px;
  }
}
.simulation-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.6rem;
  color: #221002;
  line-height: 1;
}
.simulation-modal__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  padding-right: 32px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .simulation-modal__title {
    font-size: 18px;
  }
}
.simulation-modal__price {
  font-size: 14px;
  color: #333;
  margin: 0 0 24px;
}
.simulation-modal__free {
  font-size: 12px;
  color: #000040;
  font-weight: 700;
  margin: 0 0 16px;
}
.simulation-modal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 16px;
}
.simulation-modal__header-cell {
  padding: 10px 12px;
  background: #f9f9f9;
  border: 1px solid #eee;
  font-weight: 700;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 768px) {
  .simulation-modal__header-cell {
    font-size: 14px;
  }
}
.simulation-modal__cell {
  padding: 10px 12px;
  border: 1px solid #eee;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 768px) {
  .simulation-modal__cell {
    font-size: 14px;
  }
}
.simulation-modal__cell--amount {
  font-weight: 700;
  color: #000040;
}
.simulation-modal__footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  cursor: default;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox__close:hover {
  opacity: 1;
}

.entry-content img {
  cursor: zoom-in;
}

.harada-highlight {
  background-color: transparent;
  background-image: linear-gradient(transparent 50%, var(--highlight-color, #fff9c4) 50%);
  padding: 0 0.1em;
}
