/* yaokara — main styles */

:root{
    --color-primary: #a3d4e8;
    --color-primary-light: #b3ddfc;
    --color-secondary: #ff91b5;

    --color-text-primary: #38b6ff;

    --container-width: 1240px;
    --container-padding: 20px
}

body {
    font-family: 'M PLUS U', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: linear-gradient(to bottom, #fff, var(--color-primary-light));
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'M PLUS U', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: contain;
}

.container{
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* 共通パーツ */
.c-title{
    font-size: 16px;
    line-height: 1.15;
}

.c-title-en{
    display: block;
    font-family: 'Kaisei Decol', serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--color-text-primary);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.12);
}

.c-title-ja{
    display: block;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #5b6a75;
}


/* ヘッダー */
.header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.header.--scrolled{
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.header__inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header__nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-block: 10px;
    padding-inline: clamp(20px, calc(20 / 1440 * 100vw), 100px);
}

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

.header__nav li{
    margin-left: 20px;
}

/* FV */

.fv{
    position: relative;
}
.fv-bg{

}
.fv__title{
    padding-inline: clamp(20px, calc(20 / 1440 * 100vw), 100px);
    font-size: 80px;
    font-size: min(80px, calc(80 / 1440 * 100vw));
    font-size: clamp(40px, calc(80 / 1440 * 100vw), 80px);
    font-weight: 400;
    position: absolute;
    bottom: 40px;
    left: 0;
    color: var(--color-text-primary);
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
    
}


/* Concept */

.concept {
}

.concept-inner p{
    font-size: 20px;
    line-height: 2;
    max-width: 720px;
    color: var(--color-text-primary);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

/* Feature */

.feature {
}

.feature-inner h2{
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    text-align: right;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}

.feature__imageList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.feature__imageList li{
    flex: 1;
}

.feature__imageList li p{
    width: 80%;
    margin-inline: auto;
    font-size: 20px;
    line-height: 2;
    color: #333;
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); */
}


/* Calender */

.calender {
}

.calender-inner h2{
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    text-align: right;
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}

.calender__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

/* 3列固定：件数が1〜2件でも3列分の幅で表示する */
.calender__list li{
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
}

.calender__list li h3{
    font-size: 20px;
    font-weight: 400;
}

.calender__list li .calender__image img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.calender__empty{
    font-size: 18px;
    color: #5b6a75;
}

.calender__more{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.calender__more-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-text-primary);
    background: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: 0 6px 16px rgba(56, 130, 200, 0.1);
    transition: transform 0.25s ease, background 0.25s ease;
}

.calender__more-link span{
    transition: transform 0.25s ease;
}

.calender__more-link:hover{
    transform: translateY(-2px);
    background: var(--color-primary-light);
}

.calender__more-link:hover span{
    transform: translateX(4px);
}

.calender__more-link:focus-visible{
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
    .calender__more-link,
    .calender__more-link span{
        transition: none;
    }
}

@media (max-width: 768px){
    .calender__list{
        gap: 14px;
    }

    /* スマホでは2列（縦長カレンダーが小さくなりすぎないように） */
    .calender__list li{
        flex-basis: calc((100% - 14px) / 2);
        max-width: calc((100% - 14px) / 2);
    }
}


/* ---- トップページ レスポンシブ ---- */

/* タブレット（〜1024px）：feature 画像を2列に */
@media (max-width: 1024px){
    .feature__imageList li{
        flex: 1 1 calc((100% - 20px) / 2);
    }
}

/* スマホ（〜768px） */
@media (max-width: 768px){
    /* 共通見出し */
    .c-title-en{
        font-size: 34px;
    }

    .c-title-ja{
        margin-top: 8px;
        font-size: 15px;
    }

    /* Concept */
    .concept-inner p{
        font-size: 16px;
        line-height: 1.9;
    }

    /* Feature */
    .feature-inner h2{
        font-size: 26px;
    }

    .feature__imageList{
        gap: 24px;
    }

    /* 画像＋キャプションが潰れないよう1列に */
    .feature__imageList li{
        flex: 1 1 100%;
    }

    .feature__imageList li img{
        width: 100%;
    }

    .feature__imageList li p{
        width: 100%;
        font-size: 16px;
        line-height: 1.8;
    }

    /* Calender */
    .calender-inner h2{
        font-size: 26px;
    }

    .calender__list li h3{
        font-size: 16px;
    }

    .calender__more{
        margin-top: 28px;
    }

    .calender__more-link{
        padding: 11px 22px;
        font-size: 15px;
    }
}

