/* ===================================
基本タグ
=================================== */
:root {
  --primary-color: #e95d08;
  --background-color: #fff;
  --black-color: #000;
  --border-color: #e2e2e2;
  --link-color: #666;
  --content-width: 1100px;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
}
.onlySP {
  display: none !important;
}

/* header */
.defs {
  display: none;
}
.externaLink {
  display: inline-block;
  width: 15px;
  height: 15px;
  fill: #fff;
  margin: 0 0 0 8px;
}
.externaLinkBk {
  fill: #000;
}
.spNav a:hover .externaLink {
  fill: var(--primary-color);
  transition: 0.3s;
}
.headerContents {
  position: relative;
  top: 0;
  z-index: 9997;
  background: #fff;
}
.headerContents:has(.mega:hover)::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: -1;
}
.headerContents a {
  text-decoration: none;
}
.headerContentsWrap {
  height: 109px;
  padding: 10px 40px 0;
  overflow: hidden;
  position: initial;
  z-index: 1;
  background-color: #fff;
}
.headerContents h1 {
  width: 115px;
}
.headerContents h1 a img {
  width: 115px;
  height: auto;
}
.gnav {
  position: relative;
  height: 80px;
  z-index: 1;
  background-color: #fff;
}
.mega-menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}
.mega-menu > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 0 5px;
  color: #000;
  font-family: 'Lato', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}
.mega-menu > li > a small {
  font-size: 14px;
  margin-top: 2px;
}
.menu-info {
  width: calc(100% - 40px);
  padding: 0;
  margin: 0 auto;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  height: 0;
  z-index: 0;
  transition: 0.5s;
}
.menu-inner {
  padding: 0 4%;
  display: grid;
  grid-template-columns: 200px 1fr;
}
.subTit {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: bold;
  box-sizing: border-box;
  padding: 27px 0 0;
}
.listWrap {
  overflow: hidden;
}
.mega-menu > li:hover > a {
  color: var(--primary-color);
}
.mega-menu > li.mega:hover .menu-info {
  height: auto;
  transition: 0.5s;
  padding-bottom: 40px;
  z-index: 1;
}
.menu-info ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 10px;
  margin-top: 10px;
}
.menu-info ul li {
  border-left: none;
}
.menu-info ul li a {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  height: 60px;
  margin: 0;
  padding: 0 25px 0 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  position: relative;
  transition: 0.3s;
  line-height: 1.2;
}
.menu-info ul li a:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 46%;
  right: 15px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-info ul li a:hover {
  color: #fff;
  background: var(--primary-color);
  opacity: 1;
}
.menu-info ul li a:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.menu-info ul li a:hover svg {
  fill: #fff;
  transition: 0.3s;
}
.menu-info ul li a.nolink {
  pointer-events: none;
}
.listWrap .badge {
  width: 170px;
  margin: 25px auto 0 0;
  line-height: 22px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}
.mega-menu li .hover {
  display: none;
  font-size: 14px;
  color: #333;
  padding: 5px 0;
  text-align: center;
  text-decoration: none;
}
.mega-menu li .normal {
  display: block;
  font-size: 14px;
  color: #333;
  padding: 5px 0;
  text-align: center;
  display: block;
  text-decoration: none;
}
.mega-menu .selected .hover {
  display: block;
  font-size: 14px;
  color: #333;
  padding: 5px 0;
  text-align: center;
  text-decoration: none;
}
.mega-menu .selected .normal {
  display: none;
}
.mega.selected a,
.mega.selected + li a {
  border-left: none;
}
.mega-menu .exBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 3px 10px;
  background: var(--primary-color);
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  box-sizing: border-box;
}
.mega-menu .exBtn a:hover {
  color: #fff;
  opacity: 0.7;
}

