/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

.hero {
    text-align: center;
    background: linear-gradient(to right, #007BFF, #00C6FF);
    color: white;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

button {
    padding: 0.7rem 1.5rem;
    background: white;
    color: #007BFF;
    border: 2px solid white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    transition: background 0.3s ease, color 0.3s ease;
}

button:hover {
    background: #0056b3;
    color: white;
    border-color: #0056b3;
}

/* メニューの初期状態を非表示に */
.hidden {
    display: none;
}

#menu {
    position: absolute;
    top: 60px; /* メニューボタンの下に配置 */
    right: 10px;
    background: #007BFF;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu li {
    margin: 0.5rem 0;
}

#menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

#menu a:hover {
    text-decoration: underline;
}

section {
    padding: 3rem 1rem;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #007BFF;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, select, button {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #007BFF;
    color: white;
    margin-top: 1rem;
}

footer p {
    margin: 0;
}


/* Highlighted sections */
.highlight-section {
    padding: 3rem 1rem;
    text-align: center;
    background: #f4f4f4;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Table styling */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table thead {
    background: #007BFF;
    color: white;
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    text-align: left;
}

.pricing-table th {
    font-size: 1.4rem;
    font-weight: bold;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: #f0f8ff;
}

.pricing-table td {
    color: #555;
}

.pricing-table td:last-child {
    font-weight: bold;
    color: #007BFF;
}

/* Headings */
h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #007BFF;
}


/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}


/* Services Section */
.services-section {
    padding: 3rem 1rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #007BFF;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #007BFF;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0056b3;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    resize: vertical;
}

/* サンクスページ用スタイル */
.thanks-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(to right, #007BFF, #00C6FF);
    color: white;
    padding: 2rem;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-section .btn {
    padding: 0.7rem 1.5rem;
    background: white;
    color: #007BFF;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.thanks-section .btn:hover {
    background: #0056b3;
    color: white;
}


/* Portfolio Section */
.portfolio-section {
    padding: 3rem 1rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #007BFF;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.portfolio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0056b3;
}

.portfolio-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
