/* breadcrumb */
.breadcrumb {
    display: flex;
    margin: 0;
    padding: min(.5em, 2vw);
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: rgba(255, 255, 255, .8);
}

.breadcrumb li {
    display: inline-block;
    font-size: .75em;
    line-height: 1.4;
    letter-spacing: 0;
}

.breadcrumb li a {
    display: inline-block;
    padding: .5em min(1em, 4vw) .5em min(1em, 2.5vw);
    color: #222;
    position: relative;
}

.breadcrumb li a::after {
    content: '';
    display: inline-block;
    width: .5em;
    height: .5em;

    border-top: 1px solid #999;
    border-right: 1px solid #999;

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(45deg);

}

.breadcrumb li .current {
    display: inline-block;
    padding: .5em 1em;
    color: #999;
}

/*=========================================================

    single

=========================================================*/
.single .inner {
    padding: 4em 1em;
}

.single-inner {
    padding: 4em 0 2em;
    max-width: 1900px;
    margin: 0 auto;
    transition: all .3s;
}

@media (max-width:1440px) {
    .single-inner {
        margin: 0 0 0 auto;
    }

    @media (max-width:1200px) {
        .single-inner {
            /*             margin: 0 auto; */
            padding: 3em 0 0;
        }

        @media (max-width:767.9px) {
            .single-inner {
                padding: 0;
            }
        }
    }
}

/* single left area wrp =================================================*/
.single-inner .category-wrp {
    width: 15%;
    transition: transform .5s .1s ease;
}

@media screen and (max-width:1200px) {
    .single-inner .category-wrp {
        width: 20%;
    }
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp {
        width: 100%;
    }
}

.single-inner .category-wrp .category-wrp-inner {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 2em;
    padding: 0 1em 4em;
    position: sticky;
    top: 100px;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner {
        max-width: 100%;
        margin: 1em 0 0;
        text-align: center;
        padding: .25em 1em .5em;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1em;
    }
}

@media screen and (max-width:767.9px) {
    .single-topics .single-inner .category-wrp {
        display: none;
    }
}

.single-inner .category-wrp .category-wrp-inner .category_image {
    /* width: 90%;
    aspect-ratio: 3/2;
    margin: -1em auto .5em;
    position: relative; */
    width: 100px;
    height: 100px;
    background-color: #f9f9f9;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 1em;
    padding: 10px;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner .category_image {
        width: min(150px, 30%);
        margin: 0;
    }
}

.single-inner .category-wrp .category-wrp-inner .category_image img {
    /* width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    object-fit: contain;
    scale: 1.5;
    position: relative;
}

/* category image for topics */
.single-inner .category-wrp .category-wrp-inner .category_image.category_image-topics {
    width: 100px;
    height: 100px;
    background-color: var(--main_color);
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 1em;
    padding: 10px;
}

.single-inner .category-wrp .category-wrp-inner .category_image.category_image-topics img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    scale: 1;
}

.single-inner .category-wrp .category-wrp-inner .current-category {
    text-align: center;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner .current-category {
        /* text-align: left; */
    }
}

.single-inner .category-wrp .category-wrp-inner .current-category .cate-title {
    font-family: var(--en), sans-serif;
    font-size: min(1.5em, 6vw);
    letter-spacing: .01em;
}

.single-inner .category-wrp .category-wrp-inner .current-category .cate-title-jp {
    font-size: min(12px, 3.5vw);
    line-height: 1.6;
    padding: .5em 0 1em;
}

@media screen and (max-width:767.9px) {
    .single-inner .category-wrp .category-wrp-inner .current-category .cate-title-jp {
        padding: 0;
    }

    .single-inner .category-wrp .category-wrp-inner .current-category .cate-title-jp br {
        display: none;
    }
}

.single-inner .category-wrp .category-wrp-inner .category-list {
    margin-top: 3em;
    padding: 0 1em;
    text-align: left;
}

