/*****トップページCSS*****/


/*----トップヘッド----*/

.top-head {
  position: relative;
  min-height: 440px;
  background-image: url(../img/topheader.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position:  center 70%;
}

.top-head-message {
  background: linear-gradient(90deg,transparent, rgba(255, 255, 255, 0.5) 8%,rgba(255, 255, 255, 0.5) 92%,  transparent);
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 100%;
  height: 440px;
  position: absolute;
  right: 10%;
}

.top-head-message h2{
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.top-head-message p {
  width: 100%;
}


/*----トップメニューセクション----*/
.top-menu-sec {
  background-color: #FFFFE6;
}

.top-menu-sec .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 230px;
}

.top-menu-sec a {
  max-width: 300px;
  position: relative;
  width: 30%;
  padding-bottom: 30px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 3px 3px 0px 0px #A6A6A6;
}

.top-menu-sec a:hover {
  box-shadow: 0px 0px 0px 0px #A6A6A6;
  bottom: -3px;
  right: -3px;
}

.top-menu-sec a p {
  position: absolute;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  background-color: #FFCC99;
  padding: 0 20px;
  line-height: 1;
}

.top-menu-sec a p::before {
  content:'\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}


/*----トップメインメッセージ----*/
.top-main-message {
	background-color:rgba(255, 255, 230, 0.5);
}

.top-main-message .wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
	
}

.top-main-message-l,
.top-main-message-r {
  width: 50%;
  
}

.top-main-message-l {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.top-main-message-l h2 {
  font-family: serif;
  font-weight: bolder;
  margin-bottom: 30px;
}

.top-main-message-l p {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.top-main-message-img {
  position: relative;
}

.top-main-message-img::before,
.top-main-message-img::after {
  content:'';
  position: absolute;
  width: 100%;
  height: 30px;
  display: block;
}

.top-main-message-img::before {
  top: 0;
  background: linear-gradient(#fff,transparent);
}

.top-main-message-img::after {
  bottom: 0;
  background: linear-gradient(transparent,#fff);
}

.top-main-message-l .sp-only {
  display: none;
}


/*----サービスのご案内----*/

.top-service {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
}

.top-service::before {
  content: '';
  width: 80%;
  height: 80%;
  display: block;
  background-image: url(../img/topserviceback.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.top-service .wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-service h2 {
  border-bottom: 4px solid #FFCC99;
  width: 260px;
  padding-bottom: 10px;
  margin: 0 auto 30px;
  text-align: center;
}

.top-service .wrapper > p {
  margin-bottom: 50px;
}

.top-service-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
  width: 100%;
}


.top-service-link li{
  width: 30%;
  
}

.top-service-link li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 3px solid #ffcc99;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  background-color: white;
  
}



.top-service-link li a p{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
}

.top-service-link li img {
  max-height: 180px;
  transition: all 0.3s ease;
}

.top-service-link li:hover a p {
  background-color: rgba(255, 204, 153, 0.9);
}

.top-service-link li:hover img {
  opacity: 0.7;
}



/*----トップミドル----*/
.top-middle {
  position: relative;
}

.top-middle::before {
  position: absolute;
  width: 100%;
  height: 10%;
  content: '';
  top: 0;
  left: 0;
  background: linear-gradient(#ffffff, transparent);
}


/*タブレット*/
@media (max-width: 1024px) {
  .top-head-message {
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
  }
}


/*スマホ*/
@media (max-width: 768px) {

  /*トップメッセージ*/
	.top-head {
		min-height: 380px;
	}
	
  .top-head-message {
    padding: 0 20px;
	  height: 380px;
  }

  /*トップメニュー*/
  .top-menu-sec .wrapper {
    height: auto;
    padding-top: 30px;
  }

  .top-menu-sec a {
    width: 100%;
    margin:0 auto 30px;
  }

  /*トップメインメッセージ*/
  .top-main-message-l,
.top-main-message-r {
  width: 100%;
}

.top-main-message-l {
  margin-bottom: 30px;
}

.top-main-message-l .sp-only {
  display: block;
}

.top-main-message-r {
  display: none;
}

/*トップサービス*/
.top-service {
  padding-top: 40px;
}

.top-service-link {
  justify-content: center;
}

.top-service-link li{
  width: 100%; 
  max-width: 300px;
  margin-right: 5px;
  margin-left: 5px;
}

.top-service-link li:not(:last-of-type) {
  margin-bottom: 30px;
}

}