@charset "UTF-8";
.global-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  margin-top: 80px;
  background: #082555;
}
.global-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}
.global-cta .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .global-cta .container {
    padding: 0 20px;
  }
}
.global-cta__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .global-cta__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}
.global-cta__content {
  max-width: 600px;
}
@media (max-width: 1024px) {
  .global-cta__content {
    max-width: 100%;
  }
}
.global-cta__label {
  display: inline-block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #c8a45c;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.global-cta__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .global-cta__title {
    font-size: 24px;
  }
}
.global-cta__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 768px) {
  .global-cta__text {
    font-size: 14px;
  }
}
.global-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .global-cta__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .global-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.global-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.global-cta__btn--primary {
  background: #c8a45c;
  color: #ffffff;
}
.global-cta__btn--primary:visited {
  color: #ffffff;
}
.global-cta__btn--primary:hover {
  background: #d4b76e;
  color: #ffffff;
}
.global-cta__btn--primary:hover .global-cta__btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.global-cta__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.global-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.global-cta__btn--secondary .global-cta__btn-icon {
  color: #ffffff;
}
.global-cta__btn--secondary .global-cta__btn-icon svg {
  stroke: #ffffff;
}
.global-cta__btn--secondary .global-cta__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.3;
}
.global-cta__btn--secondary .global-cta__btn-text small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.global-cta__btn--secondary .global-cta__btn-text strong {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.global-cta__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.global-cta__btn-icon svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .global-cta__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 24px;
  }
}

.btn-primary,
.btn-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: #c8a45c;
  color: #082555;
  border: none;
}
.btn-primary:hover {
  background: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #0e3472;
  border: 1px solid #0e3472;
}
.btn-secondary:hover {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
  background: #ffffff;
  color: #0e3472;
  border: 1px solid #ffffff;
}
.btn-white:hover {
  background: #c8a45c;
  border-color: #c8a45c;
  color: #082555;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
}
.btn--primary {
  background: #c8a45c;
  color: #ffffff;
  border: none;
}
.btn--primary:visited {
  color: #ffffff;
}
.btn--primary:hover {
  background: #082555;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: #0e3472;
  border: 1px solid #0e3472;
}
.btn--secondary:hover {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--sm {
  padding: 12px 24px;
  font-size: 14px;
}
.btn--lg {
  padding: 20px 44px;
  font-size: 16px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 224, 224, 0.5);
}
.card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.archive-product-page .site-content,
.archive-capability-page .site-content,
.archive-case-page .site-content,
.archive-faq-page .site-content,
.archive-news-page .site-content,
.single-news-page .site-content,
.taxonomy-product-category-page .site-content,
.taxonomy-news-category-page .site-content,
.page-order .site-content {
  padding-top: 0;
}

