@charset "utf-8";
/* トップスライド
--------------------------- */
.p-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 576px) {
  .p-top > section, .p-top3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  section.p-top__mainvisual {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  section.p-top__event {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    background-color: #f8f8f8;
  }
}
/* ---------------------------
トップコンテンツ
--------------------------- */
/* MAIN VISUAL */
.p-top__mainvisual {
  position: relative;
}
.p-top__mainvisual_pcbox img {
  display: block
}
.p-top__mainvisual_spbox img {
  display: none;
}
@media screen and (max-width: 576px) {
  .p-top__mainvisual_pcbox img {
    display: none;
  }
  .p-top__mainvisual_spbox img {
    display: block;
  }
}
#slider-mainvisual {
  width: 100%;
  margin-bottom: 0;
  background-color: #1a1a1a;
}
#slider-mainvisual li {
  width: 100%;
  height: 100vh;
}
#slider-mainvisual li img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 576px) {
  #slider-mainvisual li img {
    display: none;
  }
  #slider-mainvisual li:nth-child(1) {
    background-image: url("../images/page/mv4_sp.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }
  #slider-mainvisual li:nth-child(2) {
    background-image: url("../images/page/mv1_sp.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }
  #slider-mainvisual li:nth-child(3) {
    background-image: url("../images/page/mv2_sp.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }
  #slider-mainvisual li:nth-child(4) {
    background-image: url("../images/page/mv3_sp.jpg");
    background-repeat: no-repeat;
    background-position: center;
  }
}
.p-top__mainvisual .l-container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 10.7%;
}
/* VISUAL SMALL */
#slider-mainvisual__small {
  width: 100%;
  max-width: 510px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#slider-mainvisual__small .slick-list {
  padding-left: 0 !important;
  padding-right: 34.3%;
  margin: 0 -7.5px;
}
#slider-mainvisual__small .slick-slide {
  margin: 0 7.5px;
}
#slider-mainvisual__small img {
  display: block;
  width: calc((100% - 30px) / 3);
  height: 83px;
  border-radius: 3px;
  cursor: pointer;
}
/* VISUAL TEXT */
.p-top__mainvisual-textbox01 {
  margin-bottom: 1rem;
}
.p-top__mainvisual-textbox01_txt {
  color: #fff;
  line-height: 1.4;
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 3rem;
  font-weight: 500;
}
.p-top__mainvisual-textbox01_txt2 {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 500;
}
.p-top__mainvisual-textbox01_txt03 {
  margin: 0 0.5rem;
}
.p-top__mainvisual-text {
  color: #fff;
  font-weight: 500;
  font-size: 1.286rem;
  letter-spacing: 0;
  margin-bottom: 9.6%;
  margin-bottom: 160px;
  font-family: "Shippori Mincho", serif;
}
.p-top__mainvisual-text div {
  font-weight: 300;
  font-size: 5.857rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
/* SCROLL INDICATOR */
.p-top__mainvisual .c-scroll-indi {
  position: absolute;
  bottom: 2px;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-scroll-indi a {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 300;
  font-size: 0.929rem;
  letter-spacing: 0.03em;
}
.c-scroll-indi div {
  position: relative;
  height: 121px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.c-scroll-indi div::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -2px;
  -webkit-animation: scroll 3s ease-in-out infinite;
  animation: scroll 3s ease-in-out infinite;
}
@-webkit-keyframes scroll {
  to {
    top: 100%;
  }
}
@keyframes scroll {
  to {
    top: 100%;
  }
}
@media screen and (max-width: 991px) {
  .p-top__mainvisual .c-scroll-indi {
    bottom: -33%;
    right: -4%;
  }
  .p-top__mainvisual-text div {
    font-size: 5rem;
  }
}
@media screen and (max-width: 749px) {
  .p-top__mainvisual-text {
    font-size: 1.2rem;
  }
  .p-top__mainvisual-text div {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .p-top__mainvisual .l-container {
    padding-bottom: 0;
    bottom: 0;
  }
  .p-top__mainvisual-textbox01_txt2 {
    margin-bottom: 0;
  }
  .p-top__mainvisual-textbox01_txt {
    font-size: 1.2rem;
  }
  .p-top__mainvisual-textbox01_txt span {
    font-size: 0.8rem;
  }
  .p-top__mainvisual-text {
    margin-bottom: 80px;
  }
  #slider-mainvisual__small {
    display: none;
  }
  .p-top__mainvisual .c-scroll-indi {
    margin-top: 35px;
    position: static;
  }
  .c-scroll-indi a {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    margin-bottom: 10px;
  }
  .c-scroll-indi div {
    height: 60px;
  }
}
/* VIRTUAL */
.virtual_block_container {
  width: 90%;
  max-width: 1525px;
  margin: 6rem auto 10rem;
}
.virtual_block_container .c-section-row {
  justify-content: center;
}
/*.virtual_box {
  width: 100%;
  margin: 4rem auto 0;
  max-width: 1280px;
  height: 730px;
}*/
.virtual_block {
    display: flex;
    justify-content: center;
}
.virtual_unit {
  width: 48%;
  text-align: center;
}
.virtual_unit .c-title1 {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .virtual_block_container {
    margin: 4rem auto 8rem;
  }
  /*  .virtual_box {
    height: 560px;
  }*/
}
@media screen and (max-width: 991px) {
  .virtual_block {
    flex-direction: column;
  }
  .virtual_unit {
    width: 100%;
  }
  .virtual_block .virtual_unit:first-child {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 576px) {
  .virtual_block_container .c-title1 .p-top__reason_title {
    font-size: 2.3rem;
  }
  .virtual_block_container {
    margin: 1rem auto 4rem;
  }
}
/* REASON */
.p-top__reason {
  background-color: #f2f2f2;
}
.p-top__reason-container {
  max-width: 1500px;
  padding-top: 100px;
  padding-bottom: 60px;
}
.p-top__reason .c-section-row {
  margin-bottom: 4rem;
  justify-content: center;
}
.c-title1 .p-top__reason_title {
  font-size: 5rem;
}
.p-top__reason .c-title1 {
  text-align: center;
  color: #000;
  line-height: 1.4;
}
.reason_block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason_block li {
  width: calc(100% / 3 - 15px);
  padding: 1.5rem 0;
  border-right: solid 1px #c4c4c4;
}
.reason_block li:nth-child(1) {
  border-left: solid 1px #c4c4c4;
}
.reason_unit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason_unit_box1 {
  text-align: center;
  line-height: 1.3;
  margin-right: 1rem;
}
.reason_unit_txt1 {
  margin-bottom: 0;
  font-size: 1.85rem;
}
.reason_unit_txt2 {
  margin-bottom: 0;
  font-size: 0.85rem;
}
.reason_unit_box2 {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.reason_unit_txt3 {
  margin-bottom: 0;
}
.reason_unit_txt3 span {
  margin-bottom: 0;
  padding: 0 10px;
  font-size: 1.7rem;
  background: linear-gradient(transparent 50%, #fff 0%);
}
.reason_unit_txt4 {
  display: inline-block;
  background-color: #fff;
  padding: 5px;
  font-size: 1.75rem;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 0;
}
.reason_btn a {
  border: 1px solid #c4c4c4;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 580px;
  margin: 6rem auto 2rem;
  transition: all 0.5s;
}
.reason_btn a:hover {
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 1200px) {
  .reason_block li {
    width: calc(100% / 3 - 0px);
  }
  .reason_unit_txt1 {
    font-size: 1.6rem;
  }
  .reason_unit_txt2 {
    font-size: 0.7rem;
  }
  .reason_unit_txt3 span {
    font-size: 1.2rem;
  }
  .reason_unit_txt4 {
    font-size: 1.34rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 991px) {
  .reason_block {
    display: block;
    width: 80%;
    margin: 2rem auto;
  }
  .reason_unit {
    justify-content: flex-start;
    width: 86%;
    margin: 0 auto;
  }
  .reason_block li {
    width: 100%;
    margin-bottom: 0;
    border-right: none;
    border-bottom: solid 1px #c4c4c4;
  }
  .reason_block li:nth-child(1) {
    border-top: solid 1px #c4c4c4;
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .p-top__reason-container {
    max-width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__reason-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-top__reason .c-section-row {
    margin-bottom: 32px;
  }
  .c-title1 .p-top__reason_title {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }
  .reason_block {
    width: 90%;
  }
  .reason_btn a {
    border: none;
    margin: 3rem auto 0;
    padding: 0;
  }
}
/* banner */
.interview_container_outer {
  background-color: #fff;
  padding: 6rem 0;
}
.interview_container {
  display: block;
  width: 90%;
  margin: 4rem auto;
  max-width: 1000px
}
.interview_block_pc {
  display: block;
}
.interview_block_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.interview_block_sp {
  display: none;
}
@media screen and (max-width: 576px) {
  .interview_container_outer {
    padding: 4rem 0;
  }
  .interview_container {
    margin: 0 auto;
  }
  .interview_block_pc {
    display: none;
  }
  .interview_block_sp {
    display: block;
  }
  .interview_block_sp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* PRODUCT */
.p-top__product {
  padding: 46px 22px 0;
  text-align: center;
  position: relative;
}
.p-top__product .c-title1 {
  margin-top: 46px;
  margin-bottom: 46px;
}
.p-top__product_sptxt {
  display: none;
}
/* LIST */
.p-top__product-list li {
  width: 25%;
}
.p-top__product-list a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.p-top__product-list a:hover {
  opacity: 0.8;
}
/* INNER */
.p-top__product-list .item-inner {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fff;
  position: relative;
  border-bottom: 1px solid rgba(183, 183, 183, 0.25);
  border-left: 1px solid rgba(183, 183, 183, 0.25);
  padding: 32px 10px 62px;
  height: 230px;
}
.p-top__product-list li:last-child .item-inner {
  border-right: 1px solid rgba(183, 183, 183, 0.25);
}
.p-top__product-list .item-inner_spbox {
  display: none;
}
/* IMGAES */
.p-top__product-list img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
/* MAIN IMAGE */
.p-top__product-list .c-img-wrapper {
  height: 338px;
}
.p-top__product-list .c-img-wrapper img {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease-in;
}
.p-top__product-list .c-img-wrapper img:hover {
  filter: grayscale(0%);
}
/* HOUSE IMAGE */
.p-top__product-list img.house-img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.p-top__product-list img.house-img1 {
  max-width: 198px;
  top: -84px;
}
.p-top__product-list img.house-img2 {
  max-width: 144px;
  top: -100px;
}
.p-top__product-list img.house-img3 {
  max-width: 101px;
  top: -84px;
}
.p-top__product-list img.house-img4 {
  max-width: 146px;
  top: -85px;
}
/* LOGO TXT */
.p-top__product-list img.homa-logo {
  max-width: 85px;
  margin-bottom: 22px;
}
.p-top__product-list img.homa-txt {
  max-width: 197px;
}
.p-top__product-list img.kaku-logo {
  max-width: 132px;
  margin-bottom: 13px;
  margin-top: 10px;
}
/* HOUSE SHAPES */
.p-top__product-list .small-imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 28px;
}
.p-top__product-list .small-imgs2 {
  margin-top: 19px;
}
.p-top__product-list .small-img {
  margin: 0 11px 8px;
}
.p-top__product-list .house-shape {
  width: 62px;
  height: 21px;
  margin-left: auto;
  margin-right: auto;
  -webkit-clip-path: polygon(50% 20%, 100% 0, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(50% 20%, 100% 0, 100% 100%, 0 100%, 0 0);
  margin-bottom: 5px;
}
.p-top__product-list .house-shape2 {
  height: 30px;
  -webkit-clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
  clip-path: polygon(50% 0, 100% 30%, 100% 100%, 0 100%, 0 30%);
}
.p-top__product-list .house-shape--blue {
  background-color: #7a84a9;
}
.p-top__product-list .house-shape--green {
  background-color: #497252;
}
.p-top__product-list .house-shape--brown {
  background-color: #be715a;
}
/* TEXT */
.p-top__product-list p {
  margin-bottom: 0;
}
.p-top__product-list .f-ship {
  letter-spacing: 0;
  font-weight: 400;
}
.p-top__product-list .f-ship.fs-b1 {
  font-size: 1.714rem;
  margin-bottom: 10px;
}
.p-top__product-list .f-ship.fs-b2 {
  font-size: 1.357rem;
}
.p-top__product-list .f-ship.fs-s {
  font-size: 0.857rem;
  margin-bottom: 11px;
}
.p-top__product-list .f-eng {
  font-weight: 300;
  letter-spacing: 0.03em;
  font-size: 0.929rem;
}
.p-top__product-list .f-eng--sm {
  color: #666666;
  font-size: 0.8rem;
}
.p-top__product_btn_sp {
  display: none;
}
@media screen and (max-width: 1250px) {
  .p-top__product-list .item-inner {
    padding: 32px 10px;
  }
}
@media screen and (max-width: 991px) {
  .p-top__product-list li {
    width: 50%;
  }
  .p-top__product-list li:nth-child(n + 3) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__product {
    padding: 0;
    position: relative;
    z-index: 0;
  }
  .p-top__product .c-title1 .f-eng {
    margin-bottom: 5px;
  }
  .p-top__product h2 {
    text-align: left;
    width: 90%;
    margin: 1rem auto;
  }
  .p-top__product_sptxt {
    display: block;
    color: #666666;
    font-size: 0.9rem;
    text-align: left;
    width: 90%;
    margin: 1rem auto 0;
  }
  .p-top__product::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background-color: #f4eff1;
    position: absolute;
    bottom: 65px;
    right: 0;
    z-index: -1;
  }
  .p-top__product .c-title1 {
    margin-bottom: 25px;
    margin-top: 40px;
  }
  .p-top__product-list li {
    width: 100%;
  }
  .p-top__product-list li:nth-child(n + 2) {
    margin-top: 30px;
  }
  .p-top__product-list .c-img-wrapper {
    height: 250px;
  }
  .p-top__product-list .item-inner {
    padding: 20px 10px;
    border-left: none;
    display: none;
  }
  .p-top__product-list .c-img-wrapper img {
    filter: grayscale(0%);
  }
  .p-top__product-list .item-inner_spbox {
    display: block;
    width: 94%;
    padding: 2rem 1rem 2rem;
    text-align: left;
    position: relative;
    z-index: 0;
    top: -75px;
    padding-left: 7%;
    height: 160px;
  }
  .p-top__product-list .item-inner_spbox::before {
    content: "";
    display: block;
    width: 100%;
    height: 85%;
    background-color: #fff;
    position: absolute;
    bottom: -5px;
    right: 0;
    z-index: -1;
  }
  .item-inner_spbox_img_box img {
    margin: 5px 0;
  }
  .item-inner_spbox_img_box .homa-logo {
    width: 70px;
  }
  .p-top__product-list .item-inner_spbox_txt {
    font-size: 2.2rem;
    margin-top: -2rem;
  }
  .inner_spbox_txt02 {
    margin-top: -1px;
    color: #666666;
  }
  .inner_spbox_txt03 {
    margin-top: -9px;
    color: #666666;
  }
  /*プログレスバー1*/
  .progBar {
    width: 50px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    border-radius: 10px;
    display: flex;
    align-items: center;
    left: 45px;
    bottom: 23px;
    margin-top: 20px;
  }
  .progBar::before {
    content: "1";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    left: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  .progBar::after {
    content: "4";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    right: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  /*プログレスバー2*/
  .progBar2 {
    width: 50px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    border-radius: 10px;
    display: flex;
    align-items: center;
    left: 45px;
    bottom: 23px;
    margin-top: 20px;
  }
  .progBar2::before {
    content: "2";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    left: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  .progBar2::after {
    content: "4";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    right: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  /*プログレスバー3*/
  .progBar3 {
    width: 50px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    border-radius: 10px;
    display: flex;
    align-items: center;
    left: 45px;
    bottom: 23px;
    margin-top: 20px;
  }
  .progBar3::before {
    content: "3";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    left: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  .progBar3::after {
    content: "4";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    right: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  /*プログレスバー4*/
  .progBar4 {
    width: 50px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    border-radius: 10px;
    display: flex;
    align-items: center;
    left: 45px;
    bottom: 23px;
    margin-top: 20px;
  }
  .progBar4::before {
    content: "4";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    left: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  .progBar4::after {
    content: "4";
    font-family: "Marcellus", sans-serif;
    display: block;
    width: 10px;
    height: 10px;
    color: #000;
    position: absolute;
    right: -20px;
    top: -15px;
    font-size: 1.1rem;
  }
  .p-top__product-list li:last-child .item-inner {
    border-right: none;
  }
  .p-top__product-list .f-ship.fs-b1 {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .p-top__product-list .small-imgs {
    margin-top: 16px;
  }
}
.product_single_spbox_outer {
  display: none;
}
.product_thumbnail_spbox {
  display: none;
}
/****************
slick
*******************/
@media screen and (max-width: 576px) {
  #slider-product .slick-prev {
    left: auto;
    right: 76px;
    top: 77%;
    z-index: 100;
    border: solid 1px #808080;
    background-color: #fff;
    color: #000;
    width: 35px;
    height: 35px;
  }
  #slider-product .slick-prev::before {
    color: #000;
  }
  #slider-product .slick-next {
    right: 34px;
    top: 77%;
    z-index: 100;
    border: solid 1px #808080;
    background-color: #fff;
    color: #000;
    width: 35px;
    height: 35px;
  }
  #slider-product .slick-next::before {
    color: #000;
  }
  .product_single_spbox_outer {
    display: block;
    margin-top: -295px;
    margin-bottom: 120px;
    margin-right: 0;
    margin-left: auto;
    width: 150px;
  }
  .product_single li a {
    display: block;
    width: 120px;
    height: 120px;
  }
  .product_single li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .product_thumbnail_spbox {
    display: block;
    position: relative;
    z-index: 0;
    margin-top: -6rem;
  }
  .product_thumbnail {
    width: 70%;
    margin-left: 5%;
  }
  .product_thumbnail li a {
    display: block;
    width: 70px;
    height: 70px;
  }
  .product_thumbnail_imgbox {
    display: block;
    width: 80px !important;
    height: 80px !important;
  }
  .product_thumbnail_imgbox2 {
    display: block;
    width: 65px !important;
    height: 65px !important;
  }
  .product_thumbnail li a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #slider-product .slick-dots {
    position: absolute;
    top: 155px;
  }
  #slider-product .slick-dots li {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
  }
  #slider-product .slick-dots li:nth-child(1) {
    position: absolute;
    top: 20px;
    right: 0;
  }
  #slider-product .slick-dots li:nth-child(1) button::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-image: url("../images/page/4.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0px;
  }
  #slider-product .slick-dots li:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
  }
  #slider-product .slick-dots li:nth-child(2) button::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-image: url("../images/page/6.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0px;
  }
  #slider-product .slick-dots li:nth-child(3) {
    position: absolute;
    top: 0;
    right: 0;
  }
  #slider-product .slick-dots li:nth-child(3) button::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-image: url("../images/page/3.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0px;
  }
  #slider-product .slick-dots li:nth-child(4) {
    position: absolute;
    top: 0;
    right: 0;
  }
  #slider-product .slick-dots li:nth-child(4) button::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background-image: url("../images/page/9.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0px;
  }
  .slick-dots li button::before {
    content: "";
    display: block;
    opacity: 0 !important;
  }
  .slick-dots li.slick-active button::before {
    content: "";
    display: block;
    opacity: 1 !important;
  }
  /*product_thumbnail*/
  .product_thumbnail .slick-dots {
    position: absolute;
    left: 24px;
    top: -48px;
    width: 50px;
    height: 2px;
  }
  .product_thumbnail .slick-dots li {
    width: 50px;
    height: 2px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    background: #E8E8E8;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
  }
  .product_thumbnail .slick-dots li.slick-active button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000;
    animation: progress 6.5s linear 0s forwards; /* ここでアニメーションのスピードをスライドの秒数に合わせて調整をする */
    z-index: 1;
  }
  @keyframes progress {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
}
/****************
slick-end
*******************/
/* MODELHOUSE */
.p-top2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.modelhouse_block01 {
  display: flex;
  justify-content: center;
}
.modelhouse_unit001 {
  width: 48%;
  margin: 0 auto;
}
.modelhouse_unit002 {
  width: 48%;
  margin: 0 auto;
}
.p-top2__modelhouse_sp {
  display: none;
}
.p-top2__modelhouse_pc {
  display: block;
  height: auto;
}
.p-top2__modelhouse_pc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* showroom */
.p-top2__showroom_sp001 {
  display: none;
}
.p-top2__showroom_pc001 {
  display: block;
  height: auto;
}
.p-top2__showroom_pc001 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-top2__modelhouse img.model-txt {
  width: 90%;
  max-width: 600px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .p-top2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .p-top2__modelhouse {
    width: 100%;
    min-height: 300px;
    margin-bottom: 30px;
  }
  .modelhouse_block01 {
    display: block;
  }
  .modelhouse_unit001 {
    width: 100%;
    margin: 0 auto 2rem;
  }
  .modelhouse_unit002 {
    width: 100%;
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 576px) {
  .p-top2__modelhouse_pc {
    display: none;
  }
  .p-top2__modelhouse_sp {
    display: block;
    height: 400px;
  }
  .p-top2__modelhouse_sp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .p-top2__showroom_pc001 {
    display: none;
  }
  .p-top2__showroom_sp001 {
    display: block;
    height: 400px;
  }
  .p-top2__showroom_sp001 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .p-top2__modelhouse {
    min-height: 259px;
  }
  .p-top2 {
    padding-top: 1rem;
    padding-bottom: 4rem;
  }
}
/* GALLERY */
.p-top__gallery {
  background-image: -webkit-gradient(linear, left top, right top, from(#f2f2f2), color-stop(20%, #f2f2f2), color-stop(20%, #f2f2f2));
  background-image: -o-linear-gradient(left, #f2f2f2, #f2f2f2 20%, #f8f8f8 20%);
  background-image: linear-gradient(to right, #f2f2f2, #f2f2f2 20%, #f8f8f8 20%);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top right;
  padding-top: 64px;
  padding-bottom: 143px;
  position: relative;
  overflow: hidden;
}
.p-top__gallerycontainer {
  max-width: 1525px;
}
.p-top__gallery-bg {
  width: 90%;
  max-width: 1088px;
  position: absolute;
  bottom: -7px;
  right: -0.7%;
}
.p-top__gallery .c-title1 {
  padding-bottom: 12px;
}
#slider-gallery {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
#slider-gallery .slick-list {
  margin: 0 -12.5px;
}
#slider-gallery .slick-slide {
  margin: 0 12.5px;
}
#slider-gallery .slick-dots {
  bottom: -72px;
}
#slider-gallery .slick-dots li button {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 991px) {
  .p-top__gallery {
    background-color: #f2f2f2;
    background-image: none;
    padding-bottom: 100px;
  }
  .p-top__gallery .c-title1 {
    padding-bottom: 0;
  }
  #slider-gallery .slick-dots {
    bottom: -50px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__gallery {
    padding-top: 40px;
  }
  .p-top__gallery-bg {
    display: none;
  }
}
/* DESIGN */
.p-top__design {
  max-width: 1160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 94px;
  padding-bottom: 142px;
  position: relative;
}
.p-top__design::before {
  content: "";
  display: block;
  width: 112px;
  height: 224px;
  background-image: url("../images/svg/design_5.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 60px;
  left: -48px;
}
.p-top__design-bg {
  width: 44.6%;
}
.p-top__design-bg_imgbox {
  display: block;
}
.p-top__design-bg_imgbox:hover {
  opacity: 0.9;
}
.p-top__design_pc_box {
  display: block;
}
.p-top__design-bg_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-top__design .c-section-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 10px;
}
.p-top__design .c-title1 {
  font-size: 1.15rem;
  color: #4d4d4d;
}
.p-top__design .c-title1 .f-eng {
  color: #575a5f;
  margin-bottom: 14px;
}
.p-top__design .c-section-p {
  max-width: 472px;
}
.p-top__design_sp_box {
  display: none;
}
@media screen and (max-width: 1300px) {
  .p-top__design {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-top__design-bg {
    width: 48%;
  }
}
@media screen and (max-width: 991px) {
  .p-top__design {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 85px;
  }
  .p-top__design-bg {
    width: 65%;
  }
  .p-top__design_pc_box {
    display: none;
  }
  .p-top__design .c-section-info {
    padding-top: 40px;
    text-align: center;
  }
  .p-top__design .c-btn1 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .p-top__design_sp_box {
    display: block;
    margin: 2rem auto;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .p-top__design {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .p-top__design::before {
    left: auto;
    right: 0;
    top: 30px;
  }
  .p-top__design .c-section-info .c-section-p--big {
    font-size: 1.5rem;
  }
  .p-top__design-bg {
    width: 100%;
  }
  .p-top__design-bg_imgbox {
    margin: 2rem auto;
  }
  .p-top__design_sp_box .c-btn1 {
    background-color: #808590;
    padding: 14px 57px;
    border-radius: 25px;
    color: #fff;
    margin-top: 2rem;
  }
}
/* EVENT */
.p-top__event-container {
  max-width: 1090px;
  padding-top: 72px;
  padding-bottom: 115px;
}
.p-top__event .c-section-row {
  margin-bottom: 34px;
}
.p-top__event .c-title1 {
  padding-bottom: 4px;
}
.p-top__event li {
  width: calc((100% - 132px) / 3);
}
@media screen and (max-width: 1200px) {
  .p-top__event li {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (max-width: 991px) {
  .p-top__event li {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-top__event-container {
    max-width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__event-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-top__event .c-section-row {
    margin-bottom: 20px;
  }
}
/* INSTAGRAM */
.p-top2 {
  max-width: 1332px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  padding-bottom: 60px;
}
.p-top2__instagram {
  -ms-flex-preferred-size: 260px;
  flex-basis: 260px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 68px;
}
@media screen and (max-width: 991px) {
  .p-top2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-top2__modelhouse {
    width: 100%;
    min-height: 300px;
    margin-bottom: 30px;
  }
  .p-top2__instagram {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -ms-flex-negative: auto;
    flex-shrink: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .p-top2__modelhouse {
    min-height: 259px;
  }
  .p-top2__modelhouse img.model-logo {
    width: 60px;
    top: 10px;
    left: 10px;
  }
}
/* CONCEPT */
.p-top__concept {
  background-color: #f2f2f2;
  padding-top: 104px;
  padding-bottom: 108px;
}
.p-top__concept .c-section-textimg {
  max-width: 1556px;
}
.p-top__concept .c-slider-wrapper {
  width: 54.3%;
}
#slider-concept, #slider-concept .slick-list, #slider-concept .slick-track, #slider-concept img {
  height: 100%;
}
#slider-concept {
  width: 100%;
  margin-bottom: 0;
}
#slider-concept img {
  margin-bottom: 0;
}
#slider-concept__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  width: 158px;
  height: 56px;
}
#slider-concept__arrow::after {
  content: "";
  width: 1px;
  height: 8px;
  background-color: rgba(102, 102, 102, 0.41);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#slider-concept__arrow button {
  width: 50%;
  height: 100%;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  top: 0;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
#slider-concept__arrow button::before {
  display: inline-block;
  color: #666666;
  font-size: 1.143rem;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#slider-concept__arrow .slick-prev:hover::before {
  -webkit-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  transform: translateX(-5px);
}
#slider-concept__arrow .slick-next:hover::before {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
#slider-concept__arrow .slick-prev {
  left: 0;
}
#slider-concept__arrow .slick-next {
  right: 0;
}
#slider-concept__arrow button:hover::before {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.p-top__concept .c-section-info {
  padding-left: 6.2%;
  padding-top: 32px;
  padding-bottom: 100px;
}
.p-top__concept .c-title1 {
  margin-bottom: 62px;
  color: #303030;
}
.p-top__concept .c-section-p--big {
  color: #333;
}
.p-top__concept .c-section-p {
  color: #4d4d4d;
}
@media screen and (max-width: 1600px) {
  .p-top__concept .c-slider-wrapper {
    width: 50%;
  }
  .p-top__concept .c-section-info {
    padding-bottom: 32px;
    padding-left: 5%;
  }
}
@media screen and (max-width: 991px) {
  .p-top__concept {
    padding-bottom: 40px;
  }
  .p-top__concept .c-section-textimg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-top__concept .c-slider-wrapper {
    width: 100%;
  }
  .p-top__concept .c-section-info {
    padding-left: 0;
    padding-top: 40px;
  }
  .p-top__concept .c-title1 {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__concept {
    padding-top: 40px;
  }
  #slider-concept__arrow {
    width: 90px;
    height: 45px;
  }
  .p-top__concept .c-section-info {
    padding-top: 25px;
    padding-bottom: 0;
  }
  /*  .p-top__concept .c-section-p br {
    display: none;
  }*/
}
/* TOP 3 */
.p-top3 {
  max-width: 1013px;
  padding-top: 64px;
  padding-bottom: 102px;
}
/* BUILDING */
.p-top__building {
  margin-bottom: 98px;
}
.p-top__building .c-title1 .f-eng {
  font-size: 5.857rem;
  margin-bottom: -20px;
}
.p-top__building .c-section-p--big {
  font-size: 1.714rem;
  color: #231815;
  margin-bottom: 20px;
}
.p-top__building .c-section-p {
  color: #4d4d4d;
  line-height: 27px;
  margin-bottom: 45px;
}
.p-top__building-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  counter-reset: navlink;
  margin-bottom: 0;
  margin: 0 -42px;
}
.p-top__building-nav li {
  width: 20%;
  margin: 0 2% 20px;
  border-bottom: 1px solid rgba(183, 183, 183, 0.25);
  border-left: 1px solid rgba(183, 183, 183, 0.25);
  padding: 0 1rem 1rem 1rem;
}
.p-top__building-nav a {
  display: block;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 1.286rem;
  letter-spacing: 0;
  padding-left: 18px;
  padding-top: 40px;
}
.p-top__building-nav a::before, .p-top__building-nav a::after {
  content: "";
  position: absolute;
}
.p-top__building-nav a::before {
  counter-increment: navlink;
  content: "0 "counter(navlink);
  font-weight: 400;
  font-size: 0.714rem;
  letter-spacing: 0;
  top: 0;
  left: 0;
}
.p-top__building-nav a::after {
  width: 1px;
  height: 14px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
  background-color: rgba(0, 0, 0, 0.25);
  top: 15px;
  left: 16px;
}
.p-top__building-nav a span {
  display: block;
  color: #4d4d4d;
  font-weight: 300;
  font-size: 0.929rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 991px) {
  .p-top__building .c-title1 .f-eng {
    font-size: 3.571rem;
    margin-bottom: -6px;
  }
  .p-top__building-nav a {
    padding-top: 28px;
    padding-left: 25px;
  }
  .p-top__building-nav a::before {
    font-size: 0.929rem;
  }
  .p-top__building-nav a::after {
    top: 18px;
    left: 20px;
  }
}
@media screen and (max-width: 576px) {
  .p-top3 {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .p-top__building {
    margin-bottom: 40px;
  }
  .p-top__building .c-title1 .f-eng {
    font-size: 2.286rem;
    margin-bottom: 5px;
  }
  .p-top__building .c-section-p {
    line-height: 25px;
    margin-bottom: 25px;
  }
  .p-top__building .c-section-p--big {
    font-size: 1.286rem;
    line-height: normal;
  }
  .p-top__building-nav {
    justify-content: space-between;
    margin: 0;
  }
  .p-top__building-nav li {
    width: 90%;
    margin: 0 0 1rem 0;
  }
  .p-top__building-nav a {
    font-size: 1.2rem;
  }
  .p-top__building-nav a::before {
    font-size: 1rem;
  }
}
/* INFORMATION */
.p-top__information .c-section-row {
  margin-bottom: 32px;
}
.p-top__information-list li:first-child a {
  border-top: 1px solid;
}
.p-top__information .c-btn1--sp {
  max-width: 206px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-top__information-list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .p-top__information .c-section-row {
    margin-bottom: 20px;
  }
  .p-top__information-list {
    margin-bottom: 0;
  }
  .p-top__information .c-btn1--sp {
    margin-top: 30px;
    max-width: 230px;
    margin-left: 0;
  }
}