/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: block;
  filter: drop-shadow(0px 0px #000);
  width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}


/* ==========================================================================
            Base
            ========================================================================== */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  font-size: 67.5%;
  line-height: 1.5;
  background: var(--main-r);
  font-family: "Cormorant-Bold", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  color: var(--main-r);
}

body:not(body#page__top) {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

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

.c-loader-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: var(--main);
}

.c-loader-bg video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skip {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 999999;
  cursor: pointer;
  pointer-events: auto;
  color: var(--main-r);
  font-size: 14px;
}

.ti-widget.ti-goog .ti-review-header:after {
  display: none!important;
}

.fadeUp {
  -webkit-animation: fadeup 1.3ss forwards;
  animation: fadeup 1.3s forwards;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(4px);
    transform: translateY(4px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px)
  }
}

.fade {
  animation-name: fadeAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

#mv_item .content .fade {
  animation-delay: 1s;
}

@keyframes fadeAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.is-img {
  -webkit-animation: imganima 1.3s forwardss;
  animation: imganima 1.3s forwards;
}

@keyframes imganima {
  0% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

.fadeTrigger, .fadeTriggerUp, .imgTrigger {
  opacity: 0;
}


/* ==========================================================================
              Links
              ========================================================================== */

a {
  background: transparent;
}

a:focus {
  outline: 0;
}

a:active, a:hover {
  outline: 0;
}

.link-btn {
  width: 50px;
  height: 50px;
  background: var(--main);
  display: inline-block;
  border-radius: 50%;
  position: relative;
  margin-left: 20px;
}

.link-btn:before {
  content: "";
  position: absolute;
  top: 55%;
  left: 38%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}


/* ==========================================================================
              Typography
              ========================================================================== */

@font-face {
  font-family: "Cormorant-Bold";
  src: url('../fonts/Cormorant-Bold.ttf') format('truetype'), url('../fonts/Cormorant-Bold.woff') format('woff');
}

@font-face {
  font-family: "Cormorant-Bolditalic";
  src: url('../fonts/Cormorant-Bolditalic.ttf') format('truetype'), url('../fonts/Cormorant-Bolditalic.woff') format('woff');
}

@font-face {
  font-family: "Cormorant-Regular";
  src: url('../fonts/Cormorant-Regular.ttf') format('truetype'), url('../fonts/Cormorant-Regular.woff') format('woff');
}

@font-face {
  font-family: "Palatino";
  src: url('../fonts/Palatino.ttf') format('truetype'), url('../fonts/Palatino.woff') format('woff');
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cormorant-Bolditalic", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 400;
  letter-spacing: 1.8px;
}

address {
  font-style: normal;
}


/* ==========================================================================
             Lists
           ========================================================================== */

dl, ol, ul {
  margin: 0;
}

dd {
  margin: 0;
}

ol, ul {
  padding: 0;
  list-style-type: none;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

ul, li {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}


/* ==========================================================================
             Embedded content
           ========================================================================== */

img:not(.post-contents img) {
  width: 100%;
  border: 0;
  image-rendering: -webkit-optimize-contrast;
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

.image-compare {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

#page__works .image-compare {
  margin: 5rem auto;
  width: 100%;
}

.icv__img-b {
  width: auto!important;
}

.twentytwenty-container img {
    min-height: 100%;
	object-fit:cover;
}


/* ==========================================================================
              Figures
              ========================================================================== */

figure {
  margin: 0;
}


/*********************
           GENERAL STYLES
           *********************/

:root {
  --main: #000;
  --main-r: #ffffff;
  --accent: #000;
  --txt: #000;
  --bg: #F7F7F7;
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --sm: 1.2rem;
  --md: 1.4rem;
  --lg: 1.8rem;
  --x2: 2rem;
  --x25: 2.5rem;
  --x3: 3rem;
  --x35: 3.5rem;
  --x4: 4rem;
  --x5: 5rem;
  --en: "Montserrat", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  --width: 1400;
}

#container, #main {
  background: var(--main);
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-100px, -100px);
  transition: .15s;
  transition-timing-function: ease-out;
  z-index: 998;
  mix-blend-mode: difference;
}

#stalker.is-stalker {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  transition: .15s;
  background: rgba(88, 88, 88, 0.5);
}


/*
   慢性スクロールを行う記載
   #luxyは適用する大枠に設定
   .luxy-elはspanタグに設定
   */

#luxy {
  background: var(--main-r);
}

.luxy-el {
  display: block;
  width: 100%;
  height: 100%;
}


/*********************
           LAYOUT & GRID STYLES
           *********************/

.ib {
  display: inline-block;
}

.m-none {
  margin: 0 !important;
}

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

.l-lr {
  padding-right: 8.33333vw;
  padding-left: 8.33333vw;
}

.l-tb {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

.l-tb-p {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

.l-t {
  margin-top: 15rem;
}

.l-b {
  margin-bottom: 15rem;
}

.l-h {
  line-height: 2;
}

.bg {
  background: var(--bg);
}

.accent-chenge {
  color: var(--accent);
}

.accent-bottom {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
}

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

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

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

.opacity-logo {
  position: relative;
}

.opacity-logo:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/opacity-logo.svg) no-repeat center center / contain;
  z-index: 4;
}

