@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.5;
}

ul,
ol {
    list-style: none;
}

body {
    max-width: 100%;
    width: 100%;
    /* background-color: #412df8; */
    height: max-content;

}

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.show {
    opacity: 1;
    transform: translateY(0);
}

/* ヘッダー--------------- */
header {
    width: 100%;
    height: 100px;
    display: flex;
    background-color: #fff;
    position: relative;
    position: fixed;
    padding-right: 100px;
    z-index: 9999;
    /* border: solid 1px; */


}

#header-logo {
    width: 100px;
    height: 100px;
}

#header-ul {
    display: flex;
    position: absolute;
    right: 50px;

    /* border: solid 1px; */
}

#header-ul li {
    padding: 40px 20px;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    opacity: 50%;

}

/* -------------- */



/* フッター--------------- */
footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;

}

#footerbox {
    width: 100%;
    height: max-content;
    background-color: white;
    display: grid;
    grid-template-columns: 33% 33% 33%;


    /* border: solid 1px; */
}

/* #footerbox>div{
    border: solid;
} */
#footer-companybox {

    width: 100%;
    /* border: solid 1px; */
    padding: 10px 40px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: end;


}

#footer-companybox h3 {
    font-size: 22px;

}

#footer-companybox h6 {
    font-size: 14px;
    margin: 4px 0;
}

#footer-logo {
    width: 100px;
}

/* #footer-logobox{
    display: flex;
    justify-content: center;
} */
#Line {
    width: 40px;
}

#footer-strbox {
    /* border: solid 1px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;

}

#footer-strbox ul {
    text-align: left;
    /* border: solid; */
}

#footer-strbox p {
    font-size: 16px;
    font-weight: 500;
}

#footer-strbox li:first-child p {
    font-size: 18px;
    font-weight: bold;
    padding: 2px;
}

#footer-strbox li {
    padding: 3px;

}



#footer-ulbox {
    display: flex;
    align-items: center;
    justify-content: start;
    border-left: solid 1px;
    /* border-right: solid 1px; */

}

.footer-ul {
    display: flex;
    flex-wrap: wrap;
    height: 250px;
    /* border-left: solid 1px; */
    /* padding-right: 30px; */

}

.footer-ul li {
    margin: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 15px;
}

/* --------------- */
/* 問い合わせフォームへのリンク--------------- */
.for_contact {
    border: solid 1px;
    max-width: max-content;
    max-height: max-content;
    width: 100%;
    height: 100%;
    background-color: white;
    margin: 100px 0;
}

.for_contact_smallhead_box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#for_contact_smallhead {
    font-size: 30px;
}

.for_contact h1 {
    text-align: center;
    font-weight: 400;
    padding: 14px 0;
}

.for_contact_main ul {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    justify-content: center;
    /* border: solid 1px; */
    padding-bottom: 50px;

}

.for_contact_main li {

    width: 400px;
    margin: 20px 10px;
    padding: 0 10px;
    /* border: solid 2px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.for_contact_main li:not(:first-child) {
    border-left: solid 1px;
}

.forcontact_exp {
    /* border: solid 1px; */
    text-align: center;
    font-size: 22px;

    height: 80px;
}

.for_contact_main a,
.for_contact_main p:not(:first-child) {
    width: 300px;
    height: 60px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.for_contact_box a {
    border: solid 2px red;
}

.for_Line_box a {
    border: solid 2px yellowgreen;
}

.for_Tel_box p:not(:first-child) {

    border: solid 2px skyblue;
}

.for_contact_main img {
    height: 60px;
}

/* ------------------------------------------- */

main {
    /* border: solid 3px yellow; */
    width: 100%;
    background-color: #fff6e9;

    padding-top: 100px;



}

article {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* border:solid 1px ; */
    /* background-color: blue; */
    padding: 0 5%;
    background-color: #fff6e9;

}

main:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-about {
    width: 100%;
    height: max-content;
    background-image: url(../some/top-head.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border: solid 1px; */
}

.wave {
    width: 100%;
    margin-top: 30px;
    display: inline-flex;
    gap: 10px;
    justify-content: center;
}

.wave span {
    line-height: 1;
    display: inline-block;
    color: rgb(121, 119, 240);
    border-radius: 100%;
    font-size: 22px;
    animation: waveMove 1.8s ease-in-out infinite;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* 時間差をつける（これがウェーブの本体） */
.wave span:nth-child(n) {
    animation-delay: calc(0.1s * var(--i));
}

#top-head {
    width: 100%;
    height: 400px;
    /* border: solid 1px orange; */
    display: flex;
    align-items: end;
}

#top-name {
    padding-left: 20px;
    width: 350px;
    display: flex;
    flex-direction: column;
    /* margin-bottom: 50px; */
}

#top-name p {
    background-color: #fcf5ecc5;
    color: navy;
    /* height:80px; */
    padding-left: 10px;
    font-size: 40px;
}

