@charset "UTF-8";
/* CSS Document */

/* cssのリセット */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

/* imgタグのリセット */
img {
  vertical-align: bottom;
}

@media screen and (max-width: 1020px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

li {
  list-style: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  background-color: #ffffff;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #333333;
  font-family: "Lucida Grande", "segoe UI", "ヒラギノ角ゴ  ProN",
    "Hiragino Kaku Gothic  ProN", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 90px;
}

@media screen and (max-width: 768px) {
  .inner {
    margin: 0 auto;
    padding: 0 25px;
  }
}

/*PCでは無効（改行しない）*/
.txtsp {
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width: 768px) {
  .txtsp {
    display: block;
  }
}

/* スクロール時ヘッダー分を引く */
#access,
#intro,
#plat,
#vendor,
#footer {
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  #access,
  #intro,
  #plat,
  #vendor,
  #footer {
    padding-top: 80px;
    margin-top: -80px;
  }
}
@media screen and (max-width: 600px) {
  #access,
  #intro,
  #plat,
  #vendor,
  #footer {
    padding-top: 60px;
    margin-top: -60px;
  }
}

/* ヘッダー_ここから */
header {
  position: fixed;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0px 40px 30px 40px;
  z-index: 99;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 1050px) {
  header {
    height: 80px;
    align-items: center;
    padding: 0px 40px 0px 40px;
  }
}
@media screen and (max-width: 600px) {
  header {
    height: 60px;
  }
}

.shadow {
  box-shadow: 0 0 8px gray;
}

.header_logo {
  width: 21%;
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 40%;
  }
}

.header_logo img {
  display: block;
  width: 100%;
  min-width: 150px;
  transition: all 0.2s ease-in;
}
.header_logo img:hover {
  opacity: 0.5;
}

header ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  top: 5px;
}
@media screen and (max-width: 1300px) {
  header ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  header ul {
    gap: 1.2rem;
  }
}

/* ハンバーガーボタン表示とともに消える設定 */
@media screen and (max-width: 1050px) {
  header ul {
    display: none;
  }
}

header ul li a {
  font-size: 0.8rem;
  text-decoration: none;
  color: #000000;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 1200px) {
  header ul li a {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 1080px) {
  header ul li a {
    font-size: 0.65rem;
  }
}
@media screen and (max-width: 800px) {
  header ul li a {
    font-size: 0.5rem;
  }
}

header ul li a:hover {
  opacity: 0.5;
}

.header_btn {
  display: none;
  font-size: 0;
}

/* ハンバーガーボタンがレスボンシブで出る設定 */
@media screen and (max-width: 1050px) {
  .header_btn {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 30px;
    cursor: pointer;
  }
}

.btn_top,
.btn_middle,
.btn_bottom {
  position: absolute;
  display: block;
  width: 80%;
  height: 1px;
  transition: 0.4s;
}

.btn_top {
  transform: translateY(-5px);
  background: #000000;
}

.btn_middle {
  background: #000000;
}
.btn_bottom {
  transform: translateY(5px);
  background: #000000;
}

/* 資料請求ボタン（PC）細かい設定 ここから */
.request__btn-pc a {
  position: relative;
  min-width: 110px;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #c75a52;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in;
  padding: 10px 22px 10px 10px;
}
@media screen and (max-width: 1050px) {
  .request__btn-pc a {
    min-width: 110px;
  }
}

.request__btn-pc a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  right: 10px;
  bottom: 0;
  margin: auto;
}

.request__btn-pc a:hover {
  opacity: 0.5;
}
/* 資料請求ボタン（PC）ここまで */

/* 公開モデルハウスボタン（PC）細かい設定 ここから */
.modelhouse__btn-pc a {
  position: relative;
  min-width: 110px;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #202020;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in;
  padding: 10px 22px 10px 10px;
}
@media screen and (max-width: 1050px) {
  .modelhouse__btn-pc a {
    min-width: 110px;
  }
}

.modelhouse__btn-pc a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  right: 10px;
  bottom: 0;
  margin: auto;
}

.modelhouse__btn-pc a:hover {
  opacity: 0.5;
}
/* 資料請求ボタン（PC）ここまで */


/* ヘッダー_ここまで */

