/*
Theme Name: Creed Corporate Theme
Description: 株式会社クリード公式サイト用テーマ
Version: 1.0
Author: Your Name
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

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

/* ヘッダー */
.header {
    background-color: transparent;
    padding: 20px 0 15px;
    border-bottom: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    position: fixed;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header.scrolled .logo {
    color: #000;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s;
    white-space: nowrap;
}

.header.scrolled .nav-menu li a {
    color: #000;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

.contact-button {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.contact-button:hover {
    opacity: 0.8;
}

.header-border {
    width: 100%;
    height: 1px;
    background-color: #fff;
    margin: 15px auto 0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.header.scrolled .header-border {
    opacity: 0;
    visibility: hidden;
}

/* ハンバーガーメニューボタン */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header.scrolled .hamburger span {
    background-color: #000;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* モバイルメニュー */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    padding: 80px 30px 30px;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu li a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
    transition: color 0.3s;
}

.mobile-nav-menu li a:hover {
    color: #666;
}

.mobile-contact-button {
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

/* メニューオープン時のbodyスクロール制御 */
body.menu-open {
    overflow: hidden;
}

/* メニューオープン時のオーバーレイ */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}


/* 新しいFVエリア */
.hero-new {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('./img/fv-back.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero-new-content {
    text-align: left;
    color: #fff;
    max-width: 1000px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    margin-left: 80px;
}

.hero-new-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    color: #fff;
}

.hero-new-lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 0;
    font-weight: 400;
    color: #fff;
}

.hero-new-bottom-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

/* セクション共通 */
.section {
    padding: 80px 0;
}

.section:nth-child(odd) {
    background-color: #fafafa;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: 1px;
    font-family: "Noto Sans JP", sans-serif;
}

.section-subtitle {
    font-size: 76px;
    font-weight: 900;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

/* ニュースセクションのヘッダー */
.news-header {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 76px;
    font-weight: 900;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1px;
    font-family: "Noto Sans JP", sans-serif;
}

.section-title::after {
    display: none;
}

/* 事業内容セクション */
#works {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#works::after {
    content: 'WORKS';
    position: absolute;
    right: 50px;
    top: 14%;
    transform: rotate(90deg);
    transform-origin: right center;
    font-size: 150px;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-text-fill-color: #fafafa;
    -webkit-text-stroke: 1px #C3C3C3;
    text-stroke: 1px #C3C3C3;
    paint-order: stroke fill;
    pointer-events: none;
    z-index: -1;
}

.works-header {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 40px;
}

.works-header .section-subtitle {
    font-size: 76px;
    font-weight: 900;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

.works-header .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1px;
    font-family: "Noto Sans JP", sans-serif;
}

.works-header .section-title::after {
    display: none;
}

.works-intro {
    text-align: left;
    max-width: none;
    margin: 0 0 60px 0;
    line-height: 1.9;
    color: #333;
}

.works-hero {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0;
    box-shadow: none;
    width: 100%;
}

.works-hero-image {
    width: 45%;
    object-fit: cover;
    border-radius: 0;
}

.works-hero-content {
    flex: 1;
    padding: 40px 80px 40px 0;
}

.works-hero-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.6;
}

.works-hero-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.works-card {
    background: #fff;
    padding: 35px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.works-card-number {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    line-height: 1;
}

.works-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    line-height: 1.6;
}

.works-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.works-card-text {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* 安定型最終処分場とは */
.stable-type-section {
    padding-top: 80px;
}

.stable-type-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.stable-type-description {
    text-align: center;
    margin: 0 auto 60px;
    line-height: 1.9;
    color: #333;
    font-size: 16px;
}

.waste-example-box {
    background: #fff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.waste-example-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    background: #303030;
    padding: 24px;
    border-radius: 0;
}

.waste-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
}

.waste-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
}

.waste-label {
    width: 100%;
    background: none;
    color: #fff;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* 業務内容セクション */
.business-content-section {
    padding: 80px 0;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: #ccc;
    margin-bottom: 60px;
}

.business-content-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

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

.business-card {
    width: calc(33.333% - 20px);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.business-card:nth-child(1),
.business-card:nth-child(2) {
    width: calc(40% - 15px);
}

.business-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.business-card-content {
    padding: 30px;
    text-align: center;
}

.business-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.6;
}

.business-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.business-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: left;
}

/* 代表挨拶セクション */
#greeting {
    position: relative;
    overflow: hidden;
	 z-index: 1;
}

