@charset "UTF-8";
/*************************
***       font         ***
**************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Quicksand:wght@400;800&display=swap");
.gothic {
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.quicksand {
  font-family: "Quicksand", sans-serif;
}

/*************************
***       color        ***
**************************/
/********************************
*******     selector      *******
*********************************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  background-color: #f8f8f8;
  text-rendering: optimizeSpeed;
  line-height: 2;
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-break: break-all;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  scroll-behavior: smooth;
}

main {
  padding-top: 60px;
}

section {
  padding: 2rem 0;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  clear: both;
}

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

a:hover {
  color: #d11717;
}

ul {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font: inherit;
}

/********************************
*******       common      *******
*********************************/
.type-sidebar > .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 4rem 0;
}

.type-sidebar > .container > .sidenav {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 12rem;
  width: 268px;
  padding: 2rem;
  border-radius: 10px;
}

.type-sidebar > .container > .sidenav ul li {
  margin-bottom: 2rem;
}

.type-sidebar > .container > .sidenav ul li a {
  position: relative;
  color: #333333;
  -webkit-transition: padding-left ease 0.3s;
  transition: padding-left ease 0.3s;
}

.type-sidebar > .container > .sidenav ul li a::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: width ease 0.3s;
  transition: width ease 0.3s;
}

.type-sidebar > .container > .sidenav ul li a:hover {
  font-weight: bold;
  padding-left: 2rem;
}

.type-sidebar > .container > .sidenav ul li a:hover::before {
  width: 1rem;
}

.type-sidebar > .container > .content {
  width: 100%;
}

.hidden {
  display: none;
}

.glass {
  background: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.neumor-up {
  background: #f8f8f8;
  -webkit-box-shadow: 3px 3px 4px #bababa, -3px -3px 4px #ffffff;
          box-shadow: 3px 3px 4px #bababa, -3px -3px 4px #ffffff;
}

.neumor-down {
  background: #f8f8f8;
  -webkit-box-shadow: inset 3px 3px 4px #bababa, inset -3px -3px 4px #ffffff;
          box-shadow: inset 3px 3px 4px #bababa, inset -3px -3px 4px #ffffff;
}

.split span {
  display: inline-block;
}

.transition {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  background-color: #202124;
  color: #f8f8f8;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  font-size: 3rem;
}

.first-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
  background-color: #f8f8f8;
  color: #333333;
  font-size: 2rem;
  visibility: hidden;
}

.first-loading .inner {
  text-align: center;
  visibility: hidden;
  padding: 0 2rem;
}

.first-loading .one,
.first-loading .two {
  display: inline-block;
}

.first-loading img {
  margin: 2rem auto;
}

.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}

.pagination .nav-links .page-numbers,
.pagination .nav-links .next,
.pagination .nav-links .prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f8f8f8;
  -webkit-box-shadow: 3px 3px 4px #bababa, -3px -3px 4px #ffffff;
          box-shadow: 3px 3px 4px #bababa, -3px -3px 4px #ffffff;
}

.pagination .nav-links .page-numbers:hover,
.pagination .nav-links .next:hover,
.pagination .nav-links .prev:hover {
  color: #333333;
}

.pagination .nav-links .current {
  color: #f8f8f8;
  background-color: #333333;
}

.pagination .nav-links .current:hover {
  color: #f8f8f8;
}

.border {
  display: block;
  background-color: #000;
  width: 100%;
  height: 1px;
}

.border-bottom {
  border-bottom: solid 1px #c8c8c8;
}

.border-bottom2 {
  position: relative;
  padding: 0.5em 0.7em 0.4em;
  border-bottom: 1px solid #333333;
}

