@charset "UTF-8";
/* BASE
 * * -----------------------------------------------*/
/* MEDIA QUERIES
 * * -----------------------------------------------*/
/* ADDITIONAL RESET
 * * -----------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button {
  line-height: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  -webkit-appearance: none;
  font: inherit;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: auto;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

/* PRINTING
 * * -----------------------------------------------*/
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * * -----------------------------------------------*/
body {
  color: #333;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Verdana, Meiryo, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
}

/* HELPERS
 * * -----------------------------------------------*/
a {
  color: #333;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* RESPONSIVE
 * * -----------------------------------------------*/
.container {
  overflow: hidden;
  position: relative;
}

@media print, (min-width: 768px) {
  body {
    font-size: 14px;
  }

  .wrapper {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px;
  }

  .sm {
    display: none !important;
  }

  .trans {
    opacity: 1;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767.98px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 7.5);
  }

  body {
    font-size: 0.28rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}
time {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}

/* PARTS
 * * -----------------------------------------------*/
/* COMMON HEADER
 * * -----------------------------------------------*/
header.is-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
header.sub-page {
  background: #fff;
}
@media print, (min-width: 768px) {
	header.sub-page {
    border-bottom: 20px solid #999;
	}
}
@media only screen and (max-width: 767.98px) {
  header.sub-page {
    border-bottom: 15px solid #999;
  }
  header.sub-page .button-open-menu {
    position: relative;
    bottom: -0.09rem;
  }
}

.wrapper-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
@media print, (min-width: 768px) {
  .wrapper-header {
    margin: 0 auto;
    max-width: 1345px;
    padding: 26px 50px 0;
  }
  .sub-page .wrapper-header {
    padding: 22px 50px 19px;
  }
}
@media only screen and (max-width: 767.98px) {
  .wrapper-header {
    padding: 0.27rem 0.35rem;
  }
  .sub-page .wrapper-header {
    padding: 0.34rem 0.35rem 0.24rem;
  }
}
.wrapper-header .logo {
  position: relative;
  z-index: 1;
}
@media print, (min-width: 768px) {
  .sub-page .wrapper-header .logo {
    margin-top: 23px;
    margin-left: -18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sub-page .wrapper-header .logo {
    margin-top: 0.11rem;
    margin-left: -0.05rem;
  }
}

.logo-image {
  display: block;
}
.logo-image img {
  width: 100%;
}
@media print, (min-width: 768px) {
  .logo-image {
    width: 151px;
  }
}
@media only screen and (max-width: 767.98px) {
  .logo-image {
    width: 3.02rem;
  }
}

.button-open-menu,
.button-close-menu {
  cursor: pointer;
  z-index: 99;
}

.button-open-menu {
  /*background: url(../img/common/icon_menu_open.svg) no-repeat center/100% auto;*/
  background: url(../img/common/icon_menu_open_gr.svg) no-repeat center/100% auto !important;
}
@media print, (min-width: 768px) {
  .button-open-menu {
    width: 68px;
    height: 68px;
    margin-right: -5px;
    margin-top: -2px;
  }
}
@media only screen and (max-width: 767.98px) {
  .button-open-menu {
    width: 0.95rem;
    height: 0.95rem;
    margin-top: -0.12rem;
    margin-right: -0.1rem;
    background-image: url(../img/common/sp/icon_menu_open.svg);
    background-size: 0.89rem auto;
  }
}

.button-close-menu {
  position: absolute;
  background: url(../img/common/icon_menu_close.svg) no-repeat center/100% auto;
}
@media print, (min-width: 768px) {
  .button-close-menu {
    width: 28px;
    height: 28px;
    right: 65px;
    top: 43px;
  }
}
@media only screen and (max-width: 767.98px) {
  .button-close-menu {
    width: 0.8rem;
    height: 0.8rem;
    top: 0.15rem;
    right: 0.23rem;
    background-size: 0.28rem auto;
  }
}

.header-virus-measures {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  color: #fff;
  background-color: #989898;
  text-align: center;
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
}
.header-virus-measures::before {
  content: "";
  display: block;
  background: url(../img/common/infor_icn.svg) center/100% no-repeat;
  position: relative;
}

@media print, (min-width: 768px) {
  .header-virus-measures {
    min-height: 62px;
    padding-top: 4px;
    font-size: 19px;
  }
  .is-safari .header-virus-measures {
    padding-top: 2px;
  }
  header .header-virus-measures {
    min-height: 63px;
  }
  .header-virus-measures::before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    bottom: 3px;
  }
  .is-safari .header-virus-measures::before {
    bottom: 2px;
  }
}
@media only screen and (max-width: 767.98px) {
  .header-virus-measures {
    min-height: 0.97rem;
    padding: 0.08rem 0.2rem 0.02rem;
    font-size: 0.31rem;
  }
  .header-virus-measures::before {
    bottom: 0.03rem;
  }
  .is-android .header-virus-measures::before {
    bottom: 0;
  }
  .is-android .header-virus-measures {
    padding-top: 0.06rem;
    padding-bottom: 0.06rem;
  }
  header .header-virus-measures {
    min-height: 1rem;
    padding: 0.08rem 0.2rem 0.06rem;
  }
  .header-virus-measures::before {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.15rem;
  }
}
.wrapper-navigation {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  background: #fff;
  display: none;
  overflow-y: scroll;
  height: 100%;
}

@media print, (min-width: 768px) {
  .header-navigation {
    padding: 98px 0 50px;
    max-width: 1345px;
    margin: 0 auto;
    position: relative;
  }
}
@media only screen and (max-width: 767.98px) {
  .header-navigation {
    padding: 1.33rem 0.33rem 0.2rem;
  }
}

.main-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main-menu-common {
  background: #00608a;
  text-align: center;
  overflow: hidden;
}

.main-menu-link {
  height: 100%;
  display: block;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.main-menu-link span {
  display: block;
}
.main-menu-link img {
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  position: absolute;
}

@media print, (min-width: 768px) {
  .main-menu {
    margin-bottom: 80px;
  }

  .main-menu-common {
    width: 112px;
    height: 112px;
    border-radius: 10px;
    margin: 0 14px;
  }
  .main-menu-common.consultation img {
    top: 29px;
  }
  .main-menu-common.open-house img {
    top: 25px;
  }
  .main-menu-common.request img {
    top: 27px;
  }
  .main-menu-common.contact img {
    top: 25px;
  }

  .main-menu-link {
    font-size: 18px;
    padding-top: 60px;
  }
  .main-menu-link span {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .main-menu {
    margin: 0 -0.3rem 0.58rem;
  }

  .main-menu-common {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 0.1rem;
    margin: 0 0.17rem;
  }
  .main-menu-common.consultation img {
    width: 0.46rem;
    top: 0.37rem;
  }
  .main-menu-common.open-house img {
    width: 0.48rem;
    top: 0.32rem;
  }
  .main-menu-common.request img {
    width: 0.44rem;
    top: 0.35rem;
  }
  .main-menu-common.contact img {
    width: 0.48rem;
    top: 0.33rem;
  }

  .main-menu-link {
    font-size: 0.23rem;
    padding-top: 0.8rem;
  }
  .main-menu-link span {
    margin-top: 0.1rem;
  }
}
.main-menu-header {
  font-weight: 700;
  display: inline-block;
}

.sub-menu-list a {
  display: inline-block;
  color: #4d4d4d;
}

.column-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media print, (min-width: 768px) {
  .menu-header-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1020px;
    margin: 0 auto 89px;
    padding: 0 20px;
  }
  .menu-header-list .menu-header {
    border-right: 1px dashed #000;
    padding: 0 0 16px 3.4%;
    margin-bottom: 60px;
  }
  .menu-header-list .menu-header:first-child, .menu-header-list .menu-header:nth-child(4) {
    border-left: 1px dashed #000;
  }
  .menu-header-list .menu-header:nth-child(1) {
    width: 15.6%;
  }
  .menu-header-list .menu-header:nth-child(2) {
    padding-left: 3.7%;
    width: 24%;
  }
  .menu-header-list .menu-header:nth-child(3) {
    padding-left: 4.5%;
    width: 60.3%;
  }
  .menu-header-list .menu-header:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
    padding-top: 11px;
  }
  .menu-header-list .menu-header:nth-child(4) {
    width: 26.7%;
  }
  .menu-header-list .menu-header:nth-child(5) {
    padding-left: 4%;
    width: 33.5%;
  }
  .menu-header-list .menu-header:nth-child(6) {
    padding-left: 3.9%;
    /*width: 23.34%;*/
    width: 20.34%;
  }
  .menu-header-list .menu-header:nth-child(7) {
    /*width: 16.4%;*/
    width: 19.4%;
  }

  .main-menu-header {
    font-size: 24px;
  }

  .sub-menu-list {
    margin-top: 32px;
    font-size: 16px;
  }
  .sub-menu-list a {
    line-height: 2.1875;
    background: url(../img/common/icon_arrow_02.svg) no-repeat left top 11px/9px 12px;
    padding-left: 14px;
  }
  .is-ipad .sub-menu-list a {
    background-position: left top 12px;
  }

  .column-menu-detail:not(:last-child) {
    margin-right: 9.8%;
  }
}
@media only screen and (max-width: 767.98px) {
  .menu-header-list {
    margin-bottom: 0.8rem;
  }
  .menu-header-list .menu-header {
    border-bottom: 0.01rem dashed #000;
    padding: 0.23rem 0 0.27rem;
  }
  .menu-header-list .menu-header:last-child {
    padding-top: 0.32rem;
  }

  .main-menu-header {
    font-size: 0.36rem;
  }

  span.main-menu-header {
    display: block;
    padding-right: 0.4rem;
    position: relative;
  }
  span.main-menu-header:after {
    content: "";
    position: absolute;
    right: 0.09rem;
    top: 31%;
    width: 0.33rem;
    height: 0.2rem;
    background: url(../img/common/sp/icon_arrow_01.svg) no-repeat center/0.33rem 0.2rem;
    transition: transform 0.3s;
  }

  .is-active span.main-menu-header:after {
    -ms-transform: rotate(180deg);
        transform: rotate(180deg);
  }

  .sub-menu-list {
    margin-top: 0.32rem;
    display: none;
  }
  .sub-menu-list a {
    background: url(../img/common/sp/icon_arrow_02.svg) no-repeat left 0.05rem top 0.09rem/0.19rem 0.21rem;
    padding-left: 0.33rem;
  }
  .sub-menu-list .sub-menu {
    margin-bottom: 0.2rem;
  }

  .column-menu-header {
    display: none;
  }
  .column-menu-header .sub-menu-list {
    display: block;
    margin-left: -0.05rem;
  }

  .column-menu-detail {
    margin-right: 0.3rem;
  }
}
.common-info-contact {
  text-align: center;
}
.common-info-contact .info-address {
  line-height: 1.37;
}
.common-info-contact .address-map {
  border: 2px solid #000;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  font-weight: 700;
}
.common-info-contact .address-map,
.common-info-contact .telephone {
  display: inline-block;
}
.common-info-contact .telephone {
  line-height: 2;
  font-family: Arial, sans-serif;
  font-weight: bold;
  background: url(../img/common/icon_telephone.svg) no-repeat left center/22px 40px;
}
.common-info-contact .telephone,
.common-info-contact .time-work {
  color: #808080;
}
.common-info-contact .social-media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.common-info-contact .social-media a {
  display: block;
}
.common-info-contact .more-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.common-info-contact .more-info > li {
  width: 33.33%;
  background: #00608a;
}
.common-info-contact .more-info > li:not(:last-child) {
  border-right: 1px solid #fff;
}
.common-info-contact .more-info a {
  color: #fff;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
}
.common-info-contact .more-info span {
  background: no-repeat left center/100% auto;
}
.common-info-contact .consultation span {
  background-image: url(../img/common/icon_consultation_02.svg);
}
.common-info-contact .document span {
  background-image: url(../img/common/icon_document_02.svg);
}
.common-info-contact .inquiries span {
  background-image: url(../img/common/icon_inquiries_02.svg);
}
.common-info-contact .privacy-policy {
  font-weight: 700;
}
.common-info-contact .privacy-policy a {
  text-decoration: underline;
  color: #808080;
}
.common-info-contact .privacy-policy a:hover {
  text-decoration: none;
}
.common-info-contact .copyright {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #4d4d4d;
}

@media print, (min-width: 768px) {
  .common-info-contact .info-address {
    color: #666;
    font-size: 16px;
    margin-bottom: 38px;
  }
  .common-info-contact .address-map {
    font-size: 15px;
    padding: 4px 6px;
    margin-top: 21px;
  }
  .is-safari .common-info-contact .address-map {
    padding-top: 5px;
    padding-bottom: 2px;
  }
  .is-ipad .common-info-contact .address-map {
    height: 29px;
    padding-bottom: 0;
  }
  .is-firefox .common-info-contact .address-map {
    padding-top: 3px;
  }
  .common-info-contact .info-telephone {
    margin-bottom: 36px;
  }
  .common-info-contact .telephone {
    pointer-events: none;
    font-size: 27px;
    padding-left: 35px;
    background-position: left top 5px;
  }
  .common-info-contact .time-work {
    font-size: 15px;
  }
  .common-info-contact .time-work span {
    margin-left: 6px;
  }
  .common-info-contact .social-media {
    margin-bottom: 65px;
  }
  .common-info-contact .social-media > li {
    margin: 0 19px;
  }
  .common-info-contact .more-info {
    max-width: 872px;
    margin: 0 auto 40px;
  }
  .common-info-contact .more-info > li {
    height: 95px;
  }
  .common-info-contact .more-info a {
    font-size: 19px;
  }
  .common-info-contact .more-info span {
    padding-left: 42px;
  }
  .common-info-contact .consultation span {
    background-size: 29px 22px;
  }
  .common-info-contact .document span {
    background-size: 28px 24px;
  }
  .common-info-contact .inquiries span {
    background-size: 32px 27px;
  }
  .common-info-contact .privacy-policy {
    font-size: 15px;
    margin-bottom: 7px;
  }
  .common-info-contact .copyright {
    font-size: 12px;
  }
}
@media print, (min-width: 768px) and (max-width: 910px) {
  .menu-header-list .menu-header {
    padding-left: 2% !important;
    padding-right: 1%;
  }

  .main-menu-header {
    font-size: 2.5vw;
  }

  .sub-menu-list {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 767.98px) {
  header .more-info {
    margin: 0 -0.33rem;
  }

  .common-info-contact .info-address {
    color: #808080;
    font-size: 0.27rem;
    margin-bottom: 0.44rem;
  }
  .common-info-contact .address-map {
    border-width: 0.02rem;
    font-size: 0.25rem;
    padding: 0.08rem 0.12rem 0.05rem;
    margin-top: 0.24rem;
  }
  .is-android .common-info-contact .address-map {
    padding-top: 0.07rem;
    padding-bottom: 0.05rem;
  }
  .common-info-contact .info-telephone {
    margin-bottom: 0.85rem;
  }
  .common-info-contact .telephone {
    font-size: 0.41rem;
    padding-left: 0.52rem;
    background-size: 0.33rem 0.61rem;
    background-image: url(../img/common/sp/icon_telephone_01.svg);
  }
  .common-info-contact .time-work {
    font-size: 0.23rem;
  }
  .common-info-contact .time-work span {
    margin-left: 0.07rem;
  }
  .common-info-contact .social-media {
    margin-bottom: 0.53rem;
  }
  .common-info-contact .social-media > li {
    margin: 0 0.3rem;
  }
  .common-info-contact .more-info > li {
    height: 1rem;
  }
  .common-info-contact .more-info a {
    font-size: 0.23rem;
  }
  .common-info-contact .more-info span {
    padding-left: 0.52rem;
    line-height: 2;
  }
  .common-info-contact .consultation span {
    background-image: url(../img/common/sp/icon_consultation_02.svg);
    background-size: 0.36rem 0.3rem;
  }
  .common-info-contact .consultation:first-child span {
    padding-top: 0.03rem;
  }
  .common-info-contact .document span {
    background-size: 0.34rem 0.3rem;
    background-image: url(../img/common/sp/icon_document_02.svg);
  }
  .common-info-contact .inquiries span {
    background-size: 0.39rem 0.34rem;
    background-image: url(../img/common/sp/icon_inquiries_02.svg);
  }
  .common-info-contact .privacy-policy {
    font-size: 0.25rem;
    margin-bottom: 0.77rem;
  }
  .common-info-contact .copyright {
    font-size: 0.23rem;
    margin-bottom: 0.6rem;
  }

  .facebook img {
    width: 0.26rem;
  }

  .youtube img {
    width: 0.4rem;
  }

  .instagram img {
    width: 0.5rem;
  }

  .houzz img {
    width: 0.44rem;
  }
}
@media only screen and (max-width: 374px) {
  .address-map {
    padding-top: 0.1rem;
    padding-bottom: 0.03rem;
  }
}
/* COMMON FOOTER
 * * -----------------------------------------------*/
.special-contents-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.special-contents-detail {
  font-weight: 700;
}
.special-contents-detail a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  color: #fff;
  letter-spacing: 0.05em;
}
.special-contents-detail a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  z-index: 1;
}
.special-contents-detail .image,
.special-contents-detail a {
  width: 100%;
  height: 100%;
}
.special-contents-detail .image {
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.special-contents-detail span {
  position: relative;
  z-index: 1;
}

.logo-footer {
  display: inline-block;
}
.logo-footer img {
  width: 100%;
}

.special-contents-title img {
  width: 100%;
}

@media print, (min-width: 768px) {
  footer .common-info-contact {
    padding-bottom: 100px;
  }

  .special-contents {
    margin-bottom: 53px;
    padding: 30px 0 50px;
    border-bottom: 30px solid #999;
  }

  .special-contents-title {
    margin: 0 auto 34px;
    width: 221px;
  }

  .special-contents-detail {
    width: 20%;
    height: 133px;
    font-size: 14px;
    line-height: 1.312;
  }
  .special-contents-detail.is-half {
    width: 50%;
  }
  .button-to-top {
    width: 65px;
    height: 65px;
    background: url(../img/common/icon_btn_top.svg) no-repeat center/100% auto;
    cursor: pointer;
    right: 2px;
    top: calc(50% + 197px);
  }

  .menu-fixed {
    display: none;
    right: 1px;
    top: 50%;
  }

  .button-to-top,
.menu-fixed {
    position: fixed;
    z-index: 990;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
  }

  .menu-fixed-common {
    background: #00608a;
    width: 68px;
    height: 75px;
    margin-bottom: 2px;
  }
  .menu-fixed-common span {
    display: block;
    margin-top: 8px;
  }

  .menu-fixed-link {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 11px;
    padding-top: 20px;
    height: 100%;
    position: relative;
  }
  .menu-fixed-link::after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #fff;
    transition: opacity 0.25s ease;
    position: absolute;
    top: 0;
    left: 0;
  }
  .menu-fixed-link:hover::after {
    opacity: 0.2;
  }

  .logo-footer {
    width: 142px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  footer .common-info-contact {
    padding-bottom: 1.55rem;
  }
  footer .common-info-contact .address-map {
    margin-top: 0.39rem;
  }
  footer .common-info-contact .social-media {
    margin-bottom: 0.85rem;
  }
  footer .common-info-contact .privacy-policy {
    margin-bottom: 0.64rem;
  }
  footer .common-info-contact .info-address {
    margin-bottom: 0.63rem;
  }
  footer .common-info-contact .info-telephone {
    margin-bottom: 0.69rem;
  }
  footer .info-telephone .telephone {
    font-size: 0.46rem;
    padding-left: 0.58rem;
    background-image: url(../img/common/sp/icon_telephone_02.svg);
    background-size: 0.35rem 0.66rem;
  }
  footer .info-telephone .time-work {
    font-size: 0.26rem;
  }
  footer .more-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }

  .special-contents {
    margin-bottom: 0.82rem;
    padding-top: 0.93rem;
  }

  .special-contents-title {
    margin: 0 auto 0.54rem;
    width: 3.7rem;
  }

  .special-contents-list {
    margin: 0 -0.23rem;
  }
	
  .special-contents-detail {
    width: 100%;
    height: 2.8rem;
    font-size: 0.35rem;
    line-height: 1.413;
  }

  .is-works img {
    width: 1.5rem;
  }

  .is-open-house img {
    width: 1.33rem;
  }

  .is-voice img {
    width: 1.02rem;
  }

  .is-show-room img {
    width: 1.24rem;
  }

  .is-recruit img {
    width: 1.62rem;
  }

  .is-ceo img {
    width: 2.25rem;
    /*width: 1.32rem;*/
  }


  .logo-footer {
    width: 2.46rem;
    margin-bottom: 0.4rem;
  }
}
/* MODULES
 * * -----------------------------------------------*/
