@charset "UTF-8";
/*------------------------
SIZE
-------------------------*/
/*************************************
MIXINS
*************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.fade-in {
  animation: fadeIn 0.4s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------
COLOR
-------------------------*/
::selection {
  background: #e6f5f0;
  color: #1a1a2e;
}

a {
  color: #0d7c5f;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #065c45;
}

/*------------------------
TEXT SET
-------------------------*/
html {
  font-size: 75%;
  background-color: #f7f6f3;
}

body {
  font-size: 1.4em;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
  color: #000;
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

/*------------------------
BASIC LAYOUT / MODULE
-------------------------*/
img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
}

.pcHide {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcHide {
    display: block;
  }
}

.spHide {
  display: block;
}
@media screen and (max-width: 768px) {
  .spHide {
    display: none;
  }
}

.tac {
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

figure {
  margin: 0;
}

/*------------------------
RESET
-------------------------*/
body {
  word-wrap: break-word;
}

th, td {
  text-align: left;
  vertical-align: top;
  border: none;
}

caption {
  text-align: left;
}

img {
  border: 0;
  vertical-align: bottom;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

fieldset, img {
  border: 0;
}

a {
  outline: none;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
}

/*
	clearfix
------------------------------------- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

* html .clearfix {
  display: inline-block;
}

.clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* html5の要素をblock */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  box-sizing: border-box;
}

/*------------------------
FORM
-------------------------*/
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*------------------------
TABLE
-------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  width: 100%;
}

/*------------------------
TYPOGRAPHY (reset後適用)
-------------------------*/
h1 {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

html.wf-loading body {
  opacity: 0;
}

html.wf-active body,
html.wf-inactive body {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.container--full {
  max-width: 1680px;
  padding: 0 20px;
  grid-template-columns: 1fr;
}

.container--narrow {
  max-width: 800px;
  grid-template-columns: 1fr;
}

.content-area {
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .content-area article {
    padding-left: 0;
    padding-right: 0;
  }
}

.site-main {
  padding: 0 0 64px;
}
@media screen and (max-width: 1024px) {
  .site-main {
    padding: 0 0 48px;
    padding-bottom: 70px;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 450px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.card-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .card-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .card-grid--3col {
    grid-template-columns: 1fr;
  }
}

.card-grid--4col {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .card-grid--4col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .card-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .card-grid--4col {
    grid-template-columns: 1fr;
  }
}

.section {
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .section {
    margin-bottom: 32px;
  }
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .section__header {
    margin-bottom: 16px;
  }
}

.section__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: 1.4rem;
  }
}

.section__title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #0d7c5f;
  color: #ffffff;
  border-radius: 0;
  flex-shrink: 0;
}
.section__title-icon svg {
  width: 16px;
  height: 16px;
}

.section__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #8e90a6;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.section__more:hover {
  color: #0d7c5f;
}
.section__more::after {
  content: "›";
  font-size: 1.4rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 229, 234, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  .site-header__inner {
    height: 52px;
  }
}
.site-header__logo {
  flex-shrink: 0;
  line-height: 1;
}
.site-header__logo a {
  display: flex;
  align-items: center;
}
.site-header__logo img {
  height: 32px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .site-header__logo img {
    height: 26px;
  }
}
.site-header__tagline {
  font-size: 1rem;
  color: #8e90a6;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .site-header__tagline {
    display: none;
  }
}
.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-logo-text {
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #000;
  letter-spacing: -0.02em;
  position: relative;
  margin: 0;
}
.site-logo-text:hover {
  color: #000;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  position: relative;
}
.nav-menu li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  margin: 0 4px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 0;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu li a:hover {
  background-color: #0d7c5f;
  color: #ffffff;
}
.nav-menu li .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 180px;
  padding: 4px 0;
  list-style: none;
  z-index: 100;
}
.nav-menu li .sub-menu li a {
  padding: 8px 16px;
  font-size: 1.2rem;
  white-space: nowrap;
  border-radius: 0;
}
.nav-menu li:hover .sub-menu {
  display: block;
}