/* ----------------- */

#greet {
    padding-top: 40px;
    padding-bottom: 70px;
    font-size: 33px;
    font-weight: 440;
}

#greet p {
    line-height: 1.5;
}

/* ----------------- */
.for-box {
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

.for-box-img {
    width: 30%;
    height: 500px;
    border: solid;
    background-image: url(../some/beach_1.jpg);
    background-size: cover;
    border-radius: 33%;

}

.for-company-box,
.for-service-box,
.for-search-box {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 50px;
    margin-left: 100px;
    width: 700px;
    border: solid 1px;
    height: max-content;
    /* border-bottom: dashed ; */

}

.for-service-box {
    align-items: start;
    padding-left: 0;
    margin-right: 100px;
}

.company-message,
.service-message,
.search-message {

    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 10px 20px;

    /* margin: 50px 0; */
}

.company-message p,
.service-message p,
.search-message p {
    /* width: 700px; */
    font-size: 25px;


}

.for-company a,
.for-service a,
.for-search a {
    width: 300px;
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: 20px;
    /* border: solid 1px; */

    line-height: 1.8;

}

.for-company p,
.for-service p,
.for-search p {
    /* border: solid 1px; */
    width: max-content;
}

.for-company p:not(:first-child),
.for-service p:not(:first-child),
.for-search p:not(:first-child) {
    width: 50px;
    height: 50px;
    text-align: center;
    margin-left: 10px;
    border: solid 1px;
    border-radius: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    /* padding-right: 40px; */
}

.for-company a:hover,
.for-service a:hover,
.for-search a:hover {
    opacity: 100%;
}

.for-company p:not(:first-child):hover,
.for-service p:not(:first-child):hover,
.for-search p:not(:first-child):hover {
    color: #412df8;
    background-color: #fff;

}


/* ------------------------ */
/* 物件紹介 */

#propertys {
    /* width: 90%; */
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.propertys h1 {
    text-align: center;
}

.categoryUl {
    display: flex;
    justify-content: center;
}

.categoryUl li {
    padding: 5px 10px;
    border: solid 1px;
    margin: 0 10px;
}

#property_flex {

    display: flex;
    flex-wrap: wrap;
}

.property {

    /* border: solid 1px; */
    margin: 34px;
    width: 500px;
    height: max-content;
}

.property>a:first-child:hover {
    opacity: 100%;
}

.property img {
    width: 100%;
}

.property div {
    display: flex;
    flex-wrap: wrap;
}

.property div p {
    margin: 0 5px;
}

.property .category,
.property .area {
    text-decoration: underline;
}


/* #search_detail {
    border: solid 1px;
} */

/* .searchategory{
    border: solid 1px violet;
} */
.searchategory div {
    display: flex;
    padding: 5px;
}

.searchategory img {
    width: 30px;
}

.searchategory ul {
    display: flex;
    flex-wrap: wrap;
}

.searchategory li {
    padding: 5px 10px;
    border: solid 1px;
    border-radius: 45%;
    margin: 5px 10px;
}

/* -------------- */
/* 物件紹介(カテゴリ絞り込み) */

/* .propertys_fil {
    width: 90%;

} */

.gridbox {
    display: grid;
    grid-template-columns: 55% 5% 40%;
    margin-bottom: 100px;
    /* border: solid 8px; */
}

/* .property_colmn {
    border: solid 1px violet;
} */

.property_fil {
    display: grid;
    grid-template-columns: 20% 80%;
    padding: 10px;
    height: 200px;
    border-bottom: solid 1px;
}

.property_fil_imgbox>a:hover {
    opacity: 100%;
}


.property_fil_imgbox {
    width: 100%;
    height: 50%;
    /* border: solid 1px; */
}

.property_fil_imgbox img {
    max-width: 350px;
    height: 100%;

}

.property_fil_exp {
    /* border: solid; */
    height: 160px;
    padding-left: 20px;
}

.property_fil_exp div {
    display: flex;
    flex-wrap: wrap;
}

.property_fil a h2 {
    width: max-content;
    /* border: solid; */
}

.property_fil div p {
    margin: 0 5px;
}

.property_fil_exp .category,
.property_fil_exp.area {
    text-decoration: underline;
}

.category_tag {
    padding: 5px;
    border: solid 1px;
    border-radius: 45%;
    text-decoration: none;
}

.search_detail_fil {
    padding-left: 10px;
    border-left: solid 1px
}

.searchategory_fil div {
    display: flex;
    padding: 5px;
}

.searchategory_fil img {
    width: 30px;
}

.searchategory_fil ul {
    display: flex;
    flex-wrap: wrap;
}