.single-inner .category-wrp .category-wrp-inner .category-list:first-child {
    margin-top: 0;
}

.single-inner .category-wrp .category-wrp-inner .category-list li {
    margin: 1.5em 0;
    padding-left: 2.5em;
    position: relative;
}

.single-inner .category-wrp .category-wrp-inner .category-list li a {
    color: var(--main_color);
    transition: color .3s ease;
}

.single-inner .category-wrp .category-wrp-inner .category-list li a:hover {
    color: var(--orange);
}

.single-inner .category-wrp .category-wrp-inner .category-list li .icon {
    display: inline-block;
    width: 1.5em;
    position: absolute;
    left: 0;
}

/* topics category */
.topics .single-inner .category-wrp .category-wrp-inner .category-list li {
    padding-left: 1.25em;
}

.topics .single-inner .category-wrp .category-wrp-inner .category-list li::before {
    content: '';
    display: block;
    width: .5em;
    height: .5em;
    border-radius: 50%;
    background-color: var(--orange);
    position: absolute;
    left: 0;
    top: .3em;
}

/* single article area =================================================*/
.single-article-wrp {
    width: 60%;
}

@media (max-width:1200px) {
    .single-article-wrp {
        width: 80%;
    }
}

@media (max-width:767.9px) {
    .single-article-wrp {
        width: 100%;
    }
}

.single-article-inner {
    /* max-width: 770px; */
    max-width: 800px;
    margin: 0 auto;
    padding: 1em 2em 5em;
}

@media (max-width:767.9px) {
    .single-article-inner {
        padding: 3em min(2em, 5vw);

    }
}

.single-article-inner h2 {
    margin: 0 0 2em;
    padding: 0;
    line-height: 1.7;
}

@media (max-width:767.9px) {
    .single-article-inner h2 {
        margin: 0 0 1.5em;
    }
}

.single-article-inner .products-term {
    font-size: min(.9em, 3vw);
}

.topics .single-article-inner .thumb {
    border: 1px solid #ccc;
    margin-bottom: 2em;
}

.topics .single-article-inner .thumb img {
    object-fit: contain;
}

/* single related area wrapper ==============================================*/
.related-wrp {
    width: 25%;
}

@media (max-width:1200px) {
    .related-wrp {
        width: 100%;
        margin: 0 auto;
        background-color: #fafafa;
    }
}

.related-wrp-inner {
    max-width: 300px;
    padding: 1em;
    margin-right: auto;
    position: sticky;
    top: 100px;
}

@media (max-width:1200px) {
    .related-wrp-inner {
        max-width: 92%;
        margin: 0 auto;
        padding: 3em 0;
    }
}

.related-wrp .related-title {
    font-size: .95em;
    color: var(--main_color);
}

@media (max-width:1200px) {
    .related-wrp .related-title {
        margin-bottom: 2em !important;
    }
}

.related-wrp .related-list {
    --repeat-length: 1;
    --repeat-rowgap: 0;
    --repeat-columngap: 0;
}

@media (max-width:1200px) {
    .related-wrp .related-list {
        --repeat-length: 4;
        --repeat-rowgap: 0;
        --repeat-columngap: 0;
    }

    @media (max-width:980px) {
        .related-wrp .related-list {
            --repeat-length: 2;
        }
    }

    @media (max-width:980px) and (min-width: 600.1px) {
        .related-wrp .related-list {
            --repeat-rowgap: 2em;
            --repeat-columngap: 0;
        }
    }

    @media (max-width:600px) {
        .related-wrp .related-list {
            --repeat-length: 1;
        }
    }
}

.related-wrp .related-list .entry {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 1.5em 0;
    gap: 1em 8%;
}

.related-wrp .related-list .entry:last-child {
    border-bottom: none;
}

@media (min-width:1200.1px) {
    .related-wrp .related-list .entry {
        width: 100%;
    }
}