.nav-cat-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 0;
  background: transparent;
  color: #555770;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-cat-btn:hover {
  opacity: 0.85;
}
.nav-cat-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cat-btn__icon svg {
  width: 24px;
  height: 24px;
}
.nav-cat-btn__label {
  white-space: nowrap;
  line-height: 1;
}
.nav-cat-btn.cat--investment {
  color: #2563eb;
}
.nav-cat-btn.cat--saving {
  color: #0d9488;
}
.nav-cat-btn.cat--insurance {
  color: #7c3aed;
}
.nav-cat-btn.cat--tax {
  color: #e44d60;
}
.nav-cat-btn.cat--pointkatsu {
  color: #f59e0b;
}

.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #8e90a6;
  border-radius: 0;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-toggle:hover {
  background: #f7f6f3;
  color: #0d7c5f;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  border-radius: 0;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}
.hamburger:hover {
  background: #f7f6f3;
}
.hamburger__line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #1a1a2e;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.search-overlay {
  display: flex;
  align-items: center;
  width: 300px;
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .search-overlay {
    display: none;
  }
}
.search-overlay__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.search-overlay .search-form {
  width: 100%;
}
.search-overlay .search-form__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}
.search-overlay .search-form__submit {
  flex-shrink: 0;
}
.search-overlay #search-input-2::placeholder {
  font-size: 0.7em;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.is-active {
  display: block;
}

.mobile-nav {
  background: #ffffff;
  max-height: calc(100vh - 52px);
  overflow-y: auto;
  padding: 24px 20px;
}
.mobile-nav__menu {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.mobile-nav__menu li {
  border-bottom: 1px solid #e5e5ea;
}
.mobile-nav__menu li a {
  display: block;
  padding: 14px 0;
  color: #1a1a2e;
  font-size: 1.4rem;
  font-weight: 500;
}
.mobile-nav__menu li .sub-menu {
  list-style: none;
  padding-left: 24px;
}
.mobile-nav__menu li .sub-menu li:last-child {
  border-bottom: none;
}
.mobile-nav__menu li .sub-menu a {
  font-size: 1.2rem;
  color: #555770;
}

.mobile-nav__categories {
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e5ea;
}
.mobile-nav__categories-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8e90a6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.mobile-nav__categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__cat-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: #1a1a2e;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #e5e5ea;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav__cat-link.cat--investment {
  color: #2563eb;
}
.mobile-nav__cat-link.cat--saving {
  color: #0d9488;
}
.mobile-nav__cat-link.cat--insurance {
  color: #7c3aed;
}
.mobile-nav__cat-link.cat--tax {
  color: #e44d60;
}
.mobile-nav__cat-link.cat--pointkatsu {
  color: #f59e0b;
}

.mobile-nav__cat-icon {
  display: inline-flex;
  align-items: center;
}
.mobile-nav__cat-icon svg {
  width: 20px;
  height: 20px;
}

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

.site-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.85);
  margin-top: auto;
}
.site-footer__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 64px 20px 24px;
}
@media screen and (max-width: 1024px) {
  .site-footer__inner {
    padding: 48px 20px 16px;
  }
}
.site-footer__columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 768px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.site-footer__logo {
  font-family: neuzeit-grotesk, sans-serif;
  font-weight: bold;
  margin-bottom: 16px;
}
.site-footer__logo a {
  color: #ffffff;
}
.site-footer__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer__logo .site-logo-text {
  color: #ffffff;
  font-size: 1.4rem;
}
.site-footer__logo .site-logo-text span {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__logo .site-logo-text:hover {
  color: #ffffff;
}
.site-footer__desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links li {
  margin-bottom: 6px;
}
.site-footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-footer__links a:hover {
  color: #ffffff;
}
.site-footer__bottom {
  padding-top: 24px;
  text-align: center;
}
.site-footer__copyright {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

.btn, .comments-area .comment-respond .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  border: none;
  border-radius: 0;
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover, .comments-area .comment-respond .submit:hover {
  transform: translateY(-1px);
}
.btn:active, .comments-area .comment-respond .submit:active {
  transform: translateY(0);
}
.btn--cta {
  background: #f0803c;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(240, 128, 60, 0.25);
}
.btn--cta:hover {
  background: #d96a28;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(240, 128, 60, 0.35);
}
.btn--accent, .comments-area .comment-respond .submit {
  background: #0d7c5f;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(13, 124, 95, 0.2);
}
.btn--accent:hover, .comments-area .comment-respond .submit:hover {
  background: #065c45;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(13, 124, 95, 0.3);
}
.btn--outline {
  background: transparent;
  color: #0d7c5f;
  border: 1.5px solid #0d7c5f;
}
.btn--outline:hover {
  background: #0d7c5f;
  color: #ffffff;
}
.btn--ghost {
  background: transparent;
  color: #555770;
  border: 1.5px solid #e5e5ea;
}
.btn--ghost:hover {
  background: #f7f6f3;
  color: #1a1a2e;
  border-color: #8e90a6;
}
.btn--sm {
  padding: 6px 16px;
  font-size: 1.1rem;
}
.btn--lg {
  padding: 14px 48px;
  font-size: 1.4rem;
}
.btn--full {
  width: 100%;
}

.card {
  position: relative;
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.card__link {
  position: absolute;
  inset: 0;
  z-index: 0;
  color: #1a1a2e;
  text-decoration: none;
}
.card__link:hover {
  color: #1a1a2e;
}
.card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  pointer-events: none;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.15));
  pointer-events: none;
}
.card:hover .card__thumb img {
  transform: scale(1.06);
}
.card__body {
  padding: 16px;
}
.card__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.card__excerpt {
  display: none;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #8e90a6;
}
.card__date {
  display: inline-flex;
  align-items: center;
}
.card__reading-time {
  display: inline-flex;
  align-items: center;
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 18px;
}
.card__tag {
  font-size: 1rem;
  color: #8e90a6;
  background: #f7f6f3;
  padding: 2px 6px;
  border-radius: 4px;
}

