@charset "utf-8";

/**************************************************/
/*                                                */
/*                  ベーススタイル　              */
/*                                                */
/**************************************************/

html {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
}

body {
  color: #5f5f5f;
  font-size: 1.6em;
  font-family:'Noto Sans JP',"ヒラギノ角ゴ Pro","HiraKakuPro","游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,sans-serif;
  letter-spacing: 0.1em;
}

input,
select,
textarea {
  font-family:'Noto Sans JP',"ヒラギノ角ゴ Pro W3","HiraKakuPro-W3","游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,sans-serif;
  letter-spacing: 0.1em;
}

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

a {
  text-decoration: none;
  color: #5f5f5f;
  transition: 0.4s linear;
}

a:hover {
  opacity: 0.7;
}

.news-list a:hover {
  opacity: 1;
}

.news-list a[href]:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

/**************************************************/
/*                                                */
/*                  ユーティリティ                */
/*                                                */
/**************************************************/

.cf::before,
.cf::after {
  clear: both;
  content: "";
  display: block;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.font-eng  {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.flex {
  display: flex;
}
/**************************************************/
/*                                                */
/*            　 レイアウト（骨組み）　　         */
/*                                                */
/**************************************************/

#wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  display: block; /* IE対策 */
}

/* ================================================
 * ヘッダー
 * ================================================*/

/*-- ハンバーガー --*/
.hamburger-wrap {
  cursor: pointer;
  z-index: 1000;
}

.hamburger-wrap [class*=border]  {
  position: absolute;
  height: 2px;
  transition: .4s all ease;
  transform-origin: center center;
  background: #332a58;
}

.hamburger-wrap.opened [class*=border] {
  background-color: #fff;
}

.l-header .header-menu {
  position: fixed;
  height: 100vh;
  top: 0;
  background: rgba(51,42,88,0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 500;
  transition: transform 0.4s;
}


.l-header.opened .header-menu {

  opacity: 1;

}

.header-menu li a {
  text-decoration: none;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
}

.header-menu ul li {
  margin-bottom: 50px;
}

.header-menu a {
  color: #fff;
}

.header-menu .font-eng {
  text-transform: uppercase;
  font-size: 1.2rem;
}

li.header-contact a {
  display: block;
  border:solid 1px #fff;
  text-align: center;
  transition: all 0.4s;
}

li.header-contact a .font-eng {
  transition: all 0.4s;
}

li.header-contact a:hover .font-eng {
  color: #fff;
}

/* ================================================
 * フッター
 * ================================================*/

.l-footer {
  margin-top: auto;
}

.footer-top ,
.footer-bottom {
  background-color: #332a58;
}

.footer-top a ,
.footer-bottom a {
  color : #fff;
}

.footer-menu {
  display: flex;
}

.footer-bottom .inner {
  display: flex;
}

.footer-bottom .logo-txt {
  color: #fff;
  line-height: 1.5;
}

.footer-bottom .emphasis-menu {
  border: solid 1px #fff;
  width: 120px;
  height: 50px;
  line-height: 44px;
  text-align: center;
}

/*-- ページトップ --*/
#page-top {
  position: fixed;
  z-index: 100;
}

#page-top a {
  width: 100%;
  height: 100%;
  background-color: #999;
  transition: 0.3s ease-out;
  position: relative;
  display: block;
}

#page-top a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 10px/2);
  left: calc(50% - 16px/2);
}

/*-- コピーライト --*/
.l-footer small {
  display: block;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

/**************************************************/
/*                                                */
/*             　モジュール（パーツ）　　         */
/*                                                */
/**************************************************/

/* ================================================
 * ページネーション
 * ================================================*/
.pager {
  display: flex;
  justify-content: center;
}

.pager li:not(:last-of-type) {
  margin-right: 20px;
}

.pager a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  text-decoration: none;
  position: relative;
  color: #332a58;
  border: solid 1px #332a58;
}

