@charset "UTF-8";
body {
  position: relative;
}

.isNavOpened {
  overflow: hidden;
  height: 100%;
}

#globalHeader {
  /* DEFAULT SETTING*/
}

#globalHeader .searchIcon::before {
  background-image: url(/common/img/search_icon.png);
}

#globalHeader .globalIcon::before {
  background-image: url(/common/img/global_icon.png);
}

#globalHeader .inquiryIcon::before {
  background-image: url(/common/img/inquiry_icon.png);
}

#globalHeader .catalogIcon::before {
  background-image: url(/common/img/catalog_icon_small.png);
}

#globalHeader *,
#globalHeader *::before,
#globalHeader *::after {
  box-sizing: border-box;
}

#globalHeader * {
  margin: 0;
  padding: 0;
}

#globalHeader .globalHeaderPadTop {
  padding-top: 135px;
}

@media screen and (max-width: 1023px) {
  #globalHeader .globalHeaderPadTop {
    padding-top: 82px !important;
  }
}

#globalHeader .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  transition: background-color 0.5s;
}

#globalHeader .header--unpinned {
  background-color: transparent;
  pointer-events: none;
}

#globalHeader .header--unpinned .header__row {
  opacity: 0;
  visibility: hidden;
}

#globalHeader .header__title {
  display: flex;
  font-weight: 700;
}

#globalHeader .header__subTitle {
  display: flex;
  align-items: center;
  margin-left: 1.125em;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

#globalHeader .header__subTitle::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 50px;
  margin-right: 1.875em;
  background-color: #251e1c;
}

#globalHeader .header__subTitle:hover {
  color: #008d54;
}

#globalHeader .header__inner {
  padding-top: 20px;
}

#globalHeader .header__top {
  position: relative;
  max-width: 1310px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

#globalHeader .header__logo {
  flex-shrink: 0;
  display: block;
  max-width: 160px;
}

#globalHeader .header__logoImg {
  width: 100%;
  vertical-align: middle;
}

#globalHeader .header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0.5s;
}

#globalHeader .header__contact {
  max-width: 900px;
}

#globalHeader .header__sns{
  display: none;
}

#globalHeader .header__snsImg--ig{
  vertical-align: middle;
  margin-right: 24px;
  width: 26px;
}

#globalHeader .header__snsImg--yt{
  vertical-align: middle;
  margin-right: 60px;
  width: 33px;
}

#globalHeader .header__navigation {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  #globalHeader .header__navigation {
    display: none !important;
  }
}

#globalHeader .header--onlyPc {
  display: block;
}

#globalHeader .header--onlySp {
  display: none;
}

#globalHeader .headerNav {
  display: none;
  max-width: 1310px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

#globalHeader .headerNav__list {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

#globalHeader .headerNav__listItem {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

#globalHeader .headerNav__listItem:first-of-type {
  margin-left: 0;
}

#globalHeader .headerNav__listItem:last-of-type {
  margin-right: 0;
}

#globalHeader .headerNav__listItem--isOpen .headerNav__title::after {
  opacity: 1;
  bottom: 5px;
  width: 100%;
}

#globalHeader .headerNav__title {
  position: relative;
  display: inline-block;
  padding: 22px 22px 15px;
  line-height: 1;
  font-size: 16px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

#globalHeader .headerNav__title--textCenter{
  text-align: center; 
}

#globalHeader .headerNav__title::after {
  content: '';
  position: absolute;
  display: inline-block;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 3px;
  opacity: 0;
  background-color: #008d54;
  transition: all 0.3s;
}

#globalHeader .headerContact {
  display: flex;
  justify-content: space-between;
  padding-right: 70px;
}

#globalHeader .headerContact__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

@media screen and (max-width: 1023px) {
  #globalHeader .headerContact__list {
    display: none;
  }
}

#globalHeader .headerContact__listItem {
  margin-right: 30px;
}

#globalHeader .headerContact__listItem:last-of-type {
  margin-right: 0;
}

#globalHeader .headerContact__link {
  display: flex;
  align-items: center;
  font-size: 15px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

