@charset "utf-8";

body {
    color: #333333;
    min-height: 100vh;
    height: auto;
}

.blogLayout {
    display: flex;
    min-height: calc(100vh - 20px);
}

.blogPanel {
    position: relative;
    z-index: 1;
    width: 50%;
    min-height: calc(100vh - 20px);
    padding-bottom: 56px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(20px) saturate(180%);
}

.blogTitle {
    height: 220px;
}

.blogTitle h1 {
    color: #333333;
}

.blogContent {
    width: min(680px, calc(100% - 64px));
    margin: 0 auto;
    font-family: "Kiwi Maru", sans-serif;
}

.blogList {
    margin-top: 28px;
}

.blogCard {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 24px;
    background: rgba(255, 255, 255, .42);
    transition: transform .25s ease, background .25s ease;
}

.blogCard:hover,
.blogCard:focus-within {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .58);
}

.blogCardLink {
    display: block;
    color: #333333;
    text-decoration: none;
}

.blogCardBody {
    padding: 26px;
}

.blogCardCategory {
    margin-bottom: 10px;
    color: #325e70;
    font-size: 13px;
}

.blogCard h2 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.5;
}

.blogCardBody > p:not(.blogCardCategory) {
    font-size: 15px;
    line-height: 1.8;
}

.blogCardMore {
    display: inline-block;
    margin-top: 18px;
    color: #10285c;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.articlePanel {
    width: min(860px, calc(100% - 250px));
    min-height: calc(100vh - 20px);
    margin-left: clamp(24px, 5vw, 80px);
    padding: 0 0 72px;
}

.articleTitle {
    height: auto;
    min-height: 240px;
    padding: 80px 120px 36px;
    text-align: center;
}

.articleTitle div h1 {
    max-width: 680px;
    font-family: "Kiwi Maru", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.45;
}

.articleTitle div p {
    margin-top: 12px;
    color: #325e70;
}

.articleContent {
    padding: 36px clamp(22px, 6vw, 72px) 56px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .72);
    font-family: "Kiwi Maru", sans-serif;
    line-height: 2;
}

.articleHero {
    display: block;
    width: min(100%, 300px);
    margin: 0 auto 38px;
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.articleIntro {
    margin-bottom: 42px;
}

.articleSection + .articleSection {
    margin-top: 40px;
}

.articleSection h2 {
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(51, 51, 51, .22);
    font-size: 24px;
    line-height: 1.6;
}

.articleSection p + p,
.articleIntro p + p {
    margin-top: 14px;
}

.articleBack {
    margin-top: 36px;
    text-align: center;
}

.articleBack a {
    color: #10285c;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blogLayout > .background {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
}

.topBtn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 20;
    color: #333333;
}

@media (max-width: 760px) {
    .blogLayout {
        display: block;
    }

    .blogPanel {
        width: 100%;
        min-height: calc(100vh - 20px);
        padding-bottom: 72px;
        backdrop-filter: none;
    }

    .blogTitle {
        height: 190px;
    }

    .blogContent {
        width: calc(100% - 40px);
    }

    .blogCardBody {
        padding: 22px;
    }

    .blogLayout > .background {
        position: fixed;
        left: 0;
        right: auto;
        width: 100%;
        height: 100vh;
    }

    .articlePanel {
        width: calc(100% - 24px);
        margin: 0 auto;
    }

    .articleTitle {
        min-height: 210px;
        padding: 76px 18px 28px;
    }

    .articleTitle a {
        display: block;
    }

    .articleContent {
        padding: 24px 18px 44px;
        border-radius: 22px;
    }

    .articleSection h2 {
        font-size: 21px;
    }
}