.common-news-list .news-list {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}
.common-news-list .news-link {
  display: -ms-flexbox;
  display: flex;
}
.common-news-list .news-info {
  -ms-flex: 1;
      flex: 1;
}
.common-news-list .news-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #000;
  text-align: justify;
  font-weight: 700;
}
.common-news-list .news-image {
  position: relative;
}
.common-news-list .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common-news-list .news-time {
  display: block;
  color: #808080;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Verdana, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  line-height: 1.2;
  font-weight: 300;
}

@media print, (min-width: 768px) {
  .common-news-list .news-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 26px 0 4px;
  }
  .common-news-list .news-list > li {
    width: 30%;
    margin-bottom: 25px;
  }
  .common-news-list .news-list > li:nth-child(3n+1) {
    margin-right: 55px;
  }
  .common-news-list .news-list > li:nth-child(3n+2) {
    margin-right: 50px;
  }
  .common-news-list .news-list > li:nth-child(3n+3) {
    width: 29%;
  }
  .common-news-list .news-image {
    -ms-flex: 108px 0 0;
        flex: 108px 0 0;
    height: 108px;
    margin-right: 14px;
  }
  .common-news-list .news-title {
    max-height: 67px;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: calc(23 / 17);
  }
  .common-news-list .news-time {
    margin-bottom: 7px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-news-list .news-list {
    padding: 0.38rem 0 0.34rem;
  }
  .common-news-list .news-list > li {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .common-news-list .news-image {
    -ms-flex: 2.13rem 0 0;
        flex: 2.13rem 0 0;
    height: 2.13rem;
    margin-right: 0.28rem;
    background-color: #989898;
  }
  .common-news-list .more-news::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/top/more_icn.svg) center/0.92rem auto no-repeat;
    position: absolute;
    top: 0;
    left: 0;
  }
  .common-news-list .news-time {
    margin-bottom: 0.12rem;
  }
  .common-news-list .news-title {
    max-height: 1.5rem;
    font-size: 0.34rem;
    line-height: calc(50 / 34);
  }
}

