.globalnav ul li a {
    letter-spacing: 1px !important;
    margin: 0 13px !important;
}

@media screen and (max-width: 959px) {
    .globalnav ul li a {
        letter-spacing: 1px !important;
        margin: 0 3px !important;
        font-size: 13px !important;
    }
}

:root {
    --pressio-red: #d21d22;
    --line-gray: #d2d2d2;
    --text: #333;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: #fff;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.4;
}

th,
td {
    line-height: 160%;
}

a {
    color: #005580;
    text-decoration: underline;
}

a:hover {
    color: #005580;
    text-decoration: none;
}

p {
    margin-bottom: 20px;
}

p:last-child,
p:only-child {
    margin-bottom: 0;
}

.uk-container {
    max-width: 1070px;
    margin: 0 auto;
    padding: 0 35px;
}

.breadcrumb {
    background: #eee;
    font-size: 13px;
    margin-top: 84px;
    padding: 5px 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    align-items: center;
    display: inline-flex;
    white-space: nowrap;
}

.breadcrumb-list li+li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 14px;
    margin: 0 8px;
    background: linear-gradient(135deg, transparent 45%, #777 45%, #777 55%, transparent 55%) no-repeat;
    transform: scale(0.8);
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    border-bottom: 2px solid var(--pressio-red);
    color: #000;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 24px 0 30px;
    padding-bottom: 5px;
}

.ttl_m {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0 0 0 20px;
    position: relative;
}

.ttl_m::after {
    background: var(--pressio-red);
    content: "";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 5px;
}

.challenge-main {
    padding-bottom: 80px;
}

.challenge-visual-wrap {
    display: flex;
    justify-content: center;
    margin: 56px 0 48px;
}

.challenge-visual {
    aspect-ratio: 1 / 1;
    max-width: 670px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.challenge-visual-image {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.challenge-core {
    align-items: center;
    background: #e50012;
    border: 4px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2px;
    height: 58%;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 58%;
}

.challenge-core .brand {
    font-size: 62px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.challenge-core .sub {
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
}

.bubble {
    align-items: center;
    background: #fff;
    border: 1px solid var(--pressio-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    position: absolute;
    text-align: center;
}

.bubble small {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 2px;
}

.bubble strong {
    display: block;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.bubble span {
    display: block;
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
}

.bubble.top {
    height: 32%;
    left: 52%;
    top: 10%;
    transform: translateX(-50%);
    width: 32%;
}

.bubble.left {
    height: 30%;
    left: 15%;
    top: 62%;
    width: 30%;
}

.bubble.right {
    height: 30%;
    right: 11%;
    top: 63%;
    width: 30%;
}

.challenge-cases {
    display: grid;
    gap: 84px;
}

.challenge-case-body {
    align-items: start;
    column-gap: 34px;
    display: grid;
    grid-template-areas: "text thumb";
    grid-template-columns: minmax(0, 586px) 378px;
    grid-template-rows: auto;
    margin-top: 24px;
}

.challenge-case-text {
    font-size: 14px;
    grid-area: text;
    height: 380px;
    width: 586px;
}

.challenge-case-text p {
    margin-bottom: 16px;
}

.challenge-case-text p:last-child {
    margin-bottom: 0;
}

.challenge-case-thumb {
    aspect-ratio: 1 / 1;
    background: var(--line-gray);
    grid-area: thumb;
    overflow: hidden;
    width: 378px;
}

.challenge-case-thumb-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media screen and (max-width: 959px) {
    .uk-container {
        padding: 0 16px;
    }

    .breadcrumb {
        margin-top: 0;
    }

    .challenge-main {
        padding-bottom: 80px;
    }

    .challenge-visual-wrap {
        margin: 48px 0 40px;
    }

    .challenge-cases {
        gap: 56px;
    }

    .challenge-case-body {
        column-gap: 24px;
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .challenge-case-thumb {
        max-width: 280px;
        width: 100%;
    }

    .challenge-case-text {
        height: auto;
        min-height: 380px;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .page-title {
        font-size: 24px;
        padding-bottom: 5px;
    }

    .challenge-visual-wrap {
        margin: 32px 0 24px;
    }

    .challenge-case-body {
        grid-template-areas:
            "thumb"
            "text";
        grid-template-columns: minmax(0, 1fr);
        row-gap: 14px;
    }

    .challenge-case-thumb {
        margin: 0 auto;
        max-width: 320px;
    }

    .challenge-case-text {
        min-height: 0;
    }
}