.pager a:hover ,
.pager li.current a {
  background-color: #332a58;
  color: #fff;
}

.pager .next a,
.pager .prev a {
  letter-spacing: 0.1em;
  position: relative;
}

.pager .next a::after ,
.pager .prev a::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 15px;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  transition: all 0.4s;
}

.pager .next a::after {
  right: 10px;
  border-left: 10px solid #5F5F5F;
}

.pager .prev a::after {
  left: 10px;
  border-right: 10px solid #5F5F5F;
}

.pager .next a:hover::after {
  border-left: 10px solid #fff;
}

.pager .prev a:hover::after {
  border-right: 10px solid #fff;
}

/*detail-pager*/
.detail-pager {
  position: relative;
}

.detail-pager .top {
  margin-right: 0;
}

.detail-pager .top a {
  width: 200px;
}

.detail-pager .prev ,
.detail-pager .next {
  position: absolute;
  top: 0;
}

.detail-pager .prev {
  left: 0;
}

.detail-pager .next {
  right: 0;
}



/**************************************************/
/*                                                */
/*            　その他（共通の装飾） 　　         */
/*                                                */
/**************************************************/
.section-ttl {
  color: #332a58;
}

.btn-more {
  display: block;
  background-color: #332a58;
  color: #fff;
  width: 360px;
  height: 50px;
  line-height: 50px;
  text-align: center;

}

/*page-menu*/
.page-menu {
  display: flex;
  justify-content: center;
}

.page-menu li {
  border: solid 1px #332a58;
}

.page-menu li a {
  color: #332a58;
  display: block;
}

.page-menu li.active a ,
.page-menu li a:hover {
  background-color: #332a58;
  color: #fff;
}


/**************************************************/
/*                                                */
/*             　　　ページ　　　        　　　　 */
/*                                                */
/**************************************************/

/* ================================================
 * トップ
 * ================================================*/
/*works*/
.works-list {
  display: flex;
  flex-wrap: wrap;
}

.works-list a {
  display: block;
}

.works-list a img {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  margin-bottom: 8px;
}

/*works-instruction*/
.instruction-wrap {
  border-radius: 8px;
  border: solid 10px #F5F2FD;
  background-color: #fff;
}

.instruction-wrap .main-txt, .instruction-wrap .main-txt-note{
  line-height: 1.8;
}


.instruction-wrap .main-txt a {
  text-decoration: underline;
  color: #4D2FCA;
}

.instruction-ttl {
  text-align: center;
  color: #332a58;
  font-weight: bold;
}

.instruction-item {
  line-height: 1.5;
}

.instruction-wrap .item-ttl {
  color: #332a58;
  margin-bottom: 10px;
}

.instruction-wrap ul {
  list-style: disc;
  padding-left: 20px;
}

.instruction-wrap li {

}

/*news-basic*/
#event-basic {
  background-color: #f9f9f9;
}

.news-list a {
  display: block;
  border-bottom: dashed 1px #ddd;
}

#event-basic .event-info {
  display: flex;
  margin: 0 auto;
}

/*news-standard*/

.event-flex a {
  width: 380px;
  border: solid 2px #332a58;
  border-radius: 10px;
}

.event-flex .img-wrap img {
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
}

.event-item {
  line-height: 1.5;
}

#top .info-link .event-txt::after ,
.news-standard-page .info-link .event-txt::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/icon_target_blank.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  position: absolute;
}



/* ================================================
 * 下層共通
 * ================================================*/
.breadcrumb {
  display: flex;
}

.breadcrumb li {
  position: relative;
  margin-right: 4px;
  padding-right: 24px;
}

.breadcrumb li:not(:last-of-type) :after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 1px;
  right: 0;
  margin: auto;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-left: 8px solid #888;
}

.breadcrumb li span {
  padding-bottom: 4px;
}

