﻿/* =================================================================
   1. 基本設定 & 共通クラス
================================================================== */
:root {
    --color-primary: #004AA6;
    --color-primary-dark: #003b85;
    --color-text-main: #212121;
    --color-text-light: #ffffff;
    --color-background: #EDF2F6;
    --header-height: 64px;
}
html>body{font-size: 16px;}
body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-background);
    font-size: 16px;
    line-height: 1.7;
}
*, *::before, *::after {
    box-sizing: border-box;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.section {
    padding-top: 36px; /* 72px */
    padding-bottom: 36px; /* 72px */
}

.section-title {
    font-weight: 700;
    text-align: center;
    color: var(--color-text-main);
    font-size: 2rem; /* 32px */
    line-height: 1.3;
    margin: 0 ;
}
.br-sp { display: block; }
.br-pc { display: none; }
@media (min-width: 769px) {
    .section {
        padding-top: 4.5rem; /* 72px */
        padding-bottom: 4.5rem; /* 72px */
    }

}
/* =================================================================
   2. ヘッダー
================================================================== */
.header {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.07), 0 1px 2px -1px rgb(0 0 0 / 0.07);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 0 4.5rem;
    height: var(--header-height);
}
.header__logo img { width: 107px; height: 32px; }
.header__nav-pc, .header__actions { display: none; }
.nav-pc__list { display: flex; align-items: center; gap: 2rem; list-style: none; padding: 0; margin: 0; }
.nav-pc__item { position: relative; }
.nav-pc__link { font-size: 14px; font-weight: 700; color: #212121; transition: color 0.3s; display: flex; align-items: center; padding: 1rem 0; }
.nav-pc__link svg { margin-left: 0.25rem; width: 1rem; height: 1rem; transition: transform 0.3s; }
.dropdown-menu {
    display: none; opacity: 0; position: absolute;
    top: 100%; left: 0; padding-top: 0.5rem;
    background-color: white; border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    min-width: 166px; transition: opacity 0.3s, transform 0.3s; transform: translateY(10px);
}
.dropdown-menu__inner { padding: 0.5rem; }
.dropdown-menu__link { display: block; padding: 0.75rem 1rem; font-size: 14px; font-weight: 500; border-radius: 0.5rem; }


.button {
    display: inline-block; font-weight: 700; text-align: center;
    border-radius: 9999px; transition: background-color 0.3s;
    cursor: pointer; border: 2px solid transparent;
}
.button--primary { background-color: var(--color-primary); color: #ffffff; }

.button--header { font-size: 13px; padding: 0.4375rem 1.5rem; }
.button--header-sp { font-size: 12px; padding: 0.5rem 1rem; }
.header__actions .button--secondary { font-size: 14px; font-weight: 700; color: #212121; }

.header__sp-menu-trigger { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
.header__sp-menu-trigger button { display: flex; align-items: center; padding: 0; background: none; border: none; cursor: pointer; }
.header__sp-menu-trigger svg { width: 2rem; height: 2rem; color: var(--color-text); }
@media (min-width: 769px) {
.nav-pc__link:hover { color: var(--color-primary); text-decoration: none; }
.nav-pc__item:hover > .nav-pc__link svg { transform: rotate(180deg); }
.nav-pc__item:hover .dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
.dropdown-menu__link:hover { color: var(--color-primary); text-decoration: none; }
.button--primary:hover { background-color: var(--color-primary-dark); color: #ffffff;}
.header__actions .button--secondary:hover { color: var(--color-primary); }
}
/* =================================================================
   3. モバイルメニュー
================================================================== */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: white; z-index: 50;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0; visibility: hidden;
    display: flex; flex-direction: column;
}
.mobile-menu.is-visible { opacity: 1; visibility: visible; }
.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); padding: 0 1rem; border-bottom: 1px solid #e5e7eb;box-sizing: content-box; }
.mobile-menu__header button svg { width: 2rem; height: 2rem; color: var(--color-text); }
.mobile-menu__nav { flex-grow: 1; padding: 1rem; overflow-y: auto; }
.mobile-menu__nav ul, .mobile-menu__nav li { list-style: none; padding: 0; margin: 0; }
.mobile-menu__nav ul{margin: 0 -16px 0 0;}
.accordion-toggle, .mobile-menu__nav-link {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 10px 20px 10px 0;height:56px; border-bottom: 1px solid #e5e7eb; font-size: 14px; font-weight: 700;
    background: none; border-left: none; border-right: none; border-top: none; cursor: pointer;
    color: #212121;
    font-family:'Noto Sans JP', sans-serif;
}

.accordion-arrow { transition: transform 0.3s; color: #6b7280; }
.accordion-toggle.is-open .accordion-arrow { transform: rotate(180deg); }
.accordion-content { background-color: #f9fafb; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out;}
.accordion-content a { display: flex; align-items: center; padding: 10px 16px; height: 56px; font-size: 14px; font-weight: 500; position: relative; }
.accordion-content a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 0;
    border-bottom: 1px solid #e5e7eb; 
}

/* ボタン（二次）のスタイルを追加 */
.button--secondary {
    padding: 7px 16px; /* ボタンの高さと左右の余白を調整 */
    margin-right: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #212121;
    transition: color 0.3s;
}


/* モバイルメニューのアイコン全般 */
.mobile-menu .accordion-arrow,
.mobile-menu__nav-link svg {
    transition: transform 0.3s;
}
@media (min-width: 769px) {
    .button--secondary:hover {
        color: var(--color-primary);
        text-decoration: none;
    }
}

/* =================================================================
   4. メインコンテンツ & ヒーロー
================================================================== */
.main-content { padding-top: var(--header-height); position: relative;}
.main-content::after{
    content: "";
    width: 100%;
    height: 100%;
    background: url('/wp-content/themes/itwith/images/lp/ax/bg_hero-sp.png') no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 9%;
    right: 0;
}
.support.main-content::after{
    top: 3%;
}
.rpa.main-content::after{
    top: 3%;
}
.hero { position: relative; }
.hero__bg-graphics { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }
.hero__campaign-banner { background-color: var(--color-primary); color: white; }
.hero__campaign-banner-inner { position: relative; }
.campaign-banner-sp { padding: 1rem 0; }
.hero__main { padding: 2rem 1rem 3rem; }
.hero__sp-layout, .hero__pc-layout { width: 100%; max-width: 1100px; margin: 0 auto; }
.hero__sp-layout { display: block; }
.hero__pc-layout { display: none; }

.hero { position: relative; }
.hero__bg-graphics { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; }

.hero__bg-graphics::before {top: 0; left: 0; }
.hero__bg-graphics::after { width: 400px; height: 400px; bottom: -150px; right: -150px; }

.hero__content-wrapper { position: relative; z-index: 1; }
.hero__campaign-banner { background-color: var(--color-primary); color: white; }
.hero__campaign-banner-inner { position: relative; }

/* SP用バナー */
.campaign-banner-sp { padding: 15px 0 10px; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; line-height: 1.2;}
.campaign-banner-sp__price-group { display: flex; align-items: flex-end; justify-content: center; gap: 0.25rem; }
.campaign-banner-sp__tag { position: relative; background-color: white; color: var(--color-primary); padding: 5px; font-weight: 700; line-height: 1; margin-right: 9px;display: flex;align-items: center;height: 42px;}
.campaign-banner-sp__tag span { font-size: 14px; z-index: 99;}
.campaign-banner-sp__tag::after {
    content: ''; 
    background: url('/wp-content/themes/itwith/images/lp/ax/bg_tag-sp.png')no-repeat;
    width: 48px;
    height: 42px;
    position: absolute;
    top: 0;
    left: 0;
}
.campaign-banner-sp__price { font-size: 44px; font-weight: 700; line-height: 1; }
.campaign-banner-sp__unit { font-size: 1rem; font-weight: 700; line-height: 1;}
.campaign-banner-sp__plus { font-size: 1rem; font-weight: 700;}
.campaign-banner-sp__free { font-size: 38px; font-weight: 700; line-height: 1;}
.campaign-banner-sp__text { font-size: 38px; font-weight: 700; letter-spacing: 2px; text-align: center; margin: 0;}

/* PC用バナー */
.campaign-banner-pc { display: none; }
.trial-badge {
    width: 121px; height: 121px; border-radius: 50%; background-color: var(--color-text-main);
    color: white; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; line-height: 1.2; font-weight: 700;font-size:16px;
}
.trial-badge--sp { position: absolute; top: 50%; left: 0; transform: translateY(-16%); }
.trial-badge--sp .badge-subtext { font-size: 12px; }
.trial-badge--pc { display: none; }

.hero__main { padding: 2rem 1rem 3rem; }
.support .hero__main { padding: 80px 1rem 3rem; }
.rpa .hero__main { padding: 36px 1rem 3rem; }
.hero__sp-layout { display: block; }
.hero__pc-layout { display: none; }
.hero__image-sp-wrapper { position: relative; margin-bottom: 2rem; text-align:center;margin-left: -8px; margin-right: -8px; }
.main-content.rpa .hero__image-sp-wrapper .hero__image-sp{min-width: 229px;max-width: 62%;}
.hero__image-sp { border-radius: 0.5rem; max-width: 100%; display:inline-block; }

.hero__text-sp { display: flex; flex-direction: column; text-align: left;margin-top: -40px; }
.support .hero__text-sp {margin-top:30%; }
.rpa .hero__text-sp {margin-top:15%; }
.hero__catch-sp { display: flex; flex-direction: column; gap: 0.5rem; }
.hero__catch-line { position: relative; display: flex; align-items: baseline; line-height: 1;}
.hero__catch-label { font-size: 14px; font-weight: 700; }
.hero__catch-number { font-size: 24px; font-weight: 700; color: var(--color-primary); margin: 0 0.25rem; }
.hero__catch-percent { font-size: 14px; font-weight: 700; color: var(--color-primary); position: relative; }
.hero__catch-note { display: none; position: absolute; top: -0.25rem; right: -0.75rem; font-size: 12px; font-weight: 700; color: #000000; }
.hero__service-name { font-size: 20px; font-weight: 700;margin: 0; }
.rpa .hero__service-name { font-size: 16px; }
.hero__title-sp { font-size:32px; font-weight: 700; line-height: 1.3; margin: 26px 0 0; }
.hero__cta-sp { display: flex; flex-direction: column; align-items: center; margin-top: 48px; }
.button--hero{width: 240px;font-size: 16px;padding: 16px;box-shadow: 0px 4px 20px 12px rgba(0, 74, 166, 0.12);transition: box-shadow 0.3s;}
.hero__cta-note {display: none; font-size: 12px; font-weight: 500; margin-top: 1rem; }
/* PC Styles */
@media (min-width: 769px) {
    .hero{position: relative;}
    .main-content::after{
        content: "";
        background: url('/wp-content/themes/itwith/images/lp/ax/bg_hero.png') no-repeat;
        background-size: 100% auto;
        top: 0;
    }
    .hero__content-wrapper {padding-top: 43px; }
    .campaign-banner-sp { display: none; }
    .campaign-banner-pc { display: flex; align-items: center; height: 102px; padding: 0 44px 0 175px;}
    .campaign-banner-pc__text-group { display: flex; align-items: baseline; justify-content: center; text-align: center; font-weight: 700; }
    .campaign-banner-pc__label { font-size: clamp(16px, 2.4vw, 38px); margin: 0;}
    .campaign-banner-pc__price { font-size: clamp(28px, 4.4vw, 64px); line-height: 1; }
    .campaign-banner-pc__unit { font-size: clamp(14px, 1.9vw, 24px); padding-bottom: 0.5rem;}
    .campaign-banner-pc__free-text { font-size: clamp(20px, 2.9vw, 48px); line-height: 1; margin: 0; }
    .campaign-banner-pc__sub-text { font-size: 1.875rem; }
    .trial-badge--pc { display: flex; position: absolute; top: 50%; left: 2.75rem; transform: translateY(-50%); width: 139px; height: 139px; font-size: 1.25rem; }
    
    .hero__main { padding: 6rem 2rem 7rem; }
    .support .hero__main { padding: 60px 2rem 7rem; }
    .rpa .hero__main { padding: 60px 2rem 7rem; }
    .support .hero__catch-label { font-size: 16px; }
    .hero__sp-layout { display: none; }
    .hero__pc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
    .support .hero__pc-layout { grid-template-columns: 1fr 1.56fr;}
    .hero__text-pc { display: flex; flex-direction: column; }
    .hero__catch-pc { display: flex; flex-direction: column; gap: 0.5rem; line-height: 1; }
    .hero__catch-line { font-size: 1rem; }
    .hero__catch-number { font-size: 3rem; }
    .hero__catch-percent { font-size: 1rem;}
    .hero__catch-note {display: block; font-size: 14px; top: -16px; right: -28px; }
    .hero__service-name { font-size: 32px; }
    .rpa .hero__service-name { font-size: 24px; }
    .hero__title-pc { font-size: clamp(32px, 4.5vw, 54px); line-height: 1.5;margin: 0;padding-top: 40px; font-family: 'Noto Sans JP', sans-serif;font-weight: 700; }
    .hero__cta-pc { padding-top: 40px; }
    .rpa .hero__image-pc-wrapper{text-align: center;}
    .button--hero{width: 240px;font-size: 16px;padding: 16px;}
    .hero__image-pc { border-radius: 0.5rem; }
    .hero__cta-note {display: block; margin-top: 48px; }

    .button--hero.button--primary:hover { background-color: var(--color-primary-dark);box-shadow:none; }
}



/* =================================================================
   5. その他のセクション
================================================================== */
.zigzag-feature__image-wrapper { max-width: 300px; }
.campaign-table { background: white; border-radius: 1.5rem; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.campaign-table__inner { border-top: 1px solid transparent; } /* divide-yの代わり */
.campaign-table__row {
    padding: 1.5rem 0;
    display: flex; flex-direction: column;
    border-top: 1px solid #e5e7eb;
}
.campaign-table__row:first-child{
    border-top: 0;
}
.campaign-table__label { font-size: 14px; font-weight: 500; text-align: left; }
.campaign-table__value { margin-top: 0.5rem; font-size: 14px; text-align: left; }
.campaign-table__value .price-emphasis { color: var(--color-primary); font-weight: 700; }

/* =================================================================
   「with AXヘルプデスクとは」セクションのスタイル
================================================================== */
.section--about {
    position: relative;
    z-index: 10;
    padding: 24px 0 72px;
}
.about__content-wrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 0 8px;
}

.main-content.rpa .about__content-wrapper{
    max-width: 900px;
}

.about__diagram img {
    display: block;
    width: 100%;
}
.section--about .section-subtitle{
    text-align: left;
    margin: 0;
}

.about__movie {
  position: relative;
  width: 100%;
  max-width: 698px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.about__movie iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 769px) {
    .about__content-wrapper{
        gap: 72px;
    }

    .section--about {
        margin-top: -7rem; /* 前のセクションに重ねるため */
        margin-bottom: 13rem;
    }

    .section--about .section-subtitle{
        text-align: center;
    }
}


/* =================================================================
   「社内問い合わせ対応で悩んでいませんか？」セクションのスタイル
================================================================== */
.section--pain-points,.service.zigzag-features {
    background-image: linear-gradient(to bottom right, #c4dbef, #edf2f6);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
    margin-bottom: -50px;
    padding-top: 4.5rem;
    padding-bottom: 9rem;
    position: relative;
}
.service.zigzag-features{
    clip-path:none;
    padding-bottom: 2rem;
}
.pain-points__wrapper {
    max-width: 936px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pain-points__grid {
    width: 100%;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.pain-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.pain-card__icon-wrapper {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pain-card__icon-wrapper img{
    width: 132px;
    height: 132px;
    object-fit: cover;
}


.pain-card__text-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pain-card__title {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.pain-card__description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
}

/* PC表示のスタイル */
@media (min-width: 769px) {
    .service.zigzag-features{
        padding-bottom: 207px;
    }
    .section--pain-points {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
        margin-bottom: -50px;
        padding-top: 6rem;
        padding-bottom:11rem !important; 
    }
    .pain-points__grid {
        margin-top: 2rem;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    .pain-card__icon-wrapper {
        width: 181px;
        height: 180px;
    }
    .pain-card__icon-wrapper img{
        width: 181px;
        height: 180px;
        object-fit: cover;
    }
    .pain-card__description {
        font-size: 1rem; /* 16px */
        line-height: 2;
    }
}

/* =================================================================
   「with AX ヘルプデスクだからできること」セクション
================================================================== */
.section.cando{
    padding-top: 9rem;
}
.cando-wrapper{
    max-width: 984px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cando-grid {
    width: 100%;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.cando-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.cando-card__icon-wrapper {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cando-card__icon-wrapper img {
        width: 132px;
        height: 132px;
        object-fit: cover;
    }

.cando-card__text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.cando-card__title {
    font-size: 1rem;    /* 16px */
    font-weight: 500;
    margin: 0;
}
.cando-card__highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cando-card__highlight-icon {
    width: 32px; /* 24px */
    height: 32px; /* 24px */
}
.cando-card__highlight-text {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.4;
}

/* PC表示のスタイル */
@media (min-width: 769px) {
    .section.cando{
        padding-top: 12rem;
    }
    .cando-grid {
        margin-top: 4.5rem; /* 72px */
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    .cando-card__title {
        font-size: 1.125rem; /* 18px */
    }
    .cando-card__highlight-text {
        font-size: 1.5rem; /* 24px */
    }
    .cando-card__icon-wrapper {
        width: 180px;
        height: 180px;
    }
    .cando-card__icon-wrapper img {
        width: 180px;
        height: 180px;
        object-fit: cover;
    }
}


/* =================================================================
   特徴紹介（ジグザグレイアウト）
================================================================== */
.zigzag-features {
    overflow: hidden; /* PC表示で横にはみ出す要素のため */
}
.zigzag-features__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem; /* 64px */
    max-width: 1023px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}
.feature-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.feature-row__image-wrapper {
    flex-shrink: 0;
    width: 100%;
}
.feature-row__image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem; /* 24px */
}
.feature-row__text-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -5px;
    position: relative;
    z-index: 10;
}
.feature-row--reverse .feature-row__text-wrapper{
    width: 100%;
}
.feature-row.feature-row--reverse{
    flex-direction: column-reverse;
}
.feature-row__text-inner {
    display: flex;
    align-items: flex-start;
}
.feature-row__number {
    font-family: Arial, sans-serif;
    color: var(--color-primary);
    font-size: 3rem; /* 48px */
    font-weight: 700;
    line-height: 1;
    margin-top: -0.25rem;
    margin-right: 10px;
}
.feature-row__title {
    color: var(--color-primary);
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    line-height: 1.3;
    margin: 10px 0;
}
.feature-row__description {
    margin-top: 1rem;
    font-size: 1rem; /* 16px */
    line-height: 1.75;
}

.feature-row__description span{
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    margin-top: 10px;

}
.zigzag-features__note {
    font-size: 14px;
    text-align: center;
    margin: 0;
    display: none;
}

/* PC表示のスタイル */
@media (min-width: 769px) {
    .zigzag-features__wrapper {
        gap: 72px;
        padding: 0;
    }
    .feature-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 64px;
    }
    .feature-row.feature-row--reverse{
        justify-content: space-between;
        flex-direction: row;
    }

    .feature-row__image-wrapper {
        max-width: 547px;
        width: 50%;
    }
    .feature-row__text-wrapper {
        width: auto;
        margin: 0;
        padding-top: 30px;
    }

    .feature-row__number {
        position: absolute;
        right: 100%;
        margin-right: 1rem;
        font-size: 4rem; /* 64px */
    }
    .feature-row--reverse .feature-row__number {
        position: static;
    }
    .feature-row__title{
        margin: 24px 0;
    }
    .feature-row__text-inner {
        margin-left: 0;
    }
    .zigzag-features__note {
        display: block;
    }
}


/* =================================================================
   特徴とモックアップセクション
================================================================== */
.mockup-features__wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* 48px */
    max-width: 981px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}

/* 左カラム：カード群 */
.mockup-features__cards-column {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 16px */
}

.mockup-feature-card {
    background-color: white;
    border-radius: 1.5rem; /* 24px */
    padding: 40px 24px 24px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.mockup-feature-card__icon {
    width: 94px;
    height: 94px;
    flex-shrink: 0;
    object-fit: cover;
}

.mockup-feature-card__title {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    text-align: left;
}

.mockup-feature-card__description {
    margin: 0.75rem 0 0 0;
    font-size: 14px;
    line-height: 1.75;
    text-align: left;
}

/* 右カラム：PCモックアップ */
.mockup-features__image-column {
    order: 1;
    width: 100%;
    max-width: 23.375rem; /* 374px */
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
}

/* PC表示のスタイル */
@media (min-width: 1024px) {
    .mockup-features__wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 51px;
        padding: 0;
    }
    .mockup-features__cards-column {
        order: 1;
        gap: 1.5rem; /* 24px */
    }
    .mockup-features__image-column {
        order: 2;
        margin-left: 0;
        margin-right: 0;
    }
    .mockup-feature-card {
        flex-direction: row;
        text-align: left;
        padding: 21px 27px;
        width: 556px;
    }
    .mockup-feature-card__description{
        font-size: 16px;
    }

}


/* =================================================================
   キャンペーン概要セクション
================================================================== */

.campaign-table {
    margin: 48px 8px 0;
    background-color: white;
    border-radius: 1.5rem; /* 24px */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 48px 32px;
}

.campaign-table__list > *:not(:first-child) {
    border-top: 1px solid #e5e7eb; /* divide-y */
}

.campaign-table__row {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.campaign-table__label {
    font-size: 14px;
    font-weight: 500;
}

.campaign-table__value {
    margin-top: 0.5rem;
    font-size: 14px;
}

.campaign-table__value .price-emphasis {
    color: var(--color-primary);
    font-weight: 700;
}

/* PC表示のスタイル */
@media (min-width: 1024px) {
    .campaign-table {
        margin: 4.5rem 0 0; /* 72px */
        padding: 4.5rem 6rem; /* 72px 96px */
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    .campaign-table__row {
        flex-direction: row;
        align-items: center;
        padding: 1rem;
    }
    .campaign-table__row--align-start {
        align-items: flex-start;
    }
    .campaign-table__label {
        width: 10rem; /* 160px */
        flex-shrink: 0;
    }
    .campaign-table__value {
        margin-top: 0;
        flex-grow: 1;
    }
}

/* =================================================================
   「開始までの流れ」セクション
================================================================== */
.section.flow{
        padding-bottom: 120px;
    }
.flow-chart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 48px 32px;
  gap: 6px;
  margin: 48px 8px 0;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.flow-chart__list {
  padding-left: 0;
}

.flow-chart__list > li {
  list-style-type: none;
  display: flex;
}

.flow-chart__list > li:not(:last-child) {
  margin: 0 0 20px;
}

.flow-chart__list > li .flow-chart__text {
  width: 220px;
  box-sizing: border-box;
  padding: 44px 10px 24px;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  background: #F5F5F5;
  position: relative;
  line-height: 1.5;
  margin: 0;
}
.flow-chart__list > li .flow-chart__text::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 110px solid transparent;
  border-right: 110px solid transparent;
  border-top: 20px solid #F5F5F5;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow-chart__list.short > li .flow-chart__text{
    width: 40px;
    padding: 5px 10px 5px;
    color: #004AA6;
    background: #EDF2F6;
    margin-bottom: -10px;
    writing-mode: vertical-rl;
    text-orientation: upright; 
}
.flow-chart__list.short  > li:not(:last-child) .flow-chart__text {
  padding: 74px 10px 80px;
}
.flow-chart__list.short > li .flow-chart__text::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid #EDF2F6;
  position: absolute;
  bottom: -10px;
  left: 0;
}
/* PC表示のスタイル */

@media (min-width: 769px) {
    .section.flow{
        padding-bottom: 240px;
    }
    .flow-chart {
        flex-direction: column-reverse;
        max-width: 900px;
        padding: 72px 45px;
        gap: 12px;
        margin: 72px auto 0;
    }
    .flow-chart__list{
        display: flex;
        margin: 0;
    }

    .flow-chart__list > li:not(:last-child){
        margin: 0 25px 0 0 ;
    }
    .flow-chart__list > li{
       margin: 0 25px 0 0 ; 
    }

    .flow-chart__list > li .flow-chart__text {
        width: 11vw;
        height: 126px;
        padding: 18px 0 18px 18px;
        font-weight: 400;
        font-size: 1.4vw;
        margin: 0;
        display: flex;
        align-items: center;
    }
    .flow-chart__list > li .flow-chart__text::after {
        content: ' ';
        width: 0;
        height: 0;
        border-top: 63px solid transparent; 
        border-bottom: 63px solid transparent;
        border-left: 25px solid #F5F5F5;
        border-right: 0;
        position: absolute;
        top: 50%;
        right: -25px;
        left: auto;
        transform: translateY(-50%);
        }

    .flow-chart__list.short > li .flow-chart__text{
        width: 100%;
        height: auto;
        padding: 10px 20px 10px;
        color: #004AA6;
        background: #EDF2F6;
        margin-bottom: 0;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
    }
    .flow-chart__list.short  > li:not(:last-child) {
        margin-right: 30px;
    }
    .flow-chart__list.short  > li:not(:last-child) .flow-chart__text {
        padding: 10px 90px 10px 123px;
    }
    .flow-chart__list.short  > li:last-child{
        margin-right: 10px;
    }
    .flow-chart__list.short > li .flow-chart__text::after {
        content: ' ';
        width: 0;
        border-top: 20px solid transparent; 
        border-bottom: 20px solid transparent;
        border-left: 10px solid #EDF2F6; 
        border-right: 0;
        position: absolute;
        top: 50%;
        right: -10px;
        left: auto;
        transform: translateY(-50%);
    }
    .flow-chart__list.short > li:not(:last-child) .flow-chart__text::after{
        border-left: 30px solid #EDF2F6; 
        right: -30px;
    }
}
@media (min-width: 1024px) {
    .flow-chart__list > li .flow-chart__text {
        width: 110px;
        font-size: 14px;
    }
}


/* =================================================================
   フッター
================================================================== */
.footer {
    background-color: var(--color-primary);
    color: white;
}
.footer__inner {
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.footer__nav-list a {
    font-size: 14px;
}

.footer__copyright {
    margin-top: 57px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 1024px) {
    .footer__inner {
        padding-top: 75px;
        padding-bottom: 75px;
    }
    .footer__nav-list {
        flex-direction: row;
        gap: 2.125rem; /* 34px */
    }
    .footer__copyright {
        font-size: 14px;
    }
    .footer__nav-list a:hover {
        text-decoration: underline;
    }
}

.section-subtitle{text-align: center; font-size: 14px;}
/* =================================================================
   PC表示 (1024px以上) のスタイル
================================================================== */
@media (min-width: 769px)  {
.section { padding-top: 6rem; padding-bottom: 6rem; }
}
@media (min-width: 1024px) {
    .container { padding-left: 24px; padding-right: 24px; }
    
    .section-title { font-size: 3rem; line-height: 1.5; }
    .br-sp { display: none; }
    .br-pc { display: block; }
    .section-subtitle { font-size: 16px; line-height: 2; }
    
    .header__nav-pc, .header__actions { display: flex; }
    .header__actions { margin-left: auto; }
    .header__sp-menu-trigger { display: none; }
    
    .hero__main { padding: 6rem 2rem 7rem; }
    .hero__sp-layout { display: none; }
    .hero__pc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
    .campaign-table__row { flex-direction: row; align-items: center; padding: 1rem; }
    .campaign-table__label { width: 10rem; flex-shrink: 0; }
    .campaign-table__value { margin-top: 0; }

    .footer__inner { padding: 75px 0; }
    .footer__nav-list { flex-direction: row; gap: 2.125rem; }
    .footer__copyright { font-size: 14px; }
}



/* =================================================================
   with IT業務支援
================================================================== */
.section--what {
    position: relative;
    z-index: 10;
}
.what__content-wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 0 8px;
}

.what__content-wrapper .section-subtitle{
    margin: 0;
    text-align: left;
}
.services-section__title {
    font-size:32px;
  }

/* サービスカードのグリッドコンテナ (モバイル: 2列) */
.service-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.service-cards-grid::after{
    content: "";
    flex: 0 1 calc(50% - 7.5px);
    max-width: 226px;
    display: block;
}

/* 個々のサービスカード (モバイル: 2列) */
.service-card {
  background-color: white;
  border-radius: 16px;
  padding: 69px 10px 28px;
  box-shadow: 0 0 12px 4px rgba(218, 231, 241, 0.5);
  text-align: center;
  flex: 0 1 calc(50% - 7.5px); 
  max-width: 226px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* アイコン部分 */
.service-card__icon {
  width: 100px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* タイトル部分 */
.service-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #004AA6;
}

/* 説明文部分 */
.service-card__description {
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}


/* PC版のスタイル (min-width: 769px) */
@media (min-width: 769px) {
    .section--what {
    margin-top: -7rem;
}
    .what__content-wrapper {
        gap: 72px;
    }
  .services-section__title {
    font-size: 48px;
  }

  .service-cards-grid {
    gap: 24px;
    justify-content: center;
  }
  .service-cards-grid::after{
    content: none;
  }

  .service-card {
    /* PCでの3列表示 */
    flex: 0 1 calc(25% - 24px); 
    max-width: 226px;
    padding: 69px 17px 52px;
  }

  .service-card__title {
    font-size: 16px;
  }

  .service-card__description {
    font-size: 14px;
    min-height: 60px;
  }
  .what__content-wrapper .section-subtitle{
    text-align: center;
}
}
/* =================================================================
   サービスの特徴
================================================================== */
.zigzag-features.service .zigzag-features__wrapper{
    gap: 48px;
}
.zigzag-features.service .zigzag-features__wrapper .section-subtitle{
    display: none;
}
.zigzag-features.service .feature-row__text-inner{
    display: block;
}
.feature-row__table-wrapper{
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 32px;
}
.zigzag-features.service .feature-row__title{
    font-size: 24px;
}
.zigzag-features.service .feature-row__description{
    font-size: 14px;
    font-weight: 500;
    margin-top: 24px;
}
.zigzag-features.service .feature-row{
    gap: 24px;
}
.zigzag-features.service .feature-row .feature-row__text-inner .feature-row__image{
    width: 63.25%;
    border-radius: 0;
    margin-left: auto;
    display: block;
}
.zigzag-features.service .feature-row.feature-row--reverse .feature-row__text-inner .feature-row__image{
    width: 56.55%;
}
.table__title{
    display: none;
}
/* テーブルの基本スタイル */
.support-table {
  width: 100%;
  border-collapse: collapse;
}

.support-table tr {
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
}
.support-table tr + tr{
    padding-top: 32px;
}

/* 最後の行のボーダーはなし */
.support-table tr:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* ヘッダーセル (左列) */
.support-table__header {
  vertical-align: top;
  text-align: left;
  font-weight: 500;
  box-sizing: border-box;
  color: #212121;
  font-size: 14px;
}

/* コンテンツセル (右列) */
.support-table__content {
  vertical-align: top;
  text-align: left;
  box-sizing: border-box;
  color: #212121;
}

/* コンテンツセル内のリスト */
.support-table__content ul {
  list-style: none; /* リストの点を消す */
  padding: 0;
  margin: 0;
}

.support-table__content li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
font-weight: 500;
  font-size: 14px; 
}

/* リストの箇条書きの点を再現 (カスタム) */
.support-table__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  color: #212121;
  font-size: 14px;
  line-height: 1;
}

/* 最後のリスト項目の下マージンをなくす */
.support-table__content li:last-child {
  margin-bottom: 0;
}


/* --- PC版のスタイル --- */
@media (min-width: 769px) {
    .zigzag-features.service .zigzag-features__wrapper{
        max-width: 955px;
        gap: 72px;
    }
    .zigzag-features.service .feature-row__image-wrapper{
         width: 60%;
    }
    .zigzag-features.service .feature-row--reverse .feature-row__image-wrapper{
        max-width: 554px;
        width: 60%;
    }
    .zigzag-features.service .zigzag-features__wrapper .section-subtitle{
        display: block;
        margin: 0;
    }
    .zigzag-features.service .feature-row{
        gap: 40px;
    }
    .zigzag-features.service .feature-row__description{
        font-size: 16px;
    }
    .zigzag-features.service .feature-row .feature-row__text-inner .feature-row__image{
        width: 254px;
    }
    .zigzag-features.service .feature-row.feature-row--reverse .feature-row__text-inner .feature-row__image{
        width: 269px;
    }
    .zigzag-features.service .feature-row--reverse .feature-row__text-wrapper{
        padding-left: 30px;
    }
    .zigzag-features.service .feature-row:not(.feature-row--reverse) .feature-row__title{
        position: relative;
        left: -70px;
    }
        
    .table__title{
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #212121;
        margin-bottom: 10px;
    }
    .support-table {
        border: 1px solid #ccc;
    }
    .support-table tr {
        border-bottom: 1px solid #ccc;
        flex-direction: row;
        gap: 0;
        padding-bottom: 0;
    }
    .support-table tr + tr{
        padding-top: 0;
    }
    .support-table th{
        border-right: 1px solid #ccc;
    }
    .support-table__header {
        padding: 12px 16px;
        width: 30%;
    }

    .support-table__content {
        padding: 12px;
        width: 70%;
    }
}
/* =================================================================
   料金プラン
================================================================== */
.section.plan{
    padding-top: 6rem;
    padding-bottom: 80px;
}
.plan .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-left: 32px;
    padding-right: 32px;
}
.plan__wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 32px;
  margin-bottom: 40px;
}


.plan-category__title {
  background-color: #323232;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 6px;
  border-radius: 8px 8px 0 0;
  margin-bottom: 40px;
  height: 30px;
  line-height: 1;
}

/* --- プランカード全体を囲むラッパー --- */
.plan-cards-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- 各プランカード --- */
.plan-card {
  padding: 0 16px 60px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
}
.plan-card + .plan-card{
     padding: 60px 16px 70px;
}

.plan-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 32px;
  color: #212121;
}

.plan-card__hours {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.plan-card__price {
  font-size: 40px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 42px;
  line-height: 1;
}

.plan-card__price-yen,
.plan-card__price-unit {
  font-size: 14px;
  vertical-align: middle;
  font-weight: 500;
}

.plan-card__price-yen {
    margin-right: 2px;
}
.plan-card__price-unit {
    margin-left: 2px;
}

.plan-card__button{
    width: 180px;
    padding: 10px 24px;
    box-shadow: 0px 4px 20px 12px rgba(0, 74, 166, 0.12);transition: box-shadow 0.3s;
    font-size: 13px;
}


/* --- オプションプランカード固有のスタイル --- */
.plan-card--option {
  padding-bottom: 38px; 
  text-align: left;
}

.plan-card--option .plan-card__title,
.plan-card--option .plan-card__hours,
.plan-card--option .plan-card__price {
    text-align: center; 
    width: 100%;
}
.plan-card--option .plan-card__price{
    position: relative;
    margin-bottom: 56px;
}
.plan-card--option .plan-card__price::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24px;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    transform: translateX(-50%);
}
.plan__inner + .plan__inner .plan-category__title{
    background-color: #979797;
}
.plan-card:last-child.plan-card--option{
    border-bottom: none;
    padding: 38px 24px 0;
}

.plan-card__notes-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  margin-bottom: 0;
  width: 100%;
}

.plan-card__notes-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
}

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

.plan-card__notes-list li::before {
  content: "•"; 
  position: absolute;
  left: 0;
  top: 2px;
  color: #212121;
  font-size: 1em;
  line-height: 1;
}

.plan-card__notes-asterisk {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}



/* --- 注意事項セクション --- */
.notes-section {
  margin-top: 32px;
  margin-bottom: 72px;
}

.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notes-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #212121;
}

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

.notes-list li::before {
  content: "•"; /* 点の文字 */
  position: absolute;
  left: 0;
  top: 2px;
  color: #212121; /* 点の色 */
  font-size: 14px;
  line-height: 1;
}

.notes-list__sub-text {
  vertical-align: middle;
  margin-left: 5px;
}


/* --- PC版のスタイル --- */
@media (min-width: 769px) {
    .plan__wrapper {
        padding: 64px 100px;
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
     }
     .plan__inner{
        box-sizing: content-box;
    }
    .plan__inner + .plan__inner{
        margin-top: 32px;
    }

        
  .plan-category__title {
    padding: 6px 30px;
    margin: 0;
  }

  /* 基本コースとオプションカードを横並びにする */
  .plan-cards-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding: 32px 40px 48px;
    position: relative;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .plan-cards-wrapper::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 88%;
        height: 1px;
        background-color: #ccc;
        transform: translateX(-50%);
    }
    .plan__inner + .plan__inner .plan-cards-wrapper{
        border-bottom: 1px solid #ccc;
        border-radius: 0 0 8px 8px;
    }

  .plan-card {
    flex: 0 1 calc(50% - 16px);
    max-width: 284px;
    padding: 16px 0 24px;
    border: none;
    position: relative;
  }
  .plan-card::after {
        content: "";
        position: absolute;
        top: 0;
        right: -15px;
        bottom: 0;
        width: 1px;
        background-color: #ccc;
        transform: translateX(-50%);
    }
  .plan-card + .plan-card{
    padding: 16px 0 24px;
  }
  .plan-card + .plan-card::after {
        content: none;
    }
    .plan-card__button:hover {box-shadow:none; }


  /* オプションカード固有のスタイル調整 */

  .plan-card--option .plan-card__notes-list {
      text-align: left; /* リストは左寄せを維持 */
  }
  .plan-card.plan-card--option{
    padding: 16px 24px 24px;
}
.plan-card:last-child.plan-card--option{
    padding: 16px 24px 24px;
}
.plan__inner + .plan__inner .plan-cards-wrapper::after {content: none;}


  /* 注意事項セクション */
  .notes-section {
    padding:32px 64px 60px;
    margin-top: 0;
    margin-bottom: 32px;
    max-width: 700px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
  }

  .notes-list li {
    margin-bottom: 10px; /* PCでのマージン */
  }
}
/* =================================================================
   Velox RPA導入支援
================================================================== */
.rpa-table {
    margin: 48px 8px 0;
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 48px 32px;
}


.rpa-table__row {
    display: flex;
    flex-direction: column;
    text-align: left;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 32px;
    padding-bottom: 32px;
}

.rpa-table__label{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}
.rpa-table__values{
    width: 100%;
}
.rpa-table__value {
    font-size: 14px;
    font-weight: 400;
}
.rpa-table__row:first-child .rpa-table__value:not(:last-child) {
    border-bottom: 1px solid #cccccc;
    margin-bottom: 32px;
    padding-bottom: 32px;
}
.section.fee .rpa-table__row:first-child{
        border-top: 1px solid #cccccc;
        padding-top: 32px;
        margin-bottom: 0;
    }
.rpa-table__value span{
    color: #212121;
    
}
.rpa-table__value p{
    color: #666666;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}
.rpa-table__row:first-child .rpa-table__value p{
    margin: 8px 0 0 0;
}
.rpa-table__value p span{
    font-size: 12px;
    color: #666666;
}

/* PC表示のスタイル */
@media (min-width: 769px) {
    .rpa-table {
        margin: 72px 0 0;
        padding: 72px 96px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .rpa-table__row {
        flex-direction: row;
        align-items: flex-start;
        padding: 24px 0;
        margin-bottom: 0;
    }
    .rpa-table__row:first-child{
        border-top: 1px solid #cccccc;
    }

    .rpa-table__label {
        width: 180px;
        flex-shrink: 0;
        margin-bottom: 0;
        padding:0 16px;
    }
    .rpa-table__value {
        margin-top: 0;
        flex-grow: 1;
        padding: 0 16px;
    }
    .rpa-table__row:first-child .rpa-table__value:not(:last-child) {
        border-bottom: 1px solid #cccccc;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }
}
.section.cta{
        padding-bottom: 120px
    }
.cta__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.button--cta{
    width: 240px;
    height: 57px;
    font-size: 16px;
    padding: 10px 24px;
    box-shadow: 0px 4px 20px 12px rgba(0, 74, 166, 0.12);
    transition: box-shadow 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 769px) {
    .section.cta{
        padding-bottom: 13rem;
    }
    .cta__wrapper{
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    .button--cta{
        width: 443px;
        height: 80px;
        font-size: 24px;
        padding: 10px 24px;
    }

    .button--cta.button--primary:hover { background-color: var(--color-primary-dark);box-shadow:none; }
}

section{
    margin: 0;
}
html{
    margin: 0 !important;
}
th, td{
    border: none!important;
}