@charset "UTF-8";
/* ==========================================================================
   bg
   ========================================================================== */

body {
    background-color: var(--color-White);
}

/* 2. 動くノイズの層（オーバーレイ）を作る */
body::before {
    content: "";
    position: fixed;
    /* 画面に固定 */
    top: -100px;
    /* 動かした時に端が見えないよう、画面より大きく作る */
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 200px);
    z-index: 0;
    /* 常に一番手前に配置 */
    pointer-events: none;
    /* 重要：下のボタンやリンクをクリックできるようにする */

    /* 用意した1枚のノイズ画像を敷き詰める */
    background-image: url('../../images/common/noise.webp');
    background-repeat: repeat;

    /* 濃さの調整（0.03〜0.08くらいが最もプロっぽく見えます） */
    opacity: 0.16;

    /* アニメーションの指定 */
    animation: noise-jump 2s steps(2) infinite;
}

/* 3. ノイズをガクガク動かすアニメーション */
@keyframes noise-jump {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -10px);
    }
}

/* ==========================================================================
   Projects
   ========================================================================== */
.p-single-post__visual {
    width: 100%;
    font-size: var(--font-size-Heading-M);
    margin-bottom: 3em;
}

.p-single-post__visual img {
    width: 100%;
}

.p-single-post__inner {
    width: 58svw;
    margin: 0 auto var(--section-margin);
}

.p-single-post__title {
    font-family: var(--Jp-font);
    font-size: var(--font-size-Heading-M);
    font-weight: 900;
    letter-spacing: .15em;
    margin-bottom: .5em;
    color: var(--color-NUMATA-Green);
}

p {
    font-family: var(--Jp-font);
    font-size: var(--font-size-Text-R);
    font-weight: 500;
    letter-spacing: .15em;
    line-height: 2;
    color: var(--color-Primary);
    margin-bottom: 1.5em;
    max-width: none;
}

.p-activity-info-box__content {
    width: 100%;
    padding: 1.5em 4em;
    word-break: normal;
    border-bottom: 2px solid var(--color-border);
}

.p-activity-info-inner {
    display: flex;
    gap: 20%;
}

.p-activity-info__heading {
    font-family: var(--Jp-font);
    font-size: var(--font-size-Text-R);
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 2;
    color: var(--color-Primary);
    white-space: nowrap;
}

.p-activity-info__text {
    font-family: var(--Jp-font);
    font-size: var(--font-size-Text-R);
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 2;
    color: var(--color-Primary);
}

.map-container iframe {
    width: 100% !important;
    height: 450px !important;
    border: 0;
}

@media screen and (max-width: 1080px) {
    .p-single-post__inner {
        width: 80%;
    }
}

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

    .p-single-post__inner {
        width: 100%;
        padding: 0 25px;
    }

    .p-activity-info-box__content {
        width: 100%;
        padding: .5em 2em;
        word-break: normal;
        border-bottom: 2px solid var(--color-border);
    }
}