.border-bottom2::before,
.border-bottom2::after {
  position: absolute;
  left: 30px;
  bottom: -15px;
  width: 30px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

.border-bottom2::before {
  background-color: #333333;
}

.border-bottom2::after {
  bottom: -14px;
  background-color: #f8f8f8;
}

.btn-primary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 3rem;
  background-color: #f8f8f8;
  color: #333333;
  border-radius: 5rem;
  border: none;
  font-weight: bold;
  height: 5rem;
  text-underline-offset: 2px;
  white-space: nowrap;
  -webkit-box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
          box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.btn-primary:hover {
  color: #333333;
  -webkit-box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
          box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
}

.btn-secondary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 3rem;
  background-color: #f8f8f8;
  color: #333333;
  border-radius: 5rem;
  border: none;
  font-weight: bold;
  height: 5rem;
  text-underline-offset: 2px;
  white-space: nowrap;
  -webkit-box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
          box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.btn-secondary:hover {
  color: #333333;
  -webkit-box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
          box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
}

.checkbox-label {
  padding: 12px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.checkbox-label:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}

.checkbox-label:hover > .checkbox-dammy {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.checkbox-input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.checkbox-input:focus + .checkbox-dammy {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.checkbox-input:checked + .checkbox-dammy {
  background: #50b987;
}

.checkbox-input:checked + .checkbox-dammy::before {
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  left: 61%;
  width: 34%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-6px, 5px) rotateZ(-135deg);
          transform: translate(-6px, 5px) rotateZ(-135deg);
  -webkit-transform-origin: 2px 2px;
          transform-origin: 2px 2px;
  background: #f8f8f8;
}

.checkbox-input:checked + .checkbox-dammy::after {
  content: "";
  display: block;
  position: absolute;
  top: 35%;
  left: 76%;
  width: 60%;
  height: 2px;
  border-radius: 2px;
  -webkit-transform: translate(-6px, 5px) rotateZ(-45deg);
          transform: translate(-6px, 5px) rotateZ(-45deg);
  -webkit-transform-origin: 2px 2px;
          transform-origin: 2px 2px;
  background: #f8f8f8;
}

.checkbox-dammy {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: #f8f8f8;
  -webkit-box-shadow: inset 3px 3px 4px #bababa, inset -3px -3px 4px #ffffff;
          box-shadow: inset 3px 3px 4px #bababa, inset -3px -3px 4px #ffffff;
  border-radius: 50%;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.checkbox-text {
  margin-left: 12px;
  display: block;
}

.text-red {
  color: #d11717;
}

.pw4vw {
  padding-right: 4vw;
  padding-left: 4vw;
}

.pw8vw {
  padding-right: 8vw;
  padding-left: 8vw;
}

.p4rem {
  padding: 4rem;
}

.ph1rem {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.br20 {
  border-radius: 20px;
}

.pc-only {
  display: none !important;
}

.sp-only {
  display: block !important;
}

@media only screen and (min-width: 768px) {
  .type-sidebar > .container > .sidenav {
    display: block;
  }
  .type-sidebar > .container > .content {
    padding-left: 4rem;
  }
  .pc-only {
    display: block !important;
  }
  .sp-only {
    display: none !important;
  }
}

/********************************
*******      header       *******
*********************************/
body > header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  height: 60px;
  padding: 0 2rem 0;
  z-index: 5;
}

body > header .header-logo img {
  position: relative;
  margin: 0;
  padding: 1px;
  z-index: -1;
  width: 100%;
  max-height: 60px;
}

body > header .header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

body > header .header-nav ul li {
  padding: 1rem;
}

body > header .header-nav ul li a {
  position: relative;
  font-weight: bold;
}

body > header .header-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d11717;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

body > header .header-nav ul li .current a,
body > header .header-nav ul li a:hover {
  color: #333333;
}

body > header .header-nav ul li .current a::after,
body > header .header-nav ul li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

body > header #header-burger {
  width: 60px;
  height: 60px;
  cursor: pointer;
}

body > header #header-burger #btn-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 901;
  width: 100%;
  height: 100%;
}

body > header #header-burger .toggle {
  position: relative;
  z-index: 900;
}

body > header #header-burger .toggle span {
  display: block;
  right: 50%;
  width: 30px;
  height: 1px;
  border-radius: 5px;
  background-color: #333333;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: calc((40px - 3px) / 4) 15px;
}

body > header #header-burger .toggle span:nth-child(1) {
  width: 30px;
}

body > header #header-burger .toggle span:nth-child(2) {
  width: 20px;
}

body > header #header-burger .toggle span:nth-child(3) {
  width: 30px;
}

body > header #header-burger #sp-nav {
  display: none;
  width: 100%;
  min-width: 220px;
  max-width: 425px;
  min-height: 100%;
  display: block;
  position: fixed;
  top: 0;
  right: -1000px;
  background-color: #f8f8f8;
  -webkit-box-shadow: 3px 3px 10px 3px #333333;
          box-shadow: 3px 3px 10px 3px #333333;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  z-index: 899;
  opacity: 0;
}

body > header #header-burger #sp-nav .logo {
  width: 40%;
  min-width: 180px;
  padding-left: 2rem;
  margin: 1rem;
}

body > header #header-burger #sp-nav > ul {
  margin-top: 2rem;
  padding: 0 4rem;
}

body > header #header-burger #sp-nav > ul li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1.8rem;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

body > header #header-burger #sp-nav > ul li a:hover {
  background: #fa505e;
  color: #fff;
}

body > header #header-burger #sp-nav .sp-footer {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 0 2rem;
}

body > header #header-burger #sp-nav .sp-sns {
  margin-top: 2rem;
}

body > header #header-burger #sp-nav .sp-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

body > header #header-burger #sp-nav .sp-sns ul li a {
  font-size: 2rem;
}

body > header #header-burger #mask {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
}

body > header #header-burger.open #sp-nav {
  display: block;
  opacity: 1;
  right: 0;
}

body > header #header-burger.open #mask {
  display: block;
  opacity: 1;
}

