/*
 * nmlmain.css — Nakatani MiraiLab
 * ============================================================
 * デザイン方針: 白基調・余白重視・カード型レイアウト
 * ▼ テーマカラー変更はここだけ ▼
 * ============================================================
 */

:root {
    /* --- テーマカラー --- */
    --c-school: #1e6b3a;
    /* 学校カラー：深緑 */
    --c-school-mid: #2e9050;
    /* 中明度緑（ホバー等） */
    --c-school-pale: #eaf4ee;
    /* 淡緑（背景・縞等） */
    --c-found: #1040a0;
    /* 財団カラー：深青 */
    --c-found-pale: #e8eef8;
    /* 淡青（背景） */
    --c-accent: #e85c00;
    /* アクセント（CTA） */

    /* --- テキスト --- */
    --c-text: #1a1a1a;
    --c-text-sub: #666;
    --c-text-inv: #fff;
    --c-link: var(--c-found);

    /* --- 背景 --- */
    --c-bg-white: #fff;
    --c-bg-header: rgba(255, 255, 255, .95);

    /* --- ボーダー・影 --- */
    --c-border: #e0e0e0;
    --shadow: 0 2px 16px rgba(0, 0, 0, .07);
    --shadow-hover: 0 6px 28px rgba(0, 0, 0, .13);

    /* --- レイアウト --- */
    --max-w: 1160px;
    --header-h: 68px;

    /* --- 角丸 --- */
    --r-sm: 4px;
    --r-md: 10px;
    --r-lg: 18px;

    /* --- フォント --- */
    --font-default: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    /* 飾り用：メインビジュアル・大見出しなど限定的に使用 */
    --font-deco: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', '游明朝',
        'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'ヒラギノ明朝 ProN',
        'MS Mincho', 'MS 明朝', serif;
}


/* ============================================================
   リセット
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body,
div,
section,
article,
p,
a,
img,
figure,
h1,
h2,
h3,
h4,
dl,
dt,
dd,
ul,
li,
header,
footer,
main,
aside {
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

/* グラデーション背景（静止・fixed擬似要素で全ブラウザ対応） */
html::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(125deg,
            #6fa882 0%,
            #7a9cc8 25%,
            #5d8a9e 50%,
            #7db88a 75%,
            #6fa882 100%);
}

body {
    font-family: var(--font-default);
    color: var(--c-text);
    background: transparent;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--c-link);
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 1.5em;
}


/* ============================================================
   ヘッダー
   ============================================================ */
header#header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: background .35s, box-shadow .35s;
}


/* ── ヘッダー内部レイアウト ── */
.site-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

/* ── ロゴ ── */
.site-header__logo {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(0, 0, 0, .95);
    text-decoration: none;
    letter-spacing: .04em;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
    flex-shrink: 0;
    z-index: 103;
    /* ドロワー(105)・オーバーレイ(104)より下に */
}

.site-header__logo img {
    height: 50px;
    width: auto;
    display: block;
}


/* ── PC ナビ ── */
.site-header nav {
    margin-left: auto;
}

.site-header nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header nav ul li a {
    display: block;
    padding: 6px 16px;
    font-size: .875rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .08);
    letter-spacing: .04em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    transition: color .0s, background .0s, border-color .0s;
}

.site-header nav ul li a:hover {
    background: rgba(255, 255, 255, .28);
    color: #000;
}


/* ── ハンバーガーボタン（スマホのみ表示） ── */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    z-index: 110;
}

.site-header__hamburger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #111;
    border-radius: 2px;
    transition: transform .3s, opacity .3s, background .3s;
}


.site-header__hamburger.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.site-header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header__hamburger.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── スマホ ドロワーメニュー ── */
@media (max-width: 768px) {
    .site-header {
        padding: 0 20px;
    }

    .site-header__hamburger {
        display: flex;
    }

    .site-header nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(280px, 80vw);
        height: 100dvh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: -4px 0 24px rgba(0, 0, 0, .15);
        padding: calc(var(--header-h) + 16px) 0 32px;
        margin-left: 0;
        transform: translateX(110%);
        transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        z-index: 105;
        overflow-y: auto;
    }

    .site-header nav.is-open {
        transform: translateX(0);
    }

    .site-header nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-header nav ul li a {
        color: var(--c-text);
        text-shadow: none;
        font-size: 1rem;
        padding: 16px 28px;
        border-radius: 0;
        border-bottom: 1px solid var(--c-school-pale);
    }

    .site-header nav ul li a:hover {
        background: var(--c-school-pale);
        color: var(--c-school);
    }

    .site-header__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        z-index: 104;
    }

    .site-header__overlay.is-open {
        display: block;
    }
}


