* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
    color: #111;
    background: #fff;
}

html,
body {
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 40px;
    left: 40px;
    right: 40px;
    z-index: 10;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    z-index: 9999;
    overflow: visible;
}

.header__inner {
    height: 92px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 42px;
    justify-content: space-between;
    overflow: visible;
}



.logo {
    width: 300px;
    height: auto;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
}




.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: none;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.contact-btn {
    width: 170px;
    height: 56px;
    border-radius: 8px;
    background: #14245b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-weight: 700;
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        background-color .35s ease,
        box-shadow .35s ease;
}

.contact-btn:hover {
    background: #1a2f6f;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(20, 36, 91, .20);
}

.contact-btn:hover {
    background: #1a2f6f;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(20, 36, 91, .20);
}

.contact-btn span {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);
}

.contact-btn:hover span {
    transform: translateX(8px);
}

.contact-btn:hover {
    background: #1a2f6f;
    transform: translateY(-3px);
}

.contact-btn:hover span {
    transform: translateX(8px);
}

.hero {
    height: 90vh;
}

.hero__image {
    position: relative;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 90vh;
    background-image: url("");
    background-size: cover;
    background-position: center;
    margin-left: 8%;
}

.hero-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transition:
        opacity 1.8s ease;
}

/* 
.hero__image {
    position: absolute;
    width: 100%;
    height: 90vh;
    background-image: url("");
    background-size: cover;
    background-position: center;
    margin-left: 8%;
} */

.hero__copy {
    position: absolute;
    top: 34%;
    width: 80%;
    padding: 72px 70px;
    background: linear-gradient(90deg,
            rgba(20, 36, 91, 0.95) 0%,
            rgba(30, 80, 120, 0.70) 40%,
            rgba(24, 99, 129, 0.50)70%,
            rgba(20, 36, 91, 0.0)100%);

    color: #fff;
}

.hero-slide:nth-child(1) {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/hero1.png");
}

.hero-slide:nth-child(2) {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/hero2.png");
}

.hero-slide:nth-child(3) {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/hero3.png");
}

.hero-slide:nth-child(4) {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/hero4.png");
}


.nav__item {
    position: relative;
}

.hero-slide {
    transform: scale(1);
    transition:
        opacity 1.8s ease,
        transform 5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.nav__link {
    background: none;
    border: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0px;
    transition:
        color .3s ease,
        transform .3s ease;
}

.nav__link:hover {
    color: #2f88d6;
}

.nav__link:hover {
    color: #2f88d6;
}

.nav__link:hover {
    transform: translateY(-2px);
}

.nav__link i {
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1);
}

.nav__item:hover .nav__link i {
    transform: rotate(180deg);
}

.nav__item.active .nav__link i {
    transform: rotate(180deg);
}

.nav__link {
    position: relative;
}

.nav__link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #2f88d6;

    transition:
        width .35s cubic-bezier(.22, 1, .36, 1);
}

.nav__link:hover::after {
    width: 100%;
}

/* 矢印アニメーション */
.nav__link i {
    font-size: 12px;
    transition: transform 0.3s;
}

/* 開いてるとき回転 */
.nav__item.active .nav__link i {
    transform: rotate(180deg);
}

/* ドロップダウン */
.dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 12px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
    transition:
        opacity .3s ease,
        transform .3s cubic-bezier(.22, 1, .36, 1);
}



.nav__link:hover {
    color: #2f88d6;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__item:hover .nav__link i {
    transform: rotate(180deg);
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown a:hover {
    /* background: #f5f7fb; */
    opacity: 0.8;
}

/* 開いた状態 */
.nav__item.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero__copy h1 {
    margin: 0;
    font-size: 2.4vw;
    line-height: 1.8;
    letter-spacing: .04em;
    font-weight: 800;
}

.hero__copy p {
    margin: 22px 0 0;
    font-size: 1.2vh;
    font-weight: 800;
    letter-spacing: .16em;
    width: 50%;
}

.news-card {
    position: absolute;
    right: 5%;
    bottom: 16%;
    width: 40%;
    min-height: 120px;
    padding: 30px 70px 28px 34px;
    background: #fff;
    border-radius: 6px;
    display: block;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 700;
}

.news-card__meta time {
    font-size: 16px;
}

.news-card__meta span {
    padding: 4px 14px;
    border-radius: 999px;
    background: #2e83d0;
    color: #fff;
    font-size: 13px;
}

.news-card p {
    margin: 16px 0 0;
    font-size: 16px;
    font-weight: 700;
}

.news-card__arrow {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    color: #14245b;
    font-size: 22px;
    font-weight: 700;
}




/* ================
トップページ
================ */

.case-section {
    padding: 110px 0 0px;
    background: #fff;
}

.section__inner {
    width: calc(100% - 208px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 0px;
}

.section-heading__en {
    margin: 0 0 18px;
    color: #c8c8c8;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .12em;
}

.section-heading h2 {
    margin: 0;
    color: #14245b;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 800;
}

.section-heading__text {
    margin: 34px 0 0;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 600;
}

.case-cards {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.case-cards a {
    position: relative;
}

.case-card {
    position: relative;
    min-height: 228px;
    padding: 28px 42px 30px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(20, 36, 91, 0.9) 0%,
            rgba(20, 72, 100, 0.65) 55%,
            rgba(20, 72, 100, 0.22) 100%);
    z-index: 0;
}

.case-card>* {
    position: relative;
    z-index: 1;
}

/* 
.case-card--funding {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-funding.png");
}

.case-card--stock {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-stock.png");
}

.case-card--ma {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-ma.png");
} */

.case-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: #14245b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.case-card__icon img {
    width: 20px;
}

.case-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: .04em;
}

.case-card p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.case-card__arrow {
    position: absolute;
    right: 26px;
    bottom: 34px;
    width: 38px;
    height: 20px;
    background: #14245b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 2px;
}


.service-section {
    /* padding: 120px 0; */
    background: #eef5fa;
}



/* 共通：紺色丸ボタン */
.primary-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 180px;
    height: 42px;
    padding: 0 24px;

    background: #14245b;
    color: #fff;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: .04em;
}

.primary-pill span {
    font-size: 15px;
}

/* 共通：薄グレーのリンク */
.service-link-list {
    display: grid;
    gap: 10px;
}

.service-link-list--two {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.service-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 40px;
    padding: 0 18px;

    background: #e8edf5;
    border-radius: 6px;

    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.service-link-list a span {
    color: #14245b;
}

/* 大カード */
.service-main {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1.65fr;

    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.service-main__image {
    background: #f7f9fc;
}

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

.service-main__content {
    padding: 46px 54px;
}

.service-main__text {
    margin: 20px 0 28px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

/* 小カード */
.service-cards {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.service-card {
    background: #fff;
    border-radius: 14px;

}

.service-card__image {
    height: 200px;
    background: #f7f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px 14px 0 0;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.service-card__body {
    padding: 24px 22px 32px;
}

.service-card__body p {
    margin: 18px 0 22px;
    color: #666;
    font-size: 13px;
    font-weight: 700;
}


.ma-flow{
    margin-top:60px;
}


.company-target-intro {
    margin-top: 40px;
    margin-bottom: 30px;
}

.company-target-list {
    background: #f7f7f7;
    padding: 28px;
    border-radius: 10px;
}

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

.company-target-item + .company-target-item {
    margin-top: 16px;
}

.company-target-label {
    min-width: 90px;
    padding: 8px 16px;
    border-radius: 999px;
    background:  #1E2C5B;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.company-target-item p {
    margin: 0;
    line-height: 1.8;
}

.company-target-message {
    margin-top: 30px;
    padding: 32px;
    background: #fff;
    border-radius: 10px;
}

.company-target-message p {
    margin: 0;
    line-height: 2;
}

.company-merit {
    /* padding: 120px 0; */
    background: #F4F6F6;
}



.consulting-area-section > .section__inner > p {
    margin-top: 28px;
    line-height: 2;
}

.consulting-area-grid {
    display: grid;
    gap: 28px;
}

.consulting-area-grid--top {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 46px;
}

.consulting-area-grid--bottom {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 58px;
}

.consulting-area-card {
    display: flex;
    align-items: center;
    min-height: 180px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 34, 80, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consulting-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(15, 34, 80, 0.12);
}

.consulting-area-card__text {
    width: 48%;
    padding: 30px;
}

.consulting-area-card__text h3 {
    margin: 0;
    color: var(--main-color);
    font-size: 18px;
    line-height: 1.5;
}

.consulting-area-card__image {
    width: 52%;
    height: 180px;
}



.consulting-area-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



@media screen and (max-width: 900px) {
    .consulting-area-grid--top,
    .consulting-area-grid--bottom {
        grid-template-columns: 1fr;
    }

    .consulting-area-card {
        min-height: auto;
    }
}

@media screen and (max-width: 560px) {
    /* .consulting-area-section {
        padding: 80px 0;
    } */

    .consulting-area-card {
        flex-direction: column;
        align-items: stretch;
    }

    .consulting-area-card__text,
    .consulting-area-card__image {
        width: 100%;
    }

    .consulting-area-card__image {
        height: 180px;
    }

    .consulting-area-card__text h3 {
        font-size: 21px;
    }
}



/* .privacy-policy {
    padding: 100px 0;
} */

.privacy-intro {
    /* max-width: 900px; */
    margin: 0 auto 60px;
}

.privacy-intro p {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.policy-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 80px;
}

.policy-card {
    padding: 35px 0;
    border-bottom: 1px solid #e5e5e5;
}

.policy-card:first-child {
    border-top: 1px solid #e5e5e5;
}

.policy-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #0c2a57;
    margin-bottom: 10px;
    letter-spacing: .1em;
}

.policy-card h3 {
    font-size: 20px;
    color: #0c2a57;
    margin-bottom: 15px;
}

.policy-card p {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.policy-contact {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 2px solid #0c2a57;
}

.policy-contact h3 {
    font-size: 20px;
    color: #0c2a57;
    margin-bottom: 10px;
}

.policy-contact p {
    font-size: 16px;
    line-height: 2;
    color: #555;
    margin-bottom: 35px;
}

.policy-contact p:last-child {
    margin-bottom: 0;
}

.policy-card:last-child {
    border-bottom: none;
}

.policy-sub-list li{
    list-style: none;
}

.policy-card h4 {
    margin: 24px 0 12px;
    font-size: 18px;
    color: #0c2a57;
}

.policy-sub-list {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-sub-list li {
    margin-bottom: 10px;
    line-height: 1.9;
    color: #555;
}



.company-merit-list {
    margin-top: 50px;
}

.company-merit-item {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    border-bottom: 4px solid #8fb7ff;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.company-merit-item + .company-merit-item {
    margin-top: 24px;
}

.company-merit-image {
    width: 240px;
    flex-shrink: 0;
}

.company-merit-image img {
    width: 100%;
    display: block;
}

.company-merit-content span {
    color: #3d82f6;
    font-size: 24px;
    font-weight: 700;
}

.company-merit-content h3 {
    margin: 8px 0 16px;
    font-size: 20px;
    color: var(--main-color);
}

.company-merit-content p {
    line-height: 2;
}



.strength-section {
    /* padding: 120px 0; */
    background: #F7F7F7;
}

.section__inner {
    width: calc(100% - 8%);
    max-width: 1400px;
    margin: 0 auto;
}

.stock-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.stock-card {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 165px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.stock-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(20, 36, 91, 0.12);
}

.stock-card__text {
    display: flex;
    align-items: center;
    padding: 34px 30px;
}


.stock-card__text h3 {
    position: relative;
    color: #14245b;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
}


/* ヘッダー */


.dropdown--mega {

    padding:20px 24px 20px 24px;

    gap: 3%;

    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);

    z-index: 1000;
    overflow: hidden;
}

.nav__item.active .dropdown--mega {
    display: flex;
    max-width: 840px;
    justify-content: center;
    gap: 20px;
}

.dropdown-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
    text-decoration: none;
    color: #0c2a57;
    font-weight: 700;
}

.dropdown-card img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 2px;
}

.dropdown-card span {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    word-break: keep-all;
    writing-mode: horizontal-tb;
}

.dropdown--mega .dropdown-card {
    padding: 0;
    background: transparent;
}

/* 企業情報だけ今の位置のまま */
.nav__item--company .dropdown--mega {
    position: absolute;
    top: calc(100% + 18px);
    /* left: 50%; */
}

/* 事例紹介・サービスはメニュー真下に落とす */
.nav__item--case,
.nav__item--service,
.nav__item--company {
    position: relative;
}

.nav__item--case .dropdown--mega,
.nav__item--service .dropdown--mega {
    position: absolute;
    top: calc(100% + 18px);
    /* left: 50%; */

}

/* 事例紹介 */
.nav__item--case .dropdown--mega {
    width: max-content;
}

/* サービス */
.nav__item--service .dropdown--mega {
    width: max-content;
    max-width: 90vw;
    flex-wrap: wrap;
}


.dropdown-card{
    max-width: 180px;
    width: 11vw;
}



/* ヘッダーここまで */

.stock-card__image {
    height: 100%;
}

.stock-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.securities-wrap {
    background: #F4F6F6;
}



/* リスト */
.strength-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* アイテム */
.strength-item {
    position: relative;
    display: grid;
    grid-template-columns: 20% 1fr;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

/* 左画像 */
.strength-item__image {
    height: 100%;
}

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

/* 番号バッジ（ここがキモ） */
.strength-item__number {
    position: absolute;
    left: 17%;
    top: 50%;
    transform: translateY(-50%);

    width: 64px;
    height: 64px;
    border-radius: 50%;

    background: #14245b;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;
    font-size: 18px;
}

/* 右コンテンツ */
.strength-item__content {
    padding: 32px 40px 32px 60px;
}

.strength-item__content h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #14245b;
}

.strength-item__content p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.9;
}


.company-section {
    /* padding: 120px 0; */
    background: #fff;
}



.company-cards {
    margin-top: 60px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
}

.company-card {
    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06);

    transition: .3s;
}

