@charset "utf-8";

/* 全体の設定 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    
    /* ぴょこたんイエローの背景 */
    background-color: #fff9e6; 
    /* 白い水玉模様を追加 */
    background-image: radial-gradient(#ffffff 3px, transparent 3px);
    background-size: 30px 30px;
    
    color: #5d4a37; /* 文字色を少し柔らかい茶色に（ひよこ色と相性◎） */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    min-height: 100vh;
}

/* タイトル */
h1 {
    font-size: 1.4rem;
    color: #ff9900; 
    margin-bottom: 30px;
    text-shadow: 2px 2px 0px #fff; /* 文字に白縁をつけて読みやすく */
}

/* プロフィールセクション */
.profile-section img {
    border-radius: 50%; /* 正円にする */
    border: 5px solid #fff; /* 白い枠線 */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 軽い影 */
    object-fit: cover;
    width: 150px;
    height: 150px;
}

.profile-section p {
    margin-top: 15px;
    font-weight: bold;
    line-height: 1.6;
}

/* リンク集セクション */
.links-section {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    gap: 20px; /* ボタン同士の間隔 */
    width: 90%; /* スマホで見やすい幅 */
    max-width: 400px; /* パソコンで広がりすぎないように */
    margin-top: 30px;
}

/* リンクボタンの箱 */
.link-box {
    background-color: #fff;
    border-radius: 50px; /* カプセル型 */
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

/* ホバー（タップ）した時の動き */
.link-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* リンク内のロゴ画像サイズ */
.link-box img {
    height: 40px; /* ロゴの大きさを固定 */
    width: auto;
}
/* リンクボタンの箱（中身を左寄せにする設定に変更） */
.link-box {
    background-color: #fff;
    border-radius: 50px;    /* カプセル型に */
    padding: 12px 20px;
    display: flex;
    align-items: center;    /* 上下中央 */
    justify-content: flex-start; /* 左側にアイコンを置く */
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s; /* 動きをなめらかに */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);    /* ふわっとした影 [cite: 22] */
    border: none;           /* 黒い枠線はなし */
}

/* リンク内のロゴ画像 */
.link-box img {
    height: 45px;
    width: auto;
    margin-right: 15px;
}

/* リンク内の文字 */
.link-box span {
    font-size: 1.1rem;
    flex-grow: 1;
    text-align: center;     /* 文字をボタンの真ん中に寄せる */
    padding-right: 45px;    /* 左のアイコンと同じ分だけ右に余白を作ってバランスをとる */
}
.link-tiktok {
    border: 2px solid #000; /* TikTokらしい黒の細枠 */
}
.link-tiktok span {
    color: #000;
}

/* Amazonボタン：Amazonらしいオレンジをアクセントに */
.link-amazon {
    border: 2px solid #ff9900; /* Amazonオレンジの枠線 */
}
.link-amazon span {
    color: #5d4a37; /* 文字は全体の茶色に合わせて馴染ませる */
}

/* ホバーした時に少し色を濃くする演出 */
.link-tiktok:hover { background-color: #f0f0f0; }
.link-amazon:hover { background-color: #fff9e6; }
