:root {
    /* 企業カラー（10%ブランドカラー） */
    --primary-red: #dc3545;
    --primary-yellow: #ffc107;
    --primary-green: #28a745;
    --deep-green: #2d5016;
    --dark-navy: #212F3D;
    --mainbackcolor: #FBFCFD;
    
    /* ニュートラルカラー（60%） */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --gray: #6c757d;
    
    /* 補完色（30%） */
    --text-dark: #2c3e50;
    --text-medium: #495057;
    
    /* 8ポイントグリッドシステム */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-xxxl: 64px;
    --space-xxxxl: 80px;
    
    /* フォントシステム（4サイズ + 2ウェイト） */
    --font-japanese: 'Noto Sans JP', sans-serif;
    --font-Title: Times New Roman;
    --font-english: 'Inter', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    
    /* フォントサイズ（4つのみ） */
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    
    /* フォントウェイト（2つのみ） */
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    
    /* シャドウ */
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    
    /* ボーダーラジアス */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

body {
    font-family: var(--font-japanese);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-dark);
/*    background: var(--white);*/
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* =================
   セクション共通スタイル
================= */
.section {
    padding: var(--space-xxxxl) 0;
    position: relative;
    background-color: #FBFCFD;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xxxl);
}

.section-icon {
    width: 101px;
    height: 103px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    color: var(--gray);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.section-icon.gloriosa {
    background-image: url('../images/main/icon_gloriosa.png');
}
.section-icon.pickupicon {
    background-image: url('../images/main/icon_pickuppng.png');
}
.section-icon.contenticon {
    background-image: url('../images/main/icon_content.png');
}

.section-title {
    font-family: var(--font-Title);
    font-size: 60px;
    font-weight: 900;
    color: var(--deep-green);
    position: relative;
}
.section-subtitle {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 900;
    color: var(--deep-green);
    position: relative;
    text-align: center;
}

/* =================
   ファーストビュー（hero-visualとhero-textの重なり）
================= */
.newhero {
    position: relative;
    padding-top: var(--space-xxxxl);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    height: 100%;
    background-image: url('../images/main/fv_pcbg.png');
}
.container.img-newhero {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/main/fv_pc.png);
    background-size: contain;
    background-position: center;
    height: 100%;
    background-repeat: no-repeat;
}
.img-newhero-fore {
}
.img-newhero-fore-mobile {
    display: none;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #faf8f5 0%, var(--light-gray) 50%, #f0f8e8 100%);
    z-index: 1;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(45, 80, 22, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(40, 167, 69, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: var(--space-xxxxl) var(--space-xl);
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-xl);
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--deep-green);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-medium);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-english);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray);
    font-weight: var(--font-weight-normal);
}

/* CO2削減量セクション */
.co2-section {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    padding: var(--space-xl) 0;
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.co2-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.counter-label {
    font-size: var(--font-size-lg);
    color: var(--primary-red);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.counter-number {
    font-family: var(--font-english);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(220, 53, 69, 0.2);
}

.counter-unit {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--primary-red);
    font-weight: var(--font-weight-bold);
}

.counter-note {
    font-size: var(--font-size-base);
    color: var(--gray);
    font-style: italic;
    width: 100%;
    margin-top: var(--space-sm);
}

/* =================
   社名変更のおしらせ
================= */
.notice {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #faf8f5;
    padding: 10px 0px;
}
.notice-button {
    font-family: 'Noto Serif JP', serif;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: black;
    font-size: 24px;
    max-width: 360px;
}

.notice-button .icon {
  margin-left: 12px;
  background-color: white;
  color: #f3a71a;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
}
/* =================
   次の灯とは（ロゴ画像対応）
================= */
.about {
    position: relative;
    background-image: url('../images/main/tsuginohi_bg_0801.png');
    overflow: hidden;
    height: 830px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.aboutImg {
    width: 100%;
    overflow: hidden;
    background-image: url(../images/main/tsuginohi_0801.png);
    background-size: contain;
    background-position: center;
    height: 100%;
    background-repeat: no-repeat;
}
.img-about {
    width: 100%;
    overflow: hidden;
}
.img-about-fore {
    position: absolute;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 25%;
    z-index: 1;
}
.img-about-tree-fore {
    position: absolute;
    z-index: 1;
    top: 60%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxxxl);
    align-items: center;
}

.about-text {
    padding: var(--space-xxl);
    position: relative;
    overflow: hidden;
}

.about-title {
    background-image: url('../images/main/tsuginohi_brush.png');
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    padding: 10px 30px;
}

.about-description {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
}

.about-visual {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/main/tsuginohi_logo_20250723_fin_concept.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

/* =================
   数字で見る次の灯（3列グリッドレイアウト）
================= */
.numbers {
    background-image: url('../images/main/key Achievenebts_bg_03.png');
    position: relative;
    height: 1390px;
    background-position: center;
/*    background-color: white;*/
    background-repeat: repeat-x;
    z-index: 2;
}
.section-title.numbers_title {
    color: white;
}
.section-subtitle.numbers_subtitle {
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
    padding: 0 10%;
}

.number-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 80, 22, 0.1);
    position: relative;
    overflow: hidden;
    padding: var(--space-lg);
}

