@charset 'utf-8';

html,
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #333;
}

.teijin-pharma .material-symbols-outlined {
    font-size: 2.25rem;
}

.bg-brand-primary {
    background-color: #0270D8;
    /* DigiPro Blue */
}

.border-brand-primary {
    border-color: #0035C8;
    /* DigiPro Blue */
}

.text-brand-primary {
    color: #0035C8;
}

/* Teijin Brand Red Approximation */
.border-teijin-red {
    border-color: #E60012;
}

.text-teijin-red {
    color: #E60012;
}

.bg-teijin-red-light {
    background-color: #fff5f5;
}

.bg-accent-light {
    background-color: #f8fafc;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #0056b3;
}

.quote-box {
    position: relative;
    padding: 2rem;
    background: #fff;
    border-left: 5px solid #0056b3;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.quote-box::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    color: #e2e8f0;
    z-index: 0;
}

.wall-card {
    transition: all 0.3s ease;
}

.wall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(230, 0, 18, 0.1), 0 4px 6px -2px rgba(230, 0, 18, 0.05);
}

.teijin-pharma,
.teijin-pharma p,
.teijin-pharma h1,
.teijin-pharma h2,
.teijin-pharma h3,
.teijin-pharma h4,
.teijin-pharma h5,
.teijin-pharma h6 {
    letter-spacing: 0.1em;
}

.teijin-pharma .flex {
    justify-content: unset;
    align-items: unset;
    gap: unset;
}

.teijin-pharma .flex-tw {
    display: flex;
}

.teijin-pharma .bb-short {
    position: relative;

    &::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        display: block;
        width: 50px;
        height: 1px;
        border-bottom: 1px solid #0E7AE0;
    }
}

.teijin-pharma .bb-short-center {
    position: relative;

    &::after {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 0);
        content: "";
        display: block;
        width: 100px;
        height: 1px;
        border-bottom: 2px solid #0E7AE0;
    }
}

.teijin-pharma .container {
    padding-top: 0;
}

.teijin-pharma .dp-underline {
    position: relative;

    &::before {
        content: "";
        position: absolute;
        top: calc(100% + 2px);
        left: 0;
        display: block;
        width: 100%;
        height: 6px;
        background: url(../../img/case/underline.svg) 0 0 repeat-x;
    }
}

@media screen and (min-width:768px) {
    .dp-arrow {
        &::after {
            content: "";
            position: absolute;
            top: calc(100% - 15px);
            left: 50%;
            display: block;
            width: clamp(200px, 53vw, 570px);
            height: 50px;
            background: url(../../img/case/dp-arrow.svg) no-repeat 0 0 / contain;
        }
    }
}