.wide-content {
  width: 100%;
}
.wide-content .inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--pad);
  position: relative;
}
.wide-content.gray {
  background-color: #f6f6f6;
  padding: 150px 0 120px;
  margin-top: -100px;
}
.wide-content.notice {
  background-color: #FAFFF2;
  position: relative;
  padding: 50px 0;
}
.wide-content.notice::before, .wide-content.notice::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  background: rgb(83, 167, 22);
  background: linear-gradient(90deg, rgb(83, 167, 22) 0%, rgb(83, 167, 22) 33%, rgb(110, 194, 81) 33%, rgb(110, 194, 81) 67%, rgb(67, 130, 21) 67%, rgb(67, 130, 21) 100%);
  opacity: 0.3;
}
.wide-content.notice::before {
  top: 0;
}
.wide-content.notice::after {
  bottom: 0;
}

.fade-wrap {
  position: relative;
  margin-left: 0;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.fade-wrap .fade .fade-block {
  height: 85vh;
  font-size: 0;
  overflow: hidden;
}
.fade-wrap .fade .fade-block.swiper-slide-active img, .fade-wrap .fade .fade-block.swiper-slide-duplicate-active img, .fade-wrap .fade .fade-block.swiper-slide-prev img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}
.fade-wrap .fade .fade-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media print, screen and (min-width: 1080px) {
  .fade-wrap {
    margin-left: 340px;
  }
}
.head-content {
  position: relative;
  margin-bottom: 60px;
}
.head-content .catch {
  font-size: 30px;
  position: absolute;
  top: calc(100svh - 260px);
  left: 20px;
  font-weight: bold;
  color: #666;
  z-index: 100;
}
.head-content .catch .hide {
  color: #fff;
  display: inline;
}
.head-content .catch > div {
  background-color: #fff;
  padding: 5px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: bold;
}
.head-content .catch > div span {
  font-size: 1.08em;
}
.head-content .catch.green div {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media print, screen and (min-width: 1080px) {
  .head-content {
    margin-bottom: 60px;
  }
  .head-content .catch {
    font-size: 32px;
    top: calc(100svh - 320px);
    left: 60px;
  }
}
.notice-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.notice-wrap .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notice-wrap .head .h2-wrap {
  display: flex;
  align-items: flex-start;
}
.notice-wrap .head .h2-wrap img {
  width: 30px;
  height: auto;
  margin-right: 10px;
}
.notice-wrap .head .h2-wrap h2 {
  display: flex;
  align-items: center;
}
.notice-wrap .head .h2-wrap h2 span {
  display: block;
  font-size: 13px;
  color: #999;
  margin-left: 10px;
}
.notice-wrap .head a {
  text-decoration: none;
  color: var(--sc2);
  background-color: #fff;
  border: solid 1px var(--sc2);
  font-size: 14px;
  padding: 5px 20px;
  line-height: 1;
  border-radius: 20px;
}

@media print, screen and (min-width: 1080px) {
  .notice-wrap {
    grid-template-columns: auto 1fr;
    gap: 50px;
  }
  .notice-wrap .head {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .notice-wrap .head .h2-wrap {
    flex-direction: column;
    align-items: center;
  }
  .notice-wrap .head .h2-wrap img {
    width: 40px;
    height: auto;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .notice-wrap .head .h2-wrap h2 {
    flex-direction: column;
    margin-bottom: 10px;
  }
  .notice-wrap .head .h2-wrap h2 span {
    margin-left: 0;
  }
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
}
.about-wrap .img-wrap {
  order: 2;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  max-height: 400px;
  margin-right: 20px;
  border-radius: 0 30px 30px 0;
}
.about-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-wrap .about {
  order: 1;
  display: flex;
  align-items: center;
  padding: 10px 20px 40px;
  justify-content: center;
  background-image: url(../img/point_01.png);
  background-repeat: no-repeat;
  background-size: 140px;
  background-position: 90% 100%;
  margin-bottom: 40px;
}
.about-wrap .about .inner {
  display: grid;
  gap: 20px;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
}
.about-wrap .about .inner span {
  color: var(--mc);
  padding: 0 0.5em;
}

@media print, screen and (min-width: 1080px) {
  .about-wrap {
    grid-template-columns: 4fr 3fr;
    height: 600px;
  }
  .about-wrap .img-wrap {
    order: 1;
    margin-right: 0;
    max-height: none;
  }
  .about-wrap .about {
    order: 2;
    background-position: 78% 100%;
    padding: 10px 30px;
  }
  .about-wrap .about .inner {
    font-size: 20px;
    line-height: 2.2;
  }
}
.h2-top {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h2-top img {
  display: inline-block;
  margin-right: 10px;
}
.h2-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: rgb(83, 167, 22);
  background: linear-gradient(90deg, rgb(83, 167, 22) 0%, rgb(83, 167, 22) 33%, rgb(110, 194, 81) 33%, rgb(110, 194, 81) 67%, rgb(67, 130, 21) 67%, rgb(67, 130, 21) 100%);
}

@media print, screen and (min-width: 1080px) {
  .h2-top {
    font-size: 28px;
  }
}
.insta-wrap {
  padding: 30px;
}
.insta-wrap .h2-wrap {
  position: relative;
}
.insta-wrap .h2-wrap .insta {
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.insta-wrap .h2-wrap .insta a {
  text-decoration: none;
  color: #333;
  display: inline-grid;
  place-items: center start;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  padding: 10px 20px 10px 10px;
  background-color: #f8f8f8;
  border: solid 1px #eee;
  border-radius: 10px;
  position: relative;
  line-height: 1;
}
.insta-wrap .h2-wrap .insta a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #333;
  transform: rotate(45deg);
}
.insta-wrap .h2-wrap .insta a .img-wrap {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.insta-wrap .h2-wrap .insta a .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.insta-wrap .h2-wrap .insta a .text-wrap {
  display: grid;
  font-weight: bold;
  font-size: 13px;
}
.insta-wrap .h2-wrap .insta a .text-wrap span {
  color: #888;
  font-size: 11px;
  font-weight: normal;
  padding-top: 5px;
}
.insta-wrap .swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.insta-wrap .swiper .swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  border-radius: 10px;
  overflow: hidden;
  font-size: 0;
}
.insta-wrap .swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media print, screen and (min-width: 1080px) {
  .insta-wrap {
    padding: 60px 0;
  }
  .insta-wrap .h2-wrap .insta {
    position: absolute;
    top: 0;
    right: 0;
    margin-bottom: 0;
  }
}
.list-insta {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.list-insta li {
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}
.list-insta li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.list-mov {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.list-mov li {
  border-radius: 16px;
  font-size: 0;
  border: solid 8px #ddd;
  background-color: #ddd;
  overflow: hidden;
}
.list-mov li iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .list-mov {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}