@charset "UTF-8";
/* ==============================================================================================
t-hero
============================================================================================== */
/*レイアウト
-------------------------------------------------------------------------*/
body {
  min-width: 120rem;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 32rem;
  }
}

.t-hero {
  position: relative;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

@media screen and (max-width: 1300px) {
  .t-hero {
    height: 94rem;
  }
}
@media screen and (max-width: 1023px) {
  .t-hero {
    height: 70rem;
  }
}
@media screen and (max-width: 767px) {
  .t-hero {
    height: 33rem;
  }
}
/*メインビジュアル
-------------------------------------------------------------------------*/
.t-hero__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

/*mv左の形状付与*/
.t-hero__img::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/assets/images/top/mv-side_deco.png);
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.t-hero__img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .t-hero__img img {
    height: 33rem;
  }
}
/*キャッチコピー
-------------------------------------------------------------------------*/
.t-hero__copy {
  width: 93.2%;
  position: absolute;
  top: 50%;
  left: 6.8%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-align: left;
  color: var(--color-white_uni);
  z-index: 2;
  /*text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.35), 0px 0px 20px rgba(0, 0, 0, 0.25);*/
}
@media screen and (max-width: 767px) {
  .t-hero__copy {
    top: 54%;
  }
}

.t-hero__copy_main {
  font-style: normal;
  font-weight: 700;
  font-size: 11rem;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .t-hero__copy_main {
    font-size: 4rem;
  }
}
.t-hero__copy_main .font-color_black {
  color: var(--color-black_1);
}

.t-hero__copy_sub {
  font-style: normal;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .t-hero__copy_sub {
    font-size: 1.3rem;
  }
}

/*セクション
-------------------------------------------------------------------------*/
.section {
  overflow: hidden;
}
.section.-type1 {
  background-color: var(--color-black_1);
}
.section.-type2 {
  background-color: var(--color-main);
}

.text-area {
  width: 40.63%;
  color: var(--color-white_uni);
  position: relative;
}
@media screen and (max-width: 767px) {
  .text-area {
    width: 100%;
  }
}
.text-area.-deco::before {
  content: "";
  display: block;
  background-image: url(/assets/images/top/overview-text_deco.svg);
  width: 23rem;
  height: 14rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -9rem;
  left: -9rem;
}
@media screen and (max-width: 767px) {
  .text-area.-deco::before {
    width: 18rem;
    height: 10rem;
    top: -8rem;
    left: -3rem;
  }
}

.contents-area {
  width: 49.36%;
}
@media screen and (max-width: 767px) {
  .contents-area {
    width: 100%;
    margin-top: 4rem;
  }
}
.contents-area img {
  width: 100%;
}

.t-section-heading {
  color: var(--color-white_uni);
  font-family: "M PLUS 1p";
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .t-section-heading {
    font-size: 2.4rem;
  }
}

.t-flow-heading {
  color: var(--color-white_uni);
  font-size: 28rem;
  line-height: 1;
  font-weight: bold;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .t-flow-heading {
    font-size: 16rem;
    margin-top: -2.4rem;
  }
}
.t-flow-heading span {
  display: inline-block;
  -webkit-animation: scrollSample01 10s linear infinite;
          animation: scrollSample01 10s linear infinite;
}

@-webkit-keyframes scrollSample01 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollSample01 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*事業/business
-------------------------------------------------------------------------*/
.business-list ul {
  width: calc(100% - 24px);
  margin: 0 auto;
}
.business-list .list-block {
  width: calc((100% - 24px) / 3);
  height: 58rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-position: center;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .business-list .list-block {
    width: 100%;
    height: 24rem;
  }
  .business-list .list-block + .list-block {
    margin-top: 1.2rem;
  }
}
.business-list .list-block a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  height: 100%;
  background-position: center;
}
.business-list .list-block a .t-business-name {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.business-list .list-block a .t-business-name p {
  text-align: center;
}
.business-list .list-block .english {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.business-list .list-block.-exterior a {
  background-image: url(/assets/images/top/business-img01_color.jpg);
  background-size: cover;
}
.business-list .list-block.-gardening a {
  background-image: url(/assets/images/top/business-img02_color.jpg);
  background-size: cover;
}
.business-list .list-block.-event a {
  background-image: url(/assets/images/top/business-img03_color.jpg);
  background-size: cover;
}
.business-list .list-block .t-business-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.business-list .list-block .t-business-image:hover {
  opacity: 0.5;
  -webkit-transform: scale(1.05) rotate(-1.5deg);
          transform: scale(1.05) rotate(-1.5deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*お問い合わせ
-------------------------------------------------------------------------*/
.contact-box {
  width: 100%;
  padding: 4rem 3.2rem;
  background-color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .contact-box {
    width: auto;
    padding: 2.8rem 2.4rem;
  }
}
.contact-box .icon {
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  display: inline-block;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
}
.contact-box .icon.-nowrap {
  white-space: nowrap;
}
.contact-box .icon:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact-box .icon {
    font-size: 2.8rem;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 500px) {
  .contact-box .icon {
    font-size: 2rem;
  }
}
.contact-box .icon::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.8rem;
}
@media screen and (max-width: 767px) {
  .contact-box .icon::before {
    width: 3rem;
    height: 3rem;
  }
}
.contact-box .icon.-tel::before {
  background-image: url(/assets/images/common/icon-phone.svg);
}
.contact-box .icon.-mail::before {
  background-image: url(/assets/images/common/icon-mail.svg);
}

.t-contact-box {
  text-align: center;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--color-main-bg);
  border: 1px solid var(--color-border);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .t-contact-box {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
}
.t-contact-box p + a,
.t-contact-box a + p,
.t-contact-box p + p {
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .t-contact-box p + a,
.t-contact-box a + p,
.t-contact-box p + p {
    margin-top: 1.6rem;
  }
}
.t-font-tel {
  font-size: 5.6rem;
  font-weight: 700;
  /*letter-spacing: 0.04em;*/
  font-family: var(--ff-ss);
  color: var(--color-main);
}

@media screen and (max-width: 767px) {
  .t-font-tel {
    font-size: 3.6rem;
    -webkit-text-decoration: underline 2px;
            text-decoration: underline 2px;
  }

  .t-font-tel:hover {
    opacity: 0.8;
  }
}
.t-contact-box__tel::before {
  content: "";
  display: inline-block;
  background-image: url(/assets/images/common/icon-call-main.svg);
  width: 4.8rem;
  height: 5.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 1rem;
}

@media screen and (max-width: 767px) {
  .t-contact-box__tel::before {
    width: 3rem;
    height: 3.4rem;
    margin-right: 0.5rem;
  }
}
.t-slash-style {
  font-size: 0.8em;
  padding-right: 0.5em;
  padding-left: 0.5em;
}