@charset "utf-8";
/* font
---------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDGothic&family=Ms+Madi&family=Noto+Sans+Grantha&family=Noto+Serif+JP:wght@200..900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zen+Kaku+Gothic+Antique:wght@500&display=swap');

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.cormo {
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
}


/* common
---------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: #333;
  text-align: center;
}

.font-inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.font-ultra {
  font-family: "Ultra", serif;
  font-weight: 400;
  font-style: normal;
}
.font-din {
  font-family: "din-2014", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a,
a:link,
a:visited,
a:hover,
a:active {
  color: #333;
}
a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

picture {
  display: block;
  line-height: 0;
}

button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.rmark {
  vertical-align: super;
  font-size: 0.5em;
}

.is_pc {
  display: block;
}
.is_sp {
  display: none;
}

.flex_box {
  display: flex;
}

sub, sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  font-size: 70%;
  bottom: -0.25em;
}
sup {
  display: inline-block;
  font-size: 60%;
  font-weight: normal;
  top: -1em;
}

small {
  display: inline-block;
}

.cont_inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .is_pc {
    display: none;
  }
  .is_sp {
    display: block;
  }

  a {
    transition: all 0s ease;
  }
  a:hover {
    opacity: 1;
  }

}








/* header
---------------------------------------------------------------------- */
body {
  padding-top: 80px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 9999;
}
.header .container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 45px;
  box-sizing: border-box;
}
.header .logo {
  width: 225px;
  margin-top: 22px;
  margin-bottom: 24px;
}


