/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP' , sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

.pc_hide {
    display: none;
}
.sp_hide {
    display: block;
}

.container {
    max-width: 1056px;
    padding: 0 16px;;
    margin: 0 auto;
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 636px;
    overflow: hidden;
    background: linear-gradient(to right, #EFF7FF , #DCEEFF 75%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    background: url('assets/hero-bg.png') no-repeat center / cover;
    margin: auto;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    background: url('assets/hero-bg2.png') no-repeat center / cover;
    margin: auto;
}

.header {
    position: relative;
    z-index: 10;
    padding-top: 32px;
}

.logo {
    width: 282px;
    height: 32px;
    margin-left: auto;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-content {
    position: absolute;
    z-index: 10;
    top: 32px;
    width: 100%;
    max-width: 1024px;
    margin: auto;
}

.hero-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    color: #333333;
    margin-bottom: 8px;
}

.hero-title .subtitle {
    font-weight: 700;
    font-size: 24px;
    display: block;
    margin-bottom: 16px;
}

.hero-description {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
}

.hero-features {
    display: flex;
    gap: 14.755px;
    margin-bottom: 22px;
}

.feature-card {
    width: 164.163px;
    height: 164.163px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 82.082px;
    border: 0.696px solid #0b5ae4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20.868px 7.652px;
}

.feature-content {
    text-align: center;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
}

.feature-content p {
    margin: 0;
}
.feature-card:nth-child(1) .top {
    font-size: 14px;
}
.feature-card:nth-child(1) .middle {
    font-size: 22px;
}
.feature-card:nth-child(1) .bottom {
    font-size: 22px;
}
.feature-card:nth-child(1) .bottom span {
    font-size: 14px;
}

.feature-card:nth-child(2) .top {
    font-size: 16px;
}
.feature-card:nth-child(2) .bottom {
    font-size: 24px;
}

.feature-card:nth-child(3) .top {
    font-size: 14px;
}
.feature-card:nth-child(3) .middle {
    font-size: 22px;
}
.feature-card:nth-child(3) .bottom {
    font-size: 22px;
}

.buttons-wrap {
    display: flex;
    gap: 32px;
    justify-content: center;
}

/* ボタンスタイル */
.btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 40px 16px 56px;
    border-radius: 56px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #f99604;
    color: #ffffff;
}

.btn-secondary {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #9f9f9f;
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.btn-subtitle {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.6px;
}

.btn-title {
    font-weight: 700;
    font-size: 20px;
}

.btn-icon {
    width: 32px;
    height: 32px;
}

/* 課題セクション */
.problems {
    
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-weight: 700;
    font-size: 36px;
    color: #333333;
    position: relative;
    display: inline-block;
}

.highlight {
    position: relative;
}
.highlight:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 20px;
    background-color: #ffff4c;
    mix-blend-mode: multiply;
}

.problems-grid {
    display: flex;
    gap: 24px;
    margin: 0 auto 40px;
}

.problem-card {
    flex: 1;
    background-color: #ecf6ff;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px;
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.problem-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    letter-spacing: 0.16px;
}

.highlight-text {
    color: #f99604;
}

.solution-message {
    text-align: center;
}

.solution-message h3 {
    font-weight: 900;
    font-size: 32px;
    line-height: 1.5;
    color: #333333;
}

/* 選ばれる理由セクション */
.reasons {
    background-color: #ecf6ff;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.reason-item.reverse {
    flex-direction: row-reverse;
}

.reason-content {
    flex: 1;
    display: flex;
    gap: 20px;
}

.reason-number {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 128px;
    color: #0148f7;
    line-height: 1;
}

.reason-text h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 20px;
}

.reason-text-small {
    font-size: 16px;
}

.reason-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.reason-image {
    width: 45%;
    max-width: 430px;
    flex-shrink: 0;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* サービスセクション */
.services {
    
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-top: 64px;
}

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 104px;
}

