@charset "UTF-8";
/* CSS Document */
main {
  background: #e8e8e8;
}
/*▼top-img*/
.top-img-area {
  position: relative;
  width: 100%;
  height: 200px;
  text-align: center;
  overflow: hidden;
  top: 60px;
  margin-bottom: 60px;
}
@media(min-width:770px) {
  .top-img-area {
    height: 300px;
    top: 0;
    margin-bottom: 0px;
  }
}
/*▲top-img*/
/*▼title*/
.side-title {
  text-align: center;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
hr {
  height: 40px;
  width: 1px;
  vertical-align: middle;
  background-color: #fff;
  margin: 0 auto;
}
.side-title h2 {
  margin-top: 10px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
  font-weight: normal;
}
.side-title p {
  font-size: 1.2rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media(min-width:770px) {
  hr {
    height: 60px;
  }
  .side-title h2 {
    margin-top: 10px;
    font-size: 3.2rem;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }
  .side-title p {
    font-size: 1.4rem;
  }
}
/*▲title*/
/*▼button*/
.news-page-button {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  border-radius: 110px;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  background: #e8e8e8;
  color: #656565;
  cursor: pointer;
  transition: all 0.8s;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  padding: 60px;
}
.news-page-button:hover {
  border: 1.4px solid white;
}
.news-page-button:active {
  box-shadow: 4px 4px 12px #fff, -4px -4px 12px #fff;
}
/*▲button*/
/*▼top-button*/
.top-button-area {
  text-align: center;
  padding-top: 40px;
}
.top-button-area ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
}
.top-button-area li {
  padding-right: 20px;
}
.top-button-area ul :last-child {
  padding: 0;
}
@media(min-width:770px) {
  .top-button-area {
    padding-top: 60px;
  }
}
/*▲top-button*/
/*▼news*/
.news-area {
  width: 100%;
  padding: 40px 1% 60px;
}
.news-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 165px));
  gap: 20px;
  justify-content: center;
}
.news-item-frame {
  width: 165px;
  height: 208px;
  border-radius: 50px;
  background: #e8e8e8;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #fff;
  flex-shrink: 0;
}
.news-item-frame:hover {
  border: 1.4px solid white;
}
.news-item-frame:active {
  box-shadow: 4px 4px 12px #333, -4px -4px 12px #fff;
}
.news-item-frame img {
  object-fit: cover;
  width: 100%;
  height: 115.5px;
  border-radius: 50px 50px 0px 0px;
}
.news-time {
  margin: 6px 14px 0px;
  font-size: 1.2rem;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #7E7E7E;
  letter-spacing: 0.1em;
}
.news-heading {
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin: 4px 14px 0px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media(min-width:770px) {
  .news-area {
    width: 100%;
    padding: 60px 15% 80px;
  }
  .news-list {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    gap: 20px;
    justify-content: center;
  }
  .news-item-frame {
    width: 200px;
    height: 250px;
    border-radius: 50px;
    background: #e8e8e8;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #fff;
    flex-shrink: 0;
  }
  .news-area:last-of-type {
    justify-content: flex-start;
  }
  .news-item-frame:hover {
    border: 1.4px solid white;
  }
  .news-item-frame:active {
    box-shadow: 4px 4px 12px #333, -4px -4px 12px #fff;
  }
  .news-item-frame img {
    object-fit: cover;
    width: 100%;
    height: 132px;
    border-radius: 50px 50px 0px 0px;
  }
  .news-time {
    font-size: 1.4rem;
  }
  .news-heading {
    font-size: 1.6rem;
  }
}
/*▲news*/
/*▼bottom-button*/
.bottom-button-area {
  text-align: center;
  padding-bottom: 60px;
}
.bottom-button-area ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  justify-content: center;
}
.bottom-button-area li {
  padding-right: 20px;
}
.bottom-button-area ul :last-child {
  padding: 0;
}
@media(min-width:770px) {
  .bottom-button-area {
    padding-bottom: 80px;
  }
}
/*▲bottom-button*/