/*

～766          Smart Phone
767 ～ 991      Tablet
992px ～        PC

*/

/* Import add css */
@import "add-style.css";

/* Font Import */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* 改行 */

.display-none {
    display: none;
}

@media (min-width: 767px) {
    .display-sp {
        display: none;
    }
}

@media (max-width: 766px) {
    .display-pc {
        display: none;
    }
}


/* Header */

.header {
    padding-top: 5px;
    padding-bottom: 1px;
    border-bottom: 1px solid #736357;
}

.header-SiteName {
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.header-SiteName_Link,
.footer-SiteName {
    display: block;
    width: 200px;
    text-decoration: none;
    color: #43413B;
}

.header-Tagline {
    font-weight: normal;
    display: block;
    text-transform: uppercase;
    color: #767268;
    font-size: 0.625rem;
}

.header-NavToggle {
    position: absolute;
    top: 15px;
    right: 100%;
    width: 40px;
    height: 40px;
    padding: 0 5px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: none;
    background: rgba(255, 255, 255, 0.5);
}

.header-NavToggle_Bar {
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    transition: all .2s ease-in-out;
    background-color: #43413B;
}

.header-NavToggle_Bar::before,
.header-NavToggle_Bar::after {
    display: block;
    width: 100%;
    height: 2px;
    content: "";
    transition: all .2s ease-in-out;
    background-color: #43413B;
}

.header-NavToggle_Bar:before {
    transform: translateY(-9px);
}

.header-NavToggle_Bar:after {
    transform: translateY(7px);
}

.header-NavToggle[aria-expanded="true"] .header-NavToggle_Bar {
    background-color: transparent !important;
}

.header-NavToggle[aria-expanded="true"] .header-NavToggle_Bar:before {
    transform: translateY(0) rotate(45deg);
    background-color: #43413B;
}

.header-NavToggle[aria-expanded="true"] .header-NavToggle_Bar:after {
    transform: translateY(-2px) rotate(-45deg);
    background-color: #43413B;
}

.header-Nav {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    margin-right: -260px;
    transition: margin-right .2s ease-in-out;
    background-color: #F7F6F5;
}

body.is-DrawerActive .header-Nav {
    margin-right: 0;
}

.header-Nav_Items {
    overflow-y: auto;
}

.header-Nav li {
    border-bottom: 1px dashed #D5D1CA;
}

.header-Nav a {
    position: relative;
    display: block;
    padding: 0.7em 15px;
    text-decoration: none;
    color: #43413B;
    overflow-wrap: break-word;
}

.header-Nav a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 2px;
    content: "";
    transition: all .2s ease-in-out;
    background-color: #efb531;
}


.header-Nav ul[class],
.header-Nav ol[class] {
    list-style: none;
}


@media (min-width: 992px) {
    .header {
        display: flex;
        padding-top: 10px;
        padding-bottom: 20px;
        padding-right: 15px;
        align-items: flex-end;
    }

    .header-SiteName {
        margin-bottom: 0;
    }

    .header-SiteName_Link {
        width: 300px;
    }

    .header-Tagline {
        font-size: 0.75rem;
    }

    .header-NavToggle {
        display: none;
    }

    .header-Nav {
        position: inherit;
        width: auto;
        margin-right: auto;
        background-color: transparent;
        flex: 1;
    }

    .header-Nav_Items {
        display: flex;
        flex-direction: row;
        height: auto;
        margin-bottom: 0;
        flex: 1;
        justify-content: flex-end;
        font-weight: 700;
    }

    .header-Nav li {
        position: relative;
        border-bottom: none;
    }

    .header-Nav a {
        padding: .5em 1em;
        text-align: center;
    }

    .header-Nav a:hover,
    .header-Nav a:focus {
        outline: none;
    }

    .header-Nav a:hover:after,
    .header-Nav a:focus:after {
        width: 100%;
    }

    .header-Nav .search-form {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 0;
        width: 260px;
    }

    .header-Nav .search-field {
        min-width: 12em;
    }
}


