body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    margin-bottom: 50%;
    box-sizing: border-box;
    background-color: #f4f4f4; /* 軽やかでクリーンな背景色 */
}

header {
    background-color: #d9534f; /* 強い印象の赤色 */
    color: white;
    text-align: center;
    padding: 20px;
}

h1 {
    font-family: "Arial Black", "Helvetica Bold", sans-serif;
    font-size: 20px; /* 大きなフォントサイズ */
}

section {
    margin: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background-color: white; /* 明るく読みやすい背景 */
}

#cta a {
    color: #ffc107; /* 引き立つ黄色 */
    text-decoration: none;
    font-weight: bold; /* 太字 */
}

footer {
    background-color: #d9534f; /* ヘッダーと同じ赤色 */
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
/* 以前のスタイルのコード */
.cta-button {
    display: block;
    width: 80%; /* ボタンの幅 */
    margin: 0 auto;
    padding: 15px 20px;
    text-align: center;
    background-color: #28a745; /* ボタンの背景色 */
    color: white; /* ボタンのテキスト色 */
    border-radius: 5px;
    text-decoration: none;
    font-size: 60px; /* テキストサイズ */
    font-weight: bold;
}

.cta-button:hover {
    background-color: #218838; /* ホバー時の背景色 */
}
/* 以降のスタイルのコード */

#floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; /* 追加: 右端も0に設定 */
    width: 90%;
    margin: auto; /* 追加: 自動マージンで中央揃え */
    background-color: #d9534f; /* 好みに応じて */
    color: white; /* テキスト色 */
    text-align: center;
    padding: 1px; /* 適宜調整 */
    z-index: 1000; /* 他の要素の上に表示 */
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* 画像をブロックレベル要素として扱う */
    margin: auto; /* 左右のマージンを自動にして中央揃えに */
}

.slideshow-container {
    width: 80%;
    max-width: 1000px;
    position: relative;
    border: 5px solid #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: auto;
}

#slideshow {
    width: 100%;
    height: auto;
    display: block;
}