.card--featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-column: 1/-1;
  border: none;
}
@media screen and (max-width: 768px) {
  .card--featured {
    grid-template-columns: 1fr;
  }
}
.card--featured .card__link--featured {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.card--featured .card__thumb--featured {
  aspect-ratio: 16/9;
}
.card--featured .card__body--featured {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.card--featured .card__title--featured {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1024px) {
  .card--featured .card__title--featured {
    font-size: 1.4rem;
  }
}

.category-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 7px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 0;
  color: #ffffff;
  background: #0d7c5f;
  text-decoration: none;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.category-badge:hover {
  color: #ffffff;
}
.card__body .category-badge {
  margin-bottom: 8px;
}
.category-badge__icon {
  display: inline-flex;
  align-items: center;
}
.category-badge__icon svg {
  width: 20px;
  height: 20px;
}
.category-badge.cat--investment {
  background: #2563eb;
}
.category-badge.cat--saving {
  background: #0d9488;
}
.category-badge.cat--insurance {
  background: #7c3aed;
}
.category-badge.cat--tax {
  background: #e44d60;
}
.category-badge.cat--pointkatsu {
  background: #f59e0b;
}

.ranking-card {
  list-style: none;
}
.ranking-card + .ranking-card {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e5e5ea;
}
.ranking-card__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a2e;
  text-decoration: none;
  padding: 4px 0;
  border-radius: 0;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.ranking-card__link:hover {
  color: #0d7c5f;
}
.ranking-card__rank {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #8e90a6;
  border-radius: 0;
}
.ranking-card__rank[data-rank="1"] {
  background: #c9960c;
}
.ranking-card__rank[data-rank="2"] {
  background: #8e8e93;
}
.ranking-card__rank[data-rank="3"] {
  background: #a0714b;
}
.ranking-card__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 0;
  overflow: hidden;
}
.ranking-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ranking-card__body {
  min-width: 0;
}
.ranking-card__title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ranking-card__date {
  font-size: 1rem;
  color: #8e90a6;
}

.hero--carousel .pr-disclosure,
.card-grid .pr-disclosure {
  display: none;
}

.category-nav {
  margin-bottom: 32px;
}
.category-nav__inner {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 8px;
}
@media screen and (max-width: 450px) {
  .category-nav__inner {
    gap: 4px;
    flex-wrap: wrap;
  }
}
.category-nav__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  color: #555770;
  background: transparent;
  border: 1px solid #e5e5ea;
  text-decoration: none;
  transition: all 0.25s ease;
}
@media screen and (max-width: 450px) {
  .category-nav__item {
    padding: 6px 12px;
    gap: 4px;
  }
}
.category-nav__item:hover, .category-nav__item.is-active {
  border-color: #0d7c5f;
  color: #ffffff;
  background: #0d7c5f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.category-nav__item.cat--investment {
  color: #2563eb;
  border-color: #2563eb;
}
.category-nav__item.cat--investment:hover, .category-nav__item.cat--investment.is-active {
  border-color: #2563eb;
  background: #eff4ff;
  color: #2563eb;
  opacity: 0.85;
}
.category-nav__item.cat--saving {
  color: #0d9488;
  border-color: #0d9488;
}
.category-nav__item.cat--saving:hover, .category-nav__item.cat--saving.is-active {
  border-color: #0d9488;
  background: #edfaf9;
  color: #0d9488;
  opacity: 0.85;
}
.category-nav__item.cat--insurance {
  color: #7c3aed;
  border-color: #7c3aed;
}
.category-nav__item.cat--insurance:hover, .category-nav__item.cat--insurance.is-active {
  border-color: #7c3aed;
  background: #f3edff;
  color: #7c3aed;
  opacity: 0.85;
}
.category-nav__item.cat--tax {
  color: #e44d60;
  border-color: #e44d60;
}
.category-nav__item.cat--tax:hover, .category-nav__item.cat--tax.is-active {
  border-color: #e44d60;
  background: #fdeef0;
  color: #e44d60;
  opacity: 0.85;
}
.category-nav__item.cat--pointkatsu {
  color: #f59e0b;
  border-color: #f59e0b;
}
.category-nav__item.cat--pointkatsu:hover, .category-nav__item.cat--pointkatsu.is-active {
  border-color: #f59e0b;
  background: #fef8ec;
  color: #f59e0b;
  opacity: 0.85;
}
.category-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-nav__icon svg {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 450px) {
  .category-nav__icon svg {
    width: 20px;
    height: 20px;
  }
}
.category-nav__label {
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 450px) {
  .category-nav__label {
    font-size: 1.1rem;
  }
}

