@charset "utf-8";

/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

/* 10px */
body {
  width: 100%;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

img {
  width: 100%;
  height: auto;
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
}

a:link {
  color: #333;
  text-decoration: none;
}

a:visited {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #8b8b8b;
  text-decoration: none;
}

a:active {
  color: #8b8b8b;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1em;
}

.only_pc_none {
  display: none;
}
.only_sp_none {
  display: block;
}
.sp_br {
  display: none;
}

/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*---------------------------------------------
 ** メイン＋ナビ
---------------------------------------------*/
#header {
  position: relative;
  height: 100%;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5%;
}

#header ul {
  z-index: 0;
}

nav {
  width: 100%;
  background: #0000006c;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.5%;
  color: #fff;
}
nav > div {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
nav > div > div {
  width: 95%;
  max-width: 1200px;
  display: flex;
  margin: 0 auto;
}
nav > div > div h1 {
  width: 25%;
  background: url(../img/logo01.png) no-repeat left 2% top 12px;
  background-size: 140px auto;
  padding: 24px 0 10px 150px;
  color: #fff;
  font-size: 80%;
  box-sizing: border-box;
  text-align: left;
}
nav > div > div h1 a {
  color: #fff !important;
  display: block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1200px) {
  nav > div > div h1 {
    width: 220px;
    background: url(../img/logo01.png) no-repeat left 2% top 5px;
    background-size: 140px auto;
    font-size: 60%;
    padding: 40px 0 0px 30px;
  }
}
nav > div > div > div {
  width: calc(100% - 220px);
}
nav > div > div > div ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav > div > div > div ul li {
  width: 20%;
  box-sizing: border-box;
  border-left: 1px solid #fff;
  text-align: center;
  margin: 2% 0 1.5%;
}
nav > div > div > div ul li:last-child {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 1220px) {
  nav > div > div > div ul li {
    width: 20%;
    margin: 2% 0 1.5%;
  }
}

nav > div > div > div ul li a {
  text-align: center;
  color: #fff;
  display: inline-block;
  padding: 3px;
  letter-spacing: 0.1em;
  font-size: 110%;
  box-sizing: border-box;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
nav > div > div > div ul li a:link,
nav > div > div > div ul li a:visited {
  color: #fff;
  border-bottom: 2px solid #fff0;
}
nav > div > div > div ul li a:hover,
nav > div > div > div ul li a:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  nav > div > div > div ul li a {
    text-align: center;
    color: #fff;
    display: inline-block;
    padding: 3px;
    letter-spacing: 0;
    font-size: 90%;
    box-sizing: border-box;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
}

/*---------------------------------------------
 ** 共通
---------------------------------------------*/

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}
.load-fade {
  opacity: 0;
  transition: all 4s /*処理にかかる時間*/;
}
.load-up {
  opacity: 0;
  transform: translateY(30px) /*スクロールアップする距離*/;
  transition: all 4s /*処理にかかる時間*/;
}
.load-up.done,
.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

.scrollanime {
  opacity: 0;
} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
  animation-name: fadeInDown;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  transform: translateY(-50px);
}
.downup {
  transform: translateY(50px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
} /*横スクロールバーを隠す*/
.slide-right {
  transform: translateX(100px);
}
.slide-left {
  transform: translateX(-100px);
}

h2 {
  text-align: center;
  margin-bottom: 7%;
  font-family: "Noto Serif JP", serif;
}

h2 span {
  font-size: 200%;
  display: inline-block;
  margin: 0 auto;
  text-align: left;
  letter-spacing: 0.1em;
}

section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 7%;
  overflow: hidden;
  text-align: center;
}
.btn_con a {
  width: 90%;
  border: 1px solid #998688;
  background: #99beac;
  color: #fff;
  font-size: 240%;
  letter-spacing: 0.4em;
  text-align: center;
  margin: 0 auto;
  padding: 50px 0;
  display: block;
}
.btn_con a:hover {
  background: #69ab8b;
}

#lower_main {
  width: 70%;
  max-width: 600px;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 3% 5%;
  box-sizing: border-box;
  background: #ffffffb8;
}
#lower_main h2 {
  display: inline-block;
  text-align: center;
  font-size: 160%;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
