@charset "UTF-8";

/* .noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  .shippori-mincho-regular {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }

.cormorant-garamond-light {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: normal;
}
  }
   */

   :root {
    /* 色管理用の変数 */
    --font-color: #333333;
    --white-color: #F9F9F9;
    --base-color: #F5F5F5;
    --main-color: #500808;
    --sub-color:#3d445b;
    --sub-color02:#807d7d;
    --line-color:#D9D9D9;
    --filter-color:rgba(27, 111, 147, 0.2);
  }
  
  :root {
    /* コンテンツ幅管理用の変数 */
    --content-width-sm: 800px;
    --content-width: 960px;
    --content-width-lg: 1088px;
  }
  
  :root {
    /* z-index管理用の変数 */
    --z-index-back: -1;
    --z-index-default: 1;
    --z-index-header: 100;
    --z-index-menu: 150;
    --z-index-modal: 200;
  }

   /* ---------- base ---------- */

   html {
    scroll-behavior: smooth;
  }

  body {
    color: var(--font-color);
    font-size: 16px;
    font-family: "Noto Sans JP",
      sans-serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }

  @media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
    }

  /* ---------- utility ---------- */
  @media screen and (min-width: 768px) {
    .u_dn-sm {
      display: none;
    }
  }
  
  @media screen and (min-width: 1080px) {
    .u_dn-lg {
      display: none;
    }
  }
  
  /* ---------- layout ---------- */
  
  .l_container-sm,
  .l_container,
  .l_container-lg {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }
  
  .l_container-sm {
    max-width: calc(
      var(--content-width-sm) + 32px
    );
  }
  
  .l_container {
    max-width: calc(
      var(--content-width) + 32px
    );
  }
  
  .l_container-lg {
    max-width: calc(
      var(--content-width-lg) + 32px
    );
  }
  
  .l_contents {
    padding-top: 80px;
    padding-bottom: 80px;
  }

.l_header {
  height: 80px;
  width: 100%;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-index-header);
  background: linear-gradient(to right, #eeeeee, var(--main-color));
}

  
  @media screen and (min-width: 1080px) {
    .l_header {
      padding: 0 48px;
    }
  }

  
  .l_header-logo_link {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .l_header-logo-img {
    height: 60px;
    width: 60px;
  }
  
  .l_header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-color);
    z-index: var(--z-index-header);
    color: var(--white-color);
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav {
      position: static;
      background: transparent;
      width: auto;
      height: auto;
      opacity: 1;
      pointer-events: inherit;
    }
  }
  
  .l_header-nav_list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav_list {
      display: flex;
      gap: 0 48px;
      position: static;
      transform: none;
    }
  }
  
  .l_header-nav_item {
    text-align: center;
    font-size: 16px;
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav_item {
      font-weight: normal;
      display: flex;
      align-items: center;
      position: relative;
    }
  }
  
  .l_header-nav_item:not(:first-child) {
    margin-top: 40px;
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav_item:not(:first-child) {
      margin-top: 0;
    }
  }

  @media screen and (min-width: 1080px) {
    .l_header-nav_item::before {
      transform: scaleX(0);
      transform-origin: bottom right;
      content: "";
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      inset: 0 0 0 0;
      background: hsl(1, 34%, 37%);
      z-index: -1;
      transition: transform .3s ease;
    }
  }

  @media screen and (min-width: 1080px) {
    .l_header-nav_item:hover::before {
      transform: scaleX(1);
      transform-origin: bottom left;
    }
  }