body > header #header-burger.open .toggle span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
          transform: translateY(10px) rotate(-315deg);
}

body > header #header-burger.open .toggle span:nth-child(2) {
  opacity: 0;
}

body > header #header-burger.open .toggle span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
          transform: translateY(-10px) rotate(315deg);
}

@media only screen and (max-width: 999px) {
  body > header .header-nav {
    display: none;
  }
}

/********************************
*******      footer       *******
*********************************/
footer {
  background-color: #f8f8f8;
}

#footer {
  padding-top: 10rem;
}

#footer .footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2rem;
  margin-bottom: 10rem;
}

#footer .tokyo,
#footer .chiba {
  width: 100%;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

#footer .tokyo .title,
#footer .chiba .title {
  position: absolute;
  top: 1rem;
  right: 2rem;
}

#footer .footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  background-color: rgba(200, 200, 200, 0.3);
}

#footer .footer-contact .btn-primary {
  margin: 4rem 0;
}

#footer .footer-contact .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
}

#footer .upper,
#footer .lower {
  width: 100%;
}

#footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}

#footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem;
}

#footer .footer-logo img {
  width: 100%;
  max-width: 400px;
}

#footer .footer-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 2rem;
}

#footer .footer-widget-1,
#footer .footer-widget-2,
#footer .footer-widget-3 {
  width: 50%;
}

#sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}

#sns ul li {
  font-size: 3rem;
}

.fa-line {
  color: #00b900;
}

.fa-facebook {
  color: #1877f2;
}

.fa-instagram {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  color: #ffffff;
  background: linear-gradient(45deg, #fed475 0%, #e53d5d 50%, #c23186 70%, #9c38bb 100%);
  background-position: center;
  padding: 0.6rem;
  border: none;
  border-radius: 1rem;
}

.fa-twitter {
  color: #1da1f2;
}

.fa-youtube {
  color: #da1725;
}

#copyright {
  text-align: center;
  font-size: 1rem;
}

@media only screen and (min-width: 768px) {
  #footer .footer-company {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 4%;
  }
  #footer .footer-contact {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 4%;
  }
  #footer .footer-contact .description {
    margin-top: 0;
  }
  #footer .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  #footer .footer-logo {
    padding: 2rem;
    width: 50%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0;
  }
  #footer .footer-widget {
    padding: 2rem;
    width: 100%;
  }
  #footer .footer-widget-1,
  #footer .footer-widget-2,
  #footer .footer-widget-3 {
    width: 33%;
  }
}

/********************************
*******   page-header     *******
*********************************/
#page-header {
  position: relative;
  height: 220px;
}

.page-title-background {
  position: absolute;
  bottom: -30px;
  right: 0;
  z-index: -1;
  font-size: 6rem;
  font-weight: bold;
  color: #c8c8c8;
}

.page-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 1rem;
  padding-bottom: 1rem;
  margin: 0 4vw;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.5rem;
}

.page-title::before {
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 5px solid #333333;
  z-index: 0;
}

.page-title::after {
  width: 100vw;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 5px solid #c8c8c8;
  z-index: -1;
}

@media only screen and (min-width: 768px) {
  .page-title-background {
    bottom: -74px;
    font-size: 14rem;
  }
}

@media only screen and (min-width: 1024px) {
  .page-title-background {
    bottom: -97px;
    font-size: 18rem;
  }
}

/********************************
*******    front-page     *******
*********************************/
#home-hero {
  position: relative;
  width: 100%;
}

#home-hero #mv {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

#home-hero .copy {
  position: absolute;
  bottom: 3%;
  left: 6%;
  color: #333333;
  mix-blend-mode: overlay;
  word-break: keep-all;
}

#home-hero .copy h1 {
  font-size: 3rem;
  letter-spacing: 1.3rem;
  font-weight: bold;
}

#home-hero .copy h2 {
  font-size: 2rem;
  letter-spacing: 1rem;
  font-weight: 400;
  padding: 1.5rem 0;
}

#home-hero .scrolldown {
  position: absolute;
  right: 2vw;
  bottom: 0;
  height: 90px;
}

#home-hero .scrolldown span {
  position: absolute;
  right: -3rem;
  top: -3rem;
  display: block;
  width: 6rem;
  color: #333333;
  font-size: 1rem;
  letter-spacing: 0.25em;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#home-hero .scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #333333;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

.section-title {
  width: 100%;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

#home-news {
  padding-top: 0;
}

#home-news .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem;
}

#home-news .articles ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem;
}

#home-news .articles ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
}

#home-news .articles .datecat {
  width: 100%;
}

#home-news .articles .date {
  display: inline-block;
  width: 8rem;
  margin-right: 1rem;
  font: "Quicksand", sans-serif;
  font-weight: bold;
}

#home-news .articles .category {
  display: inline;
  min-width: 6rem;
}

