@charset "UTF-8";

/* ========================================
   Hero Section（シンプル左右分割）
======================================== */
.hero-simple {
    background: #f8f8f8;
    padding: 40px 0;
}

.hero-simple-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-simple-text {
    flex: 1;
    display: flex;
    align-items: center;
}
.hero-simple-label {
    font-size: 1.5rem;
    color: #dc000c;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.15em;
}

.hero-simple-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0px;
    line-height: 1.5;
}

.hero-simple-lead {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    padding-left: 50px;
}

.hero-simple-image {
    flex: 0 0 320px;
}

.hero-simple-image img {
    width: 100%;
    height: auto;
}

/* セクション区切り線 */
.section-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0;
}

@media screen and (max-width: 1024px){
    .hero-simple-text{
        flex-direction: column;
    }
    .hero-simple-lead{
        padding-left: 0;
        padding-top: 1em;
    }
}
@media (max-width: 768px) {
    .hero-simple {
        padding: 25px 0;
    }

    .hero-simple-inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .hero-simple-image {
        flex: none;
        width: 80%;
        max-width: 280px;
    }

    .hero-simple-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   About Section（ボード風レイアウト）
======================================== */
.about-section {
    padding: 50px 0;
    background: #fff;
}
.about-section {
    position: relative;
    overflow: hidden;
    background: #f3f2eb;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: url("../img/product-web/sample01.jpg") no-repeat left top;
    background-size: cover;
    z-index: 0;
}

.about-section > * {
    position: relative;
    z-index: 1;
}
.about-section .container{
	background-color: rgba( 255, 255, 255, 0.95 );
    padding: 50px;
    margin: 0 0 0 auto;
    max-width: 60%;
}
@media screen and (max-width: 1024px){
    .about-section{
        padding: 30px;
    }
    .about-section::before {
        width: 100%;
        height: 100%;
    }
    .about-section .container{
        background-color: rgba( 255, 255, 255, 0.9 );
        padding: 50px;
        margin: 0 0 0 auto;
        max-width: 100%;
    }
}

.about-section .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.about-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin: 30px 0 50px;
}

.about-board {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-board-text {
    flex: 1;
}

.about-board-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.about-board-desc:last-child {
    margin-bottom: 0;
}

.about-board-image {
    flex: 0 0 360px;
    max-width: 360px;
}

.about-board-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* 画像左・テキスト右レイアウト */
.about-board-left {
    flex-direction: row;
    align-items: center;
}

.about-board-left .about-board-image {
    flex: 0 0 320px;
    max-width: 320px;
    order: -1;
}

.about-board-left .about-board-text {
    flex: 1;
    text-align: left;
}

@media (max-width: 900px) {
    .about-board {
        flex-direction: column;
        gap: 30px;
    }

    .about-board-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ========================================
   Think Section（考え方）
======================================== */
.think-section {
    padding: 72px 0;
    background: #f8f8f8;
}

/* ========================================
   AI Features Section
======================================== */
.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.ai-feature-item-image-left {
    flex-direction: row;
}

.ai-feature-item-image-right {
    flex-direction: row-reverse;
}

.ai-feature-image {
    flex: 0 0 180px;
    max-width: 180px;
}
@media screen and (min-width: 1025px){
    .ai-feature-image{
        padding-top: 4em;
    }
}
.ai-feature-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

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

.ai-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.ai-feature-number {
    color: #dc000c;
    font-size: 0.75rem;
    font-weight: 700;
    width: 3em;
    height: 3em;
    line-height: 3em;
    text-align: center;
    color: #FFF;
    background: #dc000c;
    border-radius: 50%;
}

.ai-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.ai-feature-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #dc000c;
    margin-bottom: 12px;
    line-height: 1.5;
}

.ai-feature-description {
    color: #555;
    line-height: 1.8;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-feature-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .ai-feature-item-image-left,
    .ai-feature-item-image-right {
        flex-direction: column;
    }

    .ai-feature-image {
        flex: 0 0 120px;
        max-width: 120px;
        margin: 0 auto;
    }

    .ai-feature-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
    }

    .ai-feature-title {
        font-size: 1rem;
    }

    .ai-feature-subtitle {
        font-size: 0.8rem;
    }

    .ai-feature-description {
        font-size: 0.8rem;
        text-align: left;
    }
}
/* ========================================
   CTAセクション（ブロックボタン）
======================================== */
.cta-block-section {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0 15px 0;
    background: #f5f5f5;
    text-align: center;
}

.cta-block-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.9;
    margin-bottom: 25px;
}

.cta-block-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-block-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 320px;
    padding: 20px 25px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
}

.cta-block-btn:hover {
    background: #dc000c;
}

.cta-block-btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.cta-block-btn-arrow {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.cta-block-btn:hover .cta-block-btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-block-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-block-btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-block-lead {
        font-size: 1.1rem;
    }
}

/* ========================================
   関連サービスセクション（カード形式）
======================================== */
.related-services-section {
    padding: 40px 0;
    background: #fff;
}