/* ハンバーガーここから */
.hamburger_nav {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: 0.4s;
  background-color: #ffffff;
  opacity: 0.9;
  z-index: 80;
}
@media screen and (max-width: 600px) {
  .hamburger_nav {
    top: 60px;
  }
}

.hamburger_list {
  border-bottom: 1px solid #8d8985;
  transition: all 0.2s ease-in;
}
.hamburger_list:hover {
  background-color: #8d8985;
}

.hamburger_link {
  color: #202020;
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 35px;
  width: 100vw;
  text-align: center;
  transition: all 0.2s ease-in;
}
.hamburger_link:hover {
  color: #ffffff;
  box-shadow: 0 0 2px #202020;
}

.hideMiddle {
  opacity: 0;
  transform: translateX(100%);
}
.rotateTop {
  transform: rotate(45deg);
}
.rotateBottom {
  transform: rotate(-45deg);
}
.translateNav {
  transform: translateX(0%);
}

/* ハンバーガーここまで */

/* mv_ここから */
/* mv_ここから */
.mv {
  width: 100%;
  height: 100%;
  padding-top: 130px;
  margin-bottom: 120px;
  animation: 0s mv 0.5s linear forwards;
  animation-duration: 1.5s;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .mv {
    padding-top: 60px;
  }
}

@keyframes mv {
  100% {
    opacity: 1;
  }
}

.mv_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .mv_sp {
    display: block;
  }
  .mv_pc {
    display: none;
  }
}

/* MV画像ここから */

/* MV画像 PC */
.mv_image_pc {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  isolation: isolate;
}

.mv_image_pc > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MV画像 SP */
.mv_image_sp {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  isolation: isolate;
}

.mv_image_sp > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 木漏れ日・ひだまりエフェクト */
.mv_hidamari {
  position: absolute;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  filter: blur(10px);
  opacity: .7;
  will-change: opacity, transform;
}

.mv_hidamari--01 {
  background:
    radial-gradient(circle at 18% 25%, rgba(255,255,230,.35) 0 5%, transparent 16%),
    radial-gradient(circle at 42% 18%, rgba(255,230,150,.55) 0 6%, transparent 18%),
    radial-gradient(circle at 72% 35%, rgba(255,255,255,.65) 0 5%, transparent 15%);
  animation: komorebi01 7.8s cubic-bezier(.45,.05,.25,1) infinite;
}

.mv_hidamari--02 {
  background:
    radial-gradient(circle at 25% 70%, rgba(255,235,160,.35) 0 7%, transparent 20%),
    radial-gradient(circle at 55% 58%, rgba(255,255,230,.55) 0 6%, transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(255,220,120,.15) 0 7%, transparent 22%);
  animation: komorebi02 11.3s cubic-bezier(.35,.05,.2,1) infinite;
  animation-delay: 1.4s;
}

@media screen and (max-width: 600px) {
  .mv_hidamari--01 {
    inset: -18% -35% 10% -5%;
    opacity: .55;
  }

  .mv_hidamari--02 {
    inset: auto auto 0 -18%;
    width: 75%;
    height: 45%;
    opacity: .65;
    background:
      radial-gradient(circle at 18% 76%, rgba(255,235,160,.4) 0 12%, transparent 42%),
      radial-gradient(circle at 38% 58%, rgba(255,255,230,.42) 0 10%, transparent 38%),
      radial-gradient(circle at 8% 92%, rgba(255,220,120,.16) 0 12%, transparent 45%);
    animation: komorebi02Sp 12.7s cubic-bezier(.35,.05,.2,1) infinite;
    animation-delay: -5.2s;
  }
}

@keyframes komorebi01 {
  0%, 100% {
    opacity: .12;
    transform: translate(0, 0) scale(1);
  }

  18% {
    opacity: .45;
    transform: translate(1%, -1%) scale(1.03);
  }

  46% {
    opacity: .82;
    transform: translate(2%, -2%) rotate(2deg) scale(1.08);
  }

  73% {
    opacity: .28;
    transform: translate(5%, 3%) scale(1.15);
  }
}

@keyframes komorebi02 {
  0%, 100% {
    opacity: .08;
    transform: translate(0, 0) scale(.98);
  }

  8% {
    opacity: .18;
    transform: translate(-2%, 1%) scale(1.02);
  }

  61% {
    opacity: .92;
    transform: translate(-3%, 2%) scale(1.12);
  }

  88% {
    opacity: .32;
    transform: translate(2%, -4%) scale(1.18);
  }
}

