.slider-wrap {
  width: 100%;
  height: auto;
}
.slider-wrap .swiper-slide {
  height: auto;
}
.slider-wrap .swiper-slide .box {
  height: 100%;
}

@media print, screen and (min-width: 1080px) {
  .slider-wrap {
    width: auto;
    height: 100vh;
  }
}
.wide-content {
  width: 100%;
  background-color: #F6F6F6;
  padding: 5px 5px 0 5px;
  position: relative;
  z-index: 2;
}
.wide-content > .inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 5px;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  transform: translateY(-30px);
  z-index: 100;
  background-color: #fff;
  border-radius: 10px;
}
.wide-content > .inner .limit {
  width: 100%;
  max-width: 1260px;
  padding: 0 30px 80px 30px;
  margin: 0 auto;
  position: relative;
}

@media print, screen and (min-width: 1080px) {
  .wide-content {
    padding: 30px 30px 0 30px;
  }
  .wide-content > .inner {
    padding: 0 10px;
  }
}
.content {
  padding: 10px 0 10px 0;
  background-color: #fff;
  border-radius: 10px;
}
.content.all {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.content.all .diary {
  grid-column: 1/2;
  grid-row: 1/2;
}
.content.all .news {
  grid-column: 1/2;
  grid-row: 2/3;
}
.content.all .updates {
  grid-column: 1/2;
  grid-row: 3/4;
}

@media print, screen and (min-width: 1080px) {
  .content {
    padding: 60px 30px 60px 30px;
    border-radius: 30px;
  }
  .content.all {
    grid-template-columns: repeat(5, 1fr);
  }
  .content.all .diary {
    grid-column: 1/4;
    grid-row: 1/3;
  }
  .content.all .news {
    grid-column: 4/6;
    grid-row: 1/2;
  }
  .content.all .updates {
    grid-column: 4/6;
    grid-row: 2/3;
  }
}
.diary .inner, .news .inner, .updates .inner {
  padding: 10px 10px;
}
.diary .inner .head, .news .inner .head, .updates .inner .head {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.diary .inner .head .head-title, .news .inner .head .head-title, .updates .inner .head .head-title {
  display: flex;
  align-items: center;
}
.diary .inner .head .head-title img, .news .inner .head .head-title img, .updates .inner .head .head-title img {
  width: 30px;
  height: auto;
  margin-right: 15px;
}
.diary .inner .head .head-title span, .news .inner .head .head-title span, .updates .inner .head .head-title span {
  padding-left: 15px;
  color: #FC792B;
  font-weight: normal;
  font-size: 14px;
}
.diary .inner .head .head-item, .news .inner .head .head-item, .updates .inner .head .head-item {
  font-weight: normal;
  font-size: 16px;
}

@media print, screen and (min-width: 1080px) {
  .diary .inner, .news .inner, .updates .inner {
    padding: 0 30px 0 30px;
  }
  .diary .inner .head, .news .inner .head, .updates .inner .head {
    font-size: 30px;
  }
  .diary .inner .head span, .news .inner .head span, .updates .inner .head span {
    font-size: 26px;
  }
  .diary .inner .head .head-title span, .news .inner .head .head-title span, .updates .inner .head .head-title span {
    font-size: 18px;
  }
  .diary .inner .head .head-title img, .news .inner .head .head-title img, .updates .inner .head .head-title img {
    width: 40px;
  }
}
.diary .inner .block {
  display: flex;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}
.diary .inner .block:last-of-type {
  margin-bottom: 35px;
}
.diary .inner .block:not(:last-of-type) {
  margin-bottom: 40px;
}
.diary .inner .block::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F6F6F6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 15px;
}
.diary .inner .block .img {
  width: 100%;
  max-height: 200px;
}
.diary .inner .block .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.diary .inner .block .comment-wrap {
  padding: 15px;
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.diary .inner .block .comment-wrap .date {
  color: #FC792B;
  display: inline-block;
  border-radius: 15px;
  font-size: 13px;
}
.diary .inner .block .comment-wrap .next-wrap {
  width: 100%;
  text-align: right;
}
.diary .inner .block .comment-wrap .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
.diary .inner .block .comment-wrap .title a {
  color: #333;
}
.diary .inner .block .comment-wrap .desc {
  margin-bottom: 10px;
  flex: 1;
}
.diary .inner .block .comment-wrap .next {
  border-radius: 50px;
  background-color: #FC792B;
  padding: 2px 30px 2px 10px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  position: relative;
  text-decoration: none;
}
.diary .inner .block .comment-wrap .next::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 30px;
  background-color: #fff;
  position: absolute;
  top: 5px;
  right: 6px;
}
.diary .inner .block .comment-wrap .next::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 2px #FC792B;
  border-right: solid 2px #FC792B;
  position: absolute;
  top: 9px;
  right: 11px;
  transform: rotate(45deg);
}