.overlay {
  position: relative;
  display: block;
}

.overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.st-l, .st-l span {
  font-size: 3rem;
}

.st-m, .st-m span {
  font-size: 2rem;
}

.main-headline, .main-headline span {
  font-size: 4rem;
  font-family: var(--en);
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
  align-items: center;
}

.l-flex .flex-l, .l-flex .flex-r {
  width: calc(100% / 2 - 5rem);
}

.l-flex .flex-r .btn-wrap a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bg-main {
  background: var(--main);
  color: var(--main-r);
  padding-top: 20rem;
  padding-bottom: 20rem;
}

.bg-wrap {
  position: relative;
}

.bg-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  text-align: center;
}

.bg-center img, #top_gallery .flex-title img {
  height: 40px;
  width: auto!important;
}

.bg-center img {
  height: 40px;
  margin-bottom: 1rem;
  display: inline-block!important;
}

#top_gallery .flex-title img {
  margin-bottom: 2rem;
}

.bg-center .sec-title, .full-bg-text .sec-title {
  font-size: 3rem;
}

.sec-title {
  font-size: 3.5rem;
  line-height: 1.2;
}

.sec-title span {
  font-size: inherit;
}

.sec-title-jp {
  font-size: 2.2rem;
  font-weight: 700;
}

.flex-title {
  margin-bottom: 3rem;
}

.title-wrap {
  margin-bottom: 5rem;
}

.mb_s {
  margin-bottom: 1rem;
}

.mb_sm {
  margin-bottom: 2rem;
}

.mb_m {
  margin-bottom: 3rem;
}

.mb_mm {
  margin-bottom: 4rem;
}

.mb_l {
  margin-bottom: 5rem;
}

.mt_s {
  margin-top: 1rem;
}

.mt_sm {
  margin-top: 2rem;
}

.mt_m {
  margin-top: 3rem;
}

.mt_mm {
  margin-top: 4rem;
}

.mt_l {
  margin-top: 5rem;
}


/*********************
           LINK STYLES
           *********************/

a, a:visited {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover, a:focus, a:visited:hover, a:visited:focus {
  opacity: 1;
}

a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}


/******************************************************************
           TYPOGRAPHY STYLES
           ******************************************************************/

h1, h2, h3, h4, h5 {
  text-rendering: optimizelegibility;
}

h1 a, h2 a, h3 a, h4 a, h5 a {
  text-decoration: none;
}

h1 {
  font-size: 2.5rem;
  line-height: 1;
}

h2 {
  font-size: 2rem;
  line-height: 1.5;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.5;
}

h4 {
  font-size: 1.6rem;
  line-height: 1.5;
}

h5 {
  font-size: 1.6rem;
  line-height: 1.5;
}

p, a, span, td, th, li, address, dt, dd {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1.8px;
}


/*********************
           HEADER STYLES
           *********************/

.logo-wrap a {
  display: block;
}

.logo-wrap a svg {
  width: 150px;
}

.logo-wrap .logo-g {
  fill: var(--main-r);
}

.logo-wrap .logo-g:not(.home .logo-wrap .logo-g), .is-top .logo-wrap .logo-g {
  fill: var(--main);
}

.logo-wrap p {
  font-size: 1.2rem;
  line-height: 1;
}

#logo {
  margin: 0;
  width: 180px;
  height: auto;
  line-height: 1;
}

#header {
  max-width: 100%;
  width: 100%;
  z-index: 10;
  box-sizing: border-box;
  top: 0;
  background: rgba(255, 255, 255, .9);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: absolute;
}

#header.dnone {
  opacity: 0;
}

#header.dnone.panelactive {
  opacity: 1;
}

#header.dnone #menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  padding: 5rem 10vw;
  gap: 3rem;
}

#header.dnone #menu-nav_inner, #header.dnone .nav__list {
  height: 100%;
}

#header.dnone .nav__list {
  gap: 1rem;
}

#header.dnone .nav__list li {
  width: calc(100% / 5 - 0.8rem);
  height: 100%;
}

#nav_box, #header.dnone #header_sns {
  display: none;
}

#header.dnone #nav_box {
  display: block;
  width: calc(30% - 1.5rem);
}

#header.dnone #nav_inner {
  width: calc(70% - 1.5rem);
}

#header.dnone.panelactive #menu {
  opacity: 1;
  z-index: 99;
  background: var(--main-r);
  box-shadow: 0 0 3px 0px gray;
  pointer-events: auto;
}

#header.dnone.panelactive .nav__list li a, #footer-menu .nav__list li a {
  text-decoration: none;
  padding: 10px;
  letter-spacing: 0.1em;
  transition: initial;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--main-r);
  z-index: 3;
}

#header_r {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.header-sns a {
  display: inline-block;
}

.header-sns a:first-child,
.header-sns a:nth-child(2){
  margin-right: 1rem;
}

.comp-list {
  text-align: left;
  margin: 3rem 0;
  color: var(--main);
}