.service-subtitle {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

.service-subtitle-small {
    font-size: 14px;
}

.service-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #0148f7;
}

.service-icon {
    height: 258px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #333333;
}

.service-description p {
    margin-bottom: 16px;
}

.service-divider {
    width: 1px;
    background-color: #aaaaaa;
}

/* サービス提供の流れセクション */
.flow {
    background-color: #ecf6ff;
}

.flow-diagram {
    margin-top: 50px;
    position: relative;
}

.flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    background: url(assets/flow_arrow.png) no-repeat 0 8% /contain;
    padding-left: 19px;
    padding-right: 65px;
    gap: 16px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 140px;
}

.step-icon {
    width: 90%;
    max-width: 140px;
}

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

.flow-step h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #0148f7;
    text-align: center;
}

.flow-step p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    margin-top: 8px;
}


/* 実施例とお客様の声セクション */
.cases {
}

.case-card {
    border: 1px solid #aaaaaa;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.case-header {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.case-info {
    flex: 1;
}

.case-badge {
    display: inline-block;
    background-color: #0148f7;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.case-info h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 16px;
}

.case-details {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.case-details p {
    margin-bottom: 4px;
}

.case-image {
    width: 57%;
}

.case-image img {
    width: 100%;
}

.case-results {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.result-item {
    flex: 1;
}

.result-item h4 {
    font-weight: 700;
    font-size: 16px;
    color: #0148f7;
    margin-bottom: 4px;
}

.result-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

.result-divider {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-divider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials {
    display: flex;
    gap: 36px;
    margin-bottom: 32px;
}

.testimonial-card {
    flex: 1;
    border: 1px solid #aaaaaa;
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.testimonial-card h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 130px;
    height: 130px;
    border-radius: 88px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.testimonial-highlight {
    background: linear-gradient(transparent 60%, #ffff4c 0%);
    display: inline;
    padding: 0 1px 0px;
}

/* FAQセクション */
.faq {
    background-color: #ecf6ff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 32px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
    padding: 32px;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-question {
    display: flex;
    gap: 24px;
    align-items: center;
}

.faq-q {
    font-weight: 600;
    font-size: 36px;
    color: #0148f7;
    flex-shrink: 0;
    line-height: 1;
}

.faq-question p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.faq-divider {
    height: 1px;
    background-color: #aaaaaa;
    transform: rotate(180deg);
}

.faq-answer {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.faq-a {
    font-weight: 600;
    font-size: 36px;
    color: #f99604;
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

/* CTAセクション */
.cta {
    padding: 120px 0;
    text-align: center;
}

.cta h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 32px;
}

/* フッター */
.footer {
}

.footer-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 1rem;
}
.bg-footer {
    background-color: #272727;
    color: #fff;
    padding: 40px 0;
  }
  .bg-footer img.logo {
    height: 33px;
    width: auto;
  }
  .footer__copy {
    margin-top: 40px;
    font-size: 12px;
    font-weight: 400;
    -webkit-font-feature-settings: "palt" 1;
    font-feature-settings: "palt" 1;
    text-align: center;
}
.link-hybrid {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {

    .pc_hide {
        display: block;
    }
    .sp_hide {
        display: none;
    }

    .header {
        padding-top: 16px;
    }
    .logo {
        width: 200px;
    }
    .buttons-wrap {
        flex-direction: column;
        gap: 16px;
    }
    .btn {
        padding: 12px;
        gap: 8px;
    }

    .btn-text {
        gap: 0;
    }

    .btn-subtitle {
        font-size: 13px;
    }

    .btn-title {
        font-size: 18px;
    }

    .section {
        padding: 40px 0;
    }
    .section-header {
        margin-bottom: 24px;
    }
    .hero {
        height: auto;
        min-height: 500px;
        padding: 0 0 16px;
    }
    .hero-bg::before {
        width: 70vw;
        height: 70vw;
        top: 28%;
        right: -6%;
        bottom: auto;
        left: auto;
        background: url(assets/hero-bg2-sp.png) no-repeat center / contain;
    }

    .hero-content {
        top: 0;
        width: auto;
        position: relative;
    }

    
    .hero-title {
        font-size: 24px;
    }
     
    .hero-title .subtitle {
        font-size: 16px;
    }
    .hero-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    
    .hero-features {
        gap: 4px;
        margin-bottom: 32px;
        transform: scale(0.8);
        transform-origin: left;
    }
    .feature-card {
        padding: 4px;
        border-radius: 100%;
        max-width: 30vw;
        max-height: 30vw;
    }

    
.feature-card:nth-child(1) .top {
    font-size: 10px;
}
.feature-card:nth-child(1) .middle {
    font-size: 14px;
}
.feature-card:nth-child(1) .bottom {
    font-size: 14px;
}
.feature-card:nth-child(1) .bottom span {
    font-size: 12px;
}

.feature-card:nth-child(2) .top {
    font-size: 10px;
}
.feature-card:nth-child(2) .bottom {
    font-size: 16px;
}

.feature-card:nth-child(3) .top {
    font-size: 10px;
}
.feature-card:nth-child(3) .middle {
    font-size: 16px;
}
.feature-card:nth-child(3) .bottom {
    font-size: 16px;
}

    .reason-item {
        flex-direction: column;
    }

    .reason-text h3 {
        display: flex;
        gap: 8px;
        margin-bottom: 8px;
    }

    .services-grid {
        flex-direction: column;
        margin-top: 40px;
        gap: 16px;
    }
    
    .service-divider {
        width: 100%;
        height: 1px;
        margin: 16px 0;
    }

    .service-description p {
        margin-bottom: 0;
    }
    
    .flow-diagram {
        margin-bottom: 40px;
    }
    .flow-steps {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        padding: 24px 0 80px 16px;
        background: none;
        position: relative;
    }
    .flow-steps:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 125px;
        background: url(assets/flow_arrow_sp.png) no-repeat top / cover;
    }
    .flow-step {
        width: 100%;
        flex-direction: row;
        position: relative;
    }
    .step-icon {
        width: 88px;
    }
    .step-text {
        flex: 1;
    }

    .flow-step h3 ,
    .flow-step p {
        text-align: left;
    }
    
    .testimonials {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-card {
        padding: 16px;
    }
    .testimonial-card h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .testimonial-card-bottom {
        display: flex;
        gap: 8px;
        align-items: top;
    }
    .testimonial-card-bottom p {
        flex: 1;
        font-size: 14px;
    }
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .btn {
        width: 100%;
        max-width: 373px;
        justify-content: center;
    }
    
    .section-title {
        font-size: 24px;
        font-feature-settings: 'palt';
    }
    .highlight:before {
        height: 10px;
    }
    .problems-grid {
        flex-direction: column;
        gap: 16px;
    }
    .problem-card {
        padding: 16px;
        gap: 16px;
        flex-direction: row;
    }
    .problem-icon {
        width: 38%;
    }
    .problem-text {
        flex: 1;
    }

    .service-header {
        gap: 0;
    }
    .service-card {
        gap: 8px;
    }

    .solution-message h3 {
        font-size: 24px;
    }
    .reason-number {
        font-size: 64px;
    }
    .reason-image {
        width: 100%;
        height: auto;
    }

    
    .case-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .case-results {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px;
    }
    .result-divider {
        transform: rotate(90deg);
    }
    .result-item p {
        font-size: 14px;
    }
    .case-card {
        padding: 16px;
    }
    .case-badge {
        font-size: 12px;
    }
    .case-info h3 {
        font-size: 20px;
        font-feature-settings: "palt";
        margin-bottom: 8px;
    }
    .case-image {
        width: 100%;
    }
    .cta h2 {
        font-size: 22px;
    }
} 