/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 - モバイルファースト */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
    font-feature-settings: "palt";
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
}

/* タブレット用 */
@media (min-width: 768px) {
    body {
        line-height: 1.7;
    }
    
    .container {
        padding: 0 30px;
        max-width: 1200px;
    }
}

/* デスクトップ用 */
@media (min-width: 1024px) {
    body {
        line-height: 1.8;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* ローディングアニメーション */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EAE9E5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    position: relative;
}

.loading-image {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.loading-logo {
    width: 120px;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.4s ease forwards,
               rotateConstant 2s linear infinite;
}

.loading-text-image {
    width: 160px;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateConstant {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ナビゲーション - モバイルファースト */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(237, 237, 234, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 85, 48, 0.2);
}

.navbar.scrolled {
    background: rgba(237, 237, 234, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

/* タブレット用ナビゲーション */
@media (min-width: 768px) {
    .nav-container {
        padding: 0 30px;
        height: 70px;
    }
}

/* デスクトップ用ナビゲーション */
@media (min-width: 1024px) {
    .nav-container {
        max-width: 1200px;
        padding: 0 20px;
        height: 80px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a3a21;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

/* タブレット用ロゴ */
@media (min-width: 768px) {
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
}

/* デスクトップ用ロゴ */
@media (min-width: 1024px) {
    .nav-logo {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        width: 70px;
        height: 70px;
        margin-right: 15px;
    }
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1);
}

.logo-text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    letter-spacing: 2px;
    color: #333333;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.hamburger:hover {
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 2px;
    background: #333333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* タブレット用ハンバーガー */
@media (min-width: 768px) {
    .hamburger {
        padding: 10px;
    }
    
    .bar {
        width: 28px;
        height: 2.5px;
        margin: 3.5px 0;
    }
}

/* デスクトップ用ハンバーガー */
@media (min-width: 1024px) {
    .bar {
        width: 30px;
        height: 3px;
        margin: 4px 0;
    }
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

/* ナビゲーションメニュー */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    cursor: pointer;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: #EDEDEA;
    z-index: 999;
    transition: all 0.4s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(44, 85, 48, 0.2);
}

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

.nav-menu-content {
    padding: 10px 40px 40px;
    height: 100%;
    position: relative;
}

/* 閉じるボタン */
.nav-close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    color: #1a3a21;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.nav-close-btn:hover {
    color: #2d4a34;
    transform: scale(1.05);
}

.close-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.close-text {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-section {
    margin-bottom: 25px;
}

.nav-section:first-child {
    margin-top: 25px;
}

.nav-section h3 {
    color: #333333;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
    letter-spacing: 1px;
}

.nav-section ul {
    list-style: none;
}

.nav-section li {
    margin-bottom: 6px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 36px;
    display: flex;
    align-items: center;
}

/* タブレット用ナビリンク */
@media (min-width: 768px) {
    .nav-link {
        font-size: 1.05rem;
        padding: 10px 0;
        min-height: auto;
    }
}

/* デスクトップ用ナビリンク */
@media (min-width: 1024px) {
    .nav-link {
        font-size: 1.1rem;
    }
}

.nav-link:hover,
.nav-link.active {
    color: #1a3a21;
    padding-left: 20px;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #1a3a21;
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 15px;
}

/* HERO SECTION - モバイルファースト */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 60px 0 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
}

.hero-content {
    text-align: center;
    color: #333;
    z-index: 3;
    width: 100%;
    max-width: 90%;
    padding: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.565);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* タブレット用ヒーローコンテンツ */
@media (min-width: 768px) {
    .hero-content {
        max-width: 600px;
        padding: 30px;
    }
}

/* デスクトップ用ヒーローコンテンツ */
@media (min-width: 1024px) {
    .hero-content {
        max-width: 900px;
        padding: 40px;
    }
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1a3a21, transparent);
}

.hero-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 20px rgba(44, 85, 48, 0.2);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.3s both;
    opacity: 0.9;
    line-height: 1.5;
}

/* タブレット用ヒーロータイトル */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        letter-spacing: 0.8px;
        line-height: 1.6;
    }
}

/* デスクトップ用ヒーロータイトル */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.0rem;
        margin-bottom: 30px;
        letter-spacing: 4px;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 50px;
        letter-spacing: 1px;
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 300;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 250px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

/* タブレット用ボタン */
@media (min-width: 768px) {
    .hero-buttons {
        gap: 20px;
        flex-direction: row;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 0.9rem;
        letter-spacing: 0.8px;
        width: auto;
        max-width: none;
    }
}

/* デスクトップ用ボタン */
@media (min-width: 1024px) {
    .hero-buttons {
        gap: 30px;
    }
    
    .btn {
        padding: 18px 40px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1a3a21, #2d4a34);
    color: #ffffff;
    border: 1px solid #1a3a21;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d4a34, #1a3a21);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1a3a21;
    border: 1px solid #1a3a21;
}

.btn-secondary:hover {
    background: #1a3a21;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 85, 48, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #1a3a21;
    touch-action: manipulation;
    cursor: pointer;
}

/* タブレット用スクロールインジケーター */
@media (min-width: 768px) {
    .scroll-indicator {
        bottom: 30px;
    }
}

/* デスクトップ用スクロールインジケーター */
@media (min-width: 1024px) {
    .scroll-indicator {
        bottom: 40px;
    }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #1a3a21;
    border-bottom: 2px solid #1a3a21;
    transform: rotate(45deg);
}

/* セクション共通 - モバイルファースト */
section {
    padding: 60px 0;
    position: relative;
}

.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #1a3a21;
    position: relative;
    font-weight: 400;
    letter-spacing: 1px;
}

/* タブレット用セクション */
@media (min-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
        letter-spacing: 2px;
    }
}

