/* ============================================================
   KCC Theme - Main Stylesheet
   既存サイト（k-c-c.co.jp）のデザインを再現
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background: #fff;
    color: #333;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

a {
    color: #006dd9;
    text-decoration: none;
}
a:hover {
    color: #006dd9;
    text-decoration: underline;
}
a:visited {
    color: #7f5ad7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

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

p {
    margin: 0 0 1em;
}

/* ---- Layout ---- */
.kcc-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1170px;
    margin: 0 auto;
}

.site-logo a {
    display: inline-block;
}

.site-logo img {
    height: 50px;
    width: auto;
}

/* ヘッダー上部リンク（お問い合わせ・個人情報保護方針） */
.header-sub-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-sub-nav a {
    font-size: 12px;
    color: #555;
    padding: 4px 8px;
}

.header-sub-nav .btn-contact {
    border: 1px solid #999;
    border-radius: 3px;
    padding: 5px 12px;
    font-size: 12px;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header-sub-nav .btn-contact::before {
    content: ">";
}

.header-sub-nav .btn-contact:hover {
    background: #f5f5f5;
    text-decoration: none;
}

/* グローバルナビ */
#global-nav {
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.global-nav-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
}

.global-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.global-nav-list > li > a {
    display: block;
    padding: 14px 20px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.global-nav-list > li > a::before {
    content: ">";
    margin-right: 6px;
    color: #999;
    font-size: 10px;
}

.global-nav-list > li > a:hover {
    color: #4a8c2a;
    text-decoration: none;
}

.global-nav-list > li.current-menu-item > a,
.global-nav-list > li.current-page-ancestor > a {
    color: #4a8c2a;
}

/* ハンバーガーメニュー（SP用） */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s;
}

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.hero-slider .slide-item {
    position: relative;
}

.hero-slider .slide-item img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* Slick slider overrides */
.slick-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    padding: 0;
}

.slick-dots li.slick-active button {
    background: #fff;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
    font-size: 13px;
    border-radius: 3px;
}

.slick-prev { left: 10px; }
.slick-next { right: 10px; }

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0,0,0,0.6);
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
#main-content {
    padding: 40px 0;
}

/* ---- キャッチコピー ---- */
.catchcopy-section {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    max-width: 960px;
    margin: 0 auto 40px;
}

.catchcopy-section h2 {
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin: 0;
    letter-spacing: 0.05em;
}

/* ---- 事業内容セクション ---- */
.business-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a8c2a;
    display: inline-block;
}

.section-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.business-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.business-item {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.business-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
}

.business-item a {
    display: block;
    padding: 24px 20px;
    color: #333;
    text-decoration: none;
}

.business-item a:hover {
    text-decoration: none;
}

