/* =========================================
   Base Styles
   ========================================= */
/* 背景キャンバスのスタイル */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 最背面に配置 */
    pointer-events: none;
}

/* =========================================
   Profile Card Styles
   ========================================= */

/* コンテナ：背景色は透明にしてcanvasを見せる */
.profile-container {
    padding: 60px 20px;
    background-color: transparent; /* ここを変更（元は #fff9f0） */
    display: flex;
    justify-content: center;
    align-items: center; /* 画面中央寄せ */
    /* min-height: 100vh; */   /* 画面いっぱいに広げる（不具合の原因） */
    box-sizing: border-box;
}
/* orange_style.css の末尾などに追加 */
@media (max-width: 768px) {
    .profile-container {
        min-height: auto; /* 高さを中身に合わせる */
        padding: 40px 15px; /* 余白もスマホ用に少し詰める */
    }
    
    .profile-card-horizontal {
        padding: 45px 20px 25px; /* カード内の余白も微調整 */
    }
}

.profile-card-horizontal {
    background: #ffffff;
    border: 4px solid #ffe0b2; /* オレンジ系の枠線 */
    border-radius: 25px;
    padding: 55px 35px 35px;
    max-width: 1300px;
    width: 100%;
    position: relative;
    box-shadow: 10px 10px 0px #ffcc80; /* オレンジのベタ影 */
}

/* ラベル（項目名）：オレンジのふせん風 */
.label {
    display: inline-block;
    position: relative;
    background: #ff9800; /* 鮮やかなオレンジ */
    color: #fff;
    padding: 4px 15px 4px 25px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 5px 15px 15px 5px;
    margin-bottom: 12px;
    box-shadow: 3px 3px 0px #ffe0b2;
}

.label::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* 項目ごとの区切り：オレンジのドット */
.profile-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
    border-left: 3px dotted #ffcc80; 
}

/* 内容（バリュー）：ノートの罫線もオレンジ系に */
.value {
    display: block;
    color: #5d4037; /* 濃いブラウンで読みやすく */
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0 5px 10px 5px;
    /* 文字の後ろに薄いオレンジの横線を引く */
    background-image: linear-gradient(#fff3e0 1px, transparent 1px);
    background-size: 100% 1.8em;
}

/* タイトル：ステッカー風オレンジ */
.profile-title {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    background: #ffb74d;
    color: white;
    padding: 10px 40px;
    border-radius: 12px;
    font-size: 1.3rem;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ffb74d;
    margin: 0;
    white-space: nowrap;
}

/* マスキングテープ：補色の黄色系でアクセント */
.mashing-tape {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 130px;
    height: 35px;
    background: rgba(255, 235, 59, 0.5); /* 元気なイエローテープ */
    transform: rotate(-4deg);
    border-left: 3px dotted #fff;
    border-right: 3px dotted #fff;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