.l_footer {
  padding: 40px 24px;
  background: var(--sub-color);
  color: var(--white-color);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l_footer {
    text-align: center;
  }
  .l_footer_list {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.l_footer_logo {
  display: block;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
}

.l_footer_logo_img {
  width: 150px;
  height: 150px;
  margin-bottom: 16px;
}

.l_footer_list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.l_footer_item {}

.l_footer_link {
  color: var(--white-color);
  text-decoration: none;
}

.l_footer_link:hover {
  text-decoration: underline;
}

.l_footer-copyright {
  margin-top: 24px;
}

.l_footer-copyright_txt {
  font-size: 12px;
  color: var(--white-color);
}

  /* ---------- module ---------- */

  .m_hamburger {
    width: 32px;
    height: 24px;
    position: relative;
    z-index: var(--z-index-menu);
  }
  
  @media screen and (min-width: 1080px) {
    .m_hamburger {
      display: none;
    }
  }
  
  .m_hamburger-bar {
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--white-color);
    left: 50%;
    transition: 0.3s;
  }
  
  .m_hamburger-bar:first-child {
    top: 0;
    transform: translate(-50%, 0);
  }
  
  .m_hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .m_hamburger-bar:last-child {
    top: 100%;
    transform: translate(-50%, -100%);
  }

  h2 {
    font-size: 30px;
    position: relative;
    padding: 16px;
    text-align: center;
    font-weight: bold;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 64px;
  }

  .privacy {
    font-size: 28px;
  }
  
  h2 span {
    font-size: 16px;
    display: block;
    font-weight: normal;
    font-family: "Cormorant Garamond", serif;
  }
  
  h2:before {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: var(--sub-color);
    left: 50%;
    transform: translateX(-50%);
  }

  .m_btn_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
  }
  .m_btn_wrapper.contact {
    
    margin-bottom: 64px;
  }

  .m_btn {
    display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  position: relative;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  box-sizing: border-box;
  padding: 0 25px 0 40px;
  color: var(--white-color);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  }

  .m_btn::after {
    content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
  }

  .m_btn:hover {
    background: #fff;
  color: var(--sub-color);
  }

  .m_btn:hover::before {
    border-top: 2px solid var(--sub-color);
  border-right: 2px solid var(--sub-color);
  }

  .m_btn_wrapper_02 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .m_btn_02 {
    display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 60px;
  position: relative;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  box-sizing: border-box;
  padding: 0 16px;
  color: var(--white-color);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-decoration: none;
  transition-duration: 0.3s;
  }

  .m_btn_img {
    width: 20px;
    margin-right: 8px;
  }

  .m_btn_02:hover {
    background: var(--main-color);
  }

  .m_btn_02:hover::before {
    border-top: 2px solid var(--sub-color);
  border-right: 2px solid var(--sub-color);
  }
