/* info.php用のスタイル */

/* ヒーローセクション */
.info-hero {
    position: relative;
    height: 30vh;
    background-color: var(--bg-gray);
    overflow: hidden;
}

.info-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.info-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.info-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
}

/* 情報カード */
.info-section {
    padding: 5rem 0;
    background-color: var(--bg-gray);
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.info-card-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 1rem;
}

.info-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.info-item-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-note {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #d32f2f;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.info-note p {
    position: relative;
    margin-bottom: 0.5rem;
}

.info-note p:before {
    content: "!";
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 1.2rem;
    height: 1.2rem;
    background-color: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* 地図 */
.info-map-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-map {
    width: 100%;
    height: 400px;
    margin-top: 1rem;
}

.info-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .info-hero {
        height: 25vh;
    }
    
    .info-hero-title {
        font-size: 2rem;
    }
    
    .info-hero-subtitle {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card-title {
        font-size: 1.5rem;
    }
    
    .info-item-text {
        font-size: 1rem;
    }
    
    .info-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .info-hero {
        height: 20vh;
    }
    
    .info-hero-title {
        font-size: 1.5rem;
    }
    
    .info-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-card-title {
        font-size: 1.3rem;
    }
    
    .info-map {
        height: 250px;
    }
} 