/* デスクトップ用セクション */
@media (min-width: 1024px) {
    section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 3rem;
        margin-bottom: 80px;
        letter-spacing: 3px;
    }
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a3a21, transparent);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1a3a21, transparent);
}

/* NEWS SECTION */
.news {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%232c5530" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%232c5530" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%232c5530" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%232c5530" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%232c5530" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* タブレット用ニュースグリッド */
@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* デスクトップ用ニュースグリッド */
@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }
}

.news-item {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(44, 85, 48, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-item:hover::before {
    opacity: 1;
}

.news-item:hover {
    transform: translateY(-10px);
    border-color: rgba(44, 85, 48, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(10%) contrast(1.05);
}

.news-item:hover .news-image img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.1);
}

.news-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* タブレット用ニュースコンテンツ */
@media (min-width: 768px) {
    .news-content {
        padding: 25px;
    }
}

/* デスクトップ用ニュースコンテンツ */
@media (min-width: 1024px) {
    .news-content {
        padding: 30px;
    }
}

.news-date {
    color: #1a3a21;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.4rem;
    margin: 15px 0;
    color: #333;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.7;
    font-weight: 300;
}

/* ABOUT SECTION - モバイルファースト */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

/* タブレット用アバウト */
@media (min-width: 768px) {
    .about-content {
        gap: 40px;
    }
}

/* デスクトップ用アバウト */
@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.about-features {
    display: none;
}

/* タブレット用アバウトフィーチャー */
@media (min-width: 768px) {
    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* デスクトップ用アバウトフィーチャー */
@media (min-width: 1024px) {
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 2.5rem;
    color: #2d4a34;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a3a21;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

.about-image {
    overflow: hidden;

}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SERVICE SECTION */
.service {
    background: #f8f9fa;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* タブレット用サービスグリッド */
@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* デスクトップ用サービスグリッド */
@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

.service-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* タブレット用サービスアイテム */
@media (min-width: 768px) {
    .service-item {
        padding: 35px 25px;
    }
}

/* デスクトップ用サービスアイテム */
@media (min-width: 1024px) {
    .service-item {
        padding: 40px 30px;
    }
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d4a34, #6fa76f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a3a21;
}

.service-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #2d4a34;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #3a6b49;
}

/* GALLERY SECTION - モバイルファースト */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* タブレット用ギャラリー */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 20px;
    }
}

/* デスクトップ用ギャラリー */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 1200px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ページヘッダー */
.page-header {
    background: linear-gradient(135deg, #1a3a21, #2d4a34);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* オンラインショップ */
.shop-filter {
    background: #f8f9fa;
    padding: 40px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #2d4a34;
    background: transparent;
    color: #2d4a34;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2d4a34;
    color: white;
}

.shop-products {
    padding: 60px 0;
}

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

.product-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2d4a34;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a3a21;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d4a34;
    margin-bottom: 15px;
}

/* レンタルプラン */
.lease-plans {
    padding: 80px 0;
}

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

.plan-item {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.plan-item:hover {
    transform: translateY(-5px);
}

.plan-item.featured {
    border: 3px solid #2d4a34;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d4a34;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a3a21;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d4a34;
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan-note {
    padding: 15px;
    background: rgba(237, 237, 234, 0.5);
    border-radius: 5px;
    margin: 0 15px 20px;
}

.plan-note p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.plan-note ul {
    list-style: none;
    margin: 10px 0;
}

.plan-note ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.plan-note small {
    color: #666;
    display: block;
    margin-top: 10px;
}

.plan-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i {
    color: #2d4a34;
    font-size: 1.2rem;
}

/* レンタル対象 */
.lease-target {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.target-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
}

.target-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d4a34, #6fa76f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.target-icon i {
    font-size: 2rem;
    color: white;
}

.target-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a3a21;
}

.target-item p {
    color: #666;
    line-height: 1.6;
}

/* レンタルフロー */
.lease-flow {
    padding: 80px 0;
}

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

.flow-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d4a34, #6fa76f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a3a21;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, #1a3a21, #2d4a34);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* 会社情報 */
.company-overview {
    padding: 80px 0;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

/* タブレット用会社概要 */
@media (min-width: 768px) {
    .overview-content {
        gap: 40px;
    }
}

/* デスクトップ用会社概要 */
@media (min-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .overview-text {
        order: 1;
    }
    
    .overview-image {
        order: 2;
    }
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d4a34;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-details {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.detail-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a3a21;
}

.detail-item p {
    color: #666;
    line-height: 1.6;
}

.ceo-message {
    padding: 80px 0;
}

.message-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.ceo-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a3a21;
}

.message-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ceo-signature {
    margin-top: 30px;
    text-align: right;
}

.ceo-signature p {
    font-weight: 500;
    color: #1a3a21;
}

.access {
    background: #f8f9fa;
    padding: 80px 0;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.access-details p {
    margin-bottom: 10px;
    color: #666;
}

.map-placeholder {
    background: #ddd;
    height: 300px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* お問い合わせフォーム */
.contact-form {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-element {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a3a21;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d4a34;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: #2d4a34;
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.info-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d4a34, #6fa76f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a3a21;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a3a21;
    margin: 0;
}

.faq-question i {
    color: #2d4a34;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* フッター */
.footer {
    background: #1a3a21;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    text-align: center;
}

/* タブレット用フッター */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 35px;
        text-align: left;
    }
}

/* デスクトップ用フッター */
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d4a34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #6fa76f;
}

.footer-bottom {
    border-top: 1px solid #2d4a34;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* タッチデバイス用のスムーズスクロール */
@media (hover: none) and (pointer: coarse) {
    * {
        scroll-behavior: smooth;
    }
    
    .hero-buttons {
        gap: 20px;
    }
    
    .btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .gallery-item,
    .news-item,
    .service-item {
        touch-action: manipulation;
    }
}

/* 追加のモバイル最適化 */
@media (max-width: 480px) {
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .news-content,
    .service-item,
    .plan-item {
        padding: 15px;
    }
}