#globalHeader .headerContact__link:hover {
  color: #008d54;
}

#globalHeader .headerContact__link::before {
  content: '';
  display: inline-block;
  margin-right: 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}

#globalHeader .headerContact__link--searchIcon:hover.searchIcon::before {
  background-image: url(/common/img/search_icon_green.png);
}

#globalHeader .headerContact__link--searchIcon::before {
  width: 23px;
  height: 23px;
}

#globalHeader .headerContact__link--globalIcon:hover.globalIcon::before {
  background-image: url(/common/img/global_icon_green.png);
}

#globalHeader .headerContact__link--globalIcon::before {
  width: 24.5px;
  height: 22px;
}

#globalHeader .headerContact__link--inquiryIcon:hover.inquiryIcon::before {
  background-image: url(/common/img/inquiry_icon_green.png);
}

#globalHeader .headerContact__link--inquiryIcon::before {
  width: 32px;
  height: 22.5px;
}

#globalHeader .headerContact__link--catalogIcon:hover.catalogIcon::before {
  background-image: url(/common/img/catalog_icon_green.png);
}

#globalHeader .headerContact__link--catalogIcon::before {
  width: 22px;
  height: 32px;
}

#globalHeader .headerButton {
  position: absolute;
  top: 56%;
  right: 15px;
  text-align: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  transform: translateY(-50%);
  pointer-events: all;
  z-index: 9999;
}

#globalHeader .headerButton:hover .headerButton__bar {
  background-color: #008d54;
}

#globalHeader .headerButton:hover .headerContact__buttonLabel {
  color: #008d54;
}

.isNavOpened #globalHeader .headerButton:hover .headerButton__bar {
  background-color: #fff;
}

#globalHeader .headerButton__bar {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #000;
  transition: transform 0.5s, opacity 0.5s, background-color 0.5s;
}

#globalHeader .headerButton__bar--1 {
  top: 0;
}

#globalHeader .headerButton__bar--2 {
  top: 9px;
}

#globalHeader .headerButton__bar--3 {
  bottom: 20px;
}

.isNavOpened #globalHeader .headerButton__bar {
  background-color: #fff;
}

.isNavOpened #globalHeader .headerButton__bar--1 {
  transform: translateY(10px) rotate(-40deg);
}

.isNavOpened #globalHeader .headerButton__bar--2 {
  opacity: 0;
}

.isNavOpened #globalHeader .headerButton__bar--3 {
  transform: translateY(-8px) rotate(40deg);
}

#globalHeader .headerButton__buttonLabel {
  display: inline-block;
  margin-top: 25px;
  letter-spacing: 0.7px;
  text-indent: 0.7px;
  font-size: 12px;
  transition: all 0.5s;
}

.isNavOpened #globalHeader .headerButton__buttonLabel {
  display: none;
}

@keyframes menueShow {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#globalHeader .megaMenuHide {
  display: none !important;
}

#globalHeader .hamburgerMenu {
  position: absolute;
  top: -20px;
  right: -28px;
  width: 500px;
  height: 0;
  background-color: #008d54;
  transition: height 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86), visibility 0.5s;
  visibility: hidden;
  overflow: hidden;
  z-index: 1000;
}

@media screen and (max-height: 700px) {
  #globalHeader .hamburgerMenu {
    overflow-y: auto;
  }
}

#globalHeader .hamburgerMenu--isActive {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  visibility: visible;
  border: 1px solid #008d54;
  pointer-events: all;
}

#globalHeader .hamburgerMenu__overlay {
  display: block;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.6);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.isNavOpened #globalHeader .hamburgerMenu__overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

#globalHeader .hamburgerMenu__wrapper {
  padding: 130px 0 30px;
}

#globalHeader .hamburgerMenu__search {
  position: relative;
  margin: 0 auto;
  margin-bottom: 26px;
  width: 440px;
}

#globalHeader .hamburgerMenu__searchInput {
  width: 100%;
  height: 35px;
  border: inherit;
}