.business-item .catchphrase {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.business-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #4a8c2a;
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.business-item .description {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* ---- ニュースセクション ---- */
.news-section {
    padding: 40px 0;
}

.news-columns {
    display: flex;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-column {
    flex: 1;
}

.news-column-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a8c2a;
}

.news-column-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.news-column-header .more-link {
    font-size: 12px;
    color: #4a8c2a;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.news-column-header .more-link::before {
    content: ">";
    font-size: 10px;
}

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

.news-list li {
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list .news-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.news-list .news-date {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}

.news-list .news-cat {
    font-size: 11px;
    color: #fff;
    background: #4a8c2a;
    padding: 2px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

.news-list .news-cat.cat-news {
    background: #1a6cb5;
}

.news-list .news-cat.cat-information {
    background: #4a8c2a;
}

.news-list .news-cat.cat-topics {
    background: #c47a1a;
}

.news-list a {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

.news-list a:hover {
    color: #4a8c2a;
}

/* ---- バナーセクション ---- */
.banner-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.recruit-banner {
    max-width: 960px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.recruit-banner a {
    display: block;
}

.recruit-banner img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.service-banners {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.service-banners-list {
    display: flex;
    gap: 10px;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-banners-list li {
    flex: 0 0 auto;
}

.service-banners-list img {
    height: 60px;
    width: auto;
    border: 1px solid #ddd;
}

/* ============================================================
   PAGE HEADER (下層ページ用)
   ============================================================ */
.page-header {
    background: #333;
    color: #fff;
    padding: 30px 20px;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    max-width: 960px;
    margin: 0 auto;
}

/* ---- パンくず ---- */
.breadcrumb {
    background: #f5f5f5;
    padding: 10px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: #555;
}

.breadcrumb-inner a:hover {
    color: #4a8c2a;
}

.breadcrumb-inner .sep {
    color: #999;
}

.breadcrumb-inner .current {
    color: #888;
}

/* ============================================================
   INNER PAGE LAYOUT
   ============================================================ */
.inner-page {
    padding: 40px 0 60px;
}

.inner-page-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.inner-page-sidebar {
    width: 220px;
    flex-shrink: 0;
}

/* ---- ページ本文スタイル ---- */
.entry-content h1 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #4a8c2a;
    padding-bottom: 10px;
    margin: 0 0 24px;
}

.entry-
content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border-left: 4px solid #4a8c2a;
    padding-left: 12px;
    margin: 30px 0 16px;
}

.entry-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #4a8c2a;
    margin: 24px 0 12px;
}

.entry-content p {
    margin: 0 0 1.2em;
    line-height: 1.8;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.entry-content table th,
.entry-content table td {
    border: 1px solid #ddd;
    padding: 10px 14px;
    vertical-align: top;
    text-align: left;
}

.entry-content table th {
    background: #f5f5f5;
    font-weight: 700;
    width: 160px;
    white-space: nowrap;
}

.entry-content table tr:nth-child(even) td {
    background: #fafafa;
}

.entry-content ul {
    list-style: disc;
    padding-left: 1.5em;
    margin: 0 0 1em;
}

.entry-content ol {
    list-style: decimal;
    padding-left: 1.5em;
    margin: 0 0 1em;
}

.entry-content li {
    margin-bottom: 0.4em;
}

.entry-content hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}

.entry-content a {
    color: #006dd9;
}

/* ---- サイドバー ---- */
.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #4a8c2a;
    padding: 8px 12px;
    margin: 0 0 0;
}

.sidebar-nav-list {
    border: 1px solid #e0e0e0;
    border-top: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav-list li {
    border-bottom: 1px solid #e8e8e8;
}

.sidebar-nav-list li:last-child {
    border-bottom: none;
}

.sidebar-nav-list a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: #333;
    transition: background 0.2s;
}

.sidebar-nav-list a:hover {
    background: #f5f5f5;
    text-decoration: none;
    color: #4a8c2a;
}

.sidebar-nav-list li.current a {
    color: #4a8c2a;
    font-weight: 700;
    background: #f0f7ea;
}

/* サイドバーバナー */
.sidebar-banners {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-banners li {
    margin-bottom: 8px;
}

.sidebar-banners img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    transition: opacity 0.2s;
}

.sidebar-banners a:hover img {
    opacity: 0.85;
}

/* ---- シェアボタン ---- */
.share-section {
    margin: 30px 0;
    padding: 16px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.share-section .share-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

.share-buttons {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.share-buttons a {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
}

.share-btn-facebook {
    background: #3b5998;
}

.share-btn-twitter {
    background: #1da1f2;
}

.share-buttons a:hover {
    opacity: 0.85;
    text-decoration: none;
    color: #fff;
}

/* ============================================================
   COMPANY PAGE
   ============================================================ */
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 30px;
    font-size: 14px;
}

.company-table th,
.company-table td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    vertical-align: top;
    text-align: left;
}

.company-table th {
    background: #f5f5f5;
    font-weight: 700;
    width: 160px;
    white-space: nowrap;
    color: #555;
}

.company-table td {
    line-height: 1.7;
}

/* ============================================================
   NEWS / ARCHIVE PAGE
   ============================================================ */
.archive-page {
    padding: 40px 0 60px;
}

.archive-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.archive-sidebar {
    width: 220px;
    flex-shrink: 0;
}

.archive-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    border-bottom: 2px solid #4a8c2a;
    padding-bottom: 10px;
    margin: 0 0 24px;
}

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

.news-archive-list li {
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.news-archive-list li:first-child {
    border-top: 1px solid #e8e8e8;
}

.news-archive-list .news-date {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    min-width: 90px;
}

.news-archive-list .news-cat-badge {
    font-size: 11px;
    color: #fff;
    background: #4a8c2a;
    padding: 2px 8px;
    border-radius: 2px;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.news-archive-list .news-cat-badge.cat-news {
    background: #1a6cb5;
}

.news-archive-list .news-title a {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.news-archive-list .news-title a:hover {
    color: #4a8c2a;
}

/* ---- ページネーション ---- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 30px 0;
    list-style: none;
    padding: 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #333;
    border-radius: 3px;
}

.pagination a:hover {
    background: #f0f7ea;
    border-color: #4a8c2a;
    color: #4a8c2a;
    text-decoration: none;
}

.pagination .current {
    background: #4a8c2a;
    border-color: #4a8c2a;
    color: #fff;
}

/* ============================================================
   SINGLE NEWS PAGE
   ============================================================ */
.single-news-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.single-news-header .news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.single-news-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-intro {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
}

.contact-form-wrap {
    max-width: 700px;
}

.contact-form table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.contact-form th,
.contact-form td {
    border: 1px solid #ddd;
    padding: 12px 16px;
    vertical-align: top;
    text-align: left;
}

.contact-form th {
    background: #f5f5f5;
    font-weight: 700;
    width: 180px;
    font-size: 13px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    font-family: inherit;
}

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

.contact-form .required {
    color: #c41134;
    font-size: 11px;
    margin-left: 4px;
}

.contact-form .submit-btn {
    background: #4a8c2a;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form .submit-btn:hover {
    background: #3a7020;
}

/* ============================================================
   RECRUIT PAGE
   ============================================================ */
.recruit-intro {
    margin-bottom: 30px;
}

.recruit-intro img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: #333;
    color: #ccc;
    padding: 30px 0 0;
    margin-top: 40px;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav-wrap {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-list li {
    border-right: 1px solid #555;
}

.footer-nav-list li:last-child {
    border-right: none;
}

.footer-nav-list a {
    display: block;
    padding: 4px 12px;
    font-size: 12px;
    color: #ccc;
}

.footer-nav-list a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-service-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.footer-service-nav li {
    border-right: 1px solid #555;
}

.footer-service-nav li:last-child {
    border-right: none;
}

.footer-service-nav a {
    display: block;
    padding: 4px 12px;
    font-size: 12px;
    color: #ccc;
}

.footer-service-nav a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-address {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-address a {
    color: #aaa;
}

.footer-address a:hover {
    color: #fff;
}

.footer-copyright {
    background: #222;
    text-align: center;
    padding: 12px 20px;
    font-size: 12px;
    color: #888;
    margin-top: 20px;
}

/* ---- ページトップへ戻るボタン ---- */
.page-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 200;
}

.page-top-btn.page-top-btn-appear {
    opacity: 1;
    pointer-events: auto;
}

.page-top-btn:hover {
    background: rgba(0,0,0,0.7);
    text-decoration: none;
    color: #fff;
}

.page-top-btn::before {
    content: "▲";
    font-size: 12px;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found-page {
    text-align: center;
    padding: 80px 20px;
}

.not-found-page h1 {
    font-size: 80px;
    font-weight: 700;
    color: #ccc;
    margin: 0 0 10px;
}

.not-found-page h2 {
    font-size: 22px;
    color: #555;
    margin: 0 0 20px;
}

.not-found-page p {
    color: #888;
    margin-bottom: 30px;
}

.not-found-page .btn-home {
    display: inline-block;
    background: #4a8c2a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 15px;
    text-decoration: none;
}

.not-found-page .btn-home:hover {
    background: #3a7020;
    text-decoration: none;
    color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
    /* ナビゲーション SP対応 */
    .nav-toggle {
        display: flex;
    }

    #global-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 200;
    }

    #global-nav.is-open {
        display: block;
    }

    .global-nav-list {
        flex-direction: column;
    }

    .global-nav-list > li {
        border-bottom: 1px solid #e8e8e8;
    }

    .global-nav-list > li > a {
        padding: 14px 20px;
    }

    #site-header {
        position: relative;
    }
}

@media (max-width: 767px) {
    .hero-slider .slide-item img {
        height: 220px;
    }

    .news-columns {
        flex-direction: column;
        gap: 30px;
    }

    .business-grid {
        flex-direction: column;
        align-items: center;
    }

    .business-item {
        max-width: 100%;
        width: 100%;
    }

    .inner-page-wrap {
        flex-direction: column;
    }

    .inner-page-sidebar {
        width: 100%;
    }

    .archive-wrap {
        flex-direction: column;
    }

    .archive-sidebar {
        width: 100%;
    }

    .footer-nav-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav-list {
        flex-wrap: wrap;
    }

    .company-table th {
        width: 110px;
        font-size: 12px;
    }

    .news-archive-list li {
        flex-direction: column;
        gap: 6px;
    }

    .header-top {
        padding: 8px 16px;
    }

    .header-sub-nav {
        gap: 6px;
    }

    .header-sub-nav a {
        font-size: 11px;
    }

    .catchcopy-section h2 {
        font-size: 17px;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-slider .slide-item img {
        height: 180px;
    }

    .kcc-container,
    .narrow-container {
        padding: 0 12px;
    }

    .inner-page-wrap,
    .archive-wrap {
        padding: 0 12px;
    }

    .news-columns {
        padding: 0 12px;
    }

    .business-grid {
        padding: 0 12px;
    }
}