@media (max-width:1200px) {
    .related-wrp .related-list .entry {
        width: calc(100% / var(--repeat-length));
    }
}

@media (max-width:1200px) and (min-width: 980.1px) {
    .related-wrp .related-list .entry {
        padding: 1em 1.5em;
        border-right: 1px solid #ddd;
        border-bottom: none;
    }

    .related-wrp .related-list .entry:last-child {
        border-right: none;
    }
}

@media (max-width:980px) and (min-width: 600.1px) {
    .related-wrp .related-list .entry {
        padding: 0 1.5em;
        border-left: 1px solid #ddd;
        border-bottom: none;
    }
}

.related-wrp .entry .date-wrp {
    font-size: 14.5px;
}

.related-wrp .related-list .entry .thumb-wrp {
    width: 25%;
    margin-top: .2em;
    position: relative;
}

.related-wrp .related-list .entry .thumb-wrp .thumb {
    border-radius: 4px;
}

.related-wrp .related-list .entry .thumb-wrp .new {
    padding: .3em .6em .3em .75em;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    border-radius: 0 0 3px 0;
}

.related-wrp .related-list .entry .entry-meta-wrp {
    width: 68%;
    margin: 0;
    padding: 0;
}

.related-wrp .related-list .entry-meta .entry-title {
    font-size: 13px;
    margin-top: 0;
    margin-bottom: .25em;
    letter-spacing: 0.025em;
    min-height: 0;
}

.related-wrp .related-list .entry-meta .products-term {
    font-size: 11.5px;
    margin-top: 0;
    letter-spacing: 0.025em;
}

.related-wrp .related-list .entry-meta .exc {
    font-size: 11.5px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--main_color);
}

@media (max-width:767.9px) {
    .related-wrp .related-list .entry-meta .exc {
        font-size: 12px;
        margin-top: .5em;
    }
}

/* single post related (no thumbnail) */
.topics .related-wrp .related-list .entry .entry-meta-wrp {
    width: 100%;
}

.postdate {
    font-family: var(--en);
    color: var(--main_color);
}

.postdate time {
    letter-spacing: .025em;
}

.related-wrp .related-list .entry p.cat {
    display: inline-block;
    margin: 0 0 1em;
    padding: .2em .5em;
    font-size: 11px;
    letter-spacing: .05em;
    color: var(--main_subcolor);
    transition: all .3s;
    border: solid 1px #aaa;
}

/* single post pickup */
.related-wrp .pickup-list {
    margin-top: 1em;
    --repeat-rowgap: 1em;
    --repeat-columngap: 1em;
}

.related-wrp .pickup-list .entry:nth-child(n + 3) {
    display: none;
}

@media (max-width:1200px) {
    .related-wrp .pickup-list {
        max-width: 100%;
        --repeat-length: 4;
        margin-top: 2em;
    }

    .related-wrp .pickup-list .entry:nth-child(n + 3) {
        display: block;
    }

    @media (max-width:600px) {
        .related-wrp .pickup-list {
            gap: .5em;
            --repeat-length: 2;
        }
    }
}

.related-wrp .pickup-list .entry-meta-wrp {
    padding: .75em .7em .3em;
}

.related-wrp .pickup-list .exc {
    display: none;
}

@media (max-width:1200px) {

    .related-wrp .pickup-list .entry-meta-wrp .entry-meta .entry-title br {
        display: none;
    }
}

/*=========================================================

    blog / topics

=========================================================*/

.single .terms-list {
    margin: 0;
    padding: 0;
    gap: 1em;
}

.single .terms-list li a {
    display: inline-block;
    padding: .25em 1em;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--main_subcolor);
    position: relative;
    border: 1px solid;
    margin: 1em .5em 1em 0;
}


.single .terms-list li .icon {
    width: 2em;
    position: absolute;
    left: 0;
    top: -.1em;
}

.single .entry-title {
    display: block;
    margin: .5em 0 1em;
    font-size: min(1.5em, 5.4vw);
    letter-spacing: .05em;
}

