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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
  color: #424242;
  background-color: #fffbf3;
}

header .header-navigation {
  padding: 1rem 2rem;
}
@media (max-width: 992px) {
  header .header-navigation {
    padding: 10px 0.25rem;
  }
}
header .header-navigation .header-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-navigation .header-nav-container .logo-container {
  flex-shrink: 0;
}
header .header-navigation .header-nav-container .logo-container a {
  display: inline-block;
  height: 100%;
  width: auto;
}
header .header-navigation .header-nav-container .logo-container a img {
  height: 28px;
}
header .header-navigation .header-nav-container .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #374151;
}
header .header-navigation .header-nav-container .menu-toggle svg {
  width: 24px;
  height: 24px;
  color: #faa048;
}
header .header-navigation .header-nav-container .main-nav {
  display: flex;
  align-items: center;
}
header .header-navigation .header-nav-container .main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.3125rem;
}
header .header-navigation .header-nav-container .main-nav .nav-list .nav-item {
  margin: 0;
}
header .header-navigation .header-nav-container .main-nav .nav-list .nav-item .nav-link {
  display: block;
  padding: 0.375rem 0.75rem;
  color: #7cb342;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f1f8e9;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
header .header-navigation .header-nav-container .main-nav .nav-list .nav-item .nav-link:hover {
  color: #7cb342;
  background-color: #c5e1a5;
  border-radius: 0.375rem;
}
@media (max-width: 1024px) {
  header .header-navigation .header-nav-container .main-nav .nav-list .nav-item .nav-link {
    font-size: 0.8125rem;
    padding: 0.3125rem 0.625rem;
  }
}
@media (max-width: 992px) {
  header .header-navigation .header-nav-container .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  header .header-navigation .header-nav-container .main-nav.active {
    transform: translateX(0);
  }
  header .header-navigation .header-nav-container .main-nav .nav-list {
    flex-direction: column;
    padding: 0.625rem 0;
    gap: 0;
    width: 100%;
  }
  header .header-navigation .header-nav-container .main-nav .nav-list .nav-item {
    width: 100%;
  }
  header .header-navigation .header-nav-container .main-nav .nav-list .nav-link {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 0;
  }
  header .header-navigation .header-nav-container .main-nav .nav-list .nav-link:hover {
    background-color: #f1f8e9;
  }
}
@media (max-width: 992px) {
  header .header-navigation .header-nav-container .menu-toggle {
    display: block;
  }
}
header .header-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg ... %3E");
  background-size: 60px 60px;
}
header .wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  overflow: hidden;
  pointer-events: none;
}
header .wave-separator svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.article-hero {
  background: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
  color: #fff;
  padding: 48px 20px 32px;
}
.article-hero .article-container {
  max-width: 800px;
  margin: 0 auto;
}
.article-hero .breadcrumb {
  font-size: 13px;
  color: #fff;
  margin-bottom: 16px;
  opacity: 0.9;
}
.article-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.article-hero .breadcrumb span {
  margin: 0 8px;
}
.article-hero h1 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 700;
}
.article-hero .article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .article-hero .article-meta {
    flex-direction: column;
    gap: 3px;
    align-items: start;
  }
}
.article-hero .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.article-hero .tags .tag {
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
}

.article-body {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 20px;
  background: #fff;
}
.article-body .camp-image {
  width: 100%;
  background: linear-gradient(135deg, #9ccc65 0%, #c5e1a5 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}
.article-body .camp-image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.article-body .intro-text {
  font-size: 16px;
  line-height: 2;
  color: #616161;
  padding: 24px;
  background: #f1f8e9;
  border-radius: 8px;
  margin-bottom: 48px;
  border-left: 4px solid #7cb342;
}
.article-body .ad-container {
  margin: 40px auto;
  padding: 20px 0;
  max-width: 100%;
  text-align: center;
}
.article-body .ad-container .ad-label {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
}
.article-body .ad-infeed {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.ad-container {
  margin: 40px auto;
  padding: 20px 0;
  max-width: 100%;
  text-align: center;
}
.ad-container .ad-label {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
}

.camp-item {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 2px solid #f1f8e9;
}
.camp-item:last-child {
  border-bottom: none;
}
.camp-item .camp-rank {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #424242;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}
.camp-item .camp-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #7cb342;
}
.camp-item .camp-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #9ccc65 0%, #c5e1a5 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
  overflow: hidden;
}
.camp-item .camp-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 60%;
     object-position: center 60%;
}
.camp-item .camp-image .image {
  -o-object-position: center 100%;
     object-position: center 100%;
}
.camp-item .camp-image .image2 {
  -o-object-position: center 30%;
     object-position: center 30%;
}
.camp-item .camp-info-table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  background: #f1f8e9;
  border-radius: 8px;
  overflow: hidden;
}
.camp-item .camp-info-table tbody tr {
  border-bottom: 1px solid #c5e1a5;
}
.camp-item .camp-info-table tbody tr:last-child {
  border-bottom: none;
}
.camp-item .camp-info-table tbody tr th {
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  text-align: left;
  width: 140px;
  color: #424242;
}
@media (max-width: 768px) {
  .camp-item .camp-info-table tbody tr th {
    width: 110px;
    padding: 10px 12px;
    font-size: 13px;
  }
}
.camp-item .camp-info-table tbody tr td {
  padding: 12px 16px;
  color: #616161;
  font-size: 14px;
  background: #fff;
}
.camp-item .camp-info-table tbody tr td a {
  color: #7cb342;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .camp-item .camp-info-table tbody tr td {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.camp-item .camp-info-table tbody .highlight-row {
  background-color: #f1f8e9;
  border-left: 4px solid #7cb342;
}
.camp-item .camp-info-table tbody .highlight-row .fishing-detail {
  font-size: 1em;
  color: #616161;
  display: inline-block;
  margin-top: 4px;
}
.camp-item .camp-description {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
  color: #616161;
}
.camp-item .features {
  background: #fffbf3;
  border-left: 4px solid #ff9800;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.camp-item .features h4 {
  color: #ff9800;
  margin-bottom: 12px;
  font-size: 18px;
}
.camp-item .features ul {
  list-style: none;
  padding: 0;
}
.camp-item .features ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #616161;
}
.camp-item .features ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7cb342;
  font-weight: bold;
}
.camp-item .camp-detail-link {
  margin: 24px 0 0 0;
  text-align: center;
}
.camp-item .camp-detail-link .detail-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(124, 179, 66, 0.3);
}
.camp-item .camp-detail-link .detail-button svg {
  transition: transform 0.3s ease;
}
.camp-item .camp-detail-link .detail-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}
.camp-item .camp-detail-link .detail-button:hover svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .camp-item .camp-detail-link .detail-button {
    font-size: 14px;
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }
}

