/* ========================================
   フロントページ専用スタイル
   ======================================== */
.front-page {
    padding: 20px 0;
}

/* メインビジュアルスライダー */
.main-visual-section {
    width: 100%;
    margin-bottom: 0;
}

.main-visual-swiper {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    position: relative;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-visual-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* キャッチコピー */
.slide-catch-copy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    z-index: 10;
}

.catch-copy-text {
    color: var(--text-color-1);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* ページネーション（ドット） */
.main-visual-section {
    position: relative;
}

.main-visual-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
    z-index: 20;
}

.main-visual-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-color-1);
    opacity: 0.5;
    margin: 0 6px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-visual-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

.front-section-title {
    margin-bottom: 40px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
}

.front-section-title::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 8rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.1em;
    color: currentColor;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

.front-section-title > * {
    position: relative;
    z-index: 1;
}

.front-section-title.text-color-1 {
    border-left: 8px solid var(--secondary-color);
    color: var(--text-color-1);
}

.front-section-title.text-color-1::before {
    opacity: 0.18;
}

.front-section-title.text-color-2 {
    border-left: 8px solid var(--primary-color);
    color: var(--text-color-2);
}

.front-section-title.text-color-2::before {
    opacity: 0.08;
}

.front-section-title::before {
    font-size: 6rem;
}

@media (max-width: 768px) {
    .front-section-title::before {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .front-section-title::before {
        font-size: 3rem;
    }
}

/* Newsセクション */
.front-news-section {
    padding: 60px 0;
    background: var(--white);
}

/* Blogセクション */
.front-blog-section {
    padding: 60px 0;
    background: var(--light-gray);
}

/* Navigationセクション */
.front-navigation-section {
    padding: 60px 0;
    background: var(--primary-color);
}

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

.navigation-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navigation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navigation-link {
    display: block;
    text-decoration: none;
    padding: 40px 20px;
    text-align: center;
}

.navigation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.navigation-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color-2);
    margin: 0;
}

.navigation-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.navigation-card:hover .navigation-arrow {
    transform: translateX(5px);
}

/* Contactセクション */
.front-contact-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.front-contact-section .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color-2);
    margin-bottom: 30px;
}

.front-contact-section .line-button-section {
    margin-top: 0;
}

.front-contact-section .line-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #06C755;
    color: var(--text-color-1);
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.front-contact-section .line-button:hover {
    background-color: #05ae4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.front-contact-section .line-icon {
    margin-right: 10px;
    font-size: 1.5em;
}

.front-contact-section .line-text {
    line-height: 1;
}

.front-contact-section .line-id {
    font-size: 0.9rem;
    color: var(--text-color-2);
    margin-top: 10px;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .main-visual-swiper {
        height: 50vh;
        min-height: 300px;
    }
    
    .slide-catch-copy {
        padding: 30px 15px;
    }
    
    .catch-copy-text {
        font-size: 1.5rem;
    }
    
    /* Newsセクション */
    .front-news-section {
        padding: 40px 0;
    }
    
    /* Blogセクション */
    .front-blog-section {
        padding: 40px 0;
    }
    
    /* Navigationセクション */
    .front-navigation-section {
        padding: 40px 0;
    }
    
    .navigation-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .navigation-link {
        padding: 30px 15px;
    }
    
    .navigation-title {
        font-size: 1.3rem;
    }
    
    /* Contactセクション */
    .front-contact-section {
        padding: 40px 0;
    }
    
    .contact-message {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .main-visual-swiper {
        height: 40vh;
        min-height: 250px;
    }
    
    .slide-catch-copy {
        padding: 20px 10px;
    }
    
    .catch-copy-text {
        font-size: 1.2rem;
    }
    
    .contact-message {
        font-size: 1.1rem;
    }
    
    .front-contact-section .line-button {
        width: 100%;
        font-size: 1.1rem;
        padding: 12px 25px;
    }
}
