@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, address,
em, img, small, strong, b, i,dl, dt, dd, ol, ul, li, form, label, table, caption,
tbody, tfoot, thead, tr, th, td, article, canvas, footer, header, menu, nav, section,
time, audio, video, figure , button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-size: 62.5%
}
body {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2F2F2F;
}
h1,h2,h3,h4,h5 {font-weight: bold;}
address { font-style: normal;}
article, footer, header, menu, nav, section {display: block;}
ul {list-style: none; }
table {border-collapse: collapse;border-spacing: 0; }
input, select {vertical-align: middle;}
a {
    margin: 0;
    color: inherit;
    padding: 0;
    font-size: 100%;
    text-decoration: none;
    vertical-align: baseline;
    background: transparent;
    transition: .3s
}
a:link:hover{
    opacity: 0.7;
    cursor: pointer;
}

figure img {
  width: 100%;
  height: auto;
}
figure.w100 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
figure.w100 img {
  width: auto;
}
figure.w100 figcaption {
  margin-top: 10px;
  font-size: 1.6rem;
}

.sp {display: none;}

.w1000 {
  width: 73%;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width:768px){
  body {
    font-size: 1.4rem;
  }
  .pc {display: none;}
  .sp {display: inherit;}
  
  .w1000 {
    width: calc(100% - 30px);
    max-width: inherit;
  }
  
  figure.w100,
  figure.w100 img {
    width: 100%;
  }
  figure.w100 figcaption {
    font-size: 1.3rem;
  }
}



/* header
---------------------------------------------------------- */
.mv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  margin-bottom: 90px;
  background: url(img/mv.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
  text-shadow:  0 3px 6px rgba(0,0,0,.16);
  line-height: 1;
  color: #fff;
  font-weight: bold;
}
.mv h1 {
  margin-bottom: 25px;
  font-size: 5.0rem;
}
.mv p { font-size: 2.5rem;}

header nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  margin-bottom: 90px;
}
header nav ul li a {
  display: block;
  padding: 15px 0;
  background: #7E7B6C;
  color: #fff;
  line-height: 1;
  text-align: center;
}

/* for sp */
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 45px;
  }
  .mv h1 { font-size: 2.4rem;}
  .mv p { font-size: 1.6rem;}
  
  header nav ul {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-bottom: 40px;
  }
  header nav ul li:last-child {grid-area: 3 / 1 / 4 / 3;}
  header nav ul li a {
    width: 100%;
    padding: 10px;
    font-size: 1.4rem;
    box-sizing: border-box;
  }
}

/* main
---------------------------------------------------------- */
main article.bg_br { background: #C9C9C9;}

main .ttl {
  position: relative;
  padding-top: 35px;
  margin-bottom: 30px;
  border-top: #ccc solid 1px;
  font-size: 3.0rem;
}
main .ttl::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 21.5%;
  height: 5px;
  background: #0F1D5A;
}

main .sttl {
  margin-bottom: 30px;
  font-size: 2.0rem;
  font-weight: bold;
}

main p {
  line-height: 2.2;
  font-size: 1.8rem;
}

main .flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  main .ttl {
    padding-top: 20px;
    margin-bottom: 15px;
    font-size: 2.4rem;
  }
  main .sttl {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  main p {
    line-height: 1.75;
    font-size: 1.4rem;
  }
  main .flex {flex-direction: column;}
  
  main img {
    width: 100%;
    height: auto;
  }
}

/*  table   */
main table {
  border-collapse: collapse;
  border: #ccc solid 1px;
  font-size: 1.6rem;
}
main table th,
main table td {
  min-height: 100px;
  padding: 15px 15px 15px 20px;
  border: #ccc solid 1px;
  line-height: 1.25;
  text-align: left;
  vertical-align: middle;
}
main table th {
  width: 20.5%;
  background: #7E7B6C;
  color: #fff;
}
main table td { font-weight: bold;}

@media screen and (max-width: 768px) {
  main table,
  main table th,
  main table td {
    display: block;
    width: 100%;
    font-size: 1.3rem;
  }
  main table th,
  main table td {
    height: auto;
    min-height: inherit;
    padding: 15px 10px;
    border: none;
  }
}


/*----------------------------------------
  location
----------------------------------------*/
ul.col_03 {
  display: flex;
  flex-wrap: wrap;
}
ul.col_03 > li {
  width: calc(33.33% - 33.33px);
  margin: 0 50px 25px 0;
}
ul.col_03 > li > p {
  margin-top: 5px;
  font-size: 1.3rem;
}
ul.col_03 li:nth-child(3n) { margin: 0 0 25px;}

