/* normal-content.css - リフトアップ効果修正版 */
.normal-container {
    padding: 0;
    margin: 0;
    text-align: center;
    background-color: #FFFFFF;
    position: relative; /* 固定背景の上に被さるように配置 */
    /* section-contentのz-indexが100なので、それより高くして文字の上に被せる */
    z-index: 200; 
    
    /* 上部の角を丸くする */
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    
    /* 浮き上がっているような影をつける */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    
    /* 最小の高さを確保 */
    min-height: 50vh;
    padding-bottom: 50px;
}

.normal-container > div {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    padding-top: 20px;
    box-sizing: border-box;
}

.normal-title {
    font-size: 2.5rem;
    margin-top: 100px; /* 余白調整 */
    margin-bottom: 30px;
    color: #2c5530;
    text-align: center;
}

.info1, .info2, .access {
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info1 p, .info2 p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.access {
    text-align: center;
}

.access p {
    margin-bottom: 8px;
    text-align: center;
}

.access iframe {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin-top: 20px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 中のコンテンツを中央寄せ */
.normal-container .info1,
.normal-container .info2,
.normal-container .access > div {
    margin: 0 auto;
    box-sizing: border-box;
}

.info-link {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

.info-link:hover {
    text-decoration: underline;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .normal-container {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .normal-container > div {
        padding: 30px 15px;
    }
    
    .normal-title {
        font-size: 2rem;
        margin-top: 60px;
        margin-bottom: 15px;
    }
    
    .info1 p, .info2 p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .access iframe {
        height: 300px;
        margin-top: 15px;
    }
}

/* さらに隙間を減らすコンパクト版 */
@media (max-width: 480px) {
    .normal-container > div {
        padding: 20px 10px;
    }
    
    .normal-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 12px;
    }
    
    .info1 p, .info2 p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .access iframe {
        height: 250px;
        margin-top: 12px;
    }
}