#home-news .articles .title {
  width: 100%;
  padding: 0.5rem 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#home-news .btn-primary {
  width: 100%;
}

#home-business .row,
#home-business .row-reverse,
#home-vision .row,
#home-vision .row-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7rem;
  margin: 4rem 0 8rem 0;
}

#home-business .description,
#home-vision .description {
  width: 100%;
}

#home-business .description .subtitle,
#home-vision .description .subtitle {
  margin-top: 1rem;
  line-height: 1.5;
}

#home-business .description p,
#home-vision .description p {
  padding: 1rem 0;
}

#home-business .description .btn-primary,
#home-vision .description .btn-primary {
  margin: 2rem auto 0;
}

#home-business .thumb,
#home-vision .thumb {
  width: 100%;
}

#home-business .thumb img,
#home-vision .thumb img {
  margin: auto;
}

#home-property {
  overflow: hidden;
  margin-bottom: 10rem;
}

#home-property .swiper {
  padding: 4rem 0;
  overflow: visible;
}

#home-property .swiper a :hover {
  color: #333333;
}

#home-property .swiper:hover .slide:not(:hover) {
  opacity: 0.5;
}

#home-property .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

#home-property .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

#home-property .slide {
  overflow: hidden;
  width: 36rem;
  border-radius: 4px;
  background: #f8f8f8;
  -webkit-box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
          box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

#home-property .slide:hover {
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
          box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
}

#home-property .slide-media {
  position: relative;
  overflow: hidden;
  padding-top: 62.5%;
}

#home-property .slide-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 16px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

#home-property .slide-media img:hover {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

#home-property .slide-media .badge {
  position: absolute;
  top: 6px;
  right: 6px;
  color: #f8f8f8;
  background-color: rgba(51, 51, 51, 0.5);
  padding: 0 1rem;
  border-radius: 3px;
}

#home-property .slide-content {
  padding: 3.2rem;
}

#home-property .slide-content .address {
  font-size: 1.2rem;
  border-bottom: 1px solid #333333;
}

#home-property .slide-content .name {
  font-size: 1.8rem;
  font-weight: bold;
}

#home-property .slide-content .cat {
  font-size: 1.2rem;
}

#home-catalog .catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  margin: 0 4vw 2rem;
  border-radius: 10px;
}

#home-catalog .catalog .upper {
  min-width: 40%;
}

#home-catalog .catalog img {
  max-width: 150px;
  margin: 4rem auto;
}

#home-catalog .catalog .btn-primary {
  margin: 2rem 0;
}

#home-catalog .catalog .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
}

@media only screen and (min-width: 768px) {
  #home-hero #mv {
    height: 600px;
  }
  #home-news .section-title {
    border-right: 1px solid #333333;
    border-bottom: none;
    width: auto;
    min-width: 8rem;
    padding-bottom: 0;
  }
  #home-news .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #home-news .articles ul {
    gap: 0;
  }
  #home-news .articles ul li {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-left: 1rem;
    gap: 1rem;
  }
  #home-news .articles .datecat {
    width: 38rem;
  }
  #home-news .articles .title {
    padding: 0;
  }
  #home-news .btn-primary {
    width: 32rem;
  }
  #home-catalog .catalog {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 4%;
  }
  #home-catalog .catalog .description {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1024px) {
  #home-hero #mv {
    height: 700px;
  }
  #home-business .row,
  #home-vision .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #home-business .row-reverse,
  #home-vision .row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #home-business .description .btn-primary,
  #home-vision .description .btn-primary {
    width: 50%;
    margin: 4rem auto 0;
  }
  #home-property .btn-primary {
    width: 50%;
    margin: 2rem auto;
  }
}

@media only screen and (max-width: 767px) {
  #home-hero .scrolldown {
    right: 8vw;
  }
}

/********************************
*******     business        *******
*********************************/
#business-three-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -100;
  overflow: hidden;
}

#page-business .btn-primary {
  background-color: #f8f8f8;
}

#page-business .sidenav {
  background-color: rgba(248, 248, 248, 0.975);
}

#page-business .page-title::after {
  border-color: rgba(248, 248, 248, 0.975);
}

#page-business .page-title-background {
  color: rgba(248, 248, 248, 0.975);
}

#page-business section {
  padding: 4rem;
  border-radius: 10px;
}

#page-business .section-title {
  border: none;
  padding-bottom: 0;
}

#page-business .row,
#page-business .row-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin: 4rem 0 4rem 0;
}

#page-business .upper,
#page-business .lower {
  width: 100%;
}

#page-business .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 20rem;
}

#page-business .section-description {
  padding: 2rem 0;
}

#business-about {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#business-about ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

#business-about ul li {
  width: calc((100% - 2rem) / 3);
  text-align: center;
  line-height: 1;
  background-color: rgba(248, 248, 248, 0.975);
}

#business-about ul li .thumb {
  width: 100%;
}

