/* コンセプトセクション */
.concept {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.concept-content {
    text-align: center;
    margin: 0 auto;
}



.concept-lead {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}


.concept-text {
    font-size: 1.1rem;
    line-height: 2;
}

/* 特色セクション */
.features {
    padding: 120px 0;
    background-color: #fff;
}

.features-lead {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 80px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}


.feature-content {
    flex: 1;
    padding: 0 50px;
}

.feature-image {
    flex: 1;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    transition: transform 0.5s ease;
    max-width: 500px;
    margin: 0 auto;
}

.feature-image img:hover {
    transform: scale(1.05);
}

.feature-number {
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.feature-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.feature-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #555;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.8;
}

/* 制作プロセスセクション */
.process {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.process-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    line-height: 2;
}

.process-flow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.flow-item {
    text-align: center;
    padding: 20px;
    width: 150px;
}

.flow-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.flow-title {
    font-size: 0.9rem;
}

.flow-arrow {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 1.5rem;
}

.process-point {
    background-color: #ffffff;
    color: #070707;
    padding: 40px;
    border-radius: 0;
    position: relative;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.point-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    background-color: #000;
    color: #fff;
    padding: 5px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.point-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: rgba(6, 6, 6, 0.8);
}

.point-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #000;
}

.point-list li:last-child {
    margin-bottom: 0;
}

/* 価格セクション */
.pricing {
    padding: 120px 0;
    background-color: #fff;
}

.pricing-lead {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.pricing-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fff;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background-color: #000;
    color: #fff;
    font-weight: 500;
}

.pricing-table tr:hover {
    background-color: #f8f8f8;
}

.pricing-notes {
    max-width: 800px;
    margin: 0 auto;
}

.notes-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.notes-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* オプションセクション */
.options {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.options-lead {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

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

.option-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.option-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.option-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #000;
}

.option-price {
    color: #c00;
    font-weight: 500;
    margin-bottom: 15px;
}

.option-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.option-table {
    width: 100%;
    font-size: 0.9rem;
}

.option-table td {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.option-table td:last-child {
    text-align: right;
    font-weight: 500;
}