.single .entry-lead {
    font-size: min(1.15em, 4.2vw);
    letter-spacing: .05em;
    margin-bottom: 2em;
}

@media (max-width:767.9px) {
    .single .entry-lead {
        margin-bottom: 3em;
    }
}

/* entry content */
.single .entry-content {
    margin-top: .5em;
}

.single .entry-content h2 {
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: min(1.3em, 4.2vw);
    color: var(--main_color);
    letter-spacing: .05em;
    /* border-bottom: 1px solid #999; */
    padding-bottom: .25em;
}

/* .single .entry-content h2:not(:first-child) {
    margin-top: 2em;
} */

.single .entry-content h3 {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: min(1.1em, 4vw);
    color: var(--main_color);
    position: relative;
}

.single .entry-content .dot-title {
    padding-left: 1em;
}

.single .entry-content .dot-title::before {
    content: '';
    width: .6em;
    height: .6em;
    position: absolute;
    top: .5em;
    left: 0;
    border: 4px solid;
    border-radius: 100%;
}

.single .entry-content p {
    /* margin-top: 1.5em; */
    line-height: 1.8;
}

/* reset list */
.single .entry-content ul:not(.note),
.single .entry-content ol {
    padding: 0 0 0 2em;
}

.single .entry-content ul:not(.note) li {
    list-style-type: disc;
    margin-bottom: .5em;
}

@media (max-width:767.9px) {
    .single .entry-content p {
        line-height: 1.7;
    }
}

.single .entry-content .entry-main-img {
    margin: 2.5em 0;
}

.single .entry-content .wp-block-columns {
    margin-top: 2.5em;
    width: 100%;
}

.single .entry-content .wp-block-columns.gap1 {
    gap: 1em !important;
}

.single .entry-content .wp-block-columns.gap2 {
    gap: 2em !important;
}

.single .entry-content .wp-block-image:not(:first-child) {
    margin-top: 1.5em;
}

.single .entry-content .wp-block-image figcaption {
    margin-top: 1em;
    font-size: min(.85em, 3.8vw);
    line-height: 1.8;
}

/* custom layout */
.single .entry-content .tlink a {
    text-decoration: underline;
}

.single .entry-content .frame {
    border: 1px solid #ccc;
    padding: 1.5em;
    margin: 2em auto;
    border-radius: 5px;
}

.single .entry-content .note-wrp {
    font-size: 90%;
}

.single .entry-content .frame h2 {
    margin-top: 0;
    text-align: center;
    border: none;
}

.single .entry-content iframe {
    width: 100%;
    margin-top: 2.5em;
}

/* link in single page */
.single .entry-content p a:not(.cat) {
    color: var(--main_subcolor);
    text-decoration: underline;
    transition: all .3s;
}

.single .entry-content p a:not(.cat):hover {
    /* color: var(--main_color); */
    color: #fff;
}

/* youtube */
.is-provider-youtube iframe {
    margin-left: auto;
    margin-right: auto;
}

.wp-embed-aspect-16-9 {
    margin-bottom: 2em;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
    width: 100%;
    height: 0;
    padding-bottom: 54%;
    position: relative;
}

.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wp-embed-aspect-16-9.frame iframe {
    border: 1px solid #ccc;
}

/* table default */

.wp-block-table table {
    margin-bottom: 1em;
}

.wp-block-table thead {
    border-bottom: 2px solid;
    border-color: #ccc;
}

.wp-block-table th,
.wp-block-table td {
    padding: .75em;
    font-weight: normal;
    border-color: #ccc;
    font-size: min(.9em, 3vw);
    text-align: center;
}

.wp-block-table th {
    background-color: #f3f3f3;
    padding: .75em .5em;
}

.wp-block-table td:first-child {
    background-color: #fafafa;
}

.wp-block-table figcaption {
    font-size: .85em;
}