#lower_main p {
  font-size: 110%;
  font-weight: 500;
}

#lower h3 {
  font-size: 200%;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 3%;
}
#lower h3 span {
  display: inline-block;
  margin: 0 auto;
}
#lower h3 + img {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 3%;
}
.read {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 5%;
  text-align: left;
}

.dl_col3 {
  display: flex;
  flex-wrap: wrap;
}
.dl_col3 dl {
  width: 31%;
  margin-right: 3.5%;
}
.dl_col3 dl:nth-child(3n) {
  margin-right: 0;
}
.dl_col3 dl dd {
  font-size: 90%;
  line-height: 1.4;
  margin: 2% 0 10%;
  text-align: left;
}
.dl_col3 dl dd span {
  font-weight: 500;
}

/*---------------------------------------------
 ** トップページ
---------------------------------------------*/

#top_main {
  width: 70%;
  max-width: 500px;
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 3% 5%;
  box-sizing: border-box;
  background: #ffffff9e;
  font-family: "Noto Serif JP", serif;
}
#top_main p:nth-of-type(1) span {
  display: inline-block;
  background: url(../img/icon01.png) no-repeat center left;
  background-size: 35px auto;
  padding: 10px 0 10px 45px;
  font-weight: 500;
}
#top_main img {
  max-width: 240px;
  margin-bottom: 5%;
}
#top_main p {
  margin-bottom: 0;
}
#top_main p:nth-of-type(2) span {
  display: inline-block;
  border: 1px solid #000;
  padding: 3px 7%;
  font-size: 90%;
  letter-spacing: 0.1em;
}

.top_con section > div:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
}
.top_con section > div:nth-of-type(1) p {
  width: 180px;
  background: url(../img/icon01.png) no-repeat left 30px top 20px;
  background-size: 40px auto;
  padding: 10px 0 5px 85px;
  box-sizing: border-box;
  font-size: 130%;
  font-weight: 500;
  color: #868687;
  letter-spacing: 0.1em;
}
.top_con section > div:nth-of-type(1) h3 {
  width: calc(100% - 180px);
  font-size: 200%;
  letter-spacing: 0.1em;
  border-left: 1px solid #333;
  padding-left: 3%;
  box-sizing: border-box;
  padding-bottom: 0.7em;
  font-family: "Noto Serif JP", serif;
  text-align: left;
}
.top_con section > div:nth-of-type(2) {
  position: relative;
}
.top_con section > div:nth-of-type(2).cap01::before {
  content: "Area Value";
  color: #fff;
  font-size: 200%;
  letter-spacing: 0.03em;
  line-height: 1em;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
}
.top_con section > div:nth-of-type(2).cap02::before {
  content: "Architecture";
  color: #fff;
  font-size: 200%;
  letter-spacing: 0.03em;
  line-height: 1em;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
}

.top_con section.top_map > div:nth-of-type(1) p {
  width: 260px;
  background: url(../img/icon01.png) no-repeat left 30px top 20px;
  background-size: 40px auto;
  padding: 10px 0 5px 85px;
  box-sizing: border-box;
  font-size: 130%;
  font-weight: 500;
  color: #868687;
  letter-spacing: 0.1em;
}
.top_con section.top_map > div:nth-of-type(1) h3 {
  width: calc(100% - 260px);
  font-size: 200%;
  letter-spacing: 0.1em;
  border-left: 1px solid #000;
  padding-left: 3%;
  box-sizing: border-box;
  padding-bottom: 0.7em;
}
.top_map iframe {
  width: 100%;
  height: 500px;
}

/*---------------------------------------------
 ** くらし
---------------------------------------------*/
.life_data {
  width: 90%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 5%;
}
.life_data > div {
  width: 30%;
  text-align: left;
  margin-top: 1%;
}
.life_data > div p {
  font-weight: 500;
  margin-bottom: 0;
}
.life_data > div ul {
  font-size: 90%;
  margin-bottom: 7%;
}