.searchategory_fil li {
    padding: 10px;
    border: solid 1px;
    border-radius: 45%;
    margin: 5px 10px;
}

/* --------------- */
/* 物件情報詳細 */

.oneproperty_img {
    border: solid;
    display: flex;
    width: 100%;
    height: 800px;
    margin-bottom: 40px;
    background-image: url(../some/C.jpg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.onegridbox {
    display: grid;
    grid-template-columns: 70% 30%;
}

.onepropertypage {
    width: 90%;

}

.oneproperty_exp p {
    padding: 10px 0;
    font-size: 22px;
}

.one_exp_1 {
    /* border: solid 1px; */
    margin: 30px 0;

}



.one_exp_1 div {
    display: flex;
}

.one_exp_1 .price {
    font-size: 30px;
}

.one_exp_1 div p:not(:first-child) {
    font-size: 20px;
    display: flex;
    align-items: end;
    padding-bottom: 12px;
}

.one_exp_2 {
    /* border: solid 1px red; */
    margin: 30px 0;
}



.one_exp_3 {
    display: flex;
    flex-wrap: wrap;
    /* border: solid 1px orange; */
    margin: 30px 0;
}

.one_exp_3 ul {
    display: flex;

    margin-right: 10px;

}

.one_exp_3 a {
    text-decoration: none;
}

.one_exp_3 li:first-child {
    padding: 5px 10px;
}

.one_exp_3 p {
    padding: 5px;
    border: solid 1px;
    border-radius: 45%;
    margin: 0 5px;
}

.one_exp_4 {
    /* border: solid 1px gold; */
    margin: 30px 0;
}

.one_exp_4 .imgs {
    display: flex;
    flex-wrap: wrap;
}

.one_exp_4 .imgs img {
    width: 200px;
    height: 200px;
}


.one_exp_5 {
    /* border: solid 1px green; */
    margin: 30px 0;
}


.tags {
    /* border: solid 1px skyblue; */
    display: flex;

}

.tags .category_tag {
    width: max-content;
    padding: 5px 10px;
    margin-right: 20px;
    font-size: 20px;
}

/* --------------- */

#company-about {
    padding-top: 100px;
    border-collapse: collapse;
    /* border: solid 1px; */



}

#company-about th,
#company-about td {
    width: 300px;
    border-bottom: solid 2px;
    /* border: solid 1px; */
    padding: 20px;
    vertical-align: top;

}

#company-about th {
    border-right: solid 2px navy;
    font-size: 30px;
}

#company-about td {
    width: 600px;
    font-size: 24px;
}

.comp-ul ul {
    width: 50%;
    border: none;
    padding: 5px 0px;
}

.comp-ul h2 {
    font-size: 25px;
}

.comp-ul li:not(:first-child) {
    list-style: square;
    margin-left: 20px;
}


.service-ul {
    width: 100%;
    display: flex;
    justify-content: center;
    /* border: solid 1px red; */

}

.service-ul ul {

    width: 300px;
    margin: 10px 20px;
    padding: 10px 5px;
    border: solid;


}

.service-ul li:first-child {
    text-align: center;
}

.service-ul li:not(:first-child) {
    /* list-style: inside; */
    padding: 5px 5px 5px 80px;
    font-size: 20px;
}

#service .exp>ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 30px 0;
    border-top: solid 2px navy;

}

#service h1 {
    text-align: center;
    padding: 20px 0px;
}

#service p {
    font-size: 25px;
    line-height: 1.6;

    text-align: center;
}

#empty-house {
    width: max-content;
    border-top: solid 1px;
    border-bottom: solid 1px;
    margin: 20px 0;
}

#empty-house li {
    width: max-content;
    margin: 10px 0;
    padding: 5px 0;
    font-size: 25px;

}

/* #greet{
    border: solid 1px;
} */
.item {
    /* border: solid 1px red; */
    margin: 15px 0;
}

.item ul {
    list-style: square;
}

.item ul ::marker {
    font-size: 20px;
}

.item ul p {
    font-size: 35px;
    line-height: 1.5;

}

.item p:not(:first-child) {
    font-size: 20px;
    padding: 5px 0 0 10px;
    padding-left: 20px;
}



/*  --------------*/
/* 問い合わせ------------------ */
.contact-ul {
    border-bottom: solid 1px;
    border-top: solid 1px;
}

.contact-ul ul {
    display: flex;


}

.contact-ul ul:not(:first-child) {
    border-top: solid 1px;
}

.contact-ul li {
    padding: 8px;
    font-size: 30px;
}

.contact-ul p {
    width: 250px;
    /* border: solid 1px; */

}

.contact-ul-head {
    background-color: #c4bdb3;
}

/* .Contact_Servise_ul{
    border: solid 3px orange;
} */
.Contact_Servise_ul {
    display: flex;
    flex-direction: column;
}

