/* reset */
._title.animate-in>span::before,
._title.animate-in>span::after{
    display: none;
}
/* 営業部TOP */

/* ===== Header Navigation ===== */
.sales-top-header {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    box-sizing: border-box;
}

.sales-top-header .header__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
}

.sales-top-header.is-menu-open .header__backdrop {
    display: block;
}

.sales-top-header .header__bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1856px;
    margin: 0 auto;
    padding: 0 28px;
    height: 72px;
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    box-sizing: border-box;
}

.sales-top-header .header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    padding: 0;
    height: auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    max-width: none;
    margin: 0;
}
.sales-top-header .header-logo{
    width: auto;
}
.sales-top-header .header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.sales-top-header .header__nav {
    display: flex;
    align-items: center;
}

.sales-top-header .nav__items {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.sales-top-header .nav-items__item a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
    transition: color 0.2s;
}

.sales-top-header .nav-items__item a:hover {
    color: #0179D5;
}

.sales-top-header .nav-items__item a p {
    margin: 0;
}

.sales-top-header .nav-cta {
    list-style: none;
}

.sales-top-header .nav-cta-button {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    background: linear-gradient(90deg, #44bee1 0%, #216eda 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
    transition: opacity 0.2s;
}
.sales-top-header .nav-cta-button svg{
    width: 32px;
    height: 32px;
}

.sales-top-header .nav-cta-button:hover {
    opacity: 0.88;
}

.sales-top-header .header__hamburger {
    display: none;
}

.sales-top-header .dropdown-button{
    display: none;
}

@media screen and (max-width: 1400px) {
    .sales-top-header {
        top: 12px;
        padding: 0 16px;
    }

    .sales-top-header .header__bar {
        height: 60px;
        padding: 0 20px;
        border-radius: 40px;
        gap: 0;
    }

    .sales-top-header .header__inner {
        flex: 1;
    }

    .sales-top-header .header__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .sales-top-header .header__hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #333;
        border-radius: 2px;
    }

    .sales-top-header .header-logo img {
        height: 32px;
    }

    .sales-top-header .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        width: min(360px, 88vw);
        height: 100dvh;
        margin: 0;
        padding: 96px 24px 32px;
        box-sizing: border-box;
        background: #fff;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .sales-top-header .header__nav.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

    .sales-top-header .nav__items {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .sales-top-header .nav-items__item {
        border-bottom: 1px solid #eee;
    }

    .sales-top-header .nav-items__item a {
        padding: 16px 8px;
        font-size: 16px;
    }

    .sales-top-header .nav-cta {
        margin-top: 16px;
    }

    .sales-top-header .nav-cta-button {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .sales-top-header .header__hamburger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .sales-top-header .header__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .sales-top-header .header__hamburger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .sales-top-header .header__hamburger span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
}

body.is-nav-open {
    overflow: hidden;
}

@media screen and (min-width: 1401px) {
    .sales-top-header .header__nav {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;
        box-shadow: none;
        transform: none;
        pointer-events: auto;
        overflow: visible;
    }

    .sales-top-header .header__backdrop {
        display: none !important;
    }
}

/* 共通 */
._title{
    text-align: center;
}
._title span{
    color: #0179D5;
    /* PC/Montserrat_p */
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 27.2px */
}
._title h2{
    color:#333;
    text-align: center;

    /* PC/NotoSansJP_H2 */
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%; /* 54.4px */
}
._title::after{
    content: "";
    display: block;
    width: 154px;
    height: 3px;
    background: #0179D5;
    border-radius: 1px;
    margin: 10px auto 0;
}
.article-tag{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
    line-height: 1.6;
    width: fit-content;
}
/* ロゴセクション タイトル（左寄せ） */
._title._title-logo {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto 32px;
    text-align: left;
}
._title._title-logo span {
    display: block;
    color: #0179D5;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 170%;
}
._title._title-logo .logo-slider-title {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
._title._title-logo .logo-slider-title h2 {
    margin: 0;
    color: #333;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-weight: 700;
    line-height: 170%;
    text-align: left;
}
._title._title-logo .logo-slider-title p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
._title._title-logo::after {
    content: "";
    display: block;
    width: min(679px, 100%);
    height: 3px;
    background: #0179D5;
    border-radius: 1px;
    margin: 10px 0 0;
}

/* ソリューションセクション */
#solution .solution-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}

.solution-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #D6EAF5;
    border-radius: 8px;
    padding: 12px 16px;
    box-sizing: border-box;
    min-height: 90px;
}

.solution-item-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.solution-item-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.solution-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.6;
    width: fit-content;
    white-space: nowrap;
}

.solution-tag._blue {
    background: #0179D5;
    color: #fff;
}

.solution-tag._line {
    background: transparent;
    border: 1px solid #0AA3D5;
    color: #0AA3D5;
}

.solution-item-title h3 {
    margin: 0;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
}

.solution-item-title h3 span {
    font-size: 12px;
    font-weight: 400;
    color: #555;
}

.solution-item-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 45px;
    padding: 0 16px;
    border-radius: 23px;
    border: 2px solid #333;
    text-decoration: none;
    background: #fff;
    flex-shrink: 0;
    gap: 4px;
}

