@charset "UTF-8";
/* 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;
}

button:focus {
  outline: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}

input[type="submit"],
input[type="reset"] {
  cursor: pointer;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* base
----------------------------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  font-family: Helvetica, "Helvetica Neue", Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Droid Sans", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  color: #101010;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* header
----------------------------------------------------------*/
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: background-color .5s;
  -o-transition: background-color .5s;
  transition: background-color .5s;
}

.global-header.type-black {
  height: 60px;
  background-color: #fff;
}

.header-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
}

.header-logo-black {
  opacity: 0;
}

.type-black + .menu-btn .type-black {
  display: block;
}

.type-black + .menu-btn .type-white {
  display: none;
}

.type-black .header-logo > img {
  opacity: 0;
}

.type-black .header-logo-black {
  opacity: 1;
}

.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  z-index: 9999;
  line-height: 1;
  cursor: pointer;
  background: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.menu-btn.on .type-black .bar {
  background-color: #fff;
}

.menu-btn.on .bar01,
.menu-btn.on .bar03 {
  top: 4px;
  opacity: 0;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.menu-btn.on .bar02 {
  top: 11px;
  -webkit-transform: rotate(-45deg) translateY(-50%) translateX(1px);
  -ms-transform: rotate(-45deg) translateY(-50%) translateX(1px);
  transform: rotate(-45deg) translateY(-50%) translateX(1px);
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s;
}

.menu-btn.on .bar04 {
  top: 11px;
  -webkit-transform: rotate(45deg) translateY(-50%) translateX(-1px);
  -ms-transform: rotate(45deg) translateY(-50%) translateX(-1px);
  transform: rotate(45deg) translateY(-50%) translateX(-1px);
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s;
}

.menu-btn.on .open-text {
  display: none;
}

.menu-btn.on .close-text {
  display: block;
}

.menu-btn .bar-box {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  width: 30px;
  margin: -1px auto 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.menu-btn .type-black {
  display: none;
}

.menu-btn .type-black .bar {
  background-color: #101010;
}

.menu-btn .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  vertical-align: top;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.menu-btn .bar02,
.menu-btn .bar04 {
  top: 9px;
}

.menu-btn .bar01,
.menu-btn .bar03 {
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s;
}

.menu-btn .bar03 {
  top: 18px;
}

.menu-btn .close-text {
  display: none;
}

.global-nav {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  z-index: 9998;
  padding: 0;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  visibility: hidden;
}

.global-nav .nav-inner {
  position: relative;
  z-index: 9;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#34a057), to(#58bfc5));
  background: -webkit-linear-gradient(top, #34a057 0%, #58bfc5 100%);
  background: -o-linear-gradient(top, #34a057 0%, #58bfc5 100%);
  background: linear-gradient(to bottom, #34a057 0%, #58bfc5 100%);
}

.global-nav .nav-box {
  position: relative;
  padding: 60px 40px;
}

.global-nav .current .ct-hv-bg:before {
  opacity: 1;
}

.global-nav-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9997;
  background-color: rgba(0, 0, 0, 0.7);
}

.global-nav-logo {
  margin: 0 0 40px;
}

.global-nav-list {
  margin: 0 0 43px;
}

.global-nav-list a {
  display: block;
  padding: 20px 0 19px;
}

.global-nav-text {
  margin: 0 0 12px;
}

.tel-link-btn {
  display: block;
  padding: 8px 10px 8px;
  border-radius: 99em;
  border: 1px solid #fff;
}

.tel-icon:before {
  content: "";
  position: relative;
  top: 2px;
  display: inline-block;
  height: 18px;
  width: 14px;
  margin: 0 8px 0 1px;
  background: url(../img/icon-tel.png) no-repeat;
  background-size: contain;
}

@media only screen and (min-width: 768px) {
  .global-header.type-black {
    height: 70px;
  }
  .header-logo {
    top: 14px;
    left: 30px;
    z-index: 9;
  }
  .header-logo img {
    width: 223px;
  }
  .menu-btn {
    height: 70px;
    width: 68px;
  }
  .global-nav .nav-box {
    position: relative;
    padding: 120px 40px 60px;
  }
  .global-nav-logo {
    margin-bottom: 42px;
  }
  .global-nav-list {
    margin-bottom: 51px;
  }
  .global-nav-list li + li {
    margin-top: 2px;
  }
  .global-nav-text {
    margin: 0 0 5px;
  }
  .tel-icon:before {
    margin: 0 12px 0 3px;
  }
}

/* footer
----------------------------------------------------------*/
.global-footer {
  padding: 30px 0 26px;
}

.logo-foot {
  margin: 0 0 19px;
}

@media only screen and (min-width: 768px) {
  .global-footer {
    padding: 30px 0 17px;
  }
  .logo-foot {
    margin: 0 0 20px;
  }
  .logo-foot img {
    width: 188px;
  }
}

.color-white {
  color: #fff;
}

.color-white a {
  color: #fff;
}

.color-black {
  color: #101010;
}

.color-black a {
  color: #101010;
}

.bg-black {
  background-color: #101010;
}

.bg-gray01 {
  background-color: #ccc;
}

.bg-white {
  background-color: #fff;
}

.bg-green-lt {
  background-color: #ebf2ee;
}

.disabled {
  opacity: 0.5 !important;
  cursor: default !important;
  pointer-events: none;
}

.set-hidden-text {
  overflow: hidden;
  position: absolute;
  opacity: 0;
  z-index: -1;
  height: 1px;
  width: 1px;
  font-size: 1px;
}

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

.btn-elm {
  cursor: pointer;
}

.hv-op0,
.hv-op {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.transition {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.lazyload,
.lazyloading {
  height: 1px;
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
}

.fs-i {
  font-style: italic;
}

/* layout */
.of-hid {
  overflow: hidden;
}

.op-0 {
  opacity: 0;
}

.bs-b {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.br-50 {
  border-radius: 50%;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

.fl-l-pc-sp {
  float: left;
}

.fl-r-pc-sp {
  float: right;
}

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

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

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

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

.posi-r {
  position: relative;
}

.table-style {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.table-style.i-block {
  display: inline-table;
}

.table-style.w-auto {
  width: auto;
}

.table-cell {
  display: table-cell;
}

.i-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

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

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

.flex-d-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-jc-c {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-jc-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-jc-space {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-ai-c {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-ai-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-ai-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-d-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-shrink-0 {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.bg-style {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-size-contain {
  background-size: contain;
}

.bg-posi-top {
  background-position: center top;
}

.va-top {
  vertical-align: top;
}

.va-mid {
  vertical-align: middle;
}

.va-b {
  vertical-align: bottom;
}

.va-base {
  vertical-align: baseline;
}

.w100 {
  width: 100%;
}

.mw380 {
  max-width: 380px;
}

.minw80 {
  min-width: 80px;
}

.m-c {
  margin-left: auto;
  margin-right: auto;
}

.ml-a {
  margin-left: auto;
}

img.w100 {
  height: auto;
}

.w-auto {
  width: auto;
}

.pt100 {
  padding-top: 100%;
}

.pt70 {
  padding-top: 70%;
}

.pt67 {
  padding-top: 67%;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-05em {
  margin-top: 0.5em;
}

.hidden {
  display: none !important;
}

.wb-ba {
  word-break: break-all;
}

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

.over-elm {
  position: relative;
  z-index: 9;
}

.posi-full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.posi-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.posi-center-w100 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.zi-9 {
  z-index: 9;
}

.w-full-area {
  position: relative;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.scale-elm {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.iframe-wrap {
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
}

.iframe-wrap video,
.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.iframe-wrap-map {
  overflow: hidden;
  position: relative;
  padding-top: 40%;
}

.iframe-wrap-map video,
.iframe-wrap-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.iframe-wrap-map02 {
  overflow: hidden;
  position: relative;
  padding-top: 42.85714%;
}

.iframe-wrap-map02 video,
.iframe-wrap-map02 iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.td-u {
  text-decoration: underline;
}

.page-link-box-posi:before {
  content: "";
  display: block;
  margin-top: -50px;
  padding-top: 50px;
}

.hv-img-elm {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.hv-op100 {
  opacity: 0;
}

.hv-line-none {
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
  .table-style-pc {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .table-style-pc.w-auto {
    width: auto;
  }
  .table-style-i-pc {
    display: inline-table;
    table-layout: fixed;
    width: 100%;
  }
  .table-style-i-pc.w-auto {
    width: auto;
  }
  .table-cell-pc {
    display: table-cell;
  }
  .txt-r-pc {
    text-align: right;
  }
  .txt-c-pc {
    text-align: center;
  }
  .sp-mode {
    display: none !important;
  }
  .flex-pc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-wrap-pc {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-jc-c-pc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-jc-space-pc {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-ai-c-pc {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-ai-start-pc {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-ai-end-pc {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-d-reverse-pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex-shrink-0-pc {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .minw100-pc {
    min-width: 100px;
  }
  .minw140-pc {
    min-width: 140px;
  }
  .w300-pc {
    width: 300px;
  }
  .w340-pc {
    width: 340px;
  }
  .mw340-pc {
    max-width: 340px;
  }
  .posi-center-w100-pc {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  a:hover,
  button:hover,
  .btn-elm:hover {
    text-decoration: none;
  }
  a:hover.td-u,
  button:hover.td-u,
  .btn-elm:hover.td-u {
    text-decoration: underline;
  }
  a:hover .hv-op,
  button:hover .hv-op,
  .btn-elm:hover .hv-op {
    opacity: 0.6;
  }
  a:hover .hv-line,
  button:hover .hv-line,
  .btn-elm:hover .hv-line {
    text-decoration: underline;
  }
  a:hover .hv-op0,
  button:hover .hv-op0,
  .btn-elm:hover .hv-op0 {
    opacity: 0;
  }
  a:hover .hv-op100,
  button:hover .hv-op100,
  .btn-elm:hover .hv-op100 {
    opacity: 1;
  }
  a.hv-op:hover,
  button.hv-op:hover,
  .btn-elm.hv-op:hover {
    opacity: 0.6;
  }
  a.hv-op08:hover,
  button.hv-op08:hover,
  .btn-elm.hv-op08:hover {
    opacity: 0.8;
  }
}

@media only screen and (max-width: 767px) {
  .pc-mode {
    display: none !important;
  }
  .table-style-sp {
    display: table;
  }
  .table-cell-sp {
    display: table-cell;
  }
  .sp-br-none br {
    display: none;
  }
  .fl-l,
  .fl-r {
    float: none;
  }
  .fl-l-sp {
    float: left;
  }
  .fl-r-sp {
    float: right;
  }
  .txt-l-sp {
    text-align: left;
  }
  .txt-r-sp {
    text-align: right;
  }
  .txt-c-sp {
    text-align: center;
  }
  .w100-sp {
    width: 100%;
  }
  .page-link-box-posi:before {
    margin-top: -55px;
    padding-top: 55px;
  }
  .flex-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flex-wrap-sp {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-direction-c-sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-order-1-sp {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .flex-order-2-sp {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .flex-jc-c-sp {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-jc-space-sp {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-ai-c-sp {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .iframe-wrap-map {
    padding-top: 60.06006%;
  }
  .iframe-wrap-map02 {
    padding-top: 83.33333%;
  }
  .scroll-area-sp {
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: auto;
  }
  .scroll-area-sp.type-sp-full {
    margin: 0 -6.30631%;
  }
  .scroll-area-sp .qa-col3-list {
    padding-left: 5.6%;
    padding-right: 5.6%;
  }
  .scroll-area-sp .people-list {
    padding-left: 5.6%;
  }
  .scroll-img-sp {
    z-index: 20;
  }
}

.fw-n {
  font-weight: normal;
}

.fw-b {
  font-weight: bold;
}

.ls-01 {
  line-height: 0.01;
}

.ls-02 {
  line-height: 0.02;
}

.ls-03 {
  line-height: 0.03;
}

.ls-04 {
  line-height: 0.04;
}

.ls-05 {
  line-height: 0.05;
}

.ls-06 {
  line-height: 0.06;
}

.ls-07 {
  line-height: 0.07;
}

.ls-08 {
  line-height: 0.08;
}

.ls-09 {
  line-height: 0.09;
}

.ls-1 {
  letter-spacing: 0.1em;
}

.lh-1 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-115 {
  line-height: 1.15;
}

.lh-12 {
  line-height: 1.2;
}

.lh-125 {
  line-height: 1.25;
}

.lh-13 {
  line-height: 1.3;
}

.lh-135 {
  line-height: 1.35;
}

.lh-14 {
  line-height: 1.4;
}

.lh-145 {
  line-height: 1.45;
}

.lh-15 {
  line-height: 1.5;
}

.lh-155 {
  line-height: 1.55;
}

.lh-16 {
  line-height: 1.6;
}

.lh-165 {
  line-height: 1.65;
}

.lh-17 {
  line-height: 1.7;
}

.lh-175 {
  line-height: 1.75;
}

.lh-18 {
  line-height: 1.8;
}

.lh-185 {
  line-height: 1.85;
}

.lh-19 {
  line-height: 1.9;
}

.lh-195 {
  line-height: 1.95;
}

.fs-10 {
  font-size: 10px;
  font-size: 1rem;
}

.fs-11 {
  font-size: 11px;
  font-size: 1.1rem;
}

.fs-12 {
  font-size: 12px;
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 13px;
  font-size: 1.3rem;
}

.fs-14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 15px;
  font-size: 1.5rem;
}

.fs-16 {
  font-size: 16px;
  font-size: 1.6rem;
}

.fs-17 {
  font-size: 17px;
  font-size: 1.7rem;
}

.fs-18 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fs-19 {
  font-size: 19px;
  font-size: 1.9rem;
}

.fs-20 {
  font-size: 20px;
  font-size: 2rem;
}

.fs-21 {
  font-size: 21px;
  font-size: 2.1rem;
}

.fs-22 {
  font-size: 22px;
  font-size: 2.2rem;
}

.fs-23 {
  font-size: 23px;
  font-size: 2.3rem;
}

.fs-24 {
  font-size: 24px;
  font-size: 2.4rem;
}

.fs-25 {
  font-size: 25px;
  font-size: 2.5rem;
}

.fs-26 {
  font-size: 26px;
  font-size: 2.6rem;
}

.fs-27 {
  font-size: 27px;
  font-size: 2.7rem;
}

.fs-28 {
  font-size: 28px;
  font-size: 2.8rem;
}

.fs-29 {
  font-size: 29px;
  font-size: 2.9rem;
}

.fs-30 {
  font-size: 30px;
  font-size: 3rem;
}

@media only screen and (min-width: 768px) {
  .fw-b-pc {
    font-weight: bold;
  }
  .lh-1-pc {
    line-height: 1;
  }
  .lh-11-pc {
    line-height: 1.1;
  }
  .lh-115-pc {
    line-height: 1.15;
  }
  .lh-12-pc {
    line-height: 1.2;
  }
  .lh-125-pc {
    line-height: 1.25;
  }
  .lh-13-pc {
    line-height: 1.3;
  }
  .lh-135-pc {
    line-height: 1.35;
  }
  .lh-14-pc {
    line-height: 1.4;
  }
  .lh-145-pc {
    line-height: 1.45;
  }
  .lh-15-pc {
    line-height: 1.5;
  }
  .lh-155-pc {
    line-height: 1.55;
  }
  .lh-16-pc {
    line-height: 1.6;
  }
  .lh-165-pc {
    line-height: 1.65;
  }
  .lh-17-pc {
    line-height: 1.7;
  }
  .lh-175-pc {
    line-height: 1.75;
  }
  .lh-18-pc {
    line-height: 1.8;
  }
  .lh-185-pc {
    line-height: 1.85;
  }
  .lh-19-pc {
    line-height: 1.9;
  }
  .lh-195-pc {
    line-height: 1.95;
  }
  .lh-225-pc {
    line-height: 2.25;
  }
  .fs-10-pc {
    font-size: 10px;
    font-size: 1rem;
  }
  .fs-11-pc {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .fs-12-pc {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .fs-13-pc {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .fs-14-pc {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .fs-15-pc {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .fs-16-pc {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .fs-17-pc {
    font-size: 17px;
    font-size: 1.7rem;
  }
  .fs-18-pc {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .fs-19-pc {
    font-size: 19px;
    font-size: 1.9rem;
  }
  .fs-20-pc {
    font-size: 20px;
    font-size: 2rem;
  }
  .fs-21-pc {
    font-size: 21px;
    font-size: 2.1rem;
  }
  .fs-22-pc {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .fs-23-pc {
    font-size: 23px;
    font-size: 2.3rem;
  }
  .fs-24-pc {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .fs-25-pc {
    font-size: 25px;
    font-size: 2.5rem;
  }
  .fs-26-pc {
    font-size: 26px;
    font-size: 2.6rem;
  }
  .fs-27-pc {
    font-size: 27px;
    font-size: 2.7rem;
  }
  .fs-28-pc {
    font-size: 28px;
    font-size: 2.8rem;
  }
  .fs-29-pc {
    font-size: 29px;
    font-size: 2.9rem;
  }
  .fs-30-pc {
    font-size: 30px;
    font-size: 3rem;
  }
  .fs-31-pc {
    font-size: 31px;
    font-size: 3.1rem;
  }
  .fs-32-pc {
    font-size: 32px;
    font-size: 3.2rem;
  }
  .fs-33-pc {
    font-size: 33px;
    font-size: 3.3rem;
  }
  .fs-34-pc {
    font-size: 34px;
    font-size: 3.4rem;
  }
  .fs-35-pc {
    font-size: 35px;
    font-size: 3.5rem;
  }
  .fs-36-pc {
    font-size: 36px;
    font-size: 3.6rem;
  }
  .fs-37-pc {
    font-size: 37px;
    font-size: 3.7rem;
  }
  .fs-38-pc {
    font-size: 38px;
    font-size: 3.8rem;
  }
  .fs-39-pc {
    font-size: 39px;
    font-size: 3.9rem;
  }
  .fs-40-pc {
    font-size: 40px;
    font-size: 4rem;
  }
}

/* contents
----------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.page-contents {
  margin-top: 130px;
}

.ct-inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.ct-inner-680 {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ct-inner-940 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.ct-side-space {
  padding-left: 40px;
  padding-right: 40px;
}

@media only screen and (min-width: 768px) {
  .ct-side-space-pc {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .ct-side-space,
  .ct-side-space-sp {
    padding-left: 5.33333%;
    padding-right: 5.33333%;
  }
  .ct-side-space-sp-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .ct-inner-300-sp {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .ct-inner-310-sp {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-link-wrap:before {
    content: "";
    display: block;
    padding-top: 60px;
    margin-top: -60px;
  }
}

/* top
----------------------------------------------------------*/
.top-main-area {
  height: 100vh;
}

.top-main-text-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 0 0 45px;
}

.top-main-ttl {
  margin: 0 0 19px;
}

.video-show-area {
  z-index: 1;
}

.video-show-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.video-show-area + .main-img {
  opacity: 0;
}

.business-sec {
  padding: 100px 0 0;
}

.business-sec .ct-ttl01 {
  margin: 0 0 89px;
}

.ct-ttl01 .sub-text {
  margin-bottom: 8px;
}

.business-child-sec01 {
  padding: 0 0 140px;
}

.business-child-sec01 .ct-ttl02 {
  margin-bottom: 4px;
}

.ct-ttl02 {
  position: relative;
  top: -33px;
  padding: 0 0 12px 60px;
}

.ct-ttl02:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#34a057), to(#58bfc5));
  background: -webkit-linear-gradient(left, #34a057 0%, #58bfc5 100%);
  background: -o-linear-gradient(left, #34a057 0%, #58bfc5 100%);
  background: linear-gradient(to right, #34a057 0%, #58bfc5 100%);
}

.ct-ttl02 .sub-text {
  margin-bottom: 9px;
}

.ct-ttl02-num {
  position: absolute;
  bottom: 14px;
  left: 0;
}

.ct-ttl02-num img {
  height: 29px;
  width: auto;
  max-width: inherit;
}

.estate-head {
  margin: 0 0 58px;
}

.img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 10px 3px;
  background-color: rgba(16, 16, 16, 0.4);
}

.estate-head-img02-box {
  width: 74.62687%;
  margin: 0 auto 40px;
}

.estate-head-img02 {
  padding-top: 134%;
  margin: 0 auto;
}

.estate-list {
  margin: 0 -1.04478% 33px;
}

.estate-list li {
  width: 47.95322%;
  padding: 0 0 4.67836%;
  margin: 0 1.02339% 2.04678%;
}

.estate-list .img {
  padding-top: 60.97561%;
  margin-bottom: 5.4878%;
}

.estate-list .ttl {
  margin: 0 0 6.09756%;
}

.estate-bottom-box {
  padding: 35px 8.95522% 40px;
  background: -webkit-gradient(linear, left top, right top, from(#34a057), to(#58bfc5));
  background: -webkit-linear-gradient(left, #34a057 0%, #58bfc5 100%);
  background: -o-linear-gradient(left, #34a057 0%, #58bfc5 100%);
  background: linear-gradient(to right, #34a057 0%, #58bfc5 100%);
}

.estate-bottom-box .ttl {
  margin-bottom: 15px;
}

.lease-text-box {
  padding: 6.26866% 8.95522% 13.73134%;
}

.lease-img {
  padding-top: 115.22388%;
  margin: -8.95522% -5.97015% 0;
}

.hotel-head-img01 {
  border: 1px solid #ccc;
}

.hotel-img-list .img {
  padding-top: 133.23171%;
}

.company-sec {
  padding: 50px 0 60px;
}

.company-sec .ct-ttl01 {
  margin: 0 0 43px;
}

.company-table + .company-table {
  border-top: 1px solid #ddd;
  margin-top: 12px;
  padding-top: 13px;
}

.company-table .ttl-cell {
  width: 90px;
}

.company-table-box {
  margin: 0 0 45px;
}

.company-map {
  margin: 0 -5.97015%;
  padding-top: 86.56716%;
}

.contact-sec {
  padding: 48px 0 50px;
}

.contact-sec .ct-ttl01 {
  margin: 0 0 33px;
}

.contact-lead {
  margin-bottom: 53px;
}

.contact-list-ttl {
  margin-bottom: 4px;
}

.contact-list-text + .contact-list-ttl {
  margin-top: 21px;
}

.form-text {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border: 1px solid #fff;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-appearance: none;
  font-size: 16px;
  font-size: 1.6rem;
}

.form-text:focus, .form-text:active {
  outline: none;
  background-color: #fff;
  border-color: #101010;
}

.textarea {
  width: 100%;
  min-height: 211px;
  padding: 15px 15px;
  border: 1px solid #fff;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  vertical-align: top;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

.textarea:focus, .textarea:active {
  outline: none;
  background-color: #fff;
  border-color: #101010;
}

.submit-button {
  display: block;
  max-width: 300px;
  width: 100%;
  border: none;
  padding: 17px 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #101010;
  border-radius: 0;
  color: #fff;
  -webkit-appearance: none;
  vertical-align: top;
  margin: 40px auto 0;
  cursor: pointer;
}

.submit-button.type-back {
  background-color: #ddd;
  color: #101010;
}

.error-text {
  color: #c7000b;
  font-size: 1.4rem;
  margin-top: 5px;
}

@media only screen and (min-width: 768px) {
  .top-main-text-box {
    padding: 0 0 59px;
  }
  .top-main-ttl {
    margin: 0 0 12px;
  }
  .business-sec .ct-ttl01 {
    margin: 0 0 92px;
  }
  .ct-ttl01 .sub-text {
    margin-bottom: 12px;
  }
  .business-child-sec01 {
    padding: 0 0 140px;
  }
  .business-child-sec01 .ct-ttl02 {
    margin-bottom: 23px;
  }
  .ct-ttl02 {
    top: -47px;
    padding: 0 0 12px 86px;
  }
  .ct-ttl02-num {
    bottom: 13px;
    left: 1px;
  }
  .ct-ttl02-num img {
    height: 42px;
  }
  .estate-head {
    margin-bottom: 40px;
    padding: 0 0 7.68519%;
  }
  .estate-head-img01 {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-top: 28.7963%;
    width: 44.53704%;
    margin: 0 auto;
  }
  .estate-head-text {
    width: 61.11111%;
    margin-left: auto;
    padding: 71px 6.48148% 77px 9.25926%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .img-cap {
    padding: 8px 10px 5px;
  }
  .estate-head-img02-box {
    width: auto;
    max-width: 560px;
    margin: 0 auto 60px;
  }
  .estate-head-img02 {
    padding-top: 112.5%;
    margin: 0 auto;
  }
  .estate-list {
    margin: 0 0 60px;
  }
  .estate-list li {
    width: 19.25926%;
    padding: 4px 0 2.40741%;
    margin: 0;
  }
  .estate-list .img {
    margin-bottom: 4.80769%;
  }
  .estate-list .ttl {
    margin: 0 0 5.76923%;
  }
  .estate-bottom-box {
    padding: 58px 5.64815% 56px;
  }
  .estate-bottom-box .ttl {
    margin-bottom: 22px;
  }
  .business-child-sec02 {
    padding: 0 0 140px;
  }
  .business-child-sec02 .ct-ttl02 {
    margin-bottom: 22px;
  }
  .lease-text-box {
    width: 69.44444%;
    padding: 6.57407% 7.40741% 7.5%;
  }
  .lease-img {
    width: 84.25926%;
    margin-left: auto;
    padding-top: 26.85185%;
    margin: -4.81481% 0 0 auto;
  }
  .hotel-img-list li {
    width: 22.22222%;
  }
  .business-child-sec03 {
    padding: 0 0 140px;
  }
  .business-child-sec03 .ct-ttl02 {
    top: -49px;
    margin-bottom: 22px;
  }
  .business-child-sec03 .estate-head {
    padding: 0 0 10%;
  }
  .business-child-sec03 .estate-head-text {
    padding: 71px 6.48148% 73px 9.25926%;
  }
  .business-child-sec03 .hotel-head-img01 {
    padding-top: 28.51852%;
  }
  .hotel-img02 {
    width: auto;
    margin: 60px 0;
    padding-top: 30.55556%;
  }
  .company-sec {
    padding: 99px 0 140px;
  }
  .company-sec .ct-ttl01 {
    margin: 0 0 58px;
  }
  .company-table + .company-table {
    margin-top: 23px;
    padding-top: 24px;
  }
  .company-table .ttl-cell {
    width: 180px;
    padding: 0 0 0 10px;
  }
  .company-table .text-cell {
    padding: 0 4.62963% 0 0;
  }
  .company-table-box {
    margin: 0 0 60px;
  }
  .company-map {
    margin: 0;
    padding-top: 53.7037%;
  }
  .contact-sec {
    min-height: 100vh;
    padding: 98px 0 100px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .contact-sec .ct-ttl01 {
    margin: 0 0 56px;
  }
  .contact-lead {
    margin-bottom: 52px;
  }
  .contact-list-ttl {
    margin-bottom: 5px;
  }
  .contact-list-text + .contact-list-ttl {
    margin-top: 32px;
  }
  .textarea {
    min-height: 300px;
  }
  .submit-button {
    display: inline-block;
    width: 300px;
    margin: 71px 10px 0;
  }
}

@media only screen and (max-width: 1140px) {
  .estate-list .ttl {
    font-size: 1.57895vw;
  }
  .estate-list .text {
    font-size: 1.05263vw;
  }
  .hotel-img-list .img-cap {
    font-size: 1.22807vw;
  }
}

@media only screen and (max-width: 767px) {
  .estate-head-img01 {
    padding-top: 54.92537%;
    width: 88.0597%;
    margin: 0 auto;
  }
  .estate-head-text {
    margin-top: -5.97015%;
    padding: 11.9403% 8.95522% 8.35821%;
  }
  .estate-list .ttl {
    font-size: 3.73333vw;
  }
  .estate-list .text {
    font-size: 2.66667vw;
  }
  .business-child-sec02 {
    padding: 0 0 120px;
  }
  .business-child-sec02 .ct-ttl02 {
    top: -30px;
    margin-bottom: 9px;
  }
  .business-child-sec03 {
    padding: 0 0 68px;
  }
  .business-child-sec03 .ct-ttl02 {
    top: -29px;
    margin-bottom: 5px;
  }
  .hotel-head-img01 {
    width: 71.64179%;
    padding-top: 46.26866%;
  }
  .hotel-img02 {
    margin-bottom: 40px;
  }
  .hotel-img-list li {
    width: 48.95522%;
    margin: 0 0 52px;
  }
  .hotel-img-list .img-cap {
    font-size: 1.1rem;
  }
  .submit-button + .submit-button {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 374px) {
  .hotel-img-list .img-cap {
    font-size: 2.66667vw;
  }
}

/* anime
--------------------------------------------------*/
.anime-elm {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  opacity: 0;
}

.set-anime {
  -webkit-animation-name: fadeInUpBox;
  animation-name: fadeInUpBox;
}

.set-anime.fade {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.set-anime.fade-in-left {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.set-anime.fade-in-right {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUpBox {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBox {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media only screen and (max-width: 767px) {
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
}

.delay1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay7 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.delay8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.delay9 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.delay10 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay11 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.delay12 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay13 {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.delay14 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.delay15 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay16 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.delay17 {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.delay18 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.delay19 {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.delay20 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay21 {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.delay22 {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.delay23 {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}

.delay24 {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.delay25 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.delay26 {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
}

.delay27 {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}

.delay28 {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

.delay29 {
  -webkit-animation-delay: 2.9s;
  animation-delay: 2.9s;
}

.delay30 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.t-delay1 {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.t-delay2 {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.t-delay3 {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.t-delay4 {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.t-delay5 {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.t-delay6 {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.t-delay7 {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.t-delay8 {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.t-delay9 {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.t-delay10 {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.t-delay11 {
  -webkit-transition-delay: 1.1s;
  -o-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.t-delay12 {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.t-delay13 {
  -webkit-transition-delay: 1.3s;
  -o-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

.t-delay14 {
  -webkit-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.t-delay15 {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.t-delay16 {
  -webkit-transition-delay: 1.6s;
  -o-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.t-delay17 {
  -webkit-transition-delay: 1.7s;
  -o-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

.t-delay18 {
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.t-delay19 {
  -webkit-transition-delay: 1.9s;
  -o-transition-delay: 1.9s;
  transition-delay: 1.9s;
}

.t-delay20 {
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
}

.t-delay21 {
  -webkit-transition-delay: 2.1s;
  -o-transition-delay: 2.1s;
  transition-delay: 2.1s;
}

.t-delay22 {
  -webkit-transition-delay: 2.2s;
  -o-transition-delay: 2.2s;
  transition-delay: 2.2s;
}

.t-delay23 {
  -webkit-transition-delay: 2.3s;
  -o-transition-delay: 2.3s;
  transition-delay: 2.3s;
}

.t-delay24 {
  -webkit-transition-delay: 2.4s;
  -o-transition-delay: 2.4s;
  transition-delay: 2.4s;
}

.t-delay25 {
  -webkit-transition-delay: 2.5s;
  -o-transition-delay: 2.5s;
  transition-delay: 2.5s;
}

.t-delay26 {
  -webkit-transition-delay: 2.6s;
  -o-transition-delay: 2.6s;
  transition-delay: 2.6s;
}

.t-delay27 {
  -webkit-transition-delay: 2.7s;
  -o-transition-delay: 2.7s;
  transition-delay: 2.7s;
}

.t-delay28 {
  -webkit-transition-delay: 2.8s;
  -o-transition-delay: 2.8s;
  transition-delay: 2.8s;
}

.t-delay29 {
  -webkit-transition-delay: 2.9s;
  -o-transition-delay: 2.9s;
  transition-delay: 2.9s;
}

.t-delay30 {
  -webkit-transition-delay: 3s;
  -o-transition-delay: 3s;
  transition-delay: 3s;
}

/* print
--------------------------------------------------*/
@media print {
  .anime-elm {
    opacity: 1;
  }
  .global-header,
  .menu-btn {
    display: none !important;
  }
  .estate-head-img02 {
    height: 315px;
    width: 280px;
    padding: 0;
  }
  .lease-img {
    padding: 0;
    height: 183px;
    width: 576px;
    margin-bottom: 50px;
  }
  .estate-list .text {
    font-size: 10px;
  }
  .hotel-img-list .img {
    padding: 0;
    height: 180px;
    width: 140px;
  }
}