#globalHeader .hamburgerMenu__searchForm {
  display: flex;
  align-items: center;
  flex: 1;
}

#globalHeader .hamburgerMenu__searchSubmit {
  margin-right: 26px;
}

#globalHeader .hamburgerMenu__searchBtn {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(/common/img/search_icon_white.png) no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
  border: none;
}

#globalHeader .hamburgerMenu__body {
  display: block;
  overflow: hidden;
}

#globalHeader .hamburgerMenu__body--isOpen {
  display: flex;
}

#globalHeader .hamburgerMenu__body--isOpen .hamburgerSubMenu {
  display: block;
  max-height: 60vh;
}

#globalHeader .hamburgerMenu__body--isOpen .hamburgerMenu__list {
  width: 195px;
}

#globalHeader .hamburgerMenu__body--isOpen .hamburgerMenu__listItem {
  padding-right: 0;
}

#globalHeader .hamburgerMenu__body--isOpen .hamburgerMenu__link {
  display: flex;
  align-items: center;
  height: 65px;
  padding: 0.5em;
  padding-right: 1.5em;
}

#globalHeader .hamburgerMenu__body--isOpen .hamburgerMenu__link::after {
  bottom: 35%;
  right: 10px;
}

#globalHeader .hamburgerMenu__body--isOpen .hamburgerMenu__link--newLine {
  display: block;
}

#globalHeader .hamburgerMenu__list {
  margin-bottom: 30px;
}

#globalHeader .hamburgerMenu__listItem {
  cursor: pointer;
  padding: 0 30px;
  transition: background-color 0.3s;
}

#globalHeader .hamburgerMenu__listItem--active {
  border-top: 1px solid #fff;
  background-color: #fff;
}

#globalHeader .hamburgerMenu__listItem--active .hamburgerMenu__link {
  color: #000;
}

#globalHeader .hamburgerMenu__listItem:hover {
  background-color: #fff;
}

#globalHeader .hamburgerMenu__listItem:hover .hamburgerMenu__link {
  color: #000;
}

#globalHeader .hamburgerMenu__link {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  line-height: 1.27778;
  color: #fff;
  text-align: left;
  text-decoration: none;
  transition: none;
}

#globalHeader .hamburgerMenu__link::after {
  content: '';
  position: absolute;
  bottom: 40%;
  right: 35px;
  width: 18px;
  height: 18px;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
}

#globalHeader .hamburgerMenu__link--newLine {
  display: none;
}

#globalHeader .hamburgerMenu__footButton {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

#globalHeader .footButton__link {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  font-size: 20px;
  width: 48.18182%;
  padding: 16px 0;
  text-decoration: none;
  color: #008d54;
  background-color: #fff;
  border: 1px solid transparent;
  transition: background-color 0.3s;
}

#globalHeader .footButton__link::after {
  content: '';
  margin-bottom: 5px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#globalHeader .footButton__link:hover {
  background-color: #008d54;
  border-color: #fff;
  color: #fff;
}

#globalHeader .footButton__link--inquiry:hover::after {
  background-image: url(/common/img/inquiry_icon_white.png);
}

#globalHeader .footButton__link--inquiry::after {
  width: 1.6em;
  height: 1.1em;
  background-image: url(/common/img/inquiry_icon_green.png);
}

#globalHeader .footButton__link--global:hover::after {
  background-image: url(/common/img/global_icon_white.png);
}

#globalHeader .footButton__link--global::after {
  width: 1.1em;
  height: 1.1em;
  background-image: url(/common/img/global_icon_green.png);
}

#globalHeader .hamburgerSubMenu {
  margin-bottom: 30px;
  width: 62%;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
}

#globalHeader .hamburgerSubMenu__wrapper {
  display: none;
}

#globalHeader .hamburgerSubMenu__wrapper--isOpen {
  display: block;
  animation: menueShow 0.3s linear 0s;
}

#globalHeader .hamburgerSubMenu__item {
  height: 65px;
  padding: 0 30px;
  transition: background-color 0.3s;
}

