@charset "UTF-8";
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .1rem;
    color: #333;
    box-sizing: border-box;
    word-break: normal;
    line-break: strict; 
}
*, *::before, *::after {
    box-sizing: border-box;
}
main {
    overflow: hidden;
}

/* * {
    outline:1px solid #0000FF;
} */

/*--------共通パーツ--------*/
.section-title {
    font-size: 1.8rem;
    font-weight: 900;
    color:#2b446b;
    margin-bottom: 2rem;
}
.wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
a {
    text-decoration: none;
    transition: .3s;
}
a:hover {
    opacity: .7;
}
.btn {
    display: inline-block;
    align-items: center;
    position: relative;
    background-color: #b59555;
    line-height: 1.5;
    border-radius: 3em;
    border: solid 1px #b59555;
    padding: 12px 4rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
}
.btn::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    right: 8%;
    width: 12px;
    height: 12px;
    background-color: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transform: translateY(-50%);
    transition: .3s ease;
}
.btn:hover {
    background-color: #fff;
    color: #b59555;
}
.btn:hover::before {
    right: 4%;
    background-color: #b59555;
}
.btn .read-more {
    display: inline-block;
    transform: translateX(-10px);
}
/*--------ヘッダー--------*/
header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 756px;
    margin-bottom: 4rem;
}
.header-wrapper {
    background-color: #2b446b;
    width: 40%;
    height: 100%;
    padding-left: 10%;
    padding-top: 1rem;
}
.site-title {
    width: 80%;
    margin-bottom: 4rem
}
.site-title img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.header-item {
    margin-bottom: 2.4rem;
}
.header-link {
    position: relative;
    display: table;
    color: #fff;
    font-size: 1.2rem;
}
.header-link::before {
    position: absolute;
    content: "";
    bottom: -10%;
    left: -0;
    background-color: #62a3cc;
    width: 0;
    height: 2px;
    transition: .3s ease;
}
.header-link:hover {
    opacity: .8;
}
.header-link:hover::before {
    width: 100%;
}
/*--------メインビジュアル--------*/
.main-visual {
    position: relative;
    background-image: url(../img/main-visual.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 80%;
    height: 80%;
    margin-left: -10%;
    z-index: 0;
}
.main-visual::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
    z-index: -1;
}
.main-visual-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-visual-logo {
    width: 72%;
    margin-bottom: 3rem;
}
.main-visual-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.catch-copy-main {
    text-align: center;
    margin-bottom: 3rem;
}
.catch-copy-main p {
    color: #2b446b;
    -webkit-text-stroke: 3px #fff;
    paint-order: stroke;
}
.main-visual-service-flex {
    display: flex;
    gap: 20px;
}
.main-visual-service {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #62a3cc;
    color: #fff;
    width: 160px;
    height: 160px;
    border-radius: 50%;
}
/*--------インフォメーション--------*/
.information {
    display: flex;
    justify-content: space-between;
    padding: 4rem 0;
}
.message {
    width: calc(50% - 2rem);
    text-align: left;
}
.message-text {
    color: #2b446b;
}
.case {
    width: calc(50% - 2rem);
}
.case-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.case-flex-wrapper {
    position: relative;
    width: 88%;
    margin: 0 auto;
}
.case-container {
    background-color: #c1d3e0;
    width: 88%;
    padding: 1rem;
    border-radius: 20px;
    margin: 0 1rem 2rem;
    box-shadow: 2px 2px 7px #aaa;
}
.case-container:hover {
    box-shadow: none;
}
.case-title {
    position: relative;
    color: #2b446b;
    font-size: 1.2rem;
    text-align: left;
    padding-left: 8px;
    margin-bottom: 8px;
}
.case-title::before {
    position: absolute;
    content: "";
    background-color: #2b446b;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 20px;
}
.case-img {
    width: 100%;
    height: 180px;
    margin-bottom: 12px;
}
.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.case-text {
    color: #333;
    text-align: left;
}
/*--------メリット--------*/
.merit {
    background-color: #c1d3e0;
    padding: 4rem 0;
}
.merit-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.merit-img {
    width: calc(50% - 2rem);
}
.merit-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.merit-container {
    width: calc(50% - 2rem);
    text-align: left;
}
.merit-text {
    color: #2b446b;
    margin-bottom: 2rem;
}
.merit .btn-container {
    text-align: center;
}
/*--------事業紹介--------*/
.service {
    padding: 4rem 0;
    margin-bottom: 8rem;
}
.section-title.underline {
    position: relative;
    margin-bottom: 6rem;
}
.section-title.underline::before {
    position: absolute;
    content: "";
    background-color: #2b446b;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
}
.service-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    border: solid 1px #2b446b;
    margin-bottom: 12rem;
}
.service-container:last-child {
    margin-bottom: 0;
}
.service-number {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -40px;
    left: 80px;
    background-color: #2b446b;
    width: 80px;
    height: 80px;
    border-radius: 20px;
}
.service-number span {
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
}
.service-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-text-box {
    width: calc(50% - 2rem);
    text-align: left;
    padding: calc(40px + 2rem) 0 40px 80px;
}
.service-title {
    font-size: 1.8rem;
    color: #2b446b;
    margin-bottom: 2rem;
}
.service-text {
    margin-bottom: 1.6rem;
}
.service-consult-title {
    position: relative;
    display: table;
    font-size: 1.4rem;
    color: #2b446b;
    margin-bottom: 1rem;
}
.service-consult-title::before {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0;
    background-color: #2b446b;
    width: 100%;
    height: 1px;
}
.service-consult-item {
    position: relative;
    display: block;
    letter-spacing: .01rem;
    padding-left: 1rem;
    margin-bottom: 12px;
}
.service-consult-item::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #2b446b;
    width: 12px;
    height: 12px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.service-img-box {
    display: flex;
    flex-direction: column;
    width: calc(50% - 1rem);
    align-items: flex-start;
    margin-left: -2rem;
}
.service-img {
    width: 100%;
    max-width: 468px;
}
.service-img-01 {
    margin-top: -4rem;
    margin-left: 24%;
    z-index: 2;
}
.service-img-02 {
    margin-top: -4rem;
    margin-bottom: -4rem;
    z-index: 1;
}
.service-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.service03.service-img-01 {
    z-index: 1;
}
.service03.service-img-02 {
    z-index: 2;
}
/*--事業紹介_逆側--*/
.service-flex-reverse {
    flex-direction: row-reverse;
    justify-content: space-around;
}
.service-container-reverse .service-number {
    right: 80px;
    left: initial;
}
.service-container-reverse .service-text-box {
    padding: calc(40px + 2rem) 80px 40px 0;
}
.service-container-reverse .service-img-01 {
    margin-top: -4rem;
    margin-left: -2rem;
    z-index: 1;
}
.service-container-reverse .service-img-02 {
    margin-top: -4rem;
    margin-bottom: -4rem;
    margin-left: 2rem;
    z-index: 2;
}
/*--------物件紹介--------*/
.estate {
    padding: 4rem 0;
}
.estate-flex {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin: 4rem auto;
}
.estate-item-box {
    width: calc(25% - 1rem);
    background-color: #fff;
    border-radius: 20px;
    margin-left: 1rem;
    box-shadow: 2px 2px 7px #aaa;
}
.estate-item-box:hover {
    box-shadow: 2px 2px 2px #2b446b;
    opacity: 1;
}
.estate-item-box:first-child {
    margin-left: 0;
}
.estate-img {
    width: 100%;
    height: 200px;
}
.estate-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.estate-item-box-flex {
    color: #333;
    font-size: .9rem;
    letter-spacing: .01rem;
    text-align: left;
    padding: 1rem;
}
.estate-tag {
    display: table;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.estate-tag.house {
    background-color: #62a3cc;
}
.estate-tag.apartment {
    background-color: #64cc8e;
}
.estate-price-box {
    margin-bottom: 8px;
}
.estate-price {
    font-size: 1.2rem;
    font-weight: 900;
}
.estate-address {
    margin-bottom: 4px;
}
.estate-element-box {
    margin-bottom: 4px;
}
.estate-floor {
    padding-right: 12px;
}
.estate-area {
    position: relative;
    padding-right: 12px;
}
.estate-year {
    position: relative;
}
.estate-area::before, .estate-year::before {
    position: absolute;
    content: "/";
    top: 0;
    left: -8px;
    color: #333;
}
/*--------お知らせ--------*/
.news {
    background-color: #f4f4f4;
    padding: 8rem 0;
}
.news-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.news-link {
    display: block;
    text-align: left;
    padding: 1rem 0 1rem 12%;
    border-top: solid 1px #b59555;
}
.news-link:last-child {
    border-bottom: solid 1px #b59555;
}
.news-link p {
    display: inline-block;
}
.news-date, .news-title {
    color: #333;
}
.news-tag {
    background-color: #b59555;
    color: #fff;
    font-size: .9rem;
    padding: 4px 2rem;
    border-radius: 20px;
    margin-left: 1rem;
}
.news-title {
    margin-left: 2rem;
}
.news-title:hover {
    color: #2b446b;
}
/*--------お問い合わせ--------*/
.contact {
    padding: 8rem 0;
}
.contact-navi {
    margin-bottom: 2rem;
}
.contact-navi-tel1 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.contact-navi-tel2 {
    margin-bottom: 1rem;
}
.contact-tel {
    color: #2b446b;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
/*--------フッター--------*/
#footer {
    background-color: #2b446b;
    padding-top: 4rem;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}
.footer-logo {
    width: 28%;
}
.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.footer-nav {
    width: 60%;
}
.footer-list {
    display: flex;
    justify-content: space-between;
}
.footer-nav-item {
    margin-left: 1rem;
}
.footer-nav-item:first-child {
    margin-left: 0;
}
.footer-link {
    color: #fff;
}
.footer-address {
    color: #fff;
    text-align: left;
    margin-bottom: 4rem;
}
.footer-address span {
    display: block;
}
.copy-right {
    color: #fff;
    font-size: .7rem;
    text-align: center;
    padding: 1rem;
}
/*--------slickの設定--------*/
.slick-list {
    width: 100%;
    height: 100%;
}
.slick-track {
    width: 100%;
    height: 100%;
}
.slick-slide, .slick-track, .slick-list {
    overflow: visible !important;
}
.slick-list {
    margin-bottom: 2rem;
}
.estate-flex {
    opacity: 0;
    transition: opacity .3s linear;
}
.estate-flex.slick-initialized {
    opacity: 1;
}
.estate .dots-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}
.estate .dots-wrap li {
    width: 6%;
    height: 8px;
    margin: 0 5px;
    background: #fff;
    cursor: pointer;
    border: solid .5px #2b446b;
    border-radius: 4px;
}
.estate .dots-wrap li:hover,
.estate .dots-wrap li.slick-active {
    background: #2b446b;
}
.estate .dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.arrow_box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 124%;
    margin: 20px 0 0;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.prev-arrow,
