/* ===============================
   RESET & BASE
=============================== */

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
    background: #fafafa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

main {
    width: 100%;
    overflow: hidden;
}

/* ===============================
   HEADER / LOGO
=============================== */

.rogo {
    text-align: center;
    margin-top: 40px;
}

.rogo p {
    font-size: 16px;
    color: #999;
    margin-bottom: 5px;
}

.rogo img {
    width: 180px;
}

/* ===============================
   HERO SECTION
=============================== */

.top_box {
    text-align: center;
    padding: 30px 20px;
}

.top_box h1 {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
}

.top_im {
    text-align: center;
}

.top_im img {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bral {
    background: linear-gradient(90deg, #00c3b9, #07d3a7);
    color: #fff;
    font-weight: 700;
    padding: 10px 0;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.mike {
    text-align: center;
    font-weight: 600;
    color: #04c796;
    margin: 15px 0 30px;
}

/* ===============================
   TITLE BLOCKS
=============================== */

.title {
    text-align: center;
    margin: 60px 0 20px;
}

.title p {
    font-weight: 700;
    color: #333;
    font-size: 1.4rem;
    position: relative;
}

.title span {
    color: #00c3b9;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===============================
   TEXT CONTENT
=============================== */

.setumei {
    background: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    margin: 0 auto 40px;
    max-width: 800px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.setumei p {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
}

.setumei span {
    color: #00b3a6;
    font-weight: 700;
}

/* ===============================
   IMAGE BANNER
=============================== */

.bana {
    text-align: center;
    margin: 30px 0;
}

.bana img {
    border-radius: 18px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

/* ===============================
   強調項目（報酬など）
=============================== */

.koumoku {
    background: #ffe9f1;
    color: #e75480;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 12px;
    margin: 40px auto 20px;
    max-width: 400px;
}

/* ===============================
   固定ボタン
=============================== */

.fixed-bottom-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.fixed-bottom-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    padding: 12px 18px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 160px;
}

.fixed-bottom-buttons .btn-line {
    background: linear-gradient(90deg, #00c300, #00d544);
}

.fixed-bottom-buttons .btn-line:hover {
    background: linear-gradient(90deg, #00d544, #00c300);
}

.fixed-bottom-buttons .btn-reserve {
    background: linear-gradient(90deg, #ff66a6, #ff3366);
}

.fixed-bottom-buttons .btn-reserve:hover {
    background: linear-gradient(90deg, #ff3366, #ff66a6);
}

.fixed-bottom-buttons img {
    width: 20px;
    height: 20px;
}

/* ===============================
   FOOTER
=============================== */

footer {
    background: #1e2d2f;
    color: #fff;
    text-align: center;
    padding: 40px 0 60px;
    margin-top: 60px;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

footer a:hover {
    color: #00c3b9;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 768px) {
    .title p {
        font-size: 1.2rem;
    }
    .setumei {
        padding: 20px 15px;
    }
    .fixed-bottom-buttons {
        flex-direction: row;
        justify-content: center;
        right: 0;
        left: 0;
        bottom: 10px;
    }
    .fixed-bottom-buttons a {
        width: 45%;
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}
