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

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

figure {
  margin: 0;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s, background-color 0.2s;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.85;
}
.btn--orange {
  background-color: #E07B39;
  color: #FFFFFF;
  border: 2px solid #E07B39;
}
.btn--outline-navy {
  background-color: transparent;
  color: #1A2A4A;
  border: 2px solid #1A2A4A;
}
.btn--outline-navy:hover {
  background-color: #1A2A4A;
  color: #FFFFFF;
  opacity: 1;
}
.btn--outline-orange {
  background-color: transparent;
  color: #E07B39;
  border: 2px solid #E07B39;
}
.btn--outline-orange:hover {
  background-color: #E07B39;
  color: #FFFFFF;
  opacity: 1;
}
.btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background-color: #EBF2FB;
  color: #4A7DC4;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.badge:hover {
  opacity: 0.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: #FFFFFF;
}
.breadcrumb a {
  color: #FFFFFF;
  opacity: 0.85;
}
.breadcrumb a:hover {
  opacity: 1;
}
.breadcrumb__sep {
  opacity: 0.6;
  font-size: 10px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  padding-bottom: 10px;
  border-bottom: 2px solid #E0E0E0;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
}
.tag--area {
  background-color: #1A2A4A;
  color: #FFFFFF;
}
.tag--orange {
  background-color: #E07B39;
  color: #FFFFFF;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0E0E0;
  height: 70px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.08);
}
.site-header__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.site-header__logo {
  flex-shrink: 0;
}
.site-header__logo a {
  display: flex;
  align-items: center;
}
.site-header__nav {
  flex: 1;
}
@media (max-width: 767px) {
  .site-header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 30px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .site-header__nav.is-open {
    transform: translateX(0);
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.site-header__nav-list li a {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  padding: 4px 0;
  position: relative;
}
.site-header__nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #1A2A4A;
  transition: width 0.2s;
}
.site-header__nav-list li a:hover::after {
  width: 100%;
}
@media (max-width: 767px) {
  .site-header__nav-list li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid #E0E0E0;
  }
}
.site-header__search {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 767px) {
  .site-header__search {
    display: none;
  }
}
.site-header__search form {
  display: flex;
  align-items: center;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
}
.site-header__search input[type=search] {
  width: 220px;
  padding: 8px 12px;
  border: none;
  outline: none;
  font-size: 13px;
  color: #333333;
  background: transparent;
}
.site-header__search input[type=search]::placeholder {
  color: #999999;
}
.site-header__search button {
  padding: 8px 12px;
  color: #666666;
  display: flex;
  align-items: center;
}
.site-header__search button:hover {
  color: #1A2A4A;
}

.logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #1A2A4A;
  letter-spacing: -0.02em;
}
.logo-text--white {
  color: #FFFFFF;
}

.logo-dot {
  color: #E53935;
}
.logo-dot--red {
  color: #E53935;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-footer {
  background-color: #1A2A4A;
  color: #FFFFFF;
}
.site-footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 48px;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767px) {
  .site-footer__inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 36px;
    padding-bottom: 28px;
  }
}
.site-footer__logo {
  flex-shrink: 0;
}
.site-footer__logo a {
  display: inline-block;
}
.site-footer__nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .site-footer__nav {
    gap: 30px;
  }
}
.site-footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.site-footer__nav-col li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__nav-col li a:hover {
  color: #FFFFFF;
}
.site-footer__nav-heading {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0;
}
.site-footer__copyright {
  background-color: #131f37;
  text-align: right;
  padding: 14px 20px;
}
.site-footer__copyright p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
}

.page-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .page-hero {
    height: 160px;
  }
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #0F1E38;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero__breadcrumb {
  position: absolute;
  top: 16px;
  right: 20px;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .page-hero__content {
    padding-bottom: 24px;
  }
}
.page-hero__label {
  font-size: 12px;
  font-weight: 700;
  color: #E07B39;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.page-hero__title {
  font-size: 40px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-hero__title {
    font-size: 32px;
  }
}
.page-hero__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 400px;
  line-height: 1.7;
}

.post-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.post-card:hover {
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.1);
  transform: translateY(-2px);
}
.post-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #F5F5F5;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.post-card__thumb:hover img {
  transform: scale(1.04);
}
.post-card__body {
  padding: 14px 16px 18px;
}
.post-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__title:hover {
  color: #1A2A4A;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.post-card__date {
  font-size: 12px;
  color: #999999;
}