.next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    background: #2b446b;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
}
.prev-arrow {
    transform: rotate(180deg);
    margin-right: 20px;
}
.prev-arrow::before,
.next-arrow::before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}
/*--------ハンバーガーメニューの設定--------*/
.header-nav #nav_toggle_text {
    display: none;
}
.footer-pc {
    display: block;
}
.footer-sp {
    display: none;
}
.copy-right br {
    display: none;
}
/*--------タブレットの設定--------*/
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 90%;
    }
    .section-title.underline {
        margin-bottom: 4rem;
    }
    /*--ヘッダー_タブレット--*/
    header {
        display: block;
    }
    .header-wrapper {
        width: 100%;
        height: 84px;
        padding: 1rem;
    }
    .site-title {
        width: 76%;
        margin-bottom: initial;
    }
    /*--メインビジュアル_タブレット--*/
    .main-visual {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }
    /*--ハンバーガーメニューの設定--*/
    #close_toggle {
        display: block;
        padding: 1em;
        text-align: right
    }
    #gnav_overlay {
        position: fixed;
        display: none;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,.7);
        transition: .5s;
        z-index: 80;
        top: 0;
        right: 0
    }
    .header-nav {
        overflow: hidden;
    }
    .header-nav #nav_toggle{
        position: fixed;
        display: flex;
        align-items: center;
        height: 40px;
        top: 8px;
        right: 2rem;
        z-index: 1000;
        cursor: pointer;
    }
    .header-nav #nav_toggle #nav_toggle_icon {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        margin-top: 15px;
        margin-right: 15px;
        transition: .2s;
        z-index: 90;
    }
    .header-nav #nav_toggle_text {
        position: absolute;
        display: block;
        font-size: 0.7rem;
        color: #fff;
        right: 20%;
        bottom: -60%;
        z-index: 90;
    }
    .header-nav #nav_toggle::before {
        position: absolute;
        content: "";
        background-color: #2b446b;
        width: 80px;
        height: 80px;
        top: -4px;
        right: -9.6px;
        border-radius: 50%;
    }
    .header-nav #nav_toggle #nav_toggle_icon:before,
    .header-nav #nav_toggle #nav_toggle_icon:after {
        position: absolute;
        display: block;
        content: "";
        width: 30px;
        height: 2px;
        background: #fff;
        transition: .3s;
        top: 68%;
        left: 0
    }
    .header-nav #nav_toggle #nav_toggle_icon:before {
        margin-top: -14px
    }
    .header-nav #nav_toggle #nav_toggle_icon:after {
        margin-top: 11px
    }
    .header-nav #nav_toggle.close {
        background: rgba(0,0,0,0)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:before {
        background-color: #fff;
        margin-top: -1px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:after {
        background-color: #fff;
        margin-top: -1px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon {
        background-color: transparent;
    }
    .header-nav #nav_toggle.close #nav_toggle_text {
        color: #fff;
    }
    .header-nav #nav_toggle.close::before {
        background-color: rgba(255,255,255,0);
    }
    /*--ハンバーガーメニューリスト--*/
    .header-link::before {
        content: none;
    }
    .header-list {
        display: block;
        position: fixed;
        background-color: #2b446b;
        padding-top: 6rem;
        top: 0;
        right: -100%;
        z-index: 100;
        width: 50vw;
        height: 100vh;
        text-align: left;
        transition: .3s;
    }
    /*--ハンバーガーメニューオープン--*/
    .open .header-list {
        right: 0;
    }
    .header-item {
        border-bottom: solid 1px #fff;
        margin-bottom: 0;
    }
    .header-item:first-child {
        border-top: solid 1px #fff;
    }
    .header-link {
        display: block;
        padding: 1.6rem 0 1.6rem 2rem;
    }
    /*--インフォメーション_タブレット--*/
    .information {
        flex-direction: column;
    }
    .message {
        width: 100%;
        margin-bottom: 2rem;
    }
    .case {
        width: 100%;
        margin-bottom: 2rem;
    }
    .arrow_box {
        width: 116%;
    }
    .case-container {
        height: 440px !important;
    }
    .case-title {
        font-size: 1.1rem;
        padding-left: 0;
    }
    .case-title::before {
        content: none;
    }
    /*--メリット_タブレット--*/
    .merit-img, .merit-container {
        width: calc(50% - 1rem);
    }
    /*--事業紹介_タブレット--*/
    .service {
        margin-bottom: 0;
    }
    .service-flex {
        flex-direction: column;
    }
    .service-container {
        margin-bottom: 6rem;
    }
    .service-text-box {
        width: 100%;
        padding: 4rem 2rem 2rem;
    }
    .service-img-box {
        flex-direction: row-reverse;
        width: 96%;
    }
    .service-img-01 {
        margin-top: -2rem;
        margin-left: -2rem;
    }
    .service-img-02 {
        margin-left: 2rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .service03.service-img-01 {
        z-index: 3;
    }
    /*--事業紹介逆側_タブレット--*/
    .service-container-reverse .service-number {
        right: initial;
        left: 80px;
    }
    .service-container-reverse .service-text-box {
        padding: 4rem 2rem 2rem;
    }
    .service-container-reverse .service-img-01 {
        margin-top: -2rem;
        margin-left: -2rem;
    }
    .service-container-reverse .service-img-02 {
        margin-top: 2rem;
        margin-bottom: 2rem;
        margin-left: 2rem;
    }
    /*--物件紹介_タブレット--*/
    .estate {
        padding: 2rem 0;
    }
    .estate-item-box {
       
    } 
    .estate .dots-wrap li {
        width: 12%;
        height: 20px;
    }
    /*--お知らせ_タブレット--*/
    .news {
        padding: 4rem 0;
    }
    .news-link {
        padding: 1rem;
    }
    /*--お問い合わせ_タブレット--*/
    .contact {
        padding: 4rem 0;
    }
    /*--フッター_タブレット--*/
    .footer-flex {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .footer-logo {
        width: 60%;
        margin-bottom: 2rem;
    }
    .footer-nav {
        width: 100%;
    }
}
/*--------SPの設定--------*/
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
        letter-spacing: .1rem;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    .section-title.underline {
        margin-bottom: 2rem;
    }
    .wrapper {
        width: 100%;
        padding: 0 1rem;
    }
    /*--ハンバーガーメニュー設定_SP--*/
    .header-list {
        width: 100%;
    }
    .header-nav #nav_toggle {
        right: 1rem;
    }
    .header-nav #nav_toggle #nav_toggle_icon {
        margin-top: 0;
        margin-right: 5px;
    }
    .header-nav #nav_toggle_text {
        font-size: 0.6rem;
        right: 4%;
        bottom: -24%;
    }
    .header-nav #nav_toggle::before {
        width: 60px;
        height: 60px;
    }
    .header-nav #nav_toggle #nav_toggle_icon:before {
        margin-top: -18px
    }
    .header-nav #nav_toggle #nav_toggle_icon:after {
        margin-top: 2px
    }
    /*--ヘッダー_SP--*/
    header {
        height: 657px;
    }
    .header-wrapper {
        display: flex;
        align-items: center;
        height: 74px;
    }
    .header-link {
        font-size: 1rem;
    }
    /*--メインビジュアル_SP--*/
    .main-visual-container {
        width: 100%;
    }
    .main-visual-logo {
        width: 88%;
        margin-bottom: 1rem;
    }
    .catch-copy-main {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    .main-visual-service-flex {
        width: 100vw;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .main-visual-service {
        width: 80%;
        height: auto;
        padding: 1rem 8px;
        border-radius: 12px;
    }
    .main-visual-service p {
        
    }
    .main-visual-service br {
        display: none;
    }
    /*--インフォメーション_SP--*/
    .information {
        margin-top: 2rem;
    }
    .case-flex-wrapper {
        width: 100%;
    }
    .case-container {
        height: auto !important;
    }
    .arrow_box  {
        width: 100%;
    }
    /*--メリット_SP--*/
    .merit {
        padding: 2rem 0;
    }
    .merit-wrapper {
        flex-direction: column;
    }
    .merit-img, .merit-container {
        width: 100%;
    }
    .merit-img {
        margin-bottom: 2rem;
    }
    .merit-container {
        text-align: center;
    }
    /*--事業紹介_SP--*/
    .service {
        margin: 2rem auto;
    }
    .service-container {
        margin-bottom: 3rem;
    }
    .service-number {
        top: -30px;
        left: 15px;
        width: 60px;
        height: 60px;
    }
    .service-number span {
        font-size: 1.2rem;
    }
    .service-text-box {
        padding: 2.4rem 1rem;
    }
    .service-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    .service-img-box {
        margin-left: 0;
    }
    .service-img-01 {
        margin-left: -4rem;
    }
    .service-img-02 {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    /*--事業紹介逆側_SP--*/
    .service-container-reverse .service-number {
        top: -30px;
        left: 15px;
    }
    .service-container-reverse .service-text-box {
        padding: 2rem 1rem;
    }
    .service-container-reverse .service-img-01 {
        margin-left: -4rem;
    }
    .service-container-reverse .service-img-02 {
        margin-left: 0;
        margin-top: 0;
    }
    .service-img-box.service-box-04 {
        flex-direction: row;
    }
    .service-box-04 .service-img-01 {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 1rem;
    }
    .service-box-04 .service-img-02 {
        margin-left: -4rem;
        margin-top: -2rem;
    }
    /*--物件紹介_SP--*/
    .estate {
        padding: 2rem 0;
    }
    .estate-flex {
        margin: 2rem auto;
    }
    .estate-item-box {
        height: 412px !important;
    }
    .estate .dots-wrap {
        margin-top: 2rem;
    }
    .estate .dots-wrap li {
        height: 32px;
    }
    /*--お知らせ_SP--*/
    .news {
        padding: 3rem 0;
    }
    .news-link {
        padding: 1rem 12px;
    }
    .news-link p {
        display: block;
        margin-bottom: 8px;
    }
    .news-title {
        display: block;
        margin-left: 0;
    }
    /*--お問い合わせ_SP--*/
    .contact {
        padding: 3rem 0;
    }
    .contact-navi {
        text-align: left;
    }
    .contact-navi-tel2 {
        text-align: left;
    }
    /*--フッター_SP--*/
    #footer {
        padding-top: 2rem;
    }
    .footer-pc {
        display: none;
    }
    .footer-sp {
        display: block;
    }
    .footer-logo {
        display: block;
        width: 84%;
        margin-bottom: 2rem;
    }
    .footer-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer-nav {
        width: 40%;
    }
    .footer-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .footer-link {
        font-size: .8rem;
        letter-spacing: .01rem;
    }
    .footer-nav-item {
        margin-left: 0;
        margin-bottom: 1rem;
    }
    .footer-address {
        width: 60%;
        margin-bottom: 2rem;
    }
    .footer-address span {
        font-size: .8rem;
        text-align: right;
        letter-spacing: .01rem;
        margin-bottom: 1rem;
    }
    .footer-lotate {
        display: inline-block;
    }
    .copy-right br {
        display: block;
    }
}
/*-------------アニメーション------------------*/
.animation {
    opacity: 0
}
.fadeup {
    transform-origin: center top;
    -webkit-animation: fadeup 1s both;
    animation: fadeup 1s both
}

.slidein_left {
    transform-origin: right center;
    -webkit-animation: slidein_left 1s both;
    animation: slidein_left 1s both
}
.slidein_right {
    transform-origin: right center;
    -webkit-animation: slidein_right 1s both;
    animation: slidein_right 1s both
}

.d3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.d5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.d10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.d15 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.d20 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.d25 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

.d30 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.d35 {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s
}

.d40 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.d45 {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s
}

.d50 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.d55 {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s
}

.d60 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

@-webkit-keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes slidein_right {
    0% {
        transform: translate(2em, 0, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0, 0);
        opacity: 1
    }
}

@keyframes slidein_right {
    0% {
        transform: translate(2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}

@keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}