.profile-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
    color: #333;
    font-family: sans-serif;
}

h1 { border-bottom: 2px solid #333; padding-bottom: 10px; }
h2 { font-size: 1.2rem; margin-top: 30px; color: #555; }

.contact-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

/* ==========================================
   フッターエリアの装飾とリッチな動き
   ========================================== */
.guide-footer {
    text-align: center;
    padding: 50px 0;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

/* 運営テキスト */
.footer-copy {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* リンクを囲むディブ */
.footer-link-item {
    margin-bottom: 10px;
}

/* 🔗 フッターのリンク単体の設定（ここから動きをつけます） */
.footer-link {
    color: #888888;
    font-size: 0.8rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
    
    /* 文字色がフワッと変わる時間設定 */
    transition: color 0.25s ease;
}

/* ✨ リンクの下線をアニメーションさせるための下準備（透明な線を作っておく） */
.footer-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0); /* 最初は幅をゼロにして隠す */
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #333333; /* ホバー時に出る線の色 */
    transform-origin: bottom right;
    /* 線が伸びる滑らかさの設定 */
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 🚀 カーソルを合わせた（ホバー）時の動き */
.footer-link:hover {
    color: #333333; /* 文字色を濃くしてアクティブ感を出す */
}

.footer-link:hover::after {
    transform: scaleX(1); /* 線を左から右へシャキッと100%伸ばす */
    transform-origin: bottom left;
}

.button-wrapper {
    text-align: center;
    margin: 40px 0; /* 上下の間隔をここで調整 */
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px; /* 横幅を確保してバランスを調整 */
    text-decoration: none;
    color: white;
    border-radius: 15px;
    box-shadow: 0 6px 0 rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    width: fit-content;
}

.btn-law { background: linear-gradient(135deg, #34495e, #2c3e50); }

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 20px;
}

.feature-title {
    display: block; /* これでbrなしでも改行される */
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.feature-desc {
    display: block;
    color: #555;
    font-size: 0.95em;
}