.shirononishi {
  width: 90%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.shirononishi a {
  width: 48%;
}

/*---------------------------------------------
 ** はらっぱ
---------------------------------------------*/

.history {
  width: 100%;
  position: relative;
  font-size: 140%;
  background-color: #e5eff0;
  padding: 10px 0 10px 27%;
  box-sizing: border-box;
  font-weight: 500;
  margin: 3% auto 10%;
}
.history p {
  margin-bottom: 0;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 900px;
  padding: 30px 60px;
  background-color: #e5eff0;
  box-sizing: border-box;
}
.modalWrapper h3 {
  font-size: 160% !important;
  font-family: "Noto Sans JP", sans-serif !important;
}
.modalWrapper p {
  font-size: 100% !important;
  text-align: left;
}
.modalWrapper p:last-child {
  text-align: right;
  font-size: 90% !important;
  color: #666666;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  font-size: 180% !important;
}

/* 以下ボタンスタイル */
button {
  padding: 10px;
  background-color: #e5eff0;
  border-radius: 2px;
  cursor: pointer;
  box-sizing: border-box;
  display: inline-block;
  border: none !important;
  color: #137fc3;
  font-size: 90%;
  position: relative;
}

#openModal {
  position: absolute;
  top: 10%;
  right: 20%;
}

@media screen and (max-width: 1000px) {
  .history {
    padding: 10px 0 10px 20%;
  }
  #openModal {
    right: 15%;
  }
}
@media screen and (max-width: 870px) {
  .history {
    padding: 10px 0 10px 15%;
  }
  #openModal {
    right: 15%;
  }
}
.gallery {
  text-align: left;
}
.gallery h3 {
  width: 90%;
  font-size: 160% !important;
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: left !important;
  background: url(../img/icon01.png) no-repeat top 10px left;
  background-size: 40px auto;
  padding-left: 50px;
  box-sizing: border-box;
  margin: 0 auto 1% !important;
}
.g_switch {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto 1%;
}
.gallery .mainImage,
.gallery .mainImage2,
.gallery .mainImage3,
.gallery .mainImage4,
.gallery .mainImage5 {
  width: 80%;
}

.gallery .thumbnails,
.gallery .thumbnails2,
.gallery .thumbnails3,
.gallery .thumbnails4,
.gallery .thumbnails5 {
  width: 19%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: distribute;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
}

.gallery .thumbnails img,
.gallery .thumbnails2 img,
.gallery .thumbnails3 img,
.gallery .thumbnails4 img,
.gallery .thumbnails5 img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 4.5%;
}

.gallery .thumbnails img:hover,
.gallery .thumbnails2 img:hover,
.gallery .thumbnails3 img:hover,
.gallery .thumbnails4 img:hover,
.gallery .thumbnails5 img:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
.gallery p {
  width: 90%;
  margin: 0 auto;
}

