/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #ff69b4;
    --primary-dark: #e05a9d;
    --primary-light: #ffb6c1;
    --secondary-color: #f8f0f4;
    --accent-color: #8a2be2;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #dddddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    padding: 15px 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.header-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

nav {
    background-color: var(--primary-color);
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 3px;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(255, 105, 180, 0.7), rgba(255, 105, 180, 0.7)), url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Intro Section */
.intro {
    padding: 60px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Schools Section */
.schools-container {
    padding: 60px 0;
}

.school-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.school-card:hover {
    transform: translateY(-5px);
}

.school-info {
    padding: 20px;
}

.school-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 10px;
}

.web-company {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: -10px;
    margin-bottom: 15px;
    font-style: italic;
}

.school-address, .school-tel {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.school-desc {
    margin-bottom: 20px;
}

.school-recommend {
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.school-recommend h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.school-recommend ul {
    padding-left: 20px;
    list-style-type: disc;
}

.school-recommend li {
    margin-bottom: 5px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Recommend Section */
.recommend {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.recommend-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.recommend-text {
    flex: 1 1 500px;
}

.recommend-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.recommend-text ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.recommend-text li {
    margin-bottom: 10px;
}

.recommend-img {
    flex: 1 1 300px;
}

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

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

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    flex: 1 1 300px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links {
    flex: 1 1 300px;
    margin-bottom: 30px;
}

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

.footer-links ul li a:hover {
    text-decoration: underline;
}

.footer-contact {
    flex: 1 1 300px;
    margin-bottom: 30px;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    nav ul li {
        margin: 5px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .school-info h3 {
        font-size: 1.3rem;
    }
    
    .recommend-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
}