.company-card:hover {
    transform: translateY(-8px);
}

.primary-pill {
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s cubic-bezier(.22, 1, .36, 1);
}

.primary-pill:hover {
    background-color: #1b3277;
    transform: translateX(6px);

    box-shadow:
        0 8px 20px rgba(20, 36, 91, .15);
}

.service-link-list a {
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        background .3s ease;
}

.service-link-list a:hover {
    transform: translateX(6px);
    background: #dde7f3;
}

.service-link-list a span {
    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1);
}

.service-link-list a:hover span {
    transform: translateX(6px);
}

.contact-mail {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1),
        background-color .35s ease;
}

.contact-mail:hover {
    transform: translateY(-4px);

    background: #f8fbff;

    box-shadow:
        0 20px 40px rgba(20, 36, 91, .10);
}

.company-card__image {
    aspect-ratio: 1.45;
}

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

.company-card__body {
    position: relative;

    padding: 26px 34px 40px;

    background: #F7F7F7;
    height: 100%;
}

.company-card__number {
    margin-bottom: 18px;

    font-size: 3vw;
    font-weight: 800;
    line-height: 1;

    color: #d4d7e2;
}

.company-card h3 {
    margin: 0 0 12px;

    color: #14245b;

    font-size: 22px;
    font-weight: 800;
}

.company-card p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.square-arrow {
    width: 44px;
    height: 22px;

    background: #14245b;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 2px;
    float: right;
}

.news-section {
    /* padding: 120px 0; */
    background: #eef5fa;
}

.news-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 120px;
}

.news-heading h2 {
    margin: 0;
    color: #14245b;
    font-size: 42px;
    font-weight: 800;
}

.news-heading>p {
    margin-top: 44px;
    font-size: 15px;
    font-weight: 700;
    line-height: 2;
}

.news-heading__image {
    margin-top: 70px;
    width: 460px;
}

.news-heading__image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: .65;
}

.news-content {
    padding-top: 96px;
}

.news-more {
    width: 250px;
    margin-left: auto;
    margin-bottom: 44px;
    padding-bottom: 14px;
    border-bottom: 1px solid #14245b;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #111;
    font-size: 17px;
    font-weight: 700;
}

.news-more span,
.news-item__arrow {
    width: 38px;
    height: 22px;
    background: #14245b;
    color: #fff;
    border-radius: 2px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.news-list {
    display: grid;
    gap: 36px;
}

.news-item {
    position: relative;
    display: block;

    padding: 34px 82px 34px 36px;
    min-height: 112px;

    background: #fff;
    border-radius: 8px;
}

.news-item__meta {
    display: flex;
    align-items: center;
    gap: 22px;
}

.news-item__meta time {
    font-size: 17px;
    font-weight: 700;
}

.news-item__meta span {
    padding: 4px 18px;
    background: #edf1fa;
    color: #14245b;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.news-item p {
    margin: 14px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.news-item__arrow {
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #14245b;
}

.works-section {
    /* padding: 120px 0; */
    background: #f6f6f6;
}

.works-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.section-more {
    width: 210px;
    padding-bottom: 14px;
    border-bottom: 1px solid #14245b;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 17px;
    font-weight: 800;
}

.section-more span,
.works-card__more span {
    width: 42px;
    height: 22px;

    background: #14245b;
    color: #fff;
    border-radius: 2px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.works-card__more {
    transition: .3s ease;
}

.works-card__more span {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);
}

.works-card:hover .works-card__more span {
    transform: translateX(6px);
}

.works-card {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1);

    will-change: transform;
}

.works-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(20, 36, 91, .08);
}

.works-card__image {
    overflow: hidden;
}

.works-card__image img {
    transition:
        transform .7s cubic-bezier(.22, 1, .36, 1);
}

.works-card:hover .works-card__image img {
    transform: scale(1.05);
}

.works-card h3 {
    transition: color .3s ease;
}

/* .works-card:hover h3 {
  color: #2f88d6;
} */

.works-cards {
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 3%; */

    gap: 40px 3%;
}

.works-card {
    padding: 26px 26px 30px;

    background: #fff;
    border-radius: 14px;
}

.company-card {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1);

    will-change: transform;
}

.company-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(20, 36, 91, .08);
}

.company-card__number {
    transition:
        color .35s ease;
}

.company-card:hover .company-card__number {
    color: #bcc3d6;
}

.company-card:hover .square-arrow {
    transform: translateX(6px);
}

.works-card__image {
    aspect-ratio: 1.86;
    overflow: hidden;
    border-radius: 8px;
}

.works-card:hover .square-arrow {
    transform: translateX(6px);
}


.news-item:hover .square-arrow {
    transform: translateX(6px);
}


.service-link-list a:hover .square-arrow {
    transform: translateX(6px);
}

.case-card {
    position: relative;
    min-height: 228px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;

    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1),
        box-shadow .4s cubic-bezier(.22, 1, .36, 1);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 36, 91, .12);
}

.case-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;

    transition: transform .8s cubic-bezier(.22, 1, .36, 1);
}

.case-card:hover .case-card__bg {
    transform: scale(1.08);
}

.case-card--funding .case-card__bg {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-funding.png");
}

.case-card--stock .case-card__bg {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-stock.png");
}

.case-card--ma .case-card__bg {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-ma.png");
}

.case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(90deg,
            rgba(20, 80, 100, 0.78) 0%,
            rgba(20, 80, 100, 0.55) 55%,
            rgba(20, 80, 100, 0.2) 100%);

    transition: background .4s ease;
}

.case-card:hover::before {
    background: linear-gradient(90deg,
            rgba(20, 80, 100, 0.9) 0%,
            rgba(20, 80, 100, 0.65) 55%,
            rgba(20, 80, 100, 0.25) 100%);
}

.case-card__content {
    /* position: relative; */
    z-index: 2;
    min-height: 228px;
    padding: 28px 42px 30px;
}

.case-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: #14245b;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.case-card:hover .case-card__icon {
    transform: scale(1.08);
}

.case-card__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.case-card h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: .04em;
}

.case-card p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;
}

.case-card .square-arrow {
    position: absolute;
    right: 26px;
    bottom: 34px;
}

.case-card:hover .square-arrow {
    transform: translateX(10px);
}


.square-arrow {
    width: 44px;
    height: 22px;

    background: #14245b;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 2px;

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);
}

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

.works-card h3 {
    margin: 26px 0 22px;

    color: #14245b;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 800;
}

.works-card__info {
    display: grid;
    gap: 12px;
}

.works-card__info dl {
    margin: 0;
    min-height: 42px;
    padding: 0 18px;

    background: #f1f4fb;
    border-radius: 6px;

    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
}

.works-card__info dd {
    font-weight: 800;
    font-size: 14px;
}

.works-card__info dt {
    color: #2f88d6;
    font-size: 14px;
    font-weight: 800;
}

.works-card__more {
    margin-top: 16px;
    float: right;
}


.works-card__more {
    width: 150px;
    margin: 28px 0 0 auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #14245b;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 16px;
    font-weight: 800;
}

.partner-section {
    /* padding: 120px 0; */
    background: #fff;
}

.partner {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 80px;
    align-items: center;
}

.partner__text {
    margin-top: 40px;
}

.partner__text p {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    font-weight: 600;
}

.partner__text p+p {
    margin-top: 18px;
}

.partner .section-more {
    margin-top: 70px;
}

.partner__visual {
    position: relative;
    height: 540px;
}

.partner__image--main {
    position: absolute;
    top: 0;
    left: 0;

    width: 430px;
    aspect-ratio: 1;

    overflow: hidden;
    border-radius: 20px;
}

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

.partner__image--sub {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 240px;
    aspect-ratio: 1;

    overflow: hidden;
    border-radius: 20px;
}

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


.contact-section {
    background: #14245b;
}

.contact {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    min-height: 680px;
}

.contact__content {
    background: #14245b;
    color: #fff;
}

.contact__inner {
    max-width: 760px;
    width: calc(100% - 120px);
    margin: 0 auto;
    padding: 120px 0;
}

.section-heading--white h2,
.section-heading--white .section-heading__en {
    color: #fff;
}

.section-heading--white .section-heading__en {
    opacity: .75;
}

.contact__text {
    margin: 54px 0 48px;
    font-size: 17px;
    line-height: 2;
    font-weight: 700;
}

.contact-mail {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 28px 42px 30px 28px;
    background: #fff;
    color: #111;
    border-radius: 8px;
}

.contact-mail__label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 22px;

    background: #14245b;
    color: #fff;
    border-radius: 999px;

    font-size: 20px;
    font-weight: 800;
    transition:
        background-color .3s ease,
        transform .3s ease;
}

.contact-mail__arrow {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);
}

.contact-mail:hover .contact-mail__arrow {
    transform: translateX(8px);
}

.contact-mail:hover {
    transform: translateY(-4px);
    background: #f8fbff;
}

.contact-mail:hover .contact-mail__label {
    background: #1a2f6f;
}

.contact-mail:hover .contact-mail__arrow {
    transform: translateX(8px);
}

.news-item {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1),
        background-color .35s ease;
}

.news-item:hover {
    transform: translateX(8px);

    background: #fcfdff;

    box-shadow:
        0 12px 30px rgba(20, 36, 91, .08);
}

.news-item p {
    transition:
        color .3s ease;
}

.news-item:hover p {
    color: #14245b;
}

.news-item__meta time {
    color: #667085;
    transition:
        color .3s ease;
}

.news-item:hover .news-item__meta time {
    color: #2f88d6;
}

.news-list-item:hover .news-list-item__meta time {
    color: #2f88d6;
}

.news-card {
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1),
        background-color .35s ease;
}

.news-card:hover {
    transform: translateX(8px);

    background: #fcfdff;

    box-shadow:
        0 20px 40px rgba(20, 36, 91, .10);
}

