@charset "utf-8";


html,
body {
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5;
    font-style: normal;
    letter-spacing: 0.1em;
    overflow-x: clip;
    background-color: #d4cdb9;
    color: #553C0E;

}

body {
    background-image: url("../images/washi-bg.jpg");
    background-size: 100% auto;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sawarabi Mincho", serif;
    font-weight: bold;
    font-style: normal;
}

a {
    color: #553C0E;
}

a:hover {
    color: #AD0F0F;
    text-decoration: none;
    cursor: pointer;
}


/* フォント */

.sawarabi {
    font-family: "Sawarabi Mincho", serif;
    font-style: normal;
}


.zen {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
}

.shuei {
    font-family: dnp-shuei-nshogomincho-std, sans-serif;
    font-style: normal;
}


.fuga {
    font-family: ta-fuga-fude, sans-serif;
    font-style: normal;
}



.fc-white {
    color: #FFF !important;
}

.fc-brown {
    color: #553C0E !important;
}

.fc-red {
    color: #AF230A !important;
}

.fc-offwhite {
    color: #FCFBEB !important;
}


.v-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
}

.text-shadow {
    text-shadow: 0px 4px 4px black;
}

.text-shadow-white {
    text-shadow: 2px 2px 5px white;
}

.has-shadow {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
    background-color: #FFF;
}

.bg-brown {
    background-color: #553C0E;
}

.bg-offwhite {
    background-color: #FCFBEB;
}

.bg-red {
    background-color: #AF230A;
}

.bg-beige {
    background-color: #FFF2CD;
}

/*罫線*/

.b-offwhite {
    border: 1px solid #FCFBEB;
}

.bb-brown {
    border-bottom: 1px solid #553C0E;
}

.bb-brown2 {
    border-bottom: 2px solid #553C0E;
}
.bb-brown-dot2 {
    border-bottom: 2px dotted #553C0E;

}

/* ボタン */
.button {
    display: inline-flex !important;
    font-family: "Zen Kaku Gothic New", sans-serif;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* テキストとアイコンの間隔 */
    padding: 12px 40px 12px 24px !important;
    background-color: #AF230A;
    /* 金色系の背景 */
    color: #FFF !important;
    font-size: 11px;
    font-weight: bold;
    text-ration: none;
    transition: all 0.3s ease;
    position: relative;
    width: 140px;
    margin-bottom: 4px;
}

@media (min-width: 992px) {
    .button {
        display: inline-flex !important;
        font-family: "Zen Kaku Gothic New", sans-serif;
        align-items: center;
        justify-content: center;
        gap: 8px;
        /* テキストとアイコンの間隔 */
        padding: 12px 40px 12px 24px !important;
        background-color: #AF230A;
        /* 金色系の背景 */
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-ration: none;
        transition: all 0.3s ease;
        position: relative;
        width: 260px;
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    .button {
        display: inline-flex !important;
        font-family: "Zen Kaku Gothic New", sans-serif;
        align-items: center;
        justify-content: center;
        gap: 8px;
        /* テキストとアイコンの間隔 */
        padding: 12px 40px 12px 24px !important;
        background-color: #AF230A;
        /* 金色系の背景 */
        color: white;
        font-size: 15px;
        font-weight: bold;
        text-ration: none;
        transition: all 0.3s ease;
        position: relative;
        width: 200px;
        margin-bottom: 0px;
    }
}

.button::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #FFF;
    margin: 5px;
}

.button::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("../images/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 12px;
    /* ボタンの右端に配置 */
    top: 50%;
    transform: translateY(-50%);
}

.button:hover {
    color: #FFF !important;
    background-color: #961e09;
    /* ホバー時に少し暗く */
    transform: translateY(-2px);
    /* 軽く浮かせる */
}

.button p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    z-index: 5;
}



/* ナビ */

