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

.header-img {
    max-width: 100%;
    height: auto;
}

/* 口コミセクション */
.division {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: 20px;
    background-color: #fff;
}

.left {
    width: 40%;
}

.left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.right {
    width: 55%;
}

.review-card {
    background-color: #fafafa;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.review-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.review-images img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.post-button {
    display: block;
    width: 200px;
    margin: 40px auto;
    padding: 12px 20px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

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

/* 小さな画面サイズでの調整 */
@media (max-width: 768px) {
    .division {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
        margin-right: 0;
    }
}

/* フォームのリンク */
.link-section {
    text-align: center;
    margin-top: 20px;
}

.link-section a {
    padding: 12px 20px;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
}

.link-section a:hover {
    background-color: #0056b3;
}

/* フォームのスタイル */
form {
    width: 100%;
}

table {
    width: 100%;
    border-spacing: 10px;
}

td {
    padding: 8px;
}

input[type="text"],
input[type="date"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}