.section-note {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin: 40px 0;
    line-height: 1.8;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card-icon {
    background: #FFF;
}
/* 上段（メイン）：薄い背景色付き */
.service-card-grid-primary {
    padding: 25px;
    border-radius: 8px;
}

.service-card-grid-primary .service-card {
    background: #fff;
}

.service-card {
    display: block;
    padding: 25px 20px;
    text-decoration: none;
    color: #333;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    border-color: #dc000c;
    box-shadow: 0 5px 20px rgba(220,0,12,0.1);
}

.service-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 7px;
    background: #FFF0F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
    text-align: center;
}

.service-card-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .service-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .service-card-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

/* ========================================
   関連サービスリンク
======================================== */
.related-services-section {
    padding: 48px 0;
    background: #f8f9fa;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.related-service-link {
    display: block;
    padding: 24px 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.related-service-link:hover {
    border-color: #CC0000;
    box-shadow: 0 4px 16px rgba(204, 0, 0, 0.1);
    transform: translateY(-3px);
}

.related-service-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.related-service-desc {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   料金セクション
======================================== */
.pricing-slack-section {
    padding: 72px 0;
    background: #f8f8f8;
}

.pricing-slack-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-slack-lead {
    text-align: center;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 25px 0 40px;
}

.pricing-slack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    align-items: start;
}

.pricing-slack-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.pricing-slack-featured {
    border-color: #dc000c;
    border-width: 2px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 8px 30px rgba(220,0,12,0.1);
}

.pricing-slack-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc000c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-slack-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-slack-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.pricing-slack-target {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.pricing-slack-recommend {
    font-size: 0.8rem;
    color: #dc000c;
    font-weight: 600;
}

.pricing-slack-price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.pricing-slack-price .price-yen {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.pricing-slack-price .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.pricing-slack-price .price-tax {
    font-size: 0.8rem;
    color: #888;
    margin-left: 5px;
}

.pricing-slack-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-slack-features li {
    font-size: 0.85rem;
    color: #555;
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.pricing-slack-features li:last-child {
    border-bottom: none;
}

.pricing-slack-features li.has-check::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc000c;
    font-weight: 700;
}

.pricing-slack-features li.has-dash::before {
    content: "−";
    position: absolute;
    left: 2px;
    color: #ccc;
    font-weight: 700;
}

.pricing-slack-features li.has-dash {
    color: #aaa;
}

/* 基本仕様セクション */
.pricing-slack-basic {
    background: #f8f8f8;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.pricing-slack-basic-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 10px;
}

.pricing-slack-basic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-slack-basic-list li {
    font-size: 0.85rem;
    color: #333;
    padding: 4px 0 4px 18px;
    position: relative;
    line-height: 1.5;
}

.pricing-slack-basic-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #dc000c;
    font-size: 0.5rem;
    top: 8px;
}

/* 水平位置揃え・カード開始位置揃え */
.pricing-slack-grid-aligned {
    align-items: start;
}

.pricing-slack-grid-aligned .pricing-slack-card {
    margin-top: 0;
}

.pricing-slack-grid-aligned .pricing-slack-featured {
    margin-top: 0;
}

.pricing-slack-grid-aligned .pricing-slack-card {
    display: flex;
    flex-direction: column;
}

.pricing-slack-grid-aligned .pricing-slack-features {
    flex: 1;
}

@media (max-width: 768px) {
    .pricing-slack-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-slack-card {
        margin-top: 0;
    }

    .pricing-slack-featured {
        order: -1;
    }

    .pricing-slack-price .price-amount {
        font-size: 2rem;
    }
}

/* 料金セクション 注釈 */
.pricing-page-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin: 20px auto 6px;
    max-width: 900px;
}

.pricing-static-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin: 0 auto 0;
    max-width: 900px;
}

/* ========================================
   制作の流れ（シンプル縦並び）
======================================== */
.flow-simple-section {
    padding: 72px 0;
    background: #fff;
}
.flow-simple-lead {
    text-align: center;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 25px 0 40px;
}

.flow-simple-list {
    max-width: 700px;
    margin: 0 auto;
}

.flow-free-note {
    text-align: center;
    font-size: 0.9rem;
    color: #dc000c;
    padding: 20px 0;
    margin: 0;
}

.flow-simple-item {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.flow-simple-item:last-child {
    border-bottom: none;
}

.flow-simple-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
}

.flow-simple-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flow-simple-content {
    flex: 1;
}

.flow-simple-step {
    font-size: 0.7rem;
    font-weight: 700;
    color: #dc000c;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.flow-simple-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.flow-simple-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 600px) {
    .flow-simple-item {
        gap: 15px;
        padding: 20px 0;
    }

    .flow-simple-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
    }

    .flow-simple-title {
        font-size: 0.95rem;
    }

    .flow-simple-desc {
        font-size: 0.8rem;
    }
}

/* ========================================
   FAQセクション
======================================== */
.faq-section {
    padding: 50px 0;
    background: #fff;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
    box-sizing: border-box;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-q-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #dc000c;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
}

.faq-q-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.6;
}

.faq-question:hover .faq-q-text{
    color: #FFF;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        gap: 12px;
        padding: 18px 0;
    }

    .faq-q-label {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .faq-q-text {
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding-left: 44px;
        font-size: 0.85rem;
    }
}