@charset "UTF-8";
@import  url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&family=Parisienne&display=swap');

/* 調整用スタイル */
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
ul,li {
    list-style: none;
}

body {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    color: #555;
    background-color: #ececec;
}
h2 {
    color: #555555;
    font-weight: bolder;
    font-size: 30px;
    margin: 50px auto 30px;
    border-bottom: 1px solid #999999;
    width: 200px;
}

button {
    background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
    border-color: transparent;
}
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn__common {
    overflow: hidden;
    padding: 1.5rem 5rem;
    color: #fff;
    border-radius: 0;
    background: #999;
    font-size: 16px;
    border: 1px solid #cccccc;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 20px;
}
  
a.btn__common span {
    position: relative;
}
  
a.btn__common:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-96%);
    transform: translateX(-96%);
    background: gold;
}
  
a.btn__common:hover:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

/* ヘッダー */
header {
    width: 100%;
    z-index: 999;
    position: fixed;
    top: 20px;
}
.header__inner {
    height: 60px;
}
.title_small {
    font-size: 11px;
    margin: 5px;
}
@media screen and (min-width: 768px) {
    .title_small {
        font-size: 15px;
        line-height: 1.1;
    }
}
.header-nav__title {
    font-size: 26px;
    font-weight: bold;
    color: #333333;
    line-height: 1.2;
    margin: 0 auto;
    width: fit-content;
    display: flex;
}
@media screen and (min-width: 768px) {
    .header-nav__title {
        font-size: 32px;
        width: initial;
        margin: auto 0;
    }
}
/* .header-nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: rgba(157,144,135,0.8); /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
    transition: ease .4s;
} */
.header__hamburger {
    width: 48px;
    height: auto;
    position: fixed;
    top: 20px;
    right: 0
}
.hamburger {
    z-index: 9999;
}
/* ハンバーガーの線 */
.hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    margin: 8px 0;
}
.hamburger span:nth-child(3) {
    top: 0;
}
/* ハンバーガークリック後のスタイル */
.header-nav.active {
    transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}

.header-nav__inner {
    width: 90%;
    margin: 0 auto;
    padding: 5px 3%;
    height: 80px;
    background-color: #ffffff;
    border-radius: 10px;
    align-items: baseline;
}
@media screen and (min-width: 768px) {
    .header-nav__inner {
        height: 70px;
        padding: 0 3%;
        display: flex;
        justify-content: space-between;
    }
}
.header-nav__items {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: fit-content;
}
@media screen and (min-width: 768px) {
    .header-nav__items {
        display: flex;
        width: initial;
        margin: auto 0;
    }
}
.header-nav__item {
    margin-right: 15px;
}
@media screen and (min-width: 768px) {
    .header-nav__item {
        margin-right: 25px;
    }
}
.header-nav__item:last-child {
    margin-right: 0px;
}
/* ナビのリンク */
.header-nav__item a {
    color: #333333;
    display: block;
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    .header-nav__item a {
        font-size: 18px;
    }
}
.header-nav__item:last-child a {
    margin-bottom: 0;
}
a.header-nav__btn{
  color: #000;
  background-color: #ffd700;
  border-bottom: 5px solid #ccc100;
  padding: 5px 8px;
}
@media screen and (min-width: 768px) {
    a.header-nav__btn{
        padding: 10px 20px;
      }
}
a.header-nav__btn:hover {
  margin-top: 3px;
  color: #000;
  background: #ffd700;
  border-bottom: 2px solid #ccc100;
}

/* メイン */
.top__mv {
    width: 100%;
    margin-top: 110px
}
.top__img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: top;
    position: relative;
}
@media screen and (min-width: 768px) {
    .top__img {
        width: 100%;
        height: 800px;
        object-fit: cover;
        object-position: top;
    }
}
.top__txt{
    color: #ffffff;
    position: absolute;
    top: 30%;
    font-size: 30px;
    padding: 0 3%;
}
@media screen and (min-width: 768px) {
    .top__txt{
        font-size: 40px;
    }
}
.top__body {
    display: flex;
    flex-direction: column; /*子要素が縦に並ぶ*/
    justify-content: center; /* 縦方向の中央 */
    align-items: center; /* 横方向の中央 */
    color: #ffffff;
}
.top__lead {
    font-size: 16px;
    display: contents;
}
@media screen and (min-width: 768px) {
    .top__lead {
        font-size: 19px;
        display: flex;
    }
}

/* about */
#about {
    padding-top: 10px;
    margin-top: -10px;
}
.about__inner {
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .about__inner {
        max-width: 1148px;
        width: 90%;
        padding: 0;
    }
}
.about__body {
    margin: 55px auto 48px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .about__body {
        width: 100%;
        display: flex;
    }
}
@media screen and (min-width: 768px) {
    .about__right {
        width: 50%;
        justify-content: center;
        margin-left: 10px;
    }
    .about__left {
        width: 20%;
    }
}
.about__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}
.about__text {
    font-size: 16px;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .about__text {
        font-size: 18px;
        margin-bottom: 43px;
    }
}
.about__img {
    object-fit: cover;
}

