/* mainArea
================================================== */
/* mainArea */
#mainArea {
  width: 100%;
  background: linear-gradient(-45deg, #fff6d9 25%, #fff6d9 25%, #fffcf3 50%, #fff6d9 50%, #fff6d9 75%, #fff6d9 75%, #fffcf3);
  background-size: 600px 600px;
  -webkit-animation: anime_stripe_1 8s infinite linear;
          animation: anime_stripe_1 8s infinite linear;
}

@-webkit-keyframes anime_stripe_1 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -600px;
  }
}

@keyframes anime_stripe_1 {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -600px;
  }
}
/* mainBox */
#mainBox {
  position: relative;
}

#mainTit {
  position: absolute;
  width: 27%;
  top: 8%;
  left: 21%;
  z-index: 2;
}

#mainTit02 {
  position: absolute;
  width: 16.3%;
  top: 13.3%;
  left: 50.5%;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  #mainTit {
    position: relative;
    width: 70%;
    margin: 0 auto;
    padding: 16% 0;
    top: inherit;
    left: inherit;
  }
  #mainTit02 {
    position: absolute;
    width: 37%;
    top: 53%;
    left: 17%;
    z-index: 1;
  }
}
/* fuwafuwa */
.fuwafuwa {
  -webkit-animation: fuwafuwa 2s infinite linear alternate;
  animation: fuwafuwa 2s infinite linear alternate;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(0, -10px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0, -10px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
/* topLeadArea */
#topLeadArea {
  padding: 5% 0 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.topLeadBlock {
  float: right;
  width: 65%;
}

@media screen and (max-width: 800px) {
  .topLeadBlock {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
}
.topLeadBlock h2 {
  font-weight: bold;
  line-height: 120%;
  font-size: 80%;
  padding: 0;
  margin: 0;
}

.topLeadBlock h1 {
  font-weight: bold;
  line-height: 140%;
  font-size: 260%;
  padding: 2% 0 0 0;
  margin: 0;
  color: #00976A;
}

@media screen and (max-width: 1000px) {
  .topLeadBlock h1 {
    font-size: 200%;
  }
}
@media screen and (max-width: 800px) {
  .topLeadBlock h1 {
    font-size: 140%;
  }
}
.topLeadBlock p {
  padding: 2% 0;
  line-height: 180%;
}

@media screen and (max-width: 800px) {
  .topLeadBlock p {
    padding: 3% 0;
  }
}
.topLeadBlock p img {
  width: 60%;
}

@media screen and (max-width: 800px) {
  .topLeadBlock p img {
    width: 100%;
  }
}
/* topImgBlock */
.topImgBlock {
  float: left;
  width: 30%;
  position: relative;
  margin: 2% auto 0;
}

@media screen and (max-width: 800px) {
  .topImgBlock {
    float: none;
    width: 60%;
    margin: 7% auto 0;
  }
}
/* Circles */
.circle-1 {
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}

.circle-1 img {
  border-radius: 80% 30% 50% 50%/50%;
}

.circle-2 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff900;
  border-radius: 80% 30% 50% 50%/50%;
  -webkit-animation: border-animation 10s infinite linear;
          animation: border-animation 10s infinite linear;
}

.circle-3 {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00cd00;
  border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
  -webkit-animation: border-animation 13s infinite linear;
          animation: border-animation 13s infinite linear;
}

/* Animation */
@-webkit-keyframes border-animation {
  to {
    transform: rotate(360deg);
  }
}
@keyframes border-animation {
  to {
    transform: rotate(360deg);
  }
}
/* contentArea */
.contentArea {
  margin: 5% auto 0;
}
.contentArea:last-of-type {
  margin: 5% auto 5%;
}

/* titArea */
.titArea h2 {
  font-weight: bold;
  font-size: 260%;
  line-height: 140%;
  padding-top: 3%;
  margin: 0;
  color: #00976A;
}

@media screen and (max-width: 900px) {
  .titArea h2 {
    font-size: 200%;
  }
}
@media screen and (max-width: 600px) {
  .titArea h2 {
    font-size: 160%;
    padding-top: 6%;
  }
}
.titArea p {
  text-align: justify;
  font-weight: bold;
  font-size: 80%;
}

/* btn */
.btn {
  margin-top: 1%;
  position: relative;
  display: inline-block;
  border: solid 2px #ddd;
  border-radius: 100px;
  line-height: 100%;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .btn {
    margin-top: 7%;
  }
}

.btn:hover {
  border: solid 2px #00976A;
  background-color: #00976A;
  transition: 0.3S;
  -webkit-transition: 0.3s;
}

.btn a {
  padding: 10px 40px 10px 55px;
  color: #00976A;
  display: block;
}

.btn:hover a {
  transition: 0.3S;
  -webkit-transition: 0.3s;
  color: #fff;
}

.btn .btn-border:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  transition: 0.3s;
  background: #00976A;
  font-family: "Font Awesome 5 Free";
  line-height: 26px;
  font-size: 70%;
  width: 26px;
  height: 26px;
  color: #fff;
  border-radius: 50%;
  content: "\f061";
  transform: translateX(6px) translateY(5px);
  text-align: center;
}

.btn:hover .btn-border:before {
  transform: translateX(23px) translateY(5px);
  background-color: #fff;
  color: #00976A;
}

/* mvArea */
.mvArealogo img {
  width: 730px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .mvArealogo img {
    width: 60%;
  }
}

.mvPhoto {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  list-style: none;
  margin-top: 5%;
}
@media screen and (max-width: 800px) {
  .mvPhoto {
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    margin-top: 5%;
  }
}

/* catchcopy */
.catchcopy {
  padding: 0 21%;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .catchcopy {
    padding: 0;
  }
}
.catchcopyTit {
  margin-top: 60px;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .catchcopyTit {
    font-size: 24px;
  }
}
.catchcopyTit span {
  display: block;
  font-size: 46px;
}
@media screen and (max-width: 800px) {
  .catchcopyTit span {
    font-size: 34px;
  }
}
.catchcopyTxt {
  margin-top: 10px;
  font-size: 22px !important;
}
@media screen and (max-width: 800px) {
  .catchcopyTxt {
    font-size: 18px !important;
  }
}
.catchcopyLink {
  margin-top: 10px;
  font-size: 22px !important;
  color: #00976A;
}
@media screen and (max-width: 800px) {
  .catchcopyLink {
    font-size: 18px !important;
  }
}

.topContsArea {
  margin: 40px 2.5% 0;
}
@media screen and (max-width: 800px) {
  .topContsArea {
    margin: 20px 2.5% 0;
  }
}
.topContsAreaList {
  list-style: none;
}
.topContsAreaItem {
  display: flex;
}
@media screen and (max-width: 800px) {
  .topContsAreaItem {
    display: block;
  }
}
.topContsAreaMap {
  width: 300px;
  flex: 0 0 auto;
  margin-right: 30px;
}
@media screen and (max-width: 960px) {
  .topContsAreaMap {
    width: 240px;
  }
}
@media screen and (max-width: 800px) {
  .topContsAreaMap {
    margin: 0 auto;
  }
}
.topContsAreaInfoList {
  list-style: none;
}
.topContsAreaInfoItem {
  margin-top: 60px;
}
@media screen and (max-width: 800px) {
  .topContsAreaInfoItem {
    margin-top: 30px;
  }
}
.topContsAreaInfoItem:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .topContsAreaInfoItem:first-of-type {
    margin-top: 30px;
  }
}
.topContsAreaInfoTxt {
  font-size: 23px;
  color: #222;
}
.topContsAreaInfoPic {
  width: 400px;
}
@media screen and (max-width: 960px) {
  .topContsAreaInfoPic {
    width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .topContsAreaInfoPic {
    width: 100%;
  }
}
.topContsAreaInfoPic.is-tenant {
  width: 100%;
}