@charset "utf-8";
/**************
CSS Document
flocssでコーディング
***************/
/**********
foudation
**********/
/* 既存CSSのreset */
#base {
  width: auto;
}
div#cont {
  margin: 0;
}
#bc_footer {
  margin-top: 0;
}

/*初期設定CSS*/
.theme_another {
  color: #000;
  font: 500 14px "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
  #bc_footer {
    width: 100%;
    margin: 0;
  }
}

/**********
layout
**********/
.l_mainCont {
  padding: 48px 24px;
}
.l_mainCont--mv {
  padding: 0;
}
.l_mainCont--map {
}
.l_mainCont--news,
.l_mainCont--lineup {
  background: #f8f8f8;
}
.l_mainCont__inner {
  width: 1110px;
  margin: 0 auto;
}
.l_mainCont__inner + .l_mainCont__inner {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .l_mainCont {
    padding: 40px 5%;
  }
  .l_mainCont--map {
    padding-left: 0;
    padding-right: 0;
  }
  .l_mainCont--mv {
    padding: 0;
  }
  .l_mainCont__inner {
    width: 100%;
  }
}
/**********
component
**********/
/*グリッド*/
.c_grid {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.c_grid__item {
  display: flex;
}
.c_grid__inner {
  display: block;
  width: 100%;
}
.c_grid--hasGutter {
  margin: -12px;
}
.c_grid--hasGutter > .c_grid__item {
  padding: 12px;
}
.c_grid--hasGutterXs {
  margin: -4px;
}
.c_grid--hasGutterXs > .c_grid__item {
  padding: 4px;
}
.c_grid--hint {
  margin: -8px;
}
.c_grid--hint > .c_grid__item {
  width: calc(50% - 17px);
  padding: 8px;
}
.c_grid--hint > .c_grid__item--arrow {
  width: 34px;
}
@media screen and (max-width: 599px) {
  .c_grid--hint {
    margin: 0;
  }
  .c_grid--hint > .c_grid__item {
    width: 100%;
    padding: 0;
  }
}

/* ビューポートの中心寄せ */
.c_viewPortCenter {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*ボタン*/
.c_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 4px;
  line-height: 1em;
  transition: 0.3s opacity;
}
.c_btn::after {
  content: "";
  display: block;
  width: 0;
}
.c_btn--themeColor {
  background: #ffbb33;
  color: #fff;
}
.c_btn--themeColor::after {
  height: 1em;
  padding: 8px 0;
}
@media (any-hover: hover) {
  .c_btn:hover {
    opacity: 0.5;
  }
}

/*アイコン*/
.c_hasIco {
  position: relative;
}
.c_hasIco--abs::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c_hasIco--detail::before {
  content: url(/resource/img/new_service_lineup/another_plus.png);
  margin-right: 4px;
}
.c_hasIco--ask::before {
  content: url(/resource/img/new_service_lineup/another_inquiry.png);
  margin-right: 4px;
}

/* 画像 */
.c_imgBox {
  line-height: 0;
  text-align: center;
}
.c_imgBox > img {
  vertical-align: top;
}
.c_imgBox--liquid > img {
  max-width: 100%;
  height: auto;
}

/* 画像リンク */
.c_linkImage {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: 0.3s opacity;
}
.c_linkImage:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.5;
}

/**********
project
**********/
/* 見出し */
/*見出し*/
.p_heading {
}
.p_heading__ttl {
  font-weight: bold;
  font-size: inherit;
}

.p_heading--primary {
  position: relative;
  /* padding-bottom: 72px; */
}
.p_heading--primary > .c_imgBox img {
  width: 100%;
  min-width: 1110px;
}
.p_heading--secondary {
  color: #000;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.3;
}
.p_heading--secondary > .p_heading__ttl {
  word-break: keep-all;
  font-size: 50px;
}
.p_heading--secondary > .p_heading__ttl::first-letter {
  font-size: 65px;
}