#greeting::after {
    content: 'GREETING';
    position: absolute;
    right: 50px;
    top: 90%;
    transform: rotate(90deg);
    transform-origin: right center;
    font-size: 150px;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-text-fill-color: #FFF;
    -webkit-text-stroke: 1px #C3C3C3;
    text-stroke: 1px #C3C3C3;
    paint-order: stroke fill;
    pointer-events: none;
    z-index: -1;
}

.greeting-header {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 60px;
}

.greeting-header .section-subtitle {
    font-size: 76px;
    font-weight: 900;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

.greeting-header .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1px;
    font-family: "Noto Sans JP", sans-serif;
}

.greeting-header .section-title::after {
    display: none;
}

.greeting-main-title {
    font-size: 40px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 32px;
    color: #000;
    line-height: 1.6;
}

.greeting-content {
    line-height: 1.9;
    color: #333;
    font-size: 16px;
}

.greeting-content p {
    margin-bottom: 30px;
}

.greeting-signature {
    text-align: left;
    margin-top: 60px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

/* 会社概要 */
#company {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#company::before {
    content: 'COMPANY';
    position: absolute;
    left: 50px;
    top: 8%;
    transform: rotate(90deg);
    transform-origin: left center;
    font-size: 150px;
    font-weight: 900;
    font-family: "Inter", sans-serif;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    -webkit-text-fill-color: #fafafa;
    -webkit-text-stroke: 1px #C3C3C3;
    text-stroke: 1px #C3C3C3;
    paint-order: stroke fill;
    pointer-events: none;
    z-index: -1;
}

.company-header {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 60px;
}

.company-header .section-subtitle {
    font-size: 76px;
    font-weight: 900;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

.company-header .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1px;
    font-family: "Noto Sans JP", sans-serif;
}

.company-header .section-title::after {
    display: none;
}

.company-info {
    margin: 0 auto;
}

.info-item {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.info-label {
    font-weight: 600;
    color: #000;
    min-width: 120px;
    margin-right: 20px;
}

.info-value {
    color: #333;
    flex: 1;
}

.info-group {
    background: #FFF;
    padding: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 0;
}

/* お問い合わせセクション */
.contact-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    min-height: 565px;
}

.contact-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 565px;
    object-fit: cover;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.contact-header {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-header .section-subtitle {
    font-size: 76px;
    font-weight: 900;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    font-family: "Inter", sans-serif;
}

.contact-header .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1px;
    font-family: "Noto Sans JP", sans-serif;
}

.contact-header .section-title::after {
    display: none;
}

/* Contact Form 7 スタイル */
.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-wrapper label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    font-size: 15px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: "Noto Sans JP", sans-serif;
    transition: border-color 0.3s;
    background-color: #fafafa;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #000;
}

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

.contact-form-wrapper input[type="submit"] {
    background: #000;
    color: #fff;
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    align-self: center;
    font-family: "Noto Sans JP", sans-serif;
    width: 300px;
}

