@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap");
html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  background: #f5f1eb;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1;
  color: #40210f;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body.is-lock {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, th, dt {
  font-weight: normal;
  font-size: 100%;
}

li {
  list-style-type: none;
}

img {
  border: none;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

th, td {
  text-align: left;
  vertical-align: top;
}

.anchor {
  margin-top: -80px;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .anchor {
    margin-top: -60px;
    padding-top: 60px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  background: #f5f1eb;
  column-gap: 10px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header_logo > a {
  height: 100%;
  padding: 10px;
  display: inline-flex;
  align-items: center;
}
.header_logo > a img {
  width: auto;
}
@media screen and (max-width: 767px) {
  .header_logo > a img {
    max-height: 40px;
  }
}
.header_unit {
  display: flex;
  align-items: center;
}
.header_tel {
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .header_tel {
    display: none;
  }
}
.header_tel_text {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 35px;
  font-weight: bold;
  white-space: nowrap;
}
.header_tel_text::before {
  content: "";
  display: block;
  width: 22px;
  height: 29px;
  background: url("../img/icon_tel.svg") no-repeat center/contain;
}
.header_contact {
  height: 80px;
  width: 80px;
}
@media screen and (max-width: 767px) {
  .header_contact {
    width: 60px;
    height: 60px;
  }
}
.header_contact > a {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #40210f;
  background: #fff;
  row-gap: 5px;
  transition: 0.4s;
}
.header_contact > a:hover {
  background: #40210f;
  color: #fff;
}
.header_contact_ja {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .header_contact_ja {
    font-size: 12px;
  }
}
.header_contact_en {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .header_contact_en {
    font-size: 10px;
  }
}
.header_button {
  height: 80px;
  width: 80px;
  background: #40210f;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header_button {
    width: 60px;
    height: 60px;
  }
}
.header_button::before {
  width: 40px;
  height: 24px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
  transition: transform 0.4s;
}
@media screen and (max-width: 767px) {
  .header_button::before {
    width: 30px;
    height: 21px;
  }
}
.header_button::after {
  width: 40px;
  height: 0px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border-top: 1px solid #fff;
  transition: transform  0.4s;
}
@media screen and (max-width: 767px) {
  .header_button::after {
    width: 30px;
  }
}
.header_button.is-on::before {
  height: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom-width: 0;
}
.header_button.is-on::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav {
  position: fixed;
  top: 80px;
  z-index: 3;
  width: 100%;
  height: 0;
  overflow-y: scroll;
  display: block;
  background: #40210f;
  color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .nav {
    top: 60px;
  }
}
.nav.is-on {
  height: calc(100% - 80px);
}
@media screen and (max-width: 767px) {
  .nav.is-on {
    height: calc(100% - 60px);
  }
}
.nav_list > li > a {
  display: block;
  padding: 20px 20px 20px 5px;
  border-bottom: 1px solid #cecece;
  font-family: 'Noto Sans JP', sans-serif;
  background: url("../img/icon_arrow_white.svg") no-repeat right 5px center/8px;
  transition: 0.3s;
}
.nav_list > li > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 40px;
  }
}
.top .footer, .realestate .footer {
  margin-top: 0;
}
.footer_unit1 {
  padding: 50px 20px;
  background: #40210f;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_unit1 {
    padding: 40px 20px;
  }
}
.footer_unit1_inner {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: auto 340px 340px;
  column-gap: 25px;
  row-gap: 25px;
}
@media screen and (max-width: 1600px) {
  .footer_unit1_inner {
    grid-template-columns: repeat(2, auto);
  }
}
@media screen and (max-width: 767px) {
  .footer_unit1_inner {
    grid-template-columns: 1fr;
  }
}
.footer_contact {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 1600px) {
  .footer_contact {
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact {
    grid-column: auto;
    display: block;
  }
}
.footer_contact_text {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer_contact_text {
    margin-top: 20px;
  }
}
.footer_tel > a {
  width: 100%;
  height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 14px;
  border: 1px solid #fff;
  transition: 0.3s;
}
.footer_tel > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer_tel_number {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 35px;
  font-weight: bold;
  white-space: nowrap;
}
.footer_tel_number::before {
  content: "";
  display: block;
  width: 22px;
  height: 29px;
  background: url("../img/icon_tel_white.svg") no-repeat center/contain;
}
.footer_tel_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer_tel_text {
    font-size: 14px;
  }
}
.footer_mail > a {
  width: 100%;
  height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 18px;
  border: 1px solid #fff;
  transition: 0.3s;
}
.footer_mail > a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.footer_mail_title {
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
}
.footer_mail_title::before {
  content: "";
  width: 37px;
  height: 24px;
  background: url("../img/icon_mail_white.svg") no-repeat center/contain;
}
.footer_mail_text {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.footer_mail_text:after {
  content: "";
  width: 10px;
  height: 20px;
  background: url("../img/icon_arrow_white.svg") no-repeat center/contain;
}
.footer_unit2 {
  display: grid;
  row-gap: 30px;
  padding: 0 0 40px;
  background: #52301d;
  color: #cecece;
}
.footer_nav_list {
  margin: auto;
  width: 100%;
  max-width: 1600px;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(7, minmax(auto, 1fr));
  white-space: nowrap;
  border: 1px solid #808080;
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 1600px) {
  .footer_nav_list {
    border: none;
  }
}
@media screen and (max-width: 1024px) {
  .footer_nav_list {
    grid-template-columns: 1fr;
  }
}
.footer_nav_list > li > a {
  height: 100px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.footer_nav_list > li > a:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  .footer_nav_list > li > a {
    height: auto;
    padding: 20px 15px;
    border-bottom: 1px solid #cecece;
  }
}
.footer_nav_list > li + li > a {
  border-left: 1px solid #808080;
}
@media screen and (max-width: 1024px) {
  .footer_nav_list > li + li > a {
    border-left: none;
  }
}
.footer_logo {
  text-align: center;
}
.footer_copyright {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
}

.breadcrumb {
  padding: 10px 40px;
  background: #40210f;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 10px 20px;
  }
}
.breadcrumb_list {
  margin: auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb_list > li:not(:last-child)::after {
  content: ">";
  margin-left: 5px;
  margin-right: 5px;
}
.breadcrumb_list > li > a:hover {
  color: #cecece;
}

.section {
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 20px;
  }
}
.section-bg1 {
  background: #40210f;
  color: #fff;
}
.breadcrumb + .section-bg1 {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumb + .section-bg1 {
    padding-top: 10px;
  }
}
.section_inner {
  margin: auto;
  max-width: 1200px;
}
.section:not(.section-bg1) + .section:not(.section-bg1) {
  padding-top: 0;
}