ul.col_03 ul.txt li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
ul.col_03 ul.txt li h4 {
  width: 180px;
  line-height: 1;
  font-size: 1.0rem;
  font-weight: normal;
}
ul.col_03 ul.txt li h4::before { content: "・";}
ul.col_03 ul.txt li div {
  width: 95px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
}
ul.col_03 ul.txt li p {
  line-height: 1;
  font-size: 1.0rem;
}

@media screen and (max-width: 768px) {
  #location .flex {
    flex-direction: column-reverse;
  }
  #location img.ml70 {
    margin:0 0 30px;
  }
  
  ul.col_03 {
    flex-direction: column;
    margin-top: 50px;
  }

  ul.col_03 > li,
  ul.col_03 > li:nth-child(3n) {
    width: 100%;
    margin: 0 0 20px;
  }

  ul.col_03 ul.txt {
    padding: 15px;
    background: #F1F1EF;
  }

  ul.col_03 ul.txt li {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin:0 0 15px;
  }

  ul.col_03 ul.txt li:last-child { margin: 0;}
  
  ul.col_03 ul.txt li div {
    display: flex;
  }

  ul.col_03 ul.txt li h4 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }

  ul.col_03 ul.txt li p {
    font-size: 1.2rem;
  }
}

/*----------------------------------------
  feature
----------------------------------------*/
#feature {
  z-index: -1;
}
.feature-list { padding-top: 40px;}
.feature-list li {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 0;
}

.feature-list li .txt {
  width: 57%;
  margin-bottom: 200px;
  padding: 45px 25px 60px 20px;
  background: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .16);
  box-sizing: border-box;
  z-index: 1;
}
.feature-list li:nth-child(even) .txt{
  margin-left: auto;
}
.feature-list li:last-child .txt {margin-bottom: 160px;}

.feature-list li .sttl {
  margin-bottom: 30px;
  color: #7E7B6C;
  font-size: 2.8rem;
}
main .feature-list li.txt p {
  line-height: 2;
  color: #707070;
  font-size: 1.6rem;
}

.feature-list li figure {
  position: absolute;
  right: 0;
  top: 16%;
  width: 76%;
  height: 380px;
  z-index: -1;
}
.feature-list li:nth-child(even) figure {
  right: auto;
  left: 0;
}
.feature-list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .feature-list li .txt {
    width: 94%;
    margin: 150px 0 50px;
    padding: 20px 15px;
  }
  
  .feature-list li:last-child .txt {
    margin-bottom: 80px;
  }
  
  .feature-list li .sttl {
    margin-bottom: 20px;
    font-size: 2.0rem;
  }

  .feature-list li.txt p {
    line-height: 1.75;
    font-size: 1.4rem;
  }

  .feature-list li figure {
    top: 0;
    width: 87%;
    height: 200px;
  }
}

/*----------------------------------------
  price
----------------------------------------*/
#price { padding: 110px 0;}
#price figure img{
  width: 100%;
}
table.price td span {
  display: flex;
  align-items: center;
}
table.price td span::before {
  flex:none;
  width: 4em;
  margin-right: 20px;
  padding: 10px;
  color: #fff;
  text-align: center;
}
table.price .home { margin-bottom: 10px;}
table.price .home { margin-bottom: 10px;}
table.price .home::before {
  content: "住居";
  background: #0F1D5A;
}
table.price .tenant::before {
  content: "テナント";
  background: #828282;
}

@media screen and (max-width: 768px) {
  #price { padding: 50px 0;}
  table.price td span {
    align-items: flex-start;
    line-height: 1.5;
    font-size: 1.4rem;
  }
  table.price td span::before {
    margin-right: 10px;
    font-size: 1.2rem;
  }
  table.price .home { margin-bottom: 15px;}
}

/*----------------------------------------
  plan
----------------------------------------*/
#plan {
  background: url(img/img_plan01.jpg) no-repeat right 0 top 20px;
}

#plan .notice {
  text-align: right;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.2rem;
}

.plan_block  { position: relative;}
.plan_block.a { padding: 130px 0 10px;}
.plan_block.b { padding: 190px 0 30px;}
.plan_block.c { padding: 110px 0 0;}

/* plan_block > box */
.plan_block .box {
  position: absolute;
  top: 0;
  left: 120px;
  width: 245px;
  background: #fff;
  line-height: 1;
  font-weight: bold;
}
.plan_block .box h3 {
  display: flex;
  align-items: center;
}
.plan_block .box .type {
  padding: 0 20px 10px 0;
  margin-right: 10px;
  border-right: #2F2F2F solid 1px;
  font-size: 3.0rem;
}
.plan_block .box .type::after {
  content: "Type";
  margin-left: 8px;
  font-size: 2.0rem;
}
.plan_block .box .room {
  font-size: 3.0rem;
}
.plan_block .box .area {
  border-top: #2F2F2F solid 1px;
  font-size: 2.0rem;
}