.comp-list a, .comp-list address {
  position: relative;
  padding-left: 30px;
}

.comp-list img {
  width: 20px!important;
  height: 20px;
  display: inline-block!important;
  margin-right: 10px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 5px;
}

#nav_box_logo {
  width: 10vw;
}

#nav_box .header-sns {
  text-align: left;
}


/*********************
           NAVIGATION STYLES
           *********************/

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.nav__list li a {
  border-bottom: none;
  font-size: 2.2rem;
  color: var(--main);
  position: relative;
  font-family: "Cormorant-Bolditalic", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: 1;
  letter-spacing: 2px;
}

.nav__list li a span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 700;
}

#header.dnone.panelactive .nav__list li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: -1;
}

.toggle {
  display: none;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 999;
  position: fixed;
  top: 3rem;
  left: 3rem;
  mix-blend-mode: difference;
}

.toggle:before {
  content: "MENU";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1;
  text-align: center;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  font-size: 12px;
  letter-spacing: 2px;
}

.toggle.active:before {
  opacity: 0;
}

.toggle span {
  display: block;
  position: absolute;
  width: 50px;
  border-bottom: solid 2px var(--main-r);
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.toggle span:nth-child(1) {
  top: 0px;
}

.toggle span:nth-child(2) {
  top: 10px;
}

.toggle span:nth-child(3) {
  top: 20px;
}

.toggle.active {
  mix-blend-mode: initial;
}

.toggle.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  transform: rotate(-20deg);
  border-bottom: solid 2px var(--main);
}

.toggle.active span:nth-child(2), .toggle.active span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  transform: rotate(20deg);
  border-bottom: solid 2px var(--main);
}

.navani {
  animation-name: navAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  display: block;
}

@keyframes navAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#header.dnone.panelactive .nav-top a {
  background: url(../images/navi_top.jpg) no-repeat center center / cover;
}

#header.dnone.panelactive .nav-services a {
  background: url(../images/navi_services.jpg) no-repeat center center / cover;
}

#header.dnone.panelactive .nav-works a {
  background: url(../images/navi_work.jpg) no-repeat center center / cover;
}

#header.dnone.panelactive .nav-about a {
  background: url(../images/navi_about.jpg) no-repeat center center / cover;
}

#header.dnone.panelactive .nav-contact a {
  background: url(../images/navi_contact.jpg) no-repeat center center / cover;
}


/*********************
           FOOTER STYLES
           *********************/

#breadcrumbs {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#footer-menu {
  padding-top: 10rem;
  padding-bottom: 10rem;
    position: relative;
    z-index: 5;
}

#footer-menu .nav__list {
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

#footer-menu .nav__list li {
  width: calc(100% / 5 - 0.8rem);
}

#footer-menu .nav__list li a {
  aspect-ratio: 4 / 4;
  position: relative;
  z-index: 3;
}

#footer-menu .nav__list li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .4);
  z-index: -1;
}

#footer-menu .nav-top a {
  background: url(../images/footer_top.jpg) no-repeat center center / cover;
}

#footer-menu .nav-services a {
  background: url(../images/footer_services.jpg) no-repeat center center / cover;
}

#footer-menu .nav-works a {
  background: url(../images/footer_work.jpg) no-repeat center center / cover;
}

#footer-menu .nav-about a {
  background: url(../images/footer_about.jpg) no-repeat center center / cover;
}

#footer-menu .nav-contact a {
  background: url(../images/footer_contact.jpg) no-repeat center center / cover;
}

#footer_wrap {
  width: 100vw;
  height: 200px;
  position: relative;
  background: #f7f7f7;
  text-align: center;
}

#footer_wrap h3 {
  position: relative;
  top: 50%;
  transform: translate3d(0, -61%, 0);
  display: inline-block;
  font-size: 7.5rem;
}

.footer {
  position: relative;
}

.pagetop {
  height: 80px;
  width: 80px;
  position: absolute;
  right: 8.33333vw;
  top: -40px;
  background: rgba(255, 255, 255, .8);
  border: solid 2px #98A6B5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #808080;
  border-right: 3px solid #808080;
  transform: translateY(20%) rotate(-45deg);
}

#footer_inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: var(--main-r);
}

#footer_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#footer_logo_wrap {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}

#footer_bottom {
  margin-top: 3rem;
}

#footer_bottom a, #footer_bottom p {
  font-size: 12px;
}

#copyright {
  text-align: center;
  font-size: 12px;
  color: var(--main);
}


/*********************
           POSTS & CONTENT STYLES
           *********************/

.over-l {
  flex: 1;
  margin-left: calc(50% - 50vw);
}

.over-r {
  flex: 1;
  margin-right: calc(50% - 50vw);
}

.over-l img, .over-r img {
  height: 100%;
  object-fit: cover;
}

#page_header {
  height: 100vh;
  position: relative;
}

.page-title {
  font-size: 5rem;
  margin-bottom: 3rem;
}

.page-title-box {
  position: absolute;
  bottom: 0;
  left: 8.33333vw;
  padding: 3rem;
  background: rgba(0, 0, 0, .6);
}