.p_heading--card > .p_heading__sub:not(.p_heading__sub--webin) {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px 10px;
  color: #ff6945;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #ff6945;
  border-radius: 5px;
}
.p_heading__sub.p_heading__sub--webin {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 3px;
  margin-top: auto;
  padding: 20px 0 0;
  font-size: 11px;
  line-height: 0;
  text-align: right;
}
.p_heading__sub--webin_txt {
  line-height: 1;
}
.p_heading--detail {
  margin-bottom: 16px;
}
.p_heading--detail > .p_heading__ttl {
  font-size: 24px;
  line-height: 1.3;
}
.p_heading--detail > .p_heading__sub {
  margin-bottom: 6px;
  line-height: 1;
  text-align: right;
}
.p_heading--hint {
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .p_heading--primary > .c_imgBox img {
    min-width: 100%;
  }

  .p_heading--secondary {
    display: block;
  }
  .p_heading--secondary > .p_heading__ttl {
    margin-bottom: 16px;
    text-align: center;
  }

  .p_heading--card > .p_heading__sub:not(.p_heading__sub--webin) {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 3px 8px;
    font-size: 10px;
  }
  .p_heading__sub.p_heading__sub--webin {
    font-size: 10px;
  }
}

@media screen and (max-width: 599px) {
  .p_heading--primary > .p_heading__sub {
    width: 56px;
  }
  .p_heading--secondary {
    display: block;
  }
  .p_heading--secondary > .p_heading__ttl {
    font-size: 32px;
  }
  .p_heading--secondary > .p_heading__ttl::first-letter {
    font-size: 48px;
  }
  .p_heading--detail > .p_heading__ttl {
    font-size: 16px;
    text-align: center;
  }
}

/* サービスマップ */
.p_objectMap {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}
.p_objectMap__svg {
  max-width: 100%;
  min-width: 728px;
}
.p_objectMap__link {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p_objectMap__svg {
    height: auto;
  }
}

/* カード */
.p_card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 5px;
  background: #fff;
}
.p_card .p_heading__ttl {
  font-size: 18px;
  line-height: 1.5;
}
.p_card__thumbnail {
  width: 160px;
  height: 160px;
  padding: 15px;
  margin: auto;
}
.p_card__thumbnail img {
  width: 100%;
  height: auto;
}
.p_card__ttl {
  flex: 1 1 auto;
}
.p_card__msg {
  margin-top: 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p_card {
    padding: 20px;
  }
  .p_card .p_heading__ttl {
    font-size: 16px;
  }
  .p_card__thumbnail {
    padding: 10px;
  }
  .p_card__msg {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
  }
}