.archive-faq-page {
  background: #f8f8f8;
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes heroZoom {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes heroZoom {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.page-hero {
  position: relative;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  color: #ffffff;
  overflow: hidden;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 60vh;
    padding-bottom: 44px;
  }
}
.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: heroZoom 20s ease-out forwards;
          animation: heroZoom 20s ease-out forwards;
}
.page-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.page-hero .page-hero-overlay--product {
  background: -webkit-linear-gradient(315deg, rgba(14, 52, 114, 0.75) 0%, rgba(8, 37, 85, 0.85) 100%);
  background: linear-gradient(135deg, rgba(14, 52, 114, 0.75) 0%, rgba(8, 37, 85, 0.85) 100%);
}
.page-hero .page-hero-overlay--product-category {
  background: -webkit-linear-gradient(315deg, rgba(14, 52, 114, 0.75) 0%, rgba(8, 37, 85, 0.85) 100%);
  background: linear-gradient(135deg, rgba(14, 52, 114, 0.75) 0%, rgba(8, 37, 85, 0.85) 100%);
}
.page-hero .page-hero-overlay--capability {
  background: -webkit-linear-gradient(315deg, rgba(21, 101, 192, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
}
.page-hero .page-hero-overlay--case {
  background: -webkit-linear-gradient(315deg, rgba(0, 105, 92, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
  background: linear-gradient(135deg, rgba(0, 105, 92, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
}
.page-hero .page-hero-overlay--faq {
  background: -webkit-linear-gradient(315deg, rgba(94, 53, 177, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
  background: linear-gradient(135deg, rgba(94, 53, 177, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
}
.page-hero .page-hero-overlay--news {
  background: -webkit-linear-gradient(315deg, rgba(2, 119, 189, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
  background: linear-gradient(135deg, rgba(2, 119, 189, 0.8) 0%, rgba(8, 37, 85, 0.85) 100%);
}
.page-hero .page-hero-overlay--order {
  background: -webkit-linear-gradient(315deg, rgba(200, 164, 92, 0.85) 0%, rgba(8, 37, 85, 0.9) 100%);
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.85) 0%, rgba(8, 37, 85, 0.9) 100%);
}
.page-hero .page-hero-overlay--contact {
  background: -webkit-linear-gradient(315deg, rgba(14, 52, 114, 0.85) 0%, rgba(8, 37, 85, 0.9) 100%);
  background: linear-gradient(135deg, rgba(14, 52, 114, 0.85) 0%, rgba(8, 37, 85, 0.9) 100%);
}
.page-hero .page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero .page-hero-content .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .page-hero .page-hero-content .container {
    padding: 0 20px;
  }
}
.page-hero .page-hero-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease 0.2s forwards;
          animation: fadeInUp 0.6s ease 0.2s forwards;
}
.page-hero .page-hero-label .label-en {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
}
.page-hero .page-hero-label .label-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.page-hero .page-hero-title {
  margin: 0 0 24px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease 0.4s forwards;
          animation: fadeInUp 0.6s ease 0.4s forwards;
}
.page-hero .page-hero-title--large .title-main {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .page-hero .page-hero-title--large .title-main {
    font-size: clamp(28px, 8vw, 40px);
  }
}
.page-hero .page-hero-title--large .title-sub {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .page-hero .page-hero-title--large .title-sub {
    font-size: clamp(16px, 4.5vw, 20px);
  }
}
.page-hero .page-hero-desc {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-animation: fadeInUp 0.6s ease 0.6s forwards;
          animation: fadeInUp 0.6s ease 0.6s forwards;
}
@media (max-width: 768px) {
  .page-hero .page-hero-desc {
    font-size: 16px;
  }
}
.page-hero .page-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 2;
}
.page-hero .page-breadcrumb .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .page-hero .page-breadcrumb .container {
    padding: 0 20px;
  }
}
.page-hero .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.page-hero .breadcrumb-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.page-hero .breadcrumb-list li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}
.page-hero .breadcrumb-list li:last-child::after {
  display: none;
}
.page-hero .breadcrumb-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.page-hero .breadcrumb-list a:hover {
  color: #ffffff;
}
.page-hero .breadcrumb-list span {
  color: rgba(255, 255, 255, 0.5);
}

.archive-hero {
  position: relative;
  padding: 80px 0 48px;
  overflow: hidden;
}
.archive-hero__bg {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(315deg, #0e3472 0%, #082555 50%, rgb(5.8064516129, 26.8548387097, 61.6935483871) 100%);
  background: linear-gradient(135deg, #0e3472 0%, #082555 50%, rgb(5.8064516129, 26.8548387097, 61.6935483871) 100%);
  z-index: 0;
}
.archive-hero__bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: -webkit-radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.archive-hero__bg::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: -webkit-radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.archive-hero .container {
  position: relative;
  z-index: 1;
}
.archive-hero__content {
  max-width: 700px;
}
.archive-hero__label {
  display: inline-block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.archive-hero__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 16px;
}
@media (max-width: 1024px) {
  .archive-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .archive-hero__title {
    font-size: 24px;
  }
}
.archive-hero__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .archive-hero__text {
    font-size: 16px;
  }
}

.archive-body {
  padding: 48px 0 80px;
}

.taxonomy-product-category-page .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.taxonomy-product-category-page .breadcrumb a:hover {
  color: #ffffff;
}
.taxonomy-product-category-page .breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
}
.taxonomy-product-category-page .breadcrumb .current {
  color: #ffffff;
}

.category-hero {
  position: relative;
  padding: 80px 0;
  min-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .category-hero {
    min-height: 350px;
  }
}
@media (max-width: 768px) {
  .category-hero {
    min-height: 300px;
    padding: 48px 0;
  }
}
.category-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.category-hero__bg--gradient {
  background: -webkit-linear-gradient(315deg, #0e3472 0%, #082555 50%, rgb(5.8064516129, 26.8548387097, 61.6935483871) 100%);
  background: linear-gradient(135deg, #0e3472 0%, #082555 50%, rgb(5.8064516129, 26.8548387097, 61.6935483871) 100%);
}
.category-hero__bg--gradient::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: -webkit-radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.category-hero__bg--gradient::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: -webkit-radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.category-hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(315deg, rgba(8, 37, 85, 0.85) 0%, rgba(14, 52, 114, 0.7) 100%);
  background: linear-gradient(135deg, rgba(8, 37, 85, 0.85) 0%, rgba(14, 52, 114, 0.7) 100%);
  z-index: 1;
}
.category-hero--has-image .category-hero__overlay {
  display: none;
}
.category-hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.category-hero__content {
  max-width: 600px;
}
.category-hero__label {
  display: inline-block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c8a45c;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.category-hero__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .category-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .category-hero__title {
    font-size: 24px;
  }
}
.category-hero__text {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.9;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .category-hero__text {
    font-size: 16px;
    line-height: 1.8;
  }
}

.category-body {
  padding: 48px 0 80px;
}

.category-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .category-cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .category-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.category-card-modern {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 52, 114, 0.08);
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.category-card-modern:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 25px 60px rgba(14, 52, 114, 0.15);
          box-shadow: 0 25px 60px rgba(14, 52, 114, 0.15);
  border-color: rgba(200, 164, 92, 0.3);
}
.category-card-modern:hover .category-card-modern__thumb img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.category-card-modern:hover .category-card-modern__overlay {
  opacity: 0.3;
}
.category-card-modern:hover .category-card-modern__more-icon {
  background: #c8a45c;
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.category-card-modern:hover .category-card-modern__title {
  color: #0e3472;
}
.category-card-modern__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: -webkit-linear-gradient(315deg, #f8f8f8, rgb(235.25, 235.25, 235.25));
  background: linear-gradient(135deg, #f8f8f8, rgb(235.25, 235.25, 235.25));
}
.category-card-modern__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.category-card-modern__thumb--noimage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(315deg, #f5f7fa 0%, #e8ecf1 25%, #f0f3f7 50%, #e4e9ef 75%, #f2f5f9 100%);
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 25%, #f0f3f7 50%, #e4e9ef 75%, #f2f5f9 100%);
  overflow: hidden;
}
.category-card-modern__thumb--noimage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  background: repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  pointer-events: none;
}
.category-card-modern__thumb--noimage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0e3472), to(#c8a45c));
  background: -webkit-linear-gradient(left, #0e3472, #c8a45c);
  background: linear-gradient(90deg, #0e3472, #c8a45c);
  opacity: 0.7;
}
.category-card-modern__thumb--noimage img {
  width: auto !important;
  height: auto !important;
  max-width: 55% !important;
  max-height: 50% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  opacity: 0.18;
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}
.category-card-modern:hover .category-card-modern__thumb--noimage img {
  opacity: 0.25;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.category-card-modern:hover .category-card-modern__thumb--noimage::after {
  opacity: 1;
}
.category-card-modern__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(14, 52, 114, 0.4)), color-stop(60%, transparent));
  background: -webkit-linear-gradient(bottom, rgba(14, 52, 114, 0.4), transparent 60%);
  background: linear-gradient(to top, rgba(14, 52, 114, 0.4), transparent 60%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.category-card-modern__body {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.category-card-modern__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.category-card-modern__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.3;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .category-card-modern__title {
    font-size: 18px;
  }
}
.category-card-modern__count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 12px;
  background: rgba(200, 164, 92, 0.1);
  color: #c8a45c;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
}
.category-card-modern__desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0 0 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-card-modern__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
}
.category-card-modern__more-text {
  font-size: 14px;
  font-weight: 600;
  color: #0e3472;
}
.category-card-modern__more-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 52, 114, 0.08);
  color: #0e3472;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.category-card-modern__more-icon svg {
  width: 16px;
  height: 16px;
}

.page-header-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f8f8f8;
  margin-bottom: 48px;
}
.page-header-section .page-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  position: relative;
  display: inline-block;
  padding-bottom: 24px;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.page-header-section .page-title span {
  display: block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #c8a45c;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.page-header-section .page-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #c8a45c;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .page-header-section .page-title {
    font-size: 36px;
  }
}
.page-header-section .page-description {
  font-size: 18px;
  color: #1a1a1a;
  max-width: 800px;
  margin: 0 auto;
}

.category-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  margin-bottom: 80px;
}
.category-grid .category-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(14, 52, 114, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(14, 52, 114, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: #1a1a1a;
  -webkit-transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(14, 52, 114, 0.1);
}
.category-grid .category-card:hover {
  -webkit-transform: translateY(-12px) scale(1.02);
          transform: translateY(-12px) scale(1.02);
  -webkit-box-shadow: 0 20px 50px rgba(14, 52, 114, 0.15), 0 10px 30px rgba(200, 164, 92, 0.1);
          box-shadow: 0 20px 50px rgba(14, 52, 114, 0.15), 0 10px 30px rgba(200, 164, 92, 0.1);
  border-color: rgba(200, 164, 92, 0.3);
}
.category-grid .category-card:hover .category-card__image img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.category-grid .category-card:hover .btn-text {
  color: #c8a45c;
  padding-right: 8px;
}
.category-grid .category-card:hover .btn-text::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.category-grid .category-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.category-grid .category-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.category-grid .category-card__content {
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.category-grid .category-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0a0a0a;
}
.category-grid .category-card__description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.category-grid .category-card .btn-text {
  font-weight: 700;
  font-size: 14px;
  color: #0a0a0a;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: right;
  position: relative;
  padding-right: 20px;
}
.category-grid .category-card .btn-text::after {
  content: "→";
  position: absolute;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-archive-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .product-archive-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-archive-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(14, 52, 114, 0.08);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}
.product-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 50px rgba(14, 52, 114, 0.12), 0 8px 25px rgba(200, 164, 92, 0.08);
          box-shadow: 0 20px 50px rgba(14, 52, 114, 0.12), 0 8px 25px rgba(200, 164, 92, 0.08);
  border-color: rgba(200, 164, 92, 0.25);
}
.product-card:hover .product-card__thumb img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.product-card:hover .product-card__arrow {
  background: #c8a45c;
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.product-card:hover .product-card__title {
  color: #0e3472;
}
.product-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.product-card__thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: -webkit-linear-gradient(315deg, #f8f8f8, rgb(240.35, 240.35, 240.35));
  background: linear-gradient(135deg, #f8f8f8, rgb(240.35, 240.35, 240.35));
}
.product-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), -webkit-transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card__thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.15)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.15), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
}
.product-card__thumb--noimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(315deg, #f5f7fa 0%, #e8ecf1 50%, #f2f5f9 100%);
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f2f5f9 100%);
}
.product-card__thumb--noimage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  background: repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  pointer-events: none;
}
.product-card__thumb--noimage::after {
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0e3472), to(#c8a45c));
  background: -webkit-linear-gradient(left, #0e3472, #c8a45c);
  background: linear-gradient(90deg, #0e3472, #c8a45c);
  opacity: 0.7;
}
.product-card__thumb--noimage img {
  width: auto;
  height: auto;
  max-width: 55%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.18;
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}
.product-card:hover .product-card__thumb--noimage img {
  opacity: 0.25;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.product-card:hover .product-card__thumb--noimage::after {
  opacity: 1;
}
.product-card__body {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 8px;
}
.product-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.4;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .product-card__title {
    font-size: 18px;
  }
}
.product-card__excerpt {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
}
.product-card__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14, 52, 114, 0.08);
  color: #0e3472;
  font-size: 18px;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-left: auto;
}
.product-card .btn-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0e3472;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-top: 16px;
}
.product-card .btn-text::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: rgba(14, 52, 114, 0.08);
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card .btn-text::before {
  content: "→";
  position: absolute;
  right: 11px;
  color: #0e3472;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-card .btn-text {
  position: relative;
}
.product-card:hover .btn-text {
  color: #c8a45c;
}
.product-card:hover .btn-text::after {
  background: #c8a45c;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.product-card:hover .btn-text::before {
  color: #ffffff;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 24px;
}
.breadcrumb a {
  color: #5a5a5a;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.breadcrumb a:hover {
  color: #c8a45c;
}
.breadcrumb .separator {
  color: #e0e0e0;
}
.breadcrumb .current {
  color: #0a0a0a;
  font-weight: 600;
}
@media (max-width: 768px) {
  .breadcrumb {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 12px;
  }
}