@media print, screen and (min-width: 1080px) {
  .diary .inner .block {
    flex-wrap: nowrap;
  }
  .diary .inner .block::before {
    content: "";
    top: 16px;
    left: 15px;
    width: calc(100% - 20px);
  }
  .diary .inner .block .img {
    width: 100%;
    max-width: 300px;
    max-height: 200px;
  }
  .diary .inner .block .img img {
    border-radius: 15px;
  }
  .diary .inner .block .comment-wrap {
    padding: 30px 20px 0 20px;
  }
  .diary .inner .block .comment-wrap .date {
    position: absolute;
    left: 20px;
    top: -1px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .diary .inner .block .comment-wrap .title {
    font-size: 18px;
  }
}
.dl-news {
  margin-bottom: 20px;
}
.dl-news dt {
  color: #FC792B;
  font-size: 13px;
  padding-left: 15px;
  margin-bottom: -10px;
}
.dl-news dd {
  padding: 10px 15px;
  background-color: #F6F6F6;
  border-radius: 10px;
  margin-bottom: 10px;
}
.dl-news dd a {
  color: #333;
}

@media print, screen and (min-width: 1080px) {
  .dl-news dt {
    font-size: 16px;
  }
}
.catch {
  width: 100%;
  position: relative;
  background-color: #F6F6F6;
}

.important {
  padding: 0 10px 10px;
  z-index: 100;
  display: flex;
  color: #fff;
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
}
.important .head {
  padding: 10px 10px 10px 40px;
  position: relative;
  background-color: #FC792B;
  width: 100%;
  border-radius: 3px 3px 0 0;
}
.important .head svg {
  width: 16px;
  position: absolute;
  top: 10px;
  left: 15px;
}
.important .head::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.2;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translateY(-50%);
}
.important .list-important {
  flex: 1;
  background-color: #FC792B;
  border-radius: 0 0 3px 3px;
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}
.important .list-important li {
  display: flex;
  align-items: center;
  padding: 5px 15px;
}
.important .list-important li a {
  color: #fff;
}

@media print, screen and (min-width: 1080px) {
  .catch {
    flex-wrap: nowrap;
  }
  .important {
    padding: 10px;
    position: absolute;
    bottom: calc(100% + 15px);
    right: 15px;
  }
  .important .head {
    width: auto;
    padding: 10px 20px 10px 40px;
    border-radius: 3px 0 0 3px;
  }
  .important .head::before {
    content: "";
    width: 1px;
    height: 60%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .important .list-important {
    border-radius: 0 3px 3px 0;
  }
}
.slider-wrap {
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.link-btn {
  display: inline-block;
  text-decoration: none;
  padding: 2px 10px;
  border-radius: 6px;
  background-color: #F6F6F6;
  color: #FC792B;
  border: solid 1px #FC792B;
  overflow: hidden;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.link-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FC792B;
  position: absolute;
  top: 0;
  left: 130%;
  display: inline-block;
  transition: left 0.3s ease;
  transform: skewX(-45deg);
}
.link-btn:hover {
  padding: 2px 15px;
  border-radius: 6px 6px 0 6px;
}
.link-btn:hover::after {
  left: 98%;
}