/* 新着物件エリア(Article-Item) */

.Article-List-Title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 45px;
}

.Article-List-Title span {
    display: block;
    margin-top: .5em;
    color: #EFB531;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.05em
}

@media (max-width: 766px) {
    .Article-List-Section {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media (min-width: 767px) {
    .Article-List-Section {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .Article-List-Section {
        padding-top: 70px;
        padding-bottom: 70px;
        margin-left: calc(-100vw / 2 + 100% / 2);
        margin-right: calc(-100vw / 2 + 100% / 2);
    }

    .Article-List-Title {
        font-size: 1.5rem;
    }

    .Article-List-Title span {
        font-size: 3.7rem;
        font-weight: 700;
    }

    .Article-List-Section .row {
        max-width: 1510px;
        margin-left: auto;
        margin-right: auto;
    }
}

.Article-Container {
    border: 1px solid #898989;
    margin: 3vw 0vw;
    min-height: 500px;
    position: relative;
}

.Article-Container a {
    text-decoration: none;
}

@media (min-width: 767px) {
    .Article-Container {
        margin: 1vw -1vw;
        min-height: 500px;
    }
}

@media (min-width: 992px) {
    .Article-Container {
        margin: 1vw 0vw;
        min-height: 580px;
    }
}

.Article-Item:first-of-type {
    border-top: 1px dotted #D5D1CA;
}

.Article-Item-Link {
    display: flex;
    text-decoration: none;
    color: #43413B;
}

.Article-Item-Wrap {
    flex: 1;
    font-size: 0.9375rem;
}

.Article-Item-Wrap p {
    line-height: 1.7;
}

@media (max-width: 766px) {
    .Article-Item-Wrap {
        padding: 16px 8px 0px 8px;
    }
}

@media (min-width: 767px) {
    .Article-Item-Wrap {
        padding: 16px 16px 0px 16px;
    }
}

.Article-Item-Meta {
    color: #767268;
}

.Article-Item-Meta li {
    display: inline-block;
}

ul.Article-Item-Meta {
    margin-bottom: 8px;
}

.Article-Title {
    margin-bottom: 0.8em;
    font-size: 1.125rem;
    font-weight: 500;
}

.Article-Title a:link {
    color: #000000;
}

.Article-Title a:hover {
    color: #898989;
}

@media (min-width: 992px) {
    .Article-Title {
        font-size: 1.3rem;
    }
}

@media (max-width: 766px) {
    .Article-Feature li {
        font-size: 0.8rem;
        line-height: 1.4rem;
    }

    .view-more {
        position: absolute;
        right: 0;
        bottom: 0;
        margin: 12px;
        color: #FFF;
    }
}

@media (min-width: 767px) {
    .Article-Feature li {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .view-more {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-right: 32px;
        margin-bottom: 24px;
        color: #FFF;
    }
}

.Article-Category-Label {
    color: #FFF !important;
    background-color: #efb531;
    margin-left: 6px;
    margin-bottom: 4px;
    padding: 0px 8px;
    border: solid 1px #efb531;
    text-align: center;
    display: inline-block;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    font-weight: 300;
}

.Article-Category-Label:focus,
.Article-Category-Label:visited {
    border: solid 1px #efb531;
    background-color: #efb531;
    color: #FFFF !important;
}

.Article-Category-Label:hover {
    border: 1px solid #efb531;
    background-color: #FFFFFF;
    color: #efb531 !important;
}

.Article-Feature dl {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

.Article-Feature dt {
    width: 25%;
}

.Article-Feature dd {
    width: 75%;
    font-size: 0.9rem;
    line-height: 1.2rem;
    padding-left: 0.8rem;
    padding-top: 0.15rem;
}

@media (max-width: 766px) {
    .Article-Feature-Label {
        padding: 2px 8px;
        color: #ffffff;
        background-color: #898989;
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 767px) {
    .Article-Feature-Label {
        padding: 2px 12px;
        color: #ffffff;
        background-color: #898989;
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

.Article-Feature-Btn {
    width: 100px;
    position: absolute;
    top: auto;
    bottom: -1px;
    right: -1px;
    padding: 2px 12px;
    text-align: center;
    font-size: 0.9rem;
    display: inline-block;
    border: 1px solid #898989;
    background-color: #898989;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    color: #FFFF !important;
}

.Article-Feature-Btn:focus,
.Article-Feature-Btn:visited {
    border: 1px solid #898989;
    background-color: #898989;
    color: #FFFF !important;
}

.Article-Feature-Btn:hover {
    border: 1px solid #898989;
    background-color: #FFF;
    color: #898989 !important;
}


/* 物件一覧 画像 */

figure,
p {
    margin: 0;
    font-size: 1rem;
}

.image_box {
    width: 100%;
    display: block;
    position: relative;
}

.hover {
    position: relative;
}

.hover figure {
    overflow: hidden;
}

.hover figure img {
    display: block;
    width: 100%;
    transition: 0.3s;
}

.hover figure figcaption {
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    color: #fff;
    border: solid 1px #fff;
}

.hover:hover figure img {
    filter: brightness(50%);
}

.hover:hover figure figcaption {
    opacity: 1;
}


/* home 説明*/

@media (max-width: 766px) {
    .home-Summary-Container {
        max-width: 380px;
        padding: 20px;
        overflow-wrap: break-word;
        word-break: break-word;
        word-break: break-all;
    }
}

@media (min-width: 767px) {
    .home-Summary-Container {
        width: 900px;
        text-align: center;
        margin: 80px auto 0px auto;
        overflow-wrap: break-word;
        word-break: break-word;
        word-break: break-all;
    }
}

.home-Summary-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.home-Summary-text {
    font-size: 1.2rem;
}


/* Home Contact Banner */

@media (max-width: 766px) {
    .Home-Contact-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #ECECEC;
        margin: 20px 16px 40px 16px;
        padding: 16px 0px;
    }

    .Home-Contact-Title {
        font-size: 1.5rem;
        font-weight: 500;
        text-align: center;
        margin: 16px 0px;
    }

    .Home-Contact-Detail {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .Home-Contact-Tel {
        width: 100%;
    }

    .Home-Contact-Tel,
    .Contact-Form-Tel {
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .Home-Contact-Tel-Title {
        font-size: 1.2rem;
        font-weight: 500;
        margin: 20px 0px 10px 0px;
    }

    .Home-Contact-Tel-Num {
        font-size: 2.1rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        padding-left: 60px;
        height: 60px;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 3% 65%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/phone.png);
    }

    .Home-Contact-Tel-Time,
    .Contact-Form-Tel-Time {
        font-size: 0.8rem;
    }

    .Home-Contact-container img .Contact-Form-Tel-Box img {
        float: left;
        width: 40px;
        margin-right: 15px;
    }

    .Home-Contact-Mail {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px auto 10px auto;
    }

    .Home-Contact-Mail-Title {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 0.2em;
        padding-left: 10%;
        width: 270px;
        height: 60px;
        font-weight: 500;
        font-size: 1.1rem;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 5% 50%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/mail.png);
        background-color: #efb531;
    }

    .Home-Contact-Mail-Title:hover {
        background-color: #F88828;
    }

    .contact-title p {
        text-align: left;
    }

    .Contact-Form-Tel-Box {
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ECECEC;
        margin: 16px auto;
        padding: 10px 0px 24px 0px;
    }

    .Contact-Form-Tel {
        width: 100%;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .Contact-Form-Tel-Title {
        font-size: 1.3rem;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin: 0px auto;
        height: 60px;
        padding-left: 50px;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 0% 60%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/phone.png);
    }

    .Contact-Form-Tel-Num {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 4px;
        letter-spacing: 0.03em;
    }

    .Contact-Form-Mail-Title {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        font-size: 1.3rem;
        font-weight: 500;
        height: 60px;
        margin-top: 48px;
        padding-left: 25%;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 12% 60%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/mail-orange.png);
    }
}

@media (min-width: 767px) {
    .Home-Contact-container {
        max-width: 800px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #ECECEC;
        margin: 30px auto 80px auto;
        padding: 40px 50px 40px 50px;
    }

    .Home-Contact-container p,
    .Contact-Form-Tel-Box p {
        margin: 7px 0px;
    }

    .Home-Contact-Title {
        font-size: 1.7rem;
        font-weight: 500;
        text-align: center;
        margin-bottom: 16px;
    }

    .Home-Contact-Detail {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .Home-Contact-Tel {
        width: 100%;
    }

    .Home-Contact-Tel-Num {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        height: 60px;
        padding-left: 50px;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 0% 65%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/phone.png);
    }

    .Home-Contact-Tel-Time,
    .Contact-Form-Tel-Time {
        font-size: 0.9rem;
        text-align: center;
    }

    .Home-Contact-container img,
    .Contact-Form-Tel-Box img {
        float: left;
        width: 40px;
        margin-right: 15px;
    }

    .Home-Contact-Mail {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Home-Contact-Mail-Title {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 0.2em;
        padding-left: 10%;
        width: 290px;
        height: 60px;
        font-weight: 500;
        font-size: 1.2rem;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 5% 50%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/mail.png);
        background-color: #efb531;
    }

    .Home-Contact-Mail-Title:hover {
        background-color: #F88828;
    }

    .Contact-Form-Tel {
        width: 100%;
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }

    .Contact-Form-Tel-Box {
        max-width: 600px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ECECEC;
        margin: 0px auto;
        padding: 20px 50px 20px 50px;
    }

    .Contact-Form-Tel-Title {
        font-size: 1.5rem;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin: 0px auto;
        width: 330px;
        height: 60px;
        padding-left: 25px;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 0% 65%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/phone.png);
    }

    .Contact-Form-Tel-Num {
        font-size: 2.4rem;
        letter-spacing: 0.05em;
        font-weight: 700;
    }

    .Contact-Form-Mail-Title {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        font-size: 1.5rem;
        font-weight: 500;
        margin: 60px auto 0px auto;
        width: 330px;
        height: 60px;
        padding-left: 25px;
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: 0% 65%;
        background-image: url(https://bukken.jectone.jp/wp-content/themes/jectone-theme/assets/img/mail-orange.png);
    }
}


/* Common Button */

.btn-Center-Medium {
    text-align: center;
    margin-top: 45px;
}

.btn-Center-Medium_Link {
    text-decoration: none;
    border-radius: 0.2em;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    padding: 1em;
    display: inline-block;
    border: 1px solid #efb531;
    background-color: #efb531;
    width: 100%;
    max-width: 15em;
    font-weight: 500;
    font-size: 1.2rem;
}

@media (min-width: 992px) {
    .btn-Center-Medium_Link {
        max-width: 20em;
    }
}

.btn-Center-Medium_Link:focus,
.btn-Center-Medium_Link:visited {
    border: 1px solid #efb531;
    background-color: #efb531;
    color: #000000;
}

.btn-Center-Medium_Link:hover {
    border: 1px solid #efb531;
    background-color: #FFFFFF;
    color: #efb531;
}


/* Page Nation */

.pagination {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 45px;
}

.pagination .nav-links {
    font-family: "Noto Sans JP", sans-serif;
}

.pagination .page-numbers {
    display: inline-block;
    padding: .5em 1em;
    text-decoration: none;
    color: #3B4043;
    border: 2px solid #edeceb;
    border-radius: 0.2em;
    background-color: #F7F6F5;
    font-size: 0.875rem;
}

.pagination .page-numbers:hover {
    border-color: #efb531;
}

.pagination .page-numbers.current {
    color: #000000;
    border-color: #efb531;
    background-color: #efb531;
}

.pagination .page-numbers.dots {
    padding: 0 .5em;
    border: none;
    background-color: transparent;
}

@media (min-width: 992px) {
    .pagination .page-numbers {
        font-size: 1rem;
    }
}


/*　Contact Form　*/

.required {
    font-size: 14px;
    padding: 0px 6px;
    margin-left: 8px;
    background: #F15454;
    color: #fff;
    border-radius: 4px;
    position: relative;
    font-weight: 400;
}

.Contact-Form-Response-Message {
    margin: 24px 0px;
    text-align: left;
}

@media (min-width: 767px) {
    .Contact-Form-Response-Message {
        text-align: center;
    }
}

.wpcf7-not-valid-tip {
    box-sizing: border-box;
    border: 1px solid #f00;
    color: #f00;
    margin-top: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 45px;
    padding-right: 15px;
    text-indent: -30px;
}

.wpcf7-not-valid-tip::before {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
    width: 20px;
    height: 20px;
}

div.wpcf7-mail-sent-ok {
    background: #d5edda;
    color: #185626;
    border: 1px solid #c4e5cc;
    padding: 10px
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    background: #f7d7da;
    color: #711d26;
    padding: 10px
}

div.wpcf7-mail-sent-ng {
    background: #f7d7da;
    color: #711d26;
    padding: 10px
}


@media (max-width: 766px) {
    .contact-Section {
        padding: 32px 0px;
    }

    .Contact-Form-Container {
        width: 100%;
        padding: 0px auto;
        text-align: center;
    }

    .Contact-Form-Container dt {
        margin: 24px 0px 4px 0px;
        display: flex;
        align-items: center;
        font-weight: 700;
    }

    .Contact-Form-Container dd {
        text-align: left;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea {
        width: 100%;
        outline: none;
        padding: 4px;
        margin: 0;
        background: #F6F2EE;
        border: none;
        border-radius: 10px;
        border: 1px solid #d7d7d7;
    }

    ::placeholder {
        color: #808080;
    }

    .contact-title h2 {
        margin: 24px 0px;
    }

    .contact-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .Contact-Form-Realestate-Name {
        text-align: left;
        font-weight: bold;
    }

    .wpcf7-list-item {
        width: 95%;
        padding: 4px 8px;
    }

    .wpcf7-form-control-wrap {
        width: 300px;
    }

    .Contact-Form-Privacy-Container {
        text-align: center;
        margin: 20px 0px;
    }

    .Contact-Form-Privacy-Container a {
        text-decoration: underline;
    }

    .Contact-Form-Privacy-Container p {
        margin: 10px 0px;
        text-align: left;
    }
}

@media (min-width: 767px) {
    .contact-Section {
        padding: 48px 0px 0px 0px;
    }

    .Contact-Form-Container {
        max-width: 1100px;
        margin: 24px auto;
        text-align: center;
    }

    .Contact-Form-Container dl {
        display: flex;
        flex-wrap: wrap;
    }

    .Contact-Form-Container dt {
        width: 30%;
        padding: 4px 16px;
        background-color: #E8E8E8;
        border: 1px solid #d7d7d7;
        display: flex;
        align-items: center;
        justify-content: left;
    }

    .Contact-Form-Container dd {
        width: 70%;
        padding: 24px;
        border: 1px solid #d7d7d7;
        text-align: left;
        display: flex;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        width: 100%;
        outline: none;
        padding: 4px;
        margin: 0;
        background: #F6F2EE;
        border: none;
        border-radius: 10px;
    }

    textarea {
        outline: none;
        padding: 4px;
        margin: 0;
        background: #F6F2EE;
        border: none;
        border-radius: 10px;
    }

    ::placeholder {
        color: #808080;
    }

    .contact-title {
        text-align: center;
        margin: 24px 0px;
    }

    .contact-title h2 {
        margin: 24px 0px;
    }

    .contact-title p {
        margin-left: auto;
        margin-right: auto;
    }

    .Contact-Form-Realestate-Name {
        text-align: left;
        font-weight: bold;
    }

    .wpcf7-list-item {
        margin: 4px 8px;
    }

    .Contact-Form-Privacy-Container {
        margin: 30px 0px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .Contact-Form-Privacy-Container a {
        text-decoration: underline;
    }

    .Contact-Form-Privacy-Container p {
        text-align: center;
        margin: 10px 0px;
    }

    .Contact-Form-Privacy-Container .wpcf7-not-valid-tip {
        max-width: 350px;
        margin: 0px auto;
    }

}

textarea {
    height: 200px;
}

.visit {
    text-align: left;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    background: #fdf5d9;
    box-shadow: 0 0 20px #fff;
    transition: box-shadow 0.5s;
}


/*　送信ボタンのスタイル　*/

.btn {
    text-align: center;
}

.btn input {
    margin: 0 auto;
    padding: 0.5em 3em;
    color: #fff;
    cursor: pointer;
    background: #efb531;
    border-radius: 40px;
    border: none;
    transition: opacity 0.5s;
}

.btn input:hover {
    background: #F88828;
    transition: 0.5s;
}

div.wpcf7 .wpcf7-spinner {
    display: none !important;
}

/* Footer Area */

.footer {
    background-color: #f9f9f9;
}

.footer-Widgets {
    padding-top: 10px;
}

@media (min-width: 992px) {
    .footer-Widgets {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.footer-Copyright {
    color: #000000;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.footer-Contact-Container {
    text-align: center;
    background-color: #F0F0F0;
    padding-top: 40px;
    font-weight: 500;
    letter-spacing: 0.05em
}

.footer-Contact-Text {
    padding: 15px 0px 20px 0px;
    font-size: 0.85rem;
}

.footer-Contact-Container img.footer-SiteName {
    margin-right: auto;
    margin-left: auto;
}

.footer-Menu_Link {
    padding: 10px 0px;
    font-size: 0.9rem;
}

.footer-Menu_Link a {
    margin: 0px 16px;
    line-height: 2rem;
    text-decoration: none;
}


/* 物件概要 Table */

.outline_table,
.outline_table th,
.outline_table td {
    max-width: 700px;
    border-collapse: collapse;
    border-left: 0px;
    border-right: 0px;
    background-color: #FFFFFF;
    padding: 20px 10px 20px 10px;
    margin: 0px auto;
}

.outline_table th {
    text-align: left;
    width: 30%;
}

@media (max-width: 766px) {
    .outline_table th {
        display: block;
        width: 100%;
        border-top: none;
        border-bottom: none;
        padding: 10px 10px 5px 10px;
    }

    .outline_table td {
        display: block;
        width: 100%;
        border-top: none;
        padding: 5px 10px 15px 10px;
    }
}


/* Page Top */
/*リンクの形状*/

#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #efb531;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background: #F88828;
}


/*リンクを右下に固定*/

#page-top {
    position: fixed;
    right: 10px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}


/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}


/*
Theme Common Style
*/

@-ms-viewport {
    width: device-width;
}

html {
    box-sizing: border-box;

}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    word-break: break-word;
}

@media (min-width: 992px) {
    .container-fluid {
        max-width: 1510px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.justify-content-center {
    justify-content: center !important;
}


/* =WordPress Core
from http://codex.wordpress.org/CSS#WordPress_Generated_Classes
-------------------------------------------------------------- */

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}


/* Button Style */

.wp-block-button__link {
    text-decoration: none;
    border-radius: 2em;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    font-family: "Noto Sans JP", sans-serif;
    padding: 0.2em 3em;
    display: inline-block;
    background-color: #FFFFFF;
    color: #efb531;
    border: 1px solid #efb531;
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
.wp-block-button__link:visited {
    background-color: #efb531;
    color: #FFFFFF;
}

.wp-block-button__link:visited {
    color: #efb531;
    background-color: #FFFFFF;
}

.wp-block-button__link:hover {
    background-color: #F88828;
    color: #FFFFFF;
    filter: contrast(150%);
}

.wp-block-button.is-style-fill .wp-block-button__link {
    text-decoration: none;
    border-radius: 2em;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    font-family: "Noto Sans JP", sans-serif;
    padding: 0.2em 3em;
    display: inline-block;
    background-color: #efb531;
    color: #FFFFFF;
}

.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button.is-style-fill .wp-block-button__link:focus,
.wp-block-button.is-style-fill .wp-block-button__link:visited {
    background-color: #efb531;
    color: #FFFFFF;
}

.wp-block-button.is-style-fixed .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
    border: 1px solid #efb531;
    padding: 0.2em 3em;
}

.wp-block-button.is-style-fixed .wp-block-button__link:hover,
.wp-block-button.is-style-fixed .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:focus {
    background-color: #efb531;
    color: #FFFFFF;
    filter: contrast(100%);
}

.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color) {
    color: #efb531;
}

.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color):hover,
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color):focus {
    color: #FFFFFF;
}

.wp-block-button.is-style-arrow .wp-block-button__link {
    display: flex;
    align-items: center;
    background-color: #efb531;
    color: #FFFFFF;
}

.wp-block-button.is-style-arrow .wp-block-button__link::after {
    content: '';
    margin-left: 0.5em;
    width: 10px;
    height: 18px;
    display: flex;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 15a1 1 0 01-.77-1.64L5.71 8 1.39 2.63a1 1 0 01.15-1.41A1 1 0 013 1.37l4.83 6a1 1 0 010 1.27l-5 6A1 1 0 012 15z' fill='%23fff'/%3E%3C/svg%3E");
}

.wp-block-button.is-style-fixed .wp-block-button__link {
    width: 80vw;
    max-width: 20em;
    font-size: 1rem;
}


/* Box sizing rules */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Remove default padding */

ul[class],
ol[class] {
    padding: 0;
}


/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
    margin: 0;
}

p {
    line-height: 1.7rem;
}


/* Set core root defaults */

html {
    scroll-behavior: smooth;
}


/* Set core body defaults */

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}


a {
    text-decoration: none;
}


/* A elements that don't have a class get default styles */

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}


/* Make images easier to work with */

img {
    max-width: 100%;
    display: block;
}


/* Natural flow and rhythm in articles by default */

article>*+* {
    margin-top: 1em;
}


/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
    font: inherit;
}