/*---------------------------------------------
 ** 間取り
---------------------------------------------*/
.wide_img {
  margin: -4% 0 7%;
}
.plan_galle ul {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.plan_galle ul li {
  width: 19%;
  margin-right: 1.25%;
  margin-bottom: 1.25%;
}
.plan_galle ul li:nth-child(5n) {
  margin-right: 0;
}

.madori_data {
  max-width: 1100px;
  margin: 0 auto 5%;
}
.madori_data h4 {
  text-align: left;
  font-size: 220%;
  color: #998675;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  padding-left: 5px;
  box-sizing: border-box;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.madori_data h4 span {
  font-size: 140%;
  display: inline-block;
  color: #534741;
  font-weight: 700;
}
.madori_data h4 span::after {
  content: "TYPE";
  display: inline-block;
  font-size: 50%;
  margin-left: 10px;
  margin-right: 30px;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
}
.madori_data > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  text-align: left;
}
.madori_data > div > div {
  width: 49%;
}
.madori_data > div > div:nth-child(1) p {
  font-size: 90%;
  margin-top: 8px;
}
.family {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2% !important;
}
.family h3 {
  background: #e6f0f1;
  padding: 4% 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 300;
  margin-bottom: 7% !important;
}
.family div {
  border-bottom: 15px solid #e6f0f1;
  margin-bottom: 5%;
}
.family div dl {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 5%;
  text-align: left;
}
.family div dl dt {
  margin-bottom: 2%;
  display: block;
}
.family div dl dt span {
  font-size: 140%;
}
.family div:nth-of-type(1) dl dd {
  font-size: 110%;
  background: url(../img/plan/family01.png) no-repeat right bottom 10%;
  background-size: 24% auto;
  padding-right: 28%;
  box-sizing: border-box;
}
.family div:nth-of-type(2) dl dd {
  font-size: 110%;
  background: url(../img/plan/family02.png) no-repeat right bottom 10%;
  background-size: 24% auto;
  padding-right: 28%;
  box-sizing: border-box;
}
.plan_tbl {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.plan_tbl th {
  width: 240px;
  box-sizing: border-box;
  border: 1px solid #231815;
  font-weight: 300;
  background: #dce5dc;
  padding: 10px 6%;
  text-align-last: justify; /* Chrome・Firefox用 */
  text-justify: inter-ideograph;
}
.plan_tbl td {
  width: calc(100% - 240px);
  box-sizing: border-box;
  border: 1px solid #231815;
  padding: 10px 20px;
  text-align: left;
}
.plan_tbl td li {
  text-indent: -1em;
  margin-left: 1em;
}

/*---------------------------------------------
 ** お問い合わせ
---------------------------------------------*/
.company {
  max-width: 900px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 7% auto 0;
  gap: 30px;
}
.company dl {
  width: 48%;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 160%;
  font-weight: 500;
}
.company dl dt a,
.company dl dt span {
  display: block;
  border: 1px solid #b3b3b3;
  background: #f2f2f2;
  padding: 30px 10px;
  box-sizing: border-box;
  margin-bottom: 1%;
}
.faq {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.faq dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3%;
  text-align: left;
}

.faq dl dt {
  width: 47%;
  box-sizing: border-box;
  padding: 15px 4%;
  display: block;
  background-color: #e6f0f1;
  position: relative;
  min-height: 85px;
}
.faq dl dt::after {
  content: "";
  width: 25px;
  height: 35px;
  display: block;
  background: url(../img/contact/arrow.png) no-repeat top left;
  background-size: 100% auto;
  position: absolute;
  top: 40%;
  right: -9%;
  margin: 0 auto;
}
.faq dl dt::before {
  content: "";
  width: 7%;
  height: 40px;
  display: block;
  background: url(../img/contact/icon_q.png) no-repeat top left;
  background-size: 100% auto;
  position: absolute;
  top: -10px;
  left: -10px;
}
.faq dl dd {
  width: 47%;
  box-sizing: border-box;
  padding: 15px 4%;
  display: block;
  background-color: #fdeff5;
  position: relative;
  min-height: 85px;
}
.faq dl dd::before {
  content: "";
  width: 7%;
  height: 40px;
  display: block;
  background: url(../img/contact/icon_a.png) no-repeat top left;
  background-size: 100% auto;
  position: absolute;
  top: -10px;
  left: -10px;
}

/*---------------------------------------------
 **  フッター
---------------------------------------------*/

footer {
  background: #c5b097;
  padding: 2% 2% 1%;
  color: #fff;
  text-align: center;
}
footer ul {
  margin: 0 auto 2%;
  display: flex;
  justify-content: center;
}
footer ul li:first-child a {
  border-left: 1px solid #fff;
}
footer ul li a {
  padding: 0 30px;
  border-right: 1px solid #fff;
  display: inline-block;
  letter-spacing: 0.05em;
  font-size: 110%;
  line-height: 1.4;
}
footer ul li a:link,
footer ul li a:visited {
  color: #fff;
}

footer ul li a:hover,
footer ul li a:active {
  color: #665c5d;
}
footer h2 {
  background: url(../img/logo01.png) no-repeat center top;
  background-size: 150px auto;
  padding: 38px 0 0;
  font-size: 90%;
  margin-bottom: 10px;
}

.add {
  margin-bottom: 0;
}
#copy {
  color: #fff;
  text-align: center;
  font-size: 80%;
}
#pageTop {
  position: fixed;
  bottom: 0;
  right: 0px;
  z-index: 999;
}

#pageTop a {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../img/page_top.jpg) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

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