.category-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
}
.category-filter__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-filter__item:hover {
  background: #f8f8f8;
  border-color: #0e3472;
  color: #0e3472;
}
.category-filter__item.is-active {
  background: #0e3472;
  border-color: #0e3472;
  color: #ffffff;
}
.category-filter__item.is-active .count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.category-filter__item .count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: #f8f8f8;
  color: #5a5a5a;
}
@media (max-width: 768px) {
  .category-filter {
    gap: 6px;
  }
  .category-filter__item {
    padding: 8px 14px;
    font-size: 13px;
  }
}

.archive-meta {
  margin-bottom: 24px;
}
.archive-meta .results-count {
  font-size: 14px;
  color: #5a5a5a;
}
.archive-meta .results-count strong {
  font-size: 24px;
  color: #0e3472;
  font-weight: 700;
}

.product-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0e3472;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-card__more-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(14, 52, 114, 0.08);
  color: #0e3472;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.product-card__more svg {
  width: 16px;
  height: 16px;
}

.product-card:hover .product-card__more {
  color: #c8a45c;
}
.product-card:hover .product-card__more-icon {
  background: #c8a45c;
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.no-results {
  text-align: center;
  padding: 80px 0;
}
.no-results__icon {
  color: #e0e0e0;
  margin-bottom: 24px;
}
.no-results__icon svg {
  width: 80px;
  height: 80px;
}
.no-results__text {
  font-size: 18px;
  color: #5a5a5a;
  margin-bottom: 24px;
}

.archive-pagination {
  margin-top: 48px;
}
.archive-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.archive-pagination .page-numbers:hover {
  background: #f8f8f8;
  border-color: #0e3472;
  color: #0e3472;
}
.archive-pagination .page-numbers.current {
  background: #0e3472;
  border-color: #0e3472;
  color: #ffffff;
}
.archive-pagination .page-numbers.prev, .archive-pagination .page-numbers.next {
  font-size: 18px;
}

.capability-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .capability-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .capability-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.capability-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 52, 114, 0.08);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.capability-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 25px 60px rgba(14, 52, 114, 0.15);
          box-shadow: 0 25px 60px rgba(14, 52, 114, 0.15);
  border-color: rgba(200, 164, 92, 0.3);
}
.capability-card:hover .capability-card__thumb img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.capability-card:hover .capability-card__more-icon {
  background: #c8a45c;
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.capability-card:hover .capability-card__title {
  color: #0e3472;
}
.capability-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.capability-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: -webkit-linear-gradient(315deg, #f8f8f8, rgb(235.25, 235.25, 235.25));
  background: linear-gradient(135deg, #f8f8f8, rgb(235.25, 235.25, 235.25));
}
.capability-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.capability-card__thumb-placeholder {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(14, 52, 114, 0.2);
}
.capability-card__body {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.capability-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
  line-height: 1.3;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .capability-card__title {
    font-size: 18px;
  }
}
.capability-card__excerpt {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.capability-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
}
.capability-card__more-text {
  font-size: 14px;
  font-weight: 600;
  color: #0e3472;
}
.capability-card__more-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 52, 114, 0.08);
  color: #0e3472;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.capability-card__more-icon svg {
  width: 16px;
  height: 16px;
}

.case-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .case-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .case-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.case-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 52, 114, 0.08);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.case-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 25px 60px rgba(14, 52, 114, 0.15);
          box-shadow: 0 25px 60px rgba(14, 52, 114, 0.15);
  border-color: rgba(200, 164, 92, 0.3);
}
.case-card:hover .case-card__thumb img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.case-card:hover .case-card__more-icon {
  background: #c8a45c;
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.case-card:hover .case-card__title {
  color: #0e3472;
}
.case-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.case-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: -webkit-linear-gradient(315deg, #f8f8f8, rgb(235.25, 235.25, 235.25));
  background: linear-gradient(135deg, #f8f8f8, rgb(235.25, 235.25, 235.25));
}
.case-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.case-card__thumb-placeholder {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(14, 52, 114, 0.2);
}
.case-card__body {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.case-card__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #00695c;
  background: rgba(0, 105, 92, 0.1);
  border-radius: 100px;
}
.case-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
  line-height: 1.3;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .case-card__title {
    font-size: 18px;
  }
}
.case-card__excerpt {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
}
.case-card__more-text {
  font-size: 14px;
  font-weight: 600;
  color: #0e3472;
}
.case-card__more-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 52, 114, 0.08);
  color: #0e3472;
  -webkit-transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.case-card__more-icon svg {
  width: 16px;
  height: 16px;
}

.page-body {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .page-body {
    padding: 48px 0;
  }
}

.order-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 90px;
  z-index: 90;
}
@media (max-width: 768px) {
  .order-nav {
    top: 70px;
  }
}
.order-nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .order-nav .container {
    padding: 0 20px;
  }
}
.order-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.order-nav__list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .order-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 12px 0;
  }
}
.order-nav__list li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.order-nav__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
  border: 1px solid transparent;
}
.order-nav__list li a:hover {
  background: rgba(14, 52, 114, 0.06);
  border-color: rgba(14, 52, 114, 0.1);
}
@media (max-width: 768px) {
  .order-nav__list li a {
    padding: 10px 16px;
  }
}
.order-nav__jp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .order-nav__jp {
    font-size: 13px;
  }
}
.order-nav__en {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #5a5a5a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.order-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
@media (max-width: 768px) {
  .order-section {
    padding: 64px 0;
  }
}
.order-section > .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .order-section > .container {
    padding: 0 20px;
  }
}
.order-section--alt {
  background: #f8f8f8;
}
.order-section__header {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .order-section__header {
    margin-bottom: 32px;
  }
}
.order-section__header-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .order-section__header-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.order-section__number {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 56px;
  font-weight: 200;
  line-height: 1;
  color: #0e3472;
  opacity: 0.25;
  letter-spacing: -0.02em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .order-section__number {
    font-size: 40px;
  }
}
.order-section__titles {
  padding-top: 8px;
}
@media (max-width: 768px) {
  .order-section__titles {
    padding-top: 0;
  }
}
.order-section__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.3;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.order-section__subtitle {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #5a5a5a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.order-section__lead {
  max-width: 800px;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .order-section__lead {
    font-size: 14px;
    line-height: 1.9;
  }
}
.order-section__visual {
  position: relative;
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .order-section__visual {
    margin-bottom: 32px;
    border-radius: 8px;
  }
}
.order-section__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), to(rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(top, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}
.order-section__visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 21/9;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .order-section__visual img {
    aspect-ratio: 16/9;
  }
}

