@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Yuji+Boku&family=Yuji+Syuku&display=swap');

p, span, h1, h2, h3, div{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 4;
}

.hero-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero-text {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5em;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    color: white;
    z-index: 2;
}

.scroll-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-icon {
    color: white;
    opacity: 0.8;
}

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

/* Swiperスライダーセクション */
.news-swiper-hero-section {
    width: 100%;
    background: #f8f9fa;
    padding: 60px 0;
    overflow: hidden;
}

.news-swiper-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.news-swiper {
    width: 100%;
    /* padding: 0 20px; */
}

.news-swiper .swiper-slide {
    width: auto;
    height: 400px;
    transition: all 0.3s ease;
}

/* チラ見せ効果のためのスライドスタイル */
.news-swiper .swiper-slide {
    opacity: 0.6;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.news-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.news-swiper .swiper-slide-prev,
.news-swiper .swiper-slide-next {
    opacity: 0.8;
    transform: scale(0.95);
}

.news-swiper-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.news-swiper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

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

.news-swiper-card:hover .news-swiper-image img {
    transform: scale(1.05);
}

.news-swiper-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

.news-swiper-content {
    position: relative;
}

.news-swiper-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.news-swiper-meta .news-date {
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
}

.news-swiper-meta .news-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.news-swiper-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: white;
}

.news-swiper-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-swiper-title a:hover {
    color: #ffd700;
}

.news-swiper-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-swiper-tags .news-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.news-swiper-tags .new-tag {
    background: rgba(255, 107, 107, 0.9);
    color: white;
    animation: pulse 2s infinite;
}

.news-swiper-tags .limited-tag {
    background: rgba(255, 167, 38, 0.9);
    color: white;
}

/* Swiperパaginationのカスタマイズ */
.news-swiper .swiper-pagination {
    bottom: -40px;
}

.news-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #007cba;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.news-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007cba;
    transform: scale(1.2);
}

/* お知らせスライダー スタイル */
.news-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-slide {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    /* margin: 0 10px; */
    overflow: hidden;
}

.news-slide:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-slide-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
}

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

.news-slide:hover .news-slide-image img {
    transform: scale(1.05);
}

.news-slide-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-slide-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.news-date {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.news-category {
    background: #007cba;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.news-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.new-tag {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    animation: pulse 2s infinite;
}

.limited-tag {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Slick Slider カスタムスタイル */
.news-slider .slick-prev,
.news-slider .slick-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.news-slider .slick-prev:hover,
.news-slider .slick-next:hover {
    background: #007cba;
    color: white;
    transform: scale(1.1);
}

.news-slider .slick-prev {
    left: -25px;
}

.news-slider .slick-next {
    right: -25px;
}

.news-slider .slick-prev:before,
.news-slider .slick-next:before {
    display: none;
}

/* セクション共通スタイル */
.news-slider-section,
.news-list-section {
    margin: 40px 0;
}

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

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.news-more-link {
    text-align: center;
    margin-top: 30px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #007cba;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
}

.btn-more .arrow {
    transition: transform 0.3s ease;
}

.btn-more:hover .arrow {
    transform: translateX(3px);
}

/* お知らせ一覧グリッド */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.news-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.news-card-content {
    padding: 20px;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.news-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: #007cba;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.no-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f5f5f5;
    color: #999;
}

.no-thumbnail-text {
    font-size: 14px;
    font-weight: 500;
}

.no-news {
    text-align: center;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
    padding: 40px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo {
        top: 20px;
        left: 20px;
    }
    
    .hero-logo img {
        max-width: 120px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .news-swiper-hero-section {
        padding: 40px 0;
    }
    
    .news-swiper {
        /* padding: 0 15px; */
    }
    
    .news-swiper .swiper-slide {
        height: 240px;
    }
    
    .news-swiper-overlay {
        padding: 30px 20px 20px;
    }
    
    .news-swiper-title {
        font-size: 18px;
    }
    
    .news-slider {
        /* padding: 15px; */
        margin: 0 10px;
    }
    
    .news-slide {
        flex-direction: column;
        margin: 0 5px;
    }
    
    .news-slide-image {
        flex: none;
        height: 200px;
        border-radius: 8px 8px 0 0;
    }
    
    .news-slide-image img {
        height: 200px;
    }
    
    .news-slide-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
    .news-slider .slick-prev,
    .news-slider .slick-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .news-slider .slick-prev {
        left: -20px;
    }
    
    .news-slider .slick-next {
        right: -20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-logo {
        top: 15px;
        left: 15px;
    }
    
    .hero-logo img {
        max-width: 100px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .news-swiper-hero-section {
        padding: 30px 0;
    }
    
    .news-swiper {
        /* padding: 0 10px; */
    }
    
    .news-swiper .swiper-slide {
        height: 200px;
    }
    
    .news-swiper-overlay {
        padding: 25px 15px 15px;
    }
    
    .news-swiper-title {
        font-size: 16px;
    }
    
    .news-slider {
        /* padding: 10px; */
        margin: 0 5px;
    }
    
    .news-slide {
        margin: 0 2px;
    }
    
    .news-slide-content {
        padding: 12px;
    }
    
    .news-slide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .news-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .news-slider .slick-prev,
    .news-slider .slick-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .news-slider .slick-prev {
        left: -17px;
    }
    
    .news-slider .slick-next {
        right: -17px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card-content {
        padding: 15px;
    }
}

/* Swiperスライダーのナビゲーションボタン */
.news-swiper .swiper-button-next,
.news-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-swiper .swiper-button-next:hover,
.news-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.news-swiper .swiper-button-next::after,
.news-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-swiper .swiper-button-next,
    .news-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .news-swiper .swiper-button-next::after,
    .news-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .news-swiper .swiper-button-next,
    .news-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .news-swiper .swiper-button-next::after,
    .news-swiper .swiper-button-prev::after {
        font-size: 14px;
    }
} } 