.tel {
  @media (min-width: 751px) {
    a[href*="tel:"] {
      pointer-events: none;
      cursor: default;
    }
  }
}


    .m_kv {
      height: 320px;
      position: relative;
    }

    .company_kv {
      background: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)),
      url(../img/company_kv.jpg) top / cover;
    }

    .building_kv {
      background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
      url(../img/building_kv.jpg) center / cover;
    }

    .property_kv {
      background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
      url(../img/property_kv.jpg) center / cover;
    }


    @media screen and (min-width: 1080px) {
      .m_kv-inner {
        position: relative;
        height: 100%;
      }
    }
    
    .m_kv-box {
      position: absolute;
      top: 60%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      text-align: center;
    }
    
    @media screen and (min-width: 1080px) {
      .m_kv-box {
        left: 16px;
        transform: translate(0, -50%);
        text-align: left;
      }
    }
    
    .m_kv-title {
      font-size: 24px;
      color: var(--white-color);
      text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
      font-family: "Shippori Mincho", serif;
      font-weight: bold;
      text-align: left;
      padding-left: 64px;
    }
    
    @media screen and (min-width: 1080px) {
      .m_kv-title {
        font-size: 36px;
      }
    }

    .m_cta {
      background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
      url(../img/cta.png) center / cover;
    }

    .m_cta_box {
      color: var(--white-color);
      text-align: center;
      gap: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 64px 16px;
    }

    .m_cta_ttl {
      font-weight: bold;
      font-size: 24px;
    }

  /* ---------.top_kv----------- */

  .top_kv {
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2));
  }

  .top_kv-inner {
    position: relative;
    height: 100%;
  }
  
  .top_kv_box {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    text-shadow: 2px 2px 2px rgba(170, 170, 170, 0.16);
    font-family: "Shippori Mincho", serif;
  }

  @media screen and (min-width: 1200px) {
    .top_kv_box {
      text-align: left;
      left: 0;
      transform: translate(0, -50%);
    }
  }

  .top_kv_copy {
    font-size: 32px;
    margin-bottom: 16px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;

  }
  
  @media screen and (min-width: 1080px) {
    .top_kv_copy {
        font-size: 56px;
    }
  }

  @media screen and (min-width: 1080px) {
    .top_kv_subcopy {
        font-size: 24px;
    }
  }

  .top_kv-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-index-back);
  }
  
  .top_kv-slideshow_slide_img {
    object-fit: cover;
    height: 100%;
  }

  /* ---------.top_news----------- */

  .top_news_list{
    width:100%;
  }

  @media screen and (min-width: 1080px) {
    .top_news_list {
      width: 70%;
      margin: 0 auto;
    }
  }

  .top_news_item{
    border-bottom:1px solid var(--line-color);
    list-style:none;
  }

  .top_news_link{
    text-decoration:none;
    display: block;
    padding: 10px 0;
  }
  .top_news_link:hover{
    background-color:#ccc;
  }

  .top_news_date{
      vertical-align: middle;
      display: inline-block;
      margin-right: 10px;
  }

  .top_news_txt{
      display: inline-block;
      margin: 0;
      padding: 0;
      vertical-align: middle;
  }

  /* ---------.top_service----------- */
  .top_service {
    background: var(--base-color);
  }

  .top_service_txt {
    text-align: center;
  }

  .top_service_items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px 0;
    margin: 48px auto 0;
  }

  @media screen and (min-width: 768px) {
    .top_service_items {
      flex-direction: row;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
    }
  }

  @media screen and (min-width: 1080px) {
    .top_service_items {
      flex-wrap: nowrap;
    }
  }

  .top_service_item {
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.2);
  }

  @media screen and (min-width: 768px) {
    .top_service_item {
      width: 250px;
    }
  }

  .top_service_01 {
    background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)),url(../img/survice_01.jpg) center center / cover;
  }

  .top_service_02 {
    background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)),url(../img/survice_02.jpg) center center / cover;
  }

  .top_service_03 {
    background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)),url(../img/survice_03.jpg) center center / cover;
  }

  .top_service_04 {
    background: linear-gradient(rgba(51, 51, 51, 0.3), rgba(51, 51, 51, 0.3)),url(../img/survice_04.jpg) center center / cover;
  }

  .top_service_txt-wrapper {
    padding: 32px;
    background: rgba(255, 255, 255, 0.5);
  }

  .top_service_item_txt {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
  }

  .top_service_item_subtxt {
    text-align: center;
  }

  /* ---------.top_works----------- */
  .top_works_items {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  @media screen and (min-width: 1080px) {
    .top_works_items {
      flex-direction: row;
    }
  }

  .top_works_item {
    text-align: center;
    box-shadow: 0 0px 20px rgba(0,0,0,0.2);
  }

  @media screen and (min-width: 768px) {
    .top_works_item {
      width: 80%;
      margin: 0 auto;
    }
  }

  .top_works_txt {
    margin-top: 16px;
  }

  /* ---------.top_office----------- */
  .top_office {
    background: var(--base-color);
  }

  .top_office_items {
    display: flex;
    flex-direction: column;
    gap: 48px;
    overflow: hidden;
  }

  @media screen and (min-width: 1080px) {
    .top_office_item {
      display: flex;
      width: 100%;
      gap: 48px;
    }
  }

  .slidein {
    transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
  } 

  .slide_left{
    transform: translateX(calc(-50vw - 50%));
  }

  .slide_right{
    transform: translateX(calc(50vw + 50%));
  }

  .show{
    transform: translateX(0);
  }

  @media screen and (min-width: 1080px) {
    .office_02 {
      flex-direction: row-reverse;
    }
  }

  .top_office_img {
    box-shadow: 5px 10px 20px rgba(0,0,0,0.25);
  }

  @media screen and (min-width: 1080px) {
    .top_office_img {
      width: 50%;
    }
  }

  .top_office_name {
    font-size: 24px;
    font-weight: bold;
    margin: 16px 0;
    border-bottom: 1px solid var(--line-color);
  }

  .top_office_num {
    margin-bottom: 16px;
  }

  .top_office_time {
    background: var(--sub-color02);
    padding: 16px;
    width: 310px;
    margin: 0 auto;
  }

  .top_office_time_txt {
    color: var(--white-color);
    text-align: center;
  }

  /* ---------- company_greeting ---------- */
  .company_greeting_ttl {
    text-align: center;
    font-size: 24px;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 32px;
  }
  .company_greeting_name {
    margin-top: 32px;
    font-family: "Shippori Mincho", serif;
    align-items: end;
    display: flex;
    flex-direction: column;
  }

  .company_greeting_name_ttl {
    font-size: 20px;
  }

  .company_greeting_name_txt {
    font-size: 24px;
  }

  .company_greeting_imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
  }

  .company_greeting_img {
    width: 150px;
    height: 150px;
  }

  @media screen and (min-width: 1080px) {
    .company_greeting_img {
      width: 200px;
      height: 200px;
    }
  }

  /* ---------- company_profile ---------- */
  .company_prolife {
    background: var(--base-color);
  }

  #table01 {
    margin: 0 auto;
    width: 80%;
  }

#table01 tr {
  border-bottom: 1px solid var(--line-color);
}

#table01 th,
#table01 td {
  padding: 24px 0;
  border: none;
}

#table01 th {
  width: 30%;
  font-weight: bold;
}

/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
  }

  #table01 td {
    padding-top: 0;
  }
}