.number-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.number-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    white-space: nowrap;
}

.number-image {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border: 1px dashed var(--gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    color: var(--gray);
    flex-shrink: 0;
}

.number-value {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: var(--space-xs);
    font-family: var(--font-english);
    line-height: 1.2;
}

.number-label {
    font-size: var(--font-size-base);
    color: var(--gray);
    font-weight: 500;
    line-height: 1.4;
    margin-top: var(--space-sm);
}

.number-label small {
    font-size: var(--font-size-sm);
    color: var(--gray);
    opacity: 0.8;
    display: block;
    margin-top: var(--space-xs);
    line-height: 1.3;
}

/* =================
   プロダクト・サービス（白背景タグ）
================= */
.products {
/*    background: var(--white);*/
    position: relative;
}
.img-products-fore {
    position: absolute;
    z-index: 1;
    top: 7%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
    padding: 0px 5%;
}

.product-card {
    background: var(--dark-navy);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid #34495e;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/*
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-red);
}*/

.product-video {
    height: 300px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.turntable-preview {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-base);
    text-align: center;
    background: linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.02) 50%, transparent 75%);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a71e2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-size-lg);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.product-content {
    padding: var(--space-xl) var(--space-lg);
    background: var(--dark-navy);
}

.product-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    border-radius: 2px;
}

.product-description {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.product-features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--white);
    color: var(--dark-navy);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =================
   PickUP
================= */
.pickup {
/*    background: var(--white);*/
    position: relative;
}

.pickup-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--space-xxl);
    border-bottom: 3px solid var(--medium-gray);
    padding-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

#pickup-header,
#content-header {
    margin-bottom: 0px;
}

#sites-header {
    margin-bottom: 10px;
}

.section-title.pickup-title {
    color: var(--deep-green);
}
.section-subtitle.pickup_subtitle,
.section-subtitle.content_subtitle,
.section-subtitle.sites_subtitle {
    font-size: 12px;
    text-align: left;
}
.section-subtitle.mobile_pickup_subtitle,
.section-subtitle.mobile_content_subtitle,
.section-subtitle.mobile_sites_subtitle {
    display: none;
}
.view-more-btn {
    display: flex;
    justify-content: flex-end; /* ← 右寄せにするポイント */
    margin-right: 6%;
}
.view-more {
    color: var(--gray);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.view-more:hover {
    color: var(--deep-green);
    border-color: var(--deep-green);
    background: rgba(45, 80, 22, 0.05);
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
    padding: 20px 5%;
}

.pickup-card {
/*    background: var(--white);*/
    border: none;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    transform: scale(1);
    padding-top: 3%;
}
/* ホバー時にふわっと切り替える */
.pickup-card:hover {
  background-color: #e6f4ea; /* 薄緑 */
  transform: scale(1.03);    /* ふんわり拡大 */
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); /* 影を少し強調 */
}

.pickup-image1,
.pickup-image2,
.pickup-image3,
.pickup-image4,
.pickup-image5,
.pickup-image6 {
    height: 215px;
    background-repeat: no-repeat;
    background-position: center;
}

.pickup-image1 {
    background-image: url('../images/main/pick01.png');
}

.pickup-image2 {
    background-image: url('../images/main/pick02.png');
}