.order-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .order-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.order-grid--three {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .order-grid--three {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.order-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.order-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.order-card--wide {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .order-card--wide {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}
.order-card--wide .order-card__media {
  aspect-ratio: 21/9;
}
@media (max-width: 768px) {
  .order-card--wide .order-card__media {
    aspect-ratio: 16/9;
  }
}
.order-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f8f8f8;
}
.order-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.order-card:hover .order-card__media img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.order-card__body {
  padding: 28px;
}
@media (max-width: 768px) {
  .order-card__body {
    padding: 20px;
  }
}
.order-card__title {
  margin: 0 0 16px;
}
.order-card__title-jp {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.4;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .order-card__title-jp {
    font-size: 16px;
  }
}
.order-card__title-en {
  display: block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #5a5a5a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
.order-card__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.9;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .order-card__text {
    font-size: 13px;
  }
}
.order-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid #e0e0e0;
}
.order-card__tags li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  color: #1a1a1a;
  padding: 6px 12px;
  background: #f8f8f8;
  border-radius: 4px;
  letter-spacing: 0.02em;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
@media (max-width: 768px) {
  .order-card__tags li {
    font-size: 11px;
    padding: 5px 10px;
  }
}
.order-card__tags li:hover {
  background: rgba(14, 52, 114, 0.08);
  color: #0e3472;
}

.order-cta {
  padding: 80px 0;
  background: #082555;
  position: relative;
}
@media (max-width: 768px) {
  .order-cta {
    padding: 60px 0;
  }
}
.order-cta .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .order-cta .container {
    padding: 0 20px;
  }
}
.order-cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .order-cta__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.order-cta__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.order-cta__label {
  display: inline-block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #c8a45c;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.order-cta__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.order-cta__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.02em;
}
.order-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #c8a45c;
  color: #082555;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.order-cta__btn:hover {
  background: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 768px) {
  .order-cta__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.order-cta__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.order-cta__btn:hover .order-cta__btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.order-contact {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .order-contact {
    padding: 60px 0;
  }
}
.order-contact .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .order-contact .container {
    padding: 0 20px;
  }
}
.order-contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  padding: 48px;
  background: #f8f8f8;
  border-radius: 12px;
}
@media (max-width: 1024px) {
  .order-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 32px;
  }
}
.order-contact__heading {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.order-contact__label {
  display: inline-block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #0e3472;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.order-contact__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.order-contact__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.02em;
}
.order-contact__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .order-contact__actions {
    width: 100%;
  }
}
.order-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}
.order-contact__tel:hover {
  border-color: #0e3472;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (max-width: 768px) {
  .order-contact__tel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.order-contact__tel-label {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #5a5a5a;
  letter-spacing: 0.1em;
}
.order-contact__tel-number {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .order-contact__tel-number {
    font-size: 18px;
  }
}
.order-contact__mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #0e3472;
  color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}
.order-contact__mail:hover {
  background: #082555;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.order-contact__mail-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.order-contact__mail:hover .order-contact__mail-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.faq-category-nav {
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}
.faq-category-nav .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .faq-category-nav .container {
    padding: 0;
  }
}

