@charset "utf-8";
/* CSS Document */
.main-image {
  background-image: url(../images/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  border-radius: 0;
  background-size: cover;
}
.main-image .top-copy {
  margin: 3rem 0;
}
.main-image .top-copy img {
  width: 90%;
  text-align: center;
}
.top-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.top-btn li {
  width: 48%;
  margin-bottom: 1.5rem;
}
.top-btn li:nth-child(n+2) {
  margin-bottom: 0;
}
/*************
/* ここからPC用
*************/
@media print, screen and (min-width: 992px) {
	.top-copy-box {
		position: inherit;
	}
  .main-image .top-copy {
    margin: 6rem auto 0 auto;
    width: 499px;
  }
  .main-image {
    height: 595px;
  }
  .top-btn {
  margin-top: -23rem;
}
  .top-btn li {
    width: 23%;
  }
}