.popular-tags-section {
  margin-top: 16px;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.popular-tags__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 13px;
  background-color: #F3EFE5;
  border: 1px solid #CDCAC3;
  border-radius: 10px;
  font-size: 1.1rem;
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.popular-tags__item:hover {
  background-color: #FEFCF9;
  border-color: #CDCAC3;
  color: #1a1a2e;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
}
.popular-tags__item:hover .popular-tags__hash {
  color: #0d7c5f;
}
.popular-tags__hash {
  color: #999;
  font-weight: 600;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.popular-tags__name {
  font-weight: bold;
}

.hero--carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.hero-swiper {
  height: 560px;
}
@media screen and (max-width: 1024px) {
  .hero-swiper {
    height: 340px;
  }
}
@media screen and (max-width: 450px) {
  .hero-swiper {
    height: 260px;
  }
}

.hero-slide {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
  pointer-events: none;
}
.hero-slide__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .hero-slide__body {
    padding: 24px;
  }
}
.hero-slide__meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.hero-slide__meta .category-badge {
  font-size: 1.4rem;
  padding: 5px 14px;
  color: #fff;
  white-space: nowrap;
}
.hero-slide__title {
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.35;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .hero-slide__title {
    font-size: 1.7rem;
    -webkit-line-clamp: 2;
  }
}
.hero-slide__excerpt {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #fff;
  opacity: 0.9;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .hero-slide__excerpt {
    display: none;
  }
}

.swiper-slide-active .hero-slide__bg {
  transform: scale(1.04);
}

.hero-swiper .swiper-slide:not(.swiper-slide-active) {
  pointer-events: none;
}

.hero-swiper .swiper-pagination {
  bottom: 20px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  border-radius: 0;
  background: #fff;
  opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 40px;
  opacity: 1;
}

.hero-swiper__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.3s;
}
.hero-swiper__nav:hover {
  opacity: 1;
}

.hero-swiper__prev {
  left: 20px;
}

.hero-swiper__next {
  right: 20px;
}