#business-about ul li .thumb img {
  width: 100%;
}

#business-about ul li .title {
  margin-bottom: 1rem;
}

#business-features {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#business-features img {
  width: 100%;
  max-width: 768px;
}

#business-features dl {
  padding: 1rem 0;
}

#business-features dt {
  font-size: 2rem;
}

#business-features .btn-primary {
  margin-top: 2rem;
}

#business-re {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#business-re ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

#business-re ul li {
  width: calc((100% - 2rem) / 3);
  text-align: center;
  line-height: 1;
  background-color: rgba(248, 248, 248, 0.975);
}

#business-re ul li .thumb {
  width: 100%;
}

#business-re ul li .thumb img {
  width: 100%;
}

#business-re ul li .title {
  margin-bottom: 1rem;
}

#business-re .case {
  padding-bottom: 4rem;
}

#business-re .case p {
  margin: 2rem 0;
}

#business-re .case .thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

#business-re .case .thumb div {
  width: calc((100% - 2rem) / 2);
}

#business-it {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#business-it ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

#business-it ul li {
  width: calc((100% - 2rem) / 3);
  text-align: center;
  line-height: 1;
  background-color: rgba(248, 248, 248, 0.975);
}

#business-it ul li .thumb {
  width: 100%;
}

#business-it ul li .thumb img {
  width: 100%;
}

#business-it ul li .title {
  margin-bottom: 1rem;
}

#business-it .case {
  padding-bottom: 4rem;
}

#business-it .case p {
  margin: 2rem 0;
}

#business-it .case .thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

#business-it .case .thumb div {
  width: calc((100% - 2rem) / 2);
}

@media only screen and (min-width: 768px) {
  #business-about ul li {
    width: calc((100% - 3rem) / 4);
  }
}

@media only screen and (min-width: 1024px) {
  #page-business .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #page-business .row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #business-about ul li {
    width: calc((100% - 5rem) / 6);
  }
  #business-features .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 1440px) {
  #business-about .upper .title {
    font-size: 3rem;
  }
  #business-about ul {
    gap: 3rem;
  }
  #business-about ul li {
    width: calc((100% - 15rem) / 6);
  }
  #business-features .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #business-re .case .thumb div,
  #business-it .case .thumb div {
    width: calc((100% - 6rem) / 4);
  }
}

/********************************
*******     vision        *******
*********************************/
#vision-three-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -100;
  overflow: hidden;
}

#page-vision .btn-primary {
  background-color: #f8f8f8;
}

#page-vision .sidenav {
  background-color: rgba(248, 248, 248, 0.975);
}

#page-vision section {
  padding: 4rem 2rem;
  border-radius: 10px;
}

#page-vision .section-title {
  border: none;
  padding-bottom: 0;
}

#page-vision .wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

#page-vision .row,
#page-vision .row-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin: 4rem 0 4rem 0;
}

#page-vision .upper,
#page-vision .lower {
  width: 100%;
}

#page-vision .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#page-vision .section-description {
  padding: 2rem 0;
}

#vision-ideal {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#vision-ideal .title {
  text-align: center;
  margin-top: 4rem;
}

#vision-ideal .description {
  margin: 4rem 0;
}

#vision-ideal .thumb {
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5rem;
  border-radius: 10px;
}

#vision-ideal .thumb img {
  border-radius: 10px;
}

#vision-ideal .btn-primary {
  margin: 8rem auto 4rem;
  max-width: 600px;
}

#vision-tech {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#vision-tech .term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

#vision-tech .box {
  text-align: center;
  width: 100%;
  border-radius: 10px;
}

#vision-tech .box > span {
  display: block;
  background: linear-gradient(135deg, #fe9e78 0%, #fa505e 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
}

#vision-tech .box div {
  padding: 2rem;
  font-size: 2rem;
}

#vision-tech .box div > span {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0.5rem;
}

#vision-challenge {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#vision-challenge .list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 10px;
}

#vision-challenge .list .title {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #fe9e78 0%, #fa505e 100%);
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

#vision-challenge .list .item {
  width: 100%;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: solid 1px #c8c8c8;
}

#vision-challenge .list .item .label {
  min-width: 8rem;
  font-weight: bold;
}

#vision-challenge .list .item:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

#vision-challenge .table ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0;
}

#vision-challenge .table ul li {
  width: calc((100% - 1rem) / 2);
  padding: 0.5rem 0;
}

#vision-bridge {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#vision-bridge img {
  width: 100%;
}

#vision-sdgs {
  margin-bottom: 800px;
  background-color: rgba(248, 248, 248, 0.975);
}

#vision-sdgs .greenroom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  border-radius: 10px;
}

#vision-sdgs .greenroom .logo img {
  max-height: 100px;
  margin: auto;
  margin-right: 0;
}

#vision-sdgs .greenroom .greennote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#vision-sdgs .greenroom .greennote .title {
  color: #45a336;
}

