@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Sawarabi+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@200..900&family=Sawarabi+Mincho&display=swap');


:root{
    --hover_color: #CCC;
}

body{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.contents-header{
    min-width: 701px; /*背景画像挿入用*/
}

.contents-block-size80{
    width: 60%;
    margin: 4rem auto;
}

.title-h1-box{
    margin: auto;
}

.title-logo{
    display: block;
    width:80%;
    height: 60px;
    margin: auto;
    background-image: url('/img/header-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.footer-title-logo{
    display: block;
    width:80%;
    height: 60px;
    margin: auto;
    background-image: url('/img/header-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.title-hover {
    overflow: hidden;
}
.title-hover a {
    transform: scale(1);
    transition-duration: 0.5s;

}
.title-hover a:hover {
    transform: scale(0.8);
    transition-duration: 0.5s;
}


/*見出しテンプレ*/
.heading-template01 {
    display: flex;
    align-items: center;
    padding: .5em .7em;
    background-color: #fff;
    color: #333333;
    justify-content: center;
}

.heading-template01::before {
    display: inline-block;
    width: 5px;
    height: 1.5em;
    margin-right: .5em;
    background-color: #2589d0;
    content: '';
}

.heading-template02 {
    display: inline-block;
    position: relative;
    padding: 0 2.5em;
    color: #333333;
}

.heading-template02::before,
.heading-template02::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 3px;
    background-color: #2589d0;
}

.heading-template02::before {
    left: 0;
}

.heading-template02::after {
    right: 0;
}

.heading-template03 {
    position: relative;
    color: #333;
}

.heading-template03:before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #2589d0;
}



@media (max-width: 700px) {
    .contents-header{
        min-width: auto;
    }
    
    .title-h1-box{
        margin: 0.67em 0;
    }

    .title-logo{
        background-image: url('/img/footer-logo.png');
        width: auto;
        background-position: left center;
    }

    .sp-logo-left{
        text-align: left;
    }
    .contents-block-size80{
        width: 80%;
        margin: 4rem auto;
    }

}

.pc-block{
    display: block;
}

.pc-none{
    display: none;
}

@media (max-width: 700px) {
    .pc-block{
        display: none;
    }
    
    .pc-none{
        display: block;
    }
}


.contents{
    max-width: 1280px;
    margin: 2rem auto;
}


/*メイン画像*/

.top-main_img{
    position: relative;
    background-image: url('../img/top-main01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
}

.top-main_img::before{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

.top-main_img > .top-text-box{
    position: absolute;
    font-family: serif;
    /*display: flex;
    justify-content: center;
    align-items: center; */
    color: #fff;
    font-size: 2rem;
    height: 100%;
    width: 100%;
    margin: 0;
}

.top-text-box > h2,
.top-text-box > div{
    width: 80%;
    margin: 15rem auto;
    font-weight: bold;
}

.top-main_img_text{
    width: fit-content;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .top-main_img{
        height: 300px;
    }
    .top-text-box > h2,
    .top-text-box > div{
    margin: 5rem auto;
}
}


/*ページ切り替え用フェードイン・フェードアウト*/

.fade_main {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
  
.fade-out {
opacity: 0;
}

/*コンテンツ表示用（下から上）フェードイン*/

.slide-in {
    opacity: 0; /* 初期状態で透明 */
    transform: translateY(20px); /* 初期位置を下に移動 */
    transition: opacity 1s ease, transform 1s ease; /* アニメーションの設定 */
}

.scrollin {
    opacity: 1; /* 表示状態に変更 */
    transform: translateY(0); /* 元の位置に戻す */
}

/*テキストアニメーション*/

.text-animation {
    overflow: hidden; /* アニメーションが始まる位置を隠す */
    /*white-space: nowrap;  テキストを折り返さない */
    animation: slide-text01 2s forwards; /* アニメーションを適用 */
}

@keyframes slide-text01 {
    0% {
        transform: translateX(-100%); /* 左から出現 */
        opacity: 0; /* 最初は透明 */
    }
    100% {
        transform: translateX(0); /* 元の位置に戻る */
        opacity: 1; /* 最終的に不透明 */
    }
}


/*--新着物件--*/

.buy-sell_field{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.buy-sell_box{
    width: 45%;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
}


.buy-sell_box:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

.buy-sell_box div{
    width: 100%;
    position: relative;
}
/*
.buy-sell_box h3{
    font-size: 2rem;
    position: relative;
    margin: 0;
}
*/
.buy-sell_box a {
    display: block;
    height: 300px;
    color: #fff;
    line-height: 300px;
    font-size: 3rem;
    font-weight: bold;
}

@media (max-width: 700px) {
    .buy-sell_field{
        display: block;
    }

    .buy-sell_box{
        width: 80%;
        margin: 4rem auto;
    }
    .buy-sell_box a {
        height: 200px;
        line-height: 200px;
        font-size: 3rem;
    }
}


/*スライドショー*/
.slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
}

.slider {
    display: flex;
    margin: auto;
    animation: scroll 20s infinite linear .5s both;/* アニメーションを適用 */
}

.slider li a {
    display: block;
    height: 100%;
}

.slider-details-wrapper {
    padding: 1rem;
}

.slider-details-property-name {
    padding: 1rem;
    opacity: 0.7;
    font-weight: bold;
    font-size: 1.6rem;
    text-align: center;
}
.slider-property-details{
    font-size: 1.4rem;
    font-weight: 500;
}

.slide{
    min-width: 200px;
    margin: auto 2rem;
    background: #fff;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, .05);
    border-radius: 4px;
}

.slide img{
    width: 100%;
    height: 200px;
    border-radius: 4px 4px 0 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 2.5s linear;
}
@keyframes scroll {
    0% {
        transform: translateX(0); /* 開始位置 */
    }
    100% {
        transform: translateX(-100%); /* 終了位置 */
    }
}
@media (max-width: 700px) {
    .slide img{
        height: 150px;
    }
    .slider-details-property-name {
        font-size: 1.3rem;
    }
    .slider-property-details {
        font-size: 1.2rem;
    }
}




/*旧スライドショー*/
.new-property_field{
    display: flex;
    justify-content: space-around;
    width: 94%;
    margin: 0 auto;
}
.new-property_field li{
    width: 30%;
}
.new-property_field li img{
    width: 100%;
}


/*--不動産情報--*/

.estate_info{
    display: flex;
    justify-content: space-around;
    width: 94%;
    margin: 0 auto;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
}

.estate_info > .info_box a{
    display: block;
    width: 100%;
    padding: 2rem 0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
}

.estate_info li{
    width: 45%;
    margin: 2rem auto;
}

/*--当社の強みは--*/
.strengths{
    width: 80%;
    background: #fff;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
    border-radius: 1rem;
}
.strengths div p{
    padding: 1rem;
}


/*background-img*/

.sell_back_img {
    position: relative;
    background-image: url('../img/sell_01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;  
}

.buy_back_img {
    position: relative;
    background-image: url('../img/buy_01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
}

.sell_back_img::before,
.buy_back_img::before{
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    border-radius: 1rem;
}

@media (max-width: 700px) {
    .buy_back_img {
        height: 200px;
    }
    .sell_back_img {
        height: 200px; 
    }
}


/*hover*/
.hover-opacity {
    transition-property: opacity;
    transition-duration: 0.5s;
}
.hover-opacity:hover {
    opacity: 0.7; 
}


/*syuekibukken_page*/
.property_while{
    width: 80%;
    margin: 4rem auto;
    background: #fff;
    border: 1px solid;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
}


.property_detail_link{
    width: 40%;
    margin: 2rem auto;
}

.property_detail_link a{
    text-align: center;
    background: #5bc8ac;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
    padding: 1rem;
    width: 100%;
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 1.7rem;
}

.property_detail_signup{
    width: 70%;
    margin: 4rem auto 2rem;
}

.property_detail_signup a{
    text-align: center;
    background: #ff9e30;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
    padding: 1rem 0;
    width: 100%;
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 100vh;
}
.slash {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
   
.slash::before,
.slash::after {
    content: "";
    width: 25px;
    height: 1px;
    background-color: #000;
    margin: 0px 4px 4px;
}
   
.slash::before {
    transform: rotate(45deg);
}
   
.slash::after {
    transform: rotate(-45deg);
}

.property_while-title{
    text-align: center;
    margin: 2rem auto;
    font-weight: bold;
    font-size: 1.7rem;
}

.property_while_text-flex{
    display: flex;
    align-items: center;
    justify-content: start;
}

.property_while_text-flex > p {
    width: 45%;
}


.property-list_box{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 3rem auto;
}

.property-list_box > .img_box{
    width: 30%;
    text-align: center;
}

.property-list_box > .text_box{
    width: 60%;
}

.while_img{
    display: block;
    margin: auto;
    width: 100%;
}

@media (max-width: 700px) {
    .property-list_box{
        display: block;
    }

    .property-list_box > .img_box{
        width: 100%;
        display: flex;
        margin: 2rem auto;
    }
    
    .property-list_box > .text_box{
        width: 80%;
        margin: 2rem auto;
    }

    .property_detail_link{
        width: 70%;
    }

    .while_img{
        width: 50%;
        border: 1px solid;
        height: 200px;
    }

    .property_while_text-flex{
        display: block;
    }
    .property_while_text-flex > p {
        width: 100%;
    }
    .property_detail_signup{
        width: 100%;
    }
}


/*ページネーション*/
.pagenation{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.pagenation_box{
    padding: 0.5rem 1rem;
    border: 1px solid #999;
    transition: 1s ease;
    font-size: 14px;
    font-weight: 700;
    margin: 0.5rem 1rem;
}
.pagenation_box.active{
    background: #999;
    color: #fff;
}

.pagenation_box:hover{
    background: #999;
    color: #fff;
}


/*お問い合わせフォーム（contact-form）*/
.contact-form_section{
    max-width: 1280px;
}

.contact-form-title{
    text-align: center;
}


.form-wrapper{
    width: 80%;
    margin: 0 auto;
}

.input-box{
    margin: 3rem auto;
}

.input-span{
    padding: 0.1rem 1rem;
    background: #5bc8ac;
    border-radius: 0.5rem;
    margin: auto 1rem;
    color: #fff;
}
.input-text{
    width: 100%;
    display: block;
    margin: 0 auto;
    height: 30px;
}

.input-textarea{
    width: 100%;
    display: block;
    margin: 0 auto;
    height: 100px;
}


.button {
    background: #D9D9D9;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    max-width: 250px;
    padding: 10px 25px;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button:hover {
  background: #333;
  color: #FFF;
}
.button:hover:after {
  right: 1.4rem;
}

.input-box_check-wrapper {
    width: 80%;
    max-width: 1280px;
    margin: auto;
    border-collapse: collapse;
}

.input-box_check-box {
    border-bottom: 1px solid #999;
}

.input-box_check-box td {
    padding: 2rem 0;
    width: 50%;
}

.user-change-btn{
    display: block;
    width: 100%;
    text-align: center;
}

/*----news＆contactセクション----*/
.news-wrapper{
    border-bottom: 1px solid #D9D9D9;
    transition: 1s;
    position: relative;
    padding: 10px 25px;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.news-wrapper:after{
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.news-wrapper:hover{
    opacity: 0.7;
    background: #fff;
}

.news-wrapper p,
.news-wrapper a{
    margin: 1rem 0;
}



.news-wrapper:hover:after {
    right: 1.4rem;
}
  
/*
.button:hover:after {
  right: 1.4rem;
}
*/

.news-wrapper span{
    margin: 0 4rem 0 0;
}

.news-list_top{
    background: #5bc8ac;
    width: 50%;
    margin: 0 auto;
    border-radius: 1rem;
}
.news-list_top a{
    color: #fff;
    width: 100%;
    display: block;
    padding: 2rem 0;
    text-align: center;
    font-size: 2rem;
}

.contact-form{
    background: #D9D9D9;
    width: 50%;
    margin: 0 auto;
    border-radius: 1rem;
}

.contact-form a{
    width: 100%;
    display: block;
    padding: 2rem 0;
    text-align: center;
    font-size: 2rem;
}


@media (max-width: 700px) {
    .contact-form{
        width: 80%;
    }
    .news-list_top{
        width: 80%;
    }
    .news-wrapper p{
        font-size: 16px;
    }
    .news-list_top a{
        padding: 1rem 0
    }
    .contact-form a{
        padding: 1rem 0;
    } 
}

.Form-Btn {
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 200px;
    display: block;
    letter-spacing: 0.05em;
    background: #5bc8ac;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
}

.correction-btn{
    background:#D9D9D9;
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 200px;
    display: block;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
}

/*mail*/