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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    color: #303030;
    background-color: #ffffff;
    line-height: 1.6;
}
.element {
    margin-inline: auto;
    transition: opacity 0.7s, transform 1.5s;
    transform: translateY(80px);
    opacity: 0;
  }
  
  .is-fadein {
    transform: translateX(0);
    opacity: 1;
  }

/* ========================================
   タイポグラフィ
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
}

p {
    font-family: 'Inter', sans-serif;
}

a {
    color: #1644db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #082ead;
}

button {
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

/* ========================================
   ファーストビュー
   ======================================== */
.fv {
    width: 100%;
    margin: 0 auto;
    background-image: url("../images/343-1034.webp") ;
    background-repeat: no-repeat;
}

.fv-container {
    max-width: 1280px;
    margin: 0px auto;
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.fv-logo{
    width: 380px;
    height:120px;
    text-indent: -9999px;
    background-image: url("../images/logo_sb.png") ;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: left top;
}

.fv-content {
    flex: 1;
    min-width: 730px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 42px;
    background-image: url("../images/kv_image.png") ;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: right top;
}

.fv-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.title-box {
    padding: 16px;
    border-radius: 0;
}

.main-title {
    font-size: 64px;
    padding: 8px 12px;
    color: #1644db;
    font-weight: 900;
    line-height: 1.2;
    display: inline-block;
    background-color:#fff;
    span{
        font-size: 48px;
    }
}

.fv-subtitle {
    p{
        background-color: #082ead;
        padding: 16px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.5;
        font-family: 'Inter', sans-serif;
        display: inline-block;
    }
}

.fv-awards {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
}

.award-item {
    flex-shrink: 0;
}

.award-img {
    width: 201px;
    height: 105px;
    object-fit: contain;
}

.fv-form-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
}
@media (max-width: 1024px) {
    .arrow {
        position: absolute;
        top: 190px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: -1;
    }
    .arrow-left {
        left: -100px;
    }
    
    .arrow-right {
        right: -100px;
    }
}
.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f3f3;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.form-title {
    width: 240px;
    height: 60px;
    margin: 12px auto;
    background-image: url(../images/form_text.svg);
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

.campaign-badge {
    position: relative;
    height: 25px;
    width: 229px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-text {
    font-size: 14px;
    font-weight: 900;
    color: #3057df;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
    z-index: 1;
}

.campaign-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #ffe031;
    z-index: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #666666;
    font-family: 'Inter', sans-serif;
}

.form-group input {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1644db;
}

.submit-btn {
    background-color: #ff7a00;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    margin-top: 8px;
    text-decoration: none;
}

.submit-btn:hover {
    background-color: #e66a00;
}

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

.fv-bg {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    z-index: -1;
}

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

/* ========================================
   アカウント実績セクション
   ======================================== */
.results-section {
    width: 100%;
    position: relative;
}

.results-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 86px;
}

.results-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.results-header {
    text-align: center;
}

.results-title {
    font-size: 32px;
    font-weight: 600;
    color: #303030;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.3;
}

.highlight-number {
    color: #1644db;
    font-size: 48px;
}

.results-image {
    width: 630px;
    height: 460px;
    object-fit: contain;
}

.arrow {
    position: absolute;
    top: 204px;
    width: 216px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-left {
    left: 5px;
}

.arrow-right {
    right: 5px;
}

.arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 767px) {
    .arrow {
        position: absolute;
        top: 190px;
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: -1;
    }
    .arrow-left {
        left: -100px;
    }
    
    .arrow-right {
        right: -100px;
    }
}

/* ========================================
   成果に繋がらない運用セクション
   ======================================== */
.issues-section {
    width: 100%;
    padding: 88px 62px;
    background-color: #ffffff;
}

.issues-container {
    max-width: 980px;
    margin: 0 auto;
}

.issues-title {
    font-size: 32px;
    font-weight: 900;
    color: #1644db;
    text-align: center;
    margin-bottom: 110px;
    font-family: 'Noto Sans JP', sans-serif;
    span{
        background: linear-gradient(transparent 50%, #DCDCDC 50%);
    }
    p{
        font-size: 14px;
        color: #303030;
        font-weight: 200;
        margin-top: 8px;
    }
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.issue-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.issue-card {
    position: relative;
    background-color: #f9f9f9;
    padding: 80px 32px 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 260px;
    justify-content: flex-start;
}

.issue-icon {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 0;
}

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

.issue-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #303030;
    font-family: 'Noto Sans JP', sans-serif;
}

.issue-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* ========================================
   特徴セクション
   ======================================== */
.features-section {
    width: 100%;
    margin: 0;
    padding: 150px 0;
    position: relative;
    top: 100px;
}
.features-section::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F0F7FF;
    transform: skewY(-7deg);
    z-index: -1;
}