/* plan_block > txt */
.plan_block .txt {
  position: absolute;
  left: 190px;
  line-height: 1.2;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}

.plan_block.a .txt { bottom: 140px;}
.plan_block.b .txt { bottom: 180px;}
.plan_block.c .txt { bottom: 190px;}

@media screen and (max-width: 768px) {
  #plan {
    background-size: 40vw auto;
  }
  #plan .ttl {margin-bottom: 0 !important;}
  
  .plan_block.a { padding-top: 25vw;}
  .plan_block.b { padding: 0;}
  .plan_block.c { padding: 0;}
  
  .plan_block .inr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
  }
  
  .plan_block .box,
  .plan_block .txt {
    position: static;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    display: inline-block;
    width: calc(50% - 5px);
  }
  
  /* plan_block > box */
  .plan_block .box .type,
  .plan_block .box .room {
    font-size: 2.4rem;
  }
  .plan_block .box .type::after {
    margin-left: 5px;
    font-size: 1.6rem;
  }
  .plan_block .box .area {
    font-size: 1.8rem;
  }
  .plan_block .txt {
    padding: 0;
    font-size: 1.6rem;
  }
  
  #plan .notice {
    margin-top: 10px;
    text-align:left;
  }
}

/*----------------------------------------
  access
----------------------------------------*/
#access .flex .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#access h3 {
  margin-top: 5px;
  font-size: 2.8rem;
}
#access address {
  line-height: 3;
  font-size: 1.8rem;
  font-weight: bold;
}
.access-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 75px;
  border: #2F2F2F solid 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
.access-btn::before {
  content: "";
  width: 20px;
  height: 26px;
  margin-right: 30px;
  background: url(img/ico_map.png) no-repeat;
  background-size: cover;
}

#access .map {
  width: 50%;
  height: 330px;
}

@media screen and (max-width: 768px) {
  #access .flex .content { margin-bottom: 30px;}
  #access h3 { font-size: 2.4rem;}
  #access address {
    margin: 20px 0;
    line-height: 2;
    font-size: 1.6rem;
  }
  .access-btn {
    padding: 15px;
  }
  #access .map {
    width: 100%;
    height: 240px;
  }
}


/* footer
---------------------------------------------------------- */
footer {
  width: 100%;
  margin-top: 130px;
  padding: 60px 0;
  background: #7E7B6C;
  color: #fff;
}
footer .inr {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}
footer h4 {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
footer .inquiry {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
footer .inquiry h4 {
  margin: 0 25px 0 0;
  padding: 10px 30px;
  background: #0F1D5A;
  font-size: 1.3rem;
}
footer .inquiry a {
  font-size: 3.0rem;
}
footer .inquiry a::before {
  content: "TEL：";
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: 70px;
    padding: 30px 0;
  }
  footer .inr {
    width: calc(100% - 30px);
  }
  footer .inr a img {
    max-width: 100%;
  }
  footer .inquiry h4 {
    padding: 10px 15px;
    margin: 0 10px 0 0;
  }
  footer .inquiry a { font-size: 2.0rem;}
}

/* basic
---------------------------------------------------------- */

.align_c {text-align: center;}
.align_r {text-align: right;}

.text16 {font-size: 1.6rem;}

.mb20 { margin-bottom: 20px;}
.mb60 { margin-bottom: 60px;}
.mb80 { margin-bottom: 80px !important;}
.mb90 { margin-bottom: 90px;}
.mb100 { margin-bottom: 100px;}
.mb160 { margin-bottom: 160px;}
.mb200 { margin-bottom: 200px;}

.ml40 { margin-left: 40px;}
.ml50 { margin-left: 50px;}
.ml60 { margin-left: 60px;}
.ml70 { margin-left: 70px;}

@media screen and (max-width: 768px) {
  .text16 {font-size: 1.4rem;}

  .mb20 { margin-bottom: 10px;}
  .mb60 { margin-bottom: 30px;}
  .mb80 { margin-bottom: 40px !important;}
  .mb90 { margin-bottom: 45px;}
  .mb100 { margin-bottom: 50px;}
  .mb160 { margin-bottom: 80px;}
  .mb200 { margin-bottom: 100px;}

  .ml40 { margin-left: 20px;}
  .ml50 { margin-left: 25px;}
  .ml60 { margin-left: 30px;}
  .ml70 { margin-left: 45px;}
}