@charset "UTF-8";
/*==============================================================
	レイアウト関係
===============================================================*/
@font-face {
  font-family: "Skia";
  src: url("../font/mplus.woff") format("woff");
}

.inner_wrap {
  width: 1350px;
  margin: auto;
}

.inner_wrap_s {
  width: 1100px;
  margin: auto;
}

.en {
  font-family: "Skia";
}

[class*="fl_box"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fl_box_wr {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.fl_box_c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.fl_box_cc {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fl_box_bw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.fl_box_bwc {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_el {
  display: inline-block;
}

.sp_el {
  display: none;
}

/*==============================================================
	見出し関係
===============================================================*/
.base_tl_box {
  text-align: center;
  margin-bottom: 50px;
}

.base_tl {
  display: inline-block;
  text-align: center;
  position: relative;
  line-height: 1.2;
  font-weight: normal;
  z-index: 1;
}

.base_tl .en {
  color: #747e6a;
  font-size: 30px;
  font-size: 3rem;
  display: block;
}

.base_tl .ja {
  font-size: 42px;
  font-size: 4.2rem;
}

/*==============================================================
	ボタン関係
===============================================================*/
.base_btn {
  width: 300px;
  padding: 15px 5px;
  text-align: center;
  display: block;
  text-decoration: none;
  background-color: #edcf6c;
  color: #333;
  -webkit-transform: skew(-20deg, 0deg);
  transform: skew(-20deg, 0deg);
  margin: 50px auto 0;
  font-size: 3.6rem;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.base_btn span {
  display: block;
  -webkit-transform: skew(20deg, 0deg);
  transform: skew(20deg, 0deg);
}

.base_btn:hover {
  opacity: 0.9;
}

/*==============================================================
	リスト関係
===============================================================*/
.numbox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
}

.numbox_list li {
  opacity: 0;
  width: 32%;
  background-color: #f4f4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 60px 30px;
  position: relative;
}

.numbox_list li .num {
  position: absolute;
  top: -50px;
  left: -20px;
  font-family: Garamond, Baskerville, Baskerville Old Face, Hoefler Text,
    Times New Roman, serif;
  font-weight: normal;
  color: #e60012;
  font-style: italic;
  font-size: 98px;
  font-size: 9.8rem;
}

.numbox_list li .tl {
  font-size: 33px;
  font-size: 3.3rem;
  position: relative;
  font-weight: bold;
  text-align: center;
}

.numbox_list li .tl::before {
  position: absolute;
  content: "";
  background-color: #e60012;
  width: 100px;
  height: 3px;
  left: 0;
  right: 0;
  top: 120%;
  margin: auto;
}

.numbox_list.is-scroll li:nth-child(1) {
  -webkit-animation: slideUP 1s ease-out 0.5s 1 forwards;
  animation: slideUP 1s ease-out 0.5s 1 forwards;
}

.numbox_list.is-scroll li:nth-child(2) {
  -webkit-animation: slideUP 1s ease-out 0.8s 1 forwards;
  animation: slideUP 1s ease-out 0.8s 1 forwards;
}

.numbox_list.is-scroll li:nth-child(3) {
  -webkit-animation: slideUP 1s ease-out 1.1s 1 forwards;
  animation: slideUP 1s ease-out 1.1s 1 forwards;
}

.num_list {
  counter-reset: item;
  word-break: break-word;
  text-align: left;
}

.num_list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 18px;
}

.num_list li::before {
  counter-increment: item;
  content: counter(item) "";
  color: #000;
  position: absolute;
  left: 7px;
  top: 0px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 25px;
  z-index: 2;
}

.num_list li::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  border-radius: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid;
}

.num_list li a {
  color: #000;
}

.circle_list {
  text-align: left;
  word-break: break-word;
}

.circle_list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.circle_list li::before {
  content: "●";
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 8px;
  color: #000;
}

.circle_list li a {
  color: #000;
}

.square_list {
  text-align: left;
  word-break: break-word;
}

.square_list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.square_list li::before {
  content: "■";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: 16px;
  color: #e60012;
}

.square_list li a {
  color: #000;
}

/*==============================================================
	下階層headline
===============================================================*/
#headline {
  width: 100%;
  padding: 70px;
  text-align: center;
  margin-bottom: 30px;
}

#headline .ja {
  color: #fff;
  font-size: clamp(40px, 2vw, 60px);
  display: block;
}

