@charset "UTF-8";

.wrapper {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

/* セクションタイトル */
.section-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
}
.section-title span {
  max-width: 1000px;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}
.section-title::before {
  content: "";
  width: calc((100% - 1000px) / 2);
  height: 1px;
  background-color: #1f1f1f;
  position: absolute;
  top: 12px;
  left: 0;
}

/*-------------------------------------------
メニュー

.pagelink-list {
  display: flex;
  margin-bottom: 80px;
}
.pagelink-list li {
  width: calc(100% / 4);
  border-left: solid 1px #1f1f1f;
  font-size: 14px;
  text-align: center;
  position: relative;
}
.pagelink-list li:last-child {
  border-right: solid 1px #1f1f1f;
}
.pagelink-list li::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #1f1f1f;
  margin: 0 auto;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}
.pagelink-list li a {
  display: block;
}
-------------------------------------------*/


/*-------------------------------------------
Products
-------------------------------------------*/
#products {
  margin-bottom: 120px;
}
#products .item {
  display: flex;
  align-items: center;
  box-shadow: 5px 5px 25px #ccc;
  margin-bottom: 40px;
}
#products .item.left {
  flex-direction: row-reverse;
}
#products .item .text {
  width: 44%;
  padding: 1% 5%;
}
#products .item .text .title-ja {
  font-size: 12px;
  margin-bottom: 5px;
}
#products .item .text .title-en {
	
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
#products .item .text .description {
  font-size: 14px;
  margin-bottom: 20px;
}
#products .item .text .view-more {
  font-size: 14px;
  text-align: right;
  text-decoration: underline;
}
#products .item .img {
  width: 56%;
  overflow: hidden;
}
#products .item.right .img {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
#products .item.left .img {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}
#products .item .img img {
  transition: transform 0.8s ease;
}
#products .item:hover .img img {
  transform: scale(1.1);
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* セクションタイトル */
  .section-title {
    margin-bottom: 10px;
  }
  .section-title::before {
    content: none;
  }

  /*-------------------------------------------
  メニュー

  .pagelink-list {
    margin-bottom: 40px;
  }
  .pagelink-list li {
    font-size: 12px;
  }
  -------------------------------------------*/
  
  /*-------------------------------------------
  Service
  -------------------------------------------*/
  #products {
    margin-bottom: 60px;
  }
  #products .item {
    flex-direction: column;
    margin-bottom: 20px;
  }
  #products .item.left {
    flex-direction: column;
  }
  #products .item .text {
    width: 100%;
    padding: 20px;
  }
  #products .item .text .title-en {
    font-size: 26px;
  }
  #products .item .img {
    width: 100%;
  }
  #products .item.right .img,
  #products .item.left .img {
    clip-path: none;
  }
  
}