.experience-button-small {
  display: -ms-flex;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  background-color: #0071BC;
  font-weight: 700;
  text-align: center;
  margin:auto;
}
.experience-button-small span {
  position: relative;
}
.experience-button-small span::before {
  content: "";
  background: url(../img/common/icon_arrow_04.svg) center/100% no-repeat;
  position: absolute;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 0;
}
@media print, (min-width: 768px) {
  .experience-button {
    width: 255px;
    height: 55px;
    padding: 6px 20px 4px;
    border-radius: 8px;
    font-size: 18px;
  }
  .experience-button span {
    padding-left: 33px;
  }
  .experience-button span::before {
    width: 21px;
    height: 21px;
    top: calc(50% - 1px);
  }
  .experience-button-small {
    width: 220px;
    height: 55px;
    padding: 6px 20px 4px;
    border-radius: 8px;
    font-size: 18px;
  }
  .experience-button-small span {
    padding-left: 33px;
  }
  .experience-button-small span::before {
    width: 21px;
    height: 21px;
    top: calc(50% - 1px);
  }
}
@media only screen and (max-width: 767.98px) {
  .experience-button {
    padding: 0.3rem 0.2rem 0.3rem 0.3rem;
    border-radius: 0.15rem;
    font-size: 0.32rem;
    width: 4.9rem;
  }
  .experience-button span {
    padding-left: 0.56rem;
  }
  .experience-button span::before {
    width: 0.38rem;
    height: 0.38rem;
    top: calc(50% - .02rem);
  }
  .is-android .experience-button span::before {
    top: calc(50% - .03rem);
  }
  .experience-button-small {
    padding: 0.3rem 0.8rem 0.3rem 0.7rem;
    border-radius: 0.15rem;
    font-size: 0.32rem;
    width: 4.4rem;
  }
  .experience-button-small span {
    padding-left: 0.56rem;
  }
  .experience-button-small span::before {
    width: 0.38rem;
    height: 0.38rem;
    top: calc(50% - .02rem);
  }
  .is-android .experience-button-small span::before {
    top: calc(50% - .03rem);
  }
}