.pickup-image3 {
    background-image: url('../images/main/pick03.png');
}

.pickup-image4 {
    background-image: url('../images/main/pick04.png');
}

.pickup-image5 {
    background-image: url('../images/main/pick05.png');
}

.pickup-image6 {
    background-image: url('../images/main/pick06.png');
}

.pickup-content {
    padding: var(--space-lg);
    position: relative;
}

.pickup-category {
    margin-bottom: var(--space-sm);
}

.category-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.category-tag.creative {
    background: rgba(25, 118, 210, 0.1);
    color: #1976d2;
    border-color: #1976d2;
}

.category-tag.development {
    background: rgba(123, 31, 162, 0.1);
    color: #7b1fa2;
    border-color: #7b1fa2;
}

.category-tag.branding {
    background: rgba(245, 124, 0, 0.1);
    color: #f57c00;
    border-color: #f57c00;
}

.pickup-project-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--deep-green);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.pickup-description {
    font-size: var(--font-size-base);
    color: var(--gray);
    line-height: 1.6;
}

/* =================
   CONTENT
================= */
.contentblog {
/*    background: #faf8f5;*/
    padding: var(--space-xxxxl) 0;
    position: relative;
    overflow: hidden;
}
.contentblog-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-xl);
    overflow-x: auto;
    position: relative;
    z-index: 2;
    padding: 20px 5%;
    scrollbar-width: none;
}
.contentblog-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.contentblog-card {
    min-width: 400px;
/*    background: var(--white);*/
    border: none;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    transform: scale(1);
    padding-top: 3%;
}
/* ホバー時にふわっと切り替える */
.contentblog-card:hover {
  background-color: #e6f4ea; /* 薄緑 */
  transform: scale(1.03);    /* ふんわり拡大 */
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); /* 影を少し強調 */
}

.contentblog-image1,
.contentblog-image2,
.contentblog-image3,
.contentblog-image4,
.contentblog-image5 {
    height: 215px;
    background-repeat: no-repeat;
    background-position: center;
}

.contentblog-image1 {
    background-image: url('../images/main/content_thum_04.png');
}

.contentblog-image2 {
    background-image: url('../images/main/content_thum_03.png');
}


.contentblog-image3 {
    background-image: url('../images/main/content_thum_02.png');
}

.contentblog-image4 {
    background-image: url('../images/main/content_thum_01.png');
}

.contentblog-image5 {
    background-image: url('../images/main/pick01.png');
}

.contentblog-content {
    padding: var(--space-lg);
    position: relative;
}

.contentblog-category {
    margin-bottom: var(--space-sm);
}

.contentblog-project-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--deep-green);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.contentblog-description {
    font-size: var(--font-size-base);
    color: var(--gray);
    line-height: 1.6;
}


/* =================
   運営サイト（2×2レイアウト）
================= */
.sites {
/*    background: #faf8f5;*/
    padding: var(--space-xxxxl) 0;
    position: relative;
    overflow: hidden;
}

.section-title.company-title {
    font-family: var(--font-serif);
}
.sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 2;
    padding: 5%;
}

.site-card {
    display: flex;              /* 横並びにする */
    align-items: stretch;       /* 高さを揃える（必要なら） */
    border-radius: 8px;
    overflow: visible;
    position: relative;
    height: 320px;
    z-index: 2;
    margin-bottom: 30px;
}

/* 新しく追加する疑似要素 */
.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #939393;
    border-radius: 8px;
    z-index: 2; /* 画像より手前に表示 */
    pointer-events: none; /* この要素がクリックイベントを妨げないようにする */
}

.site-image {
    width: 70%;
    margin: -5%;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
    left: 15px;
}

.site-image.thum_dpf {
    background-image: url('../images/main/thum_dpf.png');
}
.site-image.thum_shokubai {
    background-image: url('../images/main/thum_shokubai.png');
}
.site-image.thum_susu {
    background-image: url('../images/main/thum_susu.png');
}
.site-image.thum_injector {
    background-image: url('../images/main/thum_inject.png');
}