/* ============================================================
   共通レイアウト
   ============================================================ */
.wrapper {
    max-width: var(--max-w);
    margin: 0 auto 20px;
    /* 下マージンで間隔を統一 */
    padding: 40px 70px;
}

.jd-section-title,
.section-title {
    font-family: var(--font-deco);
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-text);
    text-align: center;
    margin: 48px 0 32px;
    line-height: 1.3;
    letter-spacing: .02em;

    &::before {
        content: none;
    }

    &::after {
        content: '';
        display: block;
        width: 48px;
        height: 3px;
        margin: 14px auto 0;
        border-radius: 2px;
        background: linear-gradient(to right, var(--c-school), var(--c-found));
    }

    & .jd-section-title__en {
        display: block;
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: .18em;
        color: var(--c-school);
        margin-bottom: 8px;
        text-transform: uppercase;
    }
}


/* ============================================================
   メインビジュアル
   ============================================================ */
#mainvisual {
    height: 440px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* 鳥海山背景画像 */
    &::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background: url('./img/home_bgi_new.jpg') center center / cover no-repeat;
        opacity: 0.5;
    }

    & .top-title {
        position: absolute;
        z-index: 10;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        padding: 0 20px;

        & .site-title {
            font-family: var(--font-deco);
            font-size: 3.4rem;
            font-weight: 800;
            color: var(--c-text-inv);
            text-shadow: 0 4px 16px rgba(0, 0, 0, .45);
            text-align: center;
            letter-spacing: .08em;
            line-height: 1.3;

        }
    }


    @media (max-width: 746px) {
        height: 460px;

        & .top-title .site-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 499px) {
        & .top-title .site-title {
            font-size: 1.7rem;
        }
    }
}


.mainvisual-logo {
    display: block;
    margin: 0 auto 16px;
    height: 175px;
    width: auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--r-md);
}

.mainvisual-inner {
    margin-top: 110px;
}



/* ============================================================
   ホームセクション 半透過カード
   ============================================================ */
#home-notice,
#home-info {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--r-lg);
}

/* メインビジュアル（画像）がない場合、先頭セクションにヘッダー分の余白を確保 */
main>section:first-child,
main>div:first-child {
    padding-top: calc(var(--header-h) + 40px);
}


/* ============================================================
   新着情報
   ============================================================ */
.notice {
    & li {
        border-bottom: 1px solid var(--c-border);
        list-style: none;
        padding: 12px 8px;
        width: 100%;
        margin: 0 auto;
        transition: background .15s;

        &:hover {
            background: var(--c-school-pale);
        }

        display: flex;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 10px;

        & .news-title {
            background: var(--c-found);
            border-radius: var(--r-sm);
            color: var(--c-text-inv);
            font-size: .78rem;
            padding: 3px 10px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        & time {
            font-weight: 600;
            font-size: .88rem;
            color: var(--c-text);
            white-space: nowrap;
        }

        & p {
            color: var(--c-text);

            & a {
                color: var(--c-found);
                text-decoration: underline;
            }
        }

        @media (max-width: 746px) {
            padding: 8px 5px;
            width: auto;
            font-size: .85rem;
        }
    }
}

.new::after {
    content: "NEW";
    color: #c00;
    font-size: .78rem;
    border: 1px solid #c00;
    padding: 2px 6px;
    margin-left: 12px;
    border-radius: 3px;
    vertical-align: middle;
}

.home-notice-title {
    margin-top: 0;
}


/* ============================================================
   カードスライダー（home-class_content）
   ※ home/index.html の #home-class_content セクションをコメント解除すると有効になる
   ============================================================ */
#home-class_content {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--r-lg);
    padding: 50px 16px;
    margin: 0px auto 10px;
}

.card-slider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-track {
    flex: 1;
    overflow: hidden;
    border-radius: var(--r-lg);
}

