@charset "UTF-8";

body {
    margin: 0;
}

h1, h2, p {
    font-family: "Zen Old Mincho", serif;
}

/* ヘッダー（reckの文字） */

header {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
    -webkit-text-stroke: 1px black;
}

header img {
    height: clamp(30px, 5vw, 6vw);
    padding-top: 5px;
    margin: auto 0;
}

header h1 {
    margin: 0;
    font-family: "Meiryo";
    font-size: clamp(30px, 5vw, 6vw);
}

/* ナビゲーション */

nav {
    display: flex;
    line-height: 14px;
    justify-content: space-around;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

nav div:first-child {
    margin-left: 2%;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a:hover {
    color: #7AD0AD;
}

nav h2 {
    font-size: clamp(10px, 2vw, 2.2vw);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
}

/* メインコンテンツ */

.word {
  text-align: center;
  margin: 20px auto 60px;
}

.word h1 {
  font-size: 4vw;
}

/* メインコンテンツ　＜　不動産 */

.real-estate-content {
  margin: 30px auto 0 auto;
}

.real-estate-content-1 {
    width: 90%;
    margin: 30px auto 40px;
    display: flex;
    justify-content: center;
}

.real-estate-buying-and-selling {
    width: 50%;
    margin: auto;
}

.real-estate-buying-and-selling h2 {
    margin: auto 20% auto 10%;
    font-size: 3vw;
}

.real-estate-buying-and-selling p {
    margin: auto 20% auto 10%;
    font-size: 2.7vw;
    padding-left: 0.7rem;
}

.real-estate-buying-and-selling h2 {
    padding: 5px 0;
}

.real-estate-content-1 img {
    width: 50%;
    object-fit: contain;
}

/* メインコンテンツ　＞　不動産2 */

.real-estate-content-2 {
    width: 90%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
}

.real-estate-content-2 img {
    width: 40%;
    object-fit: contain;
}

.real-estate-buying-and-selling2 {
    width: 60%;
    margin: auto;
}

.real-estate-buying-and-selling2 h2 {
    margin: auto 10% auto 20%;
    font-size: 3vw;
}

.real-estate-buying-and-selling2 p {
    margin: auto 10% auto 20%;
    font-size: 2.7vw;
    padding-left: 0.7rem;
}

.real-estate-buying-and-selling2 h2 {
    padding: 5px 0;
}


/* 不動産についてdescription */

.description {
  width: 70%;
  margin: 60px auto 0px;
  padding: 20px;
  position: relative;
}

.description::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  border-top: 1.5px solid #dcdcdc;  /* 角の色 */
  border-right: 1.5px solid #dcdcdc; /* 角の色 */
  border-radius: 3px;
  width: 20px;
  height: 20px;
}

.description::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1.5px solid #dcdcdc; /* 角の色 */
  border-left: 1.5px solid #dcdcdc;   /* 角の色 */
  border-radius: 3px;
  width: 20px;
  height: 20px;
}

.description-content {
  margin-bottom: 50px;
}

.description h1 {
  font-size: 3.5vw;
  text-align: center;
}

.description p {
  font-size: 3vw;
}

/* コンタクトフォームへ */

.to-contact {
  position: relative;
  text-align: center;
  margin-top: 100px;
}

.to-contact img {
  display: block;
  width: 90%;
  margin: 0 auto;
  height: 150px;
  object-fit: cover;
  filter: brightness(0.5);
  border-radius: 2%;
}

.contact-form {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央に配置 */
  color: white; /* 文字色を白に設定 */
  text-align: center; /* 文字を中央揃え */
}

.contact-form button {
  width: 40%;
  height: 40px;
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: 1px solid white;
  border-radius: 5px;
}

/* フッター */

footer {
  width: 100%;
  margin-top: 100px;
  border-top: 1px solid black;
}

.footer-top {
  color: white;
  display: flex;
  -webkit-text-stroke: 1px black;
}

.footer-top img {
  height: clamp(30px, 5vw, 6vw);
  padding-top: 5px;
  margin: auto 0;
}

.footer-top h1 {
  margin: 5px auto 5px 5px;
  font-family: "Meiryo";
  font-size: clamp(25px, 4.5vw, 5.5vw);
}

.footer-bottom h6 {
  text-align: center;
  margin: 0;
  line-height: 30px;
  font-size: clamp(8px, 1.2vw, 1.2vw);
}