.news-card p {
    transition:
        color .3s ease;
}

.news-card:hover p {
    color: #14245b;
}

.news-card__meta time {
    transition:
        color .3s ease;
}

.news-card:hover .news-card__meta time {
    color: #2f88d6;
}

.contact-mail p {
    margin: 20px 0 0;
    color: #777;
    font-size: 16px;
    font-weight: 700;
}

.contact-mail__arrow {
    width: 44px;
    height: 24px;
    flex: 0 0 auto;

    background: #14245b;
    color: #fff;
    border-radius: 2px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone {
    margin-top: 52px;
    padding: 40px 26px;

    border-top: 1px solid rgba(255, 255, 255, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .7);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.contact-phone__label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 22px;

    background: #fff;
    color: #14245b;
    border-radius: 999px;

    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
}

.contact-phone__number {
    color: #fff;
    font-size: 1.7vw;
    font-weight: 800;
    letter-spacing: .08em;
    white-space: nowrap;
    transition:
        color .3s ease;
}

.contact-phone__number:hover {
    color: rgba(255, 255, 255, .85);
}

.hero__copy {
    opacity: 0;
    transform: translateY(30px);

    animation:
        heroFade 1s ease .3s forwards;
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.fade-up {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-phone__number span {
    margin-right: 12px;
}

.contact__image {
    min-height: 680px;
}

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

.footer {
    background: #f1f2f4;
    padding: 72px 0 32px;
}

.footer__inner {
    width: calc(100% - 8%);
    max-width: 1400px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid #d9dde5;
}

.footer__brand img {
    width: 260px;
    margin-bottom: 30px;
}

.footer__brand p {
    margin: 0 0 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 600;
}

.footer__tel {
    min-width: 360px;
    padding: 34px 40px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(20, 36, 91, .06);
        background:
        linear-gradient(135deg,#ffffff 0%,#f8f9fc 100%);
}

.footer__tel span {
    display: block;
    margin-bottom: 12px;
    color: #14245b;
    font-size: 14px;
    font-weight: 800;
}

.footer__tel-label{
    position:relative;
}

.footer__tel-label::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);

    width:6px;
    height:22px;

    background:var(--navy);
    border-radius:10px;
}

.footer__tel a {
    color: #14245b;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: .04em;
}

.footer__tel p {
    margin: 10px 0 0;
    color: #666;
    font-size: 14px;
    font-weight: 700;
}

.footer__nav {
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr 1.2fr;
    gap: 48px;
}

.footer__col h3 {
    margin: 0 0 18px;
    color: #14245b;
    font-size: 16px;
    font-weight: 800;
}

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

.footer li {
    margin-top: 10px;
}

.footer a {
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.7;
    margin-top: 10px;
}

.footer a:hover {
    color: #2f88d6;
}

.footer__copy {
    margin: 56px 0 0;
    padding-top: 24px;
    border-top: 1px solid #d9dde5;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #555;
}

.footer__col--service ul ul {
    margin-top: 8px;
    padding-left: 22px;
}

.footer__col--service ul ul li {
    margin-top: 8px;
}

.footer__main-links li {
    margin-bottom: 18px;
}

.footer__tel {
    position: relative;
    padding: 34px 42px;
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
}

.footer__tel::before{
    content:"";
    position:absolute;
    right:-45px;
    top:-45px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.footer__tel-label{
    position:relative;
    margin-bottom:20px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.08em;
    opacity:.85;
}

.footer__tel-number{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    color:#fff;
    text-decoration:none;
}

.footer__tel-number span:last-child{
/*     font-size:38px; */
    letter-spacing:.01em;
    line-height:1;
}

.footer__tel-number span:last-child{
    font-size: 28px;
}

.footer__top{
    gap: 20px;
}

.footer__tel-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#fff;
    color:var(--navy);

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.footer__tel-icon i{
    font-size:24px;
    transition: auto;
    transform: translateX(15px) translateY(15px);
}

.footer__tel-time{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:28px;

    padding:12px 18px;

    background:#ffffff;
    border-radius:999px;

    font-size:15px;
    font-weight:700;

    color:#555;
}


 */
.section-more {
    transition: .35s ease;
}

.section-more span {
    transition: .35s ease;
}

.section-more:hover {
    transform: translateX(4px);
}

.section-more:hover span {
    transform: translateX(6px);
}

.hamburger-btn {
    display: none;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 8px;
    background: #14245b;
    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
}

.hamburger-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: .3s;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========
ページ共通
======== */

.page-hero {
    position: relative;
    height: 420px;
    /* margin: 20px 40px 0; */
    overflow: hidden;
}

.page-hero__image {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-case.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-news {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/news-hero.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-track {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/track-hero.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-message {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/message-hero.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-company {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/company-hero.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-partner {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-partner.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-service {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-service-page {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service-page.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-purchase {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service-page-purchase.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-securities {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service-page-securities.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-ma {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service-page-ma.png");
    background-size: cover;
    background-position: center;
}

.page-hero-faq {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-hero-faq.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-listed {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service-page-listed.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-fund {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service-page-fund.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image-consulting {
    position: absolute;
    inset: 0;
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/page-service-page-cunsulting.png");
    background-size: cover;
    background-position: center;
}

.page-hero__image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(20, 36, 91, .9) 0%,
            rgba(20, 80, 100, .45) 38%,
            rgba(20, 36, 91, 0) 75%);
}

.page-hero__content {
    position: absolute;
    left: 90px;
    bottom: 120px;
    color: #fff;
    z-index: 1;
}

.page-hero__content p {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .12em;
}

.page-hero__content h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: .04em;
}

.news-detail-hero {
    /* padding: 170px 0 0px; */
    max-width: 900px;
    margin: auto;
    /* background: #f5f7fb; */
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.news-detail-meta time {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.news-detail-meta span {
    padding: 6px 14px;
    border-radius: 999px;
    background: #edf1fa;
    color: #14245b;
    font-size: 12px;
    font-weight: 700;
}

.news-detail-hero h1 {
    font-size: 42px;
    line-height: 1.5;
    font-weight: 800;
    color: #222;
    max-width: 900px;
}

/* .news-detail-content-section {
    padding: 80px 0 120px;
} */

.news-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.news-detail-thumbnail {
    margin-bottom: 60px;
}

.news-detail-thumbnail img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.news-detail-content p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 28px;
}

.news-detail-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #14245b;
    margin: 70px 0 25px;
    padding-left: 18px;
    border-left: 5px solid #14245b;
}

.news-detail-content ul {
    margin: 25px 0;
    padding-left: 20px;
}

.news-detail-content li {
    line-height: 2;
    margin-bottom: 8px;
}

.news-detail-bottom {
    margin-top: 80px;
    text-align: center;
}

.news-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 58px;
    border-radius: 8px;
    background: #14245b;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.news-back-btn:hover {
    opacity: .8;
}


/* ========
企業情報
======== */
/* 会社概要 */

.company-section {
    /* padding: 160px 0 90px; */
    background: #fff;
}

.company-heading {
    text-align: center;
    margin-bottom: 60px;
}

.company-heading p {
    color: #14245b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 14px;
}

.company-heading h1,
.company-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
}

.company-heading-track {
    text-align: left;
/*     margin-bottom: 60px; */
}

.company-heading-track p {
    color: #14245b;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .15em;
/*     margin-bottom: 14px; */
}

.company-heading-track h1,
.company-heading-track h2 {
    font-size: 42px;
    font-weight: 800;
    color: #222;
}


.company-table-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #dde3ee;
}

.company-table tr {
    border-bottom: 1px solid #dde3ee;
}

.company-table th {
    width: 240px;
    padding: 28px 30px;
    background: #f5f7fb;
    color: #14245b;
    font-size: 15px;
    font-weight: 800;
    text-align: left;
    vertical-align: top;
}

.company-table td {
    padding: 28px 34px;
    color: #333;
    font-size: 15px;
    line-height: 1.9;
    vertical-align: top;
}

.access-section {
    /* padding: 70px 0 120px; */
    background: #fff;
}

.access-map {
    max-width: 980px;
    height: 460px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ========
case
======== */

.case-detail-section {
    /* padding: 0 0 120px; */
    background: #fff;
}

.case-tabs {
    position: relative;
    z-index: 2;
    /* margin-top: -70px; */

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.case-tab {
    min-height: 150px;
    padding: 30px 28px;
    border: 1px solid #e3e6eb;
    border-radius: 8px 8px 0 0;

    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: flex-start;

    background: rgba(255, 255, 255, .88);
    color: #14245b;
    position: relative;
    overflow: hidden;
}

.case-tab::before {
    content: "";
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transition: .8s;
}

.case-tab--funding::before {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-funding.png");
}

.case-tab--stock::before {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-stock.png");
}

.case-tab--ma::before {
    background-image: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/case-ma.png");
}

.case-tab::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(20, 36, 91, .88),
            rgba(20, 36, 91, .55));
}

.case-tab__icon,
.case-tab h2,
.case-tab p {
    position: relative;
    z-index: 2;
}

.case-tab:not(.is-active)::before {
    opacity: .45;
}

.case-tab:not(.is-active)::after {
    background: rgba(255, 255, 255, .62);
}

.case-tab.is-active {
    color: #fff;
}

.case-tab.is-active::before {
    opacity: 1;
}

.case-tab.is-active::after {
    background:
        linear-gradient(90deg,
            rgba(20, 36, 91, .9),
            rgba(20, 36, 91, .65));
}

.case-tab:hover::before {
    transform: scale(1.05);
}

.case-tab.is-active {
    background: linear-gradient(90deg,
            rgba(20, 36, 91, .95),
            rgba(20, 36, 91, .78));
    color: #fff;
    border-color: transparent;
}

.case-tab__icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.case-tab h2 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
}

.case-tab p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
}

.case-detail-main {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: stretch;
    min-height: 390px;
}

.case-detail-main__text {
    padding: 110px 52px 80px;
    background: #fff;
}

.case-detail-main__text h2 {
    margin: 0 0 34px;
    color: #14245b;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.6;
}

.case-detail-main__text p {
    margin: 0;
    font-size: 16px;
    line-height: 2;
    font-weight: 600;
}

.case-detail-main__image {
    overflow: hidden;
}

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

.case-detail-block {
    margin-top: 64px;
    padding: 0 52px;
}

.case-detail-block h3 {
    position: relative;
    margin: 0 0 34px;
    padding-left: 72px;

    color: #2f88d6;
    font-size: 24px;
    font-weight: 800;
}

.case-detail-block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 50px;
    height: 3px;
    border-radius: 999px;

    background: #2f88d6;
    transform: translateY(-50%);
}

.case-check-list {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4%;
}

.case-check-list li {
    position: relative;
    padding: 18px 0 18px 42px;
    border-bottom: 1px solid #ddd;

    font-size: 15px;
    font-weight: 800;
}

.case-check-list li::before {
    content: "✓";
    position: absolute;
    left: 6px;
    top: 18px;

    width: 20px;
    height: 20px;
    border-radius: 50%;

    background: #2f88d6;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
}

.case-message {
    padding: 34px 48px;
    border-radius: 8px;
    background: #f7f7f7;

    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 46px;
    align-items: center;
}

.case-message__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ddd;
    min-height: 100px;
}

.case-message__icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-right: 20px;
}

.case-message p {
    margin: 0;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}

.case-detail-lower {
    /* padding: 0 0 120px; */
    background: #fff;
}

.case-lower-block {
    padding: 56px 0;
    border-top: 1px solid #d8d8d8;
}

.case-lower-title {
    margin: 0 0 34px;
    display: flex;
    align-items: center;
    gap: 20px;

    color: #14245b;
    font-size: 24px;
    font-weight: 800;
}

.case-lower-title span {
    color: #2f88d6;
    font-size: 30px;
    letter-spacing: .08em;
}

.case-feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.case-feature-card__head {
    display: grid;
    grid-template-columns: 120px 1fr;

    align-items: center;

    margin-bottom: 30px;

    border: 1px solid #b8d8f7;
    border-radius: 8px;

    overflow: hidden;

    background: rgba(255, 255, 255, .45);
}

.case-feature-card {
    padding: 36px 42px;
    background: #f1f8fc;
    border-radius: 12px;
    width: 50%;
}

.case-feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 110px;

    border-right: 1px solid #b8d8f7;
}

.case-feature-card__icon img {
    width: 44%;
}

.case-feature-card__head h3 {
    margin: 0;
    padding: 0 28px;

    color: #2f88d6;
    font-size: 1.2em;
    font-weight: 800;
    line-height: 1.6;
}

.case-feature-card p {
    margin: 0;

    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}

.case-feature-group {
    display: flex;
    gap: 4%;
}

.case-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.case-flow-col4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.case-flow-card {
    position: relative;
    /* height: 250px; */
    padding: 10% 8%;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    text-align: center;
}

.case-flow-card:not(:last-child)::after {
    content: "";

    position: absolute;

    right: -34px;
    top: 50%;

    width: 32px;
    height: 32px;

    transform: translateY(-50%);

    background: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/flow-arrow.png") center/contain no-repeat;
}

.case-flow-card img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 20px;
}

.case-flow-card span {
    display: block;
    color: #2f88d6;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.case-flow-card h3 {
    margin: 0 0 12px;
    color: #14245b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
}

.case-flow-card p {
    margin: 0;
    text-align: left;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
}

.case-related-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 30px;
}

.case-related-links a {
    min-height: 48px;
    padding: 0 22px;
    background: #e8edf5;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 15px;
    font-weight: 800;

    transition:
        transform .3s cubic-bezier(.22, 1, .36, 1),
        background .3s ease;
}

.case-related-links a:hover {
    transform: translateX(6px);
    background: #dde7f3;
}

.case-related-links a span {
    color: #14245b;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.case-related-links a:hover span {
    transform: translateX(6px);
}

.case-box {

    box-shadow:
        0 8px 30px rgba(20, 36, 91, 0.06),
        0 2px 8px rgba(20, 36, 91, 0.04);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.funding-table {
    margin-top: 36px;
    border: 1px solid #d8e3ef;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-right: 52px;
    margin-left: 52px;
}

.funding-table__head,
.funding-table__row {
    display: grid;
    grid-template-columns: 150px 280px 1fr;
}

.funding-table__head {
    background: #14245b;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.funding-table__head div {
    padding: 18px 22px;
    border-right: 1px solid rgba(255, 255, 255, .25);
}

.funding-table__row {
    border-top: 1px solid #d8e3ef;
}

.funding-table__row>div {
    padding: 22px;
    border-right: 1px solid #d8e3ef;
}

.funding-table__row>div:last-child {
    border-right: none;
}

.funding-table__category {
    background: #eef5fa;
    color: #14245b;
    font-size: 15px;
    font-weight: 800;

    display: flex;
    align-items: center;
}

/* .funding-table__category--pc-hidden {
    visibility: hidden;
} */

.funding-table__method {
    color: #14245b;
    font-size: 16px;
    font-weight: 800;

    display: flex;
    align-items: center;
    gap: 12px;
}

.funding-table__method img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
}

.funding-table__case p {
    position: relative;
    margin: 0;
    padding-left: 18px;

    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.funding-table__case p::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #2f88d6;
    font-weight: 800;
}

.funding-table__case p+p {
    margin-top: 6px;
}

.stock-worry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 40px;
    padding: 0px 52px;
}

.stock-worry__block h4 {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 52px;
    margin-bottom: 28px;

    border-radius: 999px;

    background: #3b80d1;
    color: #fff;

    font-size: 1.2em;
    font-weight: 700;
}

.stock-worry .case-check-list {
    display: block;
}

.stock-worry .case-check-list li {
    width: 100%;
}

.faq-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
}