.slider-list {
    display: flex;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-item {
    flex: 0 0 100%;
    text-decoration: none;
    color: var(--c-text);
    display: block;
}

.slider-item .item {
    background: var(--c-bg-white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 4px;
    transition: box-shadow .25s, transform .25s;
}

.slider-item .item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.slider-item .item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.slider-item .item-content {
    padding: 16px 20px;
}

.slider-item .item-text {
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.55;
    color: var(--c-text);
    margin: 0;
}

.slider-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(30, 107, 58, 0.35);
    background: rgba(255, 255, 255, 0.85);
    color: var(--c-school);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .15s;
    line-height: 1;
}

.slider-btn:hover {
    background: var(--c-school-pale);
    border-color: var(--c-school);
    transform: scale(1.08);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(30, 107, 58, 0.25);
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.slider-dot.is-active {
    background: var(--c-school);
    transform: scale(1.3);
}

@media (max-width: 600px) {
    #home-class_content {
        padding: 24px 20px 20px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: .9rem;
    }

    .slider-item .item img {
        height: 180px;
    }
}


/* ============================================================
   アクセス（home-info）
   ============================================================ */
#home-info {
    & img {
        object-fit: cover;
        width: 100%;
        height: 450px;
        border-radius: var(--r-md);
    }

    @media (max-width: 746px) {
        padding: 20px;

        & img {
            height: 200px;
        }
    }
}

.home-info-address_title {
    font-size: 1.8rem;
    color: var(--c-school);

    @media (max-width: 746px) {
        font-size: 1em;
    }
}

.info-item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-top: 24px;

    @media (max-width: 1024px) {
        flex-direction: column;
        margin: 0 auto;
    }
}

.info-text .info-small {
    font-size: .9rem;
}

.info-address {
    font-size: 15px;
    letter-spacing: .15em;
    white-space: nowrap;
    line-height: 1.9;
    padding-bottom: 10px;
}

.line-dl {
    & div {
        display: flex;
        border-bottom: 1px solid var(--c-school-pale);
        padding: 11px 5px 14px;
        align-items: flex-start;

        &:first-child {
            border-top: 1px solid var(--c-school-pale);
        }

        & .font-mg {
            width: 110px;
            letter-spacing: .15em;
            white-space: nowrap;
            color: var(--c-school);
            font-size: 15px;
            line-height: 1.9;
        }

        & dd {
            width: calc(100% - 110px);
            font-size: 14px;
            letter-spacing: .04em;
            line-height: 1.9;

            & a {
                color: var(--c-link);

                &:hover {
                    opacity: .7;
                }
            }

            & .info-small {
                font-size: 13px;
            }
        }
    }
}

iframe {
    width: 450px;
    height: 600px;

    @media (max-width: 746px) {
        width: 100%;
        height: 300px;
    }
}

.iframe-wrap {
    @media (max-width: 1024px) {
        padding-top: 50px;
        width: 100%;
    }
}


/* ============================================================
   活動掲載ページ（#active）
   ============================================================ */
#active {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--header-h) + 32px) 40px 80px;
    align-items: start;
}

#active>.jd-section-title,
#active>.section-title {
    grid-column: 1 / -1;
}

#active>.jd-section-title,
#active>.section-title {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--r-md);
    padding: 24px 32px 20px;
}

/* ── 記事エリア ── */
.jd-activity {
    grid-column: 1;
}

/* ── 記事カード ── */
.jd-entry {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    padding: 32px 36px;
    border-top: 3px solid var(--c-school);
    transition: box-shadow .2s;

    &:hover {
        box-shadow: var(--shadow-hover);
    }
}

.jd-entry__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-text);
    padding-left: 14px;
    border-left: 4px solid var(--c-school);
    margin-bottom: 6px;
    line-height: 1.45;
}

.jd-entry__date {
    font-size: .82rem;
    color: var(--c-found);
    font-weight: 500;
    padding-left: 14px;
    margin-bottom: 20px;
    letter-spacing: .04em;
}

.jd-entry__body p {
    display: block;
    margin-bottom: 18px;
    font-size: .95rem;
    line-height: 1.9;
    color: var(--c-text);
    text-align: left;
}

.jd-entry__body p>a {
    align-self: flex-start;
}

.jd-entry__body p>ul {
    align-self: stretch;
    width: 100%;
}

