@charset "UTF-8";

/* ==========================================================================
   company Page Styles
   ========================================================================== */

.main {
    padding-top: 0;
    /* Header is fixed, but FV is full width */
    max-width: none;
    /* Override common.css main max-width for FV */
    border: none;
    /* Remove debug border from common.css */
    overflow-x: hidden;
}

.l-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* 1 FV (First View)
   -------------------------------------------------------------------------- */
.company-fv {
    width: 100%;
    height: 40rem;
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto 8rem;
}

.company-fv__inner {
    width: 100%;
    height: 100%;
}

.company-fv__img {
    display: block;
    width: 100%;
    height: 100%;
}

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

.company-fv__content {
    position: absolute;
    top: 60%;
    left: 3.125%;
    background-color: var(--title-bk-color);
    /* Cyan/Teal transparent */
    color: #fff;
    padding: 1.5rem 2rem;
}

.company-fv__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.company-fv__desc {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* 2 Section Title
   -------------------------------------------------------------------------- */
.company-insurance {
    background-color: #fff;
}

/* Concept Section */
.company-concept {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 8rem;
}

.company-concept__img-box {
    flex: 0 0 45%;
}

.company-concept__img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.company-concept__content {
    flex: 1;
}

.company-concept__title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.company-concept__title {
    background-color: #1459E2;
    color: #fff;
    font-size: 2rem;
    padding: 0.8rem 2rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 8rem;
}

.company-concept__text {
    margin-bottom: 2rem;
    font-size: var(--font-size-body-pc);
    line-height: 1.8;
    color: #333;
}

.company-concept__message {
    text-align: right;
    font-weight: 700;
}

.company-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.company-title__back {
    width: 10rem;
    height: auto;
    flex-shrink: 0;
}

.company-title__text {
    position: absolute;
    top: 33%;
    left: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .company-title {
        margin-bottom: 3rem;
    }

    .company-title__back {
        width: 7rem;
    }

    .company-title__text {
        left: 0;
        font-size: 1.25rem;
        line-height: 1.4;
    }
}

/* 2-1 Insurance Guide Section */
.company-guide {
    background-color: #EBEDED;
    padding: 4rem 2.5rem 8rem 2.5rem;
    border-radius: 1rem;
    /* 念のための角丸 */
    max-width: 1280px;
    margin: 0 auto 8rem;
}

@media screen and (max-width: 768px) {
    .company-guide {
        padding: 4rem 2.5rem 4rem 2.5rem;
        border-radius: 0;
        margin-bottom: 4rem;
    }
}

.company-tabs {
    display: flex;
    border: 1px solid #ccc;
    margin-bottom: 4rem;
    background-color: #f8f8f8;
    flex-wrap: wrap;
}

.company-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    background-color: #fff;
    border: none;
    border-right: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

.company-tab:last-child {
    border-right: none;
}

.company-tab.is-active {
    background-color: var(--main-color);
    color: #fff;
}

.company-tab__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-tab__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-tab.is-active .company-tab__icon img {
    filter: brightness(0) invert(1);
}

.company-tab__name {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}

.company-tab-panel {
    display: none;
}

.company-tab-panel.is-active {
    display: block;
}

.company-tab-panel__top {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.company-tab-panel__info {
    flex: 1;
}

.company-tab-panel__title {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.company-tab-panel__text {
    font-size: var(--font-size-body-pc);
    line-height: 1.8;
    color: #333;
}

.company-tab-panel__img {
    flex: 0 0 45%;
}

.company-tab-panel__img img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}



/* Sub Tabs (Alternating Flat Structure) */
.company-subtabs {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    background-color: #fff;
}

.company-subtabs__header {
    width: 100%;
    padding: 1.5rem 2rem;
    font-size: var(--font-size-body-pc);
    font-weight: 700;
    color: #333;
    text-align: left;
    cursor: pointer;
    border: 1px solid #333;
    border-bottom: none;
    background-color: #fff;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.company-subtabs__header:last-of-type {
    border-bottom: 1px solid #333;
}

.company-subtabs__header.is-active {
    background-color: #94b4f0;
    color: #fff;
    border-color: #94b4f0;
}

.company-subtabs__arrow {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    transition: transform 0.3s;
}

.company-subtabs__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(-50%, -80%) rotate(135deg);
}

.company-subtabs__header.is-active .company-subtabs__arrow {
    transform: rotate(180deg);
}

.company-subtabs__panel {
    display: none;
    width: 100%;
    background-color: #fff;
    border: 1px solid #94b4f0;
    border-top: none;
}

.company-subtabs__panel.is-active {
    display: block;
}

.company-subtabs__content {
    padding: 1.5rem;
}

.company-subtabs__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.company-company-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
    list-style: none;
    padding: 0;
}