.list-style1 > li {
  margin-left: 1em;
  display: list-item;
  list-style: disc;
}

.title-style1 {
  margin-bottom: 20px;
  color: #40210f;
}
.title-style1 .title_en {
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-family: 'Big Shoulders Display';
  font-size: 70px;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .title-style1 .title_en {
    font-size: 35px;
    column-gap: 10px;
  }
}
.title-style1 .title_en::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #40210f;
}
.title-style1 .title_ja {
  margin-top: 15px;
  display: block;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .title-style1 .title_ja {
    margin-top: 5px;
    font-size: 18px;
  }
}
.title-style1-white .title_en {
  color: #fff;
}
.title-style1-white .title_en::after {
  background: #fff;
}
.title-style1-white .title_ja {
  color: #fff;
}

.title-style2 {
  display: block;
}
.title-style2 .title_en {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #40210f;
  font-family: 'Big Shoulders Display';
  font-weight: bold;
  font-size: 70px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .title-style2 .title_en {
    margin-bottom: 5px;
    padding-bottom: 5px;
    font-size: 35px;
  }
}
.title-style2 .title_ja {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .title-style2 .title_ja {
    font-size: 18px;
  }
}
.title-style2-white .title_en {
  color: #fff;
  border-color: #fff;
}
.title-style2-white .title_ja {
  color: #fff;
}