.breadcrumb li:last-of-type span {
  border-bottom: solid 1px #707070;
}

/*ttl*/
.page-ttl {
  text-align: center;
}
.page-ttl .font-eng {
  display: block;
  color: #222;
  text-transform: uppercase;
  font-weight: 400;
}

/*fadeup*/
.fadeup-item {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.fadeup-item.fadeup {
  transform: translateY(0);
  opacity: 1;

}
/* ================================================
 * 施工実績
 * ================================================*/

.works-list .works-ttl {
  line-height: 1.5;
}

/* ================================================
 * 施工実績詳細
 * ================================================*/
.works-detail-page .works-ttl {
  color: #332a58;
  line-height: 1.3;
}

.works-detail-page .works-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.works-detail-page .works-txt-wrap {
  background-color: #f9f9f9;
  line-height: 1.5;
}

.works-detail-page .works-txt-wrap dl {
  display: flex;
  border-bottom: dashed 1px #ddd;
}

.works-detail-page .works-txt-wrap dt {
  color: #332a58;
}

/*slick*/
.property-detail-page .property-detail-slider li img ,
.works-detail-page .property-detail-slider li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}

.property-detail-page .property-detail-thumb li ,
.works-detail-page .property-detail-thumb li {
  overflow: hidden;
  cursor: pointer;
  
}

.property-detail-page .property-detail-thumb li img ,
.works-detail-page .property-detail-thumb li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  transition: all 0.4s;
}

.property-detail-page .property-detail-thumb li:hover img ,
.works-detail-page .property-detail-thumb li:hover img {
  transform: scale(1.15);
}

.property-detail-page .slick-next ,
.works-detail-page .slick-next ,
.property-detail-page .slick-prev ,
.works-detail-page .slick-prev ,
.property-detail-page .slick-next:focus ,
.works-detail-page .slick-next:focus ,
.property-detail-page .slick-prev:focus ,
.works-detail-page .slick-prev:focus {
  background-color: #fff;
  border-radius: 50vh;
  z-index: 1;
  opacity: 0.9;
  transition: all 0.4s;
}

.property-detail-page .slick-prev ,
.works-detail-page .slick-prev {
  left: 0;
}

.property-detail-page .slick-next ,
.works-detail-page .slick-next {
  right: 0;
}

.property-detail-page .slick-next:hover ,
.works-detail-page .slick-next:hover ,
.property-detail-page .slick-prev:hover ,
.works-detail-page .slick-prev:hover {
  opacity: 0.6;
}

.property-detail-page .slick-next:before ,
.works-detail-page .slick-next:before ,
.property-detail-page .slick-prev:before ,
.works-detail-page .slick-prev:before {
  display: inline-block;
  opacity: 1;
  content: '';
  width: 16px;
  height: 16px;
  border-bottom: solid 2px #332a58;
  border-left: solid 2px #332a58;
  top: 18px;
  border-top: none;
  border-right: none;
}

.property-detail-page .slick-prev:before ,
.works-detail-page .slick-prev:before {
  transform: rotate(45deg);
  left: 20px;
  right: auto;
}

.property-detail-page .slick-next:before ,
.works-detail-page .slick-next:before {
  transform: rotate(-135deg);
  right: 20px;
  left: auto;
}


/* ================================================
 * .property
 * ================================================*/
.property-page .sort-wrap {
  background-color: #f9f9f9;
  margin: 0 auto;
}

.property-page .sort-wrap ul {
  display: flex;
  flex-wrap: wrap;
}

.property-page .sort-wrap .property-type {
  border-bottom: dashed 1px #ddd;
}

.property-list .property-item {
  display: flex;
  line-height: 1.5;
}

.property-list .img-wrap {
  display: block;
  position: relative;
  cursor: pointer;
}

.property-list .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.property-list .property-tag-area ,
.property-list .property-tag {
  position: absolute;
  top: 0;
  background-color: #332a58;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-list .property-tag {
  left: 0;
}

