/* =================================================
   基本リセット & 共通設定
   ================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #333; /* ページ全体のベースは黒 */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* 画像の下隙間を消し、レスポンシブ対応にする */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* =================================================
   レイアウト（シングルカラム 850px）
   ================================================= */
.container {
    max-width: 850px;
    margin: 0 auto;
    background-color: #fff; /* コンテンツエリアは白背景 */
    color: #333;            /* 白背景内の基本文字色は濃いグレー */

}

/* ヘッダー：ロゴを左上に配置（背景は黒） */
.header {
    background-color: #000;
    padding: 30px 20px;
    text-align: left;
}

.logo img {
    width: 250px; /* ロゴのサイズに合わせて調整してください */
    height: auto;
}

/* メインコンテンツエリア */
.content {
    background-color: #fff;
}

.section {
    padding: 0; /* 画像メインのため余白なし */
    border-bottom: 1px solid #eee;
}

/* フッター（背景は黒に戻す） */
.footer {
    background-color: #000;
    color: #888;
    padding: 60px 0;
    text-align: center;
    font-size: 14px;
}

/* =================================================
   PC用：右上固定ボタン
   ================================================= */
.fixed-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.btn-primary {
    display: block;
    background-color: #06C755; /* LINEカラー */
    color: #FFF;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.8;
}

/* =================================================
   コンテンツ内：光るボタン (s-btn1)
   ================================================= */
.s-btn1 a {
    display: block;
    width: 85%;
    max-width: 550px;
    background: #06C755;
    box-shadow: 0 5px 0 0 #04913e; /* 立体感 */
    text-align: center;
    padding: 20px 10px;
    color: #ffffff;
    text-decoration: none;
    margin: 50px auto;
    border-radius: 50px;
    font-weight: bold;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
}

.s-btn1 a:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0 0 #04913e;
}

/* 光のエフェクトアニメーション */
.s-btn1 a::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -150%;
    width: 30%;
    height: 300%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: shine 3.5s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

/* =================================================
   テキスト装飾クラス（白背景用）
   ================================================= */

.text-white {
    color: #000000;
    font-size: 2.3rem;
    font-weight: bold;
    display: inline-block;
}

.text-accent-red {
    color: #ee0000;
    font-size: 4.5rem;
    font-weight: bold;
    display: inline-block;
}
.text-accent-red2 {
    color: #ee0000;
    font-size: 6.5rem;
    font-weight: bold;
    display: inline-block;
}
.text-bg-green {
    background-color: #06C755;
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 1px;
    display: inline-block;
	width: 80%;
	line-height: normal;
}

.text-bg-yellow-red {
	background: linear-gradient(transparent 50%, yellow 10%);
    color: #ee0000;
    font-size:7.0rem;
    font-weight: bold;
    padding: 0px 15px;
    border-radius: 1px;
    display: inline-block;
	width: 80%;
}

/* =================================================
   スマホ対応（レスポンシブ）
   ================================================= */
.mobile-fixed-footer {
    display: none; /* デフォルト非表示 */
}

@media (max-width: 768px) {
    /* PC用右上ボタンを隠す */
    .fixed-nav {
        display: none;
    }

    /* スマホ用下部ボタンを表示 */
    .mobile-fixed-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9); /* 黒透過背景 */
        padding: 12px 20px;
        z-index: 10000;
        backdrop-filter: blur(8px);
    }

    .btn-mobile {
        display: block;
        background-color: #06C755;
        color: #fff;
        text-align: center;
        text-decoration: none;
        padding: 15px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
    }

    /* ロゴをスマホでは中央寄せに */
    .header {
        text-align: center;
        padding: 20px 0;
    }
    .logo img {
        width: 180px;
        margin: 0 auto;
    }

    /* コンテンツのpadding調整 */
    .container {
        padding-bottom: 90px; /* 固定ボタンに被らないよう余白を確保 */
    }

    /* 装飾テキストのサイズ微調整 */
    .text-accent-red2,.text-white,.text-accent-red, .text-bg-green, .text-bg-yellow-red {
        font-size: 1.3rem;
    }

.text-white {
    color: #000000;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
}

.text-accent-red {
    color: #ee0000;
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
}
.text-accent-red2 {
    color: #ee0000;
    font-size: 4.5rem;
    font-weight: bold;
    display: inline-block;
}
.text-bg-green {
    background-color: #06C755;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 1px;
    display: inline-block;
	width: 80%;
	line-height: normal;
}

.text-bg-yellow-red {
	background: linear-gradient(transparent 50%, yellow 10%);
    color: #ee0000;
    font-size:5.0rem;
    font-weight: bold;
    padding: 0px 15px;
    border-radius: 1px;
    display: inline-block;
	width: 80%;
}


}