/* ---------- company_office ---------- */
@media screen and (min-width: 1080px) {
  .company_office_wrapper {
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: start;
}
}

@media screen and (min-width: 1080px) {
.company_office_img {
  width: 400px;
}
}

.company_prolife_map {
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .company_prolife_map {
    margin-top: 0px;
  }
}

.company_map_img {
  width: 100%;
  height: 250px;
}

@media screen and (min-width: 768px) {
  .company_map_img {
    height: 400px;
  }
}

@media screen and (min-width: 1080px) {
  .company_map_img {
    height: 500px;
    width: 860px;
  }
}

/* ---------- privacy ---------- */
.m_privacy {
  background: var(--base-color);
}

.m_privacy_box {
width: 100%;
height: 300px;
padding: 20px 10px;
background-color: #fff;
border: 1px solid var(--line-color);
border-radius: 10px;
}

.m_privacy_inner {
  height: 100%;
  overflow-y: scroll; 
}

.m_privacy_ttl {
  font-size: 20px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 32px;
}

.m_privacy_subttl {
  text-align: center;
  margin-bottom: 48px;
}

.m_privacy_txt_ttl {
  font-weight: bold;
  margin-bottom: 16px;
}

.m_privacy_txt {
  margin-bottom: 32px;
}

  /* ---------- building_main ---------- */
  .building_main_txt {
    margin-bottom: 48px;
  }

  .building_main_ttl {
    font-size: 20px;
    margin-bottom: 16px;
  }

.building_marker {
  background: linear-gradient(transparent 50%, yellow 50%);
}

#container {
	display: grid; /* グリッドレイアウト */
  grid-template-rows: 100px 100px;
	grid-template-columns: 50% 1fr;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  #container {
    grid-template-rows: 200px 200px;
  }
}

@media screen and (min-width: 1080px) {
  #container {
    grid-template-rows: 300px 300px;
  }
}

#itemA {
	grid-row: 1 / 3;
	grid-column: 1 / 2;
}

#itemA img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#itemB {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
}

#itemB img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#itemC {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
}

#itemC img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
/* -------.construction_details------- */

.construction_details {

}

.construction_details_body {
  margin-top: 40px;
}

.construction_details_list-wrapper {
}

@media screen and (min-width: 1080px) {
  .construction_details_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px 40px;
  }
  
}

.construction_details_item {
  margin-right: auto;
  margin-left: auto;
  width: 320px;
  height: 320px;
  margin-top: 32px;
  padding-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .construction_details_item {
    width: 500px;
    height: 320px;
  }
}

.construction_details_item:hover {
  justify-content: start;
}

.construction_details_item::after {
  position: absolute;
  content: '';
  height: 320px;
  width: 400px;
  top: 0;
  left: -150px;
  clip-path: polygon(0 0, 60% 0, 90% 100%, 0% 100%);
  background: rgba(6, 91, 160, 0.404);
  transition: 1s;
  z-index: 1;
}


.construction_details_item:hover.construction_details_item::after{
  left: 0;
}

.construction_details_item:active.construction_details_item::after{
  left: 0;
}

.construction1 {
  background: url(../img/option1.jpg) right no-repeat;
}

.construction2 {
  background: url(../img/option2.jpg) center no-repeat;
}

.construction3 {
  background: url(../img/option3.jpg) center no-repeat;
}

.construction4 {
  background: url(../img/option4.jpg) center no-repeat;
}
.property1 {
  background: url(../img/option01.jpg) right no-repeat;
}

.property2 {
  background: url(../img/option02.jpg) center no-repeat;
}

.property3 {
  background: url(../img/option03.jpg) center no-repeat;
}

.property4 {
  background: url(../img/option04.jpg) center no-repeat;
}


.construction_details_item-inner {
  z-index: var(--z-index-modal);
}

.construction_details_desc {
  font-size: 28px;
  font-weight: bold;
  color: var(--white-color);
}

.construction_details_item:hover .construction_details_desc {
  display: none;
}

.construction_details_item:active .construction_details_desc {
  display: none;
}

.construction_details_desc.hover-db {
  display: none;
  font-size: 20px;
}

.construction_details_item:hover .construction_details_desc.hover-db {
  display: block;
}


.construction_details_item_txt {
  display: none;
  width: 240px;
  margin-top: 16px;
  color: var(--white-color);
}

