* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #3e3b34;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.hero {
    background-image: url('bg.jpg'); /* ここにあなたのヒーロー画像のURLを入れてください */
    background-size: cover;
    background-position: center;
    height: 400px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 8px;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta {
    padding: 10px 20px;
    background-color: #c39c6e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.about {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.text-box {
  max-width: 300px;   /* ← 好きな幅に変更 */
  margin: 0 auto;     /* 中央寄せ */
}

.text-box p {
  text-align: left;
  line-height: 1.9;   /* 読みやすさUP */
}
footer {
    background-color: #3e3b34;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1em;
}