.company-company-list li {
    font-size: var(--font-size-body-sp);
    position: relative;
    padding-left: 2.5rem;
    color: #333;
}

.company-company-list li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-color: #94b4f0;
}

@media screen and (min-width: 769px) {


    .company-subtabs {
        flex-direction: row;
        flex-wrap: wrap;
        border: none;
        background: none;
    }

    .company-subtabs__header {
        flex: 1;
        order: 1;
        border: 1px solid #ccc;
        border-right: none;
        border-bottom: none;
        justify-content: center;
        text-align: center;
    }

    .company-subtabs__header:last-of-type {
        border-right: 1px solid #ccc;
        border-bottom: none;
    }

    /* On PC, hide the arrow since it's a tab */
    .company-subtabs__arrow {
        display: none;
    }

    .company-subtabs__panel {
        order: 2;
        border: 1px solid #ccc;
        border-top: none;
        margin-top: -1px;
    }

    .company-tab-panel__bottom {
        position: relative;
        padding-bottom: 0;
    }
}

/* 3 Buttons Grid
   -------------------------------------------------------------------------- */
.company-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    /* 32px roughly */
    margin-bottom: 8rem;
}

.company-card {
    flex: 0 0 calc(20% - 1.6rem);
    /* 5 columns */
    aspect-ratio: 1 / 1;
    border: 2px solid #333;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    text-decoration: none;
    color: #333;
}

.company-card:hover {
    background-color: #f8f8f8;
    transform: translateY(-5px);
    border-color: var(--sub-color);
}

.company-card__icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Wrap after 5th item */
.company-card:nth-child(n+6) {
    /* Optional: custom margin or layout adjustment if needed */
}

/* Responsive
   -------------------------------------------------------------------------- */
@media screen and (max-width: 1280px) {
    .company-fv__content {
        padding: 1.5rem 2rem;

    }

    .company-fv__title {
        font-size: 2.5rem;
    }

    .company-card {
        flex: 0 0 calc(20% - 1.6rem);
    }
}