.site-info {
    padding: var(--space-md);
    height: 100%;
    display: grid;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.site-title {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding-bottom: 5%;
    margin-bottom: 5%;
}
.site-title.logo_dpf {
    background-image: url('../images/main/DPFdotcomyoko-01.png');
}
.site-title.logo_shokubai {
    background-image: url('../images/main/top_logo.png');
}
.site-title.logo_susu {
    background-image: url('../images/main/susugoroshi_logo_yoko-new_w500.png');
}
.site-title.logo_injector {
    background-image: url('../images/main/injecter.png');
}

.site-description {
    font-size: var(--font-size-sm);
    color: var(--gray);
    overflow: hidden;
    margin: 0px 10%;
}
.site-jump {
  display: inline-block;
  padding: 10px 50px;;
  background-color: #81c784;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ほんのり影 */
  margin: auto;
}

.site-jump:hover {
  background-color: #66bb6a;
  transform: scale(1.05);       /* 少し拡大 */
}

/* =================
   会社情報（シンプル化）
================= */
.company-info {
/*    background: var(--white);*/
    position: relative;
}

.company-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: var(--space-xxxxl);
    position: relative;
    z-index: 2;
    padding: 5%;
}

.info-section {
    position: relative;
}

.info-title {
    font-family: var(--font-serif);
    font-size: var(--font-size-xl);
    font-weight: 900;
    color: var(--deep-green);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: var(--space-md);
    border-bottom: 3px solid var(--medium-gray);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: var(--space-lg);
    align-items: start;
    padding: 5px;
/*    background: var(--white);*/
    transition: all 0.3s ease;
}
.info-label {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    text-align: right;
    padding-right: var(--space-md);
    border-right: 2px solid var(--medium-gray);
}

.info-value {
    font-size: var(--font-size-base);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}

.info-sub {
    font-size: var(--font-size-sm);
    color: var(--gray);
    margin-top: var(--space-xs);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.location-item {
    padding: 5px;
/*    background: var(--white);*/
    transition: all 0.3s ease;
}
.location-name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--deep-green);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.location-name::before {
    content: '';
    font-size: var(--font-size-base);
}

.location-address {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    line-height: 1.5;
    padding-left: 20px;
}

.business-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.business-item {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--deep-green);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-left: 10px;
}

.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.achievements-item {
    display: grid;
    grid-template-columns: 28% 35% 37%;
    gap: var(--space-md);
    padding-top: 5px;
}
.achievements-period {
    text-align: center;
}
.achievements-co2 {
    
}
.achievements-sale {
    
}


.award-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.award-year {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--deep-green);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.award-item {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    line-height: 1.5;
    padding-left: 20px;
}

.award-item::before {
    content: '';
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-lg);
}
.award-icon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding-top: 30px;
}
.award-icon-newbusiness {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/main/kaze.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.award-icon-bestventure {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/main/bnr_nv_large.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.award-icon-gptw {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/main/itemone_JP_English_2025_Certification_Badge.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.license-info {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--deep-green);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* =================
   お問い合わせフォーム
================= */
.contact {
/*    background: #faf8f5;*/
}
.section-title.contact-title {
    font-family: var(--font-serif);
}

.contact .section-header {
    margin-bottom: var(--space-xl);
}

.contact-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.contact-intro p {
    font-size: var(--font-size-base);
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #e0a800 100%);
    color: var(--text-dark);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    margin: var(--space-sm) 0;
    box-shadow: var(--shadow-light);
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}
/*
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
*/

.form-group {
    margin-bottom: var(--space-lg);
}

/*
.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
}
*/

.required-field {
    background: rgba(220, 53, 69, 0.05);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-red);
}

.optional-field {
    background: rgba(255, 193, 7, 0.05);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-yellow);
}

.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    border-color: var(--primary-green);
    outline: none;
    background: rgba(40, 167, 69, 0.02);
}

.required {
    color: var(--primary-red);
    font-weight: var(--font-weight-bold);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 8px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}
/* 送信ボタン */
.submit-row {
  margin-top: 40px;
}

.submit-button {
  background: linear-gradient(to right, #06b6d4, #2563eb); /* Tailwindのcyan-500とblue-600に相当 */
  color: white;
  padding: 16px 64px; /* px-16 (64px) と py-4 (16px) に相当 */
  border: none;
  border-radius: 8px; /* rounded-lg に相当 */
  font-size: 1.25rem; /* text-xl に相当 */
  font-weight: 700; /* font-bold に相当 */
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); /* shadow-xl に相当 */

}