.faq-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.faq-category-list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .faq-category-list {
    padding: 0 20px;
  }
}
.faq-category-list li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-category-list a {
  display: block;
  padding: 16px 24px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.faq-category-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #0e3472;
  -webkit-transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-category-list a:hover, .faq-category-list a.is-active {
  color: #0e3472;
}
.faq-category-list a:hover::after, .faq-category-list a.is-active::after {
  width: 100%;
}
@media (max-width: 768px) {
  .faq-category-list a {
    padding: 14px 16px;
    font-size: 12px;
  }
}

.section--faq-archive {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section--faq-archive {
    padding: 80px 0;
  }
}

.faq-category-section {
  margin-bottom: 120px;
}
.faq-category-section:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0e3472;
}
.faq-category-title .faq-category-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background: #0e3472;
  color: #ffffff;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-category-title .faq-category-icon svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .faq-category-title {
    font-size: 18px;
  }
  .faq-category-title .faq-category-icon {
    width: 32px;
    height: 32px;
  }
  .faq-category-title .faq-category-icon svg {
    width: 18px;
    height: 18px;
  }
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.faq-item {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: -webkit-linear-gradient(315deg, transparent, transparent);
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.faq-item:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(14, 52, 114, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(14, 52, 114, 0.08);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.faq-item:hover::before {
  background: -webkit-linear-gradient(315deg, #0e3472, #c8a45c);
  background: linear-gradient(135deg, #0e3472, #c8a45c);
  opacity: 1;
}
.faq-item.is-open {
  -webkit-box-shadow: 0 8px 24px rgba(14, 52, 114, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(14, 52, 114, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
}
.faq-item.is-open::before {
  background: -webkit-linear-gradient(315deg, #0e3472, #c8a45c);
  background: linear-gradient(135deg, #0e3472, #c8a45c);
  opacity: 1;
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 16px;
    gap: 16px;
  }
}
.faq-question:hover {
  background: rgba(14, 52, 114, 0.02);
}
.faq-question:focus {
  outline: none;
}
.faq-question:focus-visible {
  outline: 2px solid #0e3472;
  outline-offset: -2px;
  border-radius: 16px;
}
.faq-question .faq-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 4px;
  background: -webkit-linear-gradient(315deg, #0e3472 0%, rgb(9.5375, 35.425, 77.6625) 100%);
  background: linear-gradient(135deg, #0e3472 0%, rgb(9.5375, 35.425, 77.6625) 100%);
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(14, 52, 114, 0.3);
          box-shadow: 0 2px 8px rgba(14, 52, 114, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-question .faq-icon {
    min-width: 32px;
    height: 32px;
    font-size: 14px;
    border-radius: 8px;
  }
}
.faq-question .faq-question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .faq-question .faq-question-text {
    font-size: 14px;
  }
}
.faq-question .faq-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f8f8f8;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .faq-question .faq-toggle {
    width: 28px;
    height: 28px;
  }
}
.faq-question .faq-toggle svg {
  width: 16px;
  height: 16px;
  color: #5a5a5a;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .faq-question .faq-toggle svg {
    width: 14px;
    height: 14px;
  }
}
.faq-question:hover .faq-toggle {
  background: #0e3472;
}
.faq-question:hover .faq-toggle svg {
  color: #ffffff;
}
.faq-question[aria-expanded=true] .faq-icon {
  background: -webkit-linear-gradient(315deg, #c8a45c 0%, rgb(180.1972477064, 140.3990825688, 60.8027522936) 100%);
  background: linear-gradient(135deg, #c8a45c 0%, rgb(180.1972477064, 140.3990825688, 60.8027522936) 100%);
  -webkit-box-shadow: 0 2px 8px rgba(200, 164, 92, 0.4);
          box-shadow: 0 2px 8px rgba(200, 164, 92, 0.4);
}
.faq-question[aria-expanded=true] .faq-toggle {
  background: #0e3472;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-question[aria-expanded=true] .faq-toggle svg {
  color: #ffffff;
}

.faq-answer {
  display: none;
  position: relative;
  z-index: 1;
}

.faq-answer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 0 24px 24px;
  padding-left: 84px;
  position: relative;
}
@media (max-width: 768px) {
  .faq-answer-inner {
    padding: 0 16px 20px;
    padding-left: 64px;
    gap: 16px;
  }
}
.faq-answer-inner::before {
  content: "";
  position: absolute;
  left: 42px;
  top: -16px;
  width: 2px;
  height: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0e0e0), to(#c8a45c));
  background: -webkit-linear-gradient(top, #e0e0e0 0%, #c8a45c 100%);
  background: linear-gradient(180deg, #e0e0e0 0%, #c8a45c 100%);
  border-radius: 1px;
}
@media (max-width: 768px) {
  .faq-answer-inner::before {
    left: 32px;
    top: -12px;
    height: 12px;
  }
}

.faq-icon--answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 4px;
  background: -webkit-linear-gradient(315deg, #c8a45c 0%, rgb(187.823853211, 146.3412844037, 63.376146789) 100%) !important;
  background: linear-gradient(135deg, #c8a45c 0%, rgb(187.823853211, 146.3412844037, 63.376146789) 100%) !important;
  color: #0a0a0a !important;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 0 2px 8px rgba(200, 164, 92, 0.3);
          box-shadow: 0 2px 8px rgba(200, 164, 92, 0.3);
}
@media (max-width: 768px) {
  .faq-icon--answer {
    min-width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    border-radius: 8px;
  }
}

.faq-answer-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .faq-answer-text {
    font-size: 13px;
    padding-top: 4px;
  }
}
.faq-answer-text p {
  margin: 0 0 16px;
}
.faq-answer-text p:last-child {
  margin-bottom: 0;
}
.faq-answer-text a {
  color: #0e3472;
  text-decoration: underline;
  text-underline-offset: 3px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.faq-answer-text a:hover {
  color: #c8a45c;
}
.faq-answer-text ul, .faq-answer-text ol {
  margin: 16px 0;
  padding-left: 1.5em;
}
.faq-answer-text ul li, .faq-answer-text ol li {
  margin-bottom: 4px;
}

.section--faq-cta {
  background: #ffffff;
  padding: 120px 0;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .section--faq-cta {
    padding: 80px 0;
  }
}

.faq-cta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
  padding: 80px 120px;
  background: -webkit-linear-gradient(315deg, #0e3472 0%, #082555 100%);
  background: linear-gradient(135deg, #0e3472 0%, #082555 100%);
  border-radius: 20px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .faq-cta-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

.faq-cta-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.faq-cta-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
@media (max-width: 768px) {
  .faq-cta-title {
    font-size: 18px;
  }
}

.faq-cta-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin: 0;
}

.section--faq-cta .btn-primary {
  background: #ffffff;
  color: #0e3472;
}
.section--faq-cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.faq-empty {
  text-align: center;
  padding: 120px;
  background: #ffffff;
  border-radius: 12px;
}
.faq-empty p {
  color: #5a5a5a;
  margin: 0;
}

.archive-news-page {
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), color-stop(50%, #fff), to(#f8f8f8));
  background: -webkit-linear-gradient(top, #f8f8f8 0%, #fff 50%, #f8f8f8 100%);
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 50%, #f8f8f8 100%);
}

.news-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.news-breadcrumb a {
  color: #5a5a5a;
  text-decoration: none;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-breadcrumb a:hover {
  color: #0e3472;
}
.news-breadcrumb__separator {
  color: rgba(26, 26, 26, 0.3);
}
.news-breadcrumb__current {
  color: #1a1a1a;
}
.news-breadcrumb--light a {
  color: rgba(255, 255, 255, 0.7);
}
.news-breadcrumb--light a:hover {
  color: #ffffff;
}
.news-breadcrumb--light .news-breadcrumb__separator {
  color: rgba(255, 255, 255, 0.3);
}
.news-breadcrumb--light .news-breadcrumb__current {
  color: rgba(255, 255, 255, 0.9);
}

.news-archive-hero {
  position: relative;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 120px 0 80px;
  background: #0a0a0a;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-archive-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
}
.news-archive-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.news-archive-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: -webkit-radial-gradient(20% 80%, circle, rgba(14, 52, 114, 0.15) 0%, transparent 50%), -webkit-radial-gradient(80% 20%, circle, rgba(200, 164, 92, 0.1) 0%, transparent 50%), -webkit-linear-gradient(315deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 35, 50, 0.98) 100%);
  background-image: radial-gradient(circle at 20% 80%, rgba(14, 52, 114, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(200, 164, 92, 0.1) 0%, transparent 50%), linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 35, 50, 0.98) 100%);
}
.news-archive-hero__pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.news-archive-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.news-archive-hero__title-block {
  margin-top: 80px;
}
.news-archive-hero__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.news-archive-hero__label .label-line {
  width: 40px;
  height: 1px;
  background: #c8a45c;
}
.news-archive-hero__label .label-text {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
}
.news-archive-hero__title {
  margin: 0;
}
.news-archive-hero__title .title-main {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.news-archive-hero__title .title-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-top: 12px;
}
.news-archive-hero__desc {
  max-width: 560px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin: 48px 0 0;
}
@media (max-width: 768px) {
  .news-archive-hero__desc {
    font-size: 14px;
    line-height: 1.9;
  }
}
.news-archive-hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.news-archive-hero__stats .stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.news-archive-hero__stats .stat-number {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.news-archive-hero__stats .stat-label {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.news-archive-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 1;
}
@media (max-width: 768px) {
  .news-archive-hero__scroll {
    display: none;
  }
}
.news-archive-hero__scroll .scroll-text {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.news-archive-hero__scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(transparent));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  -webkit-animation: scrollPulse 2s ease-in-out infinite;
          animation: scrollPulse 2s ease-in-out infinite;
}

@-webkit-keyframes scrollPulse {
  0%, 100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scaleY(0.6);
            transform: scaleY(0.6);
    opacity: 1;
  }
}

@keyframes scrollPulse {
  0%, 100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.5;
  }
  50% {
    -webkit-transform: scaleY(0.6);
            transform: scaleY(0.6);
    opacity: 1;
  }
}
.news-filter {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .news-filter {
    top: 60px;
  }
}
.news-filter__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 16px 0;
}
@media (max-width: 768px) {
  .news-filter__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
.news-filter__label {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5a5a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.news-filter__list::-webkit-scrollbar {
  display: none;
}
.news-filter__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 100px;
  background: #f8f8f8;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-filter__item .filter-count {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #5a5a5a;
}
.news-filter__item:hover {
  background: rgba(14, 52, 114, 0.1);
  color: #0e3472;
}
.news-filter__item:hover .filter-count {
  color: #0e3472;
}
.news-filter__item.is-active {
  background: #0e3472;
  color: #ffffff;
}
.news-filter__item.is-active .filter-count {
  color: rgba(255, 255, 255, 0.8);
}

.news-archive-list {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .news-archive-list {
    padding: 80px 0;
  }
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.news-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card:hover {
  border-color: #0e3472;
  -webkit-box-shadow: 0 4px 20px rgba(10, 10, 10, 0.08);
          box-shadow: 0 4px 20px rgba(10, 10, 10, 0.08);
}
.news-card:hover .news-card__thumbnail img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.news-card:hover .news-card__thumbnail--noimage img {
  opacity: 0.25;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.news-card:hover .news-card__thumbnail--noimage::after {
  opacity: 1;
}
.news-card:hover .news-card__title {
  color: #0e3472;
}
.news-card__link {
  display: block;
  text-decoration: none;
}
.news-card__visual {
  position: relative;
  overflow: hidden;
}
.news-card__thumbnail {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f8f8f8;
}
.news-card__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.news-card__thumbnail--noimage {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(315deg, #f5f7fa 0%, #e8ecf1 25%, #f0f3f7 50%, #e4e9ef 75%, #f2f5f9 100%);
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 25%, #f0f3f7 50%, #e4e9ef 75%, #f2f5f9 100%);
  overflow: hidden;
}
.news-card__thumbnail--noimage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  background: repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  pointer-events: none;
}
.news-card__thumbnail--noimage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0e3472), to(#c8a45c));
  background: -webkit-linear-gradient(left, #0e3472, #c8a45c);
  background: linear-gradient(90deg, #0e3472, #c8a45c);
  opacity: 0.7;
}
.news-card__thumbnail--noimage img {
  width: auto !important;
  height: auto !important;
  max-width: 55% !important;
  max-height: 50% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  opacity: 0.18;
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}
.news-card__overlay {
  display: none;
}
.news-card__content {
  padding: 24px;
}
.news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.news-card__date {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #5a5a5a;
}
.news-card__date .date-day,
.news-card__date .date-month,
.news-card__date .date-year {
  display: inline;
}
.news-card__date .date-day::after {
  content: ".";
}
.news-card__date .date-month::after {
  content: ".";
}
.news-card__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0e3472;
  background: rgba(14, 52, 114, 0.08);
  border-radius: 100px;
}
.news-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #0a0a0a;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__excerpt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #5a5a5a;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__more {
  display: none;
}
.news-card__index {
  display: none;
}
.news-card--featured {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .news-card--featured {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    display: block;
  }
}
.news-card--featured .news-card__link {
  display: contents;
}
@media (max-width: 768px) {
  .news-card--featured .news-card__link {
    display: block;
  }
}
.news-card--featured .news-card__visual {
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
@media (max-width: 768px) {
  .news-card--featured .news-card__visual {
    border-radius: 12px 12px 0 0;
  }
}
.news-card--featured .news-card__thumbnail {
  height: 100%;
  min-height: 240px;
}
.news-card--featured .news-card__thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .news-card--featured .news-card__thumbnail {
    min-height: 180px;
    aspect-ratio: 16/10;
  }
}
.news-card--featured .news-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px;
}
@media (max-width: 768px) {
  .news-card--featured .news-card__content {
    padding: 24px;
  }
}
.news-card--featured .news-card__meta {
  margin-bottom: 12px;
}
.news-card--featured .news-card__date {
  font-size: 13px;
}
.news-card--featured .news-card__category {
  font-size: 10px;
  padding: 3px 10px;
}
.news-card--featured .news-card__title {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 12px;
  -webkit-line-clamp: 3;
}
@media (max-width: 768px) {
  .news-card--featured .news-card__title {
    font-size: 15px;
    -webkit-line-clamp: 2;
  }
}
.news-card--featured .news-card__excerpt {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: #5a5a5a;
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  .news-card--featured .news-card__excerpt {
    display: none;
  }
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.news-pagination {
  margin-top: 120px;
}
.news-pagination__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.news-pagination__item a, .news-pagination__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  background: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 8px;
}
.news-pagination__item a:hover, .news-pagination__item span:hover {
  background: #0e3472;
  color: #ffffff;
}
.news-pagination__item .current {
  background: #0e3472;
  color: #ffffff;
}
.news-pagination__item .prev, .news-pagination__item .next {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.news-pagination__item .prev svg, .news-pagination__item .next svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-empty {
  text-align: center;
  padding: 160px;
  background: #ffffff;
  border-radius: 20px;
}
.news-empty__icon {
  margin-bottom: 48px;
  color: rgba(26, 26, 26, 0.2);
}
.news-empty__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
}
.news-empty__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
  margin: 0 0 48px;
}
.news-empty__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #0e3472;
  border-radius: 100px;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-empty__btn:hover {
  background: #082555;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-news-page {
  background: #ffffff;
}

.news-article__header {
  padding: 80px 0 48px;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .news-article__header {
    padding: 48px 0;
  }
}
.news-article__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  color: #5a5a5a;
  margin-bottom: 48px;
}
.news-article__breadcrumb a {
  color: #5a5a5a;
  text-decoration: none;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-article__breadcrumb a:hover {
  color: #0e3472;
}
.news-article__breadcrumb .current {
  color: #1a1a1a;
}
.news-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.news-article__date {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #5a5a5a;
  letter-spacing: 0.02em;
}
.news-article__category {
  display: inline-block;
  padding: 4px 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0e3472;
  background: rgba(14, 52, 114, 0.08);
  border-radius: 100px;
}
.news-article__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.4;
  color: #0a0a0a;
  margin: 0;
}
.news-article__lead {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5a5a;
  margin: 16px 0 0;
  max-width: 720px;
}
.news-article__hero {
  padding: 48px 0;
}
@media (max-width: 768px) {
  .news-article__hero {
    padding: 16px 0;
  }
}
.news-article__image {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}
.news-article__image img {
  width: 100%;
  height: auto;
  display: block;
}
.news-article__content {
  padding: 48px 0 120px;
}
@media (max-width: 768px) {
  .news-article__content {
    padding: 16px 0 80px;
  }
}
.news-article__body {
  max-width: 780px;
}
.news-article__body h2 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #0a0a0a;
  margin: 80px 0 16px;
  padding-left: 14px;
  border-left: 3px solid #0e3472;
}
.news-article__body h2:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .news-article__body h2 {
    font-size: 19px;
  }
}
.news-article__body h3 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #0a0a0a;
  margin: 48px 0 8px;
}
@media (max-width: 768px) {
  .news-article__body h3 {
    font-size: 17px;
  }
}
.news-article__body p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #1a1a1a;
  margin: 0 0 24px;
}
.news-article__body ul, .news-article__body ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
}
.news-article__body ul li, .news-article__body ol li {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.news-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 24px 0;
}
.news-article__body blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  background: #f8f8f8;
  border-left: 3px solid #c8a45c;
  border-radius: 0 4px 4px 0;
}
.news-article__body blockquote p {
  margin: 0;
  color: #1a1a1a;
}
.news-article__body a {
  color: #0e3472;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-article__body a:hover {
  color: #c8a45c;
}
.news-article__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #e0e0e0;
}
.news-article__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.news-article__share .share-label {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5a5a;
}
.news-article__share .share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.news-article__share .share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: #f8f8f8;
  color: #1a1a1a;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-article__share .share-btn:hover {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.news-article__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f8f8f8;
  border-radius: 100px;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-article__back:hover {
  background: #0e3472;
  color: #ffffff;
}
.news-article__back:hover svg {
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}
.news-article__back svg {
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-nav {
  padding: 48px 0;
  background: #f8f8f8;
}
.news-nav__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .news-nav__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.news-nav__item a {
  display: block;
  padding: 16px 24px;
  background: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-nav__item a:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.news-nav__item a:hover .news-nav__title {
  color: #0e3472;
}
.news-nav__item--next {
  text-align: right;
}
.news-nav__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 6px;
}
.news-nav__item--next .news-nav__label {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.news-nav__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #0a0a0a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-related {
  padding: 120px 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .news-related {
    padding: 80px 0;
  }
}
.news-related__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  margin: 0 0 48px;
}
.news-related__title .title-en {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5a5a;
}
.news-related__title .title-jp {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
}
.news-related__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-related__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-related__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.news-related__card a {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-related__card a:hover {
  border-color: #0e3472;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.news-related__card a:hover .news-related__thumb img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.news-related__card a:hover h3 {
  color: #0e3472;
}
.news-related__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f8f8f8;
}
.news-related__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.news-related__thumb--noimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(315deg, #f5f7fa 0%, #e8ecf1 50%, #f2f5f9 100%);
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f2f5f9 100%);
}
.news-related__thumb--noimage img {
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.2;
}
.news-related__info {
  padding: 16px;
}
.news-related__info time {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  color: #5a5a5a;
}
.news-related__info h3 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #0a0a0a;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-page {
  padding-bottom: 80px;
}
.single-page .entry-header {
  margin-bottom: 48px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 24px;
}
.single-page .entry-header .entry-meta {
  margin-bottom: 16px;
}
.single-page .entry-header .entry-meta .cat-label {
  display: inline-block;
  background-color: #c8a45c;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-right: 10px;
  letter-spacing: 0.05em;
}
.single-page .entry-header .entry-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .single-page .entry-header .entry-title {
    font-size: 24px;
  }
}

