@charset "UTF-8";

.p-businessHeader {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.p-businessHeader img {
    width: 100%;
    height: auto;
    aspect-ratio: 128 / 51;
    object-fit: cover;
}
.p-businessHeader__content p {
    padding: 2em 0;
    font-size: 1.4rem;
    line-height: 2.6em;
    color: rgba(227, 6, 19, 1);
    width: 100%;
    max-width: 820px;
    text-align: center;
}


.p-businessHeader_title {
    --lp-color-primary: #E30613;
    --lp-color-black: #111111;
    --lp-color-text: #333333;
    --lp-color-bg-light: #f9f9f9;
    --lp-color-white: #ffffff;
    --lp-color-gray: #dddddd;
    
    --lp-font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    
    --lp-width-inner: 1000px;
    --lp-easing: cubic-bezier(0.25, 1, 0.5, 1);
    
    
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}











/* ==========================================================================
   Foundation (Scoped)
   ========================================================================== */
.p-lp-root {
    --lp-color-primary: #E30613;
    --lp-color-black: #111111;
    --lp-color-text: #333333;
    --lp-color-bg-light: #f9f9f9;
    --lp-color-white: #ffffff;
    --lp-color-gray: #dddddd;
    
    --lp-font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    
    --lp-width-inner: 1000px;
    --lp-easing: cubic-bezier(0.25, 1, 0.5, 1);

    font-family: var(--lp-font-sans);
    color: var(--lp-color-text);
    line-height: 1.8;
    background-color: var(--lp-color-white);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    text-align: left;
    
    /* フローティングボタンがコンテンツにかぶらないように余白確保 */
    padding-bottom: 100px;
}

/* Reset (Scoped) */
.p-lp-root *,
.p-lp-root *::before,
.p-lp-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;

}

.p-lp-root a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
.p-lp-root a:hover { opacity: 0.7; }
.p-lp-root ul { list-style: none; }
.p-lp-root img { max-width: 100%; height: auto; vertical-align: bottom; }

/* ==========================================================================
   Layout (l-lp-)
   ========================================================================== */
.l-lp-section {
    padding: 80px 0;
}

.l-lp-section--gray {
    background-color: var(--lp-color-bg-light);
}

.l-lp-section--black {
    background-color: var(--lp-color-black);
    color: var(--lp-color-white);
}

.l-lp-inner {
    max-width: var(--lp-width-inner);
    margin: 0 auto;
    padding-top: 0;
    /* [disabled]padding-right: 20px; */
    /* [disabled]padding-left: 20px; */
    padding-bottom: 0;
    position: relative;
}

/* ==========================================================================
   Object > Component (c-lp-)
   ========================================================================== */
/* Button */
.c-lp-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lp-color-primary);
    color: var(--lp-color-white);
    font-weight: bold;
    line-height: 1;
    padding: 16px 48px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(227, 6, 19, 0.3);
    transition: transform 0.3s var(--lp-easing), box-shadow 0.3s var(--lp-easing), background-color 0.3s;
    font-size: 2rem;
}

.c-lp-btn:hover {
    opacity: 1;
    background-color: #b3000b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 6, 19, 0.4);
}

.c-lp-btn--small {
    padding: 10px 24px;
    font-size: 14px;
}

.c-lp-btn--large {
    padding: 0.75em 2em;
    font-size: 1.4em;
    border: 2px solid #ffffff;
}

/* Section Title */
.c-lp-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 48px;
    line-height: 1.4;
}

.c-lp-title span {
    display: block;
    font-size: 16px;
    color: var(--lp-color-primary);
    margin-bottom: 12px;
    font-weight: normal;
    font-family: sans-serif;
    letter-spacing: 0.05em;
}

/* Card */
.c-lp-card {
    background: var(--lp-color-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ==========================================================================
   Object > Project (p-lp-)
   ========================================================================== */

/* Floating CTA */
.p-lp-floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 100px);
    z-index: 9999;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 90%;
    max-width: 400px;
    padding: 16px;
    
    line-height: 1.2em;
    background-color: var(--lp-color-primary, #E30613);
    color: #fff !important;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-lp-floating-cta:hover {
    background-color: #b3000b;
    opacity: 1;
}

.p-lp-floating-cta.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* FV */
.p-lp-fv {
    position: relative;
    min-height: 600px;
    max-width: 1280px;
    /*height: 80vh;*/
    aspect-ratio: 128 / 60;
object-fit: cover;
    background: url('../img/business/BsnsHr20260207_01.webp') no-repeat center center/cover;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--lp-color-white);
}