/* tag list */
.entry-tag-wrp {
    margin-top: 2em;
}

.term-list,
.entry-tag-wrp .tag-list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
}

.term-list a,
.entry-tag-wrp .tag-list li a {
    display: inline-block;
    padding: .3em .5em;
    color: var(--orange);
    font-size: min(.8em, 3vw);
    border: 1px solid;
    border-radius: 3px;
}

.term-list a:hover,
.entry-tag-wrp .tag-list li a:hover {
    color: #1a1a1a;
    border: 1px solid;
}

.search .index-wrp {
    padding-bottom: 4em;
}

.footer-contact {
    padding-bottom: 3em;
    background-color: #f9f9f9;
}

/* service top page hader */
.page-header-2columns {
    width: 100%;
}

.page-header-2columns figure {
    width: 50%;
}

@media screen and (max-width:767px) {
    .page-header-2columns figure {
        width: 100%;
    }
}

.page-header-2columns .page-main-logo {
    padding: 5% 7%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.page-header-2columns .page-main-logo img {
    max-width: 640px;
    margin: 0 0 0 auto;
}

@media screen and (max-width:767px) {
    .page-header-2columns .page-main-logo {
        width: 100%;
    }

    .page-header-2columns .page-main-logo .btn a {
        padding: .75em 2em
    }
}

.tagline {
    font-size: min(1.4em, 4vw);
    margin-bottom: -3em;
}

@media screen and (max-width:767px) {
    .tagline {
        margin-bottom: -1em;
    }
}

.land-service .page-header-2columns,
.hoteco .page-header-2columns,
.euro-rail .page-header-2columns {
    max-width: 1600px;
    margin: 0 auto;
}

@media screen and (min-width:1600px) {
    .page-header-2columns {
        height: 28vw;
        overflow: hidden;
    }

    .page-header-2columns .page-mainimg img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}

/* land service */
.product-wrp .products-list .wp-block-group__inner-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.product-wrp .column {
    width: calc(100% / 7);
    padding: 1em;
    font-size: min(.9em, 3vw);
}

.product-wrp .column figure {
    display: block;
    padding: 1em;
    background-color: #f3f3f2;
    aspect-ratio: 1/1;
    border-radius: 100%;
    margin-bottom: 1em;
}

@media screen and (max-width:767px) {
    .product-wrp .column {
        width: calc(100% / 4);
        padding: 1em;
    }

    .product-wrp .column figure {
        width: 20vw;
        height: 20vw;
        padding: .5em;
    }
}

.product-wrp .column .title {
    font-size: min(1.1em, 4vw);
    text-align: center;

}

.products-list-wrp .wp-block-list {
    display: flex;
    flex-wrap: wrap;
}

.products-list-wrp .wp-block-list li,
.support-area .wp-block-list li {
    display: inline-block;
    margin: .25em;
}

.support-area .wp-block-list.area-list {
    display: none;
}

.products-list-wrp .wp-block-list a,
.support-area .wp-block-list li a {
    display: inline-block;
    padding: .25em .5em;
    border: 1px solid;
    border-radius: 3px;
}

.products-list-wrp figure {
    width: 35%;
    margin: 0 auto 1em;
}

.land-service .support-area-wrp {
    background-color: #f9f9f9;
    padding-top: 4em;
}

.support-area figure {
    width: 50%;
    margin: 0 auto 1em;
}

@media screen and (max-width:767px) {
    .support-area figure {
        width: 70%;
        margin: 0 auto 1em;
    }

    .support-area-wrp .wp-block-column {
        display: flex;
        justify-content: space-between;
    }

    .support-area-wrp .wp-block-column .wp-block-image {
        width: 35%;
    }

    .support-area-wrp .wp-block-column .title-jp {
        width: 60%;
        display: flex;
        align-items: center;
        text-align: left !important;
    }
}

.products-list-wrp figure img,
.support-area figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* euro-rail */
.lead {
    font-size: min(1.2em, 5vw);
    line-height: 2;
}

.euro-rail .product-wrp,
.euro-rail .support-wrp {
    background-color: #f9f9f9;
}

.euro-rail .merit.frame {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1.5em;
}

.eurorail-banner-wrp .inner {
    padding: 1em 1em 5em !important;
}

.eurorail-banner-wrp .wp-block-image {
    aspect-ratio: 2.5/1;
    overflow: hidden;
    margin-bottom: 1em;
}

.eurorail-banner-wrp .wp-block-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* hoteco */
.hoteco-login-wrp {
    display: flex;
    justify-content: center;
    gap: 1em;
    font-size: min(.85em, 2.75vw);
    padding: 0;
    margin-top: -3em;
    text-align: center;
}

@media screen and (max-width:767px) {
    .hoteco-login-wrp {
        margin-top: -1em;
    }
}


.hoteco-login-wrp .btn a {
    padding: .75em 3.5em;
}

.feature-img {
    width: 60%;
    max-width: 180px;
    /* aspect-ratio: 1/1; */
    margin: 1em auto;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: min(1.5em, 4.5vw);
    margin-bottom: 1em;
    font-weight: bold;
    color: var(--brand-color);
}

.feature-title~p {
    font-size: min(1.1em, 3.5vw);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: .5em;
}

.feature-wrp .point-title,
.point-wrp .point .point-title {
    font-size: min(1.4em, 5vw);
    font-weight: 600;
    margin-bottom: 1em;
}

.feature-wrp .point,
.point-wrp .point {
    border: 1px solid #ccc;
    padding: 2em;
    border-radius: 10px;
}

.feature-wrp .point .wp-block-image figure {
    width: 100%;
    max-width: 130px;
    margin: 0 auto;
}

.feature-wrp .point .wp-block-image figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.point-list-2columns {
    justify-content: center;
}

.point-list-2columns .point {
    width: 32%;
    flex-basis: unset !important;
    flex-grow: unset !important;
}

.point-wrp .point .title {
    font-size: min(1.6em, 5vw);
    margin-bottom: 1em;
}

.screenimage-wrp {
    background-color: #f9f9f9;
}

.screenimage-list {
    max-width: 980px;
    margin: 2em auto 4em;
}

.screenimage-thumbnail {
    padding: 1em;
    background-color: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, .3);
}