#page__about .page-title-box,
#page__contact .page-title-box,
#page__complete .page-title-box{
    right: 8.33333vw;
	padding:10rem;
	bottom:initial;
	top:30vh;
}

#page__about #page_header,
#page__contact #page_header,
#page__complete #page_header{
    margin-bottom:10vh;
}

#page__services .page-title-box, #page__works .page-title-box {
  width: calc(500 / 1800 * 100vw);
}

.page-title-box p {
  line-height: 2;
}

.note {
  position: absolute;
  bottom: 2rem;
  right: 8.33333vw;
}

.works-box,
.services-box{
	margin:10rem 0;
	padding-bottom:10rem;
	border-bottom:1px solid #ffffff78;
}

.works-box .image-compare{
	max-width: 80%;
}

.works-1 .image-compare{
	max-width: 50%;
}

.works-box:last-child,
.services-box:last-child{
	padding-bottom:0;
	border-bottom:0;	
}

.works-box h2,
.services-box h2{
font-family: "Cormorant-Bold", "游明朝","Yu Mincho",YuMincho,"Hiragino Mincho Pro",serif;
font-size:3rem;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 2rem!important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 2rem!important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 3rem!important;
  color: var(--main)!important;
  font-weight: 700!important;
}

.swiper-pagination-bullet-active {
  background: var(--main)!important;
}

.swiper-pagination-bullet {
  width: 15px!important;
  height: 15px!important;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px!important;
}

.remodal-close {
  width: 50px!important;
  height: 50px!important;
  z-index: 3!important;
}

.remodal-close:before {
  font-size: 50px!important;
  top: 1rem!important;
  left: 1rem!important;
  color: var(--main)!important;
}

.quote-wrap {
  background: url(../images/contact_bg0.jpg) no-repeat left / cover;
  width: 100%;
  height: 100%;
  margin-top: 7rem;
  padding: 5rem;
  justify-content: flex-end;
}

.quote-wrap .flex-l, .quote-wrap .flex-r {
  width: auto;
}

.btn-1{
	text-align:center;
}

.btn-1 button,
.btn-1 a,
.quote-wrap .flex-r a{
  width: 250px;
  background: rgba(255, 0, 10, 0.7);
  text-align: center;
  padding: 2rem 1rem;
  display: inline-block;
	color:var(--main-r);
}

#page_header img {
  height: 101%;
  object-fit: cover;
vertical-align: bottom
}

.main-wrap{
    margin: 30vh 0;
}

.main-inner{
	padding:5rem;
background: rgba(0, 0, 0, .6);
}

#page__about #page_header,
#page__contact #page_header,
#page__complete #page_header{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

#page__about #main,
#page__contact #main,
#page__complete #main{
z-index: 5;
    background: initial;
}

#page__about #footer-menu,
#page__contact #footer-menu,
#page__complete #footer-menu{
    padding-top: 0;
}

#form_comp{
	height:80vh;
	display:flex;
	align-items:center;
	justify-content:center;
}


/* ==========================================================================
              Forms
              ========================================================================== */

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}


/* ==========================================================================
                            Tables
                            ========================================================================== */

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.tablepress caption {
  display: none;
}

.tablepress {
  margin-bottom: 0 !important;
}

.tablepress tr .column-1 {
  width: 30%;
}

.tablepress tr .column-1, .tablepress tr .column-2 {
  padding: 30px 0;
  color: var(--txt);
  font-size: 16px;
}

.tablepress tr:last-child .column-1, .tablepress tr:last-child .column-2 {
  padding-bottom: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/*********************
                         INPUTS
                         *********************/

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
  display: block;
  height: 60px;
  padding: 10px;
  margin-bottom: 2rem;
  font-size: 16px;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 100%;
  background-color: var(--bg);
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
  color: var(--main);
}

input[type="text"]:focus, input[type="text"]:active, input[type="password"]:focus, input[type="password"]:active, input[type="datetime"]:focus, input[type="datetime"]:active, input[type="datetime-local"]:focus, input[type="datetime-local"]:active, input[type="date"]:focus, input[type="date"]:active, input[type="month"]:focus, input[type="month"]:active, input[type="time"]:focus, input[type="time"]:active, input[type="week"]:focus, input[type="week"]:active, input[type="number"]:focus, input[type="number"]:active, input[type="email"]:focus, input[type="email"]:active, input[type="url"]:focus, input[type="url"]:active, input[type="search"]:focus, input[type="search"]:active, input[type="tel"]:focus, input[type="tel"]:active, input[type="color"]:focus, input[type="color"]:active, select:focus, select:active, textarea:focus, textarea:active, .field:focus, .field:active {
  background-color: var(--bg);
}