@keyframes komorebi02Sp {
  0%, 100% {
    opacity: .12;
    transform: translate(0, 0) scale(.95);
  }

  24% {
    opacity: .32;
    transform: translate(2%, -4%) scale(1.03);
  }

  58% {
    opacity: .7;
    transform: translate(5%, -8%) rotate(-2deg) scale(1.12);
  }

  86% {
    opacity: .24;
    transform: translate(1%, -2%) scale(1.02);
  }
}

/* PCのテキスト */
.mv_ttl_wrapper_pc {
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 2;
}

.mv_text_pc {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 2.3;
  gap: 1em;
  background-color: white;
  padding: 3px 19px;
}
@media screen and (max-width: 1000px) {
  .mv_text_pc {
    font-size: 20px;
  }
}
@media screen and (max-width: 700px) {
  .mv_text_pc {
    font-size: 17px;
  }
}

.mv_description_pc {
  margin-top: 20px;
}

.mv_description_pc p {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 0;
  line-height: 1.8;
  font-size: 1.2rem;
  color: #000000;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.7),
    1px 0 1px rgba(255, 255, 255, 0.7), -1px 0 1px rgba(255, 255, 255, 0.7),
    0 1px 1px rgba(255, 255, 255, 0.7), 0 -1px 1px rgba(255, 255, 255, 0.7),
    0 0 5px rgba(255, 255, 255, 0.95), 0 0 5px rgba(255, 255, 255, 0.95),
    0 0 10px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.7),
    0 0 40px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.6),
    0 0 50px rgba(255, 255, 255, 0.5), 0 0 60px rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 1000px) {
  .mv_description_pc p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .mv_description_pc p {
    font-size: 12px;
  }
}

/* SPのテキスト */
.mv_ttl_wrapper_sp {
  position: absolute;
  top: 8%;
  left: -65%;
  width: 100%;
  display: flex;
  height: auto;
  z-index: 2;
  flex-direction: row-reverse;
  gap: 15px;
}
@media screen and (max-width: 500px) {
  .mv_ttl_wrapper_sp {
    left: -60%;
  }
}
@media screen and (max-width: 420px) {
  .mv_ttl_wrapper_sp {
    left: -50%;
  }
}

body.is-safari .mv_ttl_wrapper_sp {
  gap: 35px;
  left: -70%;
  top: 8%;
}
@media screen and (max-width: 420px) {
  body.is-safari .mv_ttl_wrapper_sp {
    left: -60%;
  }
}

.mv_text_sp {
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  background-color: white;
  padding: 10px 2px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 420px) {
  .mv_text_sp {
    font-size: 15px;
  }
}

.mv_description_sp {
  padding: 30px;
  margin: 0 auto 10px;
  text-align: center;
}

.mv_description_sp p {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
  margin-bottom: 0;
  line-height: 2.2;
  font-size: 1.2rem;
  color: #000000;
}
@media screen and (max-width: 600px) {
  .mv_description_sp p {
    font-size: 1rem;
  }
}

