* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background: #f9f9f9;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #222;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


.logo a {
    color: #fff;
    text-decoration: none;
}

nav a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: bold;
}

section {
    padding: 2rem 2rem;
    max-width: 800px;
    margin: auto;
}

.hero {
    text-align: center;
    background: darkorange;
    color: white;
    padding: 4rem 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
  
.hero-title img {
    height: 160px; /* 適宜調整 */
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: #fff;
}
/*
@media (max-width: 600px) {
    nav a {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}
*/
