/* /assets/css/index_style.css */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

nav a:hover {
    text-decoration: underline;
}

section {
    padding: 20px;
    margin: 20px auto; /* 中央揃え */
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 1024px; /* 最大幅を1024pxに設定 */
    width: 100%; /* 幅を100%に設定 */
}

/* 他のスタイルはそのまま保持 */

@media screen and (max-width: 1024px) {
    .header-image,
    section {
        width: 100%;
    }
}

section h2 {
    color: #333;
    font-size: 24px; /* フォントサイズを大きく */
    font-weight: bold; /* フォントを太く */
    margin-bottom: 15px; /* 下部のマージンを追加 */
    padding-bottom: 10px; /* 下部のパディングを追加 */
    border-bottom: 2px solid #007bff; /* 青い下線を追加 */
}

#plans > div {
    border: 0px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.plans-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.plan {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    width: 30%; /* 各プランの幅を調整 */
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

.join-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.join-button:hover {
    background-color: #0056b3;
}

.header-image {
    max-width: 1024px; /* 例: 1200px */
    height: auto;
    display: block;
    width: 100%;
    margin: 0 auto; /* 中央揃え */
}

@media screen and (max-width: [元の画像の幅]) {
    .header-image {
        width: 100%;
    }
}