.mv_banner {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* MV画像ここまで */
/* mv_ここまで */

/* アクセスmap_ここから*/
section.map {
  background-color: #ffffff;
  margin-bottom: 100px;
}

section.map .inner img {
  display: block;
  width: 100%;
}

/* ライフインフォメーションテキスト_ここから*/
.intro {
  padding-bottom: 10%;
}

.information {
  background-color: #ffffff;
  width: 100%;
  padding-bottom: 5%;
}

.information_inner {
  display: flex;
  flex-direction: column;
  gap: 45px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.information_container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.information_sub {
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: bold;
  margin-left: 0.3rem;
}
@media screen and (min-width: 500px) {
  .information_sub {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 650px) {
  .information_sub {
    font-size: 20px;
    margin-bottom: 15px;
    margin-left: 0rem;
  }
}

.information_list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
  width: 100%;
}

.information_list dt,
.information_list dd {
  box-sizing: border-box;
}

.information_list dt {
  font-size: 13px;
  display: flex;
  align-items: center;
  width: 66.2%;
  margin-left: 1.8%;
  padding: 10px 0px;
  border-bottom: 1px solid #999;
}
@media screen and (min-width: 440px) {
  .information_list dt {
    width: 61.2%;
    /* margin-left: 0%; */
  }
}
@media screen and (min-width: 500px) {
  .information_list dt {
    font-size: 15px;
    width: 61.2%;
  }
}
@media screen and (min-width: 650px) {
  .information_list dt {
    font-size: 20px;
    width: 64%;
    margin-left: 0%;
  }
}

.information_list dd {
  font-size: 13px;
  display: flex;
  align-items: center;
  width: 30.2%;
  margin-right: 1.8%;
  padding: 10px 0px;
  border-bottom: 1px solid #969696;
  line-height: 1.1rem;
}
@media screen and (min-width: 440px) {
  .information_list dd {
    width: 35.2%;
    margin-right: 1.8%;
    line-height: normal;
  }
}
@media screen and (min-width: 500px) {
  .information_list dd {
    font-size: 15px;
    width: 35.2%;
  }
}
@media screen and (min-width: 650px) {
  .information_list dd {
    font-size: 20px;
    width: 36%;
    margin-right: 0%;
  }
}

.sp_br-dd {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp_br-dd {
    display: none;
  }
}

/* ライフインフォメーションテキスト_ここまで*/

/* ライフインフォメーション画像_ここから*/
section.intro {
  background-color: #ffffff;
}

section.intro article {
  display: flex;
  justify-content: space-between;
  margin: 0 0 60px;
}

section.intro dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 1em;
}

section.intro ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}

section.intro ul li {
  max-width: 350px;
  width: 31%;
  margin: 0 0 30px;
  font-size: 0.9rem;
}

section.intro ul li img {
  display: block;
  max-width: 350px;
  width: 100%;
  margin: 0 0 10px;
}

@media screen and (max-width: 768px) {
  section.intro ul li {
    max-width: 380px;
    width: 49%;
    font-size: 0.7rem;
  }

  section.intro ul li img {
    max-width: 380px;
  }
}
/* ライフインフォメーション_ここまで*/

/*区画図 intro ここから*/
.plat {
  width: 100%;
  margin: 0 auto;
  margin-top: 10%;
}

.plat .inner {
  padding-bottom: 90px;
	
}

/* キャプション文章 */
.plat__ttlbox {
  width: 100%;
  padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
.plat__ttlbox {
  padding-bottom: 20px;
}
}



.plat__ttltxt {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 2rem;
}
@media screen and (max-width: 815px) {
  .plat__ttltxt {
    font-size: 1rem;
  }
}


.plat__wrapper {
  position: relative;
}

.plat img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: block;
}

.plat_container {
  position: absolute;
  bottom: 15%;
}

@media screen and (max-width: 768px) {
  .plat_container {
    position: static;
    margin: 50px auto;
    text-align: center;
  }
}

.plat__br {
  display: block;
}
@media screen and (max-width: 768px) {
  .plat__br {
    display: none;
  }
}

.plat__txt {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2em;
}
@media screen and (max-width: 850px) {
  .plat__txt {
    font-size: 1.2rem;
    line-height: 1.8em;
  }
}
@media screen and (max-width: 400px) {
  .plat__txt {
    font-size: 1.1rem;
    line-height: 1.7em;
  }
}

.plat__btn {
  text-align: center;
  margin-top: 50px;
}
.plat__btn a {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  width: 50%;
  min-width: 250px;
  color: #ffffff;
  background-color: #8d8985;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-in;
  padding: 15px 15px 15px 0px;
}
@media screen and (max-width: 768px) {
  .plat__btn a {
    font-size: 1rem;
  }
}
.plat__btn a:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  right: 20px;
  bottom: 0;
  margin: auto;
}

.plat__btn a:hover {
  opacity: 0.5;
}

/*トップの区画図ボタン*/
.topplat a {
  text-decoration: none;
  color: #202020;
  font-size: 2.5vw;
}
@media screen and (min-width: 700px) {
  .topplat a {
    font-size: 12px;
  }
}

@media screen and (min-width: 900px) {
  .topplat a {
    font-size: 14px;
  }
}