/* property */
.property__inner {
    padding: 0 10%;
}
.property__body {
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .property__inner {
        max-width: 1040px;
        padding: 0;
        margin: 0 auto;
    }
    .property__body {
        display: flex;
        width: 100%;
    }
}
.property-item {
    display: block;
    max-width: 576px;
    margin: 0 auto 20px;
    background-color: #ffffff;
    box-shadow: 1px 1px 8px gray;
}
@media screen and (min-width: 768px) {
    .property-item {
        margin-right: 15px;
        width: auto;
        max-width: 336px;
    }
    .property-item:last-child {
        margin-right: 0;
    }
}
.property-item__img {
    width: 90%;
    padding-top: 20px;
    margin: 0 auto;
}
.property-item__img img {
    object-fit: cover;
    width: 100%;
}
.property-item__price {
    height: 41px;
    margin: 0 auto;
    color: #000;
    font-size: 14px;
}
.property-item__title {
    height: 41px;
    line-height: 41px;
    color: #000;
    font-weight: normal;
    margin: 0 auto;
    font-size: 16px;
}
.property__btn {
    margin-top: 40px;
    margin-bottom: 43px;
}
.property__btn a {
    font-size: 16px;
    border: 1px solid #cccccc;
    padding: 14px 25px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Noto Serif JP',serif;
}
/*assessment*/
#assessment {
    padding-top: 10px;
    margin-top: -10px;
}
.assessment__inner {
    margin: 0 auto;
    padding: 0 10%;
}
@media screen and (min-width: 768px) {
    .assessment__inner {
        max-width: 1148px;
        width: 90%;
        padding: 0;
    }
}
.assessment__body {
    margin: 55px auto 48px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .assessment__body {
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
    }
}
@media screen and (min-width: 768px) {
    .assessment__left {
        width: 50%;
        justify-content: center;
        margin-left: 10px;
    }
    .assessment__right {
        width: 50%;
    }
}
.assessment__text {
    font-size: 16px;
    margin-top: -10px;
    margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
    .assessment__text {
        font-size: 18px;
        margin-bottom: 43px;
    }
}
.assessment__img {
    width: 100%;
    object-fit: cover;
}
.assessment__btn {
    margin-bottom: 43px;
}
.assessment__btn a {
    font-size: 16px;
    border: 1px solid #cccccc;
    padding: 14px 25px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Noto Serif JP',serif;
}


/* contact */
#contact {
    padding-top: 10px;
    margin-top: -10px;
}
.contact__inner {
    margin: 0 auto;
    padding: 0 10%;
}
@media screen and (min-width: 768px) {
    .contact__inner {
        max-width: 1300px;
        padding: 0 20px;
        margin-bottom: 100px;
    }
}
.contact__body {
    margin: 81px auto 80px auto;
}
@media screen and (min-width: 768px) {
    .contact__body {
        margin: 155px auto 0px auto;
        max-width: 1300px;
        display: flex;
    }
}
.contact-info__title {
    margin-top: 20px;
}
.contact__map {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
    .contact__map {
        min-width: 400px;
        flex: 1;
        margin: 0;
    }
}
@media screen and (min-width: 768px) {
    .contact-info {
        margin-right: 5%;
    }
}
.contact-info__tel {
    margin-bottom: 33px;

}
.contact-info__tel a {
    text-decoration: none;
    font-size: 19px;
    font-family: 'Noto Serif JP';
    color: #555;
}
.contact-info__address {
    font-size: 20px;
    margin-top: 8px;
    margin-bottom: 10px;
}
.contact-info__btn {
    margin-bottom: 30px;
}
.contact-info__btn a {
    font-size: 16px;
    padding: 11px 31px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Noto Serif JP', serif;
    border: 1px solid #cccccc;
}

/* map */
#map {
    margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
    #map {
        margin-bottom: 144px;
    }
}
.map__body {
    width: 100%;
    height: 300px;
    padding: 0 16px;
}
@media screen and (min-width: 768px) {
    .map__body {
        width: 100%;
        height: 525px;
        padding: 0 47px;
    }
}


/* フッター */
#footer {
    height: 273px;
    background-color: #ffffff;
    padding-top: 37.5px;
}
@media screen and (min-width: 768px) {
    #footer {
        padding-top: 82px;
        padding-bottom: 74px;
    }
}
.pagetop {
    height: 50px;
    width: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #9D9087;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 15px;
    width: 15px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: translateY(20%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
    .footer__inner {
        display: flex;
        height: 151px;
        padding: 0 5%;
    }
}
.footer__lead {
    font-size: 13px;
    margin-bottom: 7.5px;
}
.footer__title {
    font-size: 32px;
    height: 60px;
    margin: 0 auto;
    color: #000;
}
@media screen and (min-width: 768px) {

    .footer__lead,.footer__title {
        text-align: left;
    }
}
.footer-nav__box {
    width: 196px;
    height: 78px;
    margin: 10px auto 17px auto;
}
@media screen and (min-width: 768px) {
    .footer-nav__box {
        width: 376px;
        display: flex;
        align-items: flex-end;
        margin-right: 9px;
        flex-direction: column;
    }
}
.footer-nav{
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .footer-nav{
        margin: 0;
        width: fit-content;
    }
}
.footer-nav__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .footer-nav__items {
        justify-content: normal;
    }
}
.footer-nav__items li {
    margin-right: 30px;
    padding: 10px 0;
}
.footer-nav__items li:nth-child(even){
    margin-right: 0;
}
@media screen and (min-width: 768px) {
    .footer-nav__items li:nth-child(even) {
        margin-right: 30px;
    }
}
.footer-nav__item {
    font-size: 13px;
}
@media screen and (min-width: 768px) {
    .footer-nav__item {
        justify-content: normal;
    }
}
.footer-nav__item a {
    color: #555;
}
.footer__copy {
    font-size: 11px;
    margin-top: 17px;
    margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
    .footer__copy {
        text-align: right;
    }
}