#globalHeader .hamburgerSubMenu__item:hover {
  background-color: #808080;
}

#globalHeader .hamburgerSubMenu__item:hover > .hamburgerSubMenu__text {
  color: #fff;
}

#globalHeader .hamburgerSubMenu__item:hover > .hamburgerSubMenu--blankIcon::after {
  background-image: url(/common/img/blank_icon_white.png);
}

#globalHeader .hamburgerSubMenu__item:hover.hamburgerRelationMenu {
  background-color: #ececec;
}

#globalHeader .hamburgerSubMenu__item:first-of-type .hamburgerSubMenu__text {
  border-top: none;
}

#globalHeader .hamburgerSubMenu__item--autoHeight {
  height: auto !important;
}

#globalHeader .hamburgerSubMenu__accordionMenu {
  padding: 0;
}

#globalHeader .hamburgerSubMenu__accordionMenu:hover {
  background-color: #fff;
}

#globalHeader .hamburgerSubMenu__accordionMenuTtl {
  padding: 0 30px;
  height: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}

#globalHeader .hamburgerSubMenu__accordionMenuTtl:hover {
  background-color: #808080;
}

#globalHeader .hamburgerSubMenu__accordionMenuTtl:hover .hamburgerSubMenu__text {
  color: #fff;
}

#globalHeader .hamburgerSubMenu__accordionMenuTtl:hover .accordionMenu::after,
#globalHeader .hamburgerSubMenu__accordionMenuTtl:hover .accordionMenu::before {
  background-color: #fff;
}

#globalHeader .hamburgerSubMenu__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0;
  height: 100%;
  letter-spacing: -1px;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  border-top: 1px solid #008d54;
  line-height: 1.2;
  text-align: left;
  text-align: start;
}

#globalHeader .hamburgerSubMenu__text--small {
  font-size: 14px;
}

#globalHeader .hamburgerSubMenu--blankIcon::after {
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url(/common/img/blank_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

#globalHeader .hamburgerSubMenuBnr {
  height: auto;
}

#globalHeader .hamburgerSubMenuBnr:hover {
  background-color: #fff;
}

#globalHeader .hamburgerSubMenuBnr__inner {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #008d54;
}

#globalHeader .hamburgerSubMenuBnr__item {
  display: block;
  margin-bottom: 9px;
}

#globalHeader .hamburgerSubMenuBnr__item:last-of-type {
  margin-bottom: 0;
}

#globalHeader .hamburgerSubMenuBnr__imgWrapper {
  display: block;
  width: 100%;
}

#globalHeader .hamburgerSubMenuBnr__img {
  width: 100%;
  vertical-align: middle;
}

#globalHeader .hamburgerRelationMenu {
  background-color: #ececec;
  height: auto;
  padding: 0;
}

#globalHeader .hamburgerRelationMenu__link {
  height: 65px;
  padding: 0 30px;
  transition: background-color 0.3s;
}

#globalHeader .hamburgerRelationMenu__link:first-of-type .hamburgerRelationMenu__text {
  border-top: none;
}

#globalHeader .hamburgerRelationMenu__link:hover {
  background-color: #008d54;
}

#globalHeader .hamburgerRelationMenu__link:hover .hamburgerRelationMenu__text {
  color: #fff;
}

#globalHeader .hamburgerRelationMenu__link:hover > .hamburgerSubMenu--blankIcon::after {
  background-image: url(/common/img/blank_icon_white.png);
}

#globalHeader .hamburgerRelationMenu__link:hover > .hamburgerRelationMenu__text--owners::before {
  background-image: url(/common/img/owners_icon_white.png);
}

#globalHeader .hamburgerRelationMenu__link:hover > .hamburgerRelationMenu__text--catalog::before {
  background-image: url(/common/img/catalog_icon_white.png);
}

#globalHeader .hamburgerRelationMenu__link:hover > .hamburgerRelationMenu__text--area::before {
  background-image: url(/common/img/area_icon_white.png);
}