.plat_list {
  transition: 0.3s ease-in-out;
  line-height: 0;
  padding-bottom: 1.1vw;
}
@media screen and (min-width: 700px) {
  .plat_list {
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 768px) {
  .plat_list {
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 900px) {
  .plat_list {
    padding-bottom: 8px;
  }
}
@media screen and (min-width: 980px) {
  .plat_list {
    padding-bottom: 10px;
  }
}

.plat_list:hover {
  opacity: 0.5;
}

.plat_list::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5.2vw;
  height: 2.2vw;
  margin-right: 0.8vw;
}
@media screen and (min-width: 900px) {
  .plat_list::before {
    width: 45px;
    height: 20px;
    margin-right: 8px;
  }
}

/*区画図  intro ここまで*/

/* vendor（販売提携）ここから */
section.vendor {
  padding: 100px 0;
  margin-bottom: 60px;
}

.section__container {
  text-align: center;
  padding-bottom: 50px;
}

.section__ttl {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  line-height: 1.5em;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 768px) {
  .section__ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 410px) {
  .section__ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 345px) {
  .section__ttl {
    font-size: 1.1rem;
  }
}

/* 販売代理ハウスメーカー一覧の下のキャプション文章 */
.vendor__box {
  width: 100%;
  padding-bottom: 70px;
}

.vendor__txt {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 2rem;
}
@media screen and (max-width: 815px) {
  .vendor__txt {
    font-size: 1rem;
  }
}

section.vendor .contVendor {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

section.vendor .contVendor article {
  width: 48%;
  margin: 0 0 30px;
  padding: 2px 0 2px 18px;
  border-left: 10px solid;
  border-color: #e7e1dc;
}

/* 概要の設定 */
/*PCでは無効（改行する）*/
.overviewsp {
  display: block;
}

/*スマートフォンでは有効（改行しない）*/
@media screen and (max-width: 768px) {
  .overviewsp {
    display: none;
  }
}

/*PCでは有効（改行しない）*/
.overviewpc {
  display: none;
}

/*スマートフォンでは無効（改行しない）*/
@media screen and (max-width: 600px) {
  .overviewpc {
    display: block;
  }
}

.overviewpc02 {
  display: none;
}

/*スマートフォンでは無効（改行しない）*/
@media screen and (max-width: 520px) {
  .overviewpc02 {
    display: block;
  }
}

.overview {
  font-size: 15px;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  line-height: 1.6rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .overview {
    font-size: 13px;
    font-weight: 400;
    margin-top: 50px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    line-height: 1.4rem;
  }
}

/* 各社線の色設定 */

.universal {
  border-color: #8d8985 !important;
}

@media screen and (max-width: 768px) {
  section.vendor .contVendor {
    display: block;
  }

  section.vendor .contVendor article {
    width: auto;
  }
}

/* 宅建免許 */
.vendor__license {
  font-family: "Noto Sans JP", serif;
  font-size: 0.7rem;
  margin-bottom: 3px;
  font-weight: 400;
}

section.vendor .contVendor article h3 {
  font-family: "Shippori Mincho", serif;
  margin: 0 0 0em;
  padding: 0 2px 0.3em 0;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 700 !important;
}
@media screen and (max-width: 980px) {
  section.vendor .contVendor article h3 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 800px) {
  section.vendor .contVendor article h3 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
    section.vendor .contVendor article h3 {
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 450px) {
    section.vendor .contVendor article h3 {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 390px) {
    section.vendor .contVendor article h3 {
        font-size: 1.1rem;
    }
}
/*
@media screen and (max-width: 850px) {
  section.vendor .contVendor article h3 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 780px) {
  section.vendor .contVendor article h3 {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  section.vendor .contVendor article h3 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  section.vendor .contVendor article h3 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 440px) {
  section.vendor .contVendor article h3 {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 400px) {
  section.vendor .contVendor article h3 {
    font-size: 0.9rem;
  }
}
*/


/*PCでは無効（改行しない）*/
.txtsp-vendor {
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width: 1000px) {
  .txtsp-vendor {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .txtsp-vendor {
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .txtsp-vendor {
    display: block;
  }
}

section.vendor .contVendor article .vendor__address {
  font-size: 0.7rem;
  line-height: 1.3;
  margin-bottom: 1px;
}

.ile_tel {
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", serif;
}

.ile_tel a {
  color: #000000;
  text-decoration: none;
}

.ile_tel__span {
  font-size: 1.4rem !important;
  font-weight: 700;
}

.span__free::before {
  content: "";
  display: inline-block;
  background-image: url(img/freedial.webp);
  background-repeat: no-repeat;
  width: 25px;
  height: 15px;
  background-size: contain;
  vertical-align: middle;
}

section.vendor .contVendor article p.link a {
  font-size: 0.7rem;
  padding: 4px 20px 4px 7px;
  color: #ffffff;
  background-color: #8d8985;
  border: 1px solid #8d8985;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.2s ease-in;
}
section.vendor .contVendor article p.link a:after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  right: 7px;
  bottom: 0;
  margin: auto;
}

section.vendor .contVendor article p.link a:hover {
  opacity: 0.5;
}

section.vendor .contVendor article p.link a i {
  margin: 0 0 0 2px;
}

/*トップの区画図ボタン*/
.topplat {
  text-align: center;
}

.topplat a {
  padding: 3px 18px 3px 5px;
  color: #ffffff;
  background-color: #8d8985;
  border: 1px solid #8d8985;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.2s ease-in;
}
.topplat a:after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  right: 7px;
  bottom: 0;
  margin: auto;
}

.topplat a:hover {
  opacity: 0.5;
}

.topplat a i {
  margin: 0 0 0 2px;
}

/*　　*/

.foot_tel a {
  color: #000000;
  text-decoration: none;
}

.vendor__span{
	font-size: 1rem;
}
@media screen and (max-width: 980px) {
.vendor__span{
	font-size: 0.8rem;
}
}
@media screen and (max-width: 800px) {
.vendor__span{
	font-size: 0.7rem;
}
}
@media screen and (max-width: 768px) {
.vendor__span{
	font-size: 0.9rem;
}
}
@media screen and (max-width: 450px) {
.vendor__span{
	font-size: 0.8rem;
}
}

/* vendor（販売提携）ここまで */

/* 会社名の下のキャプション文章 */
.vendor__caption {
  width: 100%;
}

.vendor__caption-txt {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.8rem;
  padding-top: 60px;
  margin: 0px 0px 25px 0px;
}
@media screen and (max-width: 650px) {
  .vendor__caption-txt {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 500px) {
  .vendor__caption-txt {
    font-size: 0.8rem;
  }
}

.vendor__caption-br {
  display: none;
}
@media screen and (max-width: 500px) {
  .vendor__caption-br {
    display: block;
  }
}

/*** footer ***/
footer {
  padding-bottom: 15px;
  padding-top: 65px;
  color: #000000;
  text-align: center;
  background-color: #f0f0f0;
}

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

.footer__license {
  line-height: 1.2rem;
}

footer h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 250%;
  line-height: 1.6rem;
  margin: 15px 0px 25px 0px;
}
@media screen and (max-width: 768px) {
  footer h2 {
    font-size: 200%;
  }
}

footer p {
  font-size: 80%;
  line-height: 1.6rem;
}

.footer__box {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer__box {
    flex-direction: column;
    gap: 0px;
  }

  .footer__box p {
    line-height: 1.2rem;
  }
}

.footer__link {
  color: #000000;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.footer_pic01 img {
  display: block;
  height: auto;
	width: 56%;
	  max-width: 350px;
  min-width: 300px;
  margin: 10px auto 15px auto;
}
@media screen and (max-width: 768px) {
  .footer_pic01 img {
    width: 80%;
	      max-width: 300px;
	    min-width: 250px;
  }
}

.footer_pic02 img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 15px auto 0px auto;
}
@media screen and (max-width: 768px) {
  .footer_pic02 img {
    margin: 10px auto 0px auto;
    width: 15%;
    min-width: 60px;
  }
}

.footer__link:hover {
  opacity: 0.5;
}

/*** copyright ***/

.copyright {
  margin: 0 auto;
  font-size: 60%;
  background-color: #f0f0f0;
  text-align: center;
  /* line-height: 4rem; */
  padding: 0px 0px 40px 0px;
}

/*** scrolltop ***/
p.pagetop {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 81;
}

p.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 2px 2px;
  color: #ffffff;
  font-size: 80%;
  text-align: center;
  text-decoration: none;
  background-color: #8d8985;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-family: "Shippori Mincho", serif;
  transition: all 0.3s ease-in;
}

p.pagetop a:hover {
  color: #8d8985;
  background-color: #ffffff;
  border: 1px solid #8d8985;
}

/*** 子ページのscrolltop ***/
p.move-to-top {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 15px;
  z-index: 81;
}

p.move-to-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 2px 2px;
  color: #ffffff;
  font-size: 80%;
  text-align: center;
  text-decoration: none;
  background-color: #8d8985;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-family: "Shippori Mincho", serif;
  transition: all 0.3s ease-in;
}

p.move-to-top a:hover {
  color: #8d8985;
  background-color: #ffffff;
  border: 1px solid #8d8985;
}

/* フェード関係の効果 */
.fadeIn,
.fadeUp,
.fadeDawn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
    visibility 0s linear 0.6s;
}