#hakobune #headline {
  background: url(../img/bg_hakobune_tl.png) no-repeat center/cover;
}

#webcatalog #headline {
  background: url(../img/bg_webcatalog_tl.png) no-repeat center/cover;
}

#company #headline {
  background: url(../img/bg_company_tl.png) no-repeat center/cover;
}

#sale #headline {
  background: url(../img/bg_sale_tl.png) no-repeat center/cover;
}

#construction #headline {
  background: url(../img/bg_construction_tl.png) no-repeat center/cover;
}

#topics #headline {
  background: url(../img/bg_topics_tl.png) no-repeat center/cover;
}

#policy #headline {
  background: url(../img/bg_policy_tl.png) no-repeat center/cover;
}

#concept #headline {
  background: url(../img/bg_concept_tl.png) no-repeat center/cover;
}

#quotation #headline {
  background: url(../img/bg_quotation_tl.png) no-repeat center/cover;
}

#faq #headline {
  background: url(../img/bg_faq_tl.png) no-repeat center/cover;
}

#contact #headline {
  background: url(../img/bg_contact_tl.png) no-repeat center/cover;
}

#thanks #headline {
  background: url(../img/bg_contact_tl.png) no-repeat center/cover;
}

#error #headline {
  background: url(../img/bg_contact_tl.png) no-repeat center/cover;
}

/*==============================================================
	パンくずリスト
===============================================================*/
.pan_area {
  margin-bottom: 70px;
}

.pan_area .pan_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pan_area .pan_list li {
  padding-right: 15px;
  margin-right: 20px;
  position: relative;
}

.pan_area .pan_list li a {
  color: #000;
}

.pan_area .pan_list li::before {
  content: "/";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  margin: auto;
}

.pan_area .pan_list li:last-child::before {
  content: none;
}

/*==============================================================
	共通パーツ
===============================================================*/
.base_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}

.base_contents .photo {
  width: 60%;
}

.base_contents .photo img {
  width: 100%;
  height: auto;
}

.base_contents .txt_box {
  position: relative;
  width: 50%;
  margin-left: auto;
  background-color: #fff;
  padding: 70px;
  z-index: 2;
}

.base_contents .txt_box .m_tl {
  font-size: clamp(30px, 3vw, 42px);
  text-align: center;
  margin-bottom: 50px;
}

.base_contents .txt_box .m_tl span {
  position: relative;
}

.base_contents .txt_box .m_tl span::before {
  content: "";
  position: absolute;
  background: url(../img/ico_border.svg) no-repeat;
  background-size: 40px;
  width: 40px;
  height: 100px;
  top: 0;
  bottom: 0;
  right: 105%;
  margin: auto;
}

