@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap");
.mb-6 {
  margin-bottom: 4rem;
}

.mb-7 {
  margin-bottom: 5rem;
}

.block-margin {
  margin-bottom: 100px;
}
@media (max-width: 480px) {
  .block-margin {
    margin-bottom: 13vw;
  }
}

hr.hr-bold {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  border: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
hr.hr-bold.hr-white {
  border-top: 2px solid #fff;
}

.note {
  border: 3px solid rgba(0, 0, 0, 0.25);
  padding: 2rem;
}
@media (max-width: 480px) {
  .note {
    padding: 1rem;
  }
}

.line-height-lg {
  line-height: 1.9;
}

.line-height-xl {
  line-height: 2.1;
}

.font-size-text {
  font-size: calc(0.8125rem + (1vw - 3.2px) * 0.3571); /* 13px */
}
@media (min-width: 1160px) {
  .font-size-text {
    font-size: 16px;
  }
}

.font-size-md {
  font-size: calc(0.875rem + (1vw - 3.2px) * 0.4762); /* 14px */
}
@media (min-width: 1160px) {
  .font-size-md {
    font-size: 18px;
  }
}

.text-link {
  color: #b19b4d;
}

.text-notice {
  color: #990000;
}

.list-ind {
  padding-left: 1em;
  text-indent: -1em;
}

.required::after {
  display: block;
  content: "必須";
  color: #fff;
  background: #dc3545;
  width: 3em;
  text-align: center;
  margin-top: 4px;
  font-size: 12px;
  float: right;
}

.btn-project {
  color: #fff;
  background-color: #333;
  border-color: #333;
  font-size: 0.875rem;
}
.btn-project:hover {
  color: #333;
  background-color: #fff;
  border-color: #333;
}
.btn-project:focus, .btn-project.focus {
  color: #fff;
  background-color: #333;
  border-color: #333;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 48, 0.5);
}

.btn-project-inverse {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  font-size: 0.875rem;
}
.btn-project-inverse:hover {
  color: #333;
  background-color: #fff;
  border-color: #fff;
}
.btn-project-inverse:focus, .btn-project-inverse.focus {
  color: #333;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.img-filter {
  transition: 0.5s;
}
.img-filter:hover {
  opacity: 0.5;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* html {
	position: relative;
	min-height: 100%;
} */
body {
  background: #fff;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
a {
  color: #b19b4d;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #786934;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #b19b4d;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}
.back-to-top i {
  padding-top: 12px;
  color: #fff;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #4bbebf;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 12px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}
#header.header-scrolled, #header.header-pages {
  background-color: #fff;
}
#header.header-scrolled #topbar, #header.header-pages #topbar {
  display: none;
}
#header .logo {
  width: 109px;
}
#header .logo img {
  padding: 0;
}

@media (max-width: 991px) {
  #header {
    height: 63px;
    padding: 5px 0;
  }
  .logo {
    width: 22vw;
    max-width: 85px;
  }
  .logo img {
    padding: 0;
  }
}
.main-pages {
  padding-top: 95px;
}
@media (max-width: 991px) {
  .main-pages {
    padding-top: 65px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.container-xxl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .container-xxl {
    max-width: 1280px;
  }
}

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}
.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav > ul {
  width: 83vw;
  max-width: 1100px;
  display: flex;
  align-items: center;
  height: 70px;
}
.main-nav > ul > li {
  width: 13.3vw;
  max-width: 163px;
  border-right: 1px dotted #7f7f7f;
}
.main-nav > ul > li:last-of-type {
  border-right: none;
}
.main-nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 70px;
  color: #000;
  transition: 0.3s;
  font-size: 1.125em;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  font-weight: 600;
}
@media (min-width: 769px) {
  .main-nav > ul > li > a {
    font-size: calc(0.875rem + (1vw - 7.69px) * 0.9281);
  }
}
@media (min-width: 1201px) {
  .main-nav > ul > li > a {
    font-size: 18px;
  }
}
.main-nav > ul > li > a:hover {
  color: #b19b4d;
}
.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}
.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #065e77;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color: #4bbebf;
}
.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

body.tab-philosophy .main-nav a.nav-philosophy,
body.tab-works .main-nav a.nav-works,
body.tab-information .main-nav a.nav-information,
body.tab-workflow .main-nav a.nav-workflow,
body.tab-cmpm .main-nav a.nav-cmpm,
body.tab-contact .main-nav a.nav-contact {
  color: #b19b4d;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(34, 34, 34, 0.8);
  transition: 0.4s;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}