@media screen and (max-width: 1380px) {
  .menu-info ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1080px) {
  .mega-menu li a .abb {
    display: none;
  }
  .menu-info ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 840px) {
  .subTit {
    display: none;
  }
  .listWrap .badge:nth-of-type(1) {
    margin-top: 10px;
  }
  .menu-inner {
    grid-template-columns: 1fr;
  }
}
.menuListBtn {
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  top: 40px;
  right: 30px;
  width: 48px;
  height: 48px;
  z-index: 9998;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.menuListBtn li {
  width: 34px;
  height: 3px;
  background-color: #a1a1a1;
}
.menuListBtn:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s;
}
.menuOpen {
  height: 100%;
  overflow: hidden;
}
.spMenu {
  background: rgba(0, 0, 0, 0.9);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  margin: 0;
  overflow-y: auto;
}
.openButton {
  position: relative;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.openButton > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.openButton > span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.openButton:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.spMenuHead {
  margin: 25px 20px 55px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.spNav {
  width: calc(1100px - 210px);
  min-width: 890px;
  box-sizing: border-box;
  margin: 0 auto;
  padding-block: 60px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 20% 1fr;
}
.spNav dt,
.spNav dd {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 1.5;
}
.spNav dt {
  padding-right: 20px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: bold;
  box-sizing: border-box;
  color: #fff;
}
.spNav dt a,
.spNav li a {
  color: #fff;
  text-decoration: none;
}
.spNav a:hover {
  color: var(--primary-color) !important;
  transition: 0.3s;
}
.spNav a.nolink {
  pointer-events: none;
}
.spNav dd.linkListWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.spNav dd.linkListWrap ul {
  width: 50%;
}
.spNav dd.linkListWrap ul.wd100 {
  width: 100%;
}
.spNav dd:not(.linkListWrap) ul.linkList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.spNav dd:not(.linkListWrap) ul.linkList li {
  width: 50%;
}
.spNav dd ul.linkList > li {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  padding-left: 22px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.spNav dd ul.linkList > li.wd100 {
  width: 100%;
}
.spNav dd ul.linkList > li::before {
  position: absolute;
  content: '';
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.spNav dd ul.linkList .sublink {
  width: 100%;
}
.spNav dd ul.linkList .sublink::before {
  display: none;
}
.spNav dd ul.linkList .sublink .sublinkList {
  float: left;
  line-height: 1.2;
  width: 194px;
}
.spNav dd ul.linkList .sublink .sublinkList li {
  width: 210px;
}
.spNav dd ul.sublinkList li > a {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  box-sizing: border-box;
  padding-left: 18px;
  margin: 10px 0 0 7px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.spNav dd ul.sublinkList li > a:before {
  position: absolute;
  content: '';
  vertical-align: middle;
  width: 6px;
  height: 1px;
  background: #eee;
  left: 0;
  top: -2px;
  bottom: 0;
  margin: auto;
}
.spNav dd ul.linkList .sublink .sublinkList li.badge {
  width: 115px;
  line-height: 22px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  margin: 10px 0 0;
}
.spNav dt.borderNone,
.spNav dd.borderNone {
  border: none;
}
@media screen and (min-width: 751px) and (max-width: 960px) {
  .spNav {
    width: auto;
    min-width: auto;
    margin: 0 30px;
  }
}
/* モーダル表示の際、スクロールバーの幅だけガタつきが起きるのを解消 */
.menuOpen header,
.menuOpen main,
.menuOpen footer {
  overflow: auto;
  scrollbar-gutter: stable;
}
.spMenu {
  overflow: auto;
  scrollbar-gutter: stable;
  width: 100vw;
}
.menuListBtn {
  right: unset;
  left: calc(100vw - 80px);
}
.openButton {
  position: fixed;
  top: 40px;
  left: calc(100vw - 80px);
}

/* footer */
.fixedBnr {
  display: none;
}
.footerContents {
  background: #eee;
  padding: 80px 0 70px;
}
.footerContents a {
  text-decoration: none;
}
.footerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}
.footerLogoGrc img {
  width: 119px;
  height: auto;
}
.footerLogoSense img {
  width: 108px;
  height: auto;
}
.footerAddress {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.footerTel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.footerTelTitle {
  font-size: 14px;
}
.footerTelText + .footerTelTitle {
  margin-top: 10px;
}
.footerTelText {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
}
.footerTelText a {
  color: #000;
}
.footerTelText::before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 7px;
  background: url('https://houseshop-grc.cbiz.co.jp/assets/images/common/icon_tel.png')
    no-repeat center / contain;
}
.footerBusiness {
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.footerSns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  line-height: 0;
}
.footerSns img {
  width: 15px;
  height: auto;
}
.footerCopyright {
  color: #a1a1a1;
  text-align: center;
}
.footerCopyright a {
  color: #a1a1a1;
  font-size: 13px;
  font-weight: 400;
}