.features-container {
    max-width: 720px;
    margin: 0 auto;
}

.features-title {
    width: 456px;
    height: 200px;
    margin: 64px auto;
    background-image: url(../images/3points.png);
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px;
}

.highlight {
    color: #1644db;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.feature-item {
    display: flex;
    gap: 48px;
    align-items: center;
    position: relative;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-point {
    position: absolute;
    left: -50px;
    top: -51.5px;
    width: 102px;
    height: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.feature-label {
    font-size: 24px;
    font-weight: 500;
    color: #1644db;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.feature-number {
    font-size: 100px;
    font-weight: 500;
    color: #1644db;
    font-family: 'Outfit', sans-serif;
    line-height: 0.8;
}

.feature-card {
    flex: 1;
    display: flex;
    gap: 24px;
    padding: 24px;
}

.feature-image {
    flex-shrink: 0;
    width: 240px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

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

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.feature-title-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #303030;
    font-family: 'Noto Sans JP', sans-serif;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1644db;
    font-family: 'Noto Sans JP', sans-serif;
}

.feature-description {
    font-size: 14px;
    color: #303030;
    line-height: 1.7;
    font-family: 'Noto Sans JP', sans-serif;
}

.feature-list-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list-items li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #5c82ff;
    font-family: 'Noto Sans JP', sans-serif;
}

.feature-list-items img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ========================================
   事例紹介セクション
   ======================================== */
.cases-section {
    width: 100%;
    padding: 88px 62px;
    margin-top: 18rem;
    background-color: #ffffff;
}

.cases-container {
    max-width: 1280px;
    margin: 0 auto;
}

.cases-title {
    font-size: 42px;
    font-weight: 900;
    color: #303030;
    text-align: center;
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

.cases-subtitle {
    font-size: 16px;
    color: #666666;
    text-align: center;
    margin-bottom: 48px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.case-item {
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.case-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.case-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #303030;
    font-family: 'Noto Sans JP', sans-serif;
}

.case-content p {
    font-size: 11px;
    line-height: 1.6;
}

.case-link {
    font-size: 14px;
    font-weight: 700;
    color: #1644db;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}

/* ========================================
   料金セクション
   ======================================== */
.pricing-section {
    width: 100%;
    padding: 88px 62px;
    background-color: #082EAD;
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.pricing-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 48px;
    font-family: 'Noto Sans JP', sans-serif;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    align-self: center;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

.pricing-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Noto Sans JP', sans-serif;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.pricing-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Noto Sans JP', sans-serif;
}

.pricing-btn {
    background-color: #ff7a00;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.pricing-btn:hover {
    background-color: #e66a00;
}

/* ========================================
   FAQセクション
   ======================================== */
.faq-section {
    width: 100%;
    padding: 88px 62px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    font-weight: 900;
    color: #303030;
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Noto Sans JP', sans-serif;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: #333333;
    span{
        color: #2563EB;
    }
    p{
        padding-left: 12px;
        margin-left: 12px;
        border-left: 4px solid #E5E7EB;
    }
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background-color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #303030;
    font-family: 'Noto Sans JP', sans-serif;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-toggle {
    font-size: 24px;
    color: #1644db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ========================================
   CTAセクション
   ======================================== */
.cta-section {
    width: 100%;
    padding: 88px 62px;
    background: linear-gradient(135deg, #1644db 0%, #082ead 100%);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-btn {
    background-color: #ff7a00;
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #e66a00;
}

/* ========================================
   フッター
   ======================================== */
.footer {
    width: 100%;
    padding: 48px 62px 24px;
    background-color: #303030;
    color: #ffffff;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   レスポンシブデザイン（タブレット）
   ======================================== */
@media (max-width: 1024px) and (min-width: 768px) {
    .fv {
        padding: 80px 40px;
        width: 100%;
        margin: 0 auto;
        background-image: url("../images/343-1034.webp") ;
        background-repeat: no-repeat;
    }

    .fv-container {
        flex-direction: column;
        align-items: center;
    }

    .fv-logo {
        width: 380px;
        height: 60px;
    }
    .fv-content {
        gap: 20px;
    }
    .title-box {
        padding: 4px 0;
        border-radius: 0;
    }
    .fv-awards {
        gap: 24px;
        margin: 0 auto;
    }

    .award-img {
        width: 150px;
        height: 80px;
    }

    .fv-form-container {
        max-width: 550px;
        margin: 0 auto;
    }

    .isssues-title {
        font-size: 24px;
        font-weight: 800;
        color: #1644db;
        text-align: center;
        margin-bottom: 110px;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .feature-image {
        height: auto;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   レスポンシブデザイン（スマートフォン）
   ======================================== */
@media (max-width: 767px) {
    html,body{
        overflow-x: hidden;
    }

    .fv {
        width: 100%;
        margin: 0 auto;
        padding: 0 5%;
        background-image: url("../images/sp_kv_bg.svg") ;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .fv-container {
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
    }
    .fv-logo{
        width: 240px;
        height:60px;
    }
    .fv-content {
        gap: 20px;
        width: 100%;
        background-size: 64%;
        min-width: auto;
    }

    .main-title {
        font-size: 28px;
        span{
            font-size: 20px;
        }
    }
    .fv-title {
        gap: 4px;}
    .title-box {
        padding: 0px;
        border-radius: 0;
    }
    .fv-subtitle {
        font-size: 12px;
        padding: 4px;
        p{
            font-size: 12px;
            padding: 8px;
        }
    }

    .fv-awards {
        gap: 16px;
        justify-content: center;
    }

    .award-img {
        width: 100px;
        height: 52px;
    }

    .fv-form-container {
        max-width: 100%;
        width: 100%;
    }

    .form-card {
        padding: 24px;
    }

    .form-title {
        font-size: 16px;
    }
    .results-section {
        width: 80%;
        margin: 0 auto;
    }
    .results-title {
        font-size: 24px;
        font-weight: 400;
    }
    .results-image {
        width: 320px;
        height: 240px;
        object-fit: contain;
    }

    .issues-title {
        font-size: 24px;
        font-weight: 900;
        color: #1644db;
        text-align: center;
        margin-bottom: 50px;
        font-family: 'Noto Sans JP', sans-serif;
    }
    .issues-section {
        padding: 60px 40px;
    }

    .issues-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        margin-top: 80px;
    }

    .issue-card {
        padding: 60px 20px 20px;
        min-height: 190px;
    }

    .issue-icon {
        width: 100px;
        height: 110px;
        top: -55px;
    }

    .features-section {
        padding: 60px 20px;
    }

    .features-title {
        font-size: 24px;
        margin-bottom: 40px;
        width: 80%;
    }

    .features-list {
        gap: 60px;
    }

    .feature-item {
        flex-direction: column !important;
        gap: 24px;
    }

    .feature-point {
        position: static;
        transform: none;
        margin-bottom: 16px;
    }

    .feature-card {
        flex-direction: column;
        padding: 16px;
    }

    .feature-image {
        width: 100%;
        height: auto;
    }

    .cases-section {
        padding: 60px 20px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }
    .pricing {
        background-image: url(../images/price_bg_sp.svg);
    }
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-card {
        padding: 32px 20px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 440px) {
    .features-title {
        width: 90%;
        height: 120px;
    }
}
/* ========================================
   Global Styles & Typography
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
}

p {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
        
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}
@media (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
        
    }
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 4rem;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 2rem;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #303030;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: #1644db;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
    background-color: #ffffff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: flex-start;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.title-item {
    border: 2px solid #1644db;
    border-radius: 0.5rem;
    padding: 1rem;
    background-color: #ffffff;
}

.title-item h1,
.title-item h2 {
    color: #1644db;
    font-size: 1.75rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .title-item h1,
    .title-item h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .title-item h1,
    .title-item h2 {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    background-color: #1a2d7a;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.hero-subtitle p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle p {
        font-size: 1rem;
    }
}

.hero-awards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-awards img {
    height: 4rem;
    width: auto;
}

@media (min-width: 768px) {
    .hero-awards img {
        height: 5rem;
    }
}

.hero-right {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.form-header {
    text-align: center;
}

.form-header h3 {
    font-size: 1.25rem;
    color: #303030;
    margin-bottom: 0.5rem;
}

.campaign-badge {
    color: #1644db;
    font-weight: bold;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    font-size: 0.85rem;
    color: #303030;
    margin-bottom: 0.25rem;
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    font-family: 'Noto Sans JP', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1644db;
    box-shadow: 0 0 0 3px rgba(22, 68, 219, 0.1);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-width: 300px;
}

@media (min-width: 768px) {
    .hero-image img {
        max-width: 400px;
    }
}

/* ========================================
   Results Section
   ======================================== */
.results {
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.results-image {
    margin-top: 2rem;
}

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

/* ========================================
   Problems Section
   ======================================== */
.problems {
    padding: 3rem 0;
    background-color: #ffffff;
}

.problems-title {
    color: #1644db;
    margin-bottom: 0.5rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.problem-card {
    background-color: #f5f5f5;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    padding-top: 5rem;
}

.problem-icon {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    height: 4rem;
    width: auto;
}

.problem-card h3 {
    font-size: 1rem;
    color: #303030;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.problem-card p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.6;
}

/* ========================================
   Section Header
   ======================================== */
.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #303030;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

.section-header p {
    color: #666666;
    font-size: 0.8rem;
    margin: 24px auto;
}

.highlight {
    color: #1644db;
}

/* ========================================
   3 Reasons Section
   ======================================== */
.reasons {
    padding: 3rem 0;
    background-color: #f0f7ff;
}

.reasons .section-header h2 {
    color: #1644db;
}

.reasons-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.reason-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .reason-item {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.reason-item-reverse {
    direction: rtl;
}

.reason-item-reverse > * {
    direction: ltr;
}

.reason-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reason-number {
    font-size: 3rem;
    color: #1644db;
    font-weight: 900;
    line-height: 1;
}

.reason-text h3 {
    font-size: 1.25rem;
    color: #1644db;
}

@media (min-width: 768px) {
    .reason-text h3 {
        font-size: 1.5rem;
    }
}

.reason-text p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.reason-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reason-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1644db;
    font-weight: bold;
    font-size: 0.9rem;
}

.reason-points li::before {
    content: "✓";
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #1644db;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 1.25rem;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.reason-image {
    display: flex;
    justify-content: center;
}

.reason-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Case Studies Section
   ======================================== */
.cases {
    padding: 12rem 0;
}

.cases-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    img{width: 130px;}
    p{
        font-size: 14px;
        color: #303030;
        margin: 12px auto;
    }
    .section-title{
        font-size: 42px;
        color: #1644db;
    }
    @media (max-width: 767px) {
        p{
            font-size: 11px;
        }
        .section-title{
            font-size: 24px;
            color: #1644db;
        }
    }
}

.cases-title-decoration {
    width: 3rem;
    height: 0.25rem;
    background-color: #1644db;
    margin: 0 auto 1rem;
    border-radius: 0.125rem;
}
.cases-title-decoration-white {
    width: 3rem;
    height: 0.25rem;
    background-color: #fff;
    margin: 1.5rem auto;
    border-radius: 0.125rem;
}

.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.case-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.case-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.case-content {
    padding: 0.5rem 1rem;
}

.case-content h3 {
    font-size: 0.9rem;
    color: #303030;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-company {
    font-size: 11px;
    color: #5C82FF;
    margin-bottom: 0.4rem;
}

.case-details {
    background-color: #f0f7ff;
    border-radius: 0.375rem;
    padding: 0.75rem;
}

.case-issue,
.case-result {
    font-size: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-issue {
    color: #666666;
    margin-bottom: 0.25rem;
}

.case-result {
    color: #1644db;
    font-weight: bold;
}

.case-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    height: 2rem;
    width: auto;
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: 4rem 0;
    background-color: #082EAD;
    color: #ffffff;
    background-image: url(../images/price_bg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.pricing .section-header h2 {
    color: #ffffff;
}

.pricing-content {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.pricing-image {
    max-width: 100%;
    height: auto;
}

.pricing-services {
    width: 550px;
    text-align: center;
    margin: 2rem auto;
}
@media (max-width: 768px) {
    .pricing-services {
        width: 100%;
        text-align: center;
        margin: 2rem auto;
    }
}

.pricing-services h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.service-tag {
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-tag-outline {
    background-color: transparent;
}

.pricing-campaign {
    text-align: center;
    margin-top: 2rem;
}

.pricing-campaign h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.campaign-text {
    font-size: 1.25rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ========================================
   Flow Section
   ======================================== */
.flow {
    padding: 10rem 0;
    background-color: #ffffff;
}

.flow .section-header h2 {
    color: #1644db;
}

.flow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 6em;
}

@media (min-width: 768px) {
    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .flow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flow-step {
    background-color: #f5f5f5;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    padding-top: 4rem;
}

.flow-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background-color: #1644db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.flow-icon {
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 1rem;
    color: #303030;
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.85rem;
    color: #666666;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: 3rem 0;
    background-color: #f0f7ff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 42px auto;
}

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

.faq-item h3 {
    font-size: 0.95rem;
    color: #303030;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.7;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: 3rem 0;
    background-color: #082EAD;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 2rem;
    }
}

.final-cta p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #ff8c00;
    color: #ffffff;
    width: 100%;
    justify-content: center;
}

.btn-primary:hover {
    background-color: #e67e00;
}

.btn-secondary {
    background-color: #ff8c00;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-secondary:hover {
    background-color: #e67e00;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-section p {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    font-size: 0.85rem;
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #b0b0b0;
}

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 767px) {
    .hero-content {
        padding-top: 1rem;
    }

    .reason-item-reverse {
        direction: ltr;
    }

    .contact-form-card {
        max-width: 100%;
    }
}