.screenimage-icon {
    max-width: 180px;
    margin: 0 auto;
    padding: 1em;
}

.screenimage-title {
    margin-bottom: 1em;
}

.screenimage-title~p {
    line-height: 2;
}

/* function */
.function-list {
    max-width: 980px;
    margin: 0 auto;
}

.function-title {
    margin: 1em auto;
}


/* share */
.limited {
    display: block;
    width: fit-content;
    border: 2px solid;
    padding: .25em 1em;
    margin: 0 auto 1em;
    font-weight: 600;
}

.frame-double {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid;
    padding: 2em;
    position: relative;
}

.frame-double>.wp-block-group__inner-container {
    position: relative;
    z-index: 2;
}

.frame-double::before {
    content: '';
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid;
    z-index: 0;
}

.frame-double .wp-block-columns {
    margin: 0 auto !important;
}

.frame-double h2 {
    margin: .25em 0 !important;
    padding: 0 !important;
    font-weight: 600;
}

.has-x-large-font-size {
    font-size: 3em !important;
}

.has-large-font-size {
    font-size: 2em !important;
}

.color-qatar {
    color: #6f1d46 !important;
}

.bg-catar a {
    background-color: #6f1d46 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.banner {
    width: 100%;
    max-width: 720px;
    margin: 2em auto;
    border: 1px solid #ccc;
}

.banner-img-box {
    overflow: hidden;
}

.banner-img-box .wp-block-image {
    display: contents;
}

.banner-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text-box {
    padding: 1.5em 1em;
}