.phone-contact {
    text-align: center;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-xl);
    padding: 15px;
}

.phone-contact h3 {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 15px;
}

.phone-number {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: #1d4ed8;
}

/* =================
   採用情報（アイテムワンスタイル）
================= */
.recruitment {
    background: var(--text-dark);
    background-image: url('../images/main/bg_recruit_pc.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.recruitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

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

.recruitment-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.recruitment-title {
    font-family: var(--font-english);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.recruitment-concept {
    font-family: var(--font-japanese);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.recruitment-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto var(--space-xxl);
}

.recruitment-cta-area {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    align-items: center;
}

.mynavi-logo {
    width: 160px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    color: #1976d2;
    font-weight: var(--font-weight-bold);
}

.recruitment-cta {
    background: linear-gradient(135deg, var(--primary-red) 0%, #a71e2a 100%);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.recruitment-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 53, 69, 0.3);
    color: var(--white);
}


/* フォームセクション */
.form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e5e7eb;
}

/* フォーム行（1質問1行レイアウト） */
.form-row {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
}

/* ラベル */
.form-label {
  font-weight: 600;
  color: #374151;
  text-align: left; /* right から left に変更 */
  padding-top: 8px;
  line-height: 1.4;
}

/* 必須マーク用のスタイルを追加 */
.required-mark::after {
  content: " *";
  color: #dc2626;
  font-weight: bold;
}
/* 姓名入力 */
.name-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
  white-space: nowrap;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* チェックボックスグループ */
.checkbox-group-multi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding-top: 8px;
}

/* プライバシー同意 */
.privacy-row .checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.last-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.last-btnCol{
|

/* =================
   アニメーション
================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@media (min-width: 1025px) {
  body .container {
    max-width: 1200px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-xxxl) 0;
    }

    .hero-content {
        height: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-xxl);
    }

    .co2-section {
        position: relative;
        bottom: auto;
        padding: var(--space-xl) 0;
        margin-top: var(--space-md);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .graph-section {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .graph-header {
        flex: none;
        min-width: auto;
    }

    .graph-content {
        flex: none;
    }

    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: var(--space-sm) var(--space-md);
    }

    .nav {
        display: none;
    }

    .section {
        padding: var(--space-xxl) 0;
    }

    .hero {
        padding-top: var(--space-xxl);
    }

    .hero-content {
        height: auto;
        min-height: 300px;
    }

    .hero-text {
        text-align: left;
        padding: var(--space-xl) var(--space-md);
    }

    .hero-stats {
        justify-content: center;
        gap: var(--space-lg);
    }

    .co2-counter {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .co2-section {
        position: relative;
        bottom: auto;
        padding: var(--space-md) 0;
        margin-top: var(--space-md);
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .number-content {
        white-space: normal;
    }

    .number-image {
        width: 50px;
        height: 50px;
    }

    .products-grid,
    .pickup-grid,
    .sites-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .info-item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .info-label {
        text-align: left;
        border-right: none;
        border-bottom: 2px solid var(--medium-gray);
        padding-right: 0;
        padding-bottom: var(--space-xs);
    }

    .business-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: var(--space-lg);
    }

    .recruitment-cta-area {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .name-inputs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .checkbox-group-multi {
        grid-template-columns: 1fr;
        gap: 10px;
    }

  .submit-button {
    padding: 14px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-header {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .about-text,
    .contact-form {
        padding: var(--space-lg);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .counter-number {
        font-size: clamp(28px, 10vw, 40px);
    }

    .counter-unit {
        font-size: var(--font-size-base);
    }

    .info-title {
        font-size: var(--font-size-base);
    }

    .logo-container {
        width: 180px;
        height: 45px;
    }

    .footer-logo {
        width: 200px;
        height: 50px;
    }
    
    .name-inputs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .checkbox-group-multi {
        grid-template-columns: 1fr;
        gap: 10px;
    }

  .submit-button {
    padding: 14px 32px;
    font-size: 1.1rem;
  }
    .form-row {
    grid-template-columns: 1fr;
  }
}