.a-nav {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    z-index: 900;
    transition: all 0.3s;
    background-image: url("../images/nav-bg.svg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.a-nav-inner {
    height: 100vh;
    position: relative;
}

.a-nav a {
    color: #FFF;
    transition: all 0.3s ease;
}

.nav-list-box {
    display: block;
    margin: auto;
    justify-content: space-between;
    flex-flow: column;
    text-align: center;
    align-items: center;
}

.a-nav a:hover {
    color: ececec;
    opacity: 0.8;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.top-logo-sp {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
}

.nav-list {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .nav-logo {
        height: 70px;
        width: auto;
    }
}


@media (min-width: 992px) {
    .a-nav {
        display: block;
        opacity: 1;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 16px;
        padding-bottom: 16px;
        z-index: 900;
        transition: all 0.3s;
        background-image: url("../images/nav-bg.svg");
        background-position: bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .a-nav-inner {
        width: 100%;
        height: 76px;
    }

    .nav-logo {
        height: 76px;
        width: auto;
    }

    .nav-list-box .nav-list:not(:last-child) {
        margin-right: 1.5rem;
    }

    .nav-list-box {
        display: flex;
    }

    .a-nav a {
        color: #FFF;
        transition: all 0.3s ease;
    }

    .top-logo-sp {
        display: none;
    }

    .nav-list {
        margin-bottom: 0px;
    }
}


.reserve-button {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 90px;
    height: 90px;
    transition: all 0.3s;
    transform-origin: center;
    z-index: 2000;
}

@media (min-width: 768px) {
    .reserve-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 132px;
        height: 132px;
        transition: all 0.3s;
        transform-origin: center;
        z-index: 2000;
    }
}

.reserve-button:hover {
    transform: scale(1.1);
}

.a-burger {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1100;
    border: 2px solid #FFF;
    border-radius: 22px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    vertical-align: top;
    margin: 0;
    padding: 0;
    background-color: #AF230A;

}

.a-burger div {
    background-color: #FFF;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    left: 10px;
    transform-origin: center;
    transition-duration: 0.3s;
    transition-property: all;
    padding: 0;
    margin: 0;
    min-height: 2px !important;
}

.a-burger div:nth-child(1) {
    bottom: 23px;
}

.a-burger div:nth-child(2) {
    top: 23px;
}

.a-burger.is-active div:nth-child(1) {
    transform: rotate(-45deg);
    bottom: 18px;
}

.a-burger.is-active div:nth-child(2) {
    transform: rotate(45deg);
    top: 20px;
}

.sp-top-logo {
    width: 50px;
    position: fixed;
    top: 10px;
    left: 10px;
}


@media (min-width: 768px) {
    .a-burger {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 1100;
        border: 2px solid #FFF;
        border-radius: 66px;
        cursor: pointer;
        width: 66px;
        height: 66px;
        vertical-align: top;
        margin: 0;
        padding: 0;
        background-color: #AF230A;

    }

    .a-burger div {
        background-color: #FFF;
        width: 30px;
        height: 3px;
        border-radius: 6px;
        position: absolute;
        left: 16px;
        transform-origin: center;
        transition-duration: 0.3s;
        transition-property: all;
        padding: 0;
        margin: 0;
        min-height: 2px !important;
    }

    .a-burger.is-active div:nth-child(1) {
        transform: rotate(-45deg);
        bottom: 29px;
    }

    .a-burger.is-active div:nth-child(2) {
        transform: rotate(45deg);
        top: 30px;
    }
}

@media (min-width: 992px) {

    .a-burger,
    .sp-top-logo {
        display: none;
    }
}


.nav-tel-link {
    max-width: 200px;
}

/* フッター */
.footer {
    bottom: 0;
    width: 100%;
    height: 770px;
    padding-top: 16px;
    padding-bottom: 16px;
    transition: all 0.3s;
    background-image: url("../images/footer-bg.svg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Sawarabi Mincho", serif;
    font-weight: lighter;
    line-height: 2;
    position: relative;
    z-index: 5;
}

.footer-bottom {
    justify-content: center;
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
}


.footer a {
    color: #FFF;
}

.footer a:hover {
    color: ececec;
    opacity: 0.8;
}

.footer-logo a:hover {
    color: ececec;
    opacity: 0.8;
}

.footer-top {
    margin-left: auto;
    margin-right: auto;
}

.insta {
    max-width: 24px;
}

.insta a:hover {
    color: ececec;
    opacity: 0.8;
}

.min-width-326px {
    min-width: 0px;
}

.foot-info-title {
    width: 4rem;
}

@media (min-width: 768px) {
    .footer {
        bottom: 0;
        width: 100%;
        height: 690px;
        padding-top: 16px;
        padding-bottom: 16px;
        transition: all 0.3s;
        background-image: url("../images/footer-bg.svg");
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: "Sawarabi Mincho", serif;
        font-weight: lighter;
        line-height: 2;
    }

    .footer-logo {
        width: 130px;
        height: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .footer-top {
        margin-left: 0px;
        margin-right: 0px;
    }

    .min-width-326px {
        min-width: 326px;
    }
}

@media (min-width: 992px) {
    .footer {
        bottom: 0;
        width: 100%;
        height: 580px;
        padding-top: 16px;
        padding-bottom: 16px;
        transition: all 0.3s;
        background-image: url("../images/footer-bg.svg");
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        font-family: "Sawarabi Mincho", serif;
        font-weight: lighter;
        line-height: 2;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-logo {
        width: 320px;
        height: auto;
        margin-right: 4%;
        margin-left: 0%;
    }

    .min-width-326px {
        min-width: 0px;
    }

    .foot-info-title {
        width: 5rem;
    }
}


/* News表示 */
.index-news .webgene-blog,
.news-page .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.index-news .webgene-item,
.news-page .webgene-item {
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {

    .index-news .webgene-item,
    .news-page .webgene-item {
        width: 48%;
    }
}

@media (min-width: 992px) {
    .index-news .webgene-item {
        width: 24%;
    }
}


.webgene-pagination {
    width: 100%;
}

.webgene-pagination ul,
.pagelink {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.webgene-pagination ul li,
.pagelink p {
    padding: 0 1rem;
}

.webgene-pagination ul li a,
.pagelink p a {
    padding: 0.5rem 2rem !important;
    min-height: 0 !important;
    line-height: 1 !important;
    font-size: 1rem;
    background-color: #AD0F0F;
    color: #FCFBEB;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
    cursor: pointer;
    transform-origin: center;
    transition-duration: 0.3s;
    transition-property: background-color, color, opacity, transform;
    background-color: #522A14;
}

.webgene-pagination ul li,
.pagelink p {
    margin: 0;
    position: relative;
    display: inline-block;
}

.webgene-item-prevPageLink {
    margin-left: 1rem;
}

.news-item a {
    color: #FFF;
    transition: all 0.3s ease;
}

.news-item a:hover {
    color: ececec;
    opacity: 0.8;
}


/* フォーム */
.formInput,
.formTextArea {
    width: 100%;
    padding: 0.5rem;
    border: none;
    border-radius: 0;
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;
    margin-bottom: 2rem;
}

.formTextArea {
    height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
    border: 1px solid #CBC3B0;
    background-color: #FFFCF5;

}

.formBtn {
    border: 2px solid #522A14;
    background-color: #FFF;
    color: #522A14;
    font-size: 1rem;
    padding: 1rem 3rem !important;
}

.requiredText {
    background-color: #A3987C;
    color: #FFF;
    padding: 4px 8px;
    font-size: 0.8rem;
    margin-left: 1rem;
}

/* TOPページ */
.top-logo {
    width: 250px;
}

.top-bg {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url("../images/top-img1.jpg");
}

.top-fv {
    position: relative;
    top: 0;
    height: 170vh;
}

.sub-fv {
    height: 100vh;
    position: relative;
    z-index: 5;
}

.title-en {
    text-align: left;
    background: url('../images/title-en.svg') no-repeat left center;
    background-size: auto 100%;
    /* 円の大きさを適宜調整 */
    padding: 2rem;
    display: inline-block;
    background-repeat: no-repeat;
}

.top-cont-container {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: calc(200vh);
    z-index: 10;
}

.top-cont1,
.top-cont2 {
    height: calc(100vh - 100px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-cont2 {
    font-size: 23px;
    color: #FFF;
}

.top-sec2 {
    padding-top: 170px;
    padding-bottom: 170px;
}

.top-sec2-img {
    position: sticky;
    top: 170px;
    background-image: url("../images/top-img2.jpg");
    height: 450px;
}

.top-sec2-title {
    position: relative;
    top: -30px;
}

.top-sec2-title p {
    font-size: 25px;
    background-color: #553C0E;
    padding: 16px 10px;
    display: inline-block;

}

.top-title-img {
    max-width: 170px;
}

.bg-title {
    background-image: url(../images/top-frame.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 245px;
    height: 427px;
}

.concept-title1 {
    position: absolute;
    left: 6%;
    bottom: 6%;
    display: inline-block;
}

.concept-title1 p {
    background-color: #AF230A;
    padding: 7px 18px;
    z-index: 100;
}

.concept-title2 {
    position: absolute;
    top: 40%;
    right: 4%;
    display: inline-block;
}

.concept-title2 p {
    background-color: #AF230A;
    padding: 7px 18px;
    z-index: 100;
}

.concept-title3 {
    position: absolute;
    top: 8%;
    right: 10%;
    display: inline-block;
}

.concept-title3-2 {
    position: absolute;
    top: 26%;
    right: 3%;
    display: inline-block;
}

.concept-title3 p {
    background-color: #AF230A;
    padding: 7px 18px;
    z-index: 100;
}

.concept-title3-2 p {
    background-color: #AF230A;
    padding: 7px 18px;
    z-index: 100;
}

.concept-point {
    max-width: 150px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.back-br-text {
    position: relative;
}

.back-br-text p,
.back-br-text h2,
.back-br-text h3 {
    background-color: #553C0E;
    padding: 16px 20px;
    display: inline-block;
}

.news-title {
    border-bottom: 3px solid #FFF;
}

.news-title img {
    width: 45px;
}

.news-bg {
    background-color: #553C0E;
    padding: 20px;
}

.news-bg-inner {
    padding: 19px 15px 15px 15px;
    border: 3px solid #FFF;
}

.news-content {
    justify-content: left;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .top-logo {
        width: 390px;
    }

    .top-cont2 {
        font-size: 45px;
        color: #FFF;
    }

    .top-sec2-title p {
        font-size: 35px;
        background-color: #553C0E;
        padding: 16px 10px;
        display: inline-block;
    }

    .news-title img {
        width: 60px;
    }

    .news-title {
        border-bottom: 5px solid #FFF;
    }

    .news-bg-inner {
        padding: 32px;
        border: 5px solid #FFF;
    }

    .news-content {
        display: table-column;
        margin-bottom: 2px;
    }

    .concept-title1 {
        position: absolute;
        left: 8%;
        bottom: 21%;
    }

    .concept-title2 {
        position: absolute;
        top: 31%;
        right: 4%;
    }

    .concept-title3 {
        position: absolute;
        top: 25%;
        right: 6%;
    }

    .concept-point {
        max-width: 200px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}


@media (min-width: 992px) {
    .top-bg {
        position: sticky;
        top: 100px;
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background-image: url("../images/top-img1.jpg");
    }

    .top-cont-container {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        height: calc(200vh - 200px);
        z-index: 10;
    }

    .top-fv {
        margin-top: 100px;
        position: relative;
        height: calc(200vh - 200px);
    }

    .sub-fv {
        height: calc(100vh - 100px);
        margin-top: 100px;
    }
    .news-detail-top {
        margin-top: 100px;
    }

    .top-logo {
        width: 490px;
    }

    .top-cont2 {
        font-size: 56px;
        color: #FFF;
    }

    .top-sec2-title p {
        font-size: 40px;
        background-color: #553C0E;
        padding: 16px 10px;
        display: inline-block;
    }

    .news-title img {
        width: 70px;
    }

    .concept-title1 {
        position: absolute;
        left: 9%;
        bottom: 19%;
    }

    .concept-title2 {
        position: absolute;
        top: 20%;
        right: 33%;
    }

    .concept-title3 {
        position: absolute;
        top: 19%;
        right: 12%;
    }

    .concept-point {
        max-width: 280px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }
}



/* decoration */

.top-sec3-deco-1 {
    top: 23%;
    left: 0%;
    width: 50%;
}

.top-sec3-deco-2 {
    bottom: -5%;
    right: -10%;
}

.top-sec3-deco-3 {
    bottom: -14%;
    left: 0%;
}

.top-sec4-deco-1 {
    top: 7%;
    right: 0%;
}

.top-sec4-deco-2 {
    bottom: -10%;
    left: -9%;
}

.top-sec4-deco-3 {
    bottom: 0%;
    right: 0%;
}

.top-sec5-deco-1 {
    top: 32%;
    left: -12%;
}

.top-sec5-deco-2 {
    bottom: -2%;
    right: 3%;
}

.top-sec5-deco-3 {
    bottom: -8%;
    left: 0%;
}


@media (min-width: 768px) {
    .top-sec3-deco-1 {
        top: 38%;
        left: -6%;
        width: 50%;
    }

    .top-sec3-deco-2 {
        bottom: 0%;
        right: 0%;
    }

    .top-sec3-deco-3 {
        bottom: -11%;
        left: 0%;
    }

    .top-sec4-deco-1 {
        top: 10%;
        right: -1%;
    }

    .top-sec4-deco-2 {
        bottom: -4%;
        left: 28%;
    }

    .top-sec4-deco-3 {
        bottom: -6%;
        right: 0%;
    }

    .top-sec5-deco-1 {
        top: 35%;
        left: -9%;
    }

    .top-sec5-deco-2 {
        bottom: -1%;
        right: 0%;
    }
}


@media (min-width: 992px) {
    .top-sec3-deco-1 {
        top: 25%;
        left: 0%;
        width: 40%;
    }

    .top-sec3-deco-3 {
        bottom: 0%;
        left: 0%;
    }

    .top-sec4-deco-1 {
        top: 0%;
        right: 0%;
    }

    .top-sec4-deco-2 {
        bottom: -5%;
        left: -3%;
    }

    .top-sec5-deco-1 {
        top: 34%;
        left: -6%;
    }

    .top-sec5-deco-2 {
        bottom: 0%;
        right: 0%;
    }

}


@media (min-width: 1200px) {
    .top-sec3-deco-1 {
        top: 25%;
        left: 0%;
        width: 45%;
    }

    .top-sec3-deco-3 {
        bottom: -8%;
        left: 0%;
    }

    .top-sec4-deco-3 {
        bottom: -12%;
        right: 0%;
    }

    .top-sec5-deco-3 {
        bottom: -8%;
        left: 0%;
    }
}


/* こだわり */
.title-en2 {
    background: url('../images/title-en.svg') no-repeat left center;
    background-size: 100% auto;
    /* 円の大きさを適宜調整 */
    background-position: bottom center;
    background-repeat: no-repeat;
    letter-spacing: 0.4em;
}
.title-en3 {
    background-image: url('../images/title-en.svg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    letter-spacing: 0.4em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}

.bg-fix {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

@media (min-width: 992px) {
    .bg-fix {
        height: calc(100vh - 100px);
        margin-top: 100px;
    }
}
.cont {
    position: relative;
    z-index: 5;
    background-image: url("../images/washi-bg.jpg");
    background-size: 100% auto;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
} 
.bg-washi {
    background-image: url("../images/washi-bg.jpg");
    background-size: 100% auto;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
}
.bg-course {
    background-image: url("../images/course-bg.png");
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.bb-brown2 {
    border-bottom: 2px solid #553C0E;
}

.menu-title {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    padding: 1em 0.2em;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.2em;
    font-family: ta-fuga-fude, sans-serif;
    font-style: normal;
    background-color: #FFF2CD;
    border: 0.5em solid #AF230A;
    position: relative;
    z-index: 10;
}
.menu-title1 {
    margin-bottom: -100px;
}
.menu-title2 {
    margin-bottom: -200px;
}

.info-title {
    display: inline-block;
    padding: 0.2em 1em;
    font-size: 2rem;
    line-height: 1;
    font-family: ta-fuga-fude, sans-serif;
    font-style: normal;
    background-color: #FFF2CD;
    border: 0.5em solid #AF230A;
    position: relative;
    z-index: 10;
}
.catch_title p {
font-size: clamp(18px, 2vw, 1.9rem) !important;
    color: #fff !important;
    text-align: center;
    background-color: #AF230A;
    padding: 20px;
  font-weight: bold;
}
.h1764208143189{
font-size: clamp(2rem, 2vw, 4rem) !important;
}