input[type="text"].error, input[type="text"].is-invalid, input[type="password"].error, input[type="password"].is-invalid, input[type="datetime"].error, input[type="datetime"].is-invalid, input[type="datetime-local"].error, input[type="datetime-local"].is-invalid, input[type="date"].error, input[type="date"].is-invalid, input[type="month"].error, input[type="month"].is-invalid, input[type="time"].error, input[type="time"].is-invalid, input[type="week"].error, input[type="week"].is-invalid, input[type="number"].error, input[type="number"].is-invalid, input[type="email"].error, input[type="email"].is-invalid, input[type="url"].error, input[type="url"].is-invalid, input[type="search"].error, input[type="search"].is-invalid, input[type="tel"].error, input[type="tel"].is-invalid, input[type="color"].error, input[type="color"].is-invalid, select.error, select.is-invalid, textarea.error, textarea.is-invalid, .field.error, .field.is-invalid {
  color: var(--white);
  border-color: var(--white);
  background-color: var(--bg);
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: var(--white);
}

input[type="text"].success, input[type="text"].is-valid, input[type="password"].success, input[type="password"].is-valid, input[type="datetime"].success, input[type="datetime"].is-valid, input[type="datetime-local"].success, input[type="datetime-local"].is-valid, input[type="date"].success, input[type="date"].is-valid, input[type="month"].success, input[type="month"].is-valid, input[type="time"].success, input[type="time"].is-valid, input[type="week"].success, input[type="week"].is-valid, input[type="number"].success, input[type="number"].is-valid, input[type="email"].success, input[type="email"].is-valid, input[type="url"].success, input[type="url"].is-valid, input[type="search"].success, input[type="search"].is-valid, input[type="tel"].success, input[type="tel"].is-valid, input[type="color"].success, input[type="color"].is-valid, select.success, select.is-valid, textarea.success, textarea.is-valid, .field.success, .field.is-valid {
  color: var(--white);
  border-color: var(--white);
  background-color: var(--bg);
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: var(--white);
}

input[type="text"][disabled], input[type="text"].is-disabled, input[type="password"][disabled], input[type="password"].is-disabled, input[type="datetime"][disabled], input[type="datetime"].is-disabled, input[type="datetime-local"][disabled], input[type="datetime-local"].is-disabled, input[type="date"][disabled], input[type="date"].is-disabled, input[type="month"][disabled], input[type="month"].is-disabled, input[type="time"][disabled], input[type="time"].is-disabled, input[type="week"][disabled], input[type="week"].is-disabled, input[type="number"][disabled], input[type="number"].is-disabled, input[type="email"][disabled], input[type="email"].is-disabled, input[type="url"][disabled], input[type="url"].is-disabled, input[type="search"][disabled], input[type="search"].is-disabled, input[type="tel"][disabled], input[type="tel"].is-disabled, input[type="color"][disabled], input[type="color"].is-disabled, select[disabled], select.is-disabled, textarea[disabled], textarea.is-disabled, .field[disabled], .field.is-disabled {
  cursor: not-allowed;
  border-color: var(--white);
  opacity: 0.6;
}

input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active, input[type="password"][disabled]:focus, input[type="password"][disabled]:active, input[type="password"].is-disabled:focus, input[type="password"].is-disabled:active, input[type="datetime"][disabled]:focus, input[type="datetime"][disabled]:active, input[type="datetime"].is-disabled:focus, input[type="datetime"].is-disabled:active, input[type="datetime-local"][disabled]:focus, input[type="datetime-local"][disabled]:active, input[type="datetime-local"].is-disabled:focus, input[type="datetime-local"].is-disabled:active, input[type="date"][disabled]:focus, input[type="date"][disabled]:active, input[type="date"].is-disabled:focus, input[type="date"].is-disabled:active, input[type="month"][disabled]:focus, input[type="month"][disabled]:active, input[type="month"].is-disabled:focus, input[type="month"].is-disabled:active, input[type="time"][disabled]:focus, input[type="time"][disabled]:active, input[type="time"].is-disabled:focus, input[type="time"].is-disabled:active, input[type="week"][disabled]:focus, input[type="week"][disabled]:active, input[type="week"].is-disabled:focus, input[type="week"].is-disabled:active, input[type="number"][disabled]:focus, input[type="number"][disabled]:active, input[type="number"].is-disabled:focus, input[type="number"].is-disabled:active, input[type="email"][disabled]:focus, input[type="email"][disabled]:active, input[type="email"].is-disabled:focus, input[type="email"].is-disabled:active, input[type="url"][disabled]:focus, input[type="url"][disabled]:active, input[type="url"].is-disabled:focus, input[type="url"].is-disabled:active, input[type="search"][disabled]:focus, input[type="search"][disabled]:active, input[type="search"].is-disabled:focus, input[type="search"].is-disabled:active, input[type="tel"][disabled]:focus, input[type="tel"][disabled]:active, input[type="tel"].is-disabled:focus, input[type="tel"].is-disabled:active, input[type="color"][disabled]:focus, input[type="color"][disabled]:active, input[type="color"].is-disabled:focus, input[type="color"].is-disabled:active, select[disabled]:focus, select[disabled]:active, select.is-disabled:focus, select.is-disabled:active, textarea[disabled]:focus, textarea[disabled]:active, textarea.is-disabled:focus, textarea.is-disabled:active, .field[disabled]:focus, .field[disabled]:active, .field.is-disabled:focus, .field.is-disabled:active {
  background-color: var(--bg);
}

input[type="password"] {
  letter-spacing: 0.3em;
}