#globalHeader .hamburgerRelationMenu__link:hover > .hamburgerRelationMenu__text--modelhouse::before {
  background-image: url(/common/img/modelhouse_icon_white.png);
}

#globalHeader .hamburgerRelationMenu__text {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2.8em;
  height: 100%;
  font-size: 18px;
  text-decoration: none;
  color: #000;
  border-top: 1px solid #008d54;
  line-height: 1.5;
}

#globalHeader .hamburgerRelationMenu__text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#globalHeader .hamburgerRelationMenu__text--owners::before {
  width: 1.222em;
  height: 1.556em;
  background-image: url(/common/img/owners_icon.png);
}

#globalHeader .hamburgerRelationMenu__text--modelhouse::before {
  width: 30px;
  height: 26px;
  background-image: url(/common/img/modelhouse_icon.png);
}

#globalHeader .hamburgerRelationMenu__text--catalog::before {
  width: 22px;
  height: 32px;
  background-image: url(/common/img/catalog_icon_small.png);
}

#globalHeader .hamburgerRelationMenu__text--area::before {
  width: 40px;
  height: 24px;
  left: 0;
  background-image: url(/common/img/area_icon.png);
}

#globalHeader .hamburgerRelationMenu__text--balloon::before {
  width: 1.667em;
  height: 1.333em;
  background-image: url(/common/img/balloon_icon.png);
}

#globalHeader .accordionMenu {
  position: relative;
  line-height: 1.3;
  padding-right: 40px;
}

#globalHeader .accordionMenu::before, #globalHeader .accordionMenu::after {
  content: '';
  display: block;
  background-color: #008d54;
  position: absolute;
  top: 50%;
  width: 25px;
  height: 1px;
  right: 12px;
}

#globalHeader .accordionMenu::after {
  transform: rotate(90deg);
  transition-duration: 0.3s;
}

#globalHeader .accordionMenu--isActive > .hamburgerSubMenu__text {
  height: 66px;
  border-bottom: 1px solid #008d54;
}

#globalHeader .accordionMenu--isActive > .hamburgerSubMenu__text::before {
  opacity: 0;
}

#globalHeader .accordionMenu--isActive > .hamburgerSubMenu__text::after {
  transform: rotate(0);
}

#globalHeader .accordionMenu--isActive > .hamburgerSubMenu__text--small {
  padding: 19.5px 0;
  height: auto;
}

#globalHeader .hamburgerSubMenu__accordionMenuTtl--offset.accordionMenu--isActive > .hamburgerSubMenu__text--small {
  padding: 0.71em 0;
  padding-right: 40px;
}

#globalHeader .accordionMenu__list {
  padding-left: 30px;
  display: none;
}

#globalHeader .accordionMenu__list--firstFloor {
  padding-right: 30px;
  padding-left: 60px;
}

#globalHeader .accordionMenu__list--isOpen {
  display: block;
}

#globalHeader .accordionMenu__item {
  height: 58px;
  border-top: 1px solid #008d54;
}

#globalHeader .accordionMenu__item--wide {
  height: 66px;
}

#globalHeader .accordionMenu__item:first-of-type {
  border-top: 0;
}

#globalHeader .accordionMenu__item--child {
  border-top: 0;
}

#globalHeader .accordionMenu__item--child > .hamburgerSubMenu__accordionMenuTtl {
  padding: 0;
}

#globalHeader .accordionMenu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0;
  line-height: 1.3;
  width: 100%;
  height: 100%;
  color: #1f120e;
  font-size: 14px;
  text-decoration: none;
}

#globalHeader .accordionMenu__link:hover {
  background-color: #808080;
  color: #fff;
}

#globalHeader .headerNav__listItem--isOpen .headerMegaNav {
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  overflow-y: auto;
  margin-top: 0;
  pointer-events: auto;
  z-index: 10;
}

#globalHeader .headerOverlay {
  opacity: 0;
  visibility: hidden;
}

#globalHeader .headerOverlay--isHover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 100;
}

#globalHeader .headerMegaNav {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  margin-top: -5px;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  visibility: hidden;
  background-color: #fff;
  border-bottom: 1px solid #dadada;
  pointer-events: none;
  overflow-y: auto;
}