@media screen and (max-width: 1024px) {
  .hero-swiper__nav {
    display: none;
  }
}
.single-article {
  background: #f7f6f3;
  border-radius: 0;
  box-shadow: none;
}
.single-article__header {
  padding: 32px 32px 0;
}
@media screen and (max-width: 1024px) {
  .single-article__header {
    padding: 24px 24px 0;
  }
}
.single-article__meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.single-article__reading-time {
  font-size: 1.1rem;
  color: #8e90a6;
}
.single-article__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a2e;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .single-article__title {
    font-size: 2rem;
  }
}
.single-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.2rem;
  color: #8e90a6;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5ea;
}
.single-article__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.single-article__content {
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .single-article__content {
    padding: 24px;
  }
}
.single-article__content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 48px 0 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d7c5f;
}
.single-article__content h2:first-child {
  margin-top: 0;
}
.single-article__content h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 3px solid #0d7c5f;
}
.single-article__content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 24px 0 16px;
}
.single-article__content p {
  font-size: 1.6rem;
  margin-bottom: 24px;
  line-height: 1.9;
}
@media screen and (max-width: 1024px) {
  .single-article__content p {
    font-size: 1.5rem;
  }
}
.single-article__content ul, .single-article__content ol {
  margin: 0 0 24px 24px;
  line-height: 1.9;
}
.single-article__content ul {
  list-style: disc;
}
.single-article__content ol {
  list-style: decimal;
}
.single-article__content li {
  margin-bottom: 8px;
}
.single-article__content blockquote {
  margin: 24px 0;
  padding: 24px;
  background: #f7f6f3;
  border-left: 4px solid #0d7c5f;
  border-radius: 0 0 0 0;
  color: #555770;
}
.single-article__content blockquote p:last-child {
  margin-bottom: 0;
}
.single-article__content img {
  border-radius: 0;
  margin: 16px 0;
}
.single-article__content a {
  color: #0d7c5f;
  text-decoration: underline;
}
.single-article__content a:hover {
  color: #065c45;
}
.single-article__content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  margin: 24px 0;
  border: 1px solid #e5e5ea;
  border-radius: 0;
}
.single-article__content table th, .single-article__content table td {
  padding: 8px 16px;
  border-bottom: 1px solid #e5e5ea;
}
.single-article__content table th {
  background: #f7f6f3;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .single-article__content table {
    font-size: 1.2rem;
  }
}
.single-article__content pre {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 24px;
  border-radius: 0;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 1.2rem;
  line-height: 1.6;
}
.single-article__content code {
  background: #f7f6f3;
  padding: 2px 6px;
  border-radius: 0;
  font-size: 0.9em;
}
.single-article__content pre code {
  background: none;
  padding: 0;
}
.single-article__footer {
  padding: 32px;
  border-top: 1px solid #e5e5ea;
}
@media screen and (max-width: 1024px) {
  .single-article__footer {
    padding: 24px;
  }
}
.single-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.single-article__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 13px;
  background-color: #F3EFE5;
  border: 1px solid #CDCAC3;
  border-radius: 10px;
  font-size: 1.1rem;
  color: #1a1a2e;
  text-decoration: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.single-article__tag:hover {
  background-color: #FEFCF9;
  border-color: #CDCAC3;
  color: #1a1a2e;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.share-section {
  margin-top: 24px;
}
.share-section__heading {
  font-size: 1.2rem;
  font-weight: 500;
  color: #8e90a6;
  margin-bottom: 16px;
}

.share-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.share-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.share-links__item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}
.share-links__twitter {
  background: #000;
}
.share-links__facebook {
  background: #1877f2;
}
.share-links__line {
  background: #06c755;
}

.archive-header {
  margin-bottom: 32px;
}
.archive-header__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a2e;
}
@media screen and (max-width: 1024px) {
  .archive-header__title {
    font-size: 2rem;
  }
}
.archive-header__prefix {
  color: #8e90a6;
  margin-right: 4px;
}
.archive-header__desc {
  margin-top: 8px;
  font-size: 1.4rem;
  color: #555770;
}

.page-content {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.page-content__header {
  padding: 32px 32px 0;
}
@media screen and (max-width: 1024px) {
  .page-content__header {
    padding: 24px 24px 0;
  }
}
.page-content__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a2e;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5ea;
}
.page-content__body {
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .page-content__body {
    padding: 24px;
  }
}

