/* style.css */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.logo img {
    max-width: 250px;
    height: auto;
}

main {
    padding: 20px;
}

h1, h2, h3 {
    color: #1a5e1a; /* 竹の色のような緑 */
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.2rem;
}

section {
    margin-bottom: 40px;
}

.hero {
    position: relative;
    text-align: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    width: 90%;
}

.hero-text h1 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff;
}

.hero-text p {
    font-size: 1rem;
    color: #fff;
    margin: 0;
}

.button {
    display: inline-block;
    background-color: #1a5e1a;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro p, .attraction p, .features p, .curriculum p, .instructor p, .materials p, .support p, .pricing p, .targets p, .location p {
    font-size: 1rem;
    text-align: justify;
    padding: 0 10px;
}

.image-container {
    text-align: center;
    margin-top: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.final-message {
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.curriculum ul {
    list-style-type: none;
    padding: 0;
}

.curriculum li {
    background-color: #e6f3e6;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 5px;
}

.instructor-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-image img {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.instructor-text {
    margin-top: 20px;
}

.materials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.material-item {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.material-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.material-item p {
    margin-top: 10px;
    font-weight: bold;
}

.pricing-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.targets ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.targets li {
    margin-bottom: 10px;
}

.badge-container {
    text-align: center;
    margin-top: 20px;
}

.badge-container img {
    max-width: 150px;
    height: auto;
}

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

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a5e1a;
    color: #fff;
    margin-top: 40px;
}