/* 基本設定 */
body {
    font-family: 'Noto Serif JP Medium';
    margin: 10px 150px; /* 上部を10px、左右を100pxに設定 */
    padding: 50px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー (ヒーローセクション) */
.hero {
    background-image: url("images/sunhills02.jpg");
    background-size: 100%; /* ズームに合わせて画像が拡大縮小する */
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* オーバーレイで文字を見やすく */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn-scroll {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-scroll:hover {
    background-color: #d35400;
    text-decoration: none;
}

/* 注目ポイントセクション */
.features-section {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; /* 画像間のスペースを40pxに設定 */
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 250px;
    height: 250px;
    margin-bottom: 5px;
    background-color:#a8abad; /* アイコンの背景色 */
    padding: 5px;
    border-radius: 5%;
    /* 実際には、アイコン画像を用意してください */
    /* 例えば、SVGやFont Awesomeを使うと良いでしょう */
}

.feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95em;
    color: #555;
}

/* お問い合わせセクション */
.contact-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2ecc71;
    text-decoration: none;
}

/* フッター */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    font-size: 0.9em;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1em;
    }

    .features-section h2, .contact-section h2 {
        font-size: 2em;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
.toi {color: #2c3e50;
    font-size: 0.9em;
}