.faq-filter__btn {
    padding: 12px 22px;
    border: 1px solid #142760;
    border-radius: 999px;
    background: #fff;
    color: #142760;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.faq-filter__btn.active,
.faq-filter__btn:hover {
    background: #142760;
    color: #fff;
}

.faq-item.is-hidden {
    display: none !important;
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 860px) {
    .faq-filter {
        gap: 8px;
    }

    .faq-filter__btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}


/* ================
パートナー
================ */

.partner-hero {
    position: relative;
    min-height: 560px;
    background: url("https://246571862.fs1.hubspotusercontent-na2.net/hubfs/246571862/raw_assets/public/tfs/images/partner-mv.png") center center / cover no-repeat;
    overflow: hidden;
    background-position: center right;
}

/* 画像全体を白っぽくする膜 */
.partner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .95) 0%,
            rgba(255, 255, 255, .88) 30%,
            rgba(255, 255, 255, .55) 55%,
            rgba(255, 255, 255, .20) 100%);
    z-index: 1;
}

/* 上の帯 */
.partner-hero__bar {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    height: 110px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(90deg,
            rgba(20, 36, 91, .95) 0%,
            rgba(20, 36, 91, .70) 42%,
            rgba(20, 36, 91, .25) 72%,
            rgba(20, 36, 91, 0) 100%);
}

.partner-hero__bar h1 {
    margin: 0 0 0 70px;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: .04em;
}

/* 本文 */
.partner-hero__content {
    position: relative;
    z-index: 2;

    width: 520px;
    padding: 56px 0 0 70px;
}

.partner-hero__content p {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 2;
    font-weight: 600;
}


/* =========================
   MERIT
========================= */

.partner-wrap {
    max-width: 1150px;
    /* margin: 0 auto; */
    padding: 90px 70px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    border-radius: 12px;
    z-index: 1;
    position: relative;
    margin: -60px auto 0;
}


.partner-section-heading {
    text-align: center;
}

.partner-section-heading h2 {
    color: #17265c;
    font-size: 28px;
    font-weight: 800;
}

.partner-section-heading span {
    display: block;

    width: 120px;
    height: 4px;

    margin: 30px auto 40px;

    background: #c7b34f;
}

.partner-section-heading p {
    color: #333;
    font-size: 16px;
    line-height: 2;
    font-weight: bold;
}

/* =========================
   CARD
========================= */

.partner-merit-cards {
    margin-top: 70px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;

    overflow: visible;
    padding-bottom: 40px;
}

.partner-merit-card {
    position: relative;

    /* height: 300px; */

    padding: 32px 20px;

    border: 2px solid #3d7fd0;
    border-radius: 12px;

    background: #fff;

    text-align: center;
    overflow: visible;
}

.partner-merit-card__icon {
    margin-bottom: 30px;
}

.partner-merit-card__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.partner-merit-card p {
    color: #17265c;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

.partner-merit-card__check {
    position: absolute;

    left: 50%;
    bottom: -24px;

    transform: translateX(-50%);

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #3d7fd0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;
    font-weight: 700;
    z-index: 2;
}


.partner-flow-inner {
    max-width: 1150px;
    margin: 0 auto;
    padding-top: 70px;
    background: #fff;
    border-radius: 0 0 10px 10px;
}

/* フロー */
.partner-flow {
    margin-top: 58px;

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 34px;
}

.partner-flow-item {
    position: relative;
    text-align: center;
}

.partner-flow-item:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -26px;
    top: 90px;
    color: #111;
    font-size: 46px;
    font-weight: 500;
    line-height: 1;
}

.partner-flow-item__num {
    margin-bottom: 14px;
    color: #b9ad35;
    font-size: 26px;
    font-weight: 800;
}

.partner-flow-item__icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #17265c;

    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-flow-item__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.partner-flow-item p {
    margin: 0;
    color: #17265c;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 800;
}

/* 対象案件 */
.partner-section-heading--case {
    margin-top: 80px;
}

.partner-section-heading--case p {
    margin-top: 36px;
}

.partner-case-cards {
    margin-top: 45px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.partner-case-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 210px;
}

.partner-case-card img {
    width: 100%;
    height: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.partner-case-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44%;
    background: rgba(23, 38, 92, .88);
}

.partner-case-card p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 1;

    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 800;
}

/* ==========================
   Finance Page
========================== */


.finance-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.finance-hero__text {
    flex: 1;
    max-width: 520px;
}

.finance-hero__en {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #3D82D8;
    margin-bottom: 20px;
}

.finance-hero__text h1 {
    font-size: 42px;
    line-height: 1.3;
    color: #1E2F6D;
    margin-bottom: 32px;
}

.finance-hero__text p {
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
}

.finance-hero__image {
    flex: 1;
}

.finance-hero__image img {
    width: 100%;
    display: block;
}

/* ==========================
   Service List
========================== */

.finance-service-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.finance-service-card {
    display: flex;
    align-items: center;
    gap: 48px;

    background: #fff;
    border-radius: 20px;

    padding: 36px 60px;

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1);
}

.finance-service-card__image {
    flex-shrink: 0;
    width: 30%;
    overflow: hidden;
    border-radius: 12px;
}

.finance-service-card__image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}


.finance-service-card:hover .finance-service-card__image img {
    transform: scale(1.06);
    /* border-radius: 12px; */
}


.finance-service-card__body {
    flex: 1;
}

.finance-service-card__body h2 {
    font-size: 1.4vw;
    line-height: 1.4;
    color: #1E2F6D;
    margin-bottom: 24px;
}

.finance-service-card__body p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
}

.finance-service-card__link {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 14px;

    margin-left: auto;

    color: #1E2F6D;
    font-weight: 700;
    text-decoration: none;

    border-bottom: 2px solid #1E2F6D;
    padding-bottom: 10px;

    transition: .3s;
}

.finance-service-card__link span {
    width: 34px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1E2F6D;
    color: #fff;

    font-size: 12px;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.finance-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(20, 36, 91, .08);
}

.finance-service-card:hover .finance-service-card__link span {
    transform: translateX(6px);
}


.finance-service-card:hover .finance-service-card__link {
    opacity: .7;
}

.finance-service-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.finance-service-card:hover {
    text-decoration: none;
}

.finance-service-card h2,
.finance-service-card p {
    color: inherit;
}

.purchase-target-section {
    /* padding: 120px 0; */
    background: #F4F6F6;
}

.purchase-target-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    margin-top: 42px;
}

.purchase-target-card {
    background: #fff;
        border-radius: 0px 0px 8px 8px;
}

.purchase-target-card__image {
    width: 100%;
    aspect-ratio: 4 / 2.3;
    overflow: hidden;
}

.purchase-target-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0px 0px;
}

.purchase-target-card h3 {
    margin: 0;
    padding: 12px 10px;
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: var(--main-color);
    border-radius: 0px 0px 8px 8px;
}

.purchase-target-note {
    margin-top: 34px;
    font-size: 15px;
    line-height: 1.8;
}