@media print, (min-width: 768px) and (max-width: 1090px) {
  .common-news-list .news-list > li {
    width: calc(50% - 15px) !important;
  }
  .common-news-list .news-list > li:nth-child(odd) {
    margin-right: 30px !important;
  }
  .common-news-list .news-list > li:nth-child(even) {
    margin-right: 0 !important;
  }
}
/* PAGE
 * * -----------------------------------------------*/
/* TOP
 * * -----------------------------------------------*/
@keyframes arrow-move-pc {
  0% {
    top: calc(51% + 136px);
  }
  50% {
    top: calc(53% + 136px);
  }
  100% {
    top: calc(51% + 136px);
  }
}
@keyframes arrow-move-sp {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
a {
  display: inline-block;
}

@media only screen and (max-width: 767.98px) {
  .wrapper {
    padding-left: 0.23rem;
    padding-right: 0.23rem;
  }
}
.block-keyvisual {
  position: relative;
}
.block-keyvisual .keyvisual-title {
  position: absolute;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.block-keyvisual .scroll-icon {
  display: block;
  color: #fff;
  position: absolute;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  text-align: center;
}

@media print, (min-width: 768px) {
  .block-keyvisual {
    height: 918px;
    background: url(../img/home/2025/keyvisual_bg.jpg) center center/cover no-repeat;
  }
  .block-keyvisual .keyvisual-title {
    top: calc(50% - 6px);
  }
  .block-keyvisual .scroll-icon {
    width: 36px;
    height: 51px;
    padding-top: 36px;
    animation: arrow-move-pc 1s ease-in-out infinite;
    background: url(../img/top/scroll_icn.png) top 1px center/calc(100% - 4px) auto no-repeat;
    top: calc(50% + 133px);
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    font-size: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  .block-keyvisual {
    height: 13.35rem;
    background: url(../img/home/2025/sp/keyvisual_bg.jpg) top center/cover no-repeat;
  }
  .block-keyvisual .keyvisual-title {
    width: 2.22rem;
    height: 2.82rem;
    top: calc(50% + .3rem);
  }
  .block-keyvisual .scroll-icon {
    width: 1.4rem;
    height: 0.64rem;
    margin-bottom: 0.2rem;
    padding: 0.2rem 0 0.2rem 0.8rem;
    animation: arrow-move-sp 1s ease-in-out infinite;
    background: url(../img/top/sp/scroll_icn.svg) left 0.02rem center/auto 100% no-repeat;
    left: 1.08rem;
    font-size: 0.19rem;
  }
}


.section-top-works {
  background:#000;
}
.section-top-works h2 img {
  display:block;
}
.section-top-works .area-works .works-item {
  position:relative;
}
.section-top-works .area-works .item-wrapper {
  display:block;
  position:relative;
  z-index:2;
  text-decoration:none;
}
.section-top-works .area-works .item-title {
  display:-ms-flexbox;
  display:flex;
  position:absolute;
  z-index:1;
  top:0;
  right:0;
  bottom:0;
  left:0;
  -ms-flex-direction:column;
  flex-direction:column;
  -ms-flex-align:center;
  align-items:center;
  -ms-flex-pack:center;
  justify-content:center;
  margin:0;
}
.section-top-works .area-works .item-title {
  color:#fff;
  text-align:center;
}
.section-top-works .area-works .item-title h3 {
  font-weight:600;
}
.section-top-works .area-works .item-title h3 span {
  display:block;
  font-weight:normal;
}
.section-top-works .area-works .item-title h3:before {
  content: '';
  background: url(../img/home/2025/ico_roomtour.svg) center/auto 100% no-repeat;
  display: block;
}
.section-top-works .area-works .item-background {
  position:relative;
  z-index:0;
  overflow:hidden;
}
.section-top-works .area-works .item-background::before {
  content:"";
  position:absolute;
  z-index:1;
  top:0;
  right:0;
  bottom:0;
  left:0;
  transition:opacity 0.3s ease;
  opacity:0;
  background:rgba(0, 0, 0, 0.6);
}
.section-top-works .area-works .item-background img {
  position:absolute;
  z-index:0;
  top:0;
  left:0;
  max-width:none;
  width:100%;
  height:100%;
  object-fit:cover;
}

.section-top-works .modal {
  display:none;
  position:fixed;
  top:0;
  height:100vh;
  width:100%;
  z-index:2;
}
.section-top-works .modal-bg {
  position:absolute;
  height:100vh;
  width:100%;
  background:rgba(0, 0, 0, 0.7);
}
.section-top-works .modal-content {
  position:absolute;
  overflow:scroll;
  background:#fff;
}
.section-top-works .modal-content .modal_header .ttl {
  font-weight:600;
}
.section-top-works .modal-content .modal_header .ttl span {
  font-weight:normal;
}
.section-top-works .js-modal-close {
	position:fixed;
}

@media print, (min-width: 768px) {
  .section-top-works h2 {
    padding:70px 0;
  }
  .section-top-works h2 img {
    margin:auto;
  }
  .section-top-works .area-works .item-wrapper:hover .item-title {
    opacity:1;
  }
  .section-top-works .area-works .item-wrapper:hover .item-background::before {
    opacity:1;
  }
  .section-top-works .area-works {
    display:flex;
    flex-wrap:wrap;
  }
  .section-top-works .area-works .works-item {
    width: calc(100% / 3);
  }
  .section-top-works .area-works .works-item img {
    width:100%;
  }
  .section-top-works .area-works .item-title {
    padding:20px;
    transition: opacity 0.3s ease;
    opacity:0;
  }
  .section-top-works .area-works .item-title h3 {
    font-size:18px;
  }
  .section-top-works .area-works .item-title h3 span {
    font-size:14px;
	  margin:10px 0;
  }
  .section-top-works .area-works .item-title h3:before {
    width: 147px;
    height: 25px;
	margin: 0 auto 15px;
  }	
  .section-top-works .area-works .item-title p {
    font-size:14px;
  }
  .section-top-works .area-works .item-background {
    min-width:50%;
    min-height:350px;
  }
  .section-top-works .modal-content {
    height:96vh;
    width:94%;
    top:3%;
    left:3%;
  }
  .section-top-works .modal-content .modal_header {
    padding:20px;
    display:flex;
    flex-wrap:wrap;
    align-items:flex-end;
    justify-content:flex-start;
  }
  .section-top-works .modal-content .modal_header img {
    margin:0 40px 0 0;
  }
  .section-top-works .modal-content .modal_header .ttl {
    font-size:16px;
    margin-bottom:5px;
  }
  .section-top-works .modal-content .modal_header .ttl span {
    font-size:12px;
    margin-left:15px;
  }
  .section-top-works .modal-content .modal_header p {
    font-size:12px;
  }
  .section-top-works .btn-close {
    top:calc(3% + 30px);
    right:calc(3% + 30px);
  }
}
@media only screen and (max-width: 767.98px) {
  .fade-in {
    opacity:0;
    transition-duration:1000ms;
    transition-property:opacity, transform;
  }
  .scroll-in {
    opacity:1;
    transform:translate(0, 0);
  }
  .section-top-works h2 {
    padding:35px 0;
  }
  .section-top-works h2 img {
    width:190px;
    margin:auto;
  }
  .section-top-works p {
    font-size:14px;
    margin-bottom:30px;
  }
  .section-top-works .area-works .item-title {
    padding:20px;
    background:rgba(0,0,0,0.6);
  }
  .section-top-works .area-works .item-title h3 {
    font-size:16px;
  }
  .section-top-works .area-works .item-title h3 span {
    font-size:12px;
    margin:10px 0;
  }
  .section-top-works .area-works .item-title h3:before {
    width: 130px;
    height: 22px;
    margin: 0 auto 15px;
  }
  .section-top-works .area-works .item-title p {
    font-size:12px;
  }
  .section-top-works .area-works .item-background {
    height:290px;
  }
  .section-top-works .modal-content {
    height:100vh;
    width:94%;
    top:0;
    left:3%;
  }
  .section-top-works .modal-content .modal_header {
    padding:15px;
  }
  .section-top-works .modal-content .modal_header img {
    margin-bottom:20px;
  }
  .section-top-works .modal-content .modal_header .ttl {
    font-size:14px;
    margin-bottom:5px;
  }
  .section-top-works .modal-content .modal_header .ttl span {
    font-size:12px;
    margin-left:10px;
  }
  .section-top-works .modal-content .modal_header p {
    font-size:12px;
    margin-bottom:0;
  }
  .section-top-works .btn-close {
    top:10px;
    right:calc(3% + 10px);
    width:45px;
    height:45px;
  }
}

.section-top-category .section-title {
  background: #999999;
  text-align: center;
}
.category-list,
.category-small-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.category-list > li,
.category-small-list > li {
  background: center/cover no-repeat, #222;
  position: relative;
}
.category-list > li .category-title,
.category-small-list > li .category-title,
.category-list > li .icn-title {
  position: absolute;
}
.category-title img {
  width: 100%;
}
.category-link {
  width: 100%;
  height: 100%;
  position: relative;
}
.category-list > li.model-chomei {
  background-image: url("../img/home/2025/category_img_model.jpg");
}
.category-list > li.villa {
  background-image: url("../img/home/2025/category_img_villa.jpg");
}
.category-list > li.justhouse {
  background-image: url("../img/home/2025/category_img_just.jpg");
}
.category-list > li.residence {
  background-image: url("../img/home/2025/category_img_residence.jpg");
}
.category-list > li.showroom {
  background-image: url("../img/home/2025/category_img_showroom.jpg");
}
.category-list > li.muwaku {
  background-image: url("../img/home/2025/category_img_muwaku.jpg");
}
.category-list > li.housing {
  background-image: url("../img/home/2025/category_img_quality.jpg");
}
.category-list > li.company {
  background-image: url("../img/home/2025/category_img_about.jpg");
}

@media print, (min-width: 768px) {
  .section-top-category .section-title {
    padding: 50px 0 35px;
  }
  .section-top-category .section-title img {
    width: 272px;
  }
  .category-list > li {
    width: 50%;
    height: 400px;
  }
  .category-list > li.full {
    width: 100%;
    height: 450px;
  }
  .category-list .category-link::after {
    width: 46px;
    height: 42px;
  }
  .category-list > li.full .category-link::after {
    right: 48px;
    bottom: 43px;
  }
  .category-list > li.is-bottom-left .category-link::after {
    right: 48px;
    bottom: 43px;
  }
  .category-list > li.is-bottom-left .category-title {
    bottom: 47px;
    left: 43px;
  }
  .category-list > li.is-bottom-right .category-link::after {
    left: 49px;
    bottom: 41px;
  }
  .category-list > li.is-bottom-right .category-title {
    bottom: 38px;
    right: 38px;
  }
  .category-list > li.is-top-left .category-link::after {
    right: 48px;
    bottom: 43px;
  }
  .category-list > li.is-top-left .category-title {
    top: 36px;
    left: 50px;
  }
  .category-list > li.is-top-right .category-title {
    top: 30px;
    right: 30px;
  }
  .category-list > li.model-chomei .category-title {
    width: 440px;
    height: auto;
    position: relative;
    margin: auto;
    top: 20%;
  }
  .category-list > li.villa .category-title {
    width: 510px;
    height: auto;
    position: relative;
    margin: auto;
    top: calc((100% - 180px) / 2);
  }
  .category-list > li.justhouse .category-title {
    width: 400px;
    position: absolute;
    top: calc((100% - 136px) / 2);
    left: calc((100% - 400px) / 2);
    height: 136px;
  }
  .category-list > li.residence .category-title {
    width: 470px;
    height: 164px;
    position: absolute;
    margin: auto;
    top: calc(50% - 164px);
    left: calc((100% - 470px) / 2);
  }
  .category-list > li.muwaku .category-title {
    width: 315px;
    height: 125px;
    /* left: unset; */
    margin: auto;
    position: relative;
    top: 40%;
  }
  .category-list > li.showroom .category-title {
    width: 245px;
    height: 105px;
  }
  .category-list > li.housing .category-title {
    width: 126px;
    height: 63px;
    bottom: 40px;
    left: 36px;
  }
  .category-list > li.company .category-title {
    width: 101px;
    height: 64px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-top-category .section-title {
    padding: 30px 0 20px;
  }
  .section-top-category .section-title img {
    width: 170px;
  }
  .category-list > li {
    width: 100%;
    /*height: 7.5rem;*/
	height: 4.5rem;
  }
  .category-list > li.is-half {
    width: 50%;
  }
  .category-list > li.model-chomei .category-title {
    width: 5.5rem;
    height: auto;
    position: relative;
    margin: 10% auto 0;
  }
  .category-list > li.villa .category-title {
    width: 6.5rem;
    height: auto;
    position: relative;
    margin: 15% auto 0;
  }
  .category-list > li.justhouse .category-title {
    width: 4.5rem;
    height: auto;
    top: 32%;
    left: calc((100% - 4.5rem) / 2);
  }
  .category-list > li.residence .category-title {
    width: 6.4rem;
    height: auto;
    top: 30%;
    left: calc((100% - 6.4rem) / 2);
  }
  .category-list > li.muwaku .category-title {
    width: 4.5rem;
    height: auto;
    top: 35%;
    left: calc((100% - 4.5rem) / 2);
  }
  .category-list > li.showroom .category-title {
    width: 4.0rem;
    height: auto;
    bottom: 0.4rem;
    left: 0.35rem;
  }
  .category-list > li.housing .category-title {
    width: 2.1rem;
    height: auto;
    bottom: 0.4rem;
    left: 0.35rem;
  }
  .category-list > li.company .category-title {
    width: 1.8rem;
    height: auto;
    bottom: 0.4rem;
    left: 0.35rem;
  }
}

.section-top-news .section-title {
  text-align: center;
}
.section-top-news .view-all-button {
  text-align: center;
}
.section-top-news .view-all-button a {
  background: url(../img/top/view_all_btn.svg) center/100% no-repeat/*, #00608a*/;
  overflow: hidden;
}

@media print, (min-width: 768px) {
  .section-top-news {
    padding: 33px 0 60px;
  }
  .section-top-news .section-title {
    margin-bottom: 25px;
  }
  .section-top-news .common-news-list {
    margin-bottom: 30px;
  }
  .section-top-news .view-all-button a {
    width: 139px;
    /*height: 31.5px;
    border-radius: 5px;*/
    height: 35.5px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-top-news {
    padding: 0.65rem 0 0.6rem;
  }
  .section-top-news .section-title {
    margin-bottom: 0.38rem;
  }
  .section-top-news .section-title img {
    height: 0.38rem;
  }
  .section-top-news .common-news-list {
    margin-bottom: 0.32rem;
  }
  .section-top-news .news-list > li:nth-child(n+3) {
    margin-bottom: 0;
  }
  .section-top-news .news-list > li:nth-child(n+4) {
    display: none;
  }
  .section-top-news .view-all-button a {
    width: 2.79rem;
    /*height: 0.63rem;*/
    background-image: url(../img/top/sp/view_all_btn.svg);
    /*border-radius: 0.1rem;*/
    height: 0.69rem;
    border-radius: 0;
  }
}
@media print {
  .category-list > li.is-bottom-left .category-link::after,
  .category-list > li.is-bottom-left .category-title, .category-list > li.is-bottom-right .category-link::after,
  .category-list > li.is-bottom-right .category-title {
    bottom: 120px !important;
  }
  .category-list > li.is-top-left .category-link::after {
    bottom: 180px !important;
  }
}

.section-top-movie {
	background:#e6e6e6;
}
.section-top-movie .section-title {
	text-align:center;
}
@media print, (min-width: 768px) {
	.section-top-movie {
		padding:50px 0;
	}
	.section-top-movie .section-title {
		margin-bottom:35px;
	}
	.section-top-movie iframe {
		width:100%;
		height:600px;
	}
}
@media only screen and (max-width: 767.98px) {
	.section-top-movie {
		padding:30px 0;
	}
	.section-top-movie .section-title {
		margin-bottom:20px;
	}
	.section-top-movie iframe {
		width:100%;
		height:240px;
	}
}

.section-openhouse-preview {
  background:#F2F2F2;
}
.section-openhouse-preview .section-title {
  font-weight: 700;
  text-align: center;
}
.section-openhouse-preview .section-title .black-title {
  display: block;
  color: #000;
}
.section-openhouse-preview .section-title .blue-title {
  color: #0071BC;
}

.section-openhouse-preview .section-title {
  font-weight: 700;
}
.section-openhouse-preview .section-title .black-title {
  display: block;
  color: #000;
}
.section-openhouse-preview .section-title .blue-title {
  color: #00608a;
}

.preview-list .preview-title {
  color: #0171ba;
  font-weight: 700;
  text-align:center;
}
.preview-list .preview-time {
  font-weight: 700;
}
.preview-list .preview-time time {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Verdana, Meiryo, sans-serif;
}
.preview-list .preview-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.preview-list .preview-button:not(.is-disabled) {
  background-color: #0071BC;
}
.preview-list .preview-button.is-disabled {
  background-color: #b2b2b2;
  pointer-events: none;
}
.preview-list .preview-button span {
  position: relative;
}
.preview-list .preview-button span::before {
  content: "";
  background: url(../img/common/icon_arrow_04.svg) center/100% no-repeat;
  position: absolute;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 0;
}

@media print, (min-width: 768px) {
  .common-section-title + .common-text {
    max-width: 650px;
    margin: 0 auto;
  }

  .block-common-keyvisual .keyvisual-title {
    top: calc(50% - 9px);
  }

  .section-openhouse-preview {
    padding:80px 0;
  }
  .section-openhouse-preview .section-title {
    margin-bottom: 38px;
  }
  .section-openhouse-preview .section-title .black-title {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: calc(5 / 3);
  }
  .section-openhouse-preview .section-title .blue-title {
    font-size: 45px;
  }
  .section-openhouse-preview .section-title + .common-text {
    margin-bottom: 43px;
  }

  .preview-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .preview-list .preview-item {
    width: calc(33.333% - 24px);
    margin: 0 12px 20px;
  }
  .preview-list .preview-image {
    margin-bottom: 15px;
  }
  .preview-list .preview-title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: calc(25 / 18);
  }
  .preview-list .preview-text {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: calc(22 / 14);
  }
  .preview-list .preview-time {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: calc(26 / 17);
  }
  .preview-list .preview-button {
    min-height: 50px;
    padding: 7px 20px 4px;
    border-radius: 8px;
    font-size: 18px;
    width: 240px;
    margin: auto;
  }
  .is-mac .preview-list .preview-button {
    padding-top: 6px;
  }
  .preview-list .preview-button span {
    padding-left: 33px;
  }
  .preview-list .preview-button span::before {
    width: 21px;
    height: 21px;
    top: calc(50% - 1px);
  }
}
@media only screen and (max-width: 767.98px) {
  .common-text {
    margin-right: 0.2rem;
    margin-left: 0.2rem;
  }

  .block-common-keyvisual .keyvisual-title {
    top: calc(50% + .53rem);
  }
  .block-common-keyvisual .keyvisual-title img {
    width: 3.82rem;
  }

  .section-openhouse-preview {
    padding:60px 0;
  }
  .section-openhouse-preview .section-title {
    margin-bottom: 0.58rem;
  }
  .section-openhouse-preview .section-title .black-title {
    margin-bottom: 0.14rem;
    font-size: 0.42rem;
    line-height: calc(63 / 42);
  }
  .section-openhouse-preview .section-title .blue-title {
    font-size: 0.6rem;
  }
  .section-openhouse-preview .section-title + .common-text {
    margin-bottom: 0.3rem;
  }
  .section-openhouse-preview .preview-circle {
    display: block;
    width: 1.69rem;
    height: 1.69rem;
    margin: 0 auto 0.52rem;
    padding-top: 0.4rem;
    padding-left: 0.04rem;
    color: #fff;
    background-color: #0171ba;
    font-size: 0.39rem;
    font-weight: 700;
    border-radius: 50%;
    text-align: center;
    line-height: calc(46 / 39);
  }
  .is-android .section-openhouse-preview .preview-circle {
    padding-left: 0.02rem;
  }

  .preview-list {
    margin-bottom: -0.2rem;
  }
  .preview-list .preview-item {
    margin-bottom: 0.7rem;
  }
  .preview-list .preview-image {
    margin: 0 0 0.3rem;
  }
  .preview-list .preview-content {
    margin: 0 0.3rem;
  }
  .preview-list .preview-title {
    margin-bottom: 0.23rem;
    font-size: 0.35rem;
    line-height: calc(52 / 35);
  }
  .preview-list .preview-text {
    margin-bottom: 0.24rem;
    font-size: 0.28rem;
    line-height: calc(47 / 28);
    text-align: justify;
  }
  .preview-list .preview-time {
    margin-bottom: 0.25rem;
    font-size: 0.34rem;
    line-height: calc(52 / 34);
  }
  .preview-list .preview-button {
    min-height: 1.0rem;
    padding: 0.06rem 0.2rem 0.04rem;
    border-radius: 0.18rem;
    font-size: 0.32rem;
    width: 4.44rem;
    margin: auto;
  }
  .preview-list .preview-button span {
    padding-left: 0.6rem;
  }
  .preview-list .preview-button span::before {
    width: 0.45rem;
    height: 0.45rem;
    top: calc(50% - .02rem);
  }
}


.section-about {
  background:#F2F2F2;
}
.section-about .flex h3 {
	font-weight:600;
}

@media print, (min-width: 768px) {
	.section-about {
		margin-bottom:60px;
		padding:80px 0;
	}
	.section-about .flex {
		display:flex;
		justify-content:space-between;
		flex-wrap:wrap;
		align-items:flex-start;
	}
	.section-about .flex img {
		width:500px;
		height:auto;
	}
	.section-about .flex .txt {
		width:420px;
	}
	.section-about .flex h3 {
		font-size:30px;
		margin-bottom:35px;
	}
	.section-about .flex .txt p {
		margin-bottom:35px;
	}
	.section-about .flex .txt .experience-button {
		margin:0;
	}
	.section-about .flex .txt .experience-button-small {
		margin:0;
	}
}
@media only screen and (max-width: 767.98px) {
	.section-about {
		margin-bottom:40px;
		padding:60px 0;
	}
	.section-about .flex img {
		width:100%;
		height:auto;
		margin-bottom:20px;
	}
	.section-about .flex .txt {
		width:100%;
	}
	.section-about .flex h3 {
		font-size:28px;
		margin-bottom:25px;
		text-align:center;
	}
	.section-about .flex .txt p {
		margin-bottom:35px;
	}
	.section-about .flex .txt .experience-button {
		margin:auto;
	}
	.section-about .flex .txt .experience-button-small {
		margin:auto;
	}
}

.txt_construction_area {
    background: #ddd;
}
.txt_construction_area b {
    font-weight: 600;
}
@media print, (min-width: 768px) {
	.txt_construction_area {
		width: fit-content;
		padding: 10px 20px;
		font-size: 15px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 767.98px) {
	.txt_construction_area {
		width: 90%;
		padding: 10px 20px;
		font-size: 14px;
		margin: 0 auto;
	}
}

/*# sourceMappingURL=home_lp_2025.css.map */