.title-style3 {
  text-align: center;
}
.title-style3 .title_en {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 1em 10px;
  border-bottom: 1px solid #40210f;
  font-family: 'Big Shoulders Display';
  font-weight: bold;
  font-size: 70px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .title-style3 .title_en {
    margin-bottom: 5px;
    padding-bottom: 5px;
    font-size: 35px;
  }
}
.title-style3 .title_ja {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .title-style3 .title_ja {
    font-size: 18px;
  }
}

.title-style4 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  column-gap: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #40210f;
}
@media screen and (max-width: 767px) {
  .title-style4 {
    margin-bottom: 20px;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.title-style4 .title_en {
  font-family: 'Big Shoulders Display';
  font-weight: bold;
  font-size: 70px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .title-style4 .title_en {
    margin-bottom: 10px;
    font-size: 35px;
    padding-bottom: 10px;
    border-bottom: 1px solid #40210f;
  }
}
.title-style4 .title_ja {
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .title-style4 .title_ja {
    font-size: 18px;
  }
}
.title-style4 strong {
  font-weight: bold;
  text-decoration: underline;
}
.title-style4-white {
  color: #fff;
  border-bottom-color: #fff;
}
@media screen and (max-width: 767px) {
  .title-style4-white .title_en {
    border-bottom-color: #fff;
  }
}

.title-style5 {
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
}
@media screen and (max-width: 767px) {
  .title-style5 {
    column-gap: 10px;
  }
}
.title-style5 .title_en {
  font-family: 'Big Shoulders Display';
  font-size: 40px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .title-style5 .title_en {
    font-size: 35px;
  }
}
.title-style5 .title_ja {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .title-style5 .title_ja {
    font-size: 18px;
  }
}

.text {
  line-height: 1.8;
}
.text-b {
  font-weight: bold;
}
.text-l {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .text-l {
    font-size: 18px;
  }
}
.text-link {
  text-decoration: underline;
}

.button {
  cursor: pointer;
}
.button-style1 {
  width: 100%;
  max-width: 300px;
  height: 60px;
  padding: 0 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: url("../img/icon_arrow_white.svg") no-repeat center right 10px/8px 16px #40210f;
  color: #fff;
  transition: 0.3s;
}
.button-style1:hover {
  background-color: #fff;
  background-image: url("../img/icon_arrow.svg");
  color: #40210f;
  border: 1px solid #40210f;
}

.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-top {
  vertical-align: top;
}
.align-middle {
  vertical-align: middle;
}
.align-bottom {
  vertical-align: bottom;
}

.mt1em {
  margin-top: 1em;
}

.top_main {
  position: relative;
  padding-left: 80px;
}
@media screen and (max-width: 1024px) {
  .top_main {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top_main {
    padding-left: 10px;
  }
}
.top_main::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 50%;
  background: #40210f;
}
.top_main > img {
  width: 100%;
}
.top_about {
  position: relative;
}
.top_about::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: calc(100vw - 160px);
  height: 100%;
  background: #40210f;
}
@media screen and (max-width: 1024px) {
  .top_about::before {
    width: calc(100vw - 40px);
  }
}
@media screen and (max-width: 767px) {
  .top_about::before {
    width: calc(100vw - 10px);
  }
}
.top_about_inner {
  padding: 60px 0 60px 80px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  column-gap: 60px;
  max-width: 1600px;
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .top_about_inner {
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .top_about_inner {
    flex-direction: column;
    padding: 40px 80px 40px 40px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_about_inner {
    padding: 20px 30px 20px 20px;
  }
}
.top_about_content {
  padding-top: 70px;
  flex: 1 1 auto;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  .top_about_content {
    padding-top: 0;
  }
}
.top_about_images {
  flex: 0 0 auto;
  position: relative;
  height: 100%;
  width: 53%;
}
@media screen and (max-width: 1024px) {
  .top_about_images {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_about_images {
    column-gap: 10px;
  }
}
.top_about_images_img1 {
  margin-left: 13%;
  width: 87%;
}
@media screen and (max-width: 1024px) {
  .top_about_images_img1 {
    margin-left: 0;
    width: 100%;
    height: 25vw;
    object-fit: cover;
  }
}
.top_about_images_img2 {
  margin-top: -20%;
  width: 72%;
}
@media screen and (max-width: 1024px) {
  .top_about_images_img2 {
    margin-top: 0;
    width: 100%;
    height: 25vw;
    object-fit: cover;
  }
}
.top_business_inner {
  margin-top: -180px;
  max-width: 1700px;
  padding: 0 40px 0 0;
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  column-gap: 40px;
}
@media screen and (max-width: 1600px) {
  .top_business_inner {
    margin-top: 0;
    padding: 40px 40px 0 0;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .top_business_inner {
    padding: 40px 0 0 40px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .top_business_inner {
    padding: 20px 0 0 0;
  }
}
.top_business_content {
  padding: 220px 0 0 0;
  flex: 0 0 auto;
  width: 45%;
}
@media screen and (max-width: 1600px) {
  .top_business_content {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top_business_content {
    width: auto;
    padding: 20px 40px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .top_business_content {
    padding: 20px 20px 0 20px;
  }
}
.top_business_list {
  margin-top: 30px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  column-gap: 20px;
}
.top_business_list > li {
  margin-top: -1px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #40210f;
  border-bottom: 1px solid #40210f;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
}
.top_business_images {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 51% 1fr;
  grid-template-rows: 56% auto;
  gap: 2%;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .top_business_images {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .top_business_images > img {
    height: 25vw;
    object-fit: cover;
  }
}
.top_business_images_img1 {
  grid-row: 1/3;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .top_business_images_img1 {
    grid-row: auto;
  }
}
.top_business_images_img2 {
  width: 100%;
}
.top_business_images_img3 {
  width: 100%;
}
.top_realestate_inner {
  padding: 60px 0 0 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 40px;
}
@media screen and (max-width: 1400px) {
  .top_realestate_inner {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .top_realestate_inner {
    padding: 40px 20px 0 20px;
  }
}
.top_realestate_list {
  display: flex;
  column-gap: 30px;
}
@media screen and (max-width: 1400px) {
  .top_realestate_list {
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .top_realestate_list {
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_realestate_list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}
.top_realestate_list > li {
  flex: 1 1 auto;
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .top_realestate_list > li {
    max-width: none;
  }
}
.top_realestate_item {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #40210f;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  transition: 0.4s;
}
.top_realestate_item:hover {
  opacity: 0.8;
}
.top_realestate_item:hover .top_realestate_item_image_img {
  transform: scale(1.15);
}
.top_realestate_item_image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.top_realestate_item_image_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.top_realestate_item_category {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 20px 10px 10px;
  background: url("../img/icon_arrow_white.svg") no-repeat center right 5px/10px 15px rgba(0, 0, 0, 0.7);
  font-size: 14px;
  color: #fff;
}
.top_realestate_item_content {
  padding: 15px;
  line-height: 1.8;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .top_realestate_item_content {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .top_realestate_item_text {
    font-size: 14px;
  }
}
.top_realestate_item_price {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .top_realestate_item_price {
    font-size: 16px;
  }
}
.top_company {
  margin-top: 60px;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .top_company {
    margin-top: 40px;
  }
}
.top_company::before {
  content: "";
  display: block;
  position: absolute;
  top: 80px;
  left: 160px;
  z-index: -1;
  width: calc(100vw - 160px);
  height: calc(100% - 80px);
  background: #40210f;
}
@media screen and (max-width: 1024px) {
  .top_company::before {
    display: none;
  }
}
.top_company_inner {
  max-width: 1850px;
  padding: 0 70px 80px 0;
  display: grid;
  grid-template-columns: 48% 1fr;
  column-gap: 70px;
}
@media screen and (max-width: 1024px) {
  .top_company_inner {
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 70vw;
  }
}
.top_company_map {
  filter: grayscale(1);
}
@media screen and (max-width: 1024px) {
  .top_company_map {
    grid-row: 2;
    padding: 0;
  }
}
.top_company_map > iframe {
  width: 100%;
  height: 100%;
}
.top_company_title {
  line-height: 1.3;
  margin-bottom: 15px;
}
.top_company_content {
  padding: 160px 0 0;
}
@media screen and (max-width: 1024px) {
  .top_company_content {
    padding: 40px;
    background: #40210f;
  }
}
@media screen and (max-width: 767px) {
  .top_company_content {
    padding: 40px 20px 40px 20px;
  }
}
.top_company_unit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
}
@media screen and (max-width: 1600px) {
  .top_company_unit {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1600px) {
  .top_company_table:nth-child(2) > tbody > tr:first-child > th, .top_company_table:nth-child(2) > tbody > tr:first-child > td {
    border-top: none;
  }
}
.top_company_table > tbody > tr > th, .top_company_table > tbody > tr > td {
  border-bottom: 1px solid #fff;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .top_company_table > tbody > tr > th, .top_company_table > tbody > tr > td {
    display: block;
  }
}
.top_company_table > tbody > tr > th {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .top_company_table > tbody > tr > th {
    width: auto;
    border-bottom: none;
    padding: 15px 0 0;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .top_company_table > tbody > tr > td {
    padding: 0 0 15px;
  }
}
.top_company_table > tbody > tr:first-child > th, .top_company_table > tbody > tr:first-child > td {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .top_company_table > tbody > tr:first-child > td {
    border-top: none;
  }
}
.top_news {
  padding: 80px;
}
@media screen and (max-width: 1024px) {
  .top_news {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top_news {
    padding: 40px 20px;
  }
}
.top_news_content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_news_content {
    margin-top: 20px;
  }
}
.top_news_text {
  line-height: 1.8;
}
.top_news_text + .top_news_text {
  margin-top: 1em;
}
.top_footer_image {
  height: 480px;
  background: url("../img/top_footer_image.jpg") no-repeat center/cover;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1024px) {
  .top_footer_image {
    height: 25vw;
  }
}

.consultation_main {
  position: relative;
  padding-left: 80px;
}
@media screen and (max-width: 1600px) {
  .consultation_main {
    height: 800px;
  }
}
@media screen and (max-width: 1024px) {
  .consultation_main {
    padding-left: 40px;
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .consultation_main {
    padding-left: 10px;
    height: 100vw;
  }
}
.consultation_main::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 50%;
  background: #40210f;
}
.consultation_main_inner {
  position: relative;
  height: 100%;
}
.consultation_main_inner > img {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .consultation_main_inner > img {
    object-fit: cover;
    height: 100%;
  }
}
.consultation_main_content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 50px;
  text-align: center;
  background: rgba(64, 33, 15, 0.75);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .consultation_main_content {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .consultation_main_content {
    padding: 20px;
  }
}
.consultation_main_title {
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  font-size: 30px;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .consultation_main_title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .consultation_main_title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 4.5vw;
  }
}
.consultation_main_text {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .consultation_main_text {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .consultation_main_text > span {
    display: inline-block;
  }
}
.consultation_main_copy {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-size: 30px;
}
.consultation_main_copy > strong {
  display: inline-block;
  padding: 5px;
  border: 1px solid #ffcc00;
  color: #ffcc00;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .consultation_main_copy {
    margin-top: 20px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .consultation_main_copy {
    margin-top: 15px;
    font-size: 4.5vw;
  }
}
.consultation_buysale {
  margin-bottom: 30px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 767px) {
  .consultation_buysale {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
.consultation_buysale_item {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffcc00;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .consultation_buysale_item {
    font-size: 1.29vw;
  }
}
@media screen and (max-width: 767px) {
  .consultation_buysale_item {
    font-size: 2.5vw;
  }
}
.consultation_buysale_item::before {
  position: absolute;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #40210f;
  border: 2px solid #fff;
  outline: 2px solid #40210f;
  transform: rotate(45deg) scale(0.7);
}
.consultation_point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .consultation_point {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.consultation_point + .consultation_point {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .consultation_point + .consultation_point {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .consultation_point_item {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
  }
}
.consultation_point_item:first-child {
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .consultation_point_item:first-child {
    padding-right: 0;
  }
}
.consultation_point_item:not(:first-child) {
  padding-left: 30px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .consultation_point_item:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
}
.consultation_point_item_title {
  margin-bottom: 20px;
  display: flex;
  column-gap: 15px;
}
@media screen and (max-width: 767px) {
  .consultation_point_item_title {
    margin-bottom: 10px;
  }
}
.consultation_point_item_title_sub {
  padding: 10px;
  display: flex;
  align-items: center;
  background: #fff;
  color: #40210f;
  font-family: 'Big Shoulders Display';
  font-size: 24px;
  white-space: nowrap;
}
.consultation_point_item_title_sub_num {
  margin-left: 3px;
  display: inline-block;
  color: #ffcc00;
}
.consultation_point_item_title_text {
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .consultation_point_item_title_text {
    font-size: 18px;
  }
}

.contact_section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #40210f;
}
.contact_title {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 20px;
  font-weight: bold;
}
.contact_required {
  display: inline-block;
  padding: 5px;
  background: #ed3e3e;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
}
.contact_checkbox {
  display: inline-block;
  margin-right: 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #40210f;
  vertical-align: middle;
}
.contact_textarea, .contact_input {
  width: 100%;
  padding: 10px;
  border: 1px solid #40210f;
}
.contact_way {
  display: flex;
  column-gap: 15px;
}
.contact .errortext {
  margin-top: 5px;
  color: #ed3e3e;
  font-weight: bold;
}
.contact .errormsg {
  margin-bottom: 20px;
  color: #ed3e3e;
  font-weight: bold;
}

.realestate_title {
  margin-bottom: 20px;
  display: flex;
  column-gap: 15px;
}
@media screen and (max-width: 767px) {
  .realestate_title {
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.realestate_title_category {
  padding: 5px 10px;
  background: #fff;
  color: #40210f;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .realestate_title_category {
    margin-bottom: 5px;
    font-size: 12px;
    padding: 5px;
  }
}
.realestate_title_text {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .realestate_title_text {
    font-size: 18px;
    line-height: 1.4;
  }
}
.realestate_lead {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .realestate_lead {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.realestate_swiper {
  position: relative;
}
.realestate_swiper-thumb {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .realestate_swiper-thumb {
    margin-top: 10px;
  }
}
.realestate_swiper_next, .realestate_swiper_prev {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url("../img/icon_arrow_white.svg") no-repeat center/10px 14px rgba(0, 0, 0, 0.7);
  border-radius: 100%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .realestate_swiper_next, .realestate_swiper_prev {
    width: 30px;
    height: 30px;
  }
}
.realestate_swiper_next.swiper-button-disabled, .realestate_swiper_prev.swiper-button-disabled {
  display: none;
}
.realestate_swiper_next {
  right: 5px;
}
.realestate_swiper_prev {
  left: 5px;
  transform: translateY(-50%) scale(-1);
}
.realestate_point {
  padding: 20px;
  border: 2px solid #40210f;
}
@media screen and (max-width: 767px) {
  .realestate_point {
    padding: 10px;
  }
}
.realestate_table {
  width: 100%;
}
.realestate_table > tbody > tr:first-child > th, .realestate_table > tbody > tr:first-child > td {
  border-top: 1px solid #40210f;
}
@media screen and (max-width: 767px) {
  .realestate_table > tbody > tr:first-child > td {
    border-top: none;
  }
}
.realestate_table > tbody > tr > th, .realestate_table > tbody > tr > td {
  padding: 1em -0px;
  border-bottom: 1px solid #40210f;
}
@media screen and (max-width: 767px) {
  .realestate_table > tbody > tr > th, .realestate_table > tbody > tr > td {
    display: block;
    padding: 0.5em -0px;
  }
}
.realestate_table > tbody > tr > th {
  width: 20%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .realestate_table > tbody > tr > th {
    width: auto;
    padding-bottom: 0;
    border-bottom: none;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) {
  .realestate_table > tbody > tr > td {
    padding-top: 0;
  }
}