.jd-entry__body p img {
    display: block;
    margin: 0 auto 14px;
    width: 400px;
    max-width: 400px;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--r-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.jd-entry__body p img.full {
    width: 100%;
    height: auto;
    max-height: 480px;
    flex-shrink: unset;
}

.jd-entry__body a {
    color: var(--c-link);

    &:hover {
        color: var(--c-school);
    }
}

/* ── サイドバー ── */
aside#sidebar {
    grid-column: 2;
    position: sticky;
    top: calc(var(--header-h) + 20px);
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.jd-archive {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
    padding: 20px;

    & h3 {
        font-size: .82rem;
        font-weight: 700;
        color: var(--c-school);
        letter-spacing: .12em;
        text-transform: uppercase;
        border-bottom: 2px solid var(--c-school-pale);
        padding-bottom: 10px;
        margin-bottom: 12px;
    }

    & ul {
        list-style: none;
        padding: 0;
    }

    & li {
        line-height: 1.4;
        padding: 8px 8px 8px 10px;
        border-bottom: 1px solid rgba(30, 107, 58, 0.2);
        border-left: 3px solid transparent;
        transition: background .15s, border-left-color .15s;

        &:last-child {
            border-bottom: none;
        }

        &:hover {
            background: rgba(234, 244, 238, 0.7);
            border-left-color: var(--c-school);
        }

        & a {
            display: flex;
            flex-direction: column;
            gap: 3px;
            text-decoration: none;
            transition: color .2s;

            &:hover {
                color: var(--c-school);
            }
        }

        & .arch-date {
            font-size: .7rem;
            color: var(--c-found);
            letter-spacing: .04em;
        }

        & .arch-title {
            font-size: .78rem;
            color: var(--c-text);
            line-height: 1.45;
        }

        &:hover .arch-title {
            color: var(--c-school);
        }
    }
}

/* スマホ → 1カラム */
@media (max-width: 768px) {
    #active {
        grid-template-columns: 1fr;
        padding: calc(var(--header-h) + 16px) 20px 60px;
    }

    #active>.jd-section-title,
    #active>.section-title,
    .jd-activity,
    aside#sidebar {
        grid-column: 1;
    }

    aside#sidebar {
        position: static;
        max-height: none;
        margin-top: 40px;
    }

    .jd-entry {
        padding: 20px 16px;
    }

    .jd-entry__body p {
        display: block;
    }

    .jd-entry__body p img {
        max-width: 100%;
        max-height: 240px;
    }
}



/* ============================================================
   フッター
   ============================================================ */
footer {
    position: sticky;
    top: 100vh;
    background: linear-gradient(135deg, var(--c-school) 0%, var(--c-found) 100%);
    color: var(--c-text-inv);
    text-align: center;
    font-size: .8rem;
    padding: 32px 20px 24px;
    margin-top: 60px;

    & a {
        color: rgba(255, 255, 255, .8);

        &:hover {
            color: #fff;
        }
    }
}

.site-footer__copy {
    margin-top: 10px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .06em;
}

/* フッター supported by エリア */
.site-footer__supported {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.site-footer__logo {
    height: 36px;
    width: auto;
    display: inline-block;
    /* img の display:block を上書き */
    vertical-align: middle;
    background: #fff;
    border-radius: 6px;
    padding: 4px 8px;
}

.site-footer__phrase {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    margin: 0 12px;
    letter-spacing: .06em;
    vertical-align: middle;
}

.site-footer__found-logo {
    height: 36px;
    width: auto;
    display: inline-block;
    /* img の display:block を上書き */
    vertical-align: middle;
    border-radius: 4px;
}

/* スマホ：縦並びに */
@media (max-width: 600px) {
    .site-footer__supported {
        flex-direction: column;
        gap: 8px;
    }

    .site-footer__phrase {
        margin: 0;
    }
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 746px) {

    .jd-section-title,
    .section-title {
        font-size: 1.25rem;
        margin: 40px 0 28px;

        &::after {
            width: 40px;
        }
    }

    .wrapper {
        padding: 0 20px 40px;
    }

    #mainvisual .top-title .site-title {
        font-size: 1.4rem;
        /* font-size:0 廃止 → 「準備中」等テキストが消えないように */
    }

    #mainvisual .top-title .site-title .mainvisual-logo {
        display: block;
        height: auto;
        width: min(500px, 70vw);
    }
}

/* ============================================================
   活動成果一覧ページ（achievements）
   ============================================================ */
#achievements-page {
    padding: calc(var(--header-h) + 32px) 0 80px;
}

.achievements-inner {
    max-width: 900px;
}

/* 年度ブロック */
.achieve-year-block {
    margin-bottom: 48px;
}

.achieve-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text-inv);
    background: linear-gradient(to right, var(--c-school), var(--c-found));
    padding: 10px 20px;
    border-radius: var(--r-sm);
    margin-bottom: 16px;
    letter-spacing: .06em;
}

/* 実績カード */
.achieve-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--r-md);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
    border-left: 4px solid var(--c-school);
    transition: box-shadow .2s;
}

.achieve-card:hover {
    box-shadow: var(--shadow-hover);
}

.achieve-date {
    padding: 14px 20px;
    font-weight: 600;
    color: var(--c-text);
    border-right: 2px solid rgba(30, 107, 58, 0.15);
    display: flex;
    align-items: center;
}

.achieve-body {
    padding: 14px 20px;
}

p.achieve-event {
    margin: 0;
    line-height: 1.8;
}