.contact-form-wrapper input[type="submit"]:hover {
    opacity: 0.8;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px;
    border-radius: 4px;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.contact-form-wrapper .wpcf7-validation-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* お知らせ・記事一覧 */
.news-list {
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

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

.news-date {
    font-size: 0.9rem;
    color: #666;
    min-width: 120px;
    margin-right: 20px;
    font-weight: 500;
}

.news-title {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    flex: 1;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title:hover,
.news-title a:hover {
    color: #000;
    cursor: pointer;
}

/* 水質検査結果 */
.pdf-embed {
    text-align: center;
    margin-top: 30px;
}

.pdf-container {
    background: #fff;
    padding: 30px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.pdf-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.pdf-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

/* フッター */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.footer p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ============================================
   レスポンシブデザイン
============================================ */

/* タブレット対応 (1024px以下) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* ヘッダー */
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu li a {
        font-size: 14px;
    }
    
    .contact-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* 共通セクション */
    .section-subtitle {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    /* FV */
    .hero-new-title {
        font-size: 52px;
    }
    
    .hero-new-lead {
        font-size: 15px;
    }
    
    /* セクションヘッダー */
    .news-header,
    .works-header,
    .greeting-header,
    .company-header,
    .contact-header {
        gap: 20px;
    }
    
    .news-header .section-subtitle,
    .works-header .section-subtitle,
    .greeting-header .section-subtitle,
    .company-header .section-subtitle,
    .contact-header .section-subtitle {
        font-size: 60px;
    }
    
    /* 事業内容 */
    #works::after {
        font-size: 120px;
        right: 30px;
    }
    
    .works-intro {
        font-size: 15px;
        margin-bottom: 50px;
    }
    
    .works-hero {
        gap: 35px;
    }
    
    .works-hero-content {
        padding: 30px 40px 30px 0;
    }
    
    .works-hero-title {
        font-size: 22px;
    }
    
    .works-hero-text {
        font-size: 15px;
    }
    
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* 安定型最終処分場 */
    .stable-type-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .stable-type-description {
        font-size: 15px;
        margin-bottom: 50px;
    }
    
    .waste-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        padding: 35px;
    }
    
    .waste-label {
        font-size: 13px;
        padding: 13px 9px;
    }
    
    /* 業務内容 */
    .business-content-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .business-card:nth-child(1),
    .business-card:nth-child(2) {
        width: calc(50% - 15px);
    }
    
    .business-card {
        width: calc(33.333% - 20px);
    }
    
    .business-card-title {
        font-size: 20px;
    }
    
    .business-card-text {
        font-size: 15px;
    }
    
    /* 代表挨拶 */
    #greeting::after {
        font-size: 120px;
        right: 30px;
    }
    
    .greeting-main-title {
        font-size: 32px;
        margin-bottom: 28px;
    }
    
    .greeting-content {
        font-size: 15px;
    }
    
    .greeting-content p {
        margin-bottom: 25px;
    }
    
    .greeting-signature {
        margin-top: 50px;
        font-size: 18px;
    }
    
    /* 会社概要 */
    #company::before {
        font-size: 120px;
        left: 30px;
    }
    
    .info-group {
        padding: 60px 40px;
    }
    
    .info-item {
        padding-bottom: 25px;
margin-bottom: 25px;
    }
    
    .info-label {
        min-width: 110px;
        font-size: 15px;
    }
    
    .info-value {
        font-size: 15px;
    }
    
    /* お問い合わせ */
    .contact-section {
        padding: 100px 0 90px;
        min-height: 500px;
    }
    
    .contact-background-image {
        height: 500px;
    }
    
    .contact-form-wrapper {
        padding: 40px 35px;
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper textarea {
        font-size: 14px;
        padding: 11px 14px;
    }
    
    .contact-form-wrapper textarea {
        min-height: 130px;
    }
    
    .contact-form-wrapper input[type="submit"] {
        padding: 14px 45px;
        font-size: 15px;
        width: 280px;
    }
    
    /* PDF・フッター */
    .pdf-container {
        padding: 25px;
    }
    
    .pdf-container iframe {
        height: 550px;
    }
    
    .pdf-note {
        font-size: 0.85rem;
        margin-top: 18px;
    }
    
    .footer {
        padding: 25px 0;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
}

/* スマートフォン対応 (768px以下) */
@media (max-width: 768px) {
	.hero-new-bottom-image{
display: none;
	}
    
    /* ハンバーガーメニュー表示 */
    .hamburger {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }

    .container {
        padding: 0 20px;
    }
    
    /* ヘッダー */
    .header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-border {
        display: none;
    }
    
    /* 共通セクション */
    .section {
        padding: 60px 0;
    }
    
    .section-subtitle {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    /* FV */
        .hero-new {
        height: 600px;
        margin-top: 0;
        min-height: auto;
    }
    
    .hero-new-content {
        padding: 0px;
        margin-left: 20px;
    }
    
    .hero-new-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .hero-new-lead {
        font-size: 14px;
        margin-bottom: 0;
    }
    
    /* セクションヘッダー */
    .news-header,
    .works-header,
    .greeting-header,
    .company-header,
    .contact-header {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 30px;
    }
    
    .news-header .section-subtitle,
    .works-header .section-subtitle,
    .greeting-header .section-subtitle,
    .company-header .section-subtitle,
    .contact-header .section-subtitle {
        font-size: 48px;
        text-align: left;
    }
    
    .news-header .section-title,
    .works-header .section-title,
    .greeting-header .section-title,
    .company-header .section-title,
    .contact-header .section-title {
        font-size: 16px;
        text-align: left;
    }
    
    /* ニュース */
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    
    .news-date {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .news-title {
        font-size: 0.95rem;
    }
    
    /* 事業内容 */
    #works::after {
        font-size: 80px;
        right: 20px;
		top: 7%;
    }
    
    .works-intro {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .works-hero {
        flex-direction: column;
        gap: 30px;
        padding: 0;
		align-items: baseline;
    }
    
    .works-hero-image {
        width: 90%;
    }
    
    .works-hero-content {
        padding: 0 20px 20px;
    }
    
    .works-hero-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .works-hero-text {
        font-size: 14px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .works-card {
        padding: 25px 20px;
    }
    
    .works-card-number {
        font-size: 32px;
    }
    
    .works-card-title {
        font-size: 16px;
    }
    
    /* 安定型最終処分場 */
    .stable-type-section {
        padding: 20px 0;
        margin: 0px 0;
    }
    
    .stable-type-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .stable-type-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .waste-example-box {
        margin: 0px;
    }
    
    .waste-example-title {
        font-size: 20px;
        padding: 15px;
    }
    
    .waste-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 25px;
    }
    
    .waste-label {
        font-size: 12px;
        padding: 12px 8px;
    }
    
    /* 業務内容 */
    .business-content-section {
        padding: 40px 0;
    }
    
    .section-divider {
        margin-bottom: 40px;
    }
    
    .business-content-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .business-grid {
        gap: 20px;
    }
    
    .business-card {
        width: 100%;
    }
    
    .business-card:nth-child(1),
    .business-card:nth-child(2) {
        width: 100%;
    }
    
    .business-card-image {
        height: 180px;
    }
    
    .business-card-content {
        padding: 20px;
    }
    
    .business-card-title {
        font-size: 16px;
    }
    
    .business-card-text {
        font-size: 14px;
    }
    
    /* 代表挨拶 */
    #greeting::after {
        font-size: 80px;
        right: 20px;
		top: 50%;
    }
    
    .greeting-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .greeting-content {
        font-size: 14px;
    }
    
    .greeting-content p {
        margin-bottom: 20px;
    }
    
    .greeting-signature {
        margin-top: 40px;
        font-size: 14px;
    }
    
    /* 会社概要 */
    #company::before {
        font-size: 80px;
        left: 20px;
		top: 7%;
    }
    
    .company-info {
        gap: 20px;
    }
    
    .info-group {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .info-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 14px;
    }
    
    .info-value {
        font-size: 14px;
    }
    
    /* お問い合わせ */
    .contact-section {
        padding: 60px 0 80px;
        min-height: 400px;
    }
    
    .contact-background-image {
        height: 400px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper .wpcf7-form {
        gap: 20px;
    }
    
    .contact-form-wrapper label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper textarea {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .contact-form-wrapper textarea {
        min-height: 120px;
    }
    
    .contact-form-wrapper input[type="submit"] {
        padding: 12px 40px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    /* PDF・フッター */
    .pdf-container {
        padding: 15px;
    }
    
    .pdf-container iframe {
        height: 400px;
    }
    
    .pdf-note {
        font-size: 0.8rem;
        margin-top: 15px;
    }
    
    .footer {
        padding: 20px 0;
    }
    
    .footer p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}