/* 小型スマホ（〜480px）：FV タイトルの折り返し対策など */
@media (max-width: 480px){
    .fv__title{
        bottom: 24px;
    }

    .feature__imageList li p,
    .concept-inner p{
        font-size: 15px;
    }
}


/* Calendar archive（一覧ページ） */

.cal-archive{
    padding-block: 140px 100px;
}

.cal-archive__head{
    text-align: center;
    margin-bottom: 36px;
}

.cal-archive__eyebrow{
    font-size: 26px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.cal-archive__title{
    font-family: 'Kaisei Decol', serif;
    font-size: 40px;
    font-weight: 400;
    color: #5b6a75;
}

.cal-archive__title .ja{
    display: block;
}

/* ページタイトルの多言語サブ表記（vi / ch / en） */
.cal-archive__title-sub{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 18px;
    margin-top: 12px;
}

.cal-archive__title-sub span{
    font-family: 'M PLUS U', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #8a97a1;
}

/* 一覧カードのタイトル多言語表記（front-page には影響しないよう限定） */
.cal-archive__list .calender__title .ja{
    display: block;
}

.cal-archive__list .calender__title-sub{
    display: flex;
    flex-wrap: wrap;
    gap: 2px 12px;
    margin-top: 4px;
}

.cal-archive__list .calender__title-sub span{
    font-size: 13px;
    font-weight: 500;
    color: #8a97a1;
}

/* 年切り替えナビ */
.cal-archive__years ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.cal-archive__year{
    display: inline-flex;
    align-items: baseline;
    padding: 10px 24px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: var(--color-text-primary);
    background: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: 0 6px 16px rgba(56, 130, 200, 0.1);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cal-archive__year:hover{
    transform: translateY(-2px);
    background: var(--color-primary-light);
}

.cal-archive__year.--active{
    color: #fff;
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.cal-archive__year-unit{
    font-size: 13px;
    margin-left: 2px;
}

.cal-archive__year:focus-visible{
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

@media (max-width: 768px){
    .cal-archive{
        padding-block: 110px 70px;
    }

    .cal-archive__title{
        font-size: 30px;
    }

    .cal-archive__years ul{
        gap: 8px;
        margin-bottom: 32px;
    }

    .cal-archive__year{
        padding: 8px 18px;
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce){
    .cal-archive__year{
        transition: none;
    }
}


/* SNS / Instagram */

.sns{
    padding-block: 90px 120px;
}

.sns__head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-bottom: 44px;
}

.sns__follow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(255, 145, 181, 0.35);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sns__follow:hover{
    transform: translateY(-3px);
    background: #ff7aa8;
    box-shadow: 0 12px 26px rgba(255, 145, 181, 0.45);
}

.sns__follow-icon{
    display: inline-flex;
    width: 22px;
    height: 22px;
}

.sns__follow-icon svg{
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.sns__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sns__link{
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(56, 130, 200, 0.14);
    text-decoration: none;
}

.sns__thumb{
    display: block;
    width: 100%;
    height: 100%;
}

.sns__thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sns__link:hover .sns__thumb img{
    transform: scale(1.06);
}

.sns__caption{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(to top, rgba(40, 78, 112, 0.8) 0%, rgba(40, 78, 112, 0) 58%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sns__link:hover .sns__caption,
.sns__link:focus-visible .sns__caption{
    opacity: 1;
}

.sns__link:focus-visible{
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

/* Instagram トークン未設定時に表示するプレースホルダー（「カラフル」なトーン） */
.sns__thumb--empty{
    display: block;
    width: 100%;
    height: 100%;
}

.sns__item--placeholder:nth-child(1) .sns__thumb--empty{ background: linear-gradient(135deg, #b3ddfc, #e7f6ff); }
.sns__item--placeholder:nth-child(2) .sns__thumb--empty{ background: linear-gradient(135deg, #ffd0e0, #fff0f5); }
.sns__item--placeholder:nth-child(3) .sns__thumb--empty{ background: linear-gradient(135deg, #c9ecc0, #f2fbef); }
.sns__item--placeholder:nth-child(4) .sns__thumb--empty{ background: linear-gradient(135deg, #ffe6b0, #fff7e8); }

.sns__caption--empty{
    inset: auto 0 0 0;
    justify-content: center;
    padding-bottom: 20px;
    background: none;
    color: #6a7a88;
    font-weight: 600;
    opacity: 1;
}

@media (max-width: 768px){
    .sns{
        padding-block: 60px 80px;
    }

    .sns__head{
        margin-bottom: 32px;
    }

    .sns__title-en{
        font-size: 38px;
    }

    .sns__list{
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .sns__link{
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce){
    .sns__thumb img,
    .sns__follow{
        transition: none;
    }

    .sns__link:hover .sns__thumb img{
        transform: none;
    }
}


/* Calendar single */

.cal-single{
    padding-block: 140px 100px;
}

.cal-single__head{
    text-align: center;
    margin-bottom: 40px;
}

.cal-single__eyebrow{
    /* c-title-en を継承しつつ中央寄せ用に微調整 */
    font-size: 22px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.cal-single__title{
    font-family: 'Kaisei Decol', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text-primary);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.12);
}

.cal-single__title .ja{
    display: block;
}

/* 多言語のサブ表記（vi / ch / en） */
.cal-single__title-sub{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 18px;
    margin-top: 12px;
}

.cal-single__title-sub span{
    font-family: 'M PLUS U', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #5b6a75;
    text-shadow: none;
}

.cal-single__figure{
    margin: 0;
    display: flex;
    justify-content: center;
}

.cal-single__image{
    /* 画面幅の約70%で大きく表示。縦は成り行きでページスクロールさせる */
    width: 70vw;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(56, 130, 200, 0.2);
}

.cal-single__empty{
    text-align: center;
    font-size: 18px;
    color: #5b6a75;
    padding: 60px 0;
}

.cal-single__foot{
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.cal-single__back{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(255, 145, 181, 0.35);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cal-single__back:hover{
    transform: translateY(-3px);
    background: #ff7aa8;
    box-shadow: 0 12px 26px rgba(255, 145, 181, 0.45);
}

.cal-single__back:focus-visible{
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

@media (max-width: 768px){
    .cal-single{
        padding-block: 110px 70px;
    }

    .cal-single__title{
        font-size: 32px;
    }

    .cal-single__eyebrow{
        font-size: 18px;
    }

    .cal-single__image{
        width: 92vw;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce){
    .cal-single__back{
        transition: none;
    }
}


/* Footer CTA */

.cta{
    padding-block: 90px 80px;
}

.cta__head{
    text-align: center;
    margin-bottom: 48px;
}

.cta__eyebrow{
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.cta__title{
    font-family: 'Kaisei Decol', serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-text-primary);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.cta__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.cta__card{
    background: #fff;
    border-radius: 22px;
    padding: 32px 26px;
    box-shadow: 0 10px 30px rgba(56, 130, 200, 0.12);
    text-align: center;
}

.cta__mark{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #fff;
}

.cta__mark svg{
    width: 30px;
    height: 30px;
}

/* カラフルなアクセント：カードごとに色を変える */
.cta__card:nth-child(1) .cta__mark{ background: var(--color-text-primary); }
.cta__card:nth-child(2) .cta__mark{ background: var(--color-secondary); }
.cta__card:nth-child(3) .cta__mark{ background: #6fc36a; }

.cta__card-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3a4a55;
}

.cta__card-text{
    font-size: 15px;
    line-height: 1.9;
    color: #5b6a75;
}

.cta__action{
    text-align: center;
}

.cta__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(255, 145, 181, 0.35);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cta__button:hover{
    transform: translateY(-3px);
    background: #ff7aa8;
    box-shadow: 0 12px 26px rgba(255, 145, 181, 0.45);
}

.cta__button:focus-visible{
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

.cta__note{
    margin-top: 14px;
    font-size: 13px;
    color: #8a97a1;
}

/* Footer bar */

.footer__inner{
    padding: 24px 20px;
    text-align: center;
}

.footer__copy{
    font-size: 13px;
    color: #6a7a88;
    letter-spacing: 0.05em;
}

@media (max-width: 768px){
    .cta{
        padding-block: 60px 50px;
    }

    .cta__title{
        font-size: 26px;
    }

    .cta__eyebrow{
        font-size: 20px;
    }

    .cta__list{
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
    }

    .cta__card{
        padding: 28px 22px;
    }

    .cta__button{
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce){
    .cta__button{
        transition: none;
    }
}


/* 汎用ページ（page.php） */

.page-article{
    padding-block: 140px 100px;
}

.page-article__inner{
    max-width: 800px;
}

.page-article__title{
    font-family: 'Kaisei Decol', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: var(--color-text-primary);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.page-article__body{
    font-size: 16px;
    line-height: 1.9;
    color: #3a4a55;
}

/* お問い合わせフォーム（WPForms）をブランドトーンに調整
   ※ WPForms モダンCSSの詳細度が高いため、.wpforms-form まで含めて上書きする */
.page-article__body .wpforms-container-full.wpforms-container{
    margin: 0;
    background: #fff;
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(56, 130, 200, 0.12);
}

.page-article__body .wpforms-form .wpforms-field{
    padding: 0 0 20px;
}

.page-article__body .wpforms-form .wpforms-field-label{
    font-size: 15px;
    font-weight: 700;
    color: #3a4a55;
    margin-bottom: 8px;
}

.page-article__body .wpforms-form .wpforms-required-label{
    color: var(--color-secondary);
}

/* 入力欄：プラグイン既定より高い詳細度＋!important で確実に上書き */
.page-article__body .wpforms-form input[type="text"],
.page-article__body .wpforms-form input[type="email"],
.page-article__body .wpforms-form textarea{
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 12px 16px !important;
    border: 2px solid #dce7ef !important;
    border-radius: 12px !important;
    background: #fbfdff !important;
    font-size: 16px !important;
    font-family: inherit;
    color: #333;
    box-shadow: none !important;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-article__body .wpforms-form textarea{
    min-height: 140px !important;
    resize: vertical;
}

.page-article__body .wpforms-form input[type="text"]:focus,
.page-article__body .wpforms-form input[type="email"]:focus,
.page-article__body .wpforms-form textarea:focus{
    outline: none;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.15) !important;
}

.page-article__body .wpforms-form .wpforms-submit-container{
    text-align: center;
    margin-top: 8px;
}

.page-article__body .wpforms-form button.wpforms-submit{
    min-width: 200px;
    height: auto !important;
    padding: 14px 40px !important;
    border: none !important;
    border-radius: 999px !important;
    font-size: 17px !important;
    font-weight: 700;
    color: #fff !important;
    background: var(--color-secondary) !important;
    box-shadow: 0 8px 20px rgba(255, 145, 181, 0.35);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.page-article__body .wpforms-form button.wpforms-submit:hover{
    transform: translateY(-3px);
    background: #ff7aa8 !important;
    box-shadow: 0 12px 26px rgba(255, 145, 181, 0.45);
}

.page-article__body .wpforms-form button.wpforms-submit:focus-visible{
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}


/* 404 ページ */

.notfound{
    padding-block: 160px 120px;
    text-align: center;
}

.notfound__code{
    font-family: 'Kaisei Decol', serif;
    font-size: 120px;
    line-height: 1;
    color: var(--color-text-primary);
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.12);
}

.notfound__title{
    font-family: 'Kaisei Decol', serif;
    font-size: 30px;
    font-weight: 400;
    color: #5b6a75;
    margin-top: 20px;
}

.notfound__text{
    font-size: 16px;
    line-height: 2;
    color: #5b6a75;
    margin-top: 20px;
}

.notfound__home{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(255, 145, 181, 0.35);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.notfound__home:hover{
    transform: translateY(-3px);
    background: #ff7aa8;
    box-shadow: 0 12px 26px rgba(255, 145, 181, 0.45);
}

.notfound__home:focus-visible{
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

@media (max-width: 768px){
    .page-article{
        padding-block: 110px 70px;
    }

    .page-article__title{
        font-size: 28px;
    }

    .page-article__body .wpforms-container-full.wpforms-container{
        padding: 26px 20px;
    }

    .notfound{
        padding-block: 120px 80px;
    }

    .notfound__code{
        font-size: 84px;
    }

    .notfound__title{
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce){
    .page-article__body button.wpforms-submit,
    .notfound__home,
    .page-article__body input,
    .page-article__body textarea{
        transition: none;
    }
}