@media screen and (max-width: 900px) {
    .purchase-target-list {
        gap: 24px;
    }

    .purchase-target-card h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 700px) {
    /* .purchase-target-section {
        padding: 80px 0;
    } */

    .purchase-target-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   事業詳細
========================== */



.finance-detail-hero__en {
    margin: 0 0 22px;
    color: #2f88d6;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .14em;
}

.finance-detail-hero__text h1 {
    margin: 4px 0 36px;
    color: #14245b;
    font-size: 38px;
    line-height: 1.4;
    font-weight: 800;
}

.finance-detail-hero__text p {
    margin: 0;
    max-width: 590px;
    font-size: 16px;
    line-height: 2;
    font-weight: 700;
}



.finance-detail-hero {
    background: #f6f7f9;
}

.finance-detail-hero__content {
    width: min(1400px, calc(100% - 120px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    min-height: 560px;
    padding-top: 120px;
}

.finance-detail-hero__text {
    max-width: 520px;
    margin-right: 20px;
}

.finance-detail-hero__image {
    height: 100%;
    /* min-height: 560px; */
}

.finance-detail-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.real-estate-flow-section {
    /* padding: 100px 0; */
    background: #fff;
}

.real-estate-flow {
    display: grid;
    gap: 26px;
}

.real-estate-flow__step {
    padding: 22px 52px 18px;
    background: #f5f5f5;
    border-radius: 8px;
    /* position: relative; */
}

.real-estate-flow__step h2 {
    margin: 0 0 12px;
    color: #14245b;
    font-size: 20px;
    font-weight: 800;
}

.real-estate-flow__image img {
    width: 100%;
    display: block;
}

.real-estate-flow__image {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.finance-detail-feature {
    background: #f4f4f4;
}

.finance-detail-heading p {
    position: relative;
    margin: 0 0 58px;
    color: #2f88d6;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .12em;
}

.finance-detail-heading p::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin-top: 20px;
    background: #2f88d6;
}

.finance-detail-heading h2 {
    /* margin: 0 0 64px; */
    color: #14245b;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 800;
}

.finance-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
}

.finance-feature-card {
    position: relative;
    padding: 62px 36px 54px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: inset 0 -8px 0 #2f88d6;
}

.finance-feature-card__icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 38px;
    border-radius: 50%;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #f8f9fc 40%,
            #f1f4fb 100%);

    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-feature-card__icon img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.finance-feature-card__title {
    display: flex;
    justify-content: center;
    /* grid-template-columns: auto 1fr; */
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.finance-feature-card__title span {
    color: #2f88d6;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .06em;
    margin-top: 6px;
}

.finance-feature-card__title h3 {
    position: relative;
    margin: 0;
    padding-left: 18px;
    color: #14245b;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 800;
}

.finance-feature-card__title h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: .4em;
    width: 1px;
    height: 1.2em;
    background: #ccc;
}

.finance-feature-card>p {
    margin: 0;
    color: #111;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
}

.finance-detail-problem {
    /* padding: 110px 0 120px; */
    background: #fff;
}

.finance-problem-list {
    margin: 0;
    padding: 0;
    list-style: none;

    display: grid;
    gap: 22px;
}

.finance-problem-list li {
    min-height: 86px;
    padding: 0 36px;

    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 28px;

    background: #f5f5f5;
    border-radius: 8px;
}

.finance-problem-list span {
    width: 32px;
    height: 32px;

    border-radius: 50%;
    background: #14245b;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: 800;
}

.finance-problem-list p {
    position: relative;
    margin: 0;
    padding-left: 28px;

    color: #14245b;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 800;
}

.finance-problem-list p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 2px;
    height: 48px;

    background: #cfcfcf;
    transform: translateY(-50%);
}

.finance-detail-flow {
    /* padding: 120px 0; */

    background: #f4f4f4;
}

.finance-detail-flow__image {
    margin-top: 60px;
}

.finance-detail-flow__image img {
    width: 90%;
    display: block;
    margin: auto;
}

.finance-detail-flow__image-sp {
    margin-top: 60px;
    display: none;
}

.finance-detail-flow__image-sp img {
    width: 100%;
    display: block;
}

.equity-detail-flow__image-sp {
    margin-top: 60px;
    display: none;
}

.equity-detail-flow__image-sp img {
    width: 100%;
    display: block;
}

.finance-detail-flow__note {
    margin-top: 40px;

    display: flex;
    align-items: center;
    gap: 20px;

    padding: 26px 32px;

    border: 1px solid #5a8fe8;
    border-radius: 10px;

    background: #fff;
}

.finance-detail-flow__note-icon {
    flex-shrink: 0;
    width: 40px;
}

.finance-detail-flow__note-icon img {
    width: 100%;
    display: block;
}

.finance-detail-flow__note p {
    margin: 0;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    color: #1f2d63;
}



.finance-contract-wrap {
    /* margin-top: 60px; */

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.finance-contract-box {
    width: 38%;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 50px 40px;
}

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

.finance-contract-list li {
    position: relative;

    padding-left: 42px;
    margin-bottom: 20px;

    font-size: 20px;
    font-weight: 700;
    color: #1f2d63;
}

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

.finance-contract-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    width: 26px;
    height: 26px;

    border-radius: 4px;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2f88d6;
    font-size: 16px;
    font-weight: 700;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.finance-contract-arrow {
    width: 12%;
    text-align: center;
}

.finance-contract-arrow img {
    width: 100%;
    max-width: 170px;
}

.finance-contract-result {


    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 1;
}


.finance-contract-result__circle {
    width: 480px;
    height: 480px;

    margin: 0 auto 30px;

    border-radius: 50%;
    background: #f7f7f7;

    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-contract-result__circle::before {
    content: "";

    width: 230px;
    height: 230px;

    border-radius: 50%;
    position: absolute;
}

.finance-contract-result__icon {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px;
}

.finance-contract-result__icon img {
    width: 100%;
    display: block;
}

.finance-contract-result p {
    margin: 0;

    color: #000;
    font-size: 1.2vw;
    line-height: 1.8;
    font-weight: 700;
}

.finance-contract-result span {
    color: #2f88d6;
    font-size: 2vw;
}

.finance-detail-case {
    /* padding: 120px 0; */
    background: #f4f5f5;
}

.finance-case-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
}

.finance-case-card {
    padding: 24px 24px 28px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        box-shadow .35s cubic-bezier(.22, 1, .36, 1);
}

.finance-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(20, 36, 91, .08);
}

.finance-case-card__image {
    overflow: hidden;
    border-radius: 8px;
}

.finance-case-card__image img {
    width: 100%;
    display: block;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.finance-case-card:hover .finance-case-card__image img {
    transform: scale(1.06);
}

.finance-case-card h3 {
    margin: 24px 0 20px;
    color: #14245b;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 800;
}

.finance-case-card dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

.finance-case-card dl div {
    min-height: 40px;
    padding: 0 16px;
    background: #f1f4fb;
    border-radius: 6px;

    display: grid;
    grid-template-columns: 42% 1fr;
    align-items: center;
}

.finance-case-card dt {
    color: #2f88d6;
    font-size: 14px;
    font-weight: 800;
}

.finance-case-card dd {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.finance-case-card__link {
    width: 150px;
    margin: 26px 0 0 auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #14245b;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #111;
    font-size: 16px;
    font-weight: 800;
}

.finance-case-card__link span {
    width: 38px;
    height: 22px;
    background: #14245b;
    color: #fff;
    border-radius: 2px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.finance-case-card:hover .finance-case-card__link span {
    transform: translateX(6px);
}



.contract-setting-box--sub {
    margin-top: 40px;
}

.contract-setting-box {
    padding: 70px 64px;
    background: #f4f5f5;
    border: 1px solid #dfe5ec;
    border-radius: 20px;
    margin-top: 80px;
}

.contract-setting-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 60px;
    align-items: center;
}

.contract-setting-row+.contract-setting-row {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 3px dotted #999;
}

.contract-setting-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;

    border-radius: 50%;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contract-setting-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.contract-setting-content .finance-detail-heading {
    margin-bottom: 40px;
}

.contract-setting-content .finance-detail-heading p {
    margin-bottom: 28px;
}

.contract-setting-content .finance-detail-heading h2 {
    margin-bottom: 0;
}

.contract-setting-text {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 2;
    font-weight: 700;
}

.contract-setting-list {
    margin: 18px 0 0;
    padding: 24px 36px;
    list-style: none;

    background: #fff;
    border-radius: 8px;
}

.contract-setting-list li {
    position: relative;
    padding-left: 34px;

    font-size: 16px;
    line-height: 2;
    font-weight: 700;
}

.contract-setting-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .75em;

    width: 16px;
    height: 16px;

    border-radius: 50%;
    background: #2f88d6;
}

.loan-banner {
    display: block;
    margin-top: 32px;
    transition: all .3s ease;
}

.loan-banner img {
    width: 100%;
    display: block;
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0,0,0,.08); */
}

.loan-banner-sp {
    display: none;
    margin-top: 32px;
    transition: all .3s ease;
}

.loan-banner-sp img {
    width: 100%;
    display: block;
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0,0,0,.08); */
}

.bg-gray {
    background: #f4f5f5;
}

.bg-white {
    background: #fff;
}

.loan-banner:hover {
    transform: translateY(-4px);
}

.loan-banner-sp:hover {
    transform: translateY(-4px);
}

.finance-detail-faq {
    background: #fff;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 18px;
}

.faq-question {
    width: 100%;

    padding: 34px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #f4f5f5;
    border: none;

    cursor: pointer;
    text-align: left;
    border-radius: 10px;
}

.faq-question__text {
    color: #14245b;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.faq-answer {
    background: #fff;
    padding: 32px 40px;
}

.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;

    font-size: 17px;
    line-height: 2;
    font-weight: 500;
    margin-top: 6px;
}

.faq-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #14245b;
    ;
    border-radius: 50%;

    flex-shrink: 0;

    transition: transform .3s ease;
}

.faq-icon img {
    width: 32px;
    height: auto;
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}



.bridge-finance-flow2-icon1 {
    position: absolute;
    width: 14%;
    bottom: -14%;
    z-index: 1;
    right: 43%;
}

.bridge-finance-flow2-icon1 img {
    width: 100%;
    height: 100%;
}

.bridge-finance-flow2-icon2 {
    position: absolute;
    width: 12%;
    bottom: -20%;
    z-index: 1;
    left: 8%;
}


.bridge-finance-flow2-icon2 img {
    width: 100%;
    height: 100%;
}




/* ========
ニュース共通
======== */


/* news一覧 */

.news-hero {
    padding: 170px 0 70px;
    background: #f5f7fb;
}

.news-hero__en {
    color: #14245b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
}

.news-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #14245b;
}

.news-list-section {
    /* padding: 90px 0 120px; */
    background: #fff;
}

.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.news-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #f2f4f8;
    color: #14245b;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.news-filter a.active,
.news-filter a:hover {
    background: #14245b;
    color: #fff;
}

/* .news-list {
    border-top: 1px solid #dde3ee;
} */

.news-list-item {
    display: block;
    padding: 34px 0;
    border-bottom: 1px solid #dde3ee;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.news-list-item:hover {
    opacity: 0.75;
}

.news-list-item__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.news-list-item__meta time {
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.news-list-item__meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #edf1fa;
    color: var(--main-color);
    font-size: 12px;
    font-weight: 700;
}

.news-list-item h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.6;
}

.news-list-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
}

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 64px;
}

.news-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: #f2f4f8;
    color: var(--text-color);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.news-pagination a.active,
.news-pagination a:hover {
    background: #14245b;
    color: #fff;
}

/* ========
代表挨拶
======== */
.message-section {
    /* padding: 160px 0 120px; */
    background: #fff;
}

.message-header {
    text-align: center;
    margin-bottom: 80px;
}

.message-header__en {
    color: #14245b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15em;
    margin-bottom: 20px;
}

.message-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.message-catch {
    font-size: 20px;
    line-height: 1.7;
    font-weight: 800;
    color: #14245b;
}

.message-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.message-profile__image {
    width: 240px;
    height: 240px;
}

.message-profile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.message-profile__info span {
    display: block;
    color: #888;
    margin-bottom: 10px;
}

.message-profile__info h2 {
    font-size: 38px;
    color: #14245b;
    font-weight: 800;
}

.message-body {
    max-width: 900px;
    margin: 0 auto;
}

.message-body p {
    font-size: 17px;
    line-height: 2.4;
    color: #333;
    margin-bottom: 32px;
}

.message-sign {
    max-width: 900px;
    margin: 70px auto 0;
    text-align: right;
}

.message-sign p {
    color: #666;
    margin-bottom: 10px;
}

.message-sign h3 {
    font-size: 34px;
    color: #14245b;
    font-weight: 800;
    margin-right: -12px;
}

/* ==========================
   お問い合わせ
========================== */