.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: black;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(34, 34, 34, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

footer {
  width: 100%;
  background: #333;
  padding: 1em 0;
}
footer .footer-logo {
  width: 7vw;
  max-width: 31px;
  margin: 0 auto 1.5em;
}
footer .footer-nav {
  width: 95vw;
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-nav ul li {
  color: #fff;
}
footer .footer-nav ul li::after {
  display: inline-block;
  content: "／";
  margin: 0 1em;
}
footer .footer-nav ul li:last-of-type::after {
  content: none;
}
footer .footer-nav ul li a {
  color: #fff;
  font-size: 0.9em;
}
footer .footer-nav ul li a:hover, footer .footer-nav ul li a:active {
  color: #b19b4d;
}
footer p > small {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.15rem;
}

@media (max-width: 768px) {
  footer .footer-nav ul li {
    width: 50%;
  }
  footer .footer-nav ul li::after {
    content: none;
  }
  footer .footer-nav ul li::before {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    display: inline-block;
    margin-right: 0.5em;
  }
  footer .footer-nav ul::after {
    content: "";
    display: block;
    width: 50%;
  }
}
@media (max-width: 375px) {
  footer {
    font-size: 4.16vw;
  }
}
#map {
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}
#map .map-view {
  position: relative;
  height: 0;
  padding-bottom: 37.5%;
  overflow: hidden;
}
@media (max-width: 960px) {
  #map .map-view {
    padding-bottom: 75%;
  }
}
@media (max-width: 600px) {
  #map .map-view {
    padding-bottom: 100%;
  }
}
#map .map-view > iframe, #map .map-view > object, #map .map-view > embed {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#map .map-view iframe,
#map .map-view object,
#map .map-view embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
#map .map-view iframe:hover,
#map .map-view object:hover,
#map .map-view embed:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
}

#company-information {
  font-size: 0.875rem;
}
#company-information #logo-image {
  width: 40vw;
  max-width: 222px;
}
#company-information > .container {
  max-width: 1058px;
  margin: 0 auto;
}
#company-information .company-addr {
  padding-top: 2em;
}

@media (max-width: 1120px) {
  #company-information ul.list-ind {
    padding-top: 1em;
  }
}
dl.contact-method {
  text-align: center;
  margin-bottom: 0;
}
dl.contact-method dt {
  font-weight: 400;
  margin-bottom: 0.5em;
}
dl.contact-method dd.phone-number {
  width: 60vw;
  max-width: 291px;
}
dl.contact-method dd.mail-form {
  width: 60vw;
  max-width: 260px;
}

@media (min-width: 1120px) {
  dl.contact-method {
    display: flex;
    align-items: center;
  }
  dl.contact-method dt {
    margin-right: 1.5em;
  }
}
/* Scss Document */
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}
html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
}

@media all and (-ms-high-contrast: none) {
  html, body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media all and (-ms-high-contrast: active) {
  html, body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
#breadcrumbs ol.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
}
@media (min-width: 320px) {
  #breadcrumbs ol.breadcrumb {
    font-size: calc(0.75rem + (1vw - 3.2px) * 0.4762);
  }
}
@media (min-width: 1160px) {
  #breadcrumbs ol.breadcrumb {
    font-size: 16px;
  }
}
#breadcrumbs ol.breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

.content-width {
  width: 94vw;
  margin: 0 auto;
}
@media (min-width: 1230px) {
  .content-width {
    width: 1160px;
  }
}

.lead-sentence {
  text-align: center;
  line-height: 1.9;
  font-size: calc(0.875rem + (1vw - 3.2px) * 0.7143);
}
@media (min-width: 1160px) {
  .lead-sentence {
    font-size: 20px;
  }
}

.header-title {
  background: #000;
  color: #fff;
  text-align: center;
  margin-bottom: 2em;
  padding: 0.5em 0;
  letter-spacing: 0.1em;
  font-size: calc(1rem + (1vw - 3.75px) * 1.0191);
}
@media (min-width: 1160px) {
  .header-title {
    margin-bottom: 55px;
  }
}
@media (min-width: 1160px) {
  .header-title {
    font-size: 24px;
  }
}

