@charset "UTF-8";

/* TOP */
.top {
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  display: flex;
  flex-direction: column-reverse;
  min-height: 500px;
  padding-top: 30px;
  background-color: #374375;
  background-image: url("../img/top/ichigaya01.png");
  background-size: cover;
  background-position: top center;
  text-align: center;
  color: #fff;
}
.top .top-title {
  padding-bottom: 50px;
  letter-spacing: -0.05em;
  font-size: 80px;
  line-height: 1;
  text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
}
.top .top-title .hiroyuki {
  color: #e0ecff;
}
.top .top-title .ishii {
  color: #ffef6c;
}
.top .news {
  display: block;
  width: 70%;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 40px;
  background-color: rgba(55, 67, 117, 0.3);
}
.top .news .date {
  font-size: 16px;
  font-weight: 500;
}
.top .news .topic + .date {
    padding-top: 10px;
}
.top .news .topic {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* PROFILE */
.profile {
  /* padding-bottom: 50px; */
}
.profile .box .img {
  width: 40%;
}
.profile .box .img img {
  border-radius: 50%;
}
.profile .box .text {
  width: 60%;
}

/* WORKS */
.works {
  clip-path: polygon(0 0, 100% 7%, 100% 93%, 0 100%);
  padding-top: 110px;
  padding-bottom: 100px;
  background-color: #ffef6c;
}
.works .work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 50px;
  font-size: 14px;
}
.works .work-list li img {
  box-shadow: 4px 4px 2px rgba(0,0,0,.4);
}

/* MEMBERSHIP */
.membership {
  /* padding-bottom: 50px; */
}
.membership .box {
  flex-direction: row-reverse;
}
.membership .box .img img {
  /* border-radius: 10px; */
}
.membership .box .text {
  margin-left: 0;
  margin-right: 10px;
}

/* CONTACT */
.contact {
  clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
}

/********************************/
/************ MOBILE ************/
/********************************/

@media screen and (max-width: 767px) {

  /* MOBILE TOP */
  .top {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    min-height: 300px;
    padding-top: 60px;
  }
  .top .top-title {
  font-size: 45px;
  line-height: 0.9;
  letter-spacing: -0.05em;
  padding-bottom: 40px;
  }
  .top .news {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 30px;
  }
  .top .news .date {
    font-size: 12px;
  }
  .top .news .topic + .date {
    padding-top: 10px;
  }
  .top .news .topic {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
  }

  /* MOBILE PROFILE */
  .profile {
  }
  .profile .box .img {
    width: 100%;
  }
  .profile .box .img img {
    width: 60%;
  }
  .profile .box .text {
    width: 100%;
  }
  .profile .box .text .description {
    font-size: 16px;
  }

  /* MOBILE WORKS */
  .works {
    clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .works .work-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .works .btn {
  margin: 0 auto; /* btn中央配置 */
}

  /* MOBILE MEMBERSHIP */
  .membership {
    /* padding-bottom: 30px; */
  }
  .membership .box {
    flex-direction: column;
  }
  .membership .box .img {
    width: 100%;
  }
  .membership .box .img img {
    width: 100%;
  }
  .membership .box .text .description {
    width: 100%;
    margin-right: 0;
    font-size: 16px;
  }

/* MOBILE CONTACT */
  .contact {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%); 
  }

} /* END OF MOBILE */