.fadeUp {
  transform: translateY(50px);
}

.fadeDawn {
  transform: translateY(-50px);
}

.showElement {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
    visibility 0s linear 0s;
}

/* スマホ版の追従「資料請求はコチラ」 */
.sticky-note-link {
  position: fixed;
  z-index: 999;
  writing-mode: vertical-rl;
  color: #ffffff;
  background-color: #c75a52;
  text-decoration: none;
  top: 22%;
  right: 0px;
  padding: 25px 15px;
  border-radius: 10px 0 0 10px;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 768px) {
  .sticky-note-link {
    top: 20%;
    padding: 15px 10px;
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .sticky-note-link {
    top: 11%;
    padding: 12px 10px;
    border-radius: 10px 0 0 10px;
    font-size: 12px;
  }
}

.sticky-note-link:hover {
  /* right: -10px; */
  /* ホバー時にちょっと出てくる */
  opacity: 0.5;
}

/* スマホ幅でのみ表示 */
@media screen and (min-width: 1050px) {
  .sticky-note-link {
    display: none;
  }
}

/*ここから公開モデルハウス一覧のページの設定*/
.section__ttl-red {
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  line-height: 1.5em;
  border-bottom: 1px solid #000000;
  color: #c75a52;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .section__ttl-red {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 410px) {
  .section__ttl-red {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 345px) {
  .section__ttl-red {
    font-size: 1.1rem;
  }
}

/* 画像の出し入れ（基本：PC表示） */
/*表示切り替え（PC / SP）*/
.pc-only {
  display: block !important;
}
.sp-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}

/*.pc-only02*/
@media screen and (max-width: 768px) {
  .pc-only02 {
    display: none !important;
  }
}


/* architec セクション共通 */
section.architec {
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
}

section.architec .inner {
  width: 100%;
  margin-bottom: 200px;
}


/* タイトルエリア */
.architec__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.architec__container img {
  width: 100%;
  height: auto;
  display: block;
}


/* architec__box レイアウト */
section.architec .inner .architec__box {
  display: flex;
  justify-content: space-between;
/*	flex-direction: row-reverse;*/
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}

/* 直下2カラム */
section.architec .inner .architec__box > div {
  width: 48%;
}

/* 画像は親にフィット */
section.architec .inner .architec__box img {
  width: 100%;
  height: auto;
  display: block;
}

/* 左右反転パターン */

.change__reverse{
  flex-direction: row-reverse !important;
  padding-bottom: 100px;
}

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

.change__reverse{
  flex-direction: column !important;
  padding-bottom: 100px;
}
}


