@charset "UTF-8";

/* 丸ボタンの位置（必要なら調整） */
.floating-btn {
    position: fixed;
    top: 170px;
    left: 30px;
    cursor: pointer;
    z-index: 9999;
    display: inline-block;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

/* 丸ボタン（ふわふわする部分） */
.circle-btn {
    width: 220px;
    height: 220px;
    background: #ffff00;
    border-radius: 50%;
    display: flex;
    
    flex-direction: column;  
    justify-content: center;   /* ★ 上下中央にする！ */
    align-items: flex-start;    /* ★ 左寄せ維持 */

    padding: 20px 20px 20px 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    animation: float 3s ease-in-out infinite;
    box-sizing: border-box;
    position: relative;
}

/* タイトル部分 */
.circle-text-group {
    display: flex;
    flex-direction: column;
    gap: 4px;    /* テキスト1と2の間隔 */
}

.circle-text1 {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    color: #0000cd;
    margin: 0;
}

/* 説明文部分 */
.circle-text2 {
    text-align: left;
    line-height: 1.2;
    font-size: 14px;
    color: #000;
    margin-top: 2px;
    margin-bottom: 10px;
}

/* リンクそのもの */
.highlight-link {
    text-decoration: none;  /* デフォルトの青リンク線を消す */
}

/* 赤文字部分（既存の highlight-red を上書き強化） */
.highlight-red {
    color: #ff0000;
    text-decoration: underline;
    font-weight: bold;
    display: inline-block;
    margin-top: 6px; /* ← 募集中！との間隔 */
}
/* リンクそのもの */
.highlight-link {
    text-decoration: none;  /* デフォルトの青リンク線を消す */
}

/* 赤文字部分（既存の highlight-red を上書き強化） */
.highlight-red {
    color: #ff0000;
    text-decoration: underline;
    font-weight: bold;
    display: inline-block;
    margin-top: 6px; /* ← 募集中！との間隔 */
}



/* ホバーで全体がちょっと拡大 */
.floating-btn:hover {
    transform: scale(1.08);
}

/* ＝＝＝＝ サムネイル ここから ＝＝＝＝ */

/* サムネイルリンク：丸の右上に固定 */
.btn-thumb-link {
    position: absolute;
    top: -18px;   /* 位置はお好みで微調整OK */
    right: -10px;
    display: block;
}

/* サムネ自体 */
.btn-thumb {
    display: block;
    width: 80px;                  /* ★ 大きさはここで調整 */
    transform: rotate(8deg);
    transition: transform 0.25s ease;
}

/* 画像の見た目 */
.btn-thumb img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

/* ホバーでちょっと拡大 */
.floating-btn:hover .btn-thumb {
    transform: rotate(8deg) scale(1.15);
}

/* ＝＝＝＝ ふわふわアニメーション ＝＝＝＝ */

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
