@charset "UTF-8";
/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  メインビジュアル
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.mainvisual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.mainvisual-image {
  background-image: url(../images/img_activity_sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
  animation: zoomOut 4s ease-out forwards;
  transform-origin: center;
}
@media screen and (min-width: 768px) {
  .mainvisual-image {
    background-image: url(../images/img_activity.webp);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.mainvisual-title {
  position: absolute;
  bottom: 0;
  left: 3%;
  z-index: 1;
  color: #fff;
}
.mainvisual-title span {
  font-size: clamp(0.875rem, 0.648rem + 1.14vw, 1.5rem);
  font-weight: 500;
}
.mainvisual-title h1 {
  width: 80%;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .mainvisual-title h1 {
    width: 60%;
  }
}

.scroll-icon {
  position: absolute;
  display: grid;
  justify-items: center;
  bottom: 10%;
  right: 3%;
  width: clamp(3.75rem, 2.386rem + 6.82vw, 7.5rem);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .scroll-icon {
    bottom: 3%;
  }
}
.scroll-icon span {
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  color: #fff;
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  イントロダクション
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.introduction {
  background-color: #fff;
  background-image: url(../images/bg_blueprint.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: clamp(10rem, 1.818rem + 40.91vw, 32.5rem);
  padding: clamp(5rem, 3.182rem + 9.09vw, 10rem) clamp(1.5rem, 0.591rem + 4.55vw, 4rem) clamp(3rem, 1.909rem + 5.45vw, 6rem);
}

.introduction-inner {
  max-width: 1024px;
  margin: 0 auto;
}
.introduction-inner p {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  font-weight: 500;
  line-height: 2;
  margin-top: clamp(4rem, 2.545rem + 7.27vw, 8rem);
}

/*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––
//  活動内容
–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/
.activities {
  background-color: #dbe5f0;
  background-image: url(../images/bg_hougan.webp);
  background-position: top left;
  background-size: 30px;
  padding: clamp(5rem, 4.091rem + 4.55vw, 7.5rem) clamp(2rem, 1.273rem + 3.64vw, 4rem);
}

.activities-inner {
  display: grid;
  gap: 8.5333333333vw;
}
@media screen and (min-width: 1280px) {
  .activities-inner {
    gap: 64px;
  }
}

.activities-content {
  background-color: #fff;
  padding: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .activities-content {
    padding: 32px;
  }
}
@media screen and (min-width: 1280px) {
  .activities-content {
    padding: 32px 100px 32px 32px;
    border-radius: 0 30px 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .activities-content.reverse {
    padding: 32px 32px 32px 100px;
    border-radius: 30px 0 0 0;
  }
}

.english-title {
  display: block;
  position: absolute;
  top: -2.1333333333vw;
  left: 0;
  color: #fff;
  font-size: 2.9333333333vw;
  line-height: 0.8;
}
@media screen and (min-width: 1280px) {
  .english-title {
    top: -24px;
    font-size: 32px;
  }
}
.english-title.reverse {
  right: 0;
  left: auto;
}

.activities-item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .activities-item {
    flex-direction: row;
    align-items: center;
    gap: clamp(5rem, -4.943rem + 15.91vw, 9.375rem);
  }
}
@media screen and (min-width: 1280px) {
  .activities-item.reverse {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1280px) {
  .activities-image {
    width: 35.8333333333vw;
  }
}
.activities-image img {
  width: 100%;
}

.activities-text h3 {
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
}
.activities-text p {
  margin-top: clamp(2rem, 1.091rem + 4.55vw, 4.5rem);
  font-size: 15px;
  text-align: justify;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .activities-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1280px) {
  .activities-text p {
    max-width: 480px;
  }
}/*# sourceMappingURL=activities.css.map */