.property-list .property-tag-area {
  right: 0;
}

.property-list .property-ttl {
  font-weight: bold;
  color: #332a58;
}

.property-list .property-price {
  background-color: #332a58;
  color: #fff;
  display: inline-block;
}

.property-list .detail-list {
  display: flex;
}

/* ================================================
 * property-detail
 * ================================================*/
.property-detail-page .article-wrap {
  line-height: 1.5;
}

.property-detail-page .tag-wrap {
  display: flex;
}

.property-detail-page .tag-list1 {
  display: flex;
}

.property-detail-page .location-tag ,
.property-detail-page .category-tag ,
.property-detail-page .property-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #332a58;
}

.property-detail-page .property-tag {
  color: #332a58;
}

.property-detail-page .location-tag ,
.property-detail-page .category-tag {
  
  background-color: #332a58;
  color: #fff;
}

.property-detail-page .property-ttl {
  color: #332a58;
  font-weight: 700;
  line-height: 1.7;
}

.property-detail-page .slider-wrap {
  position: relative;
}

.property-detail-page .property-price {
  background-color: #332a58;
  color: #fff;
  display: inline-block;
  position: absolute;
  left: 0;
  line-height: 1.5;
}

/*slider*/
.property-detail-page .property-detail-slider li img {
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.property-detail-page .property-txt-wrap {
  background-color: #f9f9f9;
  display: flex;
}

.property-detail-page .property-txt-wrap .txt-left {
  border-right: solid 1px #999;
}

.property-detail-page .property-txt-wrap dl {
  display: flex;
}

.property-detail-page .property-txt-wrap dl:not(:last-of-type) {
  border-bottom: dashed 1px #ddd;
}

.property-detail-page .property-txt-wrap dt {
  font-weight: 700;
}

.property-detail-page .property-txt-wrap dd {
  word-break: break-all;
}

/*spec-list*/
.property-detail-page .spec-list-btn {
  background-color: #332a58;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.property-detail-page .spec-list-btn::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  border-right: solid 3px #fff;
  border-bottom: solid 3px #fff;
  transform: rotate(45deg);
  transform-origin: 10px 10px;
  position: absolute;
  right: 30px;
  top: 20px;
  transition: all 0.3s;
}

.property-detail-page .spec-list-btn.active::after {
  transform: rotate(225deg);
}

.property-detail-page .spec-list {
  background-color: #f9f9f9;
}

.property-detail-page .spec-list dl {
  display: flex;
  align-items: center;
}

.property-detail-page .spec-list dl:not(:last-of-type) {
  border-bottom: dashed 1px #DDDDDD;
}

.property-detail-page .spec-list dt {
  font-weight: 700;
  flex: 0 0 auto;
}

.property-detail-page .spec-list dd {
  line-height: 1.5;
}


/*btnで開閉*/
.property-detail-page .spec-list {
  display: none;
}

.property-detail-page .spec-list.active {
  display: block;
}


/*map*/
.maps-outer {
  position: relative;
}
.maps-outer iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*種別による表示・非表示*/
.apartment-page .detached ,
.apartment-page .land {
  display: none!important;
}

.apartment-page .apartment {
  display: flex!important;
}

.detached-page .apartment ,
.detached-page .land {
  display: none!important;
}

.detached-page .detached {
  display: flex!important;
}

.land-page .apartment ,
.land-page .detached {
  display: none!important;
}

.land-page .land {
  display: flex!important;
}
/* ================================================
 * news-standard詳細
 * ================================================*/
.news-detail-page .event-date ,
.news-detail-page .event-ttl {
  color: #332a58;
  line-height: 1.3;
}

.news-detail-page .event-txt {
  line-height: 1.5;
}

.news-detail-page .event-link {
  color: #433091;
  text-decoration: underline;
  line-height: 1.5;
  display: block;
}

.pdf-link::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../img/pdf-purple.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  transform: translateY(3px);
}