.highlight-box {
  background: #f1f8e9;
  border-left: 4px solid #7cb342;
  padding: 20px;
  margin: 32px 0;
  border-radius: 4px;
}
.highlight-box strong {
  color: #7cb342;
}

.summary-section {
  background: linear-gradient(135deg, #f1f8e9 0%, #fffbf3 100%);
  padding: 40px 20px;
  border-radius: 12px;
  margin: 48px 0;
}
.summary-section h2 {
  color: #7cb342;
  margin-bottom: 24px;
  font-size: 26px;
  text-align: center;
}
.summary-section .table-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.summary-section .table-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}
.summary-section .table-scroll-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.summary-section .table-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #9ccc65;
  border-radius: 4px;
}
.summary-section .summary-table {
  width: 100%;
  min-width: 800px;
  background: #fff;
  border-collapse: collapse;
}
.summary-section .summary-table th {
  background: #7cb342;
  color: #fff;
  padding: 14px 10px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.summary-section .summary-table td {
  padding: 14px 10px;
  border-bottom: 1px solid #f1f8e9;
  font-size: 13px;
  line-height: 1.6;
  vertical-align: top;
}
.summary-section .summary-table td:first-child {
  font-weight: 600;
  color: #7cb342;
  white-space: nowrap;
}
.summary-section .summary-table td a {
  color: #7cb342;
  text-decoration: underline;
}
.summary-section .summary-table tr:last-child td {
  border-bottom: none;
}
.summary-section .summary-table tr:nth-child(even) {
  background: #f1f8e9;
}
.summary-section .scroll-hint {
  text-align: center;
  color: #7cb342;
  font-size: 13px;
  margin-top: 12px;
  font-weight: 600;
}

.cta-box {
  background: linear-gradient(135deg, #7cb342 0%, #9ccc65 100%);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 48px 0;
}
.cta-box h3 {
  margin-bottom: 16px;
  font-size: 24px;
}
.cta-box .cta-button {
  display: inline-block;
  background: #ffd700;
  color: #424242;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 16px;
  transition: transform 0.2s;
  font-size: 16px;
}
.cta-box .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.related-articles {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
}
.related-articles h2 {
  font-size: 26px;
  margin-bottom: 24px;
  color: #7cb342;
}
.related-articles .article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.related-articles .article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.related-articles .article-card:hover {
  transform: translateY(-4px);
}
.related-articles .article-card .card-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #9ccc65 0%, #c5e1a5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.related-articles .article-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 80%;
     object-position: center 80%;
}
.related-articles .article-card .card-content {
  padding: 20px;
}
.related-articles .article-card .card-content .card-tag {
  display: inline-block;
  background: #f1f8e9;
  color: #7cb342;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}
.related-articles .article-card .card-content .card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #7cb342;
}
.related-articles .article-card .card-content .card-date {
  font-size: 13px;
  color: #757575;
}

.footer {
  padding-bottom: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.footer .ad_container {
  width: 100%;
  max-width: 1000px;
  min-width: 250px;
  height: auto;
  margin: 0 auto var(--spacing-md);
}
.footer .footer-content {
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .footer-content p {
  text-align: center;
  font-size: var(--font-13);
  margin: 0;
  color: #616161;
}

@media (max-width: 768px) {
  .article-hero h1 {
    font-size: 24px;
  }
  .article-body .camp-image img {
    height: 250px;
  }
  .article-body .ad-container {
    margin: 30px auto;
    padding: 15px 0;
  }
  .camp-item .camp-title {
    font-size: 22px;
  }
  .camp-item .camp-image {
    height: 250px;
  }
  header nav {
    display: none;
  }
  .summary-section .summary-table {
    font-size: 14px;
  }
  .summary-section .summary-table th,
  .summary-section .summary-table td {
    padding: 12px 8px;
  }
  .related-articles .article-grid {
    width: 100%;
  }
}/*# sourceMappingURL=blog_dogrun.css.map */