/* 追加・修正部分のみではなく、すべて含むstyle.css */
:root {
    --primary-color: #ff7a00;
    --primary-light: #fff2e5;
    --primary-gradient: linear-gradient(135deg, #ff7a00 0%, #ff9d42 100%);
    --bg-color: #fafafa;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #eaeaea;
    --line-color: #00B900;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(255, 122, 0, 0.15);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Zen Maru Gothic', 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

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

ul {
    list-style: none;
}

.sp-only {
    display: none;
}

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

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* 共通コンポーネント */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(255, 122, 0, 0.25);
}

.btn-primary-small {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--text-main);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.sub-heading {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--primary-color);
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.footer .logo-img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-prefix {
    font-size: 0.65rem;
    font-weight: 500;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a:not(.btn-primary-small) {
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.desktop-nav a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.desktop-nav a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.mobile-nav.active {
    display: flex;
}

/* ヒーローセクション */
.hero {
    position: relative;
    padding: 180px 0 160px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-main);
    background: var(--white);
    padding: 10px 36px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hero-agri {
    color: #6cbf3a;
    font-weight: 900;
}

.hero-welfare {
    color: #ff7a00;
    font-weight: 900;
}

.hero-cross {
    color: var(--text-main);
    font-weight: 700;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.floating-img {
    position: absolute;
    width: 250px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    z-index: 1; /* Content is z-index: 2 */
    opacity: 0.85;
    pointer-events: none; /* Prevent blocking clicks */
    animation: float 6s ease-in-out infinite;
}

.img-1 {
    bottom: -10px;
    left: -20px;
    animation-delay: 0s;
}

.img-2 {
    bottom: -10px;
    right: -20px;
    animation-delay: 2s;
}

@media (max-width: 1200px) {
    .img-1 { left: -50px; opacity: 0.5; }
    .img-2 { right: -50px; opacity: 0.5; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-bg-shape {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-bottom .shape-fill {
    fill: var(--bg-color);
}


/* サニーサイドの特徴 */
.features {
    padding: 80px 0 100px;
    background: var(--bg-color);
}

.feature-message {
    text-align: center;
    background: var(--primary-light);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin: 0 auto 50px;
    box-shadow: var(--shadow-sm);
}

.feature-message h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.feature-message p {
    text-align: left;
    display: inline-block;
    line-height: 1.8;
}

.feature-list {
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    text-shadow: -1px -1px 0 var(--primary-color), 1px -1px 0 var(--primary-color), -1px 1px 0 var(--primary-color), 1px 1px 0 var(--primary-color);
    line-height: 1;
}

.feature-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}


/* サービスセクション（事業紹介） */
.service {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:active {
    transform: scale(0.98) translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-icon-large {
    width: 60px;
    height: 60px;
    color: var(--white);
}

/* ダミー画像用プレースホルダー */
.placeholder-bg1 { background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%); }
.placeholder-bg2 { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
.placeholder-bg3 { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }

.service-content {
    padding: 30px;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card-action {
    background: #f0fdf4;
    color: var(--primary-color);
    padding: 15px 25px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-top: 1px dashed rgba(0,0,0,0.05);
    transition: background 0.3s ease;
    font-size: 0.95rem;
}

.service-card:hover .service-card-action {
    background: #e2fad9;
}

.service-card-action .lucide {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-action .lucide {
    transform: translateX(4px);
}

/* ベネフィットグリッド */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: left;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-card ul {
    list-style-type: disc;
    padding-left: 20px;
}

.benefit-card ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}


/* フローセクション */
.flow {
    padding: 100px 0;
    background: var(--bg-color);
}

.flow-steps {
    max-width: 600px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
}

.flow-line {
    width: 4px;
    height: 40px;
    background: var(--primary-light);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}


/* ご利用案内・一日の流れ */
.guidance {
    padding: 100px 0;
    background: var(--white);
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.guidance-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}



.guidance-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.guidance-list dt {
    font-weight: 700;
    color: var(--text-main);
    margin-top: 15px;
    margin-bottom: 5px;
}

.guidance-list dd {
    padding-left: 15px;
    border-left: 3px solid var(--primary-light);
    margin-bottom: 15px;
}

.guidance-list .note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.guidance-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -15px;
    margin-bottom: 25px;
    font-weight: 500;
}

.daily-schedule {
    padding: 0;
}

.daily-schedule li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.time-label {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    min-width: 120px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.schedule-detail {
    padding-top: 5px;
}

@media (max-width: 600px) {
    .daily-schedule li {
        flex-direction: column;
    }
    .time-label {
        margin-bottom: 10px;
    }
}


/* 法人案内セクション */
.company {
    padding: 100px 0 50px;
    background: var(--bg-color);
}

.company-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.company-desc {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.company-philosophy {
    margin-bottom: 40px;
}

.company-philosophy h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
}

.company-details dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
}

.company-details dt {
    width: 30%;
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-light);
}

.company-details dd {
    width: 70%;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

/* LINE CTA */
.line-cta {
    padding: 80px 0;
    background: var(--white);
}

.line-container {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.line-content {
    flex: 1;
    padding-right: 40px;
}

.line-content h2 {
    color: #166534;
    margin-bottom: 15px;
}

.line-content p {
    color: #15803d;
    margin-bottom: 30px;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--line-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 185, 0, 0.2);
    transition: var(--transition);
}

.btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 185, 0, 0.3);
}

.qr-placeholder {
    width: 180px;
    height: 180px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.qr-placeholder p {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 10px;
}

/* お問い合わせ */
.contact {
    padding: 100px 0;
    background: var(--bg-color);
}

.contact-container {
    max-width: 700px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.required {
    background: #ef4444;
    color: var(--white);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-color);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* チェックボックスグループ */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    padding: 10px 18px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    transition: var(--transition);
    background: var(--bg-color);
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.checkbox-label:has(input:checked) {
    border-color: var(--primary-color);
    background: var(--primary-light);
    color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* フッター */
.footer {
    background: #333;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-info .logo-icon {
    color: var(--primary-color);
}

.footer-info p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 6px;
    border-color: transparent transparent transparent var(--primary-color);
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #888;
    font-size: 0.9rem;
}

/* アニメーション用クラス */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        padding: 5px 20px;
        letter-spacing: 1px;
    }
    
    .hero {
        padding: 100px 0 220px;
    }
    
    .hero-text {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .hero-content {
        position: relative;
        z-index: 5;
    }
    
    .img-1 {
        width: 110px;
        left: -10px;
        bottom: 10px;
        opacity: 0.3;
        z-index: 0;
    }
    
    .img-2 {
        width: 100px;
        right: -10px;
        bottom: 10px;
        opacity: 0.3;
        z-index: 0;
    }
    
    .pc-only {
        display: none;
    }
    .sp-only {
        display: inline;
    }

    .company-details dt, .company-details dd {
        width: 100%;
    }
    
    .company-details dt {
        border-bottom: none;
        padding-bottom: 5px;
    }
    
    .line-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .line-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* サブページ用スタイル追加 */
.page-hero {
    padding: 150px 0 60px;
    background: var(--primary-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.page-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    padding: 15px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-section {
    padding: 80px 0;
    background: var(--bg-color);
    min-height: 50vh;
}

.detail-btn-wrap {
    text-align: center;
    margin-top: 30px;
}

.detail-btn-wrap .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.detail-btn-wrap .btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* 事業紹介詳細ページ用スタイル */
.detail-block {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    border-top: 6px solid;
}

.orange-block { border-top-color: #ff7a00; }
.yellow-block { border-top-color: #f59e0b; }
.green-block { border-top-color: #10b981; }

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.circle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.circle-icon svg {
    width: 35px;
    height: 35px;
}

.block-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.block-lead {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 500;
}

.job-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.job-category {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 16px;
}

.job-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.job-category ul {
    list-style: none;
    margin-bottom: 20px;
}

.job-category ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-weight: 500;
}

.job-category ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.job-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.benefit-content {
    padding: 0 10px;
}

.benefit-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.feature-bullet-list li {
    background: var(--bg-color);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    flex-direction: column;
}

.feature-bullet-list li strong {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .detail-block {
        padding: 30px 20px;
    }
    .block-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* 複数LINE導線用スタイル追加 */
.line-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.line-card {
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.line-card-consult {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.line-card-sales {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;
}

.line-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.line-card-consult h3 { color: #166534; }
.line-card-sales h3 { color: #c2410c; }

.line-card p {
    margin-bottom: 25px;
    font-size: 1rem;
    min-height: 48px;
}

.line-card-consult p { color: #15803d; }
.line-card-sales p { color: #9a3412; }

.qr-box {
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
    border-radius: 8px;
}

.qr-placeholder p {
    margin: 10px 0 0;
    font-size: 0.8rem;
    color: #999;
    min-height: auto;
}

/* 情報公開ページ用スタイル */
.disclosure-year {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
}

.disclosure-year h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.disclosure-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.disclosure-list li {
    margin: 0;
}

.pdf-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pdf-link:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.pdf-icon {
    color: #ef4444; /* PDFの赤系アイコン */
    margin-right: 15px;
    width: 24px;
    height: 24px;
}

.pdf-link span {
    flex-grow: 1;
    font-weight: 500;
}

.pdf-link small {
    color: var(--text-light);
    margin-left: 10px;
    font-weight: normal;
}

.download-icon {
    color: var(--text-light);
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

.pdf-link:hover .download-icon {
    color: var(--primary-color);
}




/* 事業紹介ページ: スマホ時に特徴セクションを横幅いっぱいに */
@media (max-width: 768px) {
        .feature-list {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .feature-item {
        margin-left: 0;
        margin-right: 0;
        border-radius: 12px;
    }
    .feature-message {
        max-width: 100%;
        padding: 20px;
    }
        .feature-item {
        flex-direction: column;
        padding: 30px;
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }
    .feature-item h3 {
        font-size: 1.3rem;
    }
    .feature-item p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    .feature-text {
        width: 100%;
    }
    .feature-text p {
        width: 100%;
    }
    .feature-number {
        font-size: 2rem;
    }
}




@media (max-width: 768px) {
    .service-details .container,
    .company .container,
    .guidance .container,
    .sales .container,
    .access .container,
    .contact .container {
        width: 95%;
    }
    .service-details .detail-block,
    .company-content,
    .guidance-card,
    .access-content,
    .contact-form-wrap {
        padding: 15px !important;
        border-radius: 10px !important;
    }
}

/* スマホ時: 仕事内容の写真を横スワイプ切り替え */
@media (max-width: 768px) {
    .job-image-slider-wrapper {
        position: relative;
        margin-bottom: 20px;
    }
    .job-image-area {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0 !important;
        scrollbar-width: none;
    }
    .job-image-area::-webkit-scrollbar {
        display: none;
    }
    .job-image-area > img {
        min-width: 100%;
        flex-shrink: 0;
        scroll-snap-align: center;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        aspect-ratio: 4/3;
        object-fit: cover;
        object-position: center;
    }
    .slider-counter {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }
    .slider-counter .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        transition: var(--transition);
        cursor: pointer;
    }
    .slider-counter .dot.active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }
}
@media (min-width: 769px) {
    .job-image-slider-wrapper {
        margin-bottom: 20px;
    }
    .job-image-area {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .job-image-area > img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        object-position: center;
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }
    .slider-counter {
        display: none;
    }
}

/* ==========================================================================
   Store Section
   ========================================================================== */

.store-section {
    background-color: var(--primary-light);
}

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

.store-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.store-img {
    height: 200px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-img img {
    transform: scale(1.05);
}

.store-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.store-name {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.store-detail i {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.store-products {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .store-grid, .service-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px; /* シャドウの分 */
        -webkit-overflow-scrolling: touch;
        
        /* 画面端から端までスクロールできるように、親コンテナ(width:90%)の余白を相殺 */
        margin-left: -5.5vw;
        margin-right: -5.5vw;
        padding-left: 5.5vw;
        padding-right: 5.5vw;
        
        /* スクロールバーを隠す */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .store-grid::-webkit-scrollbar, .service-grid::-webkit-scrollbar {
        display: none;
    }

    .store-card, .service-card {
        flex: 0 0 100%; /* カード幅を100%にして次のカードを隠す */
        scroll-snap-align: center;
    }

    .store-slider-dots, .service-slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .store-slider-dots .dot, .service-slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        transition: background-color 0.3s ease;
    }

    .store-slider-dots .dot.active, .service-slider-dots .dot.active {
        background-color: var(--primary-color);
        width: 12px;
        height: 12px;
    }
}

/* ==========================================================================
   UX / UI Improvements
   ========================================================================== */


/* PC 1: 利用案内のステップを横並びにする */
@media (min-width: 769px) {
    .flow-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }
    .flow-step {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 30px 10px; /* パディングを少し減らして余裕を持たせる */
    }
    .step-content h4 {
        white-space: nowrap; /* 最後の1文字だけ落ちるのを防ぐ */
    }
    .flow-line {
        width: 40px; /* 線の幅も少し縮める */
        height: 4px;
        margin: 0 10px;
    }
}

/* PC 3 (共通): 事業紹介の写真ズームエフェクト */
.service-img {
    overflow: hidden;
}
.service-img img {
    transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.05);
}

/* アクセスページの外観画像のレスポンシブ対応 */
.access-exterior-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
    transform-origin: top left;
}

@media (max-width: 768px) {
    .access-exterior-img {
        transform-origin: right center;
    }
}

/* アニメーション遅延ユーティリティ（fade-up等の表示タイミングをずらす） */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* トップページ「特徴」セクションの下余白 */
.top-features { padding-bottom: 50px; }

/* 追加CSS */
.features-scroll-wrapper {
    width: 100%;
}
.features-scroll-container {
    display: flex;
    gap: 20px;
    padding: 10px;
}
.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 260px;
    border-top: 5px solid var(--primary-color);
}
.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card .feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-card .feature-subtitle { font-weight: bold; margin-bottom: 15px; font-size: 0.95rem; }
.feature-list-check { list-style: none; padding-left: 0; }
.feature-list-check li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.feature-list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .features-scroll-wrapper {
        width: 100%;
    }
    .features-scroll-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        margin-left: -5.5vw;
        margin-right: -5.5vw;
        padding-left: 5.5vw;
        padding-right: 5.5vw;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .features-scroll-container::-webkit-scrollbar {
        display: none;
    }
    .feature-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
        max-width: none;
        width: 100%;
    }
    
    .features-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }
    .features-slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        transition: var(--transition);
        cursor: pointer;
    }
    .features-slider-dots .dot.active {
        background-color: var(--primary-color);
        transform: scale(1.2);
    }
}

/* 販売停止中スタイル */
.sold-out .sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sold-out .sold-out-overlay span {
    background: #666;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.sold-out img, .sold-out .product-info {
    filter: grayscale(100%);
}
.disabled-btn {
    pointer-events: none;
    background: #aaa !important;
    border-color: #aaa !important;
    color: #fff !important;
    box-shadow: none !important;
}