/* 画像のみブロック（横並び2枚） */
.architec__box-wrap01 img,
.architec__box-wrap02 img {
  width: 100%;
  height: auto;
  display: block;
}


/* テキスト */
.architec__txt {
 text-align: left;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
}

.architec__smalltxt {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-character;
}


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

  .architec__txt {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.2rem;
    letter-spacing: 0.3rem;
	  padding-top: 50px;
  }

  .architec__smalltxt {
    font-size: 0.8rem;
    line-height: 1.5rem;
  }
	
	.architec__smalltxt_space{
		margin-bottom: 90px;
	}
}

@media screen and (max-width: 500px) {
  .architec__txt {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.2rem;
	  padding-top: 40px;
  }
}
@media screen and (max-width: 385px) {
  .architec__txt {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
	  padding-top: 35px;
  }
}


/* スペック画像 */
.spec__box {
  margin-bottom: 100px;
}

.spec__box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}


/* ボタン*/
.architec__btn {
  text-align: center;
  margin-top: 50px;
}

.architec__btn a {
  position: relative;
  display: inline-block;
  width: 50%;
  min-width: 250px;
  padding: 15px 15px 15px 0;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #8d8985;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease-in;
}

.architec__btn a:hover {
  opacity: 0.5;
}

.architec__btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .architec__btn a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .architec__btn a {
    font-size: 0.8rem;
  min-width: 280px;
  }
}
.architec__btn a:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  right: 20px;
  bottom: 0;
  margin: auto;
}


