@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;
}
@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 TITLE
 * * -----------------------------------------------*/
.common-title {
  font-weight: 700;
  color: #000;
  text-align: center;
}

.common-section-title {
  color: #000;
  text-align: center;
  font-weight: 700;
}
.common-section-title + .common-text {
  text-align: center;
}

@media print, (min-width: 768px) {
  .common-title {
    font-size: 25px;
    line-height: calc(40 / 25);
  }

  .common-section-title {
    font-size: 35px;
    line-height: calc(60 / 35);
  }

  .common-text {
    font-size: 17px;
    line-height: calc(30 / 17);
  }
}
@media only screen and (max-width: 767.98px) {
  .common-title {
    font-size: 0.4rem;
    line-height: calc(58 / 40);
  }

  .common-text {
    line-height: calc(47 / 28);
    text-align: justify;
  }
}
.page-title.is-japanese {
  color: #000;
  font-weight: 700;
  text-align: center;
}

@media print, (min-width: 768px) {
  .page-title.is-japanese {
    margin-bottom: 50px;
    font-size: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-title.is-japanese {
    margin-bottom: 0.37rem;
    font-size: 0.45rem;
  }
}
.page-title.is-english {
  text-align: center;
}

@media print, (min-width: 768px) {
  .page-title.is-english {
    min-height: 24px;
    margin-bottom: 53px;
  }
  .page-title.is-english.has-category {
    margin-bottom: 44px;
  }
  .page-title.is-english.has-category + .category-list {
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-title.is-english {
    margin-bottom: 0.74rem;
  }
  .page-title.is-english.has-category {
    margin-bottom: 0.59rem;
  }
  .page-title.is-english.has-category + .category-list {
    margin-bottom: 0.45rem;
  }
  .page-title.is-english img {
    height: 0.42rem;
  }
}
.page-title.has-icon {
  font-weight: 700;
  color: #000;
  text-align: center;
}

@media print, (min-width: 768px) {
  .page-title.has-icon {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .page-title.has-icon {
    font-size: 0.45rem;
  }
}
.page-title.is-combined {
  text-align: center;
}
.page-title.is-combined span {
  display: block;
}
.page-title.is-combined .is-japanese {
  color: #000;
  font-weight: 700;
}

@media print, (min-width: 768px) {
  .page-title.is-combined {
    margin-bottom: 42px;
  }
  .page-title.is-combined img {
    margin-bottom: 22px;
  }
  .page-title.is-combined .is-japanese {
    font-size: 39px;
  }
  .page-title.is-combined + .page-description {
    width: 700px;
    margin: 0 auto 68px;
    font-size: 17px;
    line-height: calc(30 / 17);
  }
}
@media only screen and (max-width: 767.98px) {
  .page-title.is-combined {
    margin-bottom: 0.53rem;
  }
  .page-title.is-combined img {
    width: auto;
    height: 0.42rem;
    margin-bottom: 0.46rem;
  }
  .page-title.is-combined .is-japanese {
    font-size: 0.45rem;
  }
  .page-title.is-combined + .page-description {
    margin-bottom: 0.59rem;
    line-height: calc(47 / 28);
  }
}
/* COMMON BREADCRUMB
 * * -----------------------------------------------*/
.breadcrumb-list {
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb-list > li {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #000;
}
.breadcrumb-list > li:not(:last-child)::after {
  content: ">";
  position: relative;
}
.breadcrumb-list > li a {
  color: #000;
}

@media print, (min-width: 768px) {
  .breadcrumb {
    max-width: 1345px;
    margin: 0 auto 55px;
  }

  .breadcrumb-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 14px 30px;
  }
  .breadcrumb-list > li {
    font-size: 14px;
  }
  .breadcrumb-list > li:not(:last-child) {
    margin-right: 10px;
  }
  .breadcrumb-list > li:not(:last-child)::after {
    margin-left: 10px;
    bottom: 2px;
  }
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb {
    margin-bottom: 0.5rem;
  }
  .breadcrumb .breadcrumb-list {
    padding: 0.19rem 0.41rem;
    overflow-x: scroll;
  }
  .breadcrumb .breadcrumb-list > li {
    font-size: 0.2rem;
  }
  .breadcrumb .breadcrumb-list > li:not(:last-child) {
    margin-right: 0.12rem;
  }
  .breadcrumb .breadcrumb-list > li:not(:last-child)::after {
    margin-left: 0.12rem;
    bottom: 0.02rem;
  }
  .is-android .breadcrumb .breadcrumb-list > li:not(:last-child)::after {
    bottom: 0;
  }
}
/* COMMON PHONE BOX
 * * -----------------------------------------------*/
.phone-box.is-big {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.phone-box.is-big .phone-link {
  display: inline-block;
  color: #fff;
  background-color: #00608a;
}
.phone-box.is-big .phone-text {
  border-bottom: 1px solid #fff;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.is-safari .phone-box.is-big .phone-text {
  letter-spacing: 0.005em;
}
.phone-box.is-big .phone-content {
  text-align: center;
  background: url(../img/common/phone_icn_01.svg) left center/36px auto no-repeat;
}
.phone-box.is-big .phone-number {
  display: block;
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
}
.phone-box.is-big .phone-time {
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}

@media print, (min-width: 768px) {
  .phone-box.is-big .phone-link {
    max-width: 540px;
    padding: 33px 62px;
    border-radius: 7px;
    pointer-events: none;
  }
  .phone-box.is-big .phone-text {
    margin-bottom: 15px;
    padding: 0 30px 18px 23px;
    font-size: 23px;
  }
  .phone-box.is-big .phone-content {
    padding-left: 39px;
  }
  .phone-box.is-big .phone-number {
    margin-bottom: -5px;
    font-size: 55px;
  }
  .is-mac .phone-box.is-big .phone-number {
    margin-bottom: -2px;
  }
  .phone-box.is-big .phone-time {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .phone-box.is-big .phone-link {
    width: 100%;
    padding: 0.4rem 0.8rem 0.43rem;
    border-radius: 0.095rem;
  }
  .phone-box.is-big .phone-text {
    margin-bottom: 0.18rem;
    padding: 0 0.2rem 0.25rem 0.3rem;
    font-size: 0.3rem;
  }
  .phone-box.is-big .phone-content {
    padding-left: 0.5rem;
    background-size: 0.47rem auto;
  }
  .phone-box.is-big .phone-number {
    margin-bottom: -0.07rem;
    font-size: 0.72rem;
  }
  .phone-box.is-big .phone-time {
    font-size: 0.26rem;
  }
}
/* PAGE
 * * -----------------------------------------------*/
/* COMMON-FINISH
 * * -----------------------------------------------*/
.page-description {
  display: block;
}

@media print, (min-width: 768px) {
  .block-common-finish {
    padding-bottom: 52px;
  }

  .page-description {
    width: 700px;
    margin: 0 auto 42px;
    font-size: 17px;
    line-height: calc(32 / 17);
  }
}
@media only screen and (max-width: 767.98px) {
  .block-common-finish {
    padding-bottom: 0.77rem;
  }

  .wrapper {
    padding-left: 0.27rem;
    padding-right: 0.22rem;
  }

  .page-description {
    margin: 0 auto 0.42rem;
    color: #000;
    line-height: calc(47 / 28);
  }
}

.block-common-finish-line .cta-box {
  background:#f1f1f1;
  text-align:center;
}
.block-common-finish-line .cta-box p {
  font-weight:600;
}
.block-common-finish-line .link-friend {
  background:#06c755;
  color:#fff;
  text-align:center;
  display:block;
  margin:auto;
  font-weight:600;
}
.block-common-finish-line .insta .link-friend {
  background:#363636;
}
.block-common-finish-line .link-friend:before {
  content:'▶︎';
  display:inline-block;
}

@media print, (min-width: 768px) {
  .block-common-finish-line {
    margin-bottom:60px;
  }
  .block-common-finish-line .wrapper {
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
    justify-content:space-between;
  }
  .block-common-finish-line .cta-box {
    width:485px;
    padding:40px 20px;
  }
  .block-common-finish-line .cta-box p {
    font-size:17px;
    margin-bottom:25px;
  }
  .block-common-finish-line .cta-box h3 {
    margin:0 auto 25px;
  }
  .block-common-finish-line .cta-box .qr {
    width:90px;
    margin:0 auto 25px;
  }
  .block-common-finish-line .link-friend {
    width:290px;
    padding:17px 0;
    font-size:15px;
  }
  .block-common-finish-line .link-friend:before {
    font-size:12px;
    margin-right:20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .block-common-finish-line {
    margin-bottom:0.85rem;
  }
  .block-common-finish-line .cta-box {
    padding:30px 20px;
    margin-left:-0.27rem;
    margin-right:-0.27rem;
    border-bottom:1px dotted #b6b6b6;
  }
  .block-common-finish-line .cta-box:last-child {
    border-bottom:none;
  }
  .block-common-finish-line .cta-box p {
    font-size:14px;
    margin-bottom:10px;
  }
  .block-common-finish-line .cta-box h3 {
    width:245px;
    margin:0 auto 20px;
  }
  .block-common-finish-line .cta-box .qr {
    width:90px;
    margin:0 auto 20px;
  }
  .block-common-finish-line .link-friend {
    width:80%;
    padding:15px 0;
    font-size:14px;
  }
  .block-common-finish-line .link-friend:before {
    font-size:10px;
    margin-right:20px;
  }
}

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