@charset "UTF-8";
/*------------------------------------------------*/
/*
    common.css | built 2020/04/03
*/
/*-------------------------------------
-----------*/


html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  /* 游明朝体 */
  font-family: '游明朝体',"Noto Serif JP", serif;
}

.flex-d {
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  text-decoration: none;
}

.pc-none {
  display: none;
}

.sp-only {
  display: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.img-100 {
  width: 100%;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: block;
  color: #fff;
  background: #069765;
  border-radius: 0;
  width: 250px;
  height: 60px;
  font-size: 18px;
  line-height: 2.6;
  padding-right: 30px;
  font-weight: bold;
position: relative;
margin: 20px;
}


.btn::after {
  content: url(../images/arrow.svg);
  position: absolute;
  right: 25px;
  top:9px;
}

.btn:hover {
  background: #fff;
  color: #069765;
  border: solid 1px #069765;
}

#header {
  /*fixedで上部固定*/
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  /*最前面へ*/
  text-align: center;
  background-color: #069765;
  filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.3));
  color: #fff;
}

.sub-header {
  width: 100%;
  height: 50px;
  background-color: #004B31;
  padding-top: 10px;
  align-items: center;
}

.sub-header-info {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: -3px;
}

.sub-header p {
  margin-top: 7px;
  margin-left: 20px;
}

.sub-header-button {
  font-family: '游ゴシック', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
  display: flex;
  color: #fff;
  font-weight: bold;
}

.sub-header-button a {
  color: #fff;
}

.sub-header-button a:hover {
  text-decoration: none;
}

nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

/*ナビゲーションを横並びに*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  height: 95px;
  margin-right: 2rem;
}
/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
  font-size: 17px;
  line-height: 1.3;
  white-space: nowrap;
}

/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  width: 150px;
  padding-top: 25px;
  transition: all 0.3s;
  font-weight: bold;
}

.has-child {
  padding-top: 25px;
  font-weight: bold;
}

nav ul li li a {
  padding: 10px 35px;
}

li span {
  font-size: 14px;
  opacity: 0.6;
}

nav ul li a:hover {
  opacity: 0.7;
  color: #fff;
}

/*==矢印の設定*/


.navbar-brand {
  margin-top: 0;
}

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 30px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 94px;
  z-index: 4;
  /*形状を指定*/
  background: #fff;
  width: 100%;
  height: 218px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
  text-align: center;
  padding: 0;
  border-top: 2px solid #004B31;
    border-bottom: solid 1px #069765;
}

nav li.has-child ul li {
  font-size: 17px;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
  font-size: 17px;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  width: 100%;
  color: #069765;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
    border-bottom: solid 1px #069765;
}

nav li.has-child ul li:last-child a {

}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #004B31;
  color: #fff;
}

/*スムーススクロール*/
#page-top a {
  background: #069765;
  color: #fff;
  text-align: center;
  display: block;
  text-decoration: none;
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
  transition: all 0.3s;
}

a.anchor {
  display: block;
  padding-top: 140px;
  margin-top: -140px;
}

.tel {
  width: 180px;
  height: 35px;
  font-size: 19px;
  background: #A11919;
  line-height: 1.8;
  margin-right: 20px;
}

.tel i {
  margin-right: 5px;
}

.mail {
  width: 180px;
  height: 35px;
  font-size: 17px;
  background: #4AB74A;
  line-height: 2;
  margin-right: 20px;
}

.mail i {
  margin-right: 5px;
}

.logo {
  width: 200px;
  height: auto;
  margin-left: 1rem;
  margin-top: 10px;
}

.top-button {
  position: fixed;
  top: 85%;
  right: 1%;
  z-index: 9999;
}

.tuiki {
  width: 100%;
  padding: 2% 0;
  font-size: 5vmax;
  background-color: #dc0f0f;
  color: #fff;
}

.pc-none {
  display: none;
}

h1,
h2,
h3,
h4 {
  /* 游明朝体 */
  font-family: '游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro',
    'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
  margin-top: 0;
}

h4 {
  font-size: 25px;
}

.bold {
  font-weight: bold;
}

.flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
  padding-right: 0;
}