#vision-sdgs .greenroom .store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

#vision-sdgs .greenroom .store img {
  max-width: 100%;
  max-height: 45px;
}

@media only screen and (min-width: 768px) {
  #page-vision section {
    padding: 4rem;
  }
}

@media only screen and (min-width: 1024px) {
  #vision-tech {
    margin-bottom: 800px;
    background-color: rgba(248, 248, 248, 0.975);
  }
  #vision-tech .term {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #vision-challenge .table ul li {
    width: calc((100% - 3rem) / 4);
  }
}

@media only screen and (min-width: 1440px) {
  #page-vision .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #page-vision .row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #vision-ideal .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #vision-ideal .title {
    font-size: 3rem;
  }
  #vision-tech .title {
    font-size: 3rem;
  }
  #vision-challenge .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/********************************
*******     company        *******
*********************************/
#page-company .content section {
  text-align: center;
  margin-bottom: 20rem;
  padding: 2rem;
  border-radius: 10px;
}

#page-company .content section .section-title {
  font-size: 3rem;
  width: auto;
  display: inline-block;
  border-bottom: 1px solid #333333;
  margin: 5rem;
}

#page-company .content section .title {
  font-size: 2rem;
  display: block;
  width: 100%;
  border-bottom: solid 1px #333333;
  margin-bottom: 1rem;
}

#page-company .content section .row,
#page-company .content section .row-reverse {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10rem;
}

#page-company .content section .thumb {
  width: 100%;
}

#page-company .content section .thumb img {
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  max-height: 400px;
  aspect-ratio: 4 / 3;
}

#page-company .content section .list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page-company .content section .list .item {
  width: 100%;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: solid 1px #c8c8c8;
}

#page-company .content section .list .item .label {
  min-width: 10rem;
  font-weight: bold;
}

#company-profile .thumb img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  -o-object-position: center !important;
     object-position: center !important;
  aspect-ratio: 1 / 1 !important;
}

@media only screen and (min-width: 1440px) {
  #page-company .content section .row,
  #page-company .content section .row-reverse {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 0 4rem;
  }
  #page-company .content section .row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/********************************
*******     News        *******
*********************************/
#news-articles {
  padding: 0;
}

#news-articles ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin-bottom: 1rem;
}

#news-articles ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  border-radius: 10px;
  margin: 0 1rem;
}

#news-articles .thumb {
  width: 100%;
  margin: auto;
}

#news-articles .thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 16 / 9;
  border-radius: 10px 10px 0 0;
  min-height: 200px;
  max-height: 400px;
}

#news-articles .description {
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#news-articles .date {
  font-size: 1.2rem;
}

#news-articles .title {
  font-weight: bold;
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#news-articles .excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

#news-articles .cat a {
  display: block;
  color: white;
  background-color: #333333;
  font-size: 1.2rem;
  padding: 0 1rem;
  margin-top: 1rem;
  border-radius: 1.8rem;
}

@media only screen and (min-width: 1024px) {
  #news-articles ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (min-width: 1440px) {
  #news-articles .thumb {
    width: 30%;
  }
  #news-articles .thumb img {
    border-radius: 10px 0 0 10px;
  }
  #news-articles .description {
    width: 70%;
  }
}

/********************************
*******  search-property  *******
*********************************/
#page-search-property .content {
  border-radius: 10px;
  padding: 0 2rem 4rem;
}

#search-property-keyword {
  padding-top: 4rem;
}

#search-property-keyword input[type="text"] {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  width: 100%;
  border: 1px solid #f8f8f8;
  margin-right: 2rem;
}

#search-property-keyword input[type="text"]:focus {
  outline: none;
}

#search-property-keyword .btn-primary {
  display: block;
  margin: 1rem auto;
  padding: 0 8rem;
}

#search-property-pickup .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#search-property-pickup .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 2rem) / 3);
  padding: 1rem;
  border-radius: 4px;
  background-color: #f8f8f8;
  color: #333;
  text-align: center;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

#search-property-pickup .list .item:hover {
  color: #333333;
  -webkit-box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
          box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
}

#search-property-pickup .list .item .thumb {
  font-size: 2rem;
}

#search-property-pickup .list .item .description {
  font-size: 1.4rem;
}

#search-property-filter .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#search-property-filter .filters .item {
  width: calc((100% - 1rem) / 2);
}

#search-property-filter .filters .item .label {
  border-bottom: solid 1px #c8c8c8;
  margin-bottom: 1rem;
}

#search-property-filter .filters .item .condition select {
  width: 100%;
}

#search-property-filter .filters .checkbox-text {
  font-size: 1.2rem;
}

#search-property-filter .result-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1rem;
}

#search-property-filter .result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
}

#search-property-filter .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}

#search-property-filter .buttons button {
  padding: 0.5rem 1.5rem;
}