.no-results {
  background: #ffffff;
  border-radius: 0;
  padding: 64px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.no-results h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.no-results p {
  color: #555770;
  margin-bottom: 32px;
}
.no-results .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.table-featured {
  background-color: rgba(13, 124, 95, 0.08);
  font-weight: bold;
}

.highlight-merit {
  color: #000;
  font-weight: bold;
  background-image: -webkit-linear-gradient(transparent 70%, #F9FF6E 0);
  background-image: linear-gradient(transparent 70%, #F9FF6E 0);
}

.source-note {
  font-size: 0.8em;
  color: #666;
  display: inline;
}

.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5ea;
}
.related-articles__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.related-articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .related-articles__list {
    grid-template-columns: 1fr;
  }
}
.related-articles__item {
  border: 1px solid #e5e5ea;
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.related-articles__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.related-articles__thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.related-articles__thumbnail-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f7f6f3;
  display: block;
}
.related-articles__body {
  padding: 16px;
}
.related-articles__post-title {
  font-size: 1.2rem;
  line-height: 1.9;
  font-weight: 700;
}
.related-articles__post-title a {
  color: inherit;
  text-decoration: none;
}
.related-articles__post-title a:hover {
  text-decoration: underline;
}
.related-articles__date {
  font-size: 1.1rem;
  color: #8e90a6;
  margin-top: 4px;
}

.single-article__content p.pr-disclosure {
  font-size: 0.7em;
  color: #999;
}

#toc_container {
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  padding: 20px 25px;
  margin: 16px 0;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  #toc_container {
    padding: 15px 16px;
    margin: 16px 0;
  }
}

.toc_title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.toc_list {
  list-style: none;
  padding-left: 0;
}
.toc_list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.toc_list li:last-child {
  border-bottom: none;
}
.toc_list a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
}
.toc_list a:hover {
  color: #0d7c5f;
  text-decoration: underline;
}

.rakuten-widget-wrap {
  text-align: center;
  margin: 1.5em 0;
}

.rakuten-widget-pc {
  display: block;
}

.rakuten-widget-sp {
  display: none;
}

