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

p{
margin-bottom:16px;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
:root {
    --kagoshima-blue: #4a90e2; /* 鹿児島の海をイメージ */
    --rose-pink: #ff6f91; /* バラをイメージ */
}

header::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), var(--kagoshima-blue, #4a90e2));
}

.idea:nth-child(odd) {
    border: 2px solid var(--rose-pink, #ff6f91);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-size: 1.4rem;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Header */
header {
    background: url('garden.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Call-to-Action Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a8b66;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #3a6b50;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: #f4a261;
}

.cta-button.secondary:hover {
    background-color: #e68a43;
}

/* Main Sections */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    margin-bottom: 100px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #4a8b66;
    text-align: center;
    font-weight: 600;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4a8b66;
    font-weight: 600;
}

/* Intro Section */
.intro {
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9, #e8f5e9);
    padding: 60px 20px;
    border-radius: 20px;
}

.intro-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.point {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.point:hover {
    transform: translateY(-10px);
}

.point .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f4a261;
}

.point h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Example Section */
.example {
    text-align: center;
}

.example-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.example-item {
    width: 100%;
    max-width: 800px; /* 各事例の幅を広げて見やすく */
    border-radius: 15px;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.example-item h3 {
    font-size: 1.8rem;
    color: #4a8b66;
    margin-bottom: 10px;
    font-weight: 600;
}

.example-item > p {
    font-family: 'Noto Sans JP', sans-serif;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.example-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2×2のグリッドで4枚表示 */
    gap: 20px;
}

.photo-item {
    text-align: center;
}

.photo-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.5s ease;
}

.photo-item img:hover {
    transform: scale(1.05);
}

.photo-item p {
    font-family: 'Noto Sans JP', sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}
/* Garden Ideas Section */
.garden-ideas {
    position: relative;
}

.ideas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.idea {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.idea:hover {
    transform: translateY(-10px);
}

.idea img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
}

.idea:hover img {
    transform: scale(1.05);
}

.idea ul {
    list-style: none;
    margin: 15px 0;
}

.idea ul li {
    margin-bottom:16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.idea ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f4a261;
}

.idea strong{
    color: #f4a261;
}

/* Closing Section */
.closing {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #f9f9f9, #e8f5e9);
    border-radius: 20px;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* FAQ Section */
.faq {
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9, #e8f5e9);
    padding: 60px 20px;
    border-radius: 20px;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-item details {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item summary {
    font-weight: 600;
    color: #4a8b66;
    cursor: pointer;
    padding: 10px 0;
}

.faq-item p {
    font-family: 'Noto Sans JP', sans-serif;
    color: #666;
    padding: 10px 0;
}

/* Contact Section */
.contact {
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #4a8b66;
}

.textbox,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}



.contact input:focus,
.contact textarea:focus {
    border-color: #4a8b66;
    outline: none;
}

.contact button {
    width: 100%;
    padding: 15px;
    background-color: #4a8b66;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact button:hover {
    background-color: #3a6b50;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */


/* お問い合わせセクションの会社情報 */
.company-info {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.company-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #4a8b66;
}

.company-info p {
    font-size: 0.9rem;
    margin: 5px 0;
    color: #333;
}

.company-info a {
    color: #4a8b66;
    text-decoration: none;
}

.company-info a:hover {
    text-decoration: underline;
}

#footer{
    padding: 50px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    font-family: 'Noto Sans JP', sans-serif;
 display: flex;
  justify-content: center;
        width:100%;
}

#footer h3{
font-size:26px;
}

.footer-content {
    width:1000px;
text-align: center;
}

.local-message {
    font-size: 1.2rem;
    font-weight: 300;
    color: #4a8b66;
    margin-bottom: 40px;
    line-height: 1.6;
}

.offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px; /* 間隔を狭く調整 */
    justify-items: center;
    margin-bottom: 40px;
}

.office-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
text-align: left;
}

.office-card h3 {
    font-size: 1.3rem;
    color: #4a8b66;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.office-card p {
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.office-card a {
    color: #4a8b66;
    text-decoration: none;
    margin-left: 5px;
}



/* 電話番号ボタンのスタイル */
.phone-button {
    display: inline-flex;
    align-items: center;
    background-color: #4a8b66;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight:700;
    transition: background-color 0.3s ease;
    margin-left: 0 !important; /* アイコンとの間隔調整 */
font-size:20px;
}

.phone-button:hover {
    background-color: #3a6b50;
    text-decoration: none !important;
}

.business-info, .certifications {
    font-size: 0.9rem;
    color: #666;
}

.certifications {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 10px;
}

/* 公式ホームページボタン */
.homepage-link {
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    background-color: #4a8b66;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3a6b50;
}

.copyright {
    font-size: 0.85rem;
    color: #777;
    margin-top: 20px;
}

.confirm-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirm-container h2 {
    font-size: 1.8rem;
    color: #4a8b66;
    margin-bottom: 20px;
}

.confirm-content {
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.confirm-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.confirm-content p strong {
    display: inline-block;
    width: 120px;
    font-weight: 600;
    color: #4a8b66;
}

.confirm-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.back-button {
    display: inline-block;
    background-color: #ccc;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #bbb;
}

.cta-button {
    display: inline-block;
    background-color: #4a8b66;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3a6b50;
}

.lead{
    text-align: center;
}


@media screen and (min-width:768px){
  .sm{
    display: none;
  }
  .pc{
    display: block;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        height: 400px;
    }

    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1.1rem;
    }

    .example-photos {
        grid-template-columns: 1fr; /* モバイルでは1列に */
    }

    .photo-item img {
        height: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

.intro p,.example-item p,.lead,.closing p,.faq-item summary,.faq-item p,contact p {
    text-align: left;
}




    .intro-points {
        grid-template-columns: 1fr;
    }

.local-message {
        font-size: 1rem;
    }

    .offices {
        grid-template-columns: 1fr;
        gap: 15px; /* モバイルでも間隔を調整 */
    }

    .office-card {
        max-width: 100%;
    }

    .office-card h3 {
        font-size: 1.2rem;
    }

    .office-card p {
        font-size: 0.9rem;
    }

    .phone-button {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

.sm{
    display: block;
}

  .pc{
    display: none;
  }

h2 {
    font-size:30px;
}


}