/* 必須インジケータ ( * ) を「必須」ピルに */
.contact-form--hubspot .hs-form-required {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #1E2C5B;
    color: #fff;
    font-size: 0;
    font-weight: 600;
    vertical-align: middle;
  margin-bottom: 3px;
}
.contact-form--hubspot .hs-form-required::after {
    content: "必須";
    font-size: 10px;
}

.contact-form--hubspot .hs-button {
    min-width: 280px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 8px;
    background: #1E2C5B;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .4s;
}
.contact-form--hubspot .hs-button:hover {
    opacity: .85;
    transform: translateY(-2px);
}
.contact-form input, .contact-form select, .contact-form textarea{
margin-bottom: 20px;
}

.contact-form--hubspot .hs-error-msgs label,
.contact-form--hubspot .hs-error-msg {
    color: #d3344b;
    font-size: 13px;
    font-weight: 500;
}

.contact-page-section {
    padding: 120px 0;
    background: #fff;
}

.contact-form {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 60px;
    background: #f7f9fc;
    border-radius: 20px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #dfe5ef;
}

.contact-form__row--textarea {
    align-items: flex-start;
}

.contact-form__row label {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
}

.contact-form__row label span {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--main-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d8dfe8;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    transition: .3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--main-color);
    outline: none;
}

.contact-form textarea {
    min-height: 220px;
    resize: vertical;
}

.contact-form__privacy {
    margin-top: 40px;
    text-align: center;
}

.contact-form__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    line-height: 1.8;
}

.contact-form__check input {
    width: auto;
    margin: 0;
}

.contact-form__check span {
    display: inline-block;
}

.contact-form__check a {
    color: var(--main-color);
    font-weight: 700;
    text-decoration: underline;
}

.contact-form__submit {
    margin-top: 40px;
    text-align: center;
}

.contact-form__submit button {
    min-width: 280px;
    height: 64px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: none;
    border-radius: 8px;

    background: #1E2C5B;
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
    transition: .3s;
}

.contact-form__submit button:hover {
    opacity: .85;
    transform: translateY(-2px);
}

.contact-form__submit span {
    font-size: 18px;
}

.track-img {
    margin: auto;
    width: 60%;
    max-width: 1080px;
    height: 380px;
    padding-top: 32px;
    border-radius: 8px;
}

.track-img img{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.case-detail {
    color: #0c2a57;
    background: #fff;
}

.case-detail__inner {
    width: min(1080px, calc(100% - 48px));
    margin: 0 auto;
}

.case-detail__inner h2{
    font-size: 28px;
}

.case-detail__hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 60%);
}

.case-detail__label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    color: #fff;
    background: #142760;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.case-detail__hero h1 {
    max-width: 900px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.4;
    letter-spacing: .04em;
    color: #111;
}

.case-detail__body {
    padding: 80px 0 120px;
}

.case-section {
    padding: 48px 0;
    border-bottom: 1px solid #e5eaf1;
}

.case-section:first-child {
    padding-top: 0;
}

.case-section h2 {
    position: relative;
    margin-bottom: 28px;
    padding-left: 22px;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.4;
    color: #111;
    font-size: 24px;
}

.case-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: .25em;
    width: 6px;
    height: 1.1em;
    background: #142760;
    border-radius: 999px;
}

.case-data {
    padding: 32px;
    background: #f7f9fc;
    border-radius: 20px;
}

.case-data dl {
    margin: 0;
}

.case-data div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid #dce3ec;
}

.case-data div:first-child {
    padding-top: 0;
}

.case-data div:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.case-data dt {
    font-weight: 700;
    color: #142760;
}

.case-data dd {
    margin: 0;
    color: #111;
    font-weight: 600;
}

.case-list {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-list li {
    position: relative;
    padding-left: 28px;
    font-size: 17px;
    line-height: 1.9;
    color: #222;
}

.case-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .8em;
    width: 10px;
    height: 10px;
    background: #142760;
    border-radius: 50%;
}

.related-service {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.related-service a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 16px 24px;
    color: #142760;
    background: #fff;
    border: 1px solid #142760;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: .2s ease;
}

.related-service a:hover {
    color: #fff;
    background: #142760;
}

.conditions-section {
    padding: 100px 0 120px;
    background: #f7f9fc;
}

.conditions-inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.l_table_box {
    margin-bottom: 56px;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(12, 42, 87, .08);
    overflow-x: auto;
}

.loan_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    color: #111;
}

.loan_table caption {
    margin-bottom: 24px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.loan_table th,
.loan_table td {
    padding: 18px 20px;
    border: 1px solid #dce3ec;
    font-size: 15px;
    line-height: 1.8;
    vertical-align: middle;
}

.loan_table th {
    background: #eef3f8;
    color: var(--navy);
    font-weight: 700;
    white-space: nowrap;
}

.loan_table td {
    background: #fff;
}

.m_l_table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.m_l_table th {
    background: #142760;
    color: #fff;
}

.m_l_table td {
    background: #fff;
}

@media (max-width: 860px) {
  
      .footer__top{
        display: flex;
        flex-direction: column;
    }


    .conditions-section {
        padding: 64px 0 80px;
    }

    .conditions-inner {
        width: min(100% - 32px, 1120px);
    }

    .l_table_box {
        padding: 24px 18px;
        margin-bottom: 40px;
        border-radius: 18px;
    }

    .loan_table caption {
        font-size: 20px;
    }

    .loan_table th,
    .loan_table td {
        padding: 14px 12px;
        font-size: 14px;
    }
}


@media (max-width: 860px) {
    .case-detail__inner {
        width: min(100% - 32px, 1080px);
    }

    .case-detail__hero {
        padding: 80px 0 56px;
    }

    .case-detail__body {
        padding: 56px 0 80px;
    }

    .case-section {
        padding: 40px 0;
    }

    .case-data {
        padding: 24px 20px;
    }

    .case-data div {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px 0;
    }

    .case-list li {
        font-size: 16px;
    }

    /* .related-service {
        flex-direction: column;
    }

    .related-service a {
        width: 100%;
    } */
}



/* ================
レスポンシブ
================ */

@media (max-width: 1500px) {
.nav__item.active .dropdown--mega{
    max-width: 55vw;
}

.dropdown-card span{
    font-size: 10px;
}
}


@media (max-width: 1440px){
    .page-hero__content{
        left: 50px;
    }
}

@media (max-width: 1400px) {
    
    .logo {
        width: 20%;
    }

    .nav__item {
        font-size: 1em;
    }


    .dropdown a {
        font-size: 0.8em;
    }

    .contact-btn {
        font-size: 0.8em;
        width: 140px;
    }

    .nav{
        font-size: 1.1vw;
        /* gap: 3%; */
    }


}


@media (max-width: 1200px) {
    .nav {
        gap: 15px!important;
    }

    .header__inner{
        gap: 20px;
    }
}

@media (max-width: 1100px) {




        .nav__link {
        font-size: 1em;
        gap: 0px;
    }



        .sp {
        display: none;
    }


    .finance-detail-hero__image img {
        width: 600px;
    }

    .finance-feature-card>p{
        text-align: center;
    }

    .finance-detail-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 40px;
        padding: 60px 0;
    }

    .finance-detail-hero__image {
        min-height: auto;
        order: 2;
    }

    .finance-detail-hero__text h1 {
        font-size: 40px;
    }

    .finance-detail-hero__text p {
        max-width: none;
        width: 100%;
    }


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


    .works-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-case-card p {
        bottom: 8%;
    }

    .partner-flow {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 36px;
    }



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


    .partner-flow {
        grid-template-columns: repeat(3, 1fr);
        gap: 70px 36px;
    }

    /* 全矢印リセット */
    .partner-flow-item::after {
        content: none;
    }

    /* 01 → 02 */
    .partner-flow-item:nth-child(1)::after {
        content: "›";
        position: absolute;
        right: -24px;
        top: 88px;
        font-size: 54px;
        line-height: 1;
    }

    /* 02 → 03 */
    .partner-flow-item:nth-child(2)::after {
        content: "›";
        position: absolute;
        right: -24px;
        top: 88px;
        font-size: 54px;
        line-height: 1;
    }

    /* 04 → 05 */
    .partner-flow-item:nth-child(4)::after {
        content: "›";
        position: absolute;
        right: -24px;
        top: 88px;
        font-size: 54px;
        line-height: 1;
    }

    /* 05 → 06 */
    .partner-flow-item:nth-child(5)::after {
        content: "›";
        position: absolute;
        right: -24px;
        top: 88px;
        font-size: 54px;
        line-height: 1;
    }

    /* 03 ↓ 04 */
    .partner-flow-item:nth-child(3)::after {
        display: none;
        content: "›";
        position: absolute;
        left: 50%;
        bottom: -55px;
        transform: translateX(-50%) rotate(90deg);

        font-size: 54px;
        line-height: 1;
    }
}

