@charset "UTF-8";
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,
a svg {
  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 {
  outline: none;
}

button:focus {
  outline: 0;
}

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

input[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  display: none;
}

textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

@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;
  }
}
html {
  opacity: 1;
}
html.is-loading {
  transition: opacity 0.25s ease;
  opacity: 0;
}

body {
  color: #333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  overflow-y: scroll;
}

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

.hidden {
  display: none;
}

.container {
  overflow: hidden;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-barlow {
  font-family: "Barlow", sans-serif;
}

.font-bad-script {
  font-family: "Bad Script", cursive;
}

.trans {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.trans:hover {
  opacity: 0.6;
}

.sub-main {
  z-index: 1;
}
.sub-main:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: center/100% auto;
  z-index: -1;
}
.sub-main.garage-main:before {
  background-image: url(../img/common/header_bg_02.png);
}

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

  .sub-main {
    padding-right: 88px;
  }
  .sub-main:before {
    width: 240px;
    height: 0;
    background-image: url(../img/common/header_bg.png);
    opacity: 0;
    animation: headerLineAnim 0.8s ease 0.5s forwards;
  }

  .container {
    min-width: 1200px;
  }

  .wrapper {
    width: 992px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }
}
@media only screen and (max-width: 767.98px) {
  html {
    font-size: calc(100vw / 3.75);
    min-height: 100vh;
  }

  body {
    font-size: 0.12rem;
  }

  .sub-main:before {
    background-image: url(../img/common/sp/header_bg.png);
    width: 1rem;
    height: 11.1rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .md {
    display: none !important;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes clipTextAnim {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes textTevealerAnim {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes gradationAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes headerLineAnim {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 900px;
  }
}
.image-map {
  text-align: center;
}

@media only screen and (max-width: 767.98px) {
  .image-map img {
    width: 100%;
  }
}
header {
  position: relative;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
}
header a {
  display: inline-block;
}
header .block-left {
  display: -ms-flexbox;
  display: flex;
}
header .inner-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.3s;
}
header .header-logo {
  transition: 0.3s;
}
@media print, (min-width: 768px) {
  header.is-fixed {
    position: fixed;
  }
  header.is-fixed .inner-wrapper {
    background: #fff;
  }
  header.is-fixed .header-logo {
    width: 196px;
  }
  header.is-fixed .header-logo-ichiroku {
    width: 130px;
  }
}

.is-sub .header-different {
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}
.is-sub .inner-different {
  position: absolute;
}
.is-sub .header-logo,
.is-sub .link-menu,
.is-sub .block-right,
.is-sub .button-menu,
.is-sub .block-social,
.is-sub .header-navigation {
  pointer-events: auto;
}
.is-sub .block-menu {
  position: absolute;
}
.is-sub .block-menu,
.is-sub .list-menu,
.is-sub .header-different {
  display: -ms-flexbox;
  display: flex;
}
.is-sub .block-menu {
  -ms-flex-align: start;
      align-items: flex-start;
}
.is-sub .list-menu {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.is-sub .link-menu {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.is-sub .button-menu {
  position: fixed;
  cursor: pointer;
  background-color: #333;
  right: 0;
  top: 0;
  z-index: 101;
}
.is-sub .button-menu span {
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
.is-sub .block-social {
  background-color: #333;
  color: #fff;
  position: fixed;
  right: 0;
  z-index: 101;
}
.is-sub .inner-different .block-social {
  text-align: center;
}
.is-sub .inner-different .common-list-social {
  display: block;
}
.is-sub .inner-different .text-social,
.is-sub .inner-different .copy-right {
  writing-mode: vertical-lr;
}
.is-sub .inner-different .copy-right {
  letter-spacing: 0.1em;
  color: #aaa;
}
.is-sub .inner-different .text-social {
  letter-spacing: 0.2em;
}
.is-sub .link-navigation {
  position: relative;
  font-weight: 600;
}
.is-sub .link-navigation:before {
  position: absolute;
  content: "";
  left: 0;
  background: url(../img/common/icon_arrow_02.svg) center/100% auto no-repeat;
}
.is-sub .navigation-icon {
  display: inline-block;
}
.is-sub .list-navigation {
  border-bottom: solid 1px #ccc;
}
.is-sub .header-navigation {
  overflow: auto;
  background: #fff;
  position: fixed;
  display: none;
  z-index: 100;
  min-height: 100vh;
  top: 0;
  right: 0;
}
.is-sub .inner-different {
  padding: 0;
  pointer-events: none;
}
.is-sub .header-garage .button-menu,
.is-sub .header-garage .block-social {
  background-color: #024496;
}
.is-sub .header-garage .copy-right {
  color: #fff;
}
.is-sub .header-garage .text-social,
.is-sub .header-garage .copy-right,
.is-sub .header-garage .link-menu {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.header-mask {
  pointer-events: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: rgba(51, 51, 51, 0.9);
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: all 1s ease;
  width: 100%;
  height: 100vh;
}
.header-mask.menu-active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

@media print, (min-width: 768px) {
  header .inner-wrapper {
    padding: 20px 30px 20px 40px;
    pointer-events: none;
  }
  header .block-left,
  header .block-right {
    pointer-events: auto;
  }
  header .header-logo {
    margin-right: 30px;
  }

  .is-sub .inner-different {
    max-width: unset;
    min-width: 1100px;
    left: unset;
    -ms-transform: unset;
        transform: unset;
  }
  .is-sub .header-different {
    padding: 10px 128px 10px 40px;
  }
  .is-sub .header-different .common-block-company {
    padding-left: 40px;
    padding-right: 40px;
  }
  .is-sub .header-different .common-list-company {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .is-sub .block-menu {
    right: 128px;
  }
  .is-sub .block-menu,
  .is-sub .header-menu {
    margin-top: 10px;
  }
  .is-sub .block-right {
    margin-left: 41px;
  }
  .is-sub .item-menu:not(:first-child) {
    margin-left: 33px;
  }
  .is-sub .button-menu {
    width: 88px;
    height: 79px;
  }
  .is-sub .button-menu span {
    width: 56px;
    height: 3px;
    margin-left: 16px;
  }
  .is-sub .button-menu span:nth-child(1) {
    top: 24px;
  }
  .is-sub .button-menu span:nth-child(2) {
    top: 39px;
  }
  .is-sub .button-menu span:nth-child(3) {
    top: 54px;
  }
  .is-sub .menu-active span:nth-child(2), .is-sub .menu-active span:nth-child(3) {
    width: 25px;
    margin-left: 47px;
  }
  .is-sub .block-social {
    width: 88px;
    top: 80px;
    height: calc(100vh - 80px);
  }
  .is-sub .inner-different .common-block-social {
    margin-bottom: 114px;
  }
  .is-sub .inner-different .common-list-social {
    padding-top: 19px;
    padding-left: 17px;
  }
  .is-sub .inner-different .copy-right {
    font-size: 10px;
  }
  .is-sub .inner-different .item-social:not(:last-child),
  .is-sub .inner-different .text-social {
    margin-right: 0;
  }
  .is-sub .inner-different .item-social:not(:last-child) {
    margin-bottom: 15px;
  }
  .is-sub .inner-different .text-social {
    margin-bottom: 15px;
    margin-left: 2px;
  }
  .is-sub .inner-different .item-social img {
    width: 16px;
  }
  .is-sub .inner-different .item-social svg {
    fill: #fff;
  }
  .is-sub .link-navigation {
    padding-left: 14px;
    font-size: 20px;
  }
  .is-sub .link-navigation:before {
    top: 7px;
    width: 8px;
    height: 13px;
  }
  .is-sub .item-navigation:not(:last-child) {
    margin-bottom: 32px;
  }
  .is-sub .navigation-icon,
  .is-sub .item-navigation,
  .is-sub .common-link-main {
    padding: 0 40px;
  }
  .is-sub .navigation-icon {
    margin-bottom: 42px;
  }
  .is-sub .list-navigation {
    margin-bottom: 20px;
    padding-bottom: 80px;
  }
  .is-sub .header-navigation {
    padding: 81px 88px 20px 0;
    max-width: 900px;
    width: 100%;
  }
  .is-sub .header-garage .text-social {
    margin-bottom: 22px;
  }
  .is-sub .header-garage .common-block-social {
    margin-bottom: 164px;
  }
}
@media print, (min-width: 768px) and (max-width: 1327px) {
  .is-sub .header-logo {
    width: 230px;
  }
  .is-sub .link-menu {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  header .inner-wrapper {
    padding: 0.14rem 0.2rem;
  }
  header .header-logo img,
  header .block-right img {
    width: 100%;
  }
  header .header-logo {
    width: 0.29rem;
  }
  header .block-right {
    width: 0.88rem;
  }

  .is-sub .header-logo {
    width: 0.98rem;
  }
  .is-sub .block-menu {
    right: 0.86rem;
  }
  .is-sub .header-different {
    padding: 0.08rem 0.86rem 0.08rem 0.1rem;
  }
  .is-sub .button-menu {
    width: 0.66rem;
    height: 0.6rem;
  }
  .is-sub .button-menu span {
    width: 0.4rem;
    height: 0.02rem;
    margin-left: 0.13rem;
  }
  .is-sub .button-menu span:nth-child(1) {
    top: 0.19rem;
  }
  .is-sub .button-menu span:nth-child(2) {
    top: 0.29rem;
  }
  .is-sub .button-menu span:nth-child(3) {
    top: 0.39rem;
  }
  .is-sub .menu-active span:nth-child(2), .is-sub .menu-active span:nth-child(3) {
    width: 0.16rem;
    margin-left: 0.37rem;
  }
  .is-sub .inner-different .block-right {
    margin-top: 0.09rem;
  }
  .is-sub .block-social {
    top: 0.61rem;
    width: 0.66rem;
    padding-top: 0.3rem;
    height: calc(100vh - .61rem);
    right: -0.66rem;
  }
  .is-sub .header-navigation {
    width: 100%;
    padding: 0.39rem 0.65rem 0.45rem 0;
    height: 100%;
    display: block;
    right: -100%;
  }
  .is-sub .header-navigation .link-main:before {
    top: 0.03rem;
  }
  .is-sub .header-navigation .link-main:after {
    top: 0.01rem;
  }
  .is-sub .header-navigation .link-navigation:before {
    top: 0.065rem;
  }
  .is-sub .navigation-icon img {
    width: 1.38rem;
  }
  .is-sub .link-navigation {
    font-size: 0.14rem;
    padding-left: 0.1rem;
  }
  .is-sub .link-navigation:before {
    width: 0.055rem;
    height: 0.075rem;
    top: 0.05rem;
  }
  .is-sub .navigation-icon {
    margin-bottom: 0.39rem;
  }
  .is-sub .navigation-block {
    height: 100%;
  }
  .is-sub .navigation-block .common-block-company {
    margin-bottom: 0.26rem;
    padding-top: 0.3rem;
    padding-bottom: 0.28rem;
  }
  .is-sub .navigation-icon,
  .is-sub .item-navigation,
  .is-sub .common-block-company,
  .is-sub .common-link-main {
    padding: 0 0.19rem;
  }
  .is-sub .item-navigation:not(:last-child) {
    margin-bottom: 0.265rem;
  }
  .is-sub .list-navigation {
    padding-bottom: 0.36rem;
  }
  .is-sub .header-garage .header-logo {
    width: 1.51rem;
  }

  .is-android .is-sub .header-navigation .link-main:before {
    top: 0.035rem;
  }
  .is-android .is-sub .common-block-company .item-link:before {
    top: 0.065rem;
  }
}
@media only screen and (max-width: 374px) {
  .is-sub .link-navigation:before {
    width: 0.05rem;
  }
}
footer .footer-text {
  font-weight: 600;
}

.footer-main {
  border-top: solid 1px #ccc;
}

.footer-sub .footer-middle .wrapper,
.footer-sub .button-footer,
.footer-sub .block-garage {
  position: relative;
}
.footer-sub .footer-middle .wrapper {
  z-index: 2;
}
.footer-sub .text-highlight,
.footer-sub .text-content {
  font-weight: 600;
}
.footer-sub .text-highlight {
  color: #fff;
  background-color: #024496;
  display: inline-block;
}
.footer-sub .text-content {
  line-height: 2;
}
.footer-sub .button-footer {
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #0a0808;
  background-color: #fff;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-sub .button-footer:after {
  background: center/100% auto no-repeat;
}
.footer-sub .button-footer:after,
.footer-sub .block-garage:before,
.footer-sub .block-garage::after {
  position: absolute;
  content: "";
}
.footer-sub .block-garage {
  z-index: 1;
  border-top: solid 1px #c4c4c4;
  border-bottom: solid 1px #c4c4c4;
}
.footer-sub .block-garage:before, .footer-sub .block-garage:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-sub .block-garage:before {
  background: center/cover no-repeat;
}
.footer-sub .block-garage:after {
  background: rgba(255, 255, 255, 0.8);
}
.footer-sub .list-logo,
.footer-sub .button-footer {
  display: -ms-flexbox;
  display: flex;
}
.footer-sub .list-logo .image-logo,
.footer-sub .image-big {
  display: block;
}
.footer-sub .inner-company,
.footer-sub .button-footer {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.footer-sub .footer-bottom,
.footer-sub .link-sub {
  color: #fff;
}
.footer-sub .footer-bottom {
  letter-spacing: 0.1em;
}
.footer-sub .block-inquiry {
  background-color: #555;
}
.footer-sub .block-inquiry .text-inquiry {
  font-weight: 600;
}
.footer-sub .block-inquiry .text-detail {
  line-height: 2;
  letter-spacing: 0;
}
.footer-sub .block-inquiry .text-detail a {
  color: #fff;
}
.footer-sub .block-navigation {
  background-color: #333;
}
.footer-sub .text-copyright {
  color: #aaa;
}
.footer-sub .wrapper-button {
  text-align: center;
}
.footer-sub .footer-garage .text-highlight {
  background-color: #333;
}
.footer-sub .footer-garage .block-garage:before {
  background-image: url(../img/common/footer_bg_03.jpg);
}
.footer-sub .footer-garage .block-navigation {
  background: #01224b;
}
.footer-sub .footer-garage .footer-top {
  background-image: url(../img/common/header_bg_02.png);
  background-position: bottom;
}

.footer-garage .block-inquiry,
.footer-garage .slick-dots .slick-active {
  background: #3569ab;
}

@media print, (min-width: 768px) {
  footer {
    padding: 18px 0;
  }
  footer .inner-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  footer .footer-left {
    margin-top: 3px;
  }
  footer .list-navigation,
  footer .inner-wrapper {
    display: -ms-flexbox;
    display: flex;
  }
  footer .list-navigation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer-text {
    font-size: 12px;
    margin-bottom: 3px;
    letter-spacing: 0.1em;
  }
  footer .link-navigation,
  footer .copyright {
    font-size: 10px;
  }
  footer .item-navigation:not(:last-child) {
    margin-right: 20px;
  }
  footer .copyright-wrapper {
    width: 100%;
    min-width: 1100px;
    height: 100vh;
    left: 0;
  }
  footer .copyright {
    display: block;
    color: #aaa;
    padding-top: 6px;
    letter-spacing: 0.1em;
  }

  .footer-sub .logo-kashiwa {
    width: 145px;
  }
  .footer-sub .logo-koil {
    width: 93px;
  }
  .footer-sub .footer-different {
    margin-bottom: -18px;
    padding-right: 88px;
    padding-top: 22px;
  }
  .footer-sub .footer-different .common-button-black {
    padding: 9px 57px 9px 34px;
  }
  .footer-sub .footer-different .common-button-black:after {
    top: 10px;
    right: 35px;
  }
  .footer-sub .section-title {
    margin-bottom: 75px;
  }
  .footer-sub .common-slide {
    margin-bottom: 91px;
  }
  .footer-sub .footer-top {
    padding-bottom: 67px;
    background: url(../img/common/footer_bg.png) bottom center/100% 343px repeat-x;
  }
  .footer-sub .logo-company {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 400px;
    margin-right: 47px;
    margin-left: 15px;
    text-align: center;
  }
  .footer-sub .text-highlight {
    padding: 5px 10px 5px 20px;
    font-size: 18px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .footer-sub .text-content,
  .footer-sub .button-footer,
  .footer-sub .block-inquiry .text-detail,
  .footer-sub .link-sub {
    font-size: 12px;
  }
  .footer-sub .text-content {
    margin-top: 12px;
    margin-bottom: 19px;
  }
  .footer-sub .button-footer {
    height: 30px;
    width: 225px;
    border-radius: 100px;
    padding: 8px 60px 5px 37px;
    box-shadow: 0 3px 0 0 #333;
  }
  .footer-sub .button-footer:after {
    top: 9px;
    right: 39px;
    width: 12px;
    height: 10px;
    background-image: url(../img/top/icon_arrow_right_black.png);
  }
  .footer-sub .block-garage {
    margin-bottom: 41px;
    padding: 51px 0 52px;
  }
  .footer-sub .block-garage:before {
    background-image: url(../img/common/footer_bg_02.jpg);
  }
  .footer-sub .block-garage + .block-garage {
    margin-top: -41px;
  }
  .footer-sub .block-garage--garden:before {
    background-image: url(../img/common/footer_bg_04.jpg);
  }
  .footer-sub .block-garage--garden .logo-company img {
    width: 270px;
  }
  .footer-sub .block-garage--garden .text-highlight {
    background: #00AE8D;
  }
  .footer-sub .inner-company,
  .footer-sub .common-link-main,
  .footer-sub .inner-bottom {
    max-width: 1440px;
    margin: 0 auto;
  }
  .footer-sub .inner-company {
    padding-right: 40px;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-sub .list-logo {
    margin-bottom: 60px;
  }
  .footer-sub .list-logo li:not(:first-child) {
    margin-left: 30px;
  }
  .footer-sub .block-right {
    margin-top: 8px;
  }
  .footer-sub .block-left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 792px;
    margin-right: 20px;
  }
  .footer-sub .block-left .common-block-company {
    padding-right: 10px;
  }
  .footer-sub .block-left .image-logo {
    width: 175px;
    margin-right: 18px;
  }
  .footer-sub .block-company .common-link-main {
    padding: 0 40px;
  }
  .footer-sub .footer-middle .wrapper,
  .footer-sub .block-inquiry .inner-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .footer-sub .footer-middle {
    margin-bottom: 37px;
  }
  .footer-sub .footer-middle .image-big {
    width: 172px;
    margin-left: auto;
  }
  .footer-sub .inner-bottom {
    padding: 0 40px;
  }
  .footer-sub .block-inquiry .inner-bottom {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .footer-sub .block-inquiry .text-inquiry {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 215px;
    margin-right: 24px;
    font-size: 14px;
  }
  .footer-sub .block-inquiry .is-address {
    letter-spacing: 0.1em;
  }
  .footer-sub .list-sub-navigation {
    display: -ms-flexbox;
    display: flex;
  }
  .footer-sub .block-navigation .inner-bottom {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer-sub .sub-navigation {
    margin-bottom: 19px;
  }
  .footer-sub .item-sub:not(:last-child) {
    margin-right: 16px;
  }
  .footer-sub .text-copyright {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .footer-sub .footer-garage .logo-company {
    width: 263px;
  }
  .footer-sub .footer-garage .button-footer {
    width: 206px;
    padding-top: 6px;
    padding-left: 39px;
  }
  .footer-sub .footer-garage .button-footer:after {
    top: 10px;
  }
  .footer-sub .footer-garage .text-highlight {
    border-radius: 0;
  }

  .is-tablet .footer-sub .button-footer {
    padding-bottom: 7px;
  }
}
@media only screen and (max-width: 767.98px) {
  footer {
    padding-top: 0.31rem;
    padding-bottom: 0.4rem;
  }
  footer .footer-different {
    padding-top: 0.09rem;
    margin-bottom: -0.4rem;
  }
  footer .inner-wrapper {
    padding: 0 0.2rem;
  }
  footer .footer-text {
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 0.26rem;
  }
  footer .link-navigation,
  footer .footer-text {
    font-size: 0.1rem;
  }
  footer .item-navigation {
    letter-spacing: 0.1em;
  }
  footer .item-navigation:not(:last-child) {
    margin-bottom: 0.13rem;
  }
  footer .footer-left {
    margin-bottom: 0.67rem;
  }
  footer .footer-right {
    display: block;
    width: 1.12rem;
    margin: 0 auto 0.41rem;
  }
  footer .footer-right img {
    width: 100%;
  }
  footer .copyright {
    display: block;
    margin-top: 40px;
    font-size: 0.09rem;
    font-weight: 400;
    color: #aaa;
  }

  .footer-sub .footer-top {
    padding-bottom: 0.41rem;
    background: url(../img/common/sp/footer_bg.png) bottom center/100% 2.34rem repeat-x;
  }
  .footer-sub .footer-top .wrapper {
    padding-right: 0;
  }
  .footer-sub .footer-top .common-slide {
    margin-bottom: 0.56rem;
  }
  .footer-sub .footer-top .section-title {
    margin-bottom: 0.64rem;
    padding-right: 0.2rem;
  }
  .footer-sub .footer-top .section-title:after {
    left: 47.2%;
  }
  .footer-sub .footer-top .wrapper-button {
    padding-right: 0.2rem;
  }
  .footer-sub .footer-top .common-button-black {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 1.6rem;
    margin: 0 auto;
  }
  .footer-sub .logo-company {
    width: 2.05rem;
    margin: 0 auto 0.3rem;
  }
  .footer-sub .logo-company img {
    width: 100%;
  }
  .footer-sub .content-highlight {
    text-align: center;
  }
  .footer-sub .footer-middle .block-garage {
    padding: 0.5rem 0 0.31rem;
  }
  .footer-sub .footer-middle .block-garage:before {
    background-image: url(../img/common/sp/footer_bg_02.jpg);
  }
  .footer-sub .footer-middle .block-garage--garden:before {
    background-image: url(../img/common/sp/footer_bg_04.jpg);
  }
  .footer-sub .footer-middle .block-garage--garden .logo-company {
    width: 160px;
  }
  .footer-sub .footer-middle .block-garage--garden .text-highlight {
    background: #00AE8D;
  }
  .footer-sub .footer-middle .content-highlight {
    margin-bottom: 0.14rem;
  }
  .footer-sub .footer-middle .text-highlight {
    margin-bottom: 0.05rem;
    padding: 0.05rem 0.15rem 0.04rem 0.21rem;
  }
  .footer-sub .footer-middle .button-footer {
    height: 0.26rem;
    width: 1.73rem;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 0.03rem 0 0 #333;
    padding: 0.05rem 0.4rem 0.03rem 0.22rem;
    letter-spacing: 0.05em;
  }
  .footer-sub .footer-middle .button-footer:after {
    background-image: url(../img/top/icon_arrow_right_black.png);
    top: 0.08rem;
    width: 0.08rem;
    height: 0.08rem;
    right: 0.29rem;
  }
  .footer-sub .footer-middle .text-content {
    margin-bottom: 0.2rem;
  }
  .footer-sub .footer-middle .common-block-social {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .footer-sub .footer-middle .block-social {
    border-bottom: solid 1px #ccc;
    padding: 0.21rem 0.2rem 0.2rem;
  }
  .footer-sub .footer-middle .text-social,
  .footer-sub .footer-middle .item-social:not(:last-child) {
    margin-bottom: 0;
  }
  .footer-sub .footer-middle .item-social {
    width: 0.16rem;
  }
  .footer-sub .footer-middle .text-social {
    letter-spacing: 0.2em;
    margin-right: 0.18rem;
  }
  .footer-sub .footer-middle .item-social:not(:last-child) {
    margin-right: 0.2rem;
  }
  .footer-sub .footer-middle .block-right {
    padding: 0.4rem 0;
  }
  .footer-sub .image-big {
    width: 1.86rem;
    margin: 0 auto;
  }
  .footer-sub .logo-kashiwa {
    width: 1.45rem;
  }
  .footer-sub .logo-koil {
    width: 0.93rem;
  }
  .footer-sub .logo-kashiwa img,
  .footer-sub .logo-koil img,
  .footer-sub .image-big img {
    width: 100%;
  }
  .footer-sub .list-logo {
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 0.4rem;
    margin-right: 0.01rem;
  }
  .footer-sub .list-logo li:not(:last-child) {
    margin-right: 0.4rem;
  }
  .footer-sub .common-link-main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0.16rem 0.2rem 0;
    border-bottom: solid 1px #ccc;
  }
  .footer-sub .common-link-main li:not(:last-child) {
    margin-right: 0.31rem;
  }
  .footer-sub .block-detail,
  .footer-sub .link-sub,
  .footer-sub .text-copyright,
  .footer-sub .text-content,
  .footer-sub .footer-middle .button-footer {
    font-size: 0.1rem;
  }
  .footer-sub .footer-bottom .inner-bottom {
    padding: 0 0.2rem;
  }
  .footer-sub .block-inquiry .inner-bottom {
    padding-top: 0.28rem;
    padding-bottom: 0.29rem;
  }
  .footer-sub .block-inquiry .text-inquiry {
    margin-bottom: 0.17rem;
  }
  .footer-sub .block-navigation .inner-bottom {
    padding-top: 0.27rem;
    padding-bottom: 0.38rem;
  }
  .footer-sub .item-sub:not(:last-child) {
    margin-bottom: 0.13rem;
  }
  .footer-sub .sub-navigation {
    margin-bottom: 0.66rem;
  }
  .footer-sub .text-copyright {
    letter-spacing: 0.05em;
  }
  .footer-sub .footer-garage .block-garage {
    padding-top: 0.4rem;
  }
  .footer-sub .footer-garage .block-garage:before {
    background-image: url(../img/common/sp/footer_bg_03.jpg);
  }
  .footer-sub .footer-garage .logo-company {
    width: 1.2rem;
  }
  .footer-sub .footer-garage .button-footer {
    -ms-flex-pack: center;
        justify-content: center;
    width: 1.58rem;
    padding-top: 0.03rem;
  }
  .footer-sub .footer-garage .text-social {
    font-family: "Barlow", sans-serif;
  }
  .footer-sub .footer-garage .text-highlight {
    padding-top: 0.04rem;
    padding-bottom: 0.03rem;
  }

  .is-android .footer-sub .footer-middle .text-highlight {
    padding-top: 0.03rem;
    padding-bottom: 0.05rem;
  }
}
.common-block-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
}
.common-block-social .text-social {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: left;
}
.common-block-social .common-list-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.common-block-social .link-social svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  width: 19px;
  height: auto;
}

.header-different .common-block-social .link-social svg {
  fill: #fff;
}

@media print, (min-width: 768px) {
  .common-block-social {
    margin-top: 11px;
  }
  .common-block-social .text-social {
    padding-top: 2px;
    font-size: 12px;
    margin-right: 19px;
    line-height: 12px;
  }
  .common-block-social .common-list-social {
    margin-right: 17px;
  }
  .common-block-social .item-social:not(:last-child) {
    margin-right: 19px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-block-social .text-social {
    font-size: 0.1rem;
    margin: 0 auto 0.27rem;
  }
  .common-block-social .link-social {
    width: 0.16rem;
  }
  .common-block-social .link-social img {
    width: 100%;
  }
  .common-block-social .item-social:not(:last-child) {
    margin-bottom: 0.21rem;
  }
}
.section-title,
.title-primary {
  font-weight: 600;
  position: relative;
}
.section-title:after,
.title-primary:after {
  position: absolute;
  content: "";
  background-color: #333;
}
.section-title span,
.title-primary span {
  display: block;
}
.section-title .title-japan,
.title-primary .title-japan {
  letter-spacing: 0.05em;
}

.section-title {
  text-align: center;
}
.section-title:after {
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.section-title .title-english {
  color: #eee;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.section-title .title-english.color-blue {
  color: #ebf0f7;
  font-family: "Barlow", sans-serif;
}

.title-primary:after {
  bottom: 0;
  left: 0;
}
.title-primary .title-english {
  color: #aaa;
}

@media print, (min-width: 768px) {
  .section-title:after {
    bottom: -15px;
    height: 3px;
    width: 54px;
  }
  .section-title .title-english {
    font-size: 80px;
    margin-bottom: -30px;
  }
  .section-title .title-japan {
    font-size: 32px;
  }

  .title-primary {
    margin-bottom: 80px;
    padding-bottom: 26px;
  }
  .title-primary:after {
    width: 54px;
    height: 3px;
  }
  .title-primary .title-english {
    font-size: 32px;
    margin-bottom: 9px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-title:after {
    width: 0.54rem;
    height: 0.03rem;
    bottom: -0.23rem;
  }
  .section-title .title-english {
    font-size: 0.4rem;
    margin-bottom: -0.14rem;
  }
  .section-title .title-japan {
    font-size: 0.2rem;
  }

  .title-primary {
    margin-bottom: 0.81rem;
    padding-bottom: 0.2rem;
  }
  .title-primary:after {
    width: 0.54rem;
    height: 0.03rem;
  }
  .title-primary .title-english {
    font-size: 0.24rem;
    margin-bottom: 0.05rem;
  }
  .title-primary .title-japan {
    font-size: 0.14rem;
  }
}
.floating-nav {
  display: none;
  transition: 0.3s;
}
@media print, (min-width: 768px) {
  .floating-nav {
    display: block;
    position: fixed;
    right: -100px;
    bottom: 40px;
    z-index: 9;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .floating-nav .nav-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 120px;
    height: 87px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
  }
  .floating-nav .nav-item:hover {
    opacity: 0.8;
  }
  .floating-nav .icon-arrow-left {
    margin-right: 10px;
  }
  .floating-nav .icon-arrow-left svg {
    display: block;
    width: 12px;
    height: auto;
  }
  .floating-nav .nav-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    line-height: 1.2;
  }
  .floating-nav .nav-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .floating-nav .nav-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-family: "Montserrat", sans-serif;
  }
  .floating-nav .nav-sub-text {
    margin-top: 5px;
    font-size: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
    line-height: 1;
    text-align: center;
  }
}

header.is-fixed .header-logo {
  width: auto;
}

header.is-fixed .inner-wrapper {
  background: none;
}

.section-tenancy .list-tenancy-links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 40px;
}
.section-tenancy .item-tenancy-link a {
  display: block;
  border: 1px solid #ccc;
  text-decoration: none;
  color: inherit;
}
.section-tenancy .item-tenancy-link a:hover {
  opacity: 1;
}
.section-tenancy .item-tenancy-link a:hover .text-tenancy {
  color: #75b64c;
}
.section-tenancy .image-area {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: hidden;
}
.section-tenancy .image-area > img {
  transition: 0.3s;
}
.section-tenancy .image-area img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-tenancy .logo-tenancy {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  text-align: center;
}
.section-tenancy .text-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.section-tenancy .text-tenancy {
  font-weight: 400;
  color: #333;
  transition: 0.3s;
}
.section-tenancy .icon-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.section-tenancy .icon-arrow svg {
  display: block;
}
.section-tenancy .tenancy-buttons {
  padding: 0 20px;
  margin-top: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.section-tenancy .tenancy-button {
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #333;
  transition: 0.3s;
  padding: 8px 40px;
  font-size: 14px;
}

@media print, (min-width: 768px) {
  .section-tenancy {
    padding-top: 145px;
    padding-bottom: 119px;
  }
  .section-tenancy .section-title {
    margin-bottom: 94px;
  }
  .section-tenancy .block-tenancy {
    width: 720px;
    margin: 0 auto;
  }
  .section-tenancy .list-tenancy-links {
    gap: 4px;
  }
  .section-tenancy .item-tenancy-link {
    width: 340px;
  }
  .section-tenancy .item-tenancy-link a {
    transition: opacity 0.3s ease;
  }
  .section-tenancy .item-tenancy-link a:hover .image-area > img {
    opacity: 0.5;
  }
  .section-tenancy .image-area {
    height: 244px;
  }
  .section-tenancy .logo-tenancy img {
    max-width: 200px;
  }
  .section-tenancy .text-area {
    padding: 20px 15px;
  }
  .section-tenancy .text-tenancy {
    font-size: 14px;
  }
  .section-tenancy .icon-arrow {
    width: 12px;
    height: 12px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-tenancy {
    padding-top: 1rem;
    padding-bottom: 0.38rem;
  }
  .section-tenancy .section-title {
    margin-bottom: 0.62rem;
  }
  .section-tenancy .list-tenancy-links {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    gap: 0.3rem;
  }
  .section-tenancy .item-tenancy-link {
    width: 100%;
  }
  .section-tenancy .logo-tenancy img {
    max-width: 1.8rem;
  }
  .section-tenancy .text-area {
    padding: 0.2rem 15px;
  }
  .section-tenancy .text-tenancy {
    font-size: 0.14rem;
  }
  .section-tenancy .icon-arrow {
    width: 0.12rem;
    height: 0.12rem;
  }
}
.section-tenancy .block-tenancy-detail {
  display: -ms-flexbox;
  display: flex;
}
.section-tenancy .detail-left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-tenancy .detail-left-inner {
  top: 0;
  transition: 0.3s;
}
.section-tenancy .detail-left-inner.is-sticky {
  position: fixed;
}
.section-tenancy .detail-left-inner.is-stop {
  position: absolute;
  bottom: 0;
}
.section-tenancy .logo-facility img {
  display: block;
}
.section-tenancy .link-facility {
  display: inline-block;
  color: #333;
  text-decoration: none;
}
.section-tenancy .link-facility:hover {
  text-decoration: underline;
}
.section-tenancy .detail-right {
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.section-tenancy .detail-title {
  color: #fff;
  background: #333;
  font-weight: 700;
}
.section-tenancy .detail-list {
  border-top: solid 1px #ccc;
}
.section-tenancy .detail-item {
  display: -ms-flexbox;
  display: flex;
  border-bottom: dashed 1px #ccc;
}
.section-tenancy .detail-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.section-tenancy .detail-item dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  ine-height: 1.8;
}
.section-tenancy .detail-item dd {
  -ms-flex-positive: 1;
      flex-grow: 1;
  line-height: 1.8;
}

@media print, (min-width: 768px) {
  .section-tenancy .block-tenancy-detail {
    position: relative;
    padding-top: 100px;
  }
  .section-tenancy .detail-left {
    width: 240px;
    margin-right: 30px;
  }
  .section-tenancy .detail-left-inner {
    padding-top: 15px;
    width: 240px;
  }
  .section-tenancy .detail-left-inner.is-sticky {
    top: 100px;
  }
  .section-tenancy .logo-facility {
    margin-bottom: 30px;
  }
  .section-tenancy .logo-facility img {
    max-width: 200px;
  }
  .section-tenancy .link-facility {
    font-size: 14px;
    font-weight: bold;
  }
  .section-tenancy .detail-right {
    max-width: 600px;
  }
  .section-tenancy .detail-title {
    padding: 5px 15px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .section-tenancy .detail-item {
    padding: 15px;
  }
  .section-tenancy .detail-item dt {
    width: 120px;
    font-size: 14px;
  }
  .section-tenancy .detail-item dd {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-tenancy .block-tenancy-detail {
    -ms-flex-direction: column;
        flex-direction: column;
    padding-top: 0.6rem;
  }
  .section-tenancy .block-tenancy-detail:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  .section-tenancy .detail-left {
    margin-bottom: 0.4rem;
  }
  .section-tenancy .detail-left-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 20px;
  }
  .section-tenancy .logo-facility img {
    height: 42px;
  }
  .section-tenancy .link-facility {
    font-size: 0.12rem;
    font-weight: bold;
  }
  .section-tenancy .detail-title {
    padding: 0.05rem 0.15rem;
    font-size: 0.14rem;
    letter-spacing: 0.05em;
  }
  .section-tenancy .detail-item {
    padding: 0.1rem 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-tenancy .detail-item dt {
    width: 1rem;
    padding-left: 0.1rem;
    font-size: 0.12rem;
    line-height: 1.6;
  }
  .section-tenancy .detail-item dd {
    width: calc(100% - 1rem);
    font-size: 0.12rem;
    line-height: 1.6;
  }
}
.section-tenancy .section-floormap .tab-content {
  display: none;
}
.section-tenancy .section-floormap .tab-content.current {
  display: block;
}
.section-tenancy .section-floormap .tab-content img {
  cursor: pointer;
}
.section-tenancy .floormap-content {
  position: relative;
}
.section-tenancy .floormap-image img {
  width: 100%;
  height: auto;
  display: block;
}
.section-tenancy .floormap-tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.section-tenancy .floormap-tabs li {
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #333;
  transition: 0.3s;
}
.section-tenancy .floormap-tabs li.current {
  background: #333;
  color: #fff;
}
.section-tenancy .floormap-tabs li:not(.current):hover {
  background: #f5f5f5;
}

@media print, (min-width: 768px) {
  .section-tenancy .section-floormap {
    margin-top: 60px;
  }
  .section-tenancy .floormap-image {
    margin-bottom: 30px;
  }
  .section-tenancy .floormap-tabs li {
    width: 80px;
    padding: 8px 0;
    font-size: 14px;
  }
  .section-tenancy .floormap-tabs li:first-child {
    border-right: none;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-tenancy .section-floormap {
    margin-top: 0.4rem;
  }
  .section-tenancy .floormap-image {
    margin-bottom: 0.2rem;
  }
  .section-tenancy .floormap-tabs li {
    width: 0.8rem;
    padding: 0.05rem 0;
    font-size: 0.12rem;
  }
  .section-tenancy .floormap-tabs li:first-child {
    border-right: none;
  }
}
.section-tenancy .section-vacancy .vacancy-table {
  overflow-x: auto;
}
.section-tenancy .section-vacancy table {
  width: 100%;
  border-collapse: collapse;
}
.section-tenancy .section-vacancy thead tr {
  background: #eee;
  border-bottom: 1px solid #000;
}
.section-tenancy .section-vacancy thead th {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.section-tenancy .section-vacancy tbody tr {
  border-bottom: solid 1px #ccc;
}
.section-tenancy .section-vacancy tbody tr:last-child {
  border-bottom: solid 1px #000;
}
.section-tenancy .section-vacancy tbody td {
  text-align: center;
  vertical-align: middle;
  line-height: 1.6;
}
.section-tenancy .section-vacancy tbody td.text-left {
  text-align: left;
}
.section-tenancy .section-vacancy .vacancy-num {
  display: block;
  font-weight: 700;
}
.section-tenancy .section-vacancy .vacancy-type {
  display: block;
}
.section-tenancy .vacancy-contact {
  text-align: center;
}
.section-tenancy .btn-contact {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #6BBF4E;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.section-tenancy .btn-contact:hover {
  opacity: 0.8;
}
.section-tenancy .btn-contact svg {
  margin-left: 10px;
}

@media print, (min-width: 768px) {
  .section-tenancy .section-vacancy {
    margin-top: 60px;
  }
  .section-tenancy thead th {
    padding: 13px 15px;
    font-size: 12px;
  }
  .section-tenancy tbody td {
    padding: 15px 5px;
    font-size: 12px;
  }
  .section-tenancy .vacancy-num {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .section-tenancy .vacancy-type {
    font-size: 10px;
  }
  .section-tenancy .vacancy-contact {
    margin-top: 50px;
  }
  .section-tenancy .btn-contact {
    min-width: 340px;
    padding: 18px 40px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-tenancy .section-vacancy {
    margin-top: 0.3rem;
  }
  .section-tenancy .vacancy-table {
    margin: 0 -0.15rem;
    padding: 0 0.15rem;
  }
  .section-tenancy table {
    min-width: 6.5rem;
  }
  .section-tenancy thead th {
    padding: 0.1rem 0.12rem;
    font-size: 0.11rem;
  }
  .section-tenancy tbody td {
    padding: 0.1rem 0.1rem;
    font-size: 0.11rem;
  }
  .section-tenancy .vacancy-num {
    font-size: 0.14rem;
    margin-bottom: 0.03rem;
  }
  .section-tenancy .vacancy-type {
    font-size: 0.1rem;
  }
  .section-tenancy .vacancy-contact {
    margin-top: 0.4rem;
  }
  .section-tenancy .btn-contact {
    width: 100%;
    max-width: 2.5rem;
    padding: 0.1rem 0.2rem;
    font-size: 0.14rem;
  }
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.lightbox-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 2%;
  box-sizing: border-box;
  pointer-events: none;
}
.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10001;
  pointer-events: auto;
}
.lightbox-close::before, .lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #fff;
  -ms-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
}
.lightbox-close::after {
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg);
}

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