.blue-label {
  width: 100%;
  height: 5px;
  background-color: #4D2B18;
}

.border-line {
  width: 55px;
  height: 2px;
  margin: 0 auto;
  background-color: #4D2B18;
}



.mt-3 {
  margin-top: 3%;
}

.mt-5 {
  margin-top: 5%;
}

.bottom-button {
  width: 1024px;
  height: 150px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4D2B18;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

.mainview {
  width: 100%;
  margin-top: 140px;
  height: 750px;
  background-image: url(../images/main.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.yoyaku {
  background: #BB3131;
  color: #fff;
padding-top: 20px;
padding-bottom: 20px;
  font-size: 35px;
  font-weight: bold;
  text-align: center;

}

.yoyaku a {
  display: inline-block;
  color: #fff;
}

.yoyaku::after {
  content: url(../images/yoyaku-arrow.png);
  margin-left: 15px;
}



.midashi {
  width: 100%;
  background: #fff;
}

.midashi img {
  width: 90%;
  max-width: 850px;
  padding: 30px 0 50px 0;
}




/*-- concept --*/

.concept {
  width: 100%;
  text-align: center;
  color: #402D22;
  z-index: -999;
  padding-top: 50px;
  background:url(../images/concept-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-top: solid 8px #4AB74A;
    border-bottom: solid 8px #4AB74A;
}

.concept-wrap {
  width: 100%;
  text-align: center;
  padding-bottom: 5%;
}

.concept-wrap h1 {
  display: inline;
  padding: 1% 0;
  color: #069765;
}

.concept-wrap p {
  font-size: 22px;
}


.fa-location-dot {
  margin-right: 0.5em;
}

.name {
  color: #fad470;
  font-size: 45px;
  line-height: 1.1;
  font-weight: bold;
  text-align: center;
}

.name-ja {
  font-size: 30px;
}

.kyori {
  display: inline;
  color: #fff;
  font-size: 20px;
  border-bottom: solid 1px #fff;
  padding-bottom: 1%;
}

.concept-logo img {
  width: 550px;
}

.section-mark {
 margin-bottom: 60px;
}

/*-- concept終わり --*/


/*-- about --*/

.about {
  width: 100%;
  height: auto;
  background: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 60px;
  text-align: center;
}

.about-copy {
  font-size: 25px;
  font-weight: bold;
}

.about h2 {
    color: #069765;
    line-height: 1.5;
}

.about h3 {
  width: 300px;
  color: #069765;
  line-height: 1.5;
  font-size: 25px;
  margin-top: 10px;
  border-bottom: #069765 solid 1px;
}

.about-content-wrap {
  max-width: 680px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.about-content {
width: 90%;
max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
margin: 0 20px;
margin-top: 40px;
}

.about-content {
  font-size: 18px;
}

.about-content span {
  color: #DC0F0F;
}


.about-content-text {
  color: #fff;
  font-weight: bold;
  border-left: solid 4px #fff;
  height: 130px;
  padding-left: 20px;
  margin-top: 40px;
}


.about-content-text h4 {
  text-align: left;
  font-size: 45px;
}

.about-content-img {
  width:340px;
}


.siyou-wrap {
  width: 98%;
  max-width: 780px;
  display: flex;

  justify-content: center;
  margin: 0 auto;
}

.siyou-01 {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.siyou-02 {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.siyou {
  min-width: 330px;
  max-width: 380px;
  height: auto;
  font-size: 22px;
  background: #fff ;
  color: #069765;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;


}

.siyou p {
 width: 90%;
  max-width: 380px;
  height:auto ;
  display: block;
  margin: 0;
  padding-top: 5%;
  white-space: nowrap;
  padding-bottom: 15px;
}

.siyou-area {
  width: 100%;
  padding: 40px 0;
  background: url(../images/siyou.png);
  background-size: cover;
  background-repeat: no-repeat;
}


/*-- about終わり --*/





/*-- kukaku --*/

.sec-title {
  width: 100%;
   text-align: center;
}

.kukaku {
  background:#F5FEF8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 8%;
  padding-top: 80px;
}


.kukaku h3 {
  font-size: 25px;
  color: #069765;
  line-height: 1.7;
  padding-top: 3%;
}


.land-plan {
  width: 90%;
  max-width: 1024px;
  background: #fff;
  padding-bottom: 50px;
  margin: 0 auto;
}

.land-plan h4 {
  width: 100%;
  padding: 20px 0;
  background-color: #614D2B;
  color: #fff;
  font-size: 30px;
  position: relative;
}


.address {
  width: 100%;
  padding: 5px 0;
  background-color: #1e304c;
  color: #fff;
  max-width: 95%;
  border-radius: 30px;
}

.kukau-tokuchou {
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 5%;
  text-align: center;
}

.kukakuzu {
  width: 80%;
  text-align: center;
  margin: 4% auto;
}

table {
  margin: 0 auto;
}

thead th {
  font-size: 23px;
  font-weight: bold;
  background-color: #069765;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

th {
  width: 200px;
  text-align: center;
  background-color: #fff;
  border: solid 1px #069765;
  color: #069765;
  font-size: 18px;
  font-weight: bold;
}

td {
  width: 450px;
  padding: 5px;
  background-color: #fff;
  border: solid 1px #069765;
  text-align: center;
  font-size: 18px;
}

.chuki {
  width: 80%;
  max-width: 700px;
  text-align: right;
  margin: auto;
}


/*-- kukaku --*/

/*-- modelhouse --*/



.modelhouse {
  text-align: center;
  width: 100%;
  background: #F9F9F9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;

}

.modelplan {
  width: 90%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
    padding-bottom: 40px;

}



.modelhouse h3 {
  font-size: 30px;
  color: #069765;
    margin-top: 30px;
}

.modelplan p {
  font-size: 35px;
  color: #DC0F0F;
  margin-top: 10px;
}

.modelplan span {
  font-size: 20px;
}


.medel-about {
  width: 90%;
  max-width: 840px;
  margin:0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.madori {
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
}

.madori-point-area h4 {
    width: 90%;
  max-width: 980px;
  background: #069765;
  color: #fff;
    margin: 0 auto;
  font-size: 35px;
  padding-top: 10px;
  padding-bottom:  5px;
}

.madori-point-wrap {
  width: 90%;
  max-width: 950px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 20px;
}

.madori-point {
  width: 215px;
  margin-top: 10px;
}

.madori-point img {
  height: 163px;
}

.madori-point h5 {
  font-weight: bold;
  font-size: 17px;
  border-bottom: #069765 solid 2px;
  color: #069765;
  padding: 5px 0;
  margin-top: 5px;
}

.madori-point p {
  text-align: left;
  font-size: 15px;
}




/*-- modelhouse --*/

/*-- structure --*/

.structure-wrap {
  padding-bottom: 70px;
}

.structure-wrap .sec-title {
  width: 100%;
  background: #F5FEF8;
  padding-top: 50px;
  padding-bottom: 30px;
  border-bottom: 3px solid #4AB74A;
}

.structure-box {
  padding-bottom: 30px;
}

.structure-box h3 {
  width: 100%;
  padding: 20px 0;
  color: #069765;
  font-size: 25px;
  position: relative;

}

.structure-box h4 {
  width: 100%;
  border-top: 2px solid #4D2B18;
  border-bottom: 2px solid #4D2B18;
  padding: 15px 0;
  color: #4D2B18;
  margin: 0 auto;
  margin-top: 30px;
}

.structure-box-02 {
  background: #F5FEF8;
  padding-top: 30px;
}

.line {
  border-bottom: solid 2px #069765;
  width: 100%;
  margin: 0 auto;
}

.tokuchou-wrap-flex-02 {
  display: flex;
}



.tokuchou-wrap {
margin: 0 10px;
}

.tokuchou {
  width: 95%;
  max-width: 950px;
  margin: 0 auto;
  text-align: left;
  }

.structure-01-text {
  width: 60%;
}

.nukku .tokuchou-wrap-flex-02 {
  max-width: 950px;
  margin: 0 auto;
}

.nukku-img {
  display: flex;
  flex-direction: column;
}

.tokuchou-text {
  margin: 0 auto;
}

.nukku h4 {
  text-align: center;
  color: #069765;
  border-top: #069765 solid 1px;
   border-bottom: #069765 solid 1px;
}

.nukku .tokuchou-wrap {
  display: flex;
margin: 0 10px;
} 

.nukku .tokuchou-wrap img {
  width: 40%;
} 

.nukku-tokuchou {
  width: 60%;
  margin-left: 10px;
  text-align: left;
}

.structure-img {
  width: 90%;
  margin: 0 auto;
}

.nukku-tokuchou h5 {
font-size: 20px;
font-weight: bold;
border-bottom: #069765 solid 1px;
color: #069765;
padding-bottom: 10px;
}

.nukku .tokuchou-wrap-02 img {
  width: 25%;
}

.tokuchou-wrap-02 .nukku-tokuchou {
  width: 80%;

}

.bray3 .tokuchou-01 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.bray3-01 {
  text-align: left;
  margin-left: 20px;
  position: relative;
}


.bk-04 {
  position: absolute;
  width: 100px;
  top: 0;
  right: 0;
}

.bray3-01 p {
  margin-bottom: 1px;
}

.bray3 img {
  width: 100%;
}




.center {
  margin: 0 auto;
  float: none;
}

.row {
  justify-content: center;
}

.soraene-wrap {
  display: flex;
justify-content: center;
}


.soraene-about {
  width: 40%;
}

.soraene-about-02 {
  width: 40%;
}

.soraene-about img {
  width: 210px;
  height: auto;
}

.soraene-about-02 img {
  width: 257px;
  height: auto;
}

.soraene-wrap p {
  margin-top: 20px;
}

.plus {
  width: 60px;
  padding-top: 100px;
}

.soraenenext {
  display: flex;
 justify-content: center;
}

.soraene-merito {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.soraene-merito img {
  width: auto;
padding: 5px;
}

.tokuchou-wrap-flex {
  display: flex;
}

.kawakku-01 {
  width:22%;
  max-width: 160px;
  padding-left: 10px;
}

.tokuchou-wrap-flex img {
  width: 160px;

}

.kawakku-01-text {
  width: 78%;
  text-align: left;
  margin-left: 15px;
}

.setsubi-tokuchou {
  color: #069765;
  line-height: 2.5;
  font-weight: bold;
}

.setsubi-tokuchou-text {
padding-left: 1rem;
display: block;
}

.nukku-img {
  width: 35%;
}

.nukku .tokuchou-wrap-flex img {
    width: 250px;
}

.nukku-01-text {
  width: 60%;
  text-align: left;
  margin-left: 15px;
}


.structure-label {
  width: 100%;
  height: 50px;
  font-size: 20px;
  background-color: #069765;
  color: #fff;
  line-height: 2.5;
  font-weight: bold;
  text-align: center;
}


.anshin h6 {
  font-size: 18px;
  color: #069765;
  border-bottom: #069765 solid 1px;
  padding-bottom: 5px;
}

.anshin img {
  width: auto;
  height: 140px;
}

.anshin p {
  text-align: left;
}


/*-- structure --*/

.banner {
  width: 90%;
    max-width: 930px;
    margin: 0 auto;
}

/*-- warranty --*/


.warranty {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 60px;
}

.warranty-wrap {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}

.warranty-wrap p {
  padding: 0 5px;
}

.hosyou-label {
  padding: 3px 20px;
  background-color: #de0012;
  color: #fff;
  display: inline-block;
  margin-right: 10px;
  font-size: 17px;
}

/*-- access --*/

.access {
  background: #F5F5F5;
  padding-top: 40px;
  padding-bottom: 50px;
}

.shisetsu {
  padding: 50px 0;
    background-color: #62B462;
}

.shisetsu h4 {
    color: #fff;
}

.shisestu-wrap {
  max-width: 1000px;
  margin: 0 auto;

}

.shisetsu-ctg {
  background-color: #fff;
  color: #333;
  font-weight: bold;
  padding: 5px 0;
  text-align: center;
  font-size: 20px;
}

.shisetsu-syousai {
  width: 100%;
  display: flex;
  justify-content: space-between;
  line-height: 2;
  white-space: nowrap;
  font-size: 16px;
  text-align: left;
     color: #fff;
}

.bukken-info {
  width: 100%;
  height: 700px;
  background-image: url(../images/gaiyou-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
  color: #3A261B;
}

.bukken-gaiyou img {
  width: 80%;
  max-width: 1000px;
}

.sisetsu-wrap {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.sisetsu {
  width: 240px;
  margin: 0 10px;
}

.sisetsu p {
  font-size: 15px;
}

/*-- contact --*/

.contact {
  margin: 0 auto;
  text-align: center;
  background-color: #004B31;
  color: #fff;
  padding: 5% 0;
}

.contact-button img {
  display: block;
}

.contact-button {
  width: 716px;
  flex-direction: column;
  margin: 0 auto;
}

.tel-button:hover {
  opacity: 0.8;
}

.mail-button:hover {
  opacity: 0.8;
}


@media (min-width: 768px) {

  .gaiyou-sp {
    display: none;
  }
}

.tablet-block {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sub-header {
    height: 130px;
  }

  .tablet-none {
    display: none;
  }

  .sub-header-button {
    flex-direction: column;
  }

  .mail {
    margin-top: 15px;
  }

  .logo {
    width: 280px;
    margin-top: -5px;
  }

  .sub-header p {
    margin-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  nav li.has-child ul {
    top: 80px;
  }

  .tablet-block {
    display: block;
  }

  nav ul {
    margin: 0 auto;
  }

  .sub-header {
    height: 110px;
  }

  .sub-header p {
    font-size: 13px;
    margin-top: 0px;
    line-height: 0.8;
  }

  .logo {
    width: 170px;
  }

  nav ul li a {
    padding-top: 15px;

  }

  .has-child {
    padding-top: 15px;
  }

  nav ul {
    height: 80px;
  }
}

@media screen and (max-width: 768px) {
  
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 20px;
  }

  ul {
    padding: 0;
    width: 100%;
  }

  .sp-logo {
    width: 160px;
    position: absolute;
    top: 12%;
    left: 3%;
  }

  .pc-none {
    display: block;

  }

  /* ここから下がハンバーガーメニューに関するCSS */

  .sp-header {
    width: 100%;
    top: 0;
    position: fixed;
    height: 80px;
    background-color: #069765;
    z-index: 9999;
  }

  nav {
    position: relative;
  }

  /* チェックボックスを非表示にする */
  .drawer_hidden {
    display: none;
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 15%;
    right: 5%;
    z-index: 100; /* 重なり順を一番上にする */
    cursor: pointer;
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 2px;
    width: 40px;
    border-radius: 3px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
  }

  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 11px;
  }

  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 11px;
  }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* メニューのデザイン*/
  .nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #E4E4E4;
    transition: 0.5s;
    color: #069765;
    display: block;
    margin-top: 80px;
    padding-top: 50px;
    }

  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
    flex-direction: column;
  }

  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content {
    left: 0; /* メニューを画面に入れる */
  }

  .nav_item {
    height: 55px;
    font-size: 20px;
    padding-bottom: 25px;
    border-bottom: solid 1px #069765;
    text-align: left;

  }

  nav ul li a {
width: 100%;
padding-left: 1em;
    margin: 0 auto;
        color: #069765;
  }

nav ul li a:hover {
  color: #069765;
}

  .nav_item ul {
      height: 150px;

  }

  .nav_item ul li {
    width: 40%;
  }

  .nav-logo img {
    width: 15%;
    margin-bottom: 30px;
  }

  .sp-none {
    display: block;
  }

  #header {
    height: 110px;
  }

  .logo {
    width: 280px;
  }

  .top-button {
    position: fixed;
    top: 14%;
    right: 3%;
    z-index: 9998;
  }

  .mainview {
    height: 550px;
    margin-top: 80px;
  }

  .section-mark {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 3%;
  }

  .concept-wrap h1 {
    font-size: 18px;
    padding: 2% 0;
  }

  .concept-wrap p {
    font-size: 20px;
    padding-top: 3%;
  }


  .concept-logo {
    width: 350px;
    margin: 2% auto;
  }

  .kukaku h3 {
    font-size: 18px;
  }

  .kukaku .address {
    width: 300px;
    margin: 5% auto;
  }

  .tokucho {
    width: 300px;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 5%;
  }

  .tokucho img {
    width: 120px;
    margin-top: 20px;
  }

  .gaiyou {
    width: 100%;
    font-size: 20px;
    color: #069765;
    text-align: center;
    font-weight: bold;
  }

  th {
    width: 300px;
    display: block;
    font-size: 17px;
    background-color: #069765;
    color: #fff;
  }

  td {
    width: 300px;
    display: block;
    font-size: 15px;
  }

  .chuki {
    max-width: 300px;
  }

  .modelhouse h3 {
    font-size: 23px;
  }



  .madori-point-wrap {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  margin-top: 20px;
}

.madori-point {
  width: 300px;
  margin: 0 10px;
  margin-top: 10px;
}


  .tokuchou-wrap {
   flex-direction: column-reverse;
  }

.tokuchou-wrap-flex {
flex-direction: column;
align-items: center;
}

.kawakku-01 {
  width: 60%;
  max-width: 200px;
}

.kawakku-01 img {
    width: 200px;
}

.kawakku-01-text {
  margin-left: 0;
  width: 95%;
}

.nukku-img {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.nukku-02 {
  margin-left: 10px;
}

.tokuchou-wrap-flex-02 {
  flex-direction: column;
}

.nukku .tokuchou-wrap {
  flex-direction: row;
}

.nukku-01-text {
  width: 90%;
  margin-left: 0;
}

.bray3 .tokuchou-01 {
  flex-direction: column;
  align-items: center;
}

.bray3-01 {
  margin-top: 20px;
}

.bray3-01 p {
  margin: 5px 0;
}

.bk-04 {
  width: 80px;
  top: 15px;
}

.anshin {
  width: 80%;
  margin: 0 auto;
}

.tokuchou-wrap-flex-02 .tokuchou-wrap {
  margin-top: 30px;
}

.structure-01-text {
  width: 90%;
}
  .contact {
    padding: 8% 0;
  }

  .contact-sp {
    width: 320px;
    margin: 0 auto;
  }

  .hosyou {
    text-align: center;
  }

  .hosyou img {
    margin-top: 5%;
  }


  .hosyou-label {
    text-align: center;
    padding: 3px 0.4rem;
    white-space: nowrap;
  }

  .hosyou-text {
    text-align: center;
    font-size: 15px;
  }

  .bukken-info {
    width: 100%;
    height: 800px;
  }

  .gaiyou-sp {
    width: 300px;
    margin: 0 auto;
  }

  .land-plan h4 {
    font-size: 25px;
  }

}

img {
  max-width: 100%;
}

.nav {
  font-family: '游明朝体', 'Yu Mincho', 'YuMincho', 'ヒラギノ明朝 Pro',
    'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif;
  font-size: 15px;
}

.kukau-tokuchou div {
  margin-top: 20px;
}

/*-----go to top*/

@media screen and (min-width: 1290px) {
  .move-page-top:hover {
    opacity: 0.85;
  }
}

/*-----go to top end*/

img.loader {
  margin: 20px 0;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mt150 {
  margin-top: 150px;
}

.mt200 {
  margin-top: 200px;
}

.mt250 {
  margin-top: 250px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.pt-1 {
  padding-top: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-3 {
  padding-bottom: 20px;
}

.pt-4 {
  padding-top: 40px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

.ft-bold {
  font-weight: 700;
}

.ft-gold {
  color: #918a6c;
}

.ft-red {
  color: #be2a2a;
}

.ft32 {
  font-size: 32px;
}

.ta-center {
  text-align: center;
}



/*resposive end*/

/*--------------------------------------------*/
/*category01 end*/

/*--------------------------------------------*/
/* innner contents*/

h2.maintitle {
  font-family: serif;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  color: #7c624e;
}

h3.subtitle {
  font-family: serif;
  font-size: 26px;
  text-align: center;
  font-weight: 700;
  color: #a48214;
  /*border-left: solid 5px #752F24;
    background: rgba(255, 255, 255, 0.25);*/
  text-shadow: 2px 2px 6px #fff;
}

h4.subtitle {
  font-family: serif;
  font-size: 18px;
  line-height: 40px;
  text-align: left;
  font-weight: 700;
  color: #752f24;
  border-left: solid 5px #752f24;
  background: rgba(207, 198, 168, 0.65);
  text-shadow: 2px 2px 6px #fff;
  padding-left: 10px;
}

.mincho {
  font-family: 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN',
    'Hiragino Mincho Pro', 'HGP明朝B', serif;
}


/*--------------------------------------------*/
/* innner contents end */

/*--------------------------------------------*/
/*footer*/


.copyright {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 15px;
  text-align: center;
  font-size: 80%;
}

/*--------------------------------------------*/
/*footer end*/

/*--------------------------------------------*/

/*[privacypolicy] end*/

/*--------------------------------------------*/
/*[vegas JQ]*/
#example {
  width: 100%;
  min-height: 800px;
}

/*--------------------------------------------*/
/*[vegas JQ end]*/

/*--------------------------------------------*/


/*--------------------------------------------*/
/*scroll end*/

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
  
  }

  .about-content-02 {
    flex-direction: column-reverse;
    align-items: center;
  }

.about-content-text {
  margin-bottom: 50px;
  height: auto;
}
  
  .about-text {
    margin-left: 0;
  }

  .about-text p {
    width: 280px;
    font-size: 15px;
    text-align: center;
    margin: 0 auto;
    padding-top: 1.5em;
    padding-bottom: 2em;
  }

  .gaiyou {
    flex-direction: column;
    padding-bottom: 20px;
    margin-top: 30px;
  }

  .gaiyou-left {
    margin: 0 auto;
    margin-bottom: 3%;
  }

  .gaiyou-left img {
    width: 80%;
  }

  .gaiyou-right {
    text-align: center;
  }

  .gaiyou-right h1 {
    width: 350px;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
    padding-bottom: 5px;
  }

  .gaiyou-text {
    font-size: 16px;
  }


  a .buttton {
    color: inherit;
  }

}


@media screen and (max-width: 540px) {

  .about h2 {
    font-size: 28px;
    margin-top: 20px;
  }

  .about-copy {
    font-size: 20px;
  }

  .yoyaku {
    font-size: 22px;
    display: flex;
    justify-content: center;
  }

  .yoyaku::after {
    margin-left: 5px;
    margin-top: 3px;
  }

  .siyou-area {
  background: url(../images/siyou-sp.png);
}

.siyou p {
  width: 100%;
  text-align: center;
 }

 .siyou {
  width: 90%;
  min-width: 200px;
  max-width: 370px;
  line-height: 1.8;

}

.madori-text {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
}

.madori-text br {
  display: none;
  
}


.modelplan p {
  font-size: 27px;
}

.tokuchou-wrap-flex-02 {
  flex-direction: column;
}

 .soraene-wrap {
  flex-direction: column;
  align-items: center;
 }

  .soraene-about {
    width: 100%;
  }

  .soraene-about-02 {
    width: 100%;
  }

  .plus {
    padding: 20px 0;
  }

  .structure-wrap {
  padding-bottom: 50px;
}

.structure-box h3 {
  font-size: 20px;
}

.siyou-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.siyou-01,.siyou-02 {
  width: 90%;
  max-width: 350px;
  align-items: center;
}

.siyou-02 {
  margin-top: 8px;
}

.tokuchou-wrap-flex-02 .tokuchou-wrap {
  flex-direction: column;
  align-items: center;
}

.nukku-tokuchou {
  margin-left: 0;
width: 90%;
}

.nukku-tokuchou h5 {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
}

.nukku .tokuchou-wrap-02 {
 flex-direction: column;
  align-items: center;
}

.nukku .tokuchou-wrap-02 img {
  width: 50%;
}

.tokuchou-wrap-02 .nukku-tokuchou {
  width: 100%;
}



.sisetsu {
  width: 180px;
  margin: 0 10px;
}

.sisetsu p {
  font-size: 14px;
}
 
}



@media screen and (max-width: 400px) {

.sisetsu {
  width: 160px;
  margin: 0 10px;
}

}