@media (max-width: 1024px) {
  .rakuten-widget-pc {
    display: none;
  }
  .rakuten-widget-sp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar {
    max-width: 100%;
  }
}
.sidebar__widget {
  padding: 24px;
}
.sidebar__widget + .sidebar__widget {
  margin-top: 24px;
}
.sidebar__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d7c5f;
}
.sidebar__ranking {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar__cat-item + .sidebar__cat-item {
  margin-top: 8px;
}
.sidebar__cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-radius: 0;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__cat-link:hover {
  background: #f7f6f3;
  color: #1a1a2e;
}
.sidebar__cat-link.cat--investment:hover {
  background: #eff4ff;
  color: #2563eb;
}
.sidebar__cat-link.cat--saving:hover {
  background: #edfaf9;
  color: #0d9488;
}
.sidebar__cat-link.cat--insurance:hover {
  background: #f3edff;
  color: #7c3aed;
}
.sidebar__cat-link.cat--tax:hover {
  background: #fdeef0;
  color: #e44d60;
}
.sidebar__cat-link.cat--pointkatsu:hover {
  background: #fef8ec;
  color: #f59e0b;
}
.sidebar__cat-count {
  background: #f7f6f3;
  padding: 0 8px;
  border-radius: 0;
  font-size: 1.1rem;
  color: #8e90a6;
}
.sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar__tag {
  display: inline-block;
  padding: 4px 16px;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 0;
  font-size: 1.1rem;
  color: #555770;
  text-decoration: none;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__tag:hover {
  background: #0d7c5f;
  color: #ffffff;
  border-color: #0d7c5f;
}

.sidebar-card-group {
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
}

.sidebar-banner {
  padding: 24px 24px 0;
  text-align: center;
}

@media screen and (min-width: 1025px) {
  .single .sidebar {
    margin-top: 160px;
  }
}

.widget {
  background: #ffffff;
  border-radius: 0;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.widget + .widget {
  margin-top: 24px;
}
.widget .widget-title,
.widget .widgettitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d7c5f;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid #e5e5ea;
}
.widget ul li:last-child {
  border-bottom: none;
}
.widget ul li a {
  color: #1a1a2e;
  font-size: 1.2rem;
  text-decoration: none;
}
.widget ul li a:hover {
  color: #0d7c5f;
}

.breadcrumb {
  padding: 16px 0;
  margin-bottom: 24px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
}
.breadcrumb__item a {
  color: #8e90a6;
  text-decoration: none;
}
.breadcrumb__item a:hover {
  color: #0d7c5f;
}
.breadcrumb__item.is-current {
  color: #555770;
}
.breadcrumb__separator {
  color: #8e90a6;
  margin: 0 4px;
  font-size: 1.1rem;
}

.search-form__wrapper {
  display: flex;
  align-items: center;
  background: #f7f6f3;
  border: 2px solid transparent;
  border-radius: 0;
  transition: border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.search-form__wrapper:focus-within {
  border-color: #0d7c5f;
  background: #ffffff;
}
.search-form__input {
  flex: 1;
  padding: 8px 16px;
  background: none;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: #1a1a2e;
}
.search-form__input::placeholder {
  color: #8e90a6;
}
.search-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: #8e90a6;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-form__submit:hover {
  color: #0d7c5f;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination__item a,
.pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1), color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination__item a {
  color: #555770;
  background: #ffffff;
  border: 1px solid #e5e5ea;
}
.pagination__item a:hover {
  background: #0d7c5f;
  color: #ffffff;
  border-color: #0d7c5f;
}
.pagination__item span.current {
  background: #0d7c5f;
  color: #ffffff;
  border: 1px solid #0d7c5f;
}
.pagination__item span.dots {
  border: none;
  background: none;
  color: #8e90a6;
}

.affiliate-banner img {
  max-width: 100%;
  height: auto !important;
  width: auto !important;
}

.affiliate-cta {
  margin: 48px 0;
  padding: 32px;
  background: linear-gradient(135deg, #fff5ed 0%, rgb(255, 253.5, 252.3) 100%);
  border: 2px solid rgba(240, 128, 60, 0.2);
  border-radius: 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .affiliate-cta {
    padding: 24px;
  }
}
.affiliate-cta__service {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.affiliate-cta__desc {
  font-size: 1.4rem;
  color: #555770;
  margin-bottom: 24px;
  line-height: 1.7;
}
.affiliate-cta__btn {
  min-width: 280px;
}
@media screen and (max-width: 450px) {
  .affiliate-cta__btn {
    width: 100%;
    min-width: auto;
  }
}
.affiliate-cta__note {
  font-size: 1.1rem;
  color: #8e90a6;
  margin-top: 8px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-accent {
  color: #0d7c5f;
}

.text-cta {
  color: #f0803c;
}

.text-muted {
  color: #8e90a6;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: 8px;
}

.mt-md {
  margin-top: 16px;
}

.mt-lg {
  margin-top: 24px;
}

.mt-xl {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 8px;
}

.mb-md {
  margin-bottom: 16px;
}

.mb-lg {
  margin-bottom: 24px;
}

.mb-xl {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-only {
    display: block;
  }
}

.comments-area {
  margin-top: 48px;
  background: #ffffff;
  border-radius: 0;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
}
@media screen and (max-width: 1024px) {
  .comments-area {
    padding: 24px;
  }
}
.comments-area__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0d7c5f;
}
.comments-area__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.comments-area__list .comment {
  padding: 16px 0;
  border-bottom: 1px solid #e5e5ea;
}
.comments-area__list .comment:last-child {
  border-bottom: none;
}
.comments-area__list .comment-author {
  font-weight: 500;
  margin-bottom: 4px;
}
.comments-area__list .comment-author img {
  width: 48px;
  height: 48px;
  border-radius: 0;
  margin-right: 8px;
  vertical-align: middle;
}
.comments-area__list .comment-content p {
  margin: 8px 0;
  line-height: 1.7;
}
.comments-area__list .comment-metadata {
  font-size: 1.1rem;
  color: #8e90a6;
}
.comments-area .comment-respond .comment-reply-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.comments-area .comment-respond label {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.comments-area .comment-respond input[type=text],
.comments-area .comment-respond input[type=email],
.comments-area .comment-respond input[type=url],
.comments-area .comment-respond textarea {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e5e5ea;
  border-radius: 0;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.comments-area .comment-respond input[type=text]:focus,
.comments-area .comment-respond input[type=email]:focus,
.comments-area .comment-respond input[type=url]:focus,
.comments-area .comment-respond textarea:focus {
  outline: none;
  border-color: #0d7c5f;
}
.comments-area .comment-respond textarea {
  min-height: 120px;
  resize: vertical;
}
.sticky-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  font-size: 0;
  line-height: 0;
  min-height: 50px;
}
@media screen and (min-width: 1025px) {
  .sticky-banner {
    display: none;
  }
}

.sticky-banner__inner {
  display: block;
  font-size: 0;
  line-height: 0;
}
.sticky-banner__inner img,
.sticky-banner__inner iframe {
  display: block;
  max-width: 100%;
}
.sticky-banner__inner a img {
  height: auto;
  max-width: 100%;
}

/*# sourceMappingURL=common.css.map */