.single-product-page {
  padding-bottom: 0;
}

.product-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.product-hero__bg {
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(315deg, #0e3472 0%, #082555 50%, rgb(5.8064516129, 26.8548387097, 61.6935483871) 100%);
  background: linear-gradient(135deg, #0e3472 0%, #082555 50%, rgb(5.8064516129, 26.8548387097, 61.6935483871) 100%);
  z-index: 0;
}
.product-hero__bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: -webkit-radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.product-hero__bg::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: -webkit-radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.product-hero .container {
  position: relative;
  z-index: 1;
}
.product-hero__content {
  max-width: 800px;
}
.product-hero__category {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(200, 164, 92, 0.15);
  color: #c8a45c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.product-hero__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.product-hero__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-hero__icon:hover {
  background: rgba(255, 255, 255, 0.15);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.product-hero__icon img {
  width: 72px;
  height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .product-hero__icon img {
    width: 60px;
    height: 60px;
  }
}
.product-hero__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 16px;
}
@media (max-width: 1024px) {
  .product-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .product-hero__title {
    font-size: 24px;
  }
}
.product-hero__excerpt {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .product-hero__excerpt {
    font-size: 16px;
  }
}
.product-hero .page-breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 2;
}
.product-hero .page-breadcrumb .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .product-hero .page-breadcrumb .container {
    padding: 0 20px;
  }
}
.product-hero .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
.product-hero .breadcrumb-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.product-hero .breadcrumb-list li::after {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}
.product-hero .breadcrumb-list li:last-child::after {
  display: none;
}
.product-hero .breadcrumb-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.product-hero .breadcrumb-list a:hover {
  color: #ffffff;
}
.product-hero .breadcrumb-list span {
  color: rgba(255, 255, 255, 0.5);
}