@media (max-width: 1100px) {

    .case-detail__inner h2{
        font-size: 20px;
    }

    .track-img{
        width: 90%;
    }

    .finance-feature-card__title{
        margin-bottom: 12px;
    }

    .finance-contract-result__circle {
        width: 40%;
        height: auto;
        aspect-ratio: 1;
        display: none;
    }

    .finance-contract-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .finance-contract-box,
    .finance-contract-result {
        width: 100%;
    }

    /* 矢印を下向きに */
    .finance-contract-arrow {
        width: 16%;
    }

    .finance-contract-arrow img {
        transform: rotate(90deg);
        display: block;
        width: 100%;
        max-width: none;
    }


    .finance-contract-result::before {
        width: 260px;
        height: 260px;

        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .finance-contract-result__icon {
        width: 50%;
        max-width: none;
        margin-bottom: 20px;
    }

    .finance-contract-result span {
        font-size: 4vw;
    }

    .finance-contract-result p {
        font-size: 16px;
        line-height: 1.8;
    }

    .finance-contract-box {
        padding: 24px 20px;
    }

    .finance-contract-list li {
        font-size: 16px;
        padding-left: 36px;
        margin-bottom: 16px;
    }


    .finance-feature-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .finance-feature-card {
        padding: 48px 40px 56px;
    }

    .finance-feature-card__icon {
        width: 140px;
        height: 140px;
        margin-bottom: 34px;
    }

    .finance-feature-card__icon img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 1000px) {
  
    .fade-up {
        transition:
            opacity .5s ease,
            transform .5s cubic-bezier(.22, 1, .36, 1);
    }

    .dropdown-card img{
        display: none;
    }

        .dropdown-card span {
        font-size: 14px;
    }

        .dropdown--mega {
        position: static !important;
        top: auto;
        left: auto;
        transform: none !important;

        width: 100%;
        margin-top: 16px;
        padding: 0;

        background: transparent;
        box-shadow: none;
        border-radius: 0;

        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .dropdown-card {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .dropdown-card img {
        width: 180px;
        max-width: 100%;
    }

    .nav__item.active .dropdown{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .nav__item.active .dropdown--mega{
        max-width: 100%;
    }

    .finance-service-card{
        padding: 20px 30px;
    }

    .finance-case-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }


    .loan-banner {
        display: none;
    }

    .loan-banner-sp {
        display: block;

    }


    .finance-detail-hero__content {
        width: calc(100% - 40px);
    }

    .finance-detail-hero__text {
        /* width: 100%; */
        width: calc(100% - 8%);
        max-width: none;
        margin-bottom: 20px;
    }

    .finance-detail-hero__content {
        display: flex;
        flex-direction: column;
    }

    .case-tabs {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;

    }

    .case-box {
        border-radius: 12px;
    }

    .case-tab {
        border-radius: 12px;
    }

    .dropdown a {
        display: block;
        padding: 10px 8px;
        font-size: 15px;
        font-weight: 700;
    }

    .hamburger-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        gap: 0;

        padding: 28px 40px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;

        transition: .3s;
    }

    

    .nav__item,
    .nav>a {
        width: 100%;
    }

    .nav__link {
        width: 100%;
        min-height: 48px;
        padding: 0;
        margin: 0;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background: none;
        border: none;
        color: #111;
        font-size: 18px;
        font-weight: 800;
        text-align: left;
    }


    .dropdown {
        position: static;
        display: block;

        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 0 0 0 18px;

        background: transparent;
        box-shadow: none;
        border-radius: 0;

        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;

        transition:
            max-height .35s ease,
            opacity .25s ease,
            visibility .25s ease;
    }


    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .contact__inner {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 80px 0;
    }

    .contact__image {
        min-height: 360px;
    }

    .contact__image {
        display: none;
    }


    .partner {
        grid-template-columns: 1fr;
    }

    .partner__visual {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2%;
    }


    .news-card {
        width: 60%;
    }

    .company-card__body {
        padding: 26px 20px 40px;
    }

    .company-cards {
        gap: 2%;
    }

    .header {
        top: 20px;
        left: 20px;
        right: 20px;
    }


    .hero {
        width: calc(100% - 40px);
    }

    .hero__copy {
        left: 0;
        width: 80%;
    }

    .botan-box {
        display: flex;
        gap: 20px;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        max-height: calc(100vh - 140px); 
        overflow-y: auto;             
    }

    .nav__item.active .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        padding-top: 8px;
        padding-bottom: 14px;
    }




    .contract-setting-box {
        padding: 40px 30px;
    }

    .finance-detail-heading h2 {
        font-size: 24px;
    }

    .news-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-content {
        padding-top: 0;
    }

    .news-heading__image {
        width: 300px;
    }

    .news-heading__image {
        display: none;
    }

    .hero__copy h1 {
        font-size: 3.2vw;
    }

}

@media (max-width: 900px) {

    /* .privacy-policy {
        padding: 70px 0;
    } */

    .policy-card {
        padding: 25px 0;
    }

    .policy-card h3 {
        font-size: 1.8rem;
    }

    .policy-contact {
        margin-top: 60px;
        padding-top: 40px;
    }


    .finance-problem-list p {
        font-size: 18px;
    }

    .logo{
        width: 34%;
    }



    .finance-hero {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .finance-hero__text {
        max-width: 100%;
    }

    .finance-hero__text h1 {
        font-size: 28px;
    }

    .finance-hero__text p {
        font-size: 16px;
    }

    .finance-service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;

        padding: 24px;
    }

    .finance-service-card__image {
        width: 100%;
        height: auto;
    }

    .finance-service-card__body h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .finance-service-card__body p {
        font-size: 15px;
        line-height: 1.9;
    }

    .finance-service-card__link {
        margin-left: 0;
    }

    .case-flow-card {
        align-items: center;
        gap: 6%;
        padding: 4%;
    }

    .case-flow-card img {
        margin-bottom: 0px;
    }

    .case-flow-card span {
        margin-bottom: 0px;
    }

    .case-flow-card h3 {
        margin: 0px;
    }

    .case-feature-group {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .case-detail-block {
        padding: 0 20px;
    }

    .funding-table {
        margin-right: 20px;
        margin-left: 20px;
    }

    .case-flow-card:not(:last-child)::after {
        bottom: -34%;
        transform: translateY(-50%) rotate(90deg);
        right: 50%;
        top: auto;
    }

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


    .case-flow-card {
        display: flex;
        height: auto;
    }


    .case-flow {
        display: flex;
        flex-direction: column;
    }

    .case-flow-col4 {
        display: flex;
        flex-direction: column;
    }

    .case-feature-card {
        width: 100%;
    }

    .case-message__icon img {
        height: 80px;
        width: auto;
    }

    .case-message {
        padding: 34px 20px;
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    .case-message__icon img {
        margin-right: 0px;
    }

    .case-message__icon {
        border-right: 0px;
    }


    .page-hero__content {
        left: 20px;
    }

    .funding-table {
        margin-top: 28px;
        border: none;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    .case-detail-lower {
        padding: 0px;
    }

    .case-detail-section {
        padding: 0px;
    }

    .funding-table__case {
        padding-top: 8px;
    }

    .case-detail-main__text h2 {
        font-size: 24px;
    }

    .page-hero__content h1 {
        font-size: 28px;
    }

    .case-message {
        gap: 30px;
    }

    .funding-table__head {
        display: none;
    }

    .funding-table__row {
        display: block;
        margin-bottom: 20px;
        padding: 22px;

        border: 1px solid #d8e3ef;
        border-radius: 12px;
        background: #fff;

        box-shadow: 0 8px 24px rgba(20, 36, 91, .06);
    }

    .funding-table__row>div {
        padding: 2px 10px;
        border-right: none;
    }

    .case-detail-main__text {
        padding: 90px 40px 60px;

    }

    .funding-table__category,
    .funding-table__category--pc-hidden {
        visibility: visible;

        display: inline-flex;
        align-items: center;

        margin-bottom: 14px;
        padding: 6px 14px;

        border-radius: 999px;
        background: #14245b;
        color: #fff;

        font-size: 13px;
        font-weight: 800;
    }

    .funding-table__method {
        margin-bottom: 14px;

        font-size: 18px;
        line-height: 1.5;
    }

    .funding-table__method img {
        width: 34px;
        height: 34px;
    }

    .funding-table__case {
        padding-top: 14px;
        border-top: 1px solid #e5e5e5;
    }

    .funding-table__case p {
        font-size: 14px;
        line-height: 1.8;
    }

    .service-card__image {
        height: 260px;
    }

    .service-main__image {
        height: 260px;
    }

    .section__inner {
        width: calc(100% - 40px);
    }

    .case-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading h2 {
        font-size: 32px;
    }


    .service-main {
        grid-template-columns: 1fr;
    }

    .service-main__content {
        padding: 32px 24px;
    }

    .service-link-list--two {
        grid-template-columns: 1fr;
    }

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

    .partner__image--main {
        width: 300px;
    }

    .partner__image--sub img {
        width: 240px;
    }

    .strength-item__number {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }

    .strength-item__content {
        padding: 20px 40px;
    }


    .stock-worry {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stock-worry__block h4 {
        font-size: 18px;
        height: 48px;
        margin-bottom: 20px;
    }

    .case-detail-main {
        display: flex;
        flex-direction: column;
    }

    .flow-wrap-txt {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .case-flow-card h3 {
        font-size: 16px;
    }


    .contact-phone__number {
        font-size: 2.7vw;
    }

}


@media (max-width: 900px) {
  
  .company-heading-track h2{
font-size: 28px;
}



    .message-header h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .message-header{
        margin-bottom: 30px;
    }

    .message-catch {
        font-size: 18px;
    }
    .message-body p{
        font-size: 15px;
    }
    .message-profile {
        flex-direction: column;
        text-align: center;
    }

    .news-hero {
        padding: 130px 0 54px;
    }

    .news-hero h1 {
        font-size: 38px;
    }

    .news-list-item {
        padding: 28px 0;
    }

    .news-list-item h2 {
        font-size: 21px;
    }


    .company-heading h1,
    .company-heading h2 {
        font-size: 32px;
    }

    .company-table th {
        width: 190px;
        padding: 24px 22px;
    }

    .company-table td {
        padding: 24px 24px;
    }

    .stock-card-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }



    .news-detail-hero h1 {
        font-size: 34px;
    }

    .news-detail-content-section {
        padding: 60px 0 90px;
    }

    .news-detail-content h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 860px) {

    .contact-page-section {
        padding: 80px 0;
    }

    .contact-form {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 0;
    }

    .contact-form__row label {
        font-size: 15px;
    }

    .contact-form__submit button {
        width: 100%;
        min-width: auto;
    }

    .contact-form__check {
        align-items: flex-start;
        text-align: left;
    }


    .company-merit-item{
        flex-direction: column;
        gap: 20px;
    }

    .company-merit-image{
        width: 100%;
    }

    .company-merit-content span{
        font-size: 18px;
    }

    .company-merit-content h3{
        font-size: 20px;
    }
}




@media (max-width: 768px) {

    .finance-detail-hero {
        gap: 30px;
        padding: 40px 0;
    }

    .finance-detail-hero__text {
        padding: 0 24px;
    }

    .finance-detail-hero__en {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .finance-detail-hero__text h1 {
        font-size: 32px;
        margin-bottom: 24px;
        line-height: 1.4;
    }

    .finance-detail-hero__text p {
        font-size: 15px;
        line-height: 1.9;
    }

    .finance-detail-hero__image img {
        width: 100%;
        height: auto;
    }



    .finance-detail-flow__image {
        margin-top: 40px;
    }

    .finance-detail-flow__note {
        padding: 18px;
        gap: 14px;
        align-items: flex-start;
    }

    .finance-detail-flow__note-icon {
        width: 28px;
    }

    .finance-detail-flow__note p {
        font-size: 14px;
        line-height: 1.8;
    }

    .faq-list {
        margin-top: 40px;
    }

    .faq-question {
        padding: 22px;
        gap: 16px;
    }

    .faq-question__text {
        font-size: 16px;
        line-height: 1.7;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
    }

    .faq-answer {
        padding: 0 22px 22px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.9;
    }

    .contract-setting-box {
        padding: 40px 24px;
        border-radius: 14px;
    }

    .contract-setting-row {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }

    .contract-setting-row+.contract-setting-row {
        margin-top: 36px;
        padding-top: 36px;
    }

    .contract-setting-icon {
        width: 96px;
        height: 96px;
        margin: 0;
    }

    .contract-setting-icon img {
        width: 52px;
        height: 52px;
    }

    .contract-setting-list {
        padding: 20px;
    }

    .contract-setting-text {
        font-size: 15px;
        line-height: 1.9;
    }
}



@media (max-width: 700px) {
  
  .policy-card h3{
  font-size :18px;
}
  
  .loan_table caption{
font-size :18px;
}
  

  


    .finance-contract-result__circle {
        width: 80%;
        height: auto;
        aspect-ratio: 1;
    }


    .finance-problem-list {
        gap: 14px;
    }

    .finance-problem-list li {
        min-height: auto;
        padding: 20px;

        grid-template-columns: 36px 1fr;
        gap: 16px;
    }

    .finance-problem-list span {
        width: 28px;
        height: 28px;
        font-size: 15px;
    }

    .finance-problem-list p {
        padding-left: 18px;
        font-size: 16px;
        line-height: 1.6;
    }

    .finance-problem-list p::before {
        height: 36px;
    }

    .real-estate-flow__step {
        padding: 28px 20px;
    }

    .real-estate-flow__step h2 {
        font-size: 18px;
    }


    .partner-wrap {
        padding: 0px;
    }



    .partner-flow .partner-flow-item:not(:last-child)::after {
        content: "›";
        display: block;
        position: absolute;

        left: 50%;
        right: auto;
        top: auto;
        bottom: -34px;

        transform: translateX(-50%) rotate(90deg);

        color: #111;
        font-size: 42px;
        line-height: 1;
        font-weight: 400;
    }

    .partner-hero__bar h1 {
        margin: 0 0 0 20px;
        font-size: 24px;
    }

    .partner-section-heading h2 {
        font-size: 20px;
    }

    .partner-merit-cards {
        display: flex;
        flex-direction: column;
    }

    .partner-merit {
        padding: 0px 20px;
    }

    .partner-merit__inner {
        padding: 30px 20px;
    }

    .partner-case-card p {
        bottom: 10%;
        font-size: 15px;
    }

    .partner-flow-inner {
        width: calc(100% - 40px);
        padding: 56px 20px;
    }

    .sp {
        display: none;
    }

    .partner-flow {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .partner-flow-item {
        display: flex;
        grid-template-columns: 72px 1fr;
        gap: 14px;
        align-items: center;
        text-align: left;
        margin-bottom: 20px;
        width: 90%;
        /* margin: auto; */
    }

    .partner-flow-item__num {
        /* grid-column: 1 / 2; */
        text-align: center;
        margin-bottom: 6px;
        font-size: 1em;
    }

    .partner-flow-item__icon {
        width: 17%;
        aspect-ratio: 1 / 1;
        height: auto;
        margin: 0%;
    }

    .partner-flow-item__icon img {
        width: 38%;
        height: auto;
    }

    .partner-flow-item p {
        /* grid-column: 2 / 3;
        grid-row: 1 / 3; */
        font-size: 0.9em;
    }

    .partner-case-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section__inner {
        padding: 80px 0px;
    }

    .partner-case-card::after {
        height: 40%;
    }

    .partner-hero__content {
        width: 100%;
        padding: 30px 20px;
    }

    .contact-phone {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-phone__number {
        font-size: 28px;
    }

    .contact-mail {
        align-items: flex-start;
    }

    .footer {
        padding: 64px 0 40px;
    }

    .footer__nav {
        grid-template-columns: 1fr;
        margin-top: 56px;
    }

    .footer__copy {
        margin-top: 64px;
    }

    .header__inner {
        height: 72px;
        padding: 0 18px;
    }

    /* .contact-btn {
        display: none;
    } */


    .works-head {
        display: block;
    }

    .section-more {
        margin-top: 36px;
    }

    .works-cards {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .partner__image--sub {
        bottom: 40px;
    }
}

@media (max-width: 600px) {
    .message-catch{
font-size: 18px;
}
  
  .case-detail-main__text{
padding:30px;
}
  
  .case-detail-block h3::before{
    display: none;
}
  
  .case-detail-block h3{
font-siez: 20px;
    padding-left: 0px;
}
  
  
  .case-feature-card__head{
padding: 10px 0px;
}
  
  .stock-worry{
padding: 0px 20px;
}
  
  .case-feature-card{
padding:20px;
}
  
  .case-feature-card__icon{
min-height: none;
    padding: 0px;
}
  
  .case-feature-card__head h3{
text-align: center;
}
  
      .section__inner {
        width: calc(100% - 26px);
    }
  
  .header{
        left: 10px;
        right: 10px;
}
  
  .botan-box{
  gap:10px;
  }
  
  .header__inner{
  gap:10px;
}
  
  .contact-btn{
 width:110px;
}
  
  .contact-btn{
  gap:10px;
}
  
  .logo{
  width: 40%;
}
  
  .header__inner{
padding: 10px;
}
  
  .case-feature-card__head{
        display: flex;
    flex-direction: column;
  }
  
  .case-feature-card__head h3{
    font-siez:18px;
}
  
  .case-feature-card__head h3{
        font-size: 1em;
}
  
  .case-feature-card__icon{
    border-right: none;
}
  
  .case-feature-card__icon img{
    width: 38%;
}
  

    .nav__item.active .dropdown{
        max-height: none;
    }

    .message-header{
        text-align: left;
    }

    .finance-hero__image {
        width: 80%;
    }

    /* .finance-detail-case {
        padding: 80px 0;
    } */

    .finance-case-cards {
        grid-template-columns: 1fr;
    }

    .finance-case-card {
        padding: 20px;
    }

    .finance-case-card h3 {
        font-size: 18px;
    }

    .finance-detail-flow__image-sp {
        display: block;
        width: 60%;
        margin: auto;
    }


    .equity-flow__image-sp {
        display: block;
        width: 60%;
        margin: auto;
    }



    .finance-detail-flow__image {
        display: none;
    }

    /* .finance-detail-feature {
        padding: 70px 0 80px;

    } */

    .finance-detail-heading p {
        font-size: 14px;
        margin-bottom: 34px;
    }

    .finance-detail-heading p::after {
        width: 64px;
        margin-top: 16px;
    }

    .finance-detail-heading h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .finance-feature-card {
        padding: 24px 20px ;
        border-radius: 14px;
        box-shadow: inset 0 -6px 0 #2f88d6;
    }

    .finance-feature-card__icon {
        width: 100px;
        height: 100px;
        margin-bottom: 14px;
    }

    .finance-feature-card__icon img {
        width: 56px;
        height: 56px;
    }

    .finance-feature-card__title {
        gap: 14px;
        margin-bottom: 10px;
    }

    .finance-feature-card__title span {
        font-size: 20px;
    }

    .finance-feature-card__title h3 {
        font-size: 18px;
        line-height: 1.6;
    }

    .finance-feature-card>p {
        font-size: 14px;
        line-height: 1.9;
    }


    .strength-item__number {
        position: static;
    }


    .service-cards {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .news-card {
        width: 80%;
    }

    .company-cards {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .strength-item {
        display: flex;
        flex-direction: column;
    }

    .strength-item__number {
        left: 10%;
        width: 45px;
        height: 45px;
        font-size: 14px;
        top: 46%;
    }

    .company-card__image {
        height: 260px;
    }

    .strength-item__image {
        height: 220px;
        width: 100%;

    }

    .news-item {
        padding: 28px 56px 28px 24px;
    }

    .news-heading h2 {
        font-size: 34px;
    }


    .strength-item__content {
        padding: 0px 20px 32px;
    }

    .hero__copy h1 {
        font-size: 22px;
    }

    .hero__copy {
        width: 100%;
    }

    .hero__copy p {
        width: 90%;
      font-size: 14px;
    }

    .case-related-links {
        grid-template-columns: repeat(1, 1fr);
    }
  
  .news-card p{
  font-size: 15px;
}
  
  .contact-mail{
     align-items: center;
}

    .case-check-list {
        display: flex;
        flex-direction: column;
    }
  
  .section-heading h2{
  font-size: 24px;
  }
  
  .case-card__content{
    padding: 20px;
}

@media (max-width: 480px) {
  
  .hero {
        width: auto;
        position: relative;
        height: 100vh;
    }
  
  .case-feature-card__head h3{
    margin-bottom: 30px;
    text-align: center;
}
  
  .contact-phone__number{
font-size: 20px;
}
  
  .footer__tel-number span:last-child{
  font-size: 20px;
}
  
  .section-heading h2{
  font-size: 28px;
}
  .hero__copy{
  padding: 40px
}

.news-card {
        bottom: 10%;
        padding: 20px;
        right: 20px;
/*         top: 0%;
        margin-top: 100%; */
    }
  
  .contact-phone__label{
 font-size: 16pxm;
}
  
  .contact-mail__label{
font-size: 16px;
}
  
html, body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
  
  .news-card__arrow{
  top: 23%;
}
  
/*   .hero__copy{
  top: 0%;
  margin-top: 50%;
} */
  
  .footer__tel{
     padding: 20px;
}
  
  .news-card__meta span{
  font-size: 10px;
}


    .finance-detail-hero__text {
        padding: 0px;
    }

    .finance-detail-hero__text h1 {
        font-size: 28px;
    }

    .finance-detail-hero__text p {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 440px) {


    .related-service {
        flex-direction: column;
    }

    .related-service a {
        width: 100%;
    } 


    .message-catch br {
        display: none;
    }

    .message-profile__image {
        width: 180px;
        height: 180px;
    }

    .message-profile__info h2 {
        font-size: 30px;
    }

    .message-body p {
        font-size: 15px;
        line-height: 2.1;
    }

    .message-sign h3 {
        font-size: 28px;
    }


    .news-detail-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .news-detail-hero h1 {
        font-size: 28px;
    }

    .news-detail-content p {
        font-size: 15px;
    }

    .news-detail-content h2 {
        font-size: 22px;
        margin: 50px 0 20px;
    }

    .news-detail-thumbnail {
        margin-bottom: 40px;
    }

    .news-detail-bottom {
        margin-top: 60px;
    }

    .news-back-btn {
        width: 100%;
    }

    .stock-card {
        grid-template-columns: 1fr;
    }

    .stock-card__text {
        padding: 28px 24px;
    }

    .stock-card__image {
        height: 180px;
    }

    .company-heading {
        margin-bottom: 42px;
    }

    .company-heading h1,
    .company-heading h2 {
        font-size: 28px;
    }

    .company-table,
    .company-table tbody,
    .company-table tr,
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        padding: 18px 20px 10px;
        background: #fff;
        border-bottom: none;
    }

    .company-table td {
        padding: 0 20px 22px;
    }

    .access-map {
        height: 360px;
        border-radius: 16px;
    }

    .news-hero {
        padding: 110px 0 46px;
    }

    .news-hero h1 {
        font-size: 32px;
    }

    .news-filter {
        gap: 10px;
        margin-bottom: 36px;
    }

    .news-filter a {
        min-width: auto;
        padding: 10px 16px;
        font-size: 13px;
    }

    .news-list-item__meta {
        gap: 10px;
        flex-wrap: wrap;
    }

    .news-list-item h2 {
        font-size: 19px;
    }

    .news-list-item p {
        font-size: 14px;
    }

    .news-pagination a {
        width: 40px;
        height: 40px;
    }
}

/* ============================================================
   HubSpot 埋め込みフォーム (contact) を既存デザインに合わせる
   元 .contact-form のデザインを HubSpot フォームのクラスにマッピング
   ============================================================ */
.contact-form--hubspot {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 60px;
    background: #f7f9fc;
    border-radius: 20px;
}

.contact-form--hubspot .hs-form-field {
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 30px;
    row-gap: 8px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #dfe5ef;
}

.contact-form--hubspot .hs-form-field > label {
    grid-column: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1E2C5B;
}



.contact-form--hubspot .hs-form-field > .input {
    grid-column: 2;
    margin: 0;
}
.contact-form--hubspot .hs-field-desc {
    grid-column: 2;
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}
.contact-form--hubspot .hs-error-msgs {
    grid-column: 2;
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
}


.contact-form--hubspot .hs-input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d8dfe8;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    transition: .3s;
    box-sizing: border-box;
}
.contact-form--hubspot .hs-input:focus {
    border-color: #1E2C5B;
    outline: none;
}
.contact-form--hubspot textarea.hs-input {
    min-height: 220px;
    resize: vertical;
}
.contact-form--hubspot select.hs-input {
    appearance: auto;
}
.contact-form--hubspot .hs-input[type="checkbox"],
.contact-form--hubspot .hs-input[type="radio"] {
    width: auto;
}

.contact-form--hubspot .hs_submit {
    margin-top: 40px;
    text-align: center;
}
.contact-form--hubspot .hs_submit .actions {
    margin: 0;
    padding: 0;
}


.contact-form--hubspot .legal-consent-container {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
}
.contact-form--hubspot .legal-consent-container a {
    color: #1E2C5B;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .contact-form--hubspot {
        padding: 28px 18px;
    }
    .contact-form--hubspot .hs-form-field {
        grid-template-columns: 1fr;
        row-gap: 10px;
        padding: 18px 0;
    }
    .contact-form--hubspot .hs-form-field > .input,
    .contact-form--hubspot .hs-field-desc,
    .contact-form--hubspot .hs-error-msgs {
        grid-column: 1;
    }
    .contact-form--hubspot .hs-button {
        width: 100%;
        min-width: 0;
    }
}
  @media (min-width: 1001px){
/* サービス：常に4列グリッド固定 */
.nav__item--service.active .dropdown--mega {
    display: grid;
    grid-template-columns: repeat(4, 140px);
    gap: 16px 20px;
    max-width: none;
    width: auto;
    justify-content: unset;
}
.nav__item--service.active .dropdown--mega .dropdown-card {
    width: 100%;
    max-width: none;
}

/* 企業情報：3列グリッド（サービスと同サイズ） */
.nav__item--company.active .dropdown--mega {
    display: grid;
    grid-template-columns: repeat(3, 140px);
    gap: 16px 20px;
    max-width: none;
    width: auto;
    justify-content: unset;
}
.nav__item--company.active .dropdown--mega .dropdown-card {
    width: 100%;
    max-width: none;
}

/* FAQ・課題：2列グリッド（サービスと同サイズ） */
.nav__item--case.active .dropdown--mega {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    gap: 16px 20px;
    max-width: none;
    width: auto;
    justify-content: unset;
}
.nav__item--case.active .dropdown--mega .dropdown-card {
    width: 100%;
    max-width: none;
}
}