@media only screen and (min-width: 768px) {
  #page-search-property .content {
    padding: 0 4rem;
  }
}

@media only screen and (min-width: 1024px) {
  #search-property-keyword input[type="text"] {
    width: 50%;
  }
  #search-property-keyword .btn-primary {
    display: inline-block;
  }
  #search-property-pickup .list .item {
    width: calc((100% - 5rem) / 6);
  }
  #search-property-pickup .list .item .thumb {
    font-size: 3rem;
  }
  #search-property-pickup .list .item .title {
    font-size: 1.4rem;
  }
  #search-property-filter .filters {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #search-property-filter .filters .item {
    width: calc((100% - 3rem) / 4);
  }
  #search-property-filter .result-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #search-property-filter .buttons button {
    padding: 0.5rem 3rem;
  }
}

/********************************
*****  archive-property   *******
*********************************/
#archive-property-articles {
  padding-top: 4rem;
}

#archive-property-articles ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#archive-property-articles ul li {
  width: calc((100% - 2rem) / 2);
}

.zoomInText {
  position: relative;
}

.zoomInText a {
  position: relative;
  display: inline-block;
  z-index: 1;
  background-color: #004098;
}

.zoomInText span.mask {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: block;
  line-height: 0;
  overflow: hidden;
}

.zoomInText:hover span.mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.zoomInText img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.zoomInText:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.zoomInText span.cap {
  opacity: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  font-size: 1rem;
}

.zoomInText:hover span.cap {
  opacity: 1;
}

@media only screen and (min-width: 1024px) {
  #archive-property-articles ul li {
    width: calc((100% - 4rem) / 3);
  }
}

@media only screen and (min-width: 1440px) {
  #archive-property-articles .zoomInText span.cap {
    font-size: 1.2rem;
  }
}

/********************************
*******     property      *******
*********************************/
#property-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 2;
}

#property-header .border-bottom {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

#property-header .right {
  text-align: center;
}

#property-header .btn-primary {
  margin: 2rem;
}

#property-images {
  overflow: hidden;
}

#property-images .swiper-main {
  overflow: visible;
  max-width: 720px;
  width: 100%;
}

#property-images .swiper-thumb {
  padding-top: 16px;
  max-width: 720px;
  width: 100%;
}

#property-images .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#property-images .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: opacity !important;
  transition-property: opacity !important;
}

#property-images .swiper-slide-active {
  pointer-events: auto;
}

#property-images .slide {
  display: block;
  overflow: hidden;
}

#property-images .slide-media,
#property-images .thumb-media {
  position: relative;
  overflow: hidden;
}

#property-images .slide-media img,
#property-images .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#property-images .slide-media {
  padding-top: 100%;
}

#property-images .slide-media img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px;
}

#property-images .thumb-media {
  padding-top: 100%;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

#property-images .thumb-media img {
  height: calc(100% + 8px);
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center;
          transform-origin: center;
  border-radius: 4px;
}

#property-images .thumb-media:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center;
          transform-origin: center;
}

#property-images .swiper-slide-thumb-active {
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  opacity: 0.3;
}

#property-images .swiper-slide-thumb-active .thumb-media {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: center;
          transform-origin: center;
}

#property-images .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 100%;
}

#property-images .swiper-button-prev,
#property-images .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

#property-images .swiper-button-prev::before,
#property-images .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

#property-images .swiper-button-prev::after,
#property-images .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid 1px #c8c8c8;
  border-width: 3px 3px 0 0;
}

#property-images .swiper-button-prev {
  right: calc(100% + 5rem);
}

#property-images .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

#property-images .swiper-button-next {
  left: calc(100% + 5rem);
}

#property-images .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#property-images .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

#property-images .swiper-scrollbar {
  position: relative;
  margin-top: 1.6rem;
}

#property-images .swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  content: "";
  background-color: #c8c8c8;
}

#property-images .swiper-scrollbar-drag {
  height: 20px;
  padding: 8px 0;
  cursor: pointer;
  background-color: #d11717;
  background-clip: content-box;
}

#property-images .swiper-scrollbar-drag:active {
  background-color: #333333;
}

#property-detail .title,
#property-renovation .title {
  border-bottom: solid 1px #333333;
  padding-bottom: 1rem;
}

#property-detail .list,
#property-renovation .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#property-detail .list .item,
#property-renovation .list .item {
  width: 100%;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 1px #c8c8c8;
}

#property-detail .list .item .label,
#property-renovation .list .item .label {
  min-width: 10rem;
  font-weight: bold;
}

@media only screen and (min-width: 768px) {
  #property-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #property-detail .list .item,
  #property-renovation .list .item {
    width: calc((100% - 1rem) / 2 - 2rem);
  }
}

@media only screen and (max-width: 1024px) {
  #property-images .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
  #property-images .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}

/********************************
*******       404         *******
*********************************/
#notfound-description {
  text-align: center;
}