.solution-item-btn p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.solution-item-btn p::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 10px;
    background-image: url(../../img/sales/top/solution-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 6px;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    #solution .solution-list {
        grid-template-columns: 1fr;
    }
    .solution-item {
        gap: 12px;
    }
    .solution-item-icon {
        width: 52px;
        height: 52px;
    }
    .solution-item-title{
        width: calc(100% - 70px);
        flex:none;
        flex-direction: row;
        justify-content: left;
        align-items: center;

    }
    .solution-item-title h3 {
        font-size: 15px;
    }
    .solution-item-btn {
        width: 100%;
        min-width: 110px;
        height: 38px;
        font-size: 12px;
        box-sizing: border-box;
    }
}

/* MV */
.mv{
    position: relative;
    min-height: 70svh;
    box-sizing: border-box;
    background-image: url(../../img/sales/top/mv-bg.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.mv-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
}
.mv-inner h1{
    font-size: max(68px, 4.25vw);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
}
.mv-inner p{
    font-size: max(16px, 1.25vw);
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}
.mv_btn_layout{
    display: flex;
    gap: 24px;
    align-items: center;
}
.mv-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 8px 36px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    box-sizing: border-box;
}
.mv-btn p{
    margin: 0;
    font-size: max(32px, 2vw);
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
}

/* ===== .sales-top スコープ（page-sales.php 専用） ===== */
.sales-top {
    overflow: hidden;
    background: #fff;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.sales-top .mv {
    position: relative;
    height: 70svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
    box-sizing: border-box;
    background-image: url(../../img/sales/top/mv-bg.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.sales-top .mv > p {
    margin: 0 0 36px;
    max-width: 672px;
    font-size: 20px;
    font-weight: 500;
    line-height: 29.25px;
    color: #fff;
}

.sales-top .mv_btn_layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.sales-top .mv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 8px 36px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    box-sizing: border-box;
}

.sales-top .mv-btn p {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
}

.sales-top .mv_btn_layout .mv-btn:first-child {
    background: linear-gradient(90deg, #44bee1 0%, #216eda 100%);
    border: none;
}

.sales-top .mv_btn_layout .mv-btn:first-child p {
    color: #fff;
}

.sales-top .mv_btn_layout .mv-btn:last-child {
    border: 3px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #44bee1 0%, #216eda 100%) border-box;
}

.sales-top .mv_btn_layout .mv-btn:last-child p {
    background: linear-gradient(90deg, #44bee1 0%, #216eda 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.sales-top #logo{
    padding: 40px 0;
}
.sales-top #solution,
.sales-top #column,
.sales-top #download,
.sales-top #case {
    padding: 96px 0;
}

.sales-top #solution {
    background-image: url(../../img/sales/top/solution-bg.webp);
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

/* 中央見出し */
.sales-top ._title._title-center {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto 40px;
    text-align: center;
}

.sales-top ._title._title-center span {
    display: block;
    font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: #0179d5;
    margin-bottom: 0;
}

.sales-top ._title._title-center h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    color: #333;
}

.sales-top ._title._title-center::after {
    content: "";
    display: block;
    width: 154px;
    height: 3px;
    margin: 10px auto 0;
    background: #0179d5;
    border-radius: 1px;
}

.sales-top #solution > p {
    width: min(737px, calc(100% - 48px));
    margin: 0 auto 56px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #333;
}

.sales-top #solution .solution-list,
.sales-top #column .article-list,
.sales-top #download .article-list,
.sales-top #case .content-list {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}
.sales-top #case .content-list {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