.side-card {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
}
.side-card:last-child {
  border-bottom: none;
}
.side-card__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #F5F5F5;
}
.side-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-card__date {
  font-size: 12px;
  color: #999999;
}
.side-card__title {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-card__title:hover {
  color: #1A2A4A;
}

.sidebar {
  width: 290px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .sidebar {
    width: 260px;
  }
}
@media (max-width: 767px) {
  .sidebar {
    width: 100%;
    margin-top: 40px;
  }
}
.sidebar__block {
  margin-bottom: 36px;
}
.sidebar__block:last-child {
  margin-bottom: 0;
}
.sidebar__title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  padding-bottom: 10px;
  border-bottom: 2px solid #333333;
  margin-bottom: 4px;
}

.sidebar-col-list__heading {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #1A2A4A;
  padding: 10px 14px;
  letter-spacing: 0.06em;
}
.sidebar-col-list__items {
  border: 1px solid #E0E0E0;
  border-top: none;
}
.sidebar-col-list__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 13px;
  color: #333333;
  border-bottom: 1px solid #E0E0E0;
  transition: background-color 0.15s;
}
.sidebar-col-list__item a:hover {
  background-color: #F5F5F5;
  color: #1A2A4A;
}
.sidebar-col-list__item a::after {
  content: "›";
  color: #999999;
  font-size: 18px;
}
.sidebar-col-list__item:last-child a {
  border-bottom: none;
}
.sidebar-col-list__more {
  display: block;
  text-align: center;
  padding: 12px;
  background-color: #F5F5F5;
  font-size: 13px;
  font-weight: 700;
  color: #1A2A4A;
  border: 1px solid #E0E0E0;
  border-top: none;
  transition: background-color 0.15s;
}
.sidebar-col-list__more:hover {
  background-color: #ebebeb;
}

.pagination {
  margin-top: 48px;
  padding-bottom: 48px;
}
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pagination__item a, .pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  font-size: 13px;
  color: #333333;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.pagination__item a:hover, .pagination__item span:hover {
  background-color: #1A2A4A;
  color: #FFFFFF;
  border-color: #1A2A4A;
}
.pagination__item.is-current span {
  background-color: #1A2A4A;
  color: #FFFFFF;
  border-color: #1A2A4A;
  font-weight: 700;
}
.pagination__item .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}
.pagination__item .page-numbers.dots:hover {
  background: transparent;
  color: #333333;
}
.pagination__item a.prev, .pagination__item a.next {
  background-color: #E07B39;
  border-color: #E07B39;
  color: #FFFFFF;
  font-size: 16px;
}
.pagination__item a.prev:hover, .pagination__item a.next:hover {
  background-color: #C96A28;
  border-color: #C96A28;
}

.archive-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .archive-layout {
    flex-direction: column;
  }
}

.archive-main {
  flex: 1;
  min-width: 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 479px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.single-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .single-layout {
    flex-direction: column;
  }
}

.single-main {
  flex: 1;
  min-width: 0;
}

.article-header {
  margin-bottom: 24px;
}
.article-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .article-header__title {
    font-size: 18px;
  }
}
.article-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.article-header__date {
  font-size: 13px;
  color: #999999;
}

.article-thumb {
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
}
.article-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.article-index {
  background-color: #EEF4FB;
  border: 1px solid #cddff3;
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.article-index__label {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}
.article-index__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-index__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #333333;
  line-height: 1.6;
}
.article-index__list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1A2A4A;
  margin-top: 6px;
  flex-shrink: 0;
}
.article-index__list li a {
  color: #333333;
}
.article-index__list li a:hover {
  color: #1A2A4A;
  text-decoration: underline;
}