#notfound-description h1 {
  padding: 2rem 0;
}

#notfound-description p {
  padding: 2rem 0;
}

#notfound-description .btn-primary {
  max-width: 30rem;
  margin: 5rem auto 0;
}

/********************************
*******       privacy     *******
*********************************/
#page-privacy .container {
  max-width: 1280px;
  margin: 0 auto;
}

/********************************
*******       contact     *******
*********************************/
#page-contact .container {
  max-width: 1280px;
  margin: 0 auto;
}

#page-contact .container .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#page-contact .container .bubble {
  position: relative;
  width: 100%;
  margin: 2rem 0 1rem;
  padding: 2rem;
  border-radius: 10px;
  background-color: #777;
  color: #fff;
}

#page-contact .container .bubble::before {
  position: absolute;
  right: 70%;
  bottom: -15px;
  width: 30px;
  height: 15px;
  background-color: #777;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

#page-contact .container .dog {
  width: 100%;
  padding: 2rem 4vw;
  font-size: 1.2rem;
  text-align: center;
}

#page-contact .container .circle {
  margin: 0 auto 1rem;
  max-width: 150px;
  border-radius: 50%;
}

#page-contact .container .wpcf7-form > p {
  margin-bottom: 2rem;
}

#page-contact .container .wpcf7-text,
#page-contact .container .wpcf7-textarea {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  width: 100%;
  border: 1px solid #f8f8f8;
  margin-right: 2rem;
  background: #f8f8f8;
  -webkit-box-shadow: inset 3px 3px 4px #bababa, inset -3px -3px 4px #ffffff;
          box-shadow: inset 3px 3px 4px #bababa, inset -3px -3px 4px #ffffff;
}

#page-contact .container .wpcf7-text:focus,
#page-contact .container .wpcf7-textarea:focus {
  outline: none;
}

#page-contact .container .wpcf7-submit {
  width: 100%;
  max-width: 375px;
  margin: 4rem auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 3rem;
  background-color: #f8f8f8;
  color: #333333;
  border-radius: 5rem;
  border: none;
  font-weight: bold;
  height: 5rem;
  text-underline-offset: 2px;
  white-space: nowrap;
  -webkit-box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
          box-shadow: 3px 3px 4px #bababa, -6px -6px 8px #ffffff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

#page-contact .container .wpcf7-submit:hover {
  color: #333333;
  -webkit-box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
          box-shadow: 1px 1px 2px #bababa, -1px -1px 2px #ffffff;
}

@media only screen and (min-width: 768px) {
  #page-contact .container .bubble {
    width: 66%;
    margin: 2rem 1rem 2rem 0;
  }
  #page-contact .container .bubble::before {
    bottom: 50%;
    right: -15px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  #page-contact .container .dog {
    width: 32%;
  }
}

/********************************
*******       document     *******
*********************************/
#page-document .container {
  max-width: 1280px;
  margin: 0 auto;
}

.download-box {
  width: 250px;
  max-width: 350px;
  background: #f8f8f8;
  -webkit-box-shadow: 3px 3px 4px #bababa, -3px -3px 4px #ffffff !important;
          box-shadow: 3px 3px 4px #bababa, -3px -3px 4px #ffffff !important;
  color: #333333;
  border: none !important;
  border-radius: 10px;
  text-align: center;
  margin: 0 !important;
  position: relative;
  margin: 0 auto !important;
}

.download-box img.wp-post-image {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  border-radius: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.download-box h1 {
  margin: 0.5em 0 !important;
}

.download-box .download-count {
  display: none;
}

.download-box .download-box-content {
  padding: 0 1em 1em;
}

.download-box .download-button {
  text-align: center;
  text-decoration: none !important;
  padding: 0.75em 1em;
  display: block;
  line-height: 1.5em;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  background-color: #f8f8f8;
  background-image: none;
  border: none;
  text-shadow: none;
  font-weight: bold;
}

.download-box .download-button:hover {
  background-color: #eee;
  background-image: none;
  color: #333;
}

.download-box .download-button:before {
  content: "";
  position: absolute;
  height: 2px;
  z-index: 3;
  bottom: -2px;
  left: 0;
  width: 0;
  background: red;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  -webkit-box-shadow: 0 0 3px rgba(255, 0, 0, 0.8);
          box-shadow: 0 0 3px rgba(255, 0, 0, 0.8);
  border-radius: 5px;
}

.download-box a.download-button > * {
  z-index: 2;
  position: relative;
}

.download-box .download-button small {
  font-size: 0.8em;
  opacity: 0.8;
  display: block;
}

/********************************
*******       single     *******
*********************************/
#single .container {
  max-width: 1280px;
  margin: 0 auto;
}

/********************************
*******       page     *******
*********************************/
#page .container {
  max-width: 1280px;
  margin: 0 auto;
}
/*# sourceMappingURL=theme-syrealty.css.map */