@media screen and (max-height: 765px) {
  #globalHeader .headerMegaNav {
    height: calc(100vh - 130px);
    max-height: 680px;
  }
}

#globalHeader .headerMegaNav__inner {
  position: relative;
  max-width: 1310px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 28px;
}

#globalHeader .headerMegaNav__title {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  padding-left: 45px;
  line-height: 1.7;
  color: #000;
  font-size: 23px !important;
}

#globalHeader .headerMegaNav__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  background-color: #008d54;
  transition: width 0.3s;
}

.headerNav__listItem--isOpen #globalHeader .headerMegaNav__title::after {
  width: 400px;
}

#globalHeader .headerMegaNav__titleLink {
  position: relative;
  display: block;
  width: 345px;
  color: #000;
  text-decoration: none;
}

#globalHeader .headerMegaNav__titleLink::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid;
  border-color: #008d54 #008d54 transparent transparent;
  transform: translateY(-50%) rotate(45deg);
}

#globalHeader .headerMegaNav__titleLink:hover {
  color: #008d54;
}

#globalHeader .headerMegaNav__item {
  display: flex;
  justify-content: space-between;
  padding-left: 45px;
  padding-right: 40px;
}

#globalHeader .headerMegaNav__rightContent {
  width: 21.875%;
}

#globalHeader .headerMegaNav__bnr {
  margin-top: 15px;
}

#globalHeader .headerMegaNavBnr__item {
  display: block;
  width: 100%;
  height: 70px;
  max-height: 70px;
  margin-bottom: 10px;
}

#globalHeader .headerMegaNavBnr__item:last-of-type {
  margin-bottom: 0;
}

#globalHeader .headerMegaNavBnr__item:hover {
  opacity: 0.8;
}

#globalHeader .headerMegaNavBnr__imgWrapper {
  display: block;
  width: 100%;
  border: 1px solid #008d54;
}

#globalHeader .headerMegaNavBnr__img {
  width: 100%;
  vertical-align: middle;
}

#globalHeader .headerTiles {
  display: flex;
  flex-wrap: wrap;
  width: 77.82427%;
  margin-top: 16px;
}

#globalHeader .headerTiles--col3 {
  width: 66.94561%;
}

#globalHeader .headerTiles--col3 .headerTiles__item {
  width: 26.25%;
}

#globalHeader .headerTiles--col3 .headerTiles__item:nth-of-type(4n) {
  margin-right: 10px;
}

#globalHeader .headerTiles__title {
  font-size: 14px;
  padding: 8px 0 10px;
  line-height: 1.3;
}

#globalHeader .headerTiles__title--blank::after {
  content: '';
  width: 12px;
  height: 12px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  background-image: url(/common/img/blank_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

#globalHeader .headerTiles__item {
  display: flex;
  flex-direction: column;
  width: 22.58065%;
  margin-right: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 13px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

#globalHeader .headerTiles__item:hover {
  background-color: #008d54;
}

#globalHeader .headerTiles__item:hover .headerTiles__img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}

#globalHeader .headerTiles__item:hover .headerTiles__title {
  color: #fff;
}

#globalHeader .headerTiles__item:hover .headerTiles__title::after {
  background-image: url(/common/img/blank_icon_white.png);
}

#globalHeader .headerTiles__item:nth-of-type(4n) {
  margin-right: 0;
}

#globalHeader .headerTiles__imgWrapper {
  overflow: hidden;
}

#globalHeader .headerTiles__img {
  display: block;
  width: 100%;
  transition-duration: 0.3s;
}

#globalHeader .headerNav__listItem--isOpen .headerMegaNav__title::after {
  width: 400px;
}

#globalHeader .headerNav__listItem--isOpen .headerMegaNavLink__item::after {
  width: 100%;
}

#globalHeader .headerMegaNavLink__item {
  position: relative;
}

#globalHeader .headerMegaNavLink__item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  display: inline-block;
  background-color: #008d54;
  transition: width 0.3s;
}