input[type="radio"] {
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #D5D6D8;
  vertical-align: -7px;
  outline: none;
  margin-right: 5px;
}

input[type="radio"]:checked::before {
  transform: translate(3px, 3px) scale(1);
}

input[type="radio"]::before {
  display: block;
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: var(--accent);
  transform: translate(3px, 3px) scale(0);
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.25, 0.25, 0.56, 2);
}

textarea {
  max-width: 100%;
  min-height: 200px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

.wpcf7-list-item-label, .wpcf7-list-item-label a {
  font-size: 16px;
}

.wpcf7-radio {
  display: block;
  margin-top: 30px;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 0 0 10px 0;
}

.wpcf7-radio .wpcf7-list-item:last-child {
  margin: 0;
}

form tr th {
  margin-top: 2rem;
}

.wpcf7-form tr {
  vertical-align: text-top;
}

@media screen and (max-width:1600px) {
  #page__services .page-title-box, #page__works .page-title-box {
    width: calc(500 / 1600 * 100vw);
  }
}

@media screen and (max-width:1400px) {
  #nav_box_logo {
    width: 8vw;
  }
  #header.dnone #menu {
    padding: 5rem 5rem 5rem 10vw;
  }
  .sec-title {
    font-size: 3rem;
  }
  .l-flex {
    gap: 5rem;
  }
  .l-flex .flex-l, .l-flex .flex-r {
    width: calc(100% / 2 - 2.5rem);
  }
  .quote-wrap .flex-l, .quote-wrap .flex-r {
    width: auto;
  }
  .bg-center .sec-title, .full-bg-text .sec-title {
    font-size: 2.5rem;
  }
  #page__services .page-title-box, #page__works .page-title-box {
    width: calc(500 / 1400 * 100vw);
  }
  .page-title-box p {
    line-height: 1.5;
  }
#page__about .page-title-box,
#page__contact .page-title-box{
	padding:5rem;
}
}

@media screen and (max-width:1200px) {
  .l-lr {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  #logo_wrap {
    width: 180px;
  }
  #header {
    padding-right: 5vw;
    padding-left: 5vw
  }
  #header.dnone #menu {
    padding: 10rem 5rem 5rem 5rem;
  }
  #header.dnone #nav_box {
    width: calc(35% - 1.5rem);
  }
  #header.dnone #nav_inner {
    width: calc(65% - 1.5rem);
  }
  .l-h {
    line-height: 1.5;
  }
  .quote-wrap {
    padding: 3rem;
  }
  .quote-wrap .flex-l {
    width: calc(100% - 250px - 5rem);
  }
  #page__services .page-title-box, #page__works .page-title-box {
    width: calc(500 / 1200 * 100vw);
  }
  .note {
    right: 5vw;
  }
.page-title-box{
    left: 5vw;	
	}
  .page-title-box p {
    line-height: 1.3;
  }
#page__about .page-title-box,
#page__contact .page-title-box{
    right: 5vw;
}
}

@media screen and (max-width:960px) {
  /*********************
           GENERAL STYLES
           *********************/
   :root {
    --width: 540;
  }
  .pc-hide {
    display: block !important;
  }
  .bg-main {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  #cursor, #stalker {
    display: none;
  }
  .l-flex {
    gap: 3rem;
  }
  .l-flex .flex-l, .l-flex .flex-r {
    width: calc(100% / 2 - 1.5rem);
  }
  p, a, span, td, th, li, address, dt, dd {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
  .page-title {
    font-size: 4rem;
  }
  .sec-title {
    font-size: 2.5rem;
  }
  .sec-title-jp {
    font-size: 2rem;
  }
  .bg-center img {
    height: 35px;
  }
  /*********************
        NAVIGATION STYLES
        *********************/
  .toggle {
    display: block;
    animation: initial;
    opacity: 1;
    top: 25px;
    left: initial;
    right: 5vw;
  }
  #logo_wrap {
    width: 210px;
  }
  #header {
    justify-content: flex-start;
    gap: 3rem;
  }
  #menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
    padding: 5rem 10vw;
    gap: 3rem;
  }
  .panelactive #menu {
    height: 100%;
  }
  #header.dnone.panelactive #menu, #header.panelactive #menu {
    opacity: 1;
    z-index: 99;
    background: var(--main-r);
    box-shadow: 0 0 3px 0px gray;
    pointer-events: auto;
  }
  #header #menu, #header.dnone #menu {
    padding: 10rem 5rem 5rem 5rem;
  }
  #header #nav_box {
    width: calc(35% - 1.5rem);
    display: block;
  }
  #header.panelactive .nav__list li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: -1;
  }
  #header #nav_inner {
    width: calc(65% - 1.5rem);
  }
  #header.panelactive .nav__list li a {
    text-decoration: none;
    padding: 10px;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--main-r);
    z-index: 3;
  }
  #header.panelactive .nav-top a {
    background: url(../images/navi_top.jpg) no-repeat center center / cover;
  }
  #header.panelactive .nav-services a {
    background: url(../images/navi_services.jpg) no-repeat center center / cover;
  }
  #header.panelactive .nav-works a {
    background: url(../images/navi_work.jpg) no-repeat center center / cover;
  }
  #header.panelactive .nav-about a {
    background: url(../images/navi_about.jpg) no-repeat center center / cover;
  }
  #header.panelactive .nav-contact a {
    background: url(../images/navi_contact.jpg) no-repeat center center / cover;
  }
  .nav__list li a {
    transition: initial!important;
  }
  #header #nav_inner, #header.dnone #nav_inner {
    width: calc(65% - 1.5rem);
  }
  #header.panelactive #menu, #header.dnone.panelactive #menu {
    height: 100%;
  }
  #nav_box_logo {
    width: 150px;
  }
  #header #menu-nav_inner, #header .nav__list, #header.dnone #menu-nav_inner, #header.dnone .nav__list {
    display: block;
  }
  #header .nav__list li, #header.dnone .nav__list li {
    width: 100%;
    height: 15vh;
  }
  .header-sns a {
    width: 30px;
  }
  /*********************
           FOOTER STYLES
           *********************/
  .quote-wrap .flex-l {
    width: calc(100% - 250px - 3rem);
  }
  .quote-wrap .flex-l, .quote-wrap .flex-r {
    width: auto;
  }
  #footer_inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  /*********************
           LAYOUT & GRID STYLES
           *********************/
  .l-lr {
    padding-right: 5rem;
    padding-left: 5rem;
  }
  .l-tb {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
  .l-t {
    margin-top: 10rem;
  }
  .l-b {
    margin-bottom: 10rem;
  }
  .l-tb-p {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .bg-center img, #top_gallery .flex-title img {
    height: 30px;
  }
  .remodal {
    max-width: 90%!important;
  }
  .remodal .slide-media {
    height: 40vh;
  }
  #page_header {
    height: 80vh;
  }
  #page__services .page-title-box, #page__works .page-title-box {
    width: calc(100% - 10vw);
  }