.construction_details_item:hover .construction_details_item_txt {
  display: block;
}

  /* ---------- building_sub ---------- */
  .building_sub {
    background-color: var(--base-color);
  }

  #container_2 {
    display: grid; /* グリッドレイアウト */
    grid-template-rows: 100px 100px;
    grid-template-columns: 50% 1fr;
    gap: 10px;
  }

  @media screen and (min-width: 768px) {
    #container_2 {
      grid-template-rows: 200px 200px;
    }
  }

  @media screen and (min-width: 1080px) {
    #container_2 {
      grid-template-rows: 300px 300px;
    }
  }
  
  #itemD {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  
  #itemD img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  #itemE {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
  }
  
  #itemE img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  #itemF {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
  
  #itemF img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* ---------- building_works ---------- */
  .building_works_imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .building_works_img {
    width: 150px;
    height: 120px;
    object-fit: cover;
  }

  @media screen and (min-width: 1080px) {
    .building_works_img {
      width: 300px;
      height: 200px;
    }
  }

  .building_works_link :hover {
    opacity:0.5;
	transition:0.3s;
  }

  /* ---------- property_sale ---------- */
  .property_sale {
    background: var(--base-color);
  }

  .card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .card__item {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0px 20px rgba(0,0,0,0.2);
  }

  @media screen and (min-width: 768px) {
    .card__item {
      width: calc((100% - 40px) / 3);
    }
  }

  @media screen and (min-width: 1080px) {
     .card__item {
      width: calc((100% - 60px) / 4);
     }
  }
  .card__img-area {
    aspect-ratio: 3/2;
    margin-bottom: 20px;
  }
  .card__img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .card__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--main-color);
  }

  /* -------contact-------- */

.contact {

}

.contact_body {

}

.contact_form_txt {
  text-align: center;
  margin-top: 32px;
}

.contact_form {
  margin-top: 40px;
}

.contact_form_list {

}

.contact_form_item {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sub-color);
}

.contact_form_item:not(:first-child) {
  margin-top: 16px;
}

@media screen and (min-width: 1080px) {
  .contact_form_item {
    display: flex;
    align-items: center;
  }
}

.contact_form_heading {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
}

@media screen and (min-width: 1080px) {
  .contact_form_heading {
    max-width: 343px;
    width: 100%;
  }
}

.required {
  padding: 2px 4px;
  background-color: var(--main-color);
  color: var(--white-color);
  font-weight: bold;
  font-size: 12px;
}

@media screen and (min-width: 1080px) {
  .contact_form_detail {
    display: flex;
    gap: 24px;
    margin-left: 40px;
    width: 705px;
  }
}

.contact_form_detail {

}

.contact_form_input {
  padding: 8px 16px;
  background: var(--sub02-color);
  width: 100%;
}


.optional {
  padding: 2px 4px;
  background-color: #9c9c9c;
  color: var(--white-color);
  font-weight: bold;
  font-size: 12px;
}

.contact_form_radio-list {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (min-width: 1080px) {
  .contact_form_radio-list {
    margin-left: 0;
  }
}

.contact_form_radio-list:not(:first-child) {
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .contact_form_radio-list:not(:first-child) {
    margin-top: 0;
  }
}

.contact_form_radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact_form_radio-item:hover {
  color: #767676;
}

.contact_form_radio {
  appearance: radio;
  width: 16px;
  height: 16px;
}

.contact_form_label {

}

.border-bottom {
  border-bottom: 1px solid var(--font-color);
}

.contact_form_textarea {
  background-color: var(--sub02-color);
  width: 100%;
  height: 160px;
  padding: 8px;
}

@media screen and (min-width: 1080px) {
  .contact_form_textarea {
    width: 705px;
  }
}

.contact_consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

@media screen and (min-width: 1080px) {
  .contact_consent {
    margin-top: 32px;
  }
}

.contact_form_checkbox {
  appearance: checkbox;
}

@media screen and (min-width: 1080px) {
  .contact_form_checkbox {
    width: 16px;
    height: 16px;
  }
}

.contact_consent_inner {

}

  /* ---------- js ---------- */
.js_body.is-active {
    overflow: hidden;
  }

  .js_navigation {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
  }
  
  @media screen and (min-width: 1080px) {
    .js_navigation {
      pointer-events: auto;
      opacity: 1;
    }
  }
  
  .js_navigation.is-active {
    opacity: 1;
    pointer-events: inherit;
  }
  
  .js_hamburger.is-active .m_hamburger-bar:first-child {
    top: 50%;
    transform: translate(-50%, 0) rotate(45deg);
  }
  
  .js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .js_hamburger.is-active .m_hamburger-bar:last-child {
    top: 50%;
    transform: translate(-50%, 0) rotate(-45deg);
  }


  .preparation {
    margin: 50px;
    text-align: center;
    font-size: 30px;
  }