@charset "UTF-8";
/* CSS Document */

/*-------------------------------------------
サービス内容
-------------------------------------------*/
.detail {
  background-color: #e9e1d1;
  padding: 60px 0;
  margin-bottom: 40px;
}
.detail .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail .item .img {
  width: 55%;
  margin-right: 5%;
}
.detail .item .img img {
  width: 100%;
}
.detail .item .text {
  width: 40%;
}
.detail .item .text .title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}
.detail .item .text .description {
  line-height: 1.8;
}

/*-------------------------------------------
Photo
-------------------------------------------*/
#photo {
  background: linear-gradient(#FFF1F1 25%, #FFDCDC 25%);
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
#photo .section-title-h {
  margin-bottom: 20px;
}
#photo .photo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
#photo .photo-list li img {
  border-radius: 10px;
}
#photo .photo-list li:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
#photo .photo-list li:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /*-------------------------------------------
  サービス内容
  -------------------------------------------*/
  .detail {
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    padding: 80px 0;
    margin-bottom: 40px;
  }
  .detail .item {
    flex-direction: column;
  }
  .detail .item .img {
    width: 100%;
    margin: 0 0 40px;
  }
  .detail .item .text {
    width: 100%;
  }
  .detail .item .text .title {
    text-align: center;
  }
		
  /*-------------------------------------------
  Photo
  -------------------------------------------*/
  #photo {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  #photo .photo-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #photo .photo-list li:nth-child(2) {
    grid-column: auto;
    grid-row: 3 / 5;
  }
	
}