@charset "utf-8";
/* CSS Document */
main {
  background-color: #FFF9EC;
}
.top {
  position: relative;
}
.main-photo {
  width: 100%;
  height: 60vh;
  position: relative;
  padding-top: 150px;
  margin-left: auto;
  margin-right: auto;
}
.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: solid #FFF9EC;
  border-width: 20px 20px 20px 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 60px;
}
.main-photo::after {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  border: solid #FFF9EC;
  border-width: 20px 20px 20px 20px;
  border-radius: 60px;
}
.top-txt {
  position: absolute;
  bottom: 0;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 5.0rem;
  color: #FFF;
  z-index: 2;
  font-family: adobe-handwriting-frank, sans-serif;
}
.news-wrap {
  width: 100%;
  max-width: 1040px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
.news-title {
  width: 100%;
}
.news-wrap p {
  color: #677C72;
  text-align: left;
  padding-bottom: 30px;
}
.news-wrap h2 {
  font-size: 3.0rem;
  color: #677C72;
  padding-bottom: 60px;
}
.news-con__pic {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}
.news-con__pic img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 30px;
}
.news-con__txt {
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}
.news-con__txt p {
  padding-bottom: 30px;
}
.news-wrap a {
  color: #677C72;
  border: 2px solid #677C72;
  padding: 10px 50px;
  border-radius: 30px;
  transition: background-color .2s ease-out;
}
.news-wrap a:hover {
  background-color: #677C72;
  color: #FFF;
  opacity: 1;
}
@media (max-width:1024px) {
  .news-wrap {
    width: 80%;
  }
  .news-wrap h2 {
    font-size: 2.0rem;
  }
}