@media screen and (max-width: 768px) {

    .company-subtabs__header {
        font-size: 1.25rem;
    }


    .company-subtabs__title {

        font-size: 1rem;
    }

    .company-tab {
        flex: 0;
        width: 25%;
        padding: 0.5rem;
    }

    .company-tab__icon img {
        width: 80%;
    }

    .company-fv__content {
        padding: 1.5rem 4rem 1.5rem 2rem;
        top: 30%;
    }

    .company-fv {
        height: 100vh;
        margin-bottom: 4rem;
    }

    .company-fv__title {
        font-size: 1.5rem;
    }

    .company-fv__desc {
        font-size: var(--font-size-body-sp);
    }

    .company-insurance {
        padding-bottom: 0;
    }

    .company-title {
        margin-bottom: 2rem;
    }

    .company-title__back {
        width: 7rem;
    }

    .company-title__text {
        left: 0;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .company-buttons {
        gap: 2rem 1rem;
        margin-bottom: 4rem;

    }

    .company-card {
        flex: 0 0 calc(50% - 1rem);
        /* 2 columns */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem 1rem;
        min-height: 10rem;
        width: 47%;
        text-align: center;
    }

    .company-card__icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
    }

    .company-card__name {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    /* Concept & Proposal SP adjustment */
    .company-concept {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .company-concept__img-box {
        flex: 0 0 auto;
        width: 100%;
    }

    .company-concept__title {
        font-size: 1.2rem;
        padding: 0.5rem 0.5rem;
        margin-bottom: 4rem;

    }

    .company-concept__text {
        font-size: var(--font-size-body-sp);
        margin-top: 1.5rem;
    }



    .company-proposal__title {
        display: none;
        /* Removed in favor of common title */
    }

    .company-proposal__text {
        font-size: var(--font-size-body-sp);
    }
}

/* Feature Section */
.company-features {
    display: flex;
    flex-direction: column;
    gap: 12rem;
    margin-bottom: 12rem;
}

.company-feature__inner {
    display: flex;
    align-items: flex-start;
    gap: 6rem;
}

.company-feature:nth-child(even) .company-feature__inner {
    flex-direction: row-reverse;
}

.company-feature__image {
    flex: 1;
    position: relative;
}

.company-feature__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-feature__title-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.company-feature__title-back {
    width: 10rem;
    height: auto;
    flex-shrink: 0;
}

.company-feature__title {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #333;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    background-color: transparent;
    padding: 0;
    width: auto;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .company-feature__title {
        white-space: normal;
        width: 100%;
        padding-right: 2rem;
    }
}

.company-feature__content {
    flex: 1;
}

.company-feature__text {
    font-size: var(--font-size-body-pc);
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.company-feature__text:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .company-features {
        gap: 4rem;
        margin-bottom: 4rem;
    }

    .company-feature__inner,
    .company-feature:nth-child(even) .company-feature__inner {
        flex-direction: column;
        gap: 4rem;
    }

    .company-feature__image {
        width: 100%;
    }

    .company-feature__title-box,
    .company-feature:nth-child(even) .company-feature__title-box {
        margin-bottom: 1.5rem;
        justify-content: flex-start;
    }

    .company-feature__title-back {
        width: 7rem;
    }

    .company-feature__title,
    .company-feature:nth-child(even) .company-feature__title {
        position: absolute;
        top: 50%;
        left: 0;
        right: auto;
        transform: translateY(-50%);
        font-size: 1.25rem;
        line-height: 1.4;
        padding: 0;
    }

    .company-feature__content {
        padding-top: 0;
    }

    .company-feature__text {
        font-size: var(--font-size-body-sp);
    }
}

/* Company Info Section */
.company-info {
    margin-bottom: 12rem;
}

.company-info__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-info__item {
    display: flex;
    gap: 0.5rem;
}

.company-info__label {
    flex: 0 0 12rem;
    background-color: #1459E2;
    color: #fff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-body-pc);
    letter-spacing: 0.1em;
}

.company-info__data {
    flex: 1;
    background-color: #ECECEC;
    padding: 1.5rem 2.5rem;
    color: #333;
    font-size: var(--font-size-body-pc);
    line-height: 1.8;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .company-info {
        margin-bottom: 4rem;
    }

    .company-info__item {
        flex-direction: column;
        gap: 0;
    }

    .company-info__label {
        flex: 0 0 auto;
        padding: 0.8rem;
        font-size: var(--font-size-body-sp);
    }

    .company-info__data {
        padding: 1.5rem;
        font-size: var(--font-size-body-sp);
    }

    .company-info__list {
        gap: 1rem;
    }
}

/* Access Section */
.company-access {
    margin-bottom: 8rem;
}

.company-access__list {
    display: flex;
    flex-direction: column;
    gap: 8rem;
}

.company-access__item {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.company-access__img {
    flex: 1;
}

.company-access__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-access__content {
    flex: 1;
}

.company-access__name {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.company-access__ename {
    font-size: var(--font-size-body-sp);
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.company-access__label {
    font-weight: 700;
    font-size: var(--font-size-body-pc);
    margin-bottom: 0.5rem;
}

.company-access__text {
    font-size: var(--font-size-body-sp);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.company-access__contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 2rem;
}

.company-access__contact-item {
    display: flex;
    gap: 1.5rem;
}

.company-access__contact-label {
    font-weight: 700;
    width: 2.5rem;
}

.company-access__station-label {
    font-weight: 700;
    font-size: var(--font-size-body-pc);
    margin-bottom: 0.5rem;
}

.company-access__station-text {
    font-size: var(--font-size-body-sp);
    line-height: 1.6;
}

.company-access__map {
    flex: 1;
    height: 30rem;
}

@media screen and (max-width: 1024px) {
    .company-access__item {
        flex-direction: column;
        gap: 2rem;
    }

    .company-access__img,
    .company-access__map {
        width: 100%;
        height: auto;
    }

    .company-access__map {
        aspect-ratio: 16 / 9;
    }
}

/* ISO Section */
.company-iso {
    margin-bottom: 8rem;
}

.company-iso__content {
    background-color: #ECECEC;
    padding: 4rem 6rem;
    display: flex;
    align-items: center;
    gap: 6rem;
    border-radius: 1rem;
}

.company-iso__img {
    flex: 0 0 20rem;
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-iso__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.company-iso__text {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
    color: #333;
}

/* Partners Section */
.company-partners {
    margin-bottom: 12rem;
}

.company-partners__content {
    background-color: #ECECEC;
    padding: 4rem 6rem;
    border-radius: 1rem;
}

.company-partners__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 4rem;
    list-style: none;
    padding: 0;
}

.company-partners__item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-size-body-pc);
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.company-partners__item a:hover {
    color: #1459E2;
}

.company-partners__item a::before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #1459E2;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231459E2'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z'/%3E%3C/svg%3E");
    background-size: 1rem;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1024px) {


    .company-iso__content,
    .company-partners__content {
        padding: 3rem;
    }
}

@media screen and (max-width: 768px) {

    .company-partners {
        margin-bottom: 4rem;
    }


    .company-iso {
        margin-bottom: 4rem;
    }

    .company-access {
        margin-bottom: 4rem;
    }

    .company-iso__content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .company-iso__img {
        flex: 0 0 auto;
        width: 100%;
    }

    .company-iso__text {
        font-size: var(--font-size-body-pc);
        text-align: center;
    }

    .company-partners__content {
        padding: 2rem;
    }

    .company-partners__list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.sp-hide {
    display: block;
}

@media screen and (max-width: 768px) {

    .company-access__list {
        gap: 4rem;
    }

    .company-tabs {
        margin-bottom: 3rem
    }

    .sp-hide {
        display: none !important;
    }

    .company-proposal {
        padding-bottom: 4rem;
    }
}

/* 2-4 Flow Section
   -------------------------------------------------------------------------- */
.company-flow {
    position: relative;
    /* 上のタブエリアとの間隔 */
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.company-flow__bg-wrap {
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.company-flow__bg {
    position: absolute;
    width: 50vw;
    max-width: 600px;
    opacity: 0.8;
}

.company-flow__bg--a {
    top: 5%;
    left: 0;
}

.company-flow__bg--b {
    bottom: 10%;
    right: 0;
}

.company-flow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 4rem;
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

.company-flow__item {
    display: flex;
    flex-direction: column;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2.5rem;
}

.company-flow__item:nth-child(odd) {
    background-image: url('../img/company_illustB.webp');
}

.company-flow__item:nth-child(even) {
    background-image: url('../img/company_illustA.webp');
}

.company-flow__head {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-flow__num {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.company-flow__item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;

}

.company-flow__text {
    font-size: var(--font-size-body-pc);
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.company-flow__img {
    margin-top: auto;
}

.company-flow__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Area */
.company-flow__contact {
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

.company-flow__contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.company-flow__contact-title-wrap::before,
.company-flow__contact-title-wrap::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #94b4f0;
}

.company-flow__contact-title {
    padding: 0 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.company-flow__contact-arrow {
    width: 0;
    height: 0;
    border-left: 2.5rem solid transparent;
    border-right: 2.5rem solid transparent;
    border-top: 2.5rem solid #333;
    margin: 0 auto 3rem;
}

.company-flow__contact-lead {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4rem;
}

.company-flow__contact-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.company-flow__btn-web {
    width: 25rem;
    display: block;
    background-color: #E60012;
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s;
}

.company-flow__btn-web:hover {
    opacity: 0.8;
}

.company-flow__btn-web img {
    width: 100%;
    height: auto;
    display: block;
}

.company-flow__btn-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-flow__btn-tel>img {
    width: 25rem;
    height: auto;
}

.company-flow__btn-tel-time {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .company-flow__bg--a {
        width: 100vw;
        top: 0;
    }

    .company-flow__bg--b {
        width: 100vw;
        bottom: 20%;
    }

    .company-flow__list {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .company-flow__contact-title-wrap {
        flex-direction: column;
        gap: 1rem;
    }

    .company-flow__contact-title-wrap::before,
    .company-flow__contact-title-wrap::after {
        width: 100%;
        flex: none;
    }

    .company-flow__contact-title {
        text-align: center;
        line-height: 1.4;
    }

    .company-flow__contact-btns {
        flex-direction: column;
        gap: 3rem;
    }

    .company-flow__btn-web,
    .company-flow__btn-tel>img {
        width: 100%;
        max-width: 20rem;
    }
}

/* 2-5 FAQ Section
   -------------------------------------------------------------------------- */
.company-faq {
    max-width: 1280px;
    margin: 8rem auto 0;
    padding: 0 2.5rem;
}

.company-faq__list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.company-faq__item {
    background-color: #EBEDED;
    border-radius: 0;
}

.company-faq__header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 2.5rem 4rem 2.5rem 3rem;
    /* Extra padding on right for the icon */
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.company-faq__q-icon {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-right: 2rem;
    flex-shrink: 0;
}

.company-faq__q-text {
    font-size: var(--font-size-body-pc);
    font-weight: 700;
    color: #333;
    line-height: 1.6;
    flex: 1;
    padding-right: 2rem;
}

/* Plus/Minus Icon */
.company-faq__icon {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
}

.company-faq__icon::before,
.company-faq__icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.company-faq__icon::before {
    width: 1.5rem;
    height: 3px;
}

.company-faq__icon::after {
    width: 3px;
    height: 1.5rem;
}

.company-faq__item.is-active .company-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.company-faq__body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.company-faq__item.is-active .company-faq__body {
    height: auto;
}

.company-faq__content {
    display: flex;
    align-items: flex-start;
    padding: 0 4rem 2.5rem 3rem;
}

.company-faq__a-icon {
    font-size: 3rem;
    font-weight: 700;
    color: #E60012;
    line-height: 1;
    margin-right: 2rem;
    flex-shrink: 0;
}

.company-faq__a-text {
    font-size: var(--font-size-body-pc);
    color: #333;
    line-height: 1.8;
    flex: 1;
    padding-top: 0.5rem;
}

@media screen and (max-width: 768px) {
    .company-faq {
        position: relative;
        margin: 4rem 0 auto;
        padding: 0 2.5rem 4rem;
    }

    .company-faq__header {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
    }

    .company-faq__list {
        gap: 2rem;
    }

    .company-faq__q-icon,
    .company-faq__a-icon {
        font-size: 2rem;
        margin-right: 1rem;
    }

    .company-faq__q-text {
        font-size: var(--font-size-body-sp);
        padding-right: 1rem;
    }

    .company-faq__icon {
        right: 1.5rem;
        width: 1.5rem;
        height: 1.5rem;
    }

    .company-faq__icon::before {
        width: 1.2rem;
    }

    .company-faq__icon::after {
        height: 1.2rem;
    }

    .company-faq__content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .company-faq__a-text {
        font-size: var(--font-size-body-sp);
        padding-top: 0.2rem;
    }
}


/* SP Overrides */
@media screen and (max-width: 768px) {

    .company-tab__icon {
        margin-bottom: 0;
    }


    .company-tab__name {
        display: none;
    }

    .company-tab-panel__top {
        display: flex;
        flex-direction: column;
        position: relative;
        margin-bottom: 2rem;
    }

    .company-tab-panel__info {
        display: contents;
    }

    .company-tab-panel__title {
        position: absolute;
        top: 1rem;
        left: 0;
        z-index: 2;
        margin-bottom: 0;
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }

    .company-tab-panel__img {
        order: 1;
        width: 100%;
    }

    .company-tab-panel__text {
        order: 2;
    }

    .company-company-list {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

.company-concept__signature {
    text-align: right;
    margin-top: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 700;
}