.header nav,
.header nav .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header nav .menu-item > a {
  font-size: 0.875rem;
  transition: color 0.3s ease;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 30px;
  padding-top: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header nav .menu-item > a:hover {
  opacity: 1;
}
.header nav .menu-item > a::after {
  display: block;
  content: "|";
  color: #333;
  position: absolute;
  right: 0;
}
.header nav .menu-item:last-child > a::after {
  display: none;
}

.header nav .menu-item:hover > a,
.header nav .menu-item.has-submenu:hover > a {
  color: #f37022;
}
.header nav .menu-item .arrow {
  display: inline-block;
  width: 9px;
  height: 5px;
  background: url('../img/common/menu_arrow.png') no-repeat;
  background-size: contain;
  margin-left: 5px;
}
.header nav .menu-item .arrow.is_sp {
  display: none;
}
.header nav .menu-item.has-submenu:hover .arrow {
  background: url('../img/common/menu_arrow_hover.png') no-repeat;
  background-size: contain;
}

.has-submenu .submenu-wrapper {
  position: absolute;
  left: 0;
  top: 100%;
  background: rgba(255, 255, 255, 0.95);
  width: 100vw;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.has-submenu:hover .submenu-wrapper {
  max-height: 100vh;
  opacity: 1;
}


.header nav .submenu-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-top: 55px;
  padding-bottom: 60px;
  position: relative;
}
.header nav .submenu-content .tit_en {
  position: absolute;
  top: 20px;
  left: 0;
}
.header nav .menu-item:nth-child(2) .tit_en img {
  width: 304px;
}
.header nav .menu-item:nth-child(4) .tit_en img {
  width: 469px;
}
.header nav .menu-item:nth-child(5) .tit_en img {
  width: 237px;
}



.header nav .submenu-content h3 {
  text-align: left;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
  padding-left: 13px;
  z-index: 1;
  position: relative;
}
.header nav .submenu-content h3 a {
  display: flex;
  align-items: center;
  position: relative;
}
.header nav .submenu-content h3 img {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.header nav .submenu-box {
  display: flex;
  align-items: center;
}
.header nav .submenu-content img.menu_img {
  max-width: 270px;
  height: auto;
  margin-right: 60px;
}

.header nav .submenu-list {
  list-style: none;
  display: grid;
  gap: 15px 45px;
  text-align: left;
}
.header nav .submenu-list01,
.header nav .submenu-list02,
.header nav .submenu-list03 {
  grid-template-columns: repeat(2, 1fr);
}

.header nav .submenu-list li a {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}
.header nav .submenu-list li a img {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
}



.header .contact-btn {
  width: 100px;
  height: 80px;
  background: linear-gradient(to right, #ff9658, #f55b00);
  margin-left: 15px;
}
.header .contact-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 0.75rem;
  color: #fff;
  text-decoration: none;
}
.header .contact-btn a img {
  width: 21px;
  margin-top: 10px;
}

.header .sp_right {
  display: none;
}

@media (max-width: 1300px)  and (min-width: 769px) {
  .header .logo {
    width: 17.3077vw;
    margin-top: 1.6923vw;
    margin-bottom: 1.8462vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 10.6667vw;
  }
  .header {
    height: 10.6667vw;
  }
  .header .container {
    padding: 0 0 0 2.6667vw;
  }
  .header .logo {
    width: 33.3333vw;
    margin-top: 0;
    margin-bottom: 0;
  }

  
  .header nav {
    display: block;
  }
  .header nav .menu {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #fff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .header nav .menu.open {
    max-height: 1000px;
  }


  .header nav .menu-item {
    width: 100%;
    padding-left: 5.3333vw;
    padding-right: 5.3333vw;
  }
  .header nav .menu-item:nth-child(1) {
    padding-top: 3.0667vw;
  }
  .header nav .menu-item:last-child {
    padding-bottom: 8.6667vw;
  }
  .header nav .menu-item > a {
    font-size: 4.8vw;
    padding-left: 1.6vw;
    padding-right: 1.6vw;
    padding-bottom: 5px;
    padding-top: 4.6667vw;
    justify-content: space-between;
    color: #666;
    border-bottom: 1px solid #e4e4e4;
  }
  .header nav .menu-item > a::after {
    display: none;
  }
  .header nav .menu-item:hover > a,
  .header nav .menu-item.has-submenu:hover > a {
    color: #666;
  }
  .header nav .menu-item .arrow {
    width: 4.8vw;
    height: 4.8vw;
    background: url('../img/common/circle_arrow_or.png') no-repeat;
    background-size: contain;
    margin-left: 0;
    transform: rotate(90deg);
  }
  .header nav .menu-item .arrow.is_sp {
    transform: rotate(0);
  }
  .header nav .menu-item.has-submenu:hover .arrow {
    background: url('../img/common/circle_arrow_or.png') no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
  }


  .has-submenu .submenu-wrapper {
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .has-submenu:hover .submenu-wrapper {
    max-height: 0;
  }
  .header nav .submenu-content {
    max-width: 100%;
    padding-top: 3.3333vw;
    padding-bottom: 3.3333vw;
  }
  .header nav .menu-item h3,
  .header nav .menu-item img {
    display: none;
  }
  .header nav .submenu-box {
    flex-direction: column;
  }
  .header nav .submenu-list {
    width: 100%;
    gap: 2.6667vw;
    padding-left: 6.6667vw;
  }
  .header nav .submenu-list01,
  .header nav .submenu-list02,
  .header nav .submenu-list03 {
    grid-template-columns: none;
  }
  .header nav .submenu-list li a {
    font-size: 4.8vw;
    font-weight: normal;
    color: #666;
  }
  .header nav .submenu-list li a img {
    width: 20px;
    height: 20px;
    margin-left: 1.6vw;
  }


  .header .sp_right {
    display: flex;
    align-items: center;
  }
  .header .menuIcon {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0 2.6667vw;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
  }
  .header .hamburger-box {
    position: relative;
    display: inline-block;
    width: 5.3333vw;
    height: 3.4667vw;
  }
  .hamburger-inner:after, 
  .hamburger-inner:before {
    display: block;
    content: "";
  }
  .hamburger-inner, 
  .hamburger-inner:after, 
  .hamburger-inner:before {
    position: absolute;
    width: 100%;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #ff6a22;
  }
  .hamburger-inner:before {
    width: 4vw;
    top: 1.3333vw;
    left: 0.6667vw;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform, opacity;
  }
  .hamburger-inner:after {
    top: 2.6667vw;
    bottom: -1.3333vw;
  }
  .is-active .hamburger-inner {
    transform: translate3d(0, 1.3333vw, 0) rotate(45deg);
  }
  .is-active .hamburger-inner:before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }
  .is-active .hamburger-inner:after {
    transform: translate3d(0, -2.6667vw, 0) rotate(-90deg);
  }

  .header .contact-btn {
    width: 10.6667vw;
    height: 10.6667vw;
    margin-left: 0;
  }
  .header .contact-btn a {
    font-size: 1.3333vw;
  }
  .header .contact-btn a img {
    width: 4vw;
    margin-top: 1.3333vw;
  }

}












/* footer
---------------------------------------------------------------------- */
footer {
 position: relative;
}
footer .ft_inner {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 290px;
}
footer .ft_inner .logo {
  width: 183px;
}

footer .ft_content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
footer .f_gnav {
  padding: 45px 0 30px;
  gap: 0 10px;
  border-bottom: 1px solid #e4e4e4;
}
footer .f_gnav_pc {
  display: flex;
}
footer .f_gnav_sp {
  display: none;
}
footer .f_gnav dl {
  width: 175px;
  text-align: left;
}
footer .f_gnav dl dt {
  font-size: 0.875rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e4e4;
}
footer .f_gnav dl dt a {
  color: #000;
}
footer .f_gnav dl dd {
  font-size: 0.75rem;
}
footer .f_gnav dl dd ul li {
  margin-top: 10px;
  padding-left: 1em;
}
footer .f_gnav dl dd ul li::before {
  display: inline-block;
  content: "・";
  text-indent: -1em;
}


footer .f_sub {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /*  */
  gap: 70px;
  /*  */
  margin: 40px 0 0 0;
}
footer .f_sub ul li {
  text-align: left;
  padding-left: 1em;
}
footer .f_sub ul li + li {
  margin-top: 10px;
}
footer .f_sub ul li::before {
  display: inline-block;
  content: "・";
  text-indent: -1em;
}
footer .f_sub ul li a {
  font-size: 0.6875rem;
}
footer .f_sub ul li a img {
  display: inline-block;
  width: 10px;
  margin-left: 5px;
}

footer .f_sub .tel_box {
  width: 300px;
  margin: 0 0 0 auto;
  padding: 15px 0;
  border-radius: 5px;
  background: linear-gradient(to right, #ff9658, #f55b00);
}
.ft_bnr_add {
  border-bottom: 1px solid #cacaca;
}
.ft_bnr_add .tel_box {
  width: 300px;
  margin: 40px auto 80px;
  padding: 15px 0;
  border-radius: 5px;
  background: linear-gradient(to right, #ff9658, #f55b00);
}
footer .f_sub .tel_box p,
.ft_bnr_add .tel_box p {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
}
footer .f_sub .tel_box span,
.ft_bnr_add .tel_box span {
  display: block;
  font-size: 14px;
}
.photo_by {
  max-width: 1100px;
  margin: 0 auto 10px;
  text-align: right;
  color: #888;
}


footer .ft_img {
  width: 835px;
  position: absolute;
  right: 0;
  bottom: 100px;
}


footer .copyright {
  text-align: center;
  background: #f3f3f3;
  padding: 17px 0;
}
footer .copyright .copyright__content {
  font-weight: 500;
  color: #f37022;
}
@media (max-width: 1300px)  and (min-width: 769px) {
  footer .ft_inner {
    padding: 40px 2% 290px;
  }
  footer .ft_img {
    width: 63.4615vw;
  }
}
@media screen and (max-width: 768px) {
  footer .ft_inner {
    width: 94.1333vw;
    padding: 11.3333vw 0 0;
  }
  footer .ft_inner .logo {
    width: 25.7333vw;
  }

  footer .ft_content {
    width: 86vw;
  }
  footer .f_gnav_box {
    display: flex;
    justify-content: space-between;
  }
  footer .f_gnav {
    padding: 10vw 0 8vw;
    flex-direction: column;
    gap: 5.3333vw 0;
  }
  footer .f_gnav_sp {
    display: flex;
  }
  footer .f_gnav dl {
    width: 40vw;
  }
  footer .f_gnav dl dt {
    font-size: 2.8vw;
    padding-bottom: 2.6667vw;
  }
  footer .f_gnav dl dd {
    font-size: 2.8vw;
  }
  footer .f_gnav dl dd ul li {
    margin-top: 2.6667vw;
  }

  footer .f_sub {
    align-items: flex-start;
    flex-direction: column;
    margin: 8vw 0 36vw 0;
    /*  */
    gap: 0;
    /*  */
  }
  footer .f_sub ul + ul {
    margin-top: 8vw;
  }
  footer .f_sub ul li + li {
    margin-top: 2.6667vw;
  }
  footer .f_sub ul li a {
    font-size: 2.6667vw;
  }
  footer .f_sub ul li a img {
    width: 2.6667vw;
  }
  footer .f_sub .tel_box {
    width: 58.6667vw;
    margin: 8vw auto 0;
    padding: 3.3333vw 0;
  }
  .ft_bnr_add .tel_box {
    width: 58.6667vw;
    margin: 4vw auto 8vw;
    padding: 3.3333vw 0;
  }
  footer .f_sub .tel_box p,
  .ft_bnr_add .tel_box p {
    font-size: 3.2vw;
  }
  footer .f_sub .tel_box span,
  .ft_bnr_add .tel_box span {
    font-size: 2.8vw;
  }

  footer .ft_img {
    width: 97.3333vw;
    bottom: 18vw;
  }


  footer .copyright {
    padding: 4vw 0;
  }
  footer .copyright .copyright__content {
    font-size: 2.6667vw;
  }
}




/* go-top BTN
---------------------------------------------------------------------- */
.go-top {
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: 60px;
  right: 30px;
  border: none;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border-radius: 5px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.go-top:hover img {
  transition: all 0.5s ease;
}
.go-top:hover img {
  opacity: 0.7;
}
.go-top.show {
  opacity: 1;
  visibility: visible;
}









/* breadcrumb
---------------------------------------------------------------------- */
.detailHeader {
  width: 100%;
}
.detailHeader .breadcrumb {
  width: 100%;
  border-top: 1px solid #cacaca;
  background: #f8f8f8;
  padding-top: 8px;
  padding-bottom: 10px;
  padding-left: 0;
  box-sizing: border-box;
}
.breadcrumb ul {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.breadcrumb ul li {
  font-size: 12px;
  margin-right: 8px;
}
.breadcrumb ul li::before {
  display: inline-block;
  content: ">";
  margin-right: 8px;
}
.breadcrumb ul li:first-child::before {
  display: none;
}
.breadcrumb ul li:last-of-type {
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


.pageTit_box {
  width: 100%;
  margin: 0 auto;
  padding: 70px 0 80px;
}
.company_sub .pageTit_box,
.properties_sub .pageTit_box,
.pageTit_box.pageTit_subBox  {
  background: url('../img/common/sub_tit_bg_pc.png');
  background-size: cover;
  background-position: right;
  position: relative;
}



.pageTit_box .tit_en {
  font-family: cormorant-garamond, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  color: #dcdcdc;
  line-height: 1;
  margin: 0;
  position: relative;
}
.pageTit_box .tit_en::after {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background: #ff6a21;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pageTit_box p.tit_jp {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.5;
  color: #000;
  margin-top: 25px;
}

@media (max-width: 1300px)  and (min-width: 769px) {
  .detailHeader .breadcrumb {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 768px) {
  .detailHeader .breadcrumb {
    padding-top: 1.3333vw;
    padding-bottom: 1.3333vw;
    padding-left: 2.6667vw;
    padding-right: 2.6667vw;
  }
  .breadcrumb ul li {
    font-size: 2.1333vw;
    margin-right: 1.6vw;
  }
  .breadcrumb ul li::before {
    margin-right: 1.6vw;
  }


  .pageTit_box {
    max-width: 100%;
    padding: 6.6667vw 0;
  }
  .company_sub .pageTit_box,
  .properties_sub .pageTit_box,
  .pageTit_box.pageTit_subBox {
    background: url('../img/common/sub_tit_bg_sp.png');
    background-size: cover;
    background-position: right;
  }

  .pageTit_box .tit_en {
    font-size: 6vw;
  }
  .pageTit_box .tit_en::after {
    width: 4vw;
    bottom: -4.6vw;
  }
  .pageTit_box p.tit_jp {
    font-size: 9.3333vw;
    margin-top: 6vw;
  }
}







/* bt_sub_menu
---------------------------------------------------------------------- */

.bt_sub_menu {
  width: 100%;
  padding: 60px 0;
  background: #f8f8f8;
}
.bt_sub_menu ul.is_pc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.bt_sub_menu ul.is_sp {
  display: none;
}
.bt_sub_menu ul li {
  position: relative;
}
.bt_sub_menu ul li::after {
  display: block;
  content: "";
  width: 1px;
  height: 15px;
  background: #969696;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.bt_sub_menu ul li:last-child::after {
  display: none;
}
.bt_sub_menu ul li a {
  font-size: 14px;
  padding: 0 20px;
  color: #666;
}

.bt_sub_menu .pre_btn {
  width: 220px;
  height: 36px;
  margin: 40px auto 0;
  border-radius: 18px;
  background: linear-gradient(to right, #ff9658, #f55b00);
}
.bt_sub_menu .pre_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  color: #fff;
  position: relative;
}
.bt_sub_menu .pre_btn a::before {
  display: block;
  content: "";
  width: 5px;
  height: 8px;
  background: url('../img/common/arrow_icon.png') no-repeat;
  background-size: cover;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 1300px)  and (min-width: 769px) {
  .bt_sub_menu ul li {
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .bt_sub_menu {
    padding: 10.6667vw 0;
  }
  .bt_sub_menu ul.is_sp {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bt_sub_menu ul.is_sp + ul.is_sp {
    margin-top: 5.3333vw;
  }
  .bt_sub_menu ul.is_pc {
    display: none;
  }
  .bt_sub_menu ul li::after {
    height: 2.6667vw;
  }
  .bt_sub_menu ul li:first-child::before {
    height: 2.6667vw;
  }
  .bt_sub_menu ul li a {
    font-size: 2.8vw;
    padding: 0 4vw;
  }

  .bt_sub_menu .pre_btn {
    width: 58.6667vw;
    height: 9.6000vw;
    margin: 8vw auto 0;
    border-radius: 4.8vw;
  }
  .bt_sub_menu .pre_btn a {
    font-size: 3.2vw;
  }
  .bt_sub_menu .pre_btn a::before {
    width: 1.3333vw;
    height: 2vw;
    left: 3.4667vw;
  }
}











/* animation
---------------------------------------------------------------------- */
.fadeIn--kv {
  -webkit-animation-duration: 1s;
	-webkit-animation-timing-function:linear;
	-webkit-animation-iteration-count:1;
	-webkit-animation-fill-mode:forwards;
	animation-duration: 1s;
	animation-fill-mode:forwards;
	animation-iteration-count:1;
	animation-timing-function:linear;
	opacity:0;
	-webkit-animation-name: fadeIn;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
	animation-name: fadeIn;
}
@keyframes fadeIn {
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}


.fadeUp--kv {
  -webkit-animation-duration: 1s;
	-webkit-animation-timing-function:linear;
	-webkit-animation-iteration-count:1;
	-webkit-animation-fill-mode:forwards;
	animation-duration: 1s;
	animation-fill-mode:forwards;
	animation-iteration-count:1;
	animation-timing-function:linear;
	opacity:0;
	-webkit-animation-name: fadeUp;
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	animation-name: fadeUp;
}
@keyframes fadeUp {
	from {
		opacity:0;
    transform: translate( 0, 20px); 
	}
	to {
		opacity:1;
    transform: translate( 0, 0);
	}
}




.fade-up {
  opacity: 0;
  translate: 0 40px;
  transition-property: opacity, translate;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}
.fade-up.show {
  opacity: 1;
  translate: 0 0;
}

.fade-in {
  opacity: 0;
  transition-property: opacity, translate;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}
.fade-in.show {
  opacity: 1;
}



.fade-lt {
  opacity: 0;
  translate: 40px 0;
  transition-property: opacity, translate;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}
.fade-lt.show {
  opacity: 1;
  translate: 0 0;
}

.fade-rt {
  opacity: 0;
  translate: -40px 0;
  transition-property: opacity, translate;
  transition-duration: 0.5s;
  transition-timing-function: linear;
}

.fade-rt.show {
  opacity: 1;
  translate: 0 0;
}