.p-lp-fv::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.0);
}

.p-lp-fv__content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(50, 0, 0, 0.0);
    padding-top: 0;
    /* [disabled]padding-right: 20px; */
    /* [disabled]padding-left: 20px; */
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.p-lp-fv__btn {
    margin-bottom: 20px;
}

.p-lp-fv__sub {
    font-size: 1.6rem;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.c-lp-btn span {
    display: block;
    line-height: 1.1;
    text-align: center;
    font-size: 1.6rem;
    color: rgba(255,255,255,1.00);
}

.c-lp-btn .c-lp-btn__sub {
    font-weight: normal;
    display: block;
    margin-top: 2px;
    font-size: 0.8em;
}

.p-lp-fv__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 48px;
}

.p-lp-fv__title-highlight {
    font-size: 56px;
    color: var(--lp-color-primary);
    background: rgba(255,255,255,0.1);
    padding: 0 10px;
}

/* Intro */
.p-lp-intro__lead {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    line-height: 2;
}

.p-lp-intro__target {
    background-color: var(--lp-color-bg-light);
    padding: 50px;
    border-radius: 8px;
    border-left: 6px solid var(--lp-color-primary);
}

.p-lp-intro__sub-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.p-lp-intro__list li {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.p-lp-intro__list li::before {
    content: '✔';
    color: var(--lp-color-primary);
    font-weight: bold;
    margin-right: 12px;
}

.p-lp-intro__note {
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

/* Philosophy */
.p-lp-philosophy__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

.p-lp-philosophy__content {
    flex: 1;
}

.p-lp-philosophy__img {
    flex: 1;
    min-width: 300px;
}

.p-lp-philosophy__img img {
    border-radius: 4px;
}

.p-lp-philosophy__head {
    font-size: 2rem;
    margin-bottom: 24px;
    border-bottom: 3px solid var(--lp-color-primary);
    display: inline-block;
    padding-bottom: 0;
    line-height: 1.2em
}

.p-lp-philosophy__lead {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 32px;
    line-height: 1.6;
}

.p-lp-philosophy__content p {
    font-size: 1.1rem;
    margin-bottom: 1em;
}

/* Method */
.p-lp-method__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.p-lp-method__card {
    text-align: center;
}

.p-lp-method__label {
    display: inline-block;
    background: var(--lp-color-primary);
    color: var(--lp-color-white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.p-lp-method__title {
    font-size: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
    line-height: 1.2em;
}

.p-lp-method__sub {
    font-size: 0.8em;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
    line-height: 1.2em;
}

.p-lp-method__card p {
    font-size: 16px;
}

/* Curriculum */
.p-lp-curriculum {
    border-left: 3px solid var(--lp-color-gray);
    margin-left: 20px;
    padding-left: 40px;
}

.p-lp-curriculum__item {
    position: relative;
    margin-bottom: 48px;
}

.p-lp-curriculum__item::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--lp-color-primary);
    border-radius: 50%;
}

.p-lp-curriculum__time {
    font-weight: bold;
    color: var(--lp-color-primary);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.p-lp-curriculum__title {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 8px;
}

.p-lp-curriculum__item p {
    font-size: 16px;
}

/* FAQ */
.p-lp-faq__item {
    background: var(--lp-color-white);
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #eee;
}

.p-lp-faq__head {
    padding: 24px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    font-size: 18px;
}

.p-lp-faq__head:hover {
    background-color: #fcfcfc;
}

.p-lp-faq__head::after {
    content: '+';
    font-size: 28px;
    color: var(--lp-color-primary);
    line-height: 1;
}

.p-lp-faq__item.is-open .p-lp-faq__head::after {
    content: '-';
}

.p-lp-faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
}

.p-lp-faq__body-inner {
    padding: 30px;
    border-top: 1px solid #eee;
    font-size: 16px;
}

/* CTA */
.p-lp-cta__box {
    border: 3px solid var(--lp-color-primary);
    padding: 60px 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.p-lp-cta__title {
    font-size: 36px;
    margin-bottom: 40px;
}

.p-lp-cta__price {
    margin: 40px 0;
}

.p-lp-cta__price-note {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
    display: block;
    margin-bottom: 8px;
}

.p-lp-cta__price-val {
    font-size: 56px;
    font-weight: bold;
    color: var(--lp-color-primary);
    line-height: 1;
}

.p-lp-cta__price-val span {
    font-size: 18px;
    color: var(--lp-color-white);
}

.p-lp-cta__note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.p-lp-outline-table {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 30px;
    text-align: left;
    font-size: 16px;
    border-collapse: collapse;
}

.p-lp-outline-table th,
.p-lp-outline-table td {
    padding-bottom: 20px;
    vertical-align: top;
}

.p-lp-outline-table th {
    width: 20%;
    color: #aaa;
    font-weight: normal;
}
.p-lp-outline-table td a {
    position: relative;
    padding-right: 1.2em;
}
.p-lp-outline-table td a::after {
    content: "";
    display: inline-block;
    width: 0.85em;
    height: 0.85em;
    margin-left: 0.5em;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/PrtsCmm19.svg");
}

/* Utility (Scoped) */
.u-lp-text-center { text-align: center; }
.u-lp-mb-40 { margin-bottom: 40px; }
.u-lp-hidden-pc { display: none; }

/* Responsive */
@media (max-width: 767px) {
    
.p-businessHeader {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.p-businessHeader img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
    
    
    .p-lp-root {
        font-size: 15px; 
        padding: 0 0%;
    }
    .l-lp-section {
    padding: 60px 5%;

}
    .u-lp-hidden-pc { display: inline; }
    .p-lp-fv__title { font-size: 32px; }
    .p-lp-philosophy__wrapper { flex-direction: column; gap: 40px; }
    
    .p-lp-outline-table th,
    .p-lp-outline-table td {
        display: block;
        width: 100%;
        padding-bottom: 8px;
    }
    
    .p-lp-outline-table td { padding-bottom: 24px; }
    
    .c-lp-btn--large {
        padding: 0.75 2;
        font-size: 1.6rem;
        width: 100%;
    }
    .p-lp-cta__box { padding: 40px 20px; }

    .p-lp-floating-cta {
        position: fixed;
        bottom: 45px;
        left: 50%;
        transform: translate(-50%, 100px);
        z-index: 9999;
        

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

        width: 100%;
        max-width: 400px;
        padding: 0.75em;

        background-color: var(--lp-color-primary, #E30613);
        color: #fff !important;
        font-weight: bold;
        font-size: 0.9em;
        line-height: 1em;
        border-radius: 50px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);

        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }    
    .p-lp-fv {
    height: 88svh; 
        background-image: url('../img/business/BsnsHr20260207_Sp.webp?1');
        background-position: center top; 
    }
.p-lp-fv__btn {
    margin-bottom: 1em;
}

.p-lp-fv__sub {
    font-size: 1.6rem;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.c-lp-btn span {
    display: block;
    line-height: 1.1;
    text-align: center;
    font-size: 1.5rem;
}

.c-lp-btn .c-lp-btn__sub {
    font-weight: normal;
    display: block;
    margin-top: 2px;
    font-size: 0.9rem;
}
.p-lp-fv .c-lp-btn--large{
    padding: 0.4em 0;
}

    

.p-businessHeader__content p {
    font-size: 1.1rem;
    line-height: 2em;
    color: rgba(227, 6, 19, 1);
    width: 90%;
    padding: 1em 5%;
    max-width: 820px;
    text-align: center;
}

    
/* Reset (Scoped) */
.p-lp-root *,
.p-lp-root *::before,
.p-lp-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0.25em 0.5em;
    font-size: 1rem;

}
.p-lp-philosophy__head {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
    border-bottom: 3px solid var(--lp-color-primary);
    display: inline-block;
    padding-bottom: 0;
    line-height: 1.2em
}
.p-lp-philosophy__content p {
    font-size: 0.85rem;
    margin-bottom: 0.5em;
}
.c-lp-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0em;
    line-height: 1.4;
}
.p-lp-method__title {
    font-size: 1.6rem;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1em;
}
.p-lp-method__label {
    display: inline-block;
    background: var(--lp-color-primary);
    color: var(--lp-color-white);
    padding: 0.25em 2em;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0px;
}


    
    /* Intro */
.p-lp-intro__lead {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 60px;
    line-height: 2;
}

.p-lp-intro__target {
    background-color: var(--lp-color-bg-light);
    padding: 1.5em 0.0em;
    border-radius: 4px;
    border-right: 3px solid var(--lp-color-primary);
    border-left: 3px solid var(--lp-color-primary);
}

.p-lp-intro__sub-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3em;
    text-align: center;
}

.p-lp-intro__list li {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
    line-height: 1.5em;
    display: flex;
    align-items: flex-start;
}

.p-lp-intro__list li::before {
    content: '✔';
    color: var(--lp-color-primary);
    font-weight: bold;
    margin-right: 0px;
}

.p-lp-intro__note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

}
