/* A Living ON! 画像固定 */
#header-bg {
    /* HTMLの<img>タグを排除し、背景画像として設定 */
    background-image: url('img/title_L.png'); 
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 50%; /* 画像の高さ固定 (適宜調整) */

    width: 53%;
    height: 53%;
    position: absolute;
    top: 0;
    left: 0;
}


#info {
        /* 幅を画面全体に合わせ、中央寄せにする */
        width: 90vw; 
        margin-left: auto;
        margin-right: auto;
        
        /* 垂直位置を画面の高さに対する割合で調整 */
        margin-top: 15vh;
    padding:20px;
    width: 350px;
    background-color: #babaffa9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    font-family: "SF Pro", "Hiragino Sans", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.title-kana {
    width: 280px; /* 例: スマホでは幅280px */
    height: auto;
}




/* --- 大きなオレンジの真円を生成 --- */

#description-area {
    /* ユーザー定義のサイズと形状 */
    width: 400px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--bg-color-desc);
    
    /* ***** 真円の配置設定 ***** */
    position: fixed; /* 親要素 #container を基準に配置 */
    bottom: 0;
    bottom: -230px; /* 例: 高さ800pxのうち600px分を下に隠す → 100px分だけ頭が出る */

    /* 水平方向の中央揃え */
    left: 50%;
    transform: translateX(-50%); 
    
    /* 垂直方向の配置（真円の頭を出す） */
    /* 真円の高さ (800px) のうち、頭となる部分だけを #container 内に表示 */
    
    /* 他の要素との重なり順を調整 */
    z-index: 5;
}

/* 説明文テキストのスタイル */
#description-text {
    position: relative;
    text-align: center;
    z-index: 2; 
    color: var(--color-dark);
    font-size: clamp(14px, 2vw, 20px);
    font-family: 'Hiragino Sans', 'Meiryo', sans-serif;
    margin-bottom: 20px; /* 下からのマージンをピクセル指定で固定 */
    padding: 45px;
    width: 80%; 
}


/* --- 丸ボタン全体を保持するコンテナ --- */
#circle-container {
    position: absolute; 

    /* width: 65vh; の維持 */
    max-width: 100vh;
    /* 高さを確保することで、align-items: center; が効くようになる */
    height: 20vh; /* 例として高さを30vhに設定 (適宜調整してください) */

    /* 水平方向の中央揃えが必要 */
    left: 50%;
    transform: translateX(-50%); /* 中央寄せの維持 */

    /* 大きな円のカーブに沿うように、垂直位置を調整 */
    bottom: 100px; 
    
    display: flex;
    justify-content: space-around; 
    
    /* 垂直方向の中央揃え (これが効くようになる) */
    align-items: center; 
    
    z-index: 10; 
    position:fixed
}



/* --- 各丸ボタンの定義 --- */
.circle {
    /* サイズを固定値で定義し、真円を維持 */
    width: 65px; 
    height: 65px;
    background-color: var(--bg-color-desc);
    border-radius: 50%; /* 真円を保証 */
    
    /* ホバー時のアニメーション設定 */
    transition: transform 0.3s ease-out;
    cursor: pointer;
    
    /* 中の画像を中央配置 */
    display: flex;
    justify-content: center;
    align-items: center;
}

#circle1 {
    margin-top:90px;
    margin-right: 7px;
    margin-left:7px;
}

#circle2 {
    margin-top: 30px;
    margin-right: 0px;
    margin-left:0px;
}

#circle3 {
    margin-top: 0px;
    margin-right: 10px;
    margin-left:10px;
}

#circle4 {
    margin-top: 30px;
    margin-right: 3px;
    margin-left:3px;
}

#circle5 {
    margin-top: 90px;
    margin-right: 7px;
    margin-left:7px;
}