.article-body {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  border-left: 4px solid #1A2A4A;
  padding: 6px 0 6px 14px;
  margin: 48px 0 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .article-body h2 {
    font-size: 18px;
  }
}
.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 8px;
  margin: 36px 0 16px;
}
.article-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.article-body p {
  margin-bottom: 20px;
}
.article-body p:last-child {
  margin-bottom: 0;
}
.article-body ul, .article-body ol {
  padding-left: 0;
  margin-bottom: 20px;
}
.article-body ul li, .article-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
  font-size: 15px;
  line-height: 1.8;
}
.article-body ul li::before, .article-body ol li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1A2A4A;
  margin-top: 8px;
  flex-shrink: 0;
}
.article-body ol li::before {
  content: counter(list-item);
  counter-increment: list-item;
  background: none;
  color: #1A2A4A;
  font-weight: 700;
  font-size: 13px;
  width: auto;
  height: auto;
  border-radius: 0;
  margin-top: 0;
}
.article-body a {
  color: #4A7DC4;
  text-decoration: underline;
}
.article-body a:hover {
  opacity: 0.8;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 24px 0;
}
.article-body blockquote {
  border-left: 3px solid #CCCCCC;
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  color: #666666;
}
.article-body strong {
  font-weight: 700;
}
.article-body em {
  font-style: italic;
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4A7DC4;
  font-size: 14px;
  border-bottom: 1px solid #4A7DC4;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.text-link-arrow:hover {
  opacity: 0.75;
}
.text-link-arrow::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.article-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #E0E0E0;
  text-align: center;
}
.article-share__label {
  font-size: 13px;
  font-weight: 700;
  color: #666666;
  margin-bottom: 16px;
}
.article-share__label span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.article-share__label span::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #E0E0E0;
}
.article-share__label span::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #E0E0E0;
}
.article-share__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.article-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 18px;
  transition: opacity 0.2s;
}
.article-share__btn:hover {
  opacity: 0.85;
}
.article-share__btn--x {
  background-color: #000000;
}
.article-share__btn--line {
  background-color: #06C755;
}
.article-share__btn--facebook {
  background-color: #1877F2;
}
.article-share__btn svg {
  width: 20px;
  height: 20px;
}

.back-to-list {
  margin-top: 40px;
  text-align: center;
}

.fp-hero {
  display: flex;
  min-height: 380px;
}
@media (max-width: 767px) {
  .fp-hero {
    flex-direction: column;
    min-height: auto;
  }
}
.fp-hero__content {
  flex: 0 0 55%;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 48px 60px;
}
@media (max-width: 1023px) {
  .fp-hero__content {
    flex: 0 0 50%;
    padding: 40px 32px;
  }
}
@media (max-width: 767px) {
  .fp-hero__content {
    flex: none;
    padding: 32px 20px;
  }
}
.fp-hero__inner {
  max-width: 520px;
}
.fp-hero__label {
  font-size: 12px;
  font-weight: 700;
  color: #E07B39;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fp-hero__title {
  font-size: 32px;
  font-weight: 900;
  color: #333333;
  line-height: 1.35;
  margin-bottom: 16px;
}
.fp-hero__title em {
  font-style: normal;
  color: #E07B39;
}
@media (max-width: 1023px) {
  .fp-hero__title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .fp-hero__title {
    font-size: 22px;
  }
}
.fp-hero__desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.8;
}
.fp-hero__image {
  flex: 1;
  overflow: hidden;
  min-height: 280px;
}
@media (max-width: 767px) {
  .fp-hero__image {
    min-height: 200px;
  }
}
.fp-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-recommend-banner {
  background-color: #E07B39;
  padding: 20px;
  text-align: center;
}
.fp-recommend-banner__count {
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.fp-recommend-banner__title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.fp-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .fp-layout {
    flex-direction: column;
  }
}

.fp-main {
  flex: 1;
  min-width: 0;
}

.fp-section-lead {
  margin-bottom: 28px;
}
.fp-section-lead__subtitle {
  font-size: 13px;
  color: #666666;
  margin-bottom: 6px;
}
.fp-section-lead__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
}
.fp-section-lead__count {
  font-size: 13px;
  color: #666666;
  margin-top: 4px;
}

.company-card {
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}
.company-card:last-child {
  margin-bottom: 0;
}
.company-card__hero {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  .company-card__hero {
    height: 160px;
  }
}
.company-card__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-card__body {
  padding: 20px 24px;
}
@media (max-width: 767px) {
  .company-card__body {
    padding: 16px;
  }
}
.company-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .company-card__header {
    flex-direction: column;
    gap: 10px;
  }
}
.company-card__header-left {
  flex: 1;
}
.company-card__header-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .company-card__header-right {
    align-items: flex-start;
  }
}
.company-card__tag {
  margin-bottom: 6px;
}
.company-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
  line-height: 1.3;
}
.company-card__catchcopy {
  font-size: 13px;
  color: #666666;
}
.company-card__columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .company-card__columns {
    flex-direction: column;
  }
}
.company-card__info {
  flex: 1;
  min-width: 0;
}
.company-card__examples {
  flex: 0 0 300px;
}
@media (max-width: 1023px) {
  .company-card__examples {
    flex: none;
    width: 100%;
  }
}
.company-card__section-title {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  padding-bottom: 8px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 14px;
}
.company-card__overview {
  font-size: 13px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 16px;
}
.company-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.company-card__feature-label {
  display: inline-block;
  padding: 3px 10px;
  background-color: #1A2A4A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 6px;
}
.company-card__feature-text {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
}
.company-card__address {
  margin-top: 16px;
  font-size: 13px;
  color: #666666;
}
.company-card__address dt {
  font-weight: 700;
  color: #333333;
  display: inline;
}
.company-card__address dd {
  display: inline;
  margin-left: 8px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.example-item__image {
  aspect-ratio: 4/3;
  background-color: #F5F5F5;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.example-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.example-item__name {
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 3px;
}
.example-item__meta {
  font-size: 11px;
  color: #999999;
  line-height: 1.5;
}

.company-detail-hero {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #0F1E38;
}
@media (max-width: 767px) {
  .company-detail-hero {
    height: 200px;
  }
}
.company-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.company-detail-layout {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 32px;
  padding-bottom: 60px;
}

.company-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 767px) {
  .company-detail-header {
    flex-direction: column;
  }
}
.company-detail-header__left {
  flex: 1;
}
.company-detail-header__tag {
  margin-bottom: 8px;
}
.company-detail-header__name {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .company-detail-header__name {
    font-size: 24px;
  }
}
.company-detail-header__catchcopy {
  font-size: 13px;
  color: #666666;
}
.company-detail-header__actions {
  flex-shrink: 0;
}