.product-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 380px;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 48px 0;
}
@media (max-width: 1024px) {
  .product-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.product-gallery-section {
  margin-bottom: 48px;
}

.product-gallery__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
  margin-bottom: 16px;
}
.product-gallery__main-image {
  aspect-ratio: 4/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-gallery__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.product-gallery__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-gallery__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #f8f8f8;
  padding: 0;
}
.product-gallery__thumb:hover {
  border-color: rgba(14, 52, 114, 0.3);
}
.product-gallery__thumb.is-active {
  border-color: #c8a45c;
  -webkit-box-shadow: 0 4px 12px rgba(200, 164, 92, 0.3);
          box-shadow: 0 4px 12px rgba(200, 164, 92, 0.3);
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-description {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 52, 114, 0.08);
}

.product-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0e3472;
}
.product-section-title__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: -webkit-linear-gradient(315deg, #0e3472, #1a4d8f);
  background: linear-gradient(135deg, #0e3472, #1a4d8f);
  border-radius: 10px;
  color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-section-title__icon svg {
  width: 22px;
  height: 22px;
}

.product-content {
  font-size: 16px;
  line-height: 1.9;
  color: #1a1a1a;
}
.product-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0e3472;
}
.product-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 16px;
  color: #0a0a0a;
}
.product-content p {
  margin-bottom: 24px;
}
.product-content ul, .product-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
.product-content ul li, .product-content ol li {
  margin-bottom: 8px;
}
.product-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.product-sidebar {
  position: sticky;
  top: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .product-sidebar {
    position: static;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 52, 114, 0.08);
  margin-bottom: 24px;
}
.product-card:last-child {
  margin-bottom: 0;
}
.product-card__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
}
.product-card__title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background: -webkit-linear-gradient(315deg, #c8a45c, #d4b76e);
  background: linear-gradient(135deg, #c8a45c, #d4b76e);
  border-radius: 8px;
  color: #ffffff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-card__title-icon svg {
  width: 18px;
  height: 18px;
}
.product-card__empty {
  color: #5a5a5a;
  font-size: 14px;
  text-align: center;
  padding: 24px 0;
}

.product-specs-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 24px 0 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c8a45c;
}
.product-specs-subtitle:first-of-type {
  margin-top: 0;
}