html {
    font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
    -webkit-overflow-scrolling: touch;
}

body {
    overflow-x: hidden;
    background: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    clear: both;
}

img {
    height: auto;
}

a {
    color: #000000;
}

address,
em {
    font-style: normal;
}

table {
    border-collapse: collapse;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="search"],
input[type="submit"],
input[type="button"] {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="search"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

.sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.content-Wrap {
    width: 100%;
}

body {
    transition: all .2s ease-in-out;
}

body:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    content: "";
    transition: background-color .2s ease-in-out;
}

body.is-DrawerActive {
    position: relative;
}

body.is-DrawerActive:after {
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(67, 65, 59, 0.3);
}

.breadCrumb {
    padding: 10px 15px;
    color: #FFFFFF;
    background-color: #38659e;
    font-size: 0.875rem;
}

.breadCrumb a {
    text-decoration: none;
    color: #FFFFFF;
}

.breadCrumb a:hover,
.breadCrumb a:focus {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

.content {
    padding-top: 30px;
    padding-bottom: 60px;
}

.content-Header {
    margin-bottom: 20px;
}

.content-Header {
    text-align: center;
}

.content-Title {
    font-size: 1.875rem;
}

.content-Body {
    line-height: 1.7;
    margin-top: 45px;
    margin-bottom: 45px;
}

.content-Body h2,
.content-Body h3,
.content-Body h4,
.content-Body h5,
.content-Body h6,
.content-Body hr {
    clear: both;
}

.content-Body h2,
.content-Body h3,
.content-Body h4,
.content-Body h5,
.content-Body h6 {
    margin-bottom: 1em;
}

.content-Body p,
.content-Body ul,
.content-Body ol,
.content-Body dl,
.content-Body figure {
    margin-bottom: 1.5em;
}

.content-Body h2 {
    font-size: 1.5rem;
}

.content-Body h3 {
    font-size: 1.375rem;
}

.content-Body h4 {
    font-size: 1.25rem;
}

.content-Body h5 {
    font-size: 1.125rem;
}

.content-Body h6 {
    font-size: 1rem;
}
/*
.content-Body a {
    color: #38659e;
}
*/
.content-Body li {
    display: list-item;

}


.content-Footer {
    margin-top: 45px;
    margin-bottom: 45px;
}

.content-Nav {
    color: #767268;
    border-top: 1px dotted #D5D1CA;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
}

.content-Body>table {
    margin-bottom: 1.5em;
    width: 100%;
}

.content-Body>table td {
    border: 1px solid black;
    padding: 0.5em;
}

.content-Body>table.table-striped td {
    border: none;
}

.content-Body>table.table-striped tr:nth-child(odd) td {
    background-color: #f0f0f0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-archives.aligncenter,
.wp-block-tag-cloud.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-rss.aligncenter {
    text-align: center;
}


.has-orange-1-background-color {
    background-color: #F88828;
}

.has-orange-1-color {
    color: #F88828;
}

.has-orange-2-background-color {
    background-color: #D99023;
}

.has-orange-2-color {
    color: #D99023;
}

.has-orange-3-background-color {
    background-color: #efb531;
}

.has-orange-3-color {
    color: #efb531;
}

.has-orange-4-background-color {
    background-color: #D9B423;
}

.has-orange-4-color {
    color: #D9B423;
}

.has-light-orange-background-color {
    background-color: #FFCF5E;
}

.has-light-orange-color {
    color: #FFCF5E;
}

.has-yellow-background-color {
    background-color: #F8E428;
}

.has-yellow-color {
    color: #F8E428;
}

.has-light-gray-background-color {
    background-color: #F7F6F5;
}

.has-light-gray-color {
    color: #F7F6F5;
}

.has-gray-background-color {
    background-color: #767268;
}

.has-gray-color {
    color: #767268;
}

.has-dark-gray-background-color {
    background-color: #43413B;
}

.has-dark-gray-color {
    color: #43413B;
}



.has-x-small-font-size {
    font-size: 0.63636rem;
}

.has-small-font-size {
    font-size: 0.72727rem;
}

.has-normal-font-size {
    font-size: 0.81818rem;
}

.has-large-font-size {
    font-size: 1.09091rem;
}

.has-huge-font-size {
    font-size: 1.63636rem;
}


/* 
Smart phone用（ - 767px）
*/

@media (max-width: 767px) {

    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* 
Tablet用（767 - 991px）
*/

@media (min-width: 767px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* 
Tablet用（767 - 991px）
*/

@media screen and (min-width: 767px) {
    .has-x-small-font-size {
        font-size: 0.875rem;
    }

    .has-small-font-size {
        font-size: 1rem;
    }

    .has-normal-font-size {
        font-size: 1.125rem;
    }

    .has-large-font-size {
        font-size: 1.5rem;
    }

    .has-huge-font-size {
        font-size: 2.25rem;
    }

    .content-Nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .content-Nav_Prev,
    .content-Nav_Next {
        width: 50%;
    }
}


/* 
PC用（992px以上）
*/

@media (min-width: 992px) {
    .content-Body {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 64px;
    }

    .container {
        max-width: 960px;
    }

    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* 
PC用（992px以上）
*/

@media screen and (min-width: 992px) {
    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.625rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.375rem;
    }

    h6 {
        font-size: 1.25rem;
    }

    body:after {
        content: none;
    }

    .home-Title {
        font-size: 2.25rem;
    }

    .home-SubTitle {
        font-size: 1rem;
    }

    .content-Title {
        font-size: 2.25rem;
    }

    .content-Body h2 {
        font-size: 1.75rem;
    }

    .content-Body h3 {
        font-size: 1.625rem;
    }

    .content-Body h4 {
        font-size: 1.5rem;
    }

    .content-Body h5 {
        font-size: 1.375rem;
    }

    .content-Body h6 {
        font-size: 1.25rem;
    }
}