#globalHeader .headerMegaNavLink__text {
  display: block;
  position: relative;
  line-height: 1.5;
  padding: 10px 0;
  padding-right: 15px;
  font-size: 15px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

#globalHeader .headerMegaNavLink__text--blank {
  background: url(/common/img/blank_icon.png) no-repeat;
  background-size: 12px;
  background-position: top 17px right 20px;
}

#globalHeader .headerMegaNavLink__text:hover {
  color: #008d54;
}

#globalHeader .headerMegaNavLink__text::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 17px;
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: #008d54 #008d54 transparent transparent;
  transform: rotate(45deg);
}

#globalHeader .headerMegaNavBtn {
  margin-top: 15px;
}

#globalHeader .headerMegaNavBtn__list {
  width: 100%;
}

#globalHeader .headerMegaNavBtn__item {
  text-align: center;
  margin-bottom: 10px;
}

#globalHeader .headerMegaNavBtn__item:last-of-type {
  margin-bottom: 0;
}

#globalHeader .headerMegaNavBtn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 0;
  height: 70px;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  background-color: #008d54;
  transition: 0.2s;
}

#globalHeader .headerMegaNavBtn__link:hover {
  opacity: 0.8;
}

#globalHeader .headerMegaNavBtn__link::before {
  content: '';
  content: '';
  display: inline-block;
  margin-right: 8px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 3px;
}

#globalHeader .headerMegaNavBtn__link--area::before {
  width: 2.75em;
  height: 1.75em;
  background-image: url(/common/img/area_icon_white.png);
}

#globalHeader .headerMegaNavBtn__link--catalog::before {
  width: 1.375em;
  height: 1.75em;
  background-image: url(/common/img/catalog_icon_white.png);
}

#globalHeader .headerMegaNavBtn__link--modelhouse::before {
  width: 1.875em;
  height: 1.563em;
  background-image: url(/common/img/modelhouse_icon_white.png);
}

#globalHeader .headerMegaNavBtn__link--owners::before {
  width: 1.25em;
  height: 1.75em;
  background-image: url(/common/img/owners_icon_white.png);
}

#globalHeader .headerNavNormal__listItem {
  width: 17.96875%;
  text-align: center;
}

#globalHeader .headerNavNormal__listItem--Small {
  width: 10.15625%;
}

#globalHeader .headerNavNormal__listItem--rightSide {
  text-align: right;
  padding-right: 0.8vw;
}

#globalHeader .headerNavNormal__listItem--leftSide {
  text-align: left;
  padding-left: 1.2vw;
}

#globalHeader .headerNavNormal__listItem > .headerMegaNav {
  text-align: left;
  text-align: start;
}

#globalHeader .headerNavNormal__listItem .headerNav__title {
  padding-right: 0;
  padding-left: 0;
}

/* 株主・投資家の皆様へ(IR情報)メガメニュー */
#globalHeader .headerLinkWrapper {
  margin-bottom: 12px;
  width: 100%;
}

#globalHeader .headerLinkList {
  display: flex;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #CECECE;
}

#globalHeader .headerLinkList:last-child {
  border-bottom: none;
}

#globalHeader .headerLinkList--spaceBetween {
  justify-content: space-between;
}

#globalHeader .headerLinkList--spaceGap {
  column-gap: 4%;
}

#globalHeader .headerLinkList--wide .headerLinkList__item {
  margin-right: 67px;
}

#globalHeader .headerLinkList__link {
  font-size: 1.5rem;
  font-weight: bold;
}

#globalHeader .headerLinkList--wide .headerLinkList__link {
  font-size: 1.3rem;
}

#globalHeader .headerLinkList--wide .headerLinkList__link {
  font-size: 1.3rem;
}

#globalHeader .headerLinkList__linkIcon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  vertical-align: middle;
}

#globalHeader .headerLinkList__linkIcon::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #018D54;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}

#globalHeader .headerLinkList__linkIcon::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  top: 5px;
  left: 4px;
  transform: rotate(45deg);
}