.product-specs-table-wrapper {
  overflow-x: auto;
  margin: 0 -4px 0;
  padding: 0 4px;
}
.product-specs-table-wrapper + .product-specs-subtitle {
  margin-top: 80px;
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.product-specs-table th, .product-specs-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  white-space: nowrap;
}
.product-specs-table thead th {
  background: #f8f8f8;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-specs-table thead th:first-child {
  border-radius: 8px 0 0 8px;
}
.product-specs-table thead th:last-child {
  border-radius: 0 8px 8px 0;
}
.product-specs-table tbody tr {
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.product-specs-table tbody tr:hover {
  background: rgba(248, 248, 248, 0.5);
}
.product-specs-table tbody tr:last-child td {
  border-bottom: none;
}
.product-specs-table tbody td {
  color: #1a1a1a;
}

.product-actions-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.product-action-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.product-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: -webkit-linear-gradient(left, transparent, rgba(255, 255, 255, 0.2), transparent);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
.product-action-btn:hover::before {
  left: 100%;
}
.product-action-btn__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-action-btn__icon svg {
  width: 20px;
  height: 20px;
}
.product-action-btn__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.product-action-btn__text strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.product-action-btn__text small {
  font-size: 12px;
  opacity: 0.8;
}
.product-action-btn__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-action-btn__arrow svg {
  width: 16px;
  height: 16px;
}
.product-action-btn--catalog {
  background: #f8f8f8;
  border: 2px solid #e0e0e0;
  color: #0a0a0a;
}
.product-action-btn--catalog .product-action-btn__icon {
  background: #ffffff;
  color: #0e3472;
}
.product-action-btn--catalog .product-action-btn__text strong, .product-action-btn--catalog .product-action-btn__text small {
  color: #0a0a0a;
}
.product-action-btn--catalog .product-action-btn__text small {
  color: #5a5a5a;
}
.product-action-btn--catalog .product-action-btn__arrow {
  background: rgba(14, 52, 114, 0.1);
  color: #0e3472;
}
.product-action-btn--catalog:hover {
  background: #0e3472;
  border-color: #0e3472;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 30px rgba(14, 52, 114, 0.25);
          box-shadow: 0 10px 30px rgba(14, 52, 114, 0.25);
}
.product-action-btn--catalog:hover .product-action-btn__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.product-action-btn--catalog:hover .product-action-btn__text strong, .product-action-btn--catalog:hover .product-action-btn__text small {
  color: #ffffff;
}
.product-action-btn--catalog:hover .product-action-btn__arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.product-action-btn--contact {
  background: -webkit-linear-gradient(315deg, #c8a45c, #d4b76e);
  background: linear-gradient(135deg, #c8a45c, #d4b76e);
  border: none;
  color: #ffffff;
  -webkit-box-shadow: 0 8px 25px rgba(200, 164, 92, 0.35);
          box-shadow: 0 8px 25px rgba(200, 164, 92, 0.35);
}
.product-action-btn--contact .product-action-btn__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.product-action-btn--contact .product-action-btn__text strong, .product-action-btn--contact .product-action-btn__text small {
  color: #ffffff;
}
.product-action-btn--contact .product-action-btn__arrow {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.product-action-btn--contact:hover {
  -webkit-transform: translateY(-3px) scale(1.02);
          transform: translateY(-3px) scale(1.02);
  -webkit-box-shadow: 0 12px 35px rgba(200, 164, 92, 0.45);
          box-shadow: 0 12px 35px rgba(200, 164, 92, 0.45);
}
.product-action-btn--contact:hover .product-action-btn__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.related-products {
  background: #f8f8f8;
  padding: 80px 0;
  margin-top: 48px;
}
.related-products__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0a0a0a;
  text-align: center;
  margin: 0 0 48px;
}
.related-products__title span {
  display: block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #c8a45c;
  margin-top: 8px;
}
.related-products__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .related-products__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related-products__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.related-products .product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 52, 114, 0.08);
  -webkit-transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 0;
  padding: 0;
}
.related-products .product-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 50px rgba(14, 52, 114, 0.12);
          box-shadow: 0 20px 50px rgba(14, 52, 114, 0.12);
  border-color: rgba(14, 52, 114, 0.15);
}
.related-products .product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.related-products .product-card__thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8f8f8;
}
.related-products .product-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.related-products .product-card__thumb--noimage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-linear-gradient(315deg, #f5f7fa 0%, #e8ecf1 50%, #f2f5f9 100%);
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f2f5f9 100%);
}
.related-products .product-card__thumb--noimage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  background: repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(14, 52, 114, 0.02) 14px, rgba(14, 52, 114, 0.02) 15px);
  pointer-events: none;
}
.related-products .product-card__thumb--noimage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#0e3472), to(#c8a45c));
  background: -webkit-linear-gradient(left, #0e3472, #c8a45c);
  background: linear-gradient(90deg, #0e3472, #c8a45c);
  opacity: 0.7;
}
.related-products .product-card__thumb--noimage img {
  width: auto;
  height: auto;
  max-width: 55%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.18;
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease;
  transition: opacity 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}
.related-products .product-card:hover .related-products .product-card__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.related-products .product-card:hover .related-products .product-card__thumb--noimage img {
  opacity: 0.25;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  -webkit-transform: none;
          transform: none;
}
.related-products .product-card:hover .related-products .product-card__thumb--noimage::after {
  opacity: 1;
}
.related-products .product-card__body {
  padding: 24px;
}
.related-products .product-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 16px;
  line-height: 1.4;
  display: block;
}
.related-products .product-card__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #c8a45c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.related-products .product-card__more-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(200, 164, 92, 0.1);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.related-products .product-card__more-icon svg {
  width: 14px;
  height: 14px;
}
.related-products .product-card:hover .related-products .product-card__more {
  color: #b08f4a;
}
.related-products .product-card:hover .related-products .product-card__more-icon {
  background: #c8a45c;
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.single-page .product-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media (max-width: 1024px) {
  .single-page .product-content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-page .product-main {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.single-page .product-main .post-thumbnail {
  margin-bottom: 24px;
}
.single-page .product-main .post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.single-page .product-main .entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
}
.single-page .product-main .entry-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0e3472;
}
.single-page .product-main .entry-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 16px;
  color: #0a0a0a;
}
.single-page .product-main .entry-content p {
  margin-bottom: 24px;
}
.single-page .product-main .product-gallery {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.single-page .product-main .product-gallery__item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.single-page .product-main .product-gallery__item .product-gallery__caption {
  margin-top: 6px;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.5;
}
.single-page .product-sidebar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}
.single-page .product-sidebar .product-specs {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  border-radius: 8px;
  margin-bottom: 24px;
}
.single-page .product-sidebar .product-specs .specs-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}
.single-page .product-sidebar .product-specs .specs-list .specs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px dotted #e0e0e0;
  padding-bottom: 10px;
}
.single-page .product-sidebar .product-specs .specs-list .specs-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-page .product-sidebar .product-specs .specs-list .specs-item dt {
  width: 100px;
  font-weight: 700;
  color: #0a0a0a;
}
.single-page .product-sidebar .product-specs .specs-list .specs-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-page .product-sidebar .product-catalog,
.single-page .product-sidebar .product-contact {
  margin-bottom: 24px;
}
.single-page .product-sidebar .product-spec-table {
  margin-bottom: 24px;
}
.single-page .product-sidebar .product-spec-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.single-page .product-sidebar .product-spec-table table th,
.single-page .product-sidebar .product-spec-table table td {
  border: 1px solid #e0e0e0;
  padding: 8px 10px;
  text-align: left;
}
.single-page .product-sidebar .product-spec-table table th {
  background: #f8f8f8;
  font-weight: 700;
}
.single-page .product-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.single-page .product-icons--sidebar {
  margin-top: 24px;
  margin-bottom: 16px;
}
.single-page .product-icons .product-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
  height: 64px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
}
.single-page .product-icons .product-icon img {
  height: 100%;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.product-sidebar .btn--primary,
.single-page .btn--primary {
  background-color: #c8a45c;
  color: #ffffff;
  border: 2px solid #c8a45c;
}
.product-sidebar .btn--primary:hover,
.single-page .btn--primary:hover {
  background-color: #d4b76e;
  border-color: #d4b76e;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(200, 164, 92, 0.3);
          box-shadow: 0 6px 20px rgba(200, 164, 92, 0.3);
}
.product-sidebar .btn--secondary,
.single-page .btn--secondary {
  background-color: transparent;
  color: #c8a45c;
  border: 2px solid #c8a45c;
}
.product-sidebar .btn--secondary:hover,
.single-page .btn--secondary:hover {
  background-color: #c8a45c;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-news-page {
  background-color: #ffffff;
  padding-bottom: 0;
  --container-width: 1000px;
  --container-padding: 32px;
}
@media (max-width: 768px) {
  .single-news-page {
    --container-padding: 20px;
  }
}

.page-hero--news-single {
  min-height: 360px;
}
@media (max-width: 768px) {
  .page-hero--news-single {
    min-height: 280px;
  }
}
.page-hero--news-single .page-hero-title {
  font-size: clamp(20px, 4vw, 32px);
}

.news-single-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.news-single-meta__date {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.news-single-meta__category {
  display: inline-block;
  padding: 4px 12px;
  background: #c8a45c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.news-eyecatch {
  margin-bottom: 48px;
}
.news-eyecatch__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.news-eyecatch__image {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.news-eyecatch__image img {
  width: 100%;
  height: auto;
  display: block;
}

.news-main {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .news-main {
    padding-top: 48px;
  }
}
.news-main__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding) 80px;
}

.news-sidebar {
  display: none;
}

.news-article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.news-article__body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #1a1a1a;
}
.news-article__body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 80px 0 24px;
  padding-left: 16px;
  border-left: 4px solid #c8a45c;
  line-height: 1.4;
}
.news-article__body h2:first-child {
  margin-top: 0;
}
.news-article__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 48px 0 16px;
  line-height: 1.5;
}
.news-article__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 24px 0 16px;
}
.news-article__body p {
  margin-bottom: 24px;
}
.news-article__body p:last-child {
  margin-bottom: 0;
}
.news-article__body a {
  color: #0e3472;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-article__body a:hover {
  color: #c8a45c;
}
.news-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.news-article__body figure {
  margin: 48px 0;
}
.news-article__body figure img {
  margin: 0;
}
.news-article__body figure figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #5a5a5a;
  text-align: center;
}
.news-article__body ul, .news-article__body ol {
  margin: 24px 0;
  padding-left: 24px;
}
.news-article__body ul li, .news-article__body ol li {
  margin-bottom: 8px;
}
.news-article__body ul li::marker, .news-article__body ol li::marker {
  color: #c8a45c;
}
.news-article__body blockquote {
  margin: 48px 0;
  padding: 24px;
  background: #f8f8f8;
  border-left: 4px solid #c8a45c;
  border-radius: 0 8px 8px 0;
}
.news-article__body blockquote p {
  margin-bottom: 0;
}
.news-article__body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}
.news-article__body table th, .news-article__body table td {
  padding: 12px;
  border: 1px solid #e0e0e0;
  text-align: left;
}
.news-article__body table th {
  background: #f8f8f8;
  font-weight: 700;
}
.news-article__footer {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #e0e0e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}

.news-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.news-share__label {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.news-share__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.share-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: #5a5a5a;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.share-btn svg {
  width: 18px;
  height: 18px;
}
.share-btn:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}
.share-btn--x:hover {
  background: #000;
  border-color: #000;
}
.share-btn--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}
.share-btn--line:hover {
  background: #00b900;
  border-color: #00b900;
}

.news-back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: #f8f8f8;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-back-link svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #5a5a5a;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.news-back-link:hover {
  background: #0a0a0a;
  color: #ffffff;
}
.news-back-link:hover svg {
  color: #c8a45c;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

.news-nav {
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
}
.news-nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e0e0e0;
}
@media (max-width: 768px) {
  .news-nav__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.news-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #f8f8f8;
  text-decoration: none;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.news-nav__item--prev {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.news-nav__item--next {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
@media (max-width: 768px) {
  .news-nav__item--empty {
    display: none;
  }
}
.news-nav__item:hover {
  background: #ffffff;
}
.news-nav__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5a5a;
}
.news-nav__label svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-nav__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.5;
}

.news-related {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .news-related {
    padding: 48px 0;
  }
}
.news-related__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.news-related__header {
  text-align: center;
  margin-bottom: 48px;
}
.news-related__label {
  display: inline-block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a45c;
  margin-bottom: 4px;
}
.news-related__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0;
}
.news-related__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .news-related__grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-related__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.news-related__action {
  text-align: center;
  margin-top: 48px;
}
.news-related__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border: 2px solid #0a0a0a;
  border-radius: 100px;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-related__more svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.news-related__more:hover {
  background: #0a0a0a;
  color: #ffffff;
}
.news-related__more:hover svg {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.news-card__link {
  display: block;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-card__link:hover {
  border-color: transparent;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.news-card__link:hover .news-card__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f8f8f8;
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.news-card__noimage {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #5a5a5a;
  font-size: 14px;
}
.news-card__body {
  padding: 24px;
}
.news-card__date {
  display: block;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: #5a5a5a;
  margin-bottom: 8px;
}
.news-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}