/*SP（768px以下）*/
@media screen and (max-width: 768px) {

  section.architec .inner .architec__box {
    flex-direction: column;
  }

  section.architec .inner .architec__box > div {
    width: 100%;
  }
	
	.architec__box-img02{
		margin-bottom: 20px;
	}
}



/* brain セクション共通*/
section.brain {
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
}

section.brain .inner {
  width: 100%;
  margin-bottom: 200px;
}


.brain__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brain__container img {
  width: 100%;
  height: auto;
  display: block;
}

/*（2026年春 完成予定）*/
.kanseiyotei{
  text-align: center;
    margin-bottom: 20px;
}

.kanseiyotei p {
  position: relative;
  display: inline-block;
  width: 30%;
  min-width: 250px;
  padding: 10px 10px 10px 0;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #8d8985;
  border-radius: 4px;
}


/* brain__box レイアウト*/
section.brain .inner .brain__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}

/* 直下2カラム */
section.brain .inner .brain__box > div {
  width: 48%;
}

/* 画像は親にフィット */
section.brain .inner .brain__box img {
  width: 100%;
  height: auto;
  display: block;
}


/* 画像のみブロック（横並び2枚）*/
.brain__box-wrap01 img,
.brain__box-wrap02 img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
.brain__box-wrap01 img {
margin-bottom: 20px;
}
  }

/* テキスト */
.brain__txt {
  text-align: left;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
}

.brain__smalltxt {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-character;
}

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

  .brain__txt {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2.2rem;
    letter-spacing: 0.3rem;
	  padding-top: 50px;
  }

  .brain__smalltxt {
    font-size: 0.8rem;
    line-height: 1.5rem;
  }
}

.brain__smalltxt_space {
margin-bottom: 50px;
}
@media screen and (max-width: 500px) {
.brain__smalltxt_space:nth-child(2) {
margin-bottom: 20px;
}
  .brain__txt {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.2rem;
	  padding-top: 40px;
  }
}
@media screen and (max-width: 385px) {
  .brain__txt {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
	  padding-top: 35px;
  }
}


/* スペック画像 */
.spec__box {
  margin-bottom: 100px;
}

.spec__box img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}


.brain__caption-txt {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  line-height: 1.8rem;
  margin: 0px 0px 25px 0px;
}
@media screen and (max-width: 768px) {
.brain__caption-txt {
  text-align: left;
  }
}
@media screen and (max-width: 650px) {
  .brain__caption-txt {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 500px) {
  .brain__caption-txt {
    font-size: 0.75rem;
  letter-spacing: 0.04em;
  }
}
/* ===============================
   ボタン
   =============================== */
.brain__btn {
  text-align: center;
  margin-top: 50px;
}

.brain__btn a {
  position: relative;
  display: inline-block;
  width: 50%;
  min-width: 250px;
  padding: 15px 15px 15px 0;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #8d8985;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s ease-in;
}

.brain__btn a:hover {
  opacity: 0.5;
}

.brain__btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .brain__btn a {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .brain__btn a {
    font-size: 0.8rem;
  min-width: 280px;
  }
}
.brain__btn a:after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  top: -0.5px;
  right: 20px;
  bottom: 0;
  margin: auto;
}

.brain__btn a:hover {
  opacity: 0.5;
}

/* SP（768px以下）*/
@media screen and (max-width: 768px) {

  section.brain .inner .brain__box {
    flex-direction: column;
  }

  section.brain .inner .brain__box > div {
    width: 100%;
  }
}


.brain__column{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
    flex-direction: column;
}

@media screen and (min-width: 767px) {
.brain__box-txt-mt{

    margin-top: 50px;
}
/* 直下2カラム */
.brain__column div {
  width: 100% !important;
}
}
