/* ==================================================
   カラースキーム・共通設定（全ページ）
================================================== */
:root {
    --main: #272423;
    --accent: #3DAE9F;
    --text: #1E1E1E;
    --color-gray: #E6EAEB;
    --color-light: #F7F8F8;
}

body {
    font-family: "Shippori Mincho B1", "Noto Sans JP", serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
    background-color: var(--color-light);
    overflow-x: hidden;
    background-color: #F7F8F8;
}

@media screen and (max-width:767px) {
    body {
        font-size: 15px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p,
h2,
h3 {
    margin: 0px;
}


.container {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 40px;
}

body.no-scroll,
html.no-scroll {
    overflow: hidden;
}


@media screen and (max-width:767px) {
    .container {
        padding: 0 24px;
    }
}

.section {
    position: relative;
    padding: 120px 0;
}

.section-triangle {
    position: relative;
}

.section-triangle::after {
    content: "";
    position: absolute;
    bottom: -48px;
    left: 0;
    width: 100%;
    height: 48px;
    background: inherit;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 2;
}



.bg-gray {
    background-color: var(--color-gray);
}

.bg-light {
    background-color: var(--color-light);
}


.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 28px 12px 24px;
    border-radius: 9999px;
    background: var(--accent);
    color: #fff;
    font-weight: bold;
    border: 1px solid var(--accent);
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease;
    text-decoration: none;
}

.btn:hover {
    background: #fff;
    color: var(--accent);
    border-color: var(--accent);
}


.btn::after {
    content: "→";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
}

.cta-btn:hover::before {
    animation: shine .5s ease;
}

.cta-btn:hover {
    background: var(--accent) !important;
    color: #fff;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

nav .cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.sec-head {
    position: relative;
    text-align: left;
    padding: 64px 0 0px;
    margin: 0 auto 30px;
    max-width: 1130px;
}

@media screen and (max-width:767px) {
    .sec-head {
        /* padding: 0px; */
    }
}

.sec-head-who {
    text-align: center;
}

.sec-eyebrow {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 100px;
    line-height: 1;
    white-space: nowrap;

    opacity: .12;
    pointer-events: none;
    z-index: 0;
}

.sec-eyebrow-who {
    left: 50%;
    transform: translateX(-50%);
}

.sec-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: bold;
    font-size: 40px;

}


.mb-8 {
    margin-bottom: 8px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.emphasis {
    font-size: 24px;
    font-weight: bold;
}

.sub-emphasis {
    font-size: 18px;
    margin: 0px;
}

.center {
    text-align: center;
}

.bold {
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .hide-sp {
        visibility: hidden !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media screen and (min-width: 768px) {
    .hide-pc {
        visibility: hidden !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* ==================================================
     共通設定（下層ページ）
  ================================================== */
.sub-fv {
    position: relative;
    margin-top: 110px;
    height: 380px;
    background-color: var(--bg-light);
    overflow: hidden;
}

.sub-fv__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.sub-fv__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.sub-fv__image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.sub-fv__content {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.sec-head-subfv {
    margin: 0 0 30px 0;
}

@media screen and (max-width:767px) {
    .sub-fv__content {
        padding: 0 24px;
    }

    .sec-head-subfv {
        margin: 0 0 10px 0;
    }
}

.sec-eyebrow-subfv {
    position: absolute;
    left: 0;
    top: 25px;
    font-size: 70px;
    line-height: 1;
    white-space: nowrap;
    opacity: .12;
    pointer-events: none;
    z-index: 0;
}

.section-heading {
    margin-bottom: 30px !important;
}

.section-heading h2 {
    font-size: 30px;
    font-weight: bold;
}

.section-heading h2 .ja {
    margin-right: 6px;
}

.section-heading h2 .en {
    color: var(--accent);
    font-size: 20px;
}

.toggle-list {
    margin-top: 30px;
}

.toggle-item {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

.toggle-btn {
    all: unset;
    display: block;
    width: 100%;
    cursor: pointer;
}

.toggle-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-summary-text {
    flex: 1;
}

.toggle-summary img {
    width: 300px;
    height: 169px;
    object-fit: cover;
    margin-right: 35px;
}

.toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.toggle-header h3 {
    margin: 0;
    flex: 1;
}

.toggle-icon {
    transform: rotate(45deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--main);
    border-right: 2px solid var(--main);
    transition: transform 0.3s;
    flex-shrink: 0;
    position: static;
}

.toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(135deg);
}

.toggle-detail {
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    padding: 0;
}

.toggle-item.open .toggle-detail {
    max-height: 2000px;
    padding-top: 20px;
}

@media screen and (max-width:767px) {
    .sub-fv {
        margin-top: 72px;
        height: 275px;
    }

    .toggle-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-summary img {
        width: 100%;
        height: auto;
        margin: 0 0 16px 0;
    }

    .toggle-summary-text {
        width: 100%;
        padding-right: 32px;
    }

    .toggle-header {
        width: 100%;
    }

    .toggle-icon {
        width: 8px;
        height: 8px;
    }
}



/* ==================================================
     エフェクト関連
  ================================================== */
.fv__col,
.fv__catch,
.fv__cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fv__col.is-show,
.fv__catch.is-show,
.fv__cta.is-show {
    opacity: 1;
    transform: translateY(0);
}

.fv__col--left {
    transform: translateX(-60px);
}

.fv__col--right {
    transform: translateX(60px);
}

.fv__caption {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;

    opacity: 0;
    transition: opacity 1s ease;
}

.fv__caption.is-show {
    opacity: 1;
}


.site-header .cta-btn.hide-sp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .5s ease;
}

.site-header .cta-btn.hide-sp.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sec-head {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.3s ease, transform 1.3s cubic-bezier(0.25, 1, 0.3, 1);
}

.sec-head.is-show {
    opacity: 1;
    transform: translateY(0);
}

body {
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.is-visible {
    opacity: 1;
}


/* ==================================================
     ヘッダー（全ページ共通）
  ================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    --h: 140px;
    --logo: 100px;
    height: var(--h);
    background: transparent;
    z-index: 1000;
    transition: background-color .25s, height .25s;
    transition: none;
}

.header-inner {
    height: var(--h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 40px;
}

.headerlogo {
    height: var(--logo);
    width: auto;
    display: block;
    transition: height .25s;
}

.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 52px;
    height: 52px;
    border: 2px solid var(--color-gray);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2101;

    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .5s ease;
}

.nav__toggle.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav__toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--color-gray);
    border-radius: 2px;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    transform-origin: center;
}

.nav__toggle.open {
    background: var(--color-gray);
    border-color: var(--color-gray);
}

.nav__toggle.open span {
    background: var(--main);
}

.nav__toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(-45deg);
}

.nav__toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(45deg);
}


.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav__list>li:not(:last-child) {
    display: none;
}

.nav__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.nav__overlay.show {
    display: flex;
}


.nav__overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.overlay-left {
    flex: 1;
    background: url("img/business-sign.webp") center/cover no-repeat;
    position: relative;
}

.overlay-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
}

.overlay-logo {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 2;
    width: 100px;
    height: auto;
}

.overlay-right {
    width: 36.6%;
    background: var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-right .nav__list {
    flex-direction: column;
    width: 80%;
    align-items: stretch;
}

.overlay-right .nav__list>li {
    width: 100%;
    border-bottom: 1px solid #F7F8F8;
    display: block;
}

.overlay-right .nav__list>li:first-child {
    border-top: 1px solid #F7F8F8;
}

.overlay-right .nav__list>li>a,
.overlay-right .nav__sub-toggle {
    color: var(--color-light);
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 20px 0px 20px 20px;
}

.overlay-right .nav__list>li>a:hover,
.overlay-right .nav__list>li>div:hover {
    color: var(--accent);
}

.overlay-right .nav__list img,
.overlay-right .nav__sub-toggle img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 40px;
    transform: rotate(-90deg);
}

.has-sub.open .nav__sub-toggle img {
    transform: rotate(0deg);
}

.nav__sub {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    padding-left: 40px;
}

.has-sub.open .nav__sub {
    display: flex;
    margin-bottom: 40px;
}

.nav__sub a {
    color: #fff;
}

.nav__sub a:hover {
    color: var(--accent);
}

.site-header.is-solid {
    background: var(--main);
    --h: 110px;
    --logo: 46px;
}

@media (max-width: 767px) {
    .site-header {
        --h: 120px;
        --logo: 85px;
    }

    .site-header.is-solid {
        --h: 72px;
        --logo: 40px;
    }

    .header-inner {
        height: var(--h);
        margin: 0 24px;
    }

    .nav__toggle {
        width: 46px;
        height: 46px;
    }

    .nav__toggle span {
        width: 22px;
    }

    .nav__list .cta-btn {
        padding: 10px 18px;
    }

    .overlay-left {
        display: none;
    }

    .overlay-right {
        width: 100%;
        align-items: flex-start;
    }

    .overlay-right .nav__list {
        margin-top: 120px;
    }

    .overlay-right .nav__list>li>a,
    .overlay-right .nav__sub-toggle {
        margin: 10px 0px 10px 20px;
        font-size: 16px;
    }
}


.header-contact {
    order: 1;
}

.nav__toggle {
    order: 2;
}



/* ==================================================
     CTA・フッター（全ページ共通）
  ================================================== */

.cta-band {
    background: #f5f7f8;
    padding: 0;
    position: relative;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    overflow: hidden;
    margin-top: 0;
    text-decoration: none;
    color: inherit;
    transition: transform .3s ease;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.cta--left .cta__bg {
    background-image: url("img/meeting.webp");
}

.cta--right .cta__bg {
    background-image: url("img/contact.webp");
}

.cta__inner {
    position: relative;
    z-index: 2;
    max-width: 90%;
    transform: translateY(15%);
}

.cta__lead {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.7;
    font-weight: bold;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn--ghost::after {
    background: var(--accent);
    color: #fff;
}

.btn--cta--bottom {
    background: var(--accent);
    color: #fff;
    border: none;
}

.btn--cta--bottom::after {
    background: #fff;
    color: var(--accent);
}

.cta:hover .btn--ghost {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.cta:hover .btn--ghost::after {
    background: #fff;
    color: var(--accent);
}

.cta:hover .btn--cta--bottom {
    background: #fff;
    color: var(--accent);
}

.cta:hover .btn--cta--bottom::after {
    background: var(--accent);
    color: #fff;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: transform .5s ease;
}

.cta:hover .cta__bg {
    transform: scale(1.1);
}

@media screen and (max-width:991px) {
    .cta-band {
        z-index: 10;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        min-height: 300px;
    }

    .cta__inner {
        max-width: 100%;
        padding: 20px;
        transform: none;
    }

    .cta__lead {
        font-size: 18px;
        line-height: 1.6;
    }
}

.site-footer {
    background: var(--main);
    color: var(--color-light);
    font-size: 14px;
    line-height: 1.8;
}

.footer-top {
    max-width: 1130px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 350px;
}

.footer-brand__logo {
    width: 80px;
    height: auto;
    margin: auto;
}

.footer-brand__name {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.footer-address {
    margin-top: 10px;
    font-style: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-address a {
    color: var(--color-light);
    text-decoration: underline;
    font-size: 14px;
}

.footer-nav {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-col {
    min-width: 100px;
    text-align: left;
}

.footer-col__title {
    font-weight: bold;
    font-size: 14px;
}

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

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--color-light);
    text-decoration: underline;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--accent);
}



.footer-col li span {
    color: var(--color-light);
    font-size: 14px;
    text-decoration: none;
}

.footer-col.services ul {
    margin-top: 12px;
    padding-left: 16px;
    border-left: 1px solid var(--color-light);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom small {
    color: #aaa;
    font-size: 12px;
}

.footer-col.services ul {
    margin-top: 12px;
    padding-left: 16px;
    border-left: 1px solid var(--color-light);
}

@media screen and (max-width:1199px) and (min-width:992px) {
    .footer-top {
        gap: 40px;
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-col {
        min-width: auto;
    }

    .footer-col.services ul {
        border-left: none;
        padding-left: 0;
    }
}

@media screen and (max-width:991px) {
    .site-footer {
        margin-top: 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        padding: 40px 24px;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .footer-brand__logo {
        width: 60px;
        margin: 0 auto;
    }

    .footer-col a {
        text-decoration: none;
    }

    .footer-col a:hover {
        color: var(--color-light) !important;
    }


    .footer-nav {
        width: 100%;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, .2);
        text-align: left;
    }

    .footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        position: relative;
        text-decoration: none !important;
    }

    .footer-link,
    .footer-col__title {
        display: block;
        padding: 14px 15px;
        color: var(--color-light);
        text-align: left;
        position: relative;
    }

    .footer-link::after,
    .footer-col__title::after {
        content: "›";
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform .3s ease;
    }

    .footer-col.services ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .footer-col.services.open ul {
        max-height: 500px;
    }

    .footer-col.services.open .footer-col__title::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .footer-col.services ul li {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-col.services ul a {
        margin-left: 15px;
        display: block;
        padding: 12px 0 12px 12px;
        font-size: 14px;
        color: var(--color-light);
    }

    .footer-sub a:hover,
    .footer-col.services ul a:hover {
        color: var(--accent);
    }

    .footer-bottom {
        margin-top: 0px;
        text-align: center;
    }
}




/* ==================================================
     トップページ
  ================================================== */
.fv {
    display: grid;
    grid-template-columns: 1.1fr .8fr 1.1fr;
    height: 100vh;
}

.fv__col {
    position: relative;
    overflow: hidden
}

.fv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.fv__col--center {
    display: grid;
    place-items: center;
    background: var(--color-light)
}

.fv__caption {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #7e8182;
    text-align: center;
}

.fv__catch {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 2.1;
    font-feature-settings: "palt" 1
}

.vtext {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: .2em
}

@media screen and (max-width:767px) {
    .fv {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .fv__col {
        width: 100%;
        padding: 0;
    }

    .fv__col--left,
    .fv__col--right {
        flex: 1;
    }


    .fv__col--left {
        order: 1;
    }

    .fv__col--right {
        order: 3;
        text-align: center;
    }

    .fv__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .fv__caption {
        position: static;
        transform: none;
        margin-top: 12px;
    }

    .fv__cta {
        margin-top: 20px;
        display: inline-block;
    }

    .vtext {
        writing-mode: initial;
        text-orientation: initial;
        letter-spacing: normal;
    }

    .fv__col--center {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 2;
        padding: 20px 0px;
    }

    .fv__catch {
        order: 3;
        margin: 0 0 10px;
        text-align: center;
        line-height: 1.6;
    }

    .fv__caption {
        order: 4;
        margin: 0;
        text-align: center;
    }
}



.vtextemp {
    color: var(--accent);
}


.lead {
    margin: 0 auto;
    text-align: center;
}

.lead__head {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Contents */
.lead__en {
    font-size: 30px;
    color: var(--accent);
}

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

.svc-card {
    background: var(--color-light);
    border-radius: 16px;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, .08),
        inset 0 0 0 1px var(--main);
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: visible;
}

.svc-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, .12),
        inset 0 0 0 1.5px var(--main);
}

.svc-head {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 26px 20px 48px;
    border: 0;
    background: transparent;
    border-radius: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: bold;
}

.svc-corner {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(61, 174, 159, .35);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

@media screen and (max-width:767px) {
    .svc-ttl {
        margin-bottom: 25px !important;
    }

    .svc-corner {
        width: 30px !important;
        height: 30px !important;
    }

    .svc-head {
        padding: 10px 20px 30px;
    }
}

.svc-corner img {
    width: 16px;
    height: 16px;
    display: block;
}

.svc-card:hover .svc-corner,
.svc-head:focus-visible .svc-corner {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 22px rgba(61, 174, 159, .45);
}


.svc-head:hover,
.svc-head:focus-visible {
    border-color: #2a8c7f;
    background: rgba(61, 174, 159, .05);
}

.svc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--main);
    display: grid;
    place-items: center;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .15)
}

.svc-icon img {
    width: 30px;
    height: 30px;
    display: block
}

.svc-ttl {
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.svc-corner {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3DAE9F;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(61, 174, 159, .35);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    margin-bottom: 5px;
}

.svc-corner img {
    width: 20px;
    height: 20px;
    display: block;
}

.svc-card:hover .svc-corner,
.svc-head:focus-visible .svc-corner {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 22px rgba(61, 174, 159, .45)
}

.svc-card:active .svc-corner {
    transform: translateX(-50%)
}

.svc-corner::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #3DAE9F;
    opacity: 0;
    transform: scale(.8);
    animation: svcPing 2.4s ease-out infinite
}

.svc-card:hover .svc-corner::after,
.svc-head:focus-visible .svc-corner::after {
    animation-play-state: paused
}

@keyframes svcPing {
    0% {
        opacity: 0;
        transform: scale(.8)
    }

    30% {
        opacity: .5
    }

    100% {
        opacity: 0;
        transform: scale(1.25)
    }
}

@media (prefers-reduced-motion:reduce) {
    .svc-corner::after {
        animation: none
    }
}

.svc-modal {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, .4);
    z-index: 999
}

.svc-modal.show {
    display: block
}

.svc-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(880px, 92vw);
    max-height: 90vh;
    background: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    overflow: auto
}

.svc-close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--color-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    cursor: pointer
}

.svc-body {
    display: grid;
    gap: 28px;
    align-items: center
}

.icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .15);
    background-color: var(--main);
}

.icon-badge img {
    width: 26px;
    height: 26px;
    display: block
}



.pv-head {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 8px
}

.pv-en {
    font-size: 12px;
    letter-spacing: .08em;
    opacity: .7
}

.pv-ja {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 800
}

.pv-desc {
    line-height: 2;
}

.pv-fig {
    width: 50%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

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


@media(max-width:1199px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:767px) {
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .svc-dialog {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-height: 80vh;
        border-radius: 18px 18px 0 0
    }

    .svc-body {
        padding-right: 2px
    }


    .svc-dialog {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        max-height: 80vh;
        border-radius: 18px 18px 0 0;
        margin: 0 auto;
    }

    .pv-fig {
        height: 120px;
    }


}

.company {
    text-align: center;
    margin-top: 40px;
}

.company__logo {
    margin-bottom: 24px;
}

.company__logo img {
    max-width: 160px;
    margin: 0 auto;
}

.company__name {
    font-weight: bold;
    margin-bottom: 40px;
    color: var(--text);
}

.company__list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    max-width: 800px;
    margin: 0 auto;
}

.company__row {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.company__row dt {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border: 1px solid var(--main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--main);
    margin-right: 30px;
    font-size: 20px;
    box-sizing: border-box;
    font-weight: bold;
}

.company__row dd {
    flex: 1;
    margin: 0;
    line-height: 1.6;
    color: var(--text);
}

@media screen and (max-width:767px) {
    .company__name {
        margin-bottom: 20px;
    }

    .company__logo img {
        max-width: 80px;
    }

    .company__list {
        gap: 20px;
        align-items: center;
    }

    .company__row {
        display: block;
        text-align: center;
    }

    .company__row dt {
        width: auto;
        height: auto;
        border: 0;
        border-radius: 0;
        margin: 0 0 5px;
        color: var(--text);
    }

    .company__row dd {
        line-height: 1.8;
    }
}




/* ==================================================
     企業概要ページ（About us）
  ================================================== */
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    color: var(--text-black);
    font-weight: bold;
}

.company-table th,
.company-table td {
    padding: 12px 16px;
    vertical-align: top;
}


.company-table th {
    font-weight: bold;
    color: var(--main);
    width: 180px;
    white-space: nowrap;
    border-bottom: 1px solid var(--main);
    text-align: center;
    vertical-align: middle;
}

.company-table td {
    border-bottom: 1px solid var(--color-gray);
    text-align: left;
    padding: 12px 40px 12px 40px;
}

@media screen and (max-width: 767px) {
    .company-table {
        font-size: 14px;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .company-table tbody {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .company-table tr {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 5px;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        text-align: center;
        padding: 6px 10px;
        word-break: break-word;
        box-sizing: border-box;
    }

    .company-table th {
        font-weight: bold;
        font-size: 18px;
        color: var(--main);
        border-bottom: none;
        padding-bottom: 4px;
    }

    .company-table td {
        color: var(--text-black);
        border-bottom: 1px solid var(--bg-gray);
        padding-top: 4px;
        padding-bottom: 15px;
    }
}


/* ==================================================
     サービス
  ================================================== */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}


.page-nav {
    background: var(--bg-cream);
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    margin: 50px 0px 0px 0px;
}

.page-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-nav li {
    position: relative;
}

.page-nav a {
    text-decoration: none;
    color: var(--text-black);
    font-weight: bold;
    transition: color .3s;
}

.page-nav a:hover {
    color: var(--accent);
}

.page-nav li::after {
    content: "⌄";
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--accent);
    margin-top: 4px;
}

.expert-voice-item+.expert-voice-item {
    margin-top: 60px;
    /* 上だけに余白 */
}


@media screen and (max-width: 991px) and (min-width: 768px) {
    .page-nav ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 12px;
        text-align: center;
    }

    .page-nav li {
        margin: 0;
    }

    .page-nav a {
        display: block;
        font-size: 15px;
    }

    .page-nav li::after {
        content: "⌄";
        display: block;
        text-align: center;
        font-size: 12px;
        color: var(--accent);
        margin-top: 4px;
    }
}

@media screen and (max-width: 767px) {
    .page-nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 8px;
        text-align: center;
    }

    .page-nav a {
        display: block;
        font-size: 14px;
    }

    .page-nav li::after {
        content: "⌄";
        display: block;
        text-align: center;
        font-size: 12px;
        color: var(--accent);
        margin-top: 4px;
    }
}



.cta-banner {
    position: relative;
    margin-top: 40px;
}

.cta-banner__link {
    min-height: 250px;
    border-radius: 10px;
    padding: 20px;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    background: url("img/contact.webp") center/cover no-repeat;
    opacity: 0.4;
    transition: transform .4s ease;
}

.cta-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.cta-banner__text {
    line-height: 1.9;
    margin-bottom: 18px;
}

.cta-banner__link:hover .cta-banner__bg {
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .cta-banner__link {
        min-height: auto;
        padding: 32px 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cta-banner__inner {
        max-width: 100%;
    }

    .cta-banner__text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .btn--cta--bottom {
        padding: 12px 28px;
        font-size: 14px;
    }
}


.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-top: 40px;
}

.member-item img {
    max-width: 120px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

@media screen and (max-width:767px) {
    .member-item img {
        max-width: 75px;
        height: 100px;
    }
}

.member-role {
    font-weight: bold;
    margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
    .members-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 15px;
}

.list-clean li {
    margin-bottom: 10px;
}

.flow-list {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
}

.flow-list {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    position: relative;
}

.flow-item {
    display: flex;
    align-items: start;
    margin-bottom: 50px;
    position: relative;
    gap: 50px;
}

.flow-step {
    flex: 0 0 120px;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    text-align: center;
    position: relative;
}

.flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 60px;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% - 10px);
    background: #ccc;
}

.flow-body {
    flex: 1;
}

.text-right {
    text-align: right;
    font-weight: bold;
}

.faq-title {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .flow-item {
        display: block;
        margin-bottom: 50px;
        gap: 0;
        text-align: center;
    }

    .flow-step {
        flex: none;
        font-size: 18px;
        margin-bottom: 3px;
        text-align: center;
    }

    .flow-item:not(:last-child)::after {
        left: 50%;
        top: auto;
        bottom: -42px;
        width: 1px;
        height: 32px;
        transform: none;
    }

    .flow-body {
        flex: none;
        font-size: 14px;
        line-height: 1.6;
    }

    .flow-body .emphasis {
        font-size: 16px;
    }

    .faq-title {
        font-size: 16px;
    }
}



/* ==================================================
     プライバシーポリシー・採用情報・お問い合わせ
  ================================================== */
.entry-section {
    text-align: center;
    padding: 120px 20px 60px;
}

.entry-icon img {
    width: 120px;
    height: auto;
    margin: 0 auto 24px;
}

.entry-btn {
    background: var(--accent);
    color: #fff;
    padding: 12px 40px;
    border-radius: 9999px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.entry-btn::after {
    content: "→";
}

.contact-form {
    margin: 0 auto;
    color: var(--text-black);
}

.form-group {
    margin-bottom: 40px;
}

.form-group.row {
    display: flex;
    align-items: center;
}

.label-wrap {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.form-label {
    font-weight: bold;
    font-size: 15px;
}

.badge-required {
    display: inline-block;
    font-size: 12px;
    line-height: 1.2;
    padding: 1px 6px;
    background: var(--main);
    color: #fff;
    border-radius: 2px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    min-width: 400px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.inline-options,
.check-grid {
    flex: 1;
    min-width: 0;
}

.inline-options,
.check-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.opt {
    font-size: 15px;
    cursor: pointer;
}

.opt input {
    margin-right: 6px;
}

textarea {
    resize: vertical;
    min-height: 160px;
}

.privacy {
    font-size: 14px;
}

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

.section-thanks {
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* ==================================================
     レスポンシブ文字サイズ
  ================================================== */

/* Tablet 768〜1199px */
@media screen and (max-width:1199px) {
    .sec-title {
        font-size: 32px;
    }

    .emphasis {
        font-size: 20px;
    }

    .sub-emphasis {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading h2 .en {
        font-size: 18px;
    }

    .lead__head {
        font-size: 28px;
    }

    .lead__en {
        font-size: 24px;
    }

    .company__name {
        font-size: 26px;
    }

    .company__row dt {
        font-size: 18px;
    }

    .footer-brand__name {
        font-size: 18px;
    }

    .cta__lead {
        font-size: 18px;
    }

    .pv-ja {
        font-size: 20px;
    }

    .flow-step {
        font-size: 20px;
    }

    .sec-eyebrow {
        font-size: 70px;
        line-height: 1;
        margin-top: 20px;
    }

    .sec-eyebrow-subfv {
        font-size: 50px;
        line-height: 1;
        margin-top: 15px;
    }
}


/* Smartphone 〜767px */
@media screen and (max-width:767px) {
    .sec-title {
        font-size: 24px;
    }

    .emphasis {
        font-size: 18px;
    }

    .sub-emphasis {
        font-size: 15px;
    }

    .section-heading h2 {
        font-size: 20px;
    }

    .section-heading h2 .en {
        font-size: 14px;
    }

    .lead__head {
        font-size: 20px;
    }

    .lead__en {
        font-size: 18px;
    }

    .company__name {
        font-size: 22px;
    }

    .company__row dt {
        font-size: 16px;
    }

    .footer-brand__name {
        font-size: 18px;
    }

    .cta__lead {
        font-size: 16px;
    }

    .pv-ja {
        font-size: 18px;
    }

    .flow-step {
        font-size: 18px;
    }

    .sec-eyebrow {
        font-size: 50px;
        line-height: 1;
        margin-top: 25px;
    }

    .sec-eyebrow-subfv {
        font-size: 36px;
        line-height: 1;
        margin-top: 18px;
    }
}