#page__about #page_header,
#page__contact #page_header{
    margin-bottom:10vh;
}
#page__about .page-title-box,
#page__contact .page-title-box{
    padding: 5rem;
	top:20rem;
}
}

@media screen and (max-width:820px) {
  #header #nav_box {
    width: calc(40% - 1.5rem);
  }
  #header #nav_inner, #header.dnone #nav_inner {
    width: calc(60% - 1.5rem);
  }
  .sec-title {
    font-size: 2rem;
  }
  p, a, span, td, th, li, address, dt, dd {
    font-size: 1.4rem;
  }
  .sec-title-jp {
    font-size: 1.8rem;
  }
  #window_img, #modernspace_grid {
    margin-top: -10rem;
  }
  .bg-center .sec-title, .full-bg-text .sec-title {
    font-size: 2rem;
  }
  .quote-wrap {
    justify-content: center;
  }
  .bg-center img, #top_gallery .flex-title img {
    height: 25px;
  }
  #footer_logo_wrap {
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  #footer_content .header-sns {
    margin: 0 auto;
  }
  .comp-list img {
    top: 0px;
  }
  .comp-list a {
    margin-bottom: 7px;
    display: inline-block;
  }
#page__services .page-title-box,  #page__works .page-title-box {
    bottom: 8rem;
  }
.page-title-box{
    width: calc(100% - 10rem);
    left: 50%;
    transform: translateX(-50%);	
	}
  #page_header {
    height: 70vh;
  }
  #footer-menu {
    padding-right: 0;
    padding-left: 0;
  }
  .footer-item {
    width: 100%;
  }
  .nav__list li a span {
    font-size: 12px;
  }
  .remodal .slide-media {
    height: 30vh;
  }
.works-box .image-compare,
.works-1 .image-compare{
	max-width: 100%;
}
}