/* ================================================
 * news-basic
 * ================================================*/
.news-basic-page #event-basic {
   background-color: transparent;
}

.news-basic-page .news-list {
  line-height: 1.5;
}

.news-basic-page .news-item {
  border-bottom: dashed 1px #ddd;
}

.news-basic-page .info-link::after ,
.news-detail-page .info-link::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/icon_target_blank-blue.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  position: absolute;
}

.news-basic-page .ttl-wrap .info-link::after {
  width: 40px;
  height: 40px;
}


.news-basic-page .ttl-wrap {
  color: #332a58;
}

.news-basic-page .news-list a {
  border-bottom: none;
  text-decoration: underline;
  color: #433091;
}


/* ================================================
 * お問合せ
 * ================================================*/
.contact-page .top-txt {
  line-height: 1.5;
}

.contact-page .form-section {
  background-color: #f9f9f9;
}

.contact-page .important {
  color: #fc1a4f;
}

.contact-page .caution {
  font-size: 1.4rem;
  text-align: right;
  margin-bottom: 12px;
}

.contact-page dl {
  display: flex;
  line-height: 1.8;
  align-items: center;
  border-bottom: solid 1px #d9d9d9;
}

.contact-page dl:first-of-type {
  border-top: solid 1px #d9d9d9;
}

.contact-page input[type="text"],
.contact-page input[type="tel"],
.contact-page textarea {
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-page dl.date-wrap {
  border: none;
  padding: 0;
}

.contact-page dl.date-wrap:not(:last-of-type) {
  padding-bottom: 20px;
}

.contact-page select {
  border: none;
  border-radius: 0;
  background-color: #fff;
  color: #757575;
}

.contact-page option {
  color: #000;
}

.contact-page input[type="radio"] {
  transform: translateY(-2px);
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.contact-page textarea {
  height: 200px;
  overflow: scroll;
}

.contact-page #inquiry_num {
  color: #999;
  font-size: 1.4rem;
  text-align: right;
}

.contact-page .submit-area {
  display: flex;
  justify-content: center;
}

.contact-page .submit-btn {
  border-radius: 0;
  cursor: pointer;
  border: none;
  color: #fff;
  background-color: #5f5f5f;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.4s;
}

.contact-page .submit-btn:hover {
  opacity: 0.7;
}

.contact-page .privacy-link {
  text-align: center;
}

.contact-page .privacy-link a {
  text-decoration: underline;
}

/*confirm*/

.contact-page.contact-confirm dl {
  min-height: inherit;
}

.contact-page.contact-confirm dl.date-wrap:not(:last-of-type) {
  padding-bottom: 0;
}

.contact-confirm .submit-area {
  display: flex;
  justify-content: center;
}

.contact-confirm .reset-btn {
  border-radius: 0;
  cursor: pointer;
  border: solid 1px #5f5f5f;
  background-color: #fff;
  color: #5f5f5f;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.4s;
}

.contact-confirm .reset-btn:hover {
  color: #fff;
  background-color: #5f5f5f;
}

/*thanks*/
.contact-thanks p {
  line-height: 1.5;
}

.contact-thanks .btn-more {
  display: block;
  border-radius: 0;
  cursor: pointer;
  border: none;
  color: #fff;
  background-color: #5f5f5f;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.2s;
}

/* ================================================
 * privacy
 * ================================================*/
.privacy-page .privacy-contents {
  line-height: 1.8;
}

.privacy-page .privacy-ttl {
  color: #284FD4;
  font-weight: 600;
}

.privacy-page ul.sub-txt {
  list-style: disc;
}

.privacy-contact {
  background-color: #f9f9f9;
  width: fit-content;
  width: -moz-fit-content;
}

/* ================================================
 * 404
 * ================================================*/
.not-found-page .not-found-contents {
  line-height: 1.8;
}