.company-detail-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .company-detail-columns {
    flex-direction: column;
  }
}

.company-detail-left {
  flex: 1;
  min-width: 0;
}

.company-detail-right {
  flex: 0 0 320px;
}
@media (max-width: 1023px) {
  .company-detail-right {
    flex: none;
    width: 100%;
  }
}

.cd-section {
  margin-bottom: 36px;
}
.cd-section__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  padding-bottom: 10px;
  border-bottom: 2px solid #333333;
  margin-bottom: 20px;
}
.cd-section__overview {
  font-size: 13px;
  line-height: 1.9;
  color: #666666;
}

.cd-feature {
  margin-bottom: 24px;
}
.cd-feature:last-child {
  margin-bottom: 0;
}
.cd-feature__label {
  display: inline-block;
  padding: 4px 12px;
  background-color: #1A2A4A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 10px;
}
.cd-feature__title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}
.cd-feature__text {
  font-size: 13px;
  color: #666666;
  line-height: 1.9;
}
.cd-feature__point-box {
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 16px;
}
.cd-feature__point-label {
  display: inline-block;
  background-color: #E07B39;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.cd-feature__point-title {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}
.cd-feature__point-text {
  font-size: 13px;
  color: #666666;
  line-height: 1.9;
}

.cd-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cd-info-table tr {
  border-bottom: 1px solid #E0E0E0;
}
.cd-info-table tr:first-child {
  border-top: 1px solid #E0E0E0;
}
.cd-info-table th, .cd-info-table td {
  padding: 12px 8px;
  vertical-align: top;
  line-height: 1.7;
}
.cd-info-table th {
  width: 100px;
  color: #666666;
  font-weight: 500;
  white-space: nowrap;
  padding-right: 16px;
}
.cd-info-table td {
  color: #333333;
}
.cd-info-table a {
  color: #4A7DC4;
  word-break: break-all;
}
.cd-info-table a:hover {
  text-decoration: underline;
}

.cd-examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cd-example-item__image {
  aspect-ratio: 4/3;
  background-color: #F5F5F5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.cd-example-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-example-item__name {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
}
.cd-example-item__meta {
  font-size: 12px;
  color: #999999;
  line-height: 1.5;
}

.company-list-section {
  background-color: #F5F5F5;
  padding: 48px 0 60px;
  margin-top: 60px;
}

.company-list-header {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.company-list-header__label {
  font-size: 12px;
  font-weight: 700;
  color: #E07B39;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.company-list-header__title {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}
.company-list-header__count {
  font-size: 13px;
  color: #666666;
}

.company-list-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 767px) {
  .company-list-grid {
    grid-template-columns: 1fr;
  }
}

.company-list-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.company-list-item:hover {
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.08);
}
.company-list-item__body {
  flex: 1;
  min-width: 0;
}
.company-list-item__name {
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.company-list-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #666666;
}
.company-list-item__info dt {
  display: inline;
  color: #666666;
}
.company-list-item__info dd {
  display: inline;
  margin-left: 6px;
  color: #333333;
  word-break: break-all;
}
.company-list-item__info div {
  display: flex;
}
.company-list-item__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: #E07B39;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  margin-top: 4px;
  transition: background-color 0.2s;
}
.company-list-item__arrow:hover {
  background-color: #C96A28;
}
.company-list-item__arrow svg {
  width: 14px;
  height: 14px;
}

.company-list-more {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 28px;
  text-align: center;
}

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