@charset "UTF-8";
.sectionEffect {
  opacity: 0;
  transform: translateY(30px);
}

.sectionEffect--isScroll {
  opacity: 1;
  transition: opacity 1.8s 0s, transform 1.8s 0s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateY(0);
}

.keyvisual {
  position: relative;
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  cursor: default;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 768px) {
  .keyvisual {
    height: 71.615vw;
  }
}

@keyframes keyvisualZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.keyvisual__text {
  position: absolute;
  bottom: 70px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1310px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .keyvisual__text {
    bottom: 1.615vw;
    padding-left: 18px;
    padding-right: 18px;
  }
}

.keyvisual__title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", sans-serif;
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 0 20px black;
}

@media screen and (max-width: 768px) {
  .keyvisual__title {
    font-size: 2.8rem;
  }
}

.keyvisual__imgWrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.keyvisual__imgWrapper--cover {
  max-width: none;
  background-size: cover;
  background-position: center;
  animation-name: keyvisualZoom;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-fill-mode: both;
}

.keyvisual__imgWrapper--cover::after {
  display: block;
  content: '';
  width: 100%;
  height: 700px;
  z-index: 1;
}

.keyvisual__img {
  width: 100%;
  vertical-align: top;
}

.message {
  padding-top: 4rem;
  padding-bottom: 4rem;
  cursor: default;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 768px) {
  .message {
    width: 90%;
    margin: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.message__content {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .message__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.message__content::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #008d54;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
  .message__content:last-child {
    text-align: left;
  }
}

.message__content > *:not(:first-child) {
  padding-top: 32px;
}

@media screen and (max-width: 768px) {
  .message__content > *:not(:first-child) {
    padding-top: 16px;
  }
}

.message__titleWrapper {
  position: relative;
  padding-bottom: 5px;
  text-align: center;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .message__titleWrapper {
    padding-bottom: 24px;
  }
}

.message__title {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  line-height: 5.5rem;
}

.message__title::after {
  content: '';
  position: absolute;
  display: block;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #008d54;
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  .message__title {
    font-size: 2.4rem;
    line-height: 1.75;
  }
}

.message__subTitle {
  position: relative;
  width: 100%;
  max-width: 1310px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  letter-spacing: 2.25px;
  color: #008d54;
  opacity: 1;
  font-size: 3rem;
  line-height: 5rem;
  z-index: 2;
}

@media screen and (max-width: 1023px) {
  .message__subTitle {
    font-size: 2.8rem;
    line-height: 4.5rem;
  }
}

@media screen and (max-width: 768px) {
  .message__subTitle {
    font-size: 2rem;
    line-height: 4rem;
  }
}

.message__text {
  position: relative;
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  z-index: 2;
  font-size: 2.05rem;
  line-height: 3.8rem;
}

@media screen and (max-width: 1023px) {
  .message__text {
    font-size: 2rem;
    line-height: 3.4rem;
  }
}

@media screen and (max-width: 768px) {
  .message__text {
    max-width: 575px;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

.message__content--hover:hover::after {
  transform: scale(1, 1);
}

.message__content--hover:hover > .message__title,
.message__content--hover:hover > .message__subTitle,
.message__content--hover:hover > .message__text {
  color: #fff;
}

.layout {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.layout--reverse {
  flex-direction: row-reverse;
}

.layout__2column {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .layout__2column {
    width: 100%;
  }
}

.jigyou {
  padding-bottom: 7rem;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 768px) {
  .jigyou {
    padding-bottom: 2rem;
  }
}

.jigyou__layout {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .jigyou__layout {
    padding-top: 0rem;
    padding-bottom: 4rem;
  }
}

.jigyou__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.jigyou__content--reverse {
  flex-direction: row-reverse;
}

.jigyou__content--environment {
  background-color: #40a97f;
}

.jigyou__content--building {
  background-color: #5f81b3;
}

.jigyou__content--housing {
  background-color: #a674a1;
}

.jigyou__content--estate {
  background-color: #e77670;
}

.jigyou__content--life {
  background-color: #f9aa40;
}

.jigyou__frame {
  width: 48%;
  max-width: 620px;
  padding: 50px;
}

@media screen and (max-width: 768px) {
  .jigyou__frame {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.jigyou__imgLayout {
  width: 52%;
  max-width: 660px;
}

@media screen and (max-width: 768px) {
  .jigyou__imgLayout {
    width: 100%;
  }
}

.jigyou__imgContent {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.jigyou__imgContent::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 2;
  box-shadow: 0 -50px 50px -50px white inset;
}

.jigyou__img {
  width: 100%;
  vertical-align: top;
}

.jigyou__titleWrapper {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .jigyou__titleWrapper {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.jigyou__titleWrapper::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0.5;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.5s;
}

.jigyou--animation::after {
  transform: scale(1, 1);
  transition-delay: 1s;
}

.jigyou__title {
  font-size: 3.4rem;
  letter-spacing: 0.4rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .jigyou__title {
    font-size: 1.8rem;
  }
}

.jigyou__text {
  font-size: 1.8rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .jigyou__text {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

.researchMedias {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .researchMedias {
    padding: 0 5.2%;
    flex-wrap: wrap;
  }
}

.researchMedias__content {
  width: 48.2%;
}

@media screen and (max-width: 768px) {
  .researchMedias__content {
    width: 100%;
    margin-bottom: 7.4vw;
  }
}

@media screen and (max-width: 768px) {
  .researchMedias__content:last-child {
    margin-bottom: 22px;
  }
}

.researchMedia {
  position: relative;
}

.researchMedia:hover .researchMedia__label {
  opacity: 0.8;
}

.researchMedia__image {
  vertical-align: top;
  width: 100%;
}

.researchMedia__label {
  position: absolute;
  bottom: -11px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .researchMedia__label {
    bottom: -2vw;
  }
}

.researchMedia__text {
  padding: 5px 1.6em;
  background-color: #008d54;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .researchMedia__text {
    padding: 1.3vw 1.24em;
    font-size: 3.645vw;
  }
}

.groupCompanyTable__group {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .groupCompanyTable__group {
    flex-direction: column;
    margin-bottom: 23px;
  }
}

.groupCompanyTable__group:last-child {
  margin-bottom: 0;
}

.groupCompanyTable__title {
  flex-shrink: 0;
  width: 27.2%;
  font-size: 2.4rem;
  color: #008d54;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
  .groupCompanyTable__title {
    margin-bottom: 14px;
    width: 100%;
  }
}

.groupCompanyTable__desc {
  width: 72.8%;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .groupCompanyTable__desc {
    width: 100%;
  }
}

.groupCompanyList {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .groupCompanyList {
    margin-bottom: 0;
  }
}

.groupCompanyList--col3 > .groupCompanyList__item {
  width: 33.3%;
}

.groupCompanyList__item {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  width: 50%;
  margin-bottom: 0.7em;
}

@media screen and (max-width: 768px) {
  .groupCompanyList__item {
    font-size: 1.4rem;
    width: 48%;
    margin-bottom: 0;
  }
}

.businessContent {
  background-color: #f6f2ed;
  height: 60vw;
  max-height: 757px;
  margin-bottom: 30px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .businessContent {
    height: 100vw;
    margin-bottom: 0;
  }
}

.business {
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.business__list {
  position: relative;
  z-index: 2;
  width: 70vw;
  max-width: 896px;
  height: 100%;
  margin: 0 auto;
  background-image: url(/information/company/jigyou/img/business_earth.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .business__list {
    width: 100%;
    max-width: 100%;
    background-size: 130vw;
    background-position-y: 40vw;
  }
}

.business__item {
  width: 100%;
  height: 100%;
}

.business__link {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  z-index: 10;
  height: 15.5vw;
  width: 15.5vw;
  max-height: 150px;
  max-width: 150px;
  background: #fff;
  border-radius: 50rem;
}

@media screen and (max-width: 768px) {
  .business__link {
    height: 22vw;
    width: 22vw;
  }
}

.business__link--sintiku {
  top: 60%;
  left: 5%;
}

@media screen and (max-width: 768px) {
  .business__link--sintiku {
    top: 33%;
    left: 12%;
  }
}

.business__link--sintiku:hover {
  background: #a674a1;
}

.business__link--seikatu {
  top: 27%;
  left: 20%;
}

@media screen and (max-width: 768px) {
  .business__link--seikatu {
    top: 18%;
    left: 28%;
  }
}

.business__link--seikatu:hover {
  background: #f9aa40;
}

.business__link--sanrin {
  top: 15%;
  left: 50%;
}

@media screen and (max-width: 768px) {
  .business__link--sanrin {
    top: 13%;
    left: 50%;
  }
}

.business__link--sanrin:hover {
  background: #40a97f;
}

.business__link--mokuzai {
  top: 27%;
  left: 80%;
}

@media screen and (max-width: 768px) {
  .business__link--mokuzai {
    top: 18%;
    left: 72%;
  }
}

.business__link--mokuzai:hover {
  background: #5f81b3;
}

.business__link--overseashousing {
  top: 60%;
  left: 95%;
}

@media screen and (max-width: 768px) {
  .business__link--overseashousing {
    top: 33%;
    left: 88%;
  }
}

.business__link--overseashousing:hover {
  background: #e77670;
}

.business__text {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  top: 55%;
  left: 50%;
  color: #000;
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  line-height: 2.2rem;
  text-align: center;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .business__text {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

.business__text::after {
  content: '';
  display: block;
  width: 50%;
  height: 2px;
  opacity: 1;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  opacity: 0.5;
  transform: scale(0);
  transform-origin: left top;
}

.business__svgItem {
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  width: 16vw;
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .business__svgItem {
    width: 30vw;
    max-width: none;
  }
}

.business__svgItem::after {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  z-index: -1;
  content: '';
  display: block;
  height: 7vw;
  width: 14vw;
  max-height: 95px;
  max-width: 190px;
  opacity: 0.4;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .business__svgItem::after {
    height: 12vw;
    width: 24vw;
  }
}

.business__svgItem--sintiku {
  top: 64%;
  right: 38%;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .business__svgItem--sintiku {
    top: 68vw;
    right: 34vw;
  }
}

.business__svgItem--seikatu {
  top: 52%;
  right: 45%;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .business__svgItem--seikatu {
    top: 54vw;
    right: 41vw;
  }
}

.business__svgItem--sanrin {
  top: 40%;
  right: 27%;
  z-index: 3;
}

.business__svgItem--sanrin::after {
  top: 75%;
}

@media screen and (max-width: 768px) {
  .business__svgItem--sanrin {
    top: 40vw;
    right: 18vw;
  }
}

.business__svgItem--mokuzai {
  top: 52%;
  right: 8%;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .business__svgItem--mokuzai {
    top: 55vw;
    right: -5vw;
  }
}

.business__svgItem--overseashousing {
  top: 64%;
  right: 15%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .business__svgItem--overseashousing {
    top: 67vw;
    right: 3vw;
  }
}

.business__link:active, .business__link:hover {
  transform: translateY(-50%) translateX(-50%) scale(1.05);
  transition-duration: 0.3s;
}

.business__link:active > .business__text,
.business__link:hover > .business__text {
  color: #fff;
}

.business__link:active > .business__text::after,
.business__link:hover > .business__text::after {
  transform: scale(1);
  transition-duration: 0.5s;
}

.business__link:active + .business__svgItem > .business__svg,
.business__link:hover + .business__svgItem > .business__svg {
  transform: scale(1.05) !important;
  transition-duration: 0.3s;
}

.business__link:active + .business__svgItem::after,
.business__link:hover + .business__svgItem::after {
  transform: translateY(-50%) translateX(-50%) scale(1);
  transition-duration: 0.3s;
  background: #94b428;
}