/* GUIDES 見出し（左寄せ） */
.sales-top #column ._title._title-guides {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto 50px;
    text-align: left;
}

.sales-top #column ._title._title-guides .guides-heading-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    line-height: 1.7;
}

.sales-top #column ._title._title-guides span {
    font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0179d5;
}

.sales-top #column ._title._title-guides h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.sales-top #column ._title._title-guides::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 504px;
    height: 3px;
    margin: 0;
    background: #0179d5;
    border-radius: 1px;
}

.sales-top #column .column-inner {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.sales-top #column .article-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
}

.sales-top #column .article-item {
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.sales-top #column .article-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.sales-top #column .article-item-img {
    height: 164px;
    background: #e4e4e7;
    overflow: hidden;
}

.sales-top #column .article-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-top #column .article-item-text {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sales-top #column .article-item-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 24.75px;
    color: #000;
}

.sales-top #column .article-item-date {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #71717a;
}

.sales-top #column .article-tag-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sales-top #column .article-tag p {
    margin: 0;
    padding: 2px 5px;
    border-radius: 4px;
    background: #0179d5;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

/* 資料ダウンロード */
.sales-top #download {
    background: #f7f7f7;
}

.sales-top #download .download-block {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.sales-top #download .download-block + .download-block {
    margin-top: 51px;
}

.sales-top #download .download-category {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #c0dbe5;
    display: flex;
    justify-content: center;
    padding-bottom: 1px;
}

.sales-top #download .download-category p {
    margin: 0;
    padding: 0 16px 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: #1e1e1e;
    border-bottom: 4px solid #333;
    margin-bottom: -2px;
}

.sales-top #download .article-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.sales-top #download .article-item {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.sales-top #download .article-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sales-top #download .article-item-img {
    height: 194px;
    background: #f3f3f3;
    overflow: hidden;
}

.sales-top #download .article-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-top #download .article-item-text {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.sales-top #download .article-item-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
    color: #161c27;
}

.sales-top #download .article-tag p {
    margin: 0;
    padding: 1px 8px;
    border: 1px solid #6d6d6d;
    border-radius: 82px;
    background: transparent;
    color: #6d6d6d;
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
}

.sales-top #column .article-btn,
.sales-top #download .article-btn {
    margin: 0;
    width: 400px;
    max-width: calc(100% - 32px);
    min-height: 62px;
    padding: 0 16px;
    border-radius: 40px;
    background: linear-gradient(90deg, #44bee1 0%, #216eda 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
}

.sales-top #column .article-btn p,
.sales-top #download .article-btn p {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    color: #fff;
}

/* 支援実績カード */
.sales-top #case .content-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sales-top .case-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.sales-top .case-item > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    gap: 16px;
    box-sizing: border-box;
}

.sales-top .case-item__img {
    position: relative;
    aspect-ratio: 432 / 253;
    border-radius: 8px;
    overflow: hidden;
    background: #e4e4e7;
}

.sales-top .case-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sales-top .case-item__logo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 46%;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sales-top .case-item__logo img {
    max-height: 44px;
    width: auto;
    object-fit: contain;
}

.sales-top .case-item__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.sales-top .case-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sales-top .case-tag {
    padding: 3px 12px;
    border-radius: 20px;
    background: #0179d5;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    white-space: nowrap;
}

.sales-top .case-item__title {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
}
.sales-top .case-item__name{
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
}

.sales-top .case-item__company {
    margin-top: auto;
    border-top: 1px solid #e4e4e7;
    padding-top: 12px;
}

.sales-top .case-item__company p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 960px) {
    .sales-top .mv{
        height: 80svh;
    }
    .sales-top .mv h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .sales-top .mv > p {
        font-size: 16px;
        line-height: 1.6;
    }

    .sales-top .mv-btn p {
        font-size: 18px;
    }

    .sales-top .mv-btn {
        min-height: 56px;
    }

    .sales-top #column .article-list,
    .sales-top #download .article-list,
    .sales-top #case .content-list {
        grid-template-columns: 1fr;
    }

    .sales-top #column .article-btn,
    .sales-top #download .article-btn {
        width: 100%;
    }

    .sales-top #column .article-btn p,
    .sales-top #download .article-btn p {
        font-size: 18px;
    }
}