.content-title {
  position: relative;
  width: 100%;
}
.content-title .content-title-inner {
  width: 100%;
  height: 0;
  padding-bottom: 60.43%;
  background: url(../img/works/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
.content-title .content-title-inner .title-wrapper {
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  position: absolute;
  top: calc(50% + 32px);
  left: 50%;
  width: 40vw;
  height: 40vw;
  max-width: 300px;
  max-height: 300px;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-title .content-title-inner .title-wrapper h2 {
  font-size: calc(1.0625rem + (1vw - 3.75px) * 1.6561);
  letter-spacing: 0.1rem;
  color: #fff;
  margin-bottom: 0.5em;
}
@media (min-width: 1160px) {
  .content-title .content-title-inner .title-wrapper h2 {
    font-size: 30px;
  }
}
.content-title .content-title-inner .title-wrapper h2 span {
  display: block;
  color: #b19b4d;
  font-size: calc(0.75rem + (1vw - 3.2px) * 0.9524);
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 1160px) {
  .content-title .content-title-inner .title-wrapper h2 span {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .content-title .content-title-inner {
    padding-bottom: 36.51%;
    background: url(../img/works/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}
body.tab-works .content-title > .content-title-inner {
  background: url(../img/works/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works .content-title > .content-title-inner {
    background: url(../img/works/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-works-hotel .content-title > .content-title-inner {
  background: url(../img/works/ctg-hotel/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-works-hotel .content-title > .content-title-inner {
    background: url(../img/works/ctg-hotel/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-hotel01 .content-title > .content-title-inner {
  background: url(../img/works/ctg-hotel/01/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-hotel01 .content-title > .content-title-inner {
    background: url(../img/works/ctg-hotel/01/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-hotel02 .content-title > .content-title-inner {
  background: url(../img/works/ctg-hotel/02/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-hotel02 .content-title > .content-title-inner {
    background: url(../img/works/ctg-hotel/02/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-hotel03 .content-title > .content-title-inner {
  background: url(../img/works/ctg-hotel/03/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-hotel03 .content-title > .content-title-inner {
    background: url(../img/works/ctg-hotel/03/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-hotel04 .content-title > .content-title-inner {
  background: url(../img/works/ctg-hotel/04/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-hotel04 .content-title > .content-title-inner {
    background: url(../img/works/ctg-hotel/04/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-hotel05 .content-title > .content-title-inner {
  background: url(../img/works/ctg-hotel/05/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-hotel05 .content-title > .content-title-inner {
    background: url(../img/works/ctg-hotel/05/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-hotel06 .content-title > .content-title-inner {
  background: url(../img/works/ctg-hotel/06/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-hotel06 .content-title > .content-title-inner {
    background: url(../img/works/ctg-hotel/06/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-works-flat .content-title > .content-title-inner {
  background: url(../img/works/ctg-flat/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-works-flat .content-title > .content-title-inner {
    background: url(../img/works/ctg-flat/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-flat01 .content-title > .content-title-inner {
  background: url(../img/works/ctg-flat/01/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-flat01 .content-title > .content-title-inner {
    background: url(../img/works/ctg-flat/01/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-works-house .content-title > .content-title-inner {
  background: url(../img/works/ctg-house/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-works-house .content-title > .content-title-inner {
    background: url(../img/works/ctg-house/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-works-store .content-title > .content-title-inner {
  background: url(../img/works/ctg-store/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-works-store .content-title > .content-title-inner {
    background: url(../img/works/ctg-store/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-store01 .content-title > .content-title-inner {
  background: url(../img/works/ctg-store/01/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-store01 .content-title > .content-title-inner {
    background: url(../img/works/ctg-store/01/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-store02 .content-title > .content-title-inner {
  background: url(../img/works/ctg-store/02/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-store02 .content-title > .content-title-inner {
    background: url(../img/works/ctg-store/02/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-store03 .content-title > .content-title-inner {
  background: url(../img/works/ctg-store/03/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-store03 .content-title > .content-title-inner {
    background: url(../img/works/ctg-store/03/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-store04 .content-title > .content-title-inner {
  background: url(../img/works/ctg-store/04/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-store04 .content-title > .content-title-inner {
    background: url(../img/works/ctg-store/04/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-store05 .content-title > .content-title-inner {
  background: url(../img/works/ctg-store/05/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-store05 .content-title > .content-title-inner {
    background: url(../img/works/ctg-store/05/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-store06 .content-title > .content-title-inner {
  background: url(../img/works/ctg-store/06/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-store06 .content-title > .content-title-inner {
    background: url(../img/works/ctg-store/06/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-works-other .content-title > .content-title-inner {
  background: url(../img/works/ctg-other/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-works-other .content-title > .content-title-inner {
    background: url(../img/works/ctg-other/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-other01 .content-title > .content-title-inner {
  background: url(../img/works/ctg-other/01/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-other01 .content-title > .content-title-inner {
    background: url(../img/works/ctg-other/01/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-other02 .content-title > .content-title-inner {
  background: url(../img/works/ctg-other/02/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-other02 .content-title > .content-title-inner {
    background: url(../img/works/ctg-other/02/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-works.tab-other03 .content-title > .content-title-inner {
  background: url(../img/works/ctg-other/03/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-works.tab-other03 .content-title > .content-title-inner {
    background: url(../img/works/ctg-other/03/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-philosophy .content-title > .content-title-inner {
  background: url(../img/philosophy/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-philosophy .content-title > .content-title-inner {
    background: url(../img/philosophy/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-information .content-title > .content-title-inner {
  background: url(../img/information/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-information .content-title > .content-title-inner {
    background: url(../img/information/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-workflow .content-title > .content-title-inner {
  background: url(../img/workflow/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-workflow .content-title > .content-title-inner {
    background: url(../img/workflow/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-cmpm .content-title > .content-title-inner {
  background: url(../img/cmpm/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-cmpm .content-title > .content-title-inner {
    background: url(../img/cmpm/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-policy .content-title > .content-title-inner {
  background: url(../img/policy/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-policy .content-title > .content-title-inner {
    background: url(../img/policy/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-contact .content-title > .content-title-inner {
  background: url(../img/contact/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-contact .content-title > .content-title-inner {
    background: url(../img/contact/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}

body.tab-realestate .content-title > .content-title-inner {
  background: url(../img/realestate/bg-content-title_pc.jpg) center center no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  body.tab-realestate .content-title > .content-title-inner {
    background: url(../img/realestate/bg-content-title.jpg) center center no-repeat;
    background-size: cover;
  }
}/*# sourceMappingURL=style.css.map */