/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9fafb;
    color: #333;
    margin: 0;
    padding: 0;
    max-width: 1200px;
    margin: auto;
}


h1, h2, h3 {
    color: #333;
    text-align: center;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background-color: #fff8e1;
    color: #333;
    text-align: center;
    padding: 40px 20px;
}

.hero-section .logo {
    width: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff8a65;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

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

/* Service Section */
.service-section {
    padding: 30px 20px;
    background-color: #ffffff;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 200px;
    text-align: center;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: scale(1.05);
}


/* Sample Page Section */
.sample-section {
    padding: 30px 20px;
    background-color: #f1f8e9;
    text-align: center;
}

.sample-cards {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sample-card {
    max-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    background-color: #fff;
}

.sample-card:hover {
    transform: scale(1.05);
}

.sample-card img {
    width: 100%;
    height: auto;
    display: block;
}

.sample-card p {
    padding: 10px;
    font-size: 1em;
    color: #333;
}

.sample-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}



/* Contact Form Section */
.contact-form-section {
    padding: 40px 20px;
    background-color: #f5f8fa;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
}

.contact-form-section h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    width: 100%;
    text-align: left;
    font-weight: bold;
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-top: 8px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1em;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #4db6ac;
    box-shadow: 0 0 8px rgba(77, 182, 172, 0.3);
    outline: none;
}

.contact-form button {
    margin-top: 30px;
    padding: 12px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #4db6ac;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #388e8e;
    transform: translateY(-2px);
}

.contact-form button:active {
    background-color: #388e8e;
    transform: translateY(1px);
}



/* Footer */
footer {
    background-color: #333;
    color: #f8f9fa;
    text-align: center;
    padding: 15px 0;
}
/* セールスポイントセクションスタイル */
.sales-points {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.sales-points h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.points-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.point {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.point img {
    width: auto;
    height: 50px;
    margin-bottom: 15px;
}

.point h3 {
    font-size: 1.2em;
    color: #4db6ac;
    margin-bottom: 10px;
}

.point p {
    font-size: 0.9em;
    color: #666;
}


/* サンクスページのスタイル */
.thank-you-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #f5f8fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you-section h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.thank-you-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-return-home {
    display: inline-block;
    padding: 12px 20px;
    background-color: #4db6ac;
    color: white;
    font-size: 1em;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn-return-home:hover {
    background-color: #388e8e;
}
