@charset "UTF-8";
/* google font */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* ----------------------------------------------------
変数
-----------------------------------------------------*/
:root {
  --color-text: #333333;
  --color-green: #00953d;
  --color-pale-green: #9abe89;
  --color-dark-green: #18664b;
  --color-pale-gray: #f5f4f4;
  --color-light-gray: #f0f0f0;
  --color-gray: #adadad;
  --color-dark-gray: #646464;
  --color-yellow: #f2b95f;
  --font-base: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Jost", sans-serif;
  --font-enja: "Jost", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ----------------------------------------------------
base設定
-----------------------------------------------------*/
html {
  font-size: 62.5%;
  height: 100%;
  overflow-y: scroll;
  width: 100%;
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-base);
}

body {
  background: #fff;
  color: #252525;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  width: 100%;
  min-width: 320px;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: normal;
}

.hide {
  opacity: 0;
  visibility: hidden;
}

.show {
  opacity: 1;
  visibility: visible;
}

.close {
  opacity: 1;
  visibility: visible;
  background-color: #ffffff;
}

.obl {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: min(2vw, 5px);
       column-gap: min(2vw, 5px);
}
.obl::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("/common/images/ic_obl.svg") no-repeat;
  background-size: contain;
}

/* ----------------------------------------------------
ヘッダー
-----------------------------------------------------*/
.header {
  transition: all 0.3s ease;
  z-index: 900;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
#top .header.topshow {
  background-color: transparent;
}
.header.show {
  background-color: #ffffff;
}
.header.mouse-enter {
  background-color: #ffffff !important;
}
@media screen and (max-width: 1100px) {
  .header.open {
    background-color: #ffffff !important;
  }
}
.header__container {
  margin-left: min(3vw, 30px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.header__logo {
  padding-right: min(10vw, 40px);
}
@media screen and (max-width: 639px) {
  .header__logo {
    max-width: 35vw;
  }
}
.header__nav {
  display: grid !important;
  grid-template-columns: auto auto 1fr;
  align-items: end;
}
@media screen and (max-width: 1100px) {
  .header__nav {
    grid-template-columns: 1fr auto auto auto;
  }
}
@media screen and (max-width: 639px) {
  .header__nav {
    grid-template-columns: 1fr auto;
  }
}
.header__nav--insta {
  display: grid;
  justify-items: center;
  color: #6E6E6E;
  font-weight: 700;
  margin-inline: min(5vw, 20px);
  padding-bottom: min(1vw, 10px);
  transition: all 0.3s ease;
}
.header__nav--insta:hover {
  filter: brightness(1.75);
}
@media screen and (max-width: 639px) {
  .header__nav--insta {
    display: none;
  }
}
.header__nav--insta i {
  font-size: 2.2rem;
}
.header__nav--en {
  display: grid;
  justify-items: center;
  color: #6E6E6E;
  font-weight: 700;
  margin-inline: min(5vw, 20px);
  padding-bottom: min(1vw, 10px);
  transition: all 0.3s ease;
}
.header__nav--en:hover {
  color: var(--color-gray);
}
.header__nav--en:hover::before {
  filter: brightness(1.75);
}
@media screen and (max-width: 639px) {
  .header__nav--en {
    display: none;
  }
}
.header__nav--en::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url("/common/images/ic_obl.svg") no-repeat;
  background-size: contain;
  margin-bottom: min(1vw, 3px);
  transition: all 0.3s ease;
}
.header__nav--btn a {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  color: #ffffff;
  background-color: #26953E;
  height: 70px;
  padding-inline: 20px;
  text-align: center;
  display: grid;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) {
  .header__nav--btn a {
    display: none;
  }
}
.header__nav--btn a:hover {
  background-color: #43AD5A;
}

/* ----------------------------------------------------
グローバルナビ
-----------------------------------------------------*/
/* ハンバーガーメニュー  */
.hamburger {
  display: none;
  text-align: center;
  position: relative;
  cursor: pointer;
  width: min(30vw, 65px);
  height: min(30vw, 60px);
  background-color: #FFFFFF;
}
@media screen and (max-width: 1100px) {
  .hamburger {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .hamburger {
    width: min(20vw, 54px);
    height: min(20vw, 50px);
  }
}
.hamburger > p {
  transition: all 0.3s ease;
  font-family: var(--font-en);
  font-size: 1.2rem;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0);
}
.hamburger > div {
  display: block;
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 32%;
}
.hamburger > div > span {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background-color: var(--color-text);
  left: 0;
  transition: 0.35s ease-in-out;
}
.hamburger > div > span:nth-child(1) {
  top: 0;
}
.hamburger > div > span:nth-child(2) {
  top: 48%;
}
.hamburger > div > span:nth-child(3) {
  bottom: 0;
}
.open .hamburger span:nth-child(1) {
  top: 48%;
  transform: rotate(315deg);
}
.open .hamburger span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open .hamburger span:nth-child(3) {
  bottom: 47%;
  transform: rotate(-315deg);
}

/* グローバルナビ  */
.naviset {
  display: none;
  z-index: 9998;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #EFEFEF;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  height: calc(100vh - 60px);
  background-attachment: fixed;
  min-width: 300px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .naviset {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .naviset {
    height: calc(100vh - 50px);
  }
}
.naviset a,
.naviset div {
  transition: all 0.3s ease;
}
.naviset__container {
  position: relative;
  width: 100%;
  padding-inline: 20px;
}
.naviset__inner {
  background-color: #EFEFEF;
  padding: min(5vw, 20px);
}
.naviset__inner > ul {
  display: grid;
  border-bottom: var(--color-dark-gray) 1px solid;
  padding-bottom: min(5vw, 20px);
}
.naviset__inner > ul > li {
  font-weight: 700;
  margin-top: 12px;
}
.naviset__inner a,
.naviset__inner .u-accordion__btn p {
  display: block;
}
.naviset__child {
  padding-left: 10px;
  height: 0;
}
.naviset__child > li a {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: center;
  font-weight: 500;
  margin-top: 8px;
}
.naviset__child > li a::before {
  font-size: 1.2rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  margin-right: min(5vw, 8px);
}
.naviset__child > li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.naviset__build{
  font-weight: 700;
}
.naviset__en {
  font-family: var(--font-en);
  font-weight: 700;
}
.naviset__insta {
  font-family: var(--font-en);
  font-weight: 700;
  margin-top: 10px;
}
.naviset__insta i {
  margin-right: 5px;
}

/* ----------------------------------------------------
メガメニュー
-----------------------------------------------------*/
.menu {
  display: flex;
  /* メガメニュー（親）のスタイル */
  /* メガメニュー（子）のスタイル */
}
@media screen and (max-width: 1100px) {
  .menu {
    display: none;
  }
}
.menu__parent--a {
  font-weight: 700;
  display: grid;
  align-items: center;
  padding-inline: min(6vw, 20px);
  text-align: center;
  height: 70px;
}
@media screen and (max-width: 1100px) {
  .menu__parent--a {
    padding-inline: min(3vw, 10px);
  }
}
.menu__parent:hover .menu__parent--a {
  color: var(--color-gray) !important;
  transition: all 0.3s;
}
#top .topshow .menu__parent--a {
  color: #ffffff;
}
.show .menu__parent--a, .mouse-enter .menu__parent--a {
  color: var(--color-text) !important;
}
.menu__child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-block: min(12vw, 40px);
  padding-inline: min(10vw, 30px);
  background-color: #EFEFEF;
}
.menu__child-container {
  max-width: 1040px;
  margin-inline: auto;
}
.menu__child--titlelink {
  display: flex;
  align-items: center;
  font-weight: 700;
  -moz-column-gap: min(2vw, 8px);
       column-gap: min(2vw, 8px);
  transition: opacity 0.3s ease;
}
.menu__child--titlelink::before {
  font-size: 1.2rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
}
.menu__child--titlelink:hover {
  opacity: 0.5;
}
.menu__child--imglist-l {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: min(3vw, 10px);
}
.menu__child--imglist-l img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.menu__child--imglist-l a {
  color: #000000;
}
.menu__child--imglist-l a:hover img {
  opacity: 0.7;
}
.menu__child--imglist-l figcaption {
  font-size: 1.3rem;
  margin-top: min(1vw, 3px);
}
.menu__child--imglist-m {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: min(5vw, 25px);
}
.menu__child--imglist-m img {
  width: 100%;
  max-width: 190px;
  height: auto;
  transition: opacity 0.3s ease;
}
.menu__child--imglist-m a {
  color: #000000;
}
.menu__child--imglist-m a:hover img {
  opacity: 0.7;
}
.menu__child--imglist-m figcaption {
  font-size: 1.3rem;
  margin-top: min(1vw, 3px);
}
.menu__child--rowlist {
  margin-left: min(3vw, 10px);
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: min(6vw, 24px);
       column-gap: min(6vw, 24px);
  row-gap: min(3vw, 10px);
}
.menu__child--rowlist li {
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.menu__child--rowlist li a {
  display: flex;
  align-items: center;
  -moz-column-gap: min(3vw, 6px);
       column-gap: min(3vw, 6px);
}
.menu__child--rowlist li a::before {
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
}
.menu__child--rowlist li a:hover {
  opacity: 0.7;
}
.menu__child--rowlist li:hover {
  background-color: var(--color-light-gray);
}
.menu__child--collist {
  margin-left: min(3vw, 10px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: min(3vw, 10px);
}
.menu__child--collist li {
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.menu__child--collist li a {
  display: flex;
  align-items: center;
  -moz-column-gap: min(3vw, 6px);
       column-gap: min(3vw, 6px);
}
.menu__child--collist li a::before {
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
}
.menu__child--collist li a:hover {
  opacity: 0.7;
}
.menu__child--collist li:hover {
  background-color: var(--color-light-gray);
}
.menu__child--gridblock {
  display: grid;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: min(12vw, 40px);
       column-gap: min(12vw, 40px);
}
.menu__child--gridblock ul:first-child {
  border-right: 1px solid var(--color-gray);
  padding-right: min(12vw, 40px);
}

/* ----------------------------------------------------
フッター
-----------------------------------------------------*/
.footer {
  color: #ffffff;
  position: relative;
  background-color: var(--color-dark-gray);
}
.footer a {
  color: #ffffff;
}
.footer a:hover {
  opacity: 0.7;
}
.footer__banner {
  padding-block: 40px;
  background-color: var(--color-pale-gray);
}
@media screen and (max-width: 920px) {
  .footer__banner {
    padding-block: 20px;
  }
}
.footer__banner ul {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 920px) {
  .footer__banner ul {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 15px;
  }
}
@media screen and (max-width: 920px) {
  .footer__banner ul li {
    max-width: 46%;
  }
}
.footer__main {
  padding-block: 40px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media screen and (max-width: 1100px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav--list > li {
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__nav--child {
  margin-top: 10px;
}
.footer__nav--child > li {
  font-weight: 400;
  margin-bottom: 3px;
  padding-left: 1em;
  text-indent: -1em;
}
.footer__nav--child > li::before {
  content: "・";
}
.footer__insta {
  font-family: var(--font-enja);
  font-weight: 600;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__insta {
    display: grid;
    row-gap: 10px;
  }
}
.footer__insta a {
  color: #ffffff;
  display: flex;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  border-left: 1px solid #ffffff;
  padding-left: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .footer__insta a {
    border: none;
    padding-left: 0;
    margin-left: 0;
  }
}
.footer__insta a:first-child {
  border: none;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .footer__insta a:first-child {
    margin-left: 0;
  }
}
.footer__insta a img {
  margin-right: 10px;
}
.footer__bt-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.footer__bt-nav li {
  font-weight: 400;
  margin-bottom: 2px;
  padding-left: 1em;
  text-indent: -1em;
}
.footer__bt-nav li::before {
  content: "・";
}
.footer__logo {
  text-align: center;
}
.footer__copy {
  text-align: center;
}

/* ----------------------------------------------------
ページトップ
-----------------------------------------------------*/
#page-top {
  position: absolute;
  bottom: 20px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 10px;
  }
}
#page-top > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 3.2rem;
  color: #ffffff;
  background-color: var(--color-gray);
}
@media screen and (max-width: 767px) {
  #page-top > a {
    font-size: 3.2rem;
  }
}
#page-top > a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/* ----------------------------------------------------
フローティングバナー
-----------------------------------------------------*/
.floating-banner {
  position: fixed;
  bottom: 70px;
  right: 0;
  z-index: 999;
  display: grid;
  grid-template-columns: 1fr;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .floating-banner {
    display: none;
  }
}
.floating-banner.delete {
  opacity: 0;
  visibility: hidden;
}
.floating-banner.hidden {
  opacity: 0;
  visibility: hidden;
}
.floating-banner__close {
  cursor: pointer;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.floating-banner__close:hover {
  color: #ffffff;
  background-color: var(--color-dark-gray);
}
.floating-banner > a {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
}
.floating-banner > a:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------
フレーム
-----------------------------------------------------*/
.main {
  background-color: #FFFFFF;
  padding-top: min(16vw, 120px);
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .main {
    padding-bottom: 120px;
  }
}
#top .main {
  position: relative;
}

/* ----------------------------------------------------
共通タイトル
-----------------------------------------------------*/
/* ページタイトル */
.page-title {
  text-align: center;
  margin-bottom: min(8vw, 60px);
}
.page-title--main {
  font-size: min(8.5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: var(--font-enja);
}
.page-title--sub {
  font-size: min(3vw, 2rem);
}

/* ページkv */
.page-kv {
  text-align: center;
  background-color: var(--color-pale-gray);
}

/* セクションタイトル */
.sec-title {
  font-size: min(6vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--font-enja);
}
.sec-title span {
  display: block;
  font-size: 50%;
  margin-top: min(2vw, 10px);
}

.l--title {
  font-size: min(4.4vw, 3.2rem);
  padding-bottom: min(3vw, 10px);
  border-bottom: var(--color-text) 1px solid;
  margin-bottom: min(7vw, 40px);
}

.center__btn {
  display: grid;
  justify-items: center;
}
.center__btn a {
  position: relative;
  font-size: min(4.2vw, 1.6rem);
  border: 1px solid var(--color-text);
  padding-inline: min(10vw, 50px);
  padding-block: min(2vw, 7px);
  transition: background-color 0.3s ease;
}
.center__btn a::after {
  font-size: 80%;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
}
.center__btn a:hover {
  background-color: var(--color-dark-gray);
  color: #FFFFFF;
}
.center__btn a .obl::after {
  content: "";
  display: inline-block;
  width: min(3vw, 15px);
  height: min(3vw, 15px);
  background: url("../../common/images/ic_obl.svg") no-repeat center center/cover;
  margin-left: min(1vw, 5px);
}
.center__btn a:hover .obl::after {
  background: url("../../common/images/ic_obl_w.svg") no-repeat center center/cover;
}
.center__btn-obl {
  display: grid;
  justify-items: center;
}
.center__btn-obl a {
  position: relative;
  font-size: min(4.2vw, 1.6rem);
  border: 1px solid var(--color-text);
  padding-inline: min(10vw, 50px);
  padding-block: min(2vw, 7px);
  transition: background-color 0.3s ease;
}
.center__btn-obl a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  width: 15px;
  height: 15px;
  background: url("../../common/images/ic_obl.svg") no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.center__btn-obl a:hover {
  background-color: var(--color-dark-gray);
  color: #FFFFFF;
}
.center__btn-obl a:hover::after {
  background: url("../../common/images/ic_obl_w.svg") no-repeat;
}

    
    
.list-anchor {
  max-width: 1000px;
  margin-inline: auto;
  background-color: var(--color-light-gray);
  padding-block: min(4vw, 30px);
  padding-inline: min(6vw, 40px);
  border-radius: min(3vw, 10px);
}
.list-anchor ul {
  display: flex;
  row-gap: min(2vw, 6px);
}
.list-anchor ul li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0da";
  color: #818181;
  margin: 0 20px;
}
@media screen and (max-width: 520px) { 
    .list-anchor ul {
  display: grid;
}
  } 
@media screen and (max-width: 520px) { 
.list-anchor ul li::before {
  margin: 0 10px;
}
}  

/* ----------------------------------------------------
共通製品案内リンク
-----------------------------------------------------*/
.co-lineup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
@media screen and (max-width: 1180px) {
  .co-lineup {
    max-width: 720px;
    margin-inline: auto;
    -moz-column-gap: 25px;
         column-gap: 25px;
    row-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .co-lineup {
    max-width: 520px;
  }
}
@media screen and (max-width: 520px) {
  .co-lineup {
    display: flex;
    justify-content: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 15px;
  }
}
.co-lineup li {
  display: grid;
  justify-content: center;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 520px) {
  .co-lineup li {
    width: 30%;
  }
}
.co-lineup li a {
  position: relative;
  text-align: center;
  display: grid;
  justify-content: center;
  transition: all 0.3s ease;
}
.co-lineup li a img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.co-lineup li a:hover {
  color: var(--color-pale-green);
}
.co-lineup li a:hover img:first-child {
  opacity: 0;
}
.co-lineup--flooring::before {
  background: url("/top/images/lineup_flooring.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--flooring:hover::before {
  background: url("/top/images/lineup_flooring_gr.svg") no-repeat center center;
}
.co-lineup--door::before {
  background: url("/top/images/lineup_door.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--door:hover::before {
  background: url("/top/images/lineup_door_gr.svg") no-repeat center center;
}
.co-lineup--closet::before {
  background: url("/top/images/lineup_closet.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--closet:hover::before {
  background: url("/top/images/lineup_closet_gr.svg") no-repeat center center;
}
.co-lineup--stair::before {
  background: url("/top/images/lineup_stair.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--stair:hover::before {
  background: url("/top/images/lineup_stair_gr.svg") no-repeat center center;
}
.co-lineup--kitchen::before {
  background: url("/top/images/lineup_kitchen.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--kitchen:hover::before {
  background: url("/top/images/lineup_kitchen_gr.svg") no-repeat center center;
}
.co-lineup--bath::before {
  background: url("/top/images/lineup_bath.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--bath:hover::before {
  background: url("/top/images/lineup_bath_gr.svg") no-repeat center center;
}
.co-lineup--total::before {
  background: url("/top/images/lineup_total.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--total:hover::before {
  background: url("/top/images/lineup_total_gr.svg") no-repeat center center;
}
.co-lineup--nonres::before {
  background: url("/top/images/lineup_nonres.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--nonres:hover::before {
  background: url("/top/images/lineup_nonres_gr.svg") no-repeat center center;
}
.co-lineup--board::before {
  background: url("/top/images/lineup_board.svg") no-repeat center center;
  background-size: contain;
}
.co-lineup--board:hover::before {
  background: url("/top/images/lineup_board_gr.svg") no-repeat center center;
}/*# sourceMappingURL=common.css.map */