.base_contents .txt_box .m_tl span::after {
  content: "";
  position: absolute;
  background: url(../img/ico_border.svg) no-repeat;
  background-size: 40px;
  width: 40px;
  height: 100px;
  top: 0;
  bottom: 0;
  left: 105%;
  margin: auto;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.base_contents .txt_box .tl {
  color: #000;
  text-align: center;
  font-size: clamp(30px, 2vw, 42px);
  margin-top: 30px;
  margin-bottom: 30px;
}

.base_contents .txt_box .tl span {
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  background-color: #7e8f5f;
  margin-right: 10px;
}

.base_contents .txt_box .txt {
  position: relative;
  line-height: 2;
  margin-bottom: 30px;
  font-size: clamp(18px, 2vw, 20px);
}

.base_contents .txt_box .more_btn {
  margin: auto;
}

.base_contents.is-scroll .photo {
  -webkit-animation: slideRight 1s ease-out 0.3s 1 forwards;
  animation: slideRight 1s ease-out 0.3s 1 forwards;
}

.base_contents.is-scroll .txt_box {
  -webkit-animation: slideUP 1s ease-out 1.5s 1 forwards;
  animation: slideUP 1s ease-out 1.5s 1 forwards;
}

.base_contents.left .txt_box {
  margin-right: 0;
  left: -100px;
}

.base_contents.right .txt_box {
  margin-right: auto;
  margin-left: 0;
  right: -100px;
}

.base_contents.right .txt_box .txt {
  left: 0;
}

.base_contents.right.is-scroll .photo {
  -webkit-animation: slideLeft 1.2s ease-out 0.3s 1 forwards;
  animation: slideLeft 1.2s ease-out 0.3s 1 forwards;
}

.base_contents.right.is-scroll .txt_box {
  -webkit-animation: slideUP 1.2s ease-out 1.5s 1 forwards;
  animation: slideUP 1.2s ease-out 1.5s 1 forwards;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination li {
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  letter-spacing: 0;
  margin: 0 10px;
  border-radius: 8px;
  border: 2px solid #7e8f5f;
  font-size: 28px;
}

.pagination li a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #7e8f5f;
}

.pagination li.current {
  background-color: #7e8f5f;
}

.pagination li.current a {
  color: #fff;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wp-pagenavi .pages,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .last,
.wp-pagenavi .first {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  letter-spacing: 0;
  margin: 0 10px;
  border-radius: 8px;
  border: 2px solid #7e8f5f;
  font-size: 28px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #7e8f5f;
}

.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  border: 2px solid #7e8f5f;
}

.wp-pagenavi a.current,
.wp-pagenavi span.current {
  background-color: #7e8f5f;
  color: #fff;
  border: 2px solid #7e8f5f;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navigation li {
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  letter-spacing: 0;
  margin: 0 10px;
  border-radius: 8px;
  border: 2px solid #7e8f5f;
  font-size: 28px;
}

.navigation li a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #7e8f5f;
}

.navigation li.current {
  background-color: #7e8f5f;
}

.navigation li.current a {
  color: #fff;
}

.controller_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 80px;
}

.controller_box li {
  width: 30%;
}

.controller_box li a {
  color: #e60012;
  border: 1px solid #e60012;
  padding: 20px;
  margin: 0 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 24px;
  font-size: 2.4rem;
}

.controller_box li.is-active a {
  background-color: #e60012;
  color: #fff;
}

.controller_box li:hover a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #e60012;
  color: #fff;
}

.property_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.property_list li {
  position: relative;
  width: 24%;
  margin-right: 1.3%;
  margin-bottom: 3%;
  background-color: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.property_list li:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.property_list li:nth-child(4n) {
  margin-right: 0;
}

.property_list li .new {
  background-color: #e60012;
  color: #fff;
  position: absolute;
  left: -69px;
  top: -59px;
  padding: 40px 10px 40px 80px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
}

.property_list li .new span {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: block;
  position: relative;
  left: 5px;
  top: -2px;
}

.property_list li .photo {
  position: relative;
}

.property_list li .photo img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  font-family: "object-fit: cover; object-position: center center";
  width: 100%;
  height: 28vh;
}

.property_list li .photo .soldout {
  background-color: #e60012;
  color: #fff;
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 5px;
}

.property_list li .txt_box {
  padding: 10px 20px;
  color: #333;
}

.property_list li .txt_box .name {
  margin-bottom: 10px;
  text-align: center;
}

.property_list li .txt_box .txt {
  font-size: 14px;
  font-size: 1.4rem;
}

.property_list li.close::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

/*Question共通*/
.switchIcon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 25px;
  width: 20px;
  height: 20px;
}

.switchIcon::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.switchIcon::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.open .switchIcon::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.open .switchIcon::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tab_content {
  display: none;
}

.tab_content.show_tab {
  display: block;
}