.Contact_Servise_ul li {
    padding: 0;
}

.contact-textbox {
    height: 50px;
    width: 900px;
}

.contact-radio {

    block-size: 25px;
    inline-size: 25px;
}

#Select_Work,
#Timing {
    font-size: 20px;
    width: 900px;
    height: 50px;
}

.contact-checkbox {
    inline-size: 25px;
    block-size: 30px;
}

/* ------------ */




@media screen and (max-width:900px) {
    main {

        padding: 0;
        padding-top: 70px;
    }

    header {
        padding: 0;
        width: 100%;
        height: max-content;
    }

    header>a,
    #header-logo {
        width: 70px;
        height: 70px;
    }

    #header-ul {
        height: 70px;
        align-items: center;

    }

    #header-ul li {
        /* border: solid; */
        padding: 0;
        padding: 0 7px;


    }



    #footer-logobox,
    #footer-logo {
        width: 70px;
    }

    #footerbox {

        width: 100%;
        display: flex;
        padding: 0;

        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #footerbox>div {
        width: 100%;
        padding-top: 20px;
    }

    #footer-companybox {
        /* border: solid 1px; */

        padding: 0;
    }

    #footer-companybox>div {
        display: flex;
        width: 100%;
        justify-content: center;
        /* border: solid 1px; */
        padding: 0 20px;
    }

    #footer-logobox {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-right: 10px;
    }

    #footer-companybox h6 {
        font-size: 19px;
    }


    #footer-strbox {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer-strbox>div ul {
        text-align: center;
        /* border: solid; */
    }

    #footer-strbox p {
        font-size: 18px;
    }

    #footer-strbox li:first-child p {
        font-size: 20px;
    }


    .footer-ul {
        border-top: solid 1px;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .footer-ul li {
        font-size: 20px;
    }



    .for_contact {
        margin: 0;
    }

    .forcontact_exp {
        /* border: solid; */
        height: max-content;
        padding: 5px 0;
    }

    .for_contact h1 {
        font-size: 28px;
    }

    .for_contact_main ul {
        padding: 0;
    }

    .for_contact_main li {
        margin: 0;
        padding: 0;
        width: 100%;
        padding: 10px 0;
        border-bottom: solid 1px;
    }

    .for_contact_main li:not(:first-child) {
        border-left: none;
    }


    article {
        width: 100%;
        /* background-color: pink; */
    }

    .item {
        /* border: solid; */
        margin: 0 35px;
        margin-bottom: 10px;
    }

    .item ul p {
        /* border: solid; */
        font-size: 24px;
        font-weight: 400;
        color: #412df8;
    }

    .item p:not(:first-child) {
        font-size: 16px;
        padding: 0;
    }

    #greet p {
        font-size: 22px;
        line-height: 1.5;
    }

    .for-box {
        display: flex;
        flex-direction: column;
    }

    .for-box>div {
        /* border: solid red; */
        width: 100%;
        margin: 10px 0;
    }

    .for-company-box,
    .for-service-box,
    .for-search-box {

        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: max-content;

    }

    .company-message p,
    .service-message p,
    .search-message p {
        font-size: 16px;
    }


    #propertys {
        width: 100%;
    }

    .propertys_fil {
        width: 100%;
    }

    .propertys_fil .gridbox {
        display: flex;
        flex-direction: column;
    }

    .property_fil {
        display: flex;
        flex-direction: column;
        height: max-content;

        border: solid 1px;
        padding: 20px;

    }

    .property_fil>div {
        height: 100%;
    }

    .onepropertypage {
        width: 100%;
    }

    .onepropertypage .gridbox {
        display: flex;
        flex-direction: column;
    }

    .onepropertypage .one_exp_3 {
        flex-direction: column;

    }

    #company-about {
        margin-bottom: 50px;
    }

    #company-about tr {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        /* border: solid 1px; */
        margin-top: 15px 0;
    }

    #company-about th {
        width: 100%;
        font-size: 22px;
        padding: 0;
        padding: 10px;
        border: none;
        border-bottom: solid 1px;
    }

    #company-about td {
        width: 100%;
        font-size: 19px;
        padding: 0;
        padding: 10px;

    }

    .comp_service {
        width: 100%;
    }

    .comp-ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* border: solid; */
        /* width: max-content; */

    }

    .comp-ul ul {
        /* border: solid 1px red; */
        text-align: center;
    }

    .comp-ul li:not(:first-child) {
        list-style: none;
        /* border: solid; */
        width: 100%;
        margin: 0;
        font-weight: 430;

    }

    .service-ul {
        /* border: solid; */
        flex-direction: column;
        align-items: center;
    }

    #empty-house {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;

    }

    #empty-house li {
        font-size: 23px;
        text-align: center;
        width: 100%;
        /* border: solid 1px; */
    }
}