@media screen and (max-width:767px) {
  /*********************
           GENERAL STYLES
           *********************/
  html {
    scroll-padding-top: 90px;
  }
  .mbr {
    display: inline-block;
  }
  .sp-hide {
    display: none;
  }
  .pc-hide {
    display: block !important;
  }
  .l-lr {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .l-tb {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
  .l-t {
    margin-top: 7rem;
  }
  .l-b {
    margin-bottom: 7rem;
  }
  .l-tb-p {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  .l-flex {
    gap: 3rem;
  }
  .sp-hide {
    display: none;
  }
  .bg-center .sec-title, .full-bg-text .sec-title {
    font-size: 1.6rem;
  }
  .flex-title {
    margin-bottom: 2rem;
  }
  .sec-title-jp {
    font-size: 1.5rem;
  }
  .c-loader-bg video {
    object-fit: contain;
  }
.twentytwenty-container img {
    min-height: initial;
	object-fit:cover;
}
  /*********************
           HEADER STYLES
           *********************/
  .menu-item a {
    font-size: var(--md);
  }
  .header-sns a {
    width: 25px;
  }
  #header {
    height: 60px;
  }
#page__services .page-title-box, #page__works .page-title-box {
    bottom: initial;
    top: 20rem;
}
  #logo_wrap {
    width: 150px;
  }
  .toggle {
    width: 40px;
    height: 30px;
    top: 15px;
  }
  .toggle span {
    width: 40px;
    border-bottom: solid 1px var(--main-r);
  }
  .toggle:before {
    font-size: 12px;
    letter-spacing: 1.6px;
    font-family: "Cormorant-Regular", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  }
  .toggle span:nth-child(2) {
    top: 7px;
  }
  .toggle span:nth-child(3) {
    top: 14px;
  }
  .header-sns a:first-child, .header-sns a:nth-child(2){
    margin-right: 5px;
  }
  .toggle.active span:nth-child(1), .toggle.active span:nth-child(2), .toggle.active span:nth-child(3) {
    border-bottom: solid 1px var(--main);
  }
  #header #menu, #header.dnone #menu {
    padding: 5rem 2rem 2rem 2rem;
  }
  #nav_box_logo {
    width: 80px;
  }
  #header #nav_box, #header.dnone #nav_box, #header #nav_inner, #header.dnone #nav_inner {
    width: 100%;
  }
  #header #nav_box, #header.dnone #nav_box {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  #header .nav__list li, #header.dnone .nav__list li {
    height: 12vh;
  }
  #header.panelactive #menu, #header.dnone.panelactive #menu {
    display: block;
  }
  .nav-company {
    width: calc(100% - 2rem - 80px);
  }
  #header .comp-list {
    margin: 0 0 1rem 0;
  }
  /*********************
           POSTS & CONTENT STYLES
           *********************/
  .skip {
    top: 1rem;
    bottom: initial;
    font-size: 14px;
  }
  .page-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
.page-title-box{
    padding: 2rem;
    width: calc(100% - 4rem);
	}
  .page-title-box p {
    line-height: 1.5;
  }
  #page_header {
    height: 70vh;
  }
  .wpcf7-list-item-label, .wpcf7-list-item-label a {
    font-size: 13px;
  }
  input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
    height: 60px;
    padding: 10px;
  }
  /*********************
           FOOTER STYLES
           *********************/
  #footer-menu .nav__list {
    gap: 0;
  }
  #footer-menu .nav__list li, .footer-item {
    width: 50%;
  }
  #footer-menu .nav-contact {
    width: 100%!important;
  }
  #footer-menu .nav__list li:last-child a {
    aspect-ratio: 4 / 2;
  }
  #footer-menu {
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-item {
    width: 100%;
  }
  #footer_logo {
    width: 150px;
  }
  #footer_logo_wrap {
    gap: 0;
    margin: 0;
  }
  .comp-list {
    margin: 2rem 0;
  }
  .pagetop {
    right: 2rem;
    z-index: 3;
    top: 2rem;
    height: 50px;
    width: 50px;
  }
  #footer_bottom a, #copyright {
    font-size: 12px;
  }
  /*********************
           LAYOUT & GRID STYLES
           *********************/
  .l-flex .flex-l, .l-flex .flex-r {
    width: 100% !important;
  }
  .bg-center img, #top_gallery .flex-title img {
    height: 20px;
    margin-bottom: 10px;
  }
.btn-1 button,
.btn-1 a,
.quote-wrap .flex-r a {
    width: 100%;
    padding: 1rem;
  }
  .quote-wrap {
    padding: 2rem;
  }
  .quote-wrap.l-flex {
    gap: 2rem;
    margin-top: 3rem;
  }
.works-box h2,
.services-box h2{
    font-size: 2rem;
}
.works-box,
.services-box{
    margin: 5rem 0;
    padding-bottom: 5rem;
}
#page__services .page-title-box, #page__works .page-title-box {
    width: calc(100% - 4rem);
}
#page__about .page-title-box,
#page__contact .page-title-box,
#page__complete .page-title-box{
	top:20rem;
padding: 2rem;
}
#page__about #page_header,
#page__contact #page_header,
#page__complete #page_header{
    height: 70vh;
    margin-bottom:45rem;
}
.main-inner {
    padding: 2rem;
}
.main-wrap {
    margin: 20vh 0 10vh 0;
}
.swiper-pagination-bullet {
    width: 10px!important;
    height: 10px!important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0rem!important;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0rem!important;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2rem!important;
}
#page__works .quote-wrap.l-flex,
#page__services .quote-wrap.l-flex{
    margin-bottom:5rem;
}
}

@media screen and (max-height: 900px) {
#page__about .page-title-box,
#page__contact .page-title-box,
#page__complete .page-title-box{
	top:20rem;
}
#page__about #page_header,
#page__contact #page_header,
#page__complete #page_header{
	height: 80vh;
    margin-bottom:55rem;
}
.c-loader-bg video {
    object-fit: contain;
}
}

@media screen and (max-height: 850px) {
  #page_header {
    height: 80vh;
  }
}

@media screen and (max-height: 767px) {
  #page_header {
    height: 100vh;
  }
#page__about #page_header,
#page__contact #page_header,
#page__complete #page_header{
    height: 100vh;
	margin-bottom:55rem;
  }
#page__about .page-title-box,
#page__contact .page-title-box,
#page__complete .page-title-box{
	top:20rem;
}
}

@media screen and (min-width: 768px) {
  .pc-hide {
    display: none;
  }
}