/* セレクトボックス */
.p_selectBox {
  position: relative;
  display: block;
  width: 240px;
}
.p_selectBox::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  line-height: 1;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.p_selectBox__select {
  display: block;
  width: 100%;
  padding: 4px 0;
  border: 2px solid #fff;
  background-color: #ffbb33;
  color: #fff;
  text-indent: 0.5em;
  font-size: 16px;
  font-weight: bold;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.p_selectBox__select::-ms-expand {
  display: none;
}
@media screen and (max-width: 768px) {
  .p_selectBox {
    margin-left: auto;
  }
}

/* モーダル */
.p_modelBox {
  width: 33.333vw;
  min-width: 560px;
}
.p_modelBox__inner {
  padding: 16px 40px;
  border-radius: 12px;
  background: #fff;
}
.p_modelBox__inner--insColor {
  border-top: 16px solid #e6002d;
}
.p_modelBox__close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

@media screen and (max-width: 599px) {
  .p_modelBox {
    width: 80vw;
    min-width: auto;
  }
}

/* サービス詳細 */
.p_detailBox {
  position: relative;
  overflow: hidden;
}
.p_detailBox__logo {
  margin-bottom: 24px;
}
.p_detailBox__body {
  position: relative;
}
.p_detailBox__section {
  width: 100%;
  margin-bottom: 40px;
  overflow-x: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.p_detailBox__msg {
  white-space: pre-wrap;
}
.p_detailBox__btns {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 8px);
}
.p_detailBox__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.p_detailBox__arrow img {
  vertical-align: top;
}
.p_detailBox__arrow--prev {
  left: 4px;
}
.p_detailBox__arrow--next {
  right: 4px;
}
@media screen and (max-width: 599px) {
  .p_detailBox__section {
    max-height: 180px;
    margin-bottom: 80px;
  }
  .p_detailBox__thumbnail > img {
    width: auto;
    height: 88px;
  }
}
/* ヒントボックス */
.p_hintBox {
}
.p_hintBox__img {
  margin-bottom: 8px;
}
.p_hintBox__msg {
  display: flex;
  justify-content: center;
}
.p_hintBox__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 599px) {
  .p_hintBox__msg {
    letter-spacing: 0;
  }
  .p_hintBox__arrow {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

/* 追従ナビ */
.m_fixedNav {
  position: fixed;
  top: 50%;
  right: 20px;
  margin: auto;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 50px;
  background-color: #fff;
  z-index: 9999;
}
.m_fixedNav_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.m_fixedNav_item a {
  display: block;
  padding: 15px 5px;
  color: #000;
  font-family: 'Noto Sans JP';
  font-size: 14px;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  border-radius: 50px;
  background-color: #fff;
  transition: background-color 0.2s, color 0.2s;
}
.m_fixedNav_item.js_current a {
  color: #fff;
  background-color: #E42822;
}
@media (any-hover: hover) {
  .m_fixedNav_item a:hover {
    color: #fff;
    background-color: #E42822;
  }
}
@media screen and (max-width: 768px) {
  .m_fixedNav {
    display: none;
  }
}


/*DX向け新着情報*/
.l_mainCont--news .p_heading--secondary {
  flex-shrink: 0;
}
.l_mainCont--news .p_heading--secondary > .p_heading__ttl {
  font-size: 40px;
  text-align: left;
}
.l_mainCont--news .p_heading--secondary > .p_heading__ttl::first-letter {
  color: #017ce5;
  font-size: 50px;
}
.p_newsBox {
  display: flex;
  justify-content: space-between;
}
.p_newsBox__more {
  margin-top: 40px;
  text-align: left;
}
.p_newsBox__more a {
  position: relative;
  display: inline-block;
  padding-right: 60px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  transition: 0.4s opacity;
}
.p_newsBox__more a::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  background-color: #017ce5;
  background-image: url(/resource/img/new_service_lineup/arrow.svg);
  background-repeat: no-repeat;
  background-size: 20px 8px;
  background-position: center 45%;
}
.p_newsBox__body {
  width: 100%;
  max-width: 870px;
  padding: 40px;
  border-radius: 10px;
  background: #fff;
}
.p_newsBox__listItem {
  font-weight: bold;
  border-bottom: 1px dashed #bcbcbc;
}
.p_newsItem {
}
.p_newsItem__target {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
  color: #000;
}
.p_newsBox__listItem + .p_newsBox__listItem .p_newsItem__target {
  padding-top: 20px;
}
.p_newsItem__date {
  flex-shrink: 0;
  color: #017ce5;
}
.p_newsItem__ttl {
  transition: color 0.2s;
}
@media (any-hover: hover) {
  .p_newsBox__more a:hover {
    opacity: 0.7;
  }
  .p_newsItem__target:hover .p_newsItem__ttl {
    color: #017ce5;
  }
}
@media screen and (max-width: 768px) {
  .l_mainCont--news .p_heading--secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .l_mainCont--news .p_heading--secondary > .p_heading__ttl {
    font-size: 32px;
    margin-bottom: 0;
  }
  .l_mainCont--news .p_heading--secondary > .p_heading__ttl::first-letter {
    font-size: 48px;
  }
  .p_newsBox {
    flex-direction: column;
  }
  .p_newsBox__more {
    margin-top: 0;
  }
  .p_newsBox__body {
    padding: 30px;
  }
  .p_newsItem__target {
    flex-direction: column;
    gap: 5px;
    padding-bottom: 10px;
  }
  .p_newsBox__listItem + .p_newsBox__listItem .p_newsItem__target {
    padding-top: 10px;
  }
}

/* ローディングアイコン */
.p_loadingIcoList {
  display: flex;
  letter-spacing: -0.5em;
}
.p_loadingIcoList__item {
  flex: 0 1 auto;
  -webkit-animation: backwards 1s loadingAnime;
  animation: backwards 1s loadingAnime;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.p_loadingIcoList__item--move {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.p_loadingIcoList__item--1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.p_loadingIcoList__item--2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.p_loadingIcoList__item--3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.p_loadingIcoList__item--4 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.p_loadingIcoList__item--5 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.p_loadingIcoList__item--6 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.p_loadingIcoList__item--7 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.p_loadingIcoList__item img {
  max-width: 100%;
  height: auto;
}

/* おすすめ */
.l_mainCont--recommend .p_heading--secondary > .p_heading__ttl::first-letter {
  color: #2bb48a;
}
.p_recommendBox__list {
  margin: -15px;
}
.p_recommendBox__list > .c_grid__item {
  padding: 15px;
}
.p_recommendBox__list .p_card {
  border: 1px solid #efefef;
}
.p_recommendBox__list .p_heading--card > .p_heading__sub {
  color: #2bb489;
  border: 1px solid #2bb489;
}
@media screen and (max-width: 768px) {
  .p_recommendBox__list {
    margin: -10px;
  }
  .p_recommendBox__list > .c_grid__item {
    padding: 10px;
  }
}

/* サービス */
.l_mainCont--lineup .p_heading--secondary > .p_heading__ttl::first-letter {
  color: #ff6945;
}
.p_lineup__category {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.p_lineup__categoryTtl {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
}
.p_lineup__categoryTtl::before {
  content: "●";
  display: inline-block;
  margin-top: -3px;
  margin-right: 10px;
  color: #ff6945;
  font-size: 0.4em;
  vertical-align: middle;
}
.p_lineup__categoryList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p_lineup__categoryItem:nth-last-child(2) {
  margin-right: 20px;
}
.p_lineup__categoryItemInr {
  display: block;
  padding: 5px 25px;
  color: #8e8e8e;
  font-size: 15px;
  font-weight: 700;
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}
.p_lineup__categoryItem--init .p_lineup__categoryItemInr {
  color: #fff;
  background-color: #8e8e8e;
  transition: color 0.2s, background-color 0.2s;
}
.p_lineup__categoryItemInr.js_active {
  color: #fff;
  background-color: #ff6945;
}
.p_lineup__categoryItem--init:not(.js_active) {
  pointer-events: none;
}
.p_lineup__categoryItem--init.js_active .p_lineup__categoryItemInr {
  color: #fff;
  background-color: #000;
}
.p_lineup__categoryItemInr input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  border: 0;
}
@media (any-hover: hover) {
  .p_lineup__categoryItemInr:hover {
    color: #fff;
    background-color: #ff6945;
  }
  .p_lineup__categoryItem--init .p_lineup__categoryItemInr:hover {
    color: #fff;
    background-color: #000;
  }
}

.p_lineup__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.p_lineup__item {
  width: calc((100% - 30px) / 2);
}
.p_lineup__item .p_card {
  height: 100%;
}
.p_lineup__item:not(.js_active) {
  display: none;
}
.p_lineup__item:nth-child(7n + 5 of .js_active),
.p_lineup__item:nth-child(7n + 6 of .js_active),
.p_lineup__item:nth-child(7n + 7 of .js_active) {
  width: calc((100% - 60px) / 3);
}
.p_lineup__item:nth-child(7n + 1 of .js_active) .p_card,
.p_lineup__item:nth-child(7n + 2 of .js_active) .p_card {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.p_lineup__item:nth-child(7n + 1 of .js_active) .p_heading--card > .p_heading__sub,
.p_lineup__item:nth-child(7n + 2 of .js_active) .p_heading--card > .p_heading__sub {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p_lineup__category {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .p_lineup__categoryTtl {
    font-size: 18px;
  }
  .p_lineup__categoryList {
    gap: 8px;
  }
  .p_lineup__categoryItemInr {
    padding: 3px 15px;
    font-size: 14px;
  }
  .p_lineup__list {
    gap: 15px;
  }
  .p_lineup__item,
  .p_lineup__item:nth-child(7n + 5 of .js_active),
  .p_lineup__item:nth-child(7n + 6 of .js_active),
  .p_lineup__item:nth-child(7n + 7 of .js_active) {
    width: 100%;
  }
  .p_lineup__item .p_card {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .p_lineup__item .p_heading--card > .p_heading__sub {
    margin-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .p_lineup__item .p_card__header {
    width: 21.3vw;
    max-width: 80px;
    flex-shrink: 0;
  }
  .p_lineup__item .p_card__thumbnail {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
  }
}

/* エラーメッセージ */
.p_errorMsg {
  color: #e6002d;
  font-weight: bold;
}

/* オーバーレイ */
.p_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  min-width: 100vw;
  min-height: 100vh;
  background: #fff;
}
.p_overlay--modal {
  background: #333;
  opacity: 0.9;
}
/**********
utility
**********/
/*横幅*/
.u_col1 {
  width: 8.333%;
}
.u_col2 {
  width: 16.667%;
}
.u_col3 {
  width: 25%;
}
.u_col4 {
  width: 33.333%;
}
.u_col5 {
  width: 41.666%;
}
.u_col6 {
  width: 50%;
}
.u_col7 {
  width: 58.333%;
}
.u_col8 {
  width: 66.666%;
}
.u_col9 {
  width: 75%;
}
.u_col10 {
  width: 83.33%;
}
.u_col11 {
  width: 91.666%;
}
.u_col12 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .u_resMdCol1 {
    width: 8.333%;
  }
  .u_resMdCol2 {
    width: 16.667%;
  }
  .u_resMdCol3 {
    width: 25%;
  }
  .u_resMdCol4 {
    width: 33.333%;
  }
  .u_resMdCol5 {
    width: 41.666%;
  }
  .u_resMdCol6 {
    width: 50%;
  }
  .u_resMdCol7 {
    width: 58.333%;
  }
  .u_resMdCol8 {
    width: 66.666%;
  }
  .u_resMdCol9 {
    width: 75%;
  }
  .u_resMdCol10 {
    width: 83.33%;
  }
  .u_resMdCol11 {
    width: 91.666%;
  }
  .u_resMdCol12 {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .u_resSmCol1 {
    width: 8.333%;
  }
  .u_resSmCol2 {
    width: 16.667%;
  }
  .u_resSmCol3 {
    width: 25%;
  }
  .u_resSmCol4 {
    width: 33.333%;
  }
  .u_resSmCol5 {
    width: 41.666%;
  }
  .u_resSmCol6 {
    width: 50%;
  }
  .u_resSmCol7 {
    width: 58.333%;
  }
  .u_resSmCol8 {
    width: 66.666%;
  }
  .u_resSmCol9 {
    width: 75%;
  }
  .u_resSmCol10 {
    width: 83.33%;
  }
  .u_resSmCol11 {
    width: 91.666%;
  }
  .u_resSmCol12 {
    width: 100%;
  }
}

/* 間隙 */
.u_mr16 {
  margin-right: 16px;
}
/* フォントサイズ */
.u_fs40 {
  font-size: 40px;
}

/* 表示/非表示 */
.u_hide {
  display: none;
}
@media screen and (max-width: 599px) {
  .u_resSmHide {
    display: none;
  }
}

@-webkit-keyframes loadingAnime {
  0% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes loadingAnime {
  0% {
    -webkit-transform: translateY(-300%);
    transform: translateY(-300%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.js_rooms-enter-active {
  transition-duration: 0.5s;
}
.js_rooms-enter-active > .js_room {
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-in;
}
.js_rooms-enter > .js_room {
  -webkit-transform: translateY(10%) scale(0.8);
  transform: translateY(10%) scale(0.8);
  opacity: 0;
}
.js_objects-enter-active {
  transition-duration: 0.5s;
}
.js_objects-enter-active > .js_unActiveObject {
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-duration: 0.5s;
}
.js_objects-enter > .js_unActiveObject {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0;
}
.js_objectLink-enter-active {
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.2s;
}
.js_objectLink-enter {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.js_details-enter-active,
.js_details-move {
  transition: 0.8s all;
}
.js_details-leave-active {
  position: absolute;
  visibility: hidden;
}
.js_details-enter {
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.js_modal-enter-active,
.js_modal-leave-active {
  transition: 0.8s opacity;
}
.js_modal-enter,
.js_modal-leave-to {
  opacity: 0;
}

.js_feed-enter-active {
  transition: 0.8s -webkit-transform;
  transition: 0.8s transform;
  transition: 0.8s transform, 0.8s -webkit-transform;
}
.js_feed-leave-active {
  position: absolute;
  visibility: hidden;
}
.js_feed-enter {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.js_feed-enter.js_feedRev {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

[v-cloak].js_hideCreating,
[v-cloak] .js_hideCreating {
  display: none;
}
