@charset "UTF-8";.c-section-copy {
  font-size: 20px;
}
@media (max-width: 767px) {
  .c-section-copy {
    font-size: 16px;
  }
}
.c-section-copy {
  letter-spacing: 0.25;
  font-style: italic;
  font-weight: 500;
}.hero {
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    padding: 0 10px;
  }
}
.hero__image {
  text-align: center;
}
.hero__image-item {
  width: 100%;
  max-width: var(--w-content);
  height: auto;
  display: block;
  margin: auto;
}
.hero__body {
  width: 100%;
  position: absolute;
  bottom: 96px;
}
@media (max-width: 767px) {
  .hero__body {
    bottom: 32px;
  }
}
.hero__copy {
  max-width: var(--w-content);
  padding: 0 80px;
  margin: auto;
  font-size: 24px;
  color: var(--c-white);
  font-weight: bold;
  line-height: 1.7916666667;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 0 0 14px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
  .hero__copy {
    font-size: 13px;
    padding: 0 20px;
  }
}
.hero__copy-line {
  position: relative;
  display: inline-block;
}
.hero__copy-line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: currentColor;
}.fade-up {
  width: fit-content;
  opacity: 0;
  transform: translateY(30px) scale(1.02);
  transition: all 1.5s ease-out;
  will-change: opacity, transform;
}
.fade-up__img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}.bl_intro .fade-up {
  width: 100%;
}.bl_intro {
  padding: 80px 0;
  position: relative;
  isolation: isolate;
}
.bl_intro_bg {
  position: absolute;
  top: 240px;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 1476px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bl_intro_bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, #f8f8f6 0%, rgba(248, 248, 246, 0) 10%, rgba(248, 248, 246, 0) 90%, #f8f8f6 100%);
}
.bl_intro_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .bl_intro_bg {
    top: inherit;
    bottom: -120px;
    height: 800px;
  }
  .bl_intro_bg img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}
.bl_intro_inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-content);
  margin: 0 auto;
  display: flex;
  gap: 136px;
}
@media (max-width: 767px) {
  .bl_intro_inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }
}
.bl_intro_imgStack {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .bl_intro_imgStack {
    flex: none;
    width: 100%;
  }
}
.bl_intro_imgWrap {
  width: 100%;
}
.bl_intro_copy {
  flex: 1;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .bl_intro_copy {
    margin-top: 0;
  }
}
.bl_intro_line__02 {
  margin-top: 4px;
}
.bl_intro_line__03 {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .bl_intro_line__03 {
    margin-top: 24px;
  }
}.stroke-image {
  --offset-x: 24px;
  --offset-y: 20px;
  --border-width: 2px;
  position: relative;
  padding-top: var(--offset-y);
  padding-right: var(--offset-x);
  display: inline-block;
}
@media (max-width: 767px) {
  .stroke-image {
    --offset-x: 16px;
    --offset-y: 12px;
    --border-width: 1px;
  }
}
@media (max-width: 767px) {
  .stroke-image--sp-bottom-right {
    padding-top: 0;
    padding-right: var(--offset-x);
    padding-bottom: var(--offset-y);
    padding-left: 0;
  }
}
.stroke-image__img-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.stroke-image__img {
  display: block;
  width: 100%;
  height: auto;
}

.stroke {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - var(--offset-x));
  height: calc(100% - var(--offset-y));
}
.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: 100%;
}
.stroke .border.top {
  border-top: var(--border-width) solid var(--border-color);
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: var(--border-width) solid var(--border-color);
  left: 0;
  bottom: 0;
}
.stroke .border.right,
.stroke .border.left {
  height: 100%;
}
.stroke .border.right {
  border-right: var(--border-width) solid var(--border-color);
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: var(--border-width) solid var(--border-color);
  left: 0;
  bottom: 0;
}
.stroke.is-animated .border {
  opacity: 1;
}
.stroke.is-animated .border.top,
.stroke.is-animated .border.bottom {
  animation: stroke-width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.stroke.is-animated .border.right,
.stroke.is-animated .border.left {
  animation: stroke-height 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 767px) {
  .stroke-image--sp-bottom-right .stroke {
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
  }
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}.bl_stories .stroke-image {
  display: block;
  width: 100%;
}.bl_stories {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .bl_stories {
    padding: 60px 0;
  }
}
.bl_stories_inner {
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_stories_inner {
    padding: 0 20px;
  }
}
.bl_stories_imgWrap {
  position: relative;
}
.bl_stories_imgWrap__01 {
  width: 58%;
  margin-left: 20%;
}
@media (max-width: 767px) {
  .bl_stories_imgWrap__01 {
    width: 100%;
    margin-left: 0;
  }
}
.bl_stories_imgWrap__02 {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .bl_stories_imgWrap__02 {
    flex: none;
    width: 100%;
  }
}
.bl_stories_imgWrap__03 {
  width: 63%;
  margin-top: -100px;
  z-index: 2;
}
@media (max-width: 767px) {
  .bl_stories_imgWrap__03 {
    width: 100%;
    margin-top: 32px;
    margin-left: -20px;
  }
}
.bl_stories_imgWrap__04 {
  width: 48%;
  margin-left: auto;
  margin-top: -120px;
  margin-right: -10px;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .bl_stories_imgWrap__04 {
    width: 68%;
    margin-top: -70px;
  }
}
.bl_stories_midRow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .bl_stories_midRow {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
  }
}
.bl_stories_copy {
  flex: 0 0 30%;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .bl_stories_copy {
    flex: none;
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
.bl_stories_text {
  line-height: 2.2;
  padding-left: 0;
}
@media (max-width: 767px) {
  .bl_stories_text {
    width: auto;
    transform: none;
  }
}
@media (max-width: 767px) {
  .bl_stories_text .bl_stories_pc-br {
    display: none;
  }
}.bl_activities .stroke-image {
  display: block;
  width: 100%;
}
.bl_activities .bl_activities_fullImg .fade-up {
  width: 100%;
}.bl_activities {
  padding: 120px 0 0;
  position: relative;
  isolation: isolate;
}
@media (max-width: 767px) {
  .bl_activities {
    padding: 60px 0 0;
  }
}
.bl_activities_bg {
  position: absolute;
  top: -840px;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 1584px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bl_activities_bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, #f8f8f6 0%, rgba(248, 248, 246, 0) 10%, rgba(248, 248, 246, 0) 90%, #f8f8f6 100%);
}
.bl_activities_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .bl_activities_bg {
    top: -400px;
    height: 800px;
  }
  .bl_activities_bg img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
}
.bl_activities_inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_activities_inner {
    padding: 0 20px;
  }
}
.bl_activities_imgWrap__01 {
  width: 60%;
  margin-left: 18%;
}
@media (max-width: 767px) {
  .bl_activities_imgWrap__01 {
    width: 100%;
    margin-left: 0;
  }
}
.bl_activities_imgWrap__02 {
  width: 55%;
  margin-left: auto;
  margin-right: 8%;
  margin-top: 64px;
}
@media (max-width: 767px) {
  .bl_activities_imgWrap__02 {
    width: 100%;
    margin-right: 0;
    margin-top: 64px;
  }
}
.bl_activities_text {
  margin-top: 32px;
  margin-left: 18%;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .bl_activities_text {
    margin-top: 28px;
    margin-left: 0;
    line-height: 1.95;
  }
}
.bl_activities_text .bl_activities_sp-br {
  display: none;
}
@media (max-width: 767px) {
  .bl_activities_text .bl_activities_sp-br {
    display: block;
  }
}
.bl_activities_fullImg {
  position: relative;
  z-index: 1;
  margin-top: 200px;
}
@media (max-width: 767px) {
  .bl_activities_fullImg {
    width: 100vw;
    margin-top: 120px;
    margin-left: calc(50% - 50vw);
  }
}
.bl_activities_fullImg :global(img) {
  display: block;
  width: 100%;
  height: auto;
}.bl_scene .stroke-image {
  display: block;
  width: 100%;
  box-sizing: border-box;
}.bl_scene {
  padding: 200px 0 100px;
}
@media (max-width: 767px) {
  .bl_scene {
    padding: 80px 0 60px;
  }
}
.bl_scene_inner {
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_scene_inner {
    padding: 0 20px;
  }
}
.bl_scene_imgWrap__08 {
  width: 59%;
  margin-left: auto;
  margin-right: 4%;
}
@media (max-width: 767px) {
  .bl_scene_imgWrap__08 {
    width: calc(86% - 24px);
    margin-right: 0;
  }
}
.bl_scene_imgWrap__09 {
  width: 59%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .bl_scene_imgWrap__09 {
    width: 84%;
  }
}
.bl_scene_imgWrap__10 {
  width: 43%;
  flex-shrink: 0;
  margin-left: -10%;
  margin-top: 200px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bl_scene_imgWrap__10 {
    width: calc(58% - 24px);
    margin-left: auto;
    margin-top: -60px;
  }
}
.bl_scene_imgWrap__11 {
  width: 58%;
  margin-left: 10%;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .bl_scene_imgWrap__11 {
    width: calc(84% - 24px);
    margin-left: auto;
    margin-top: 180px;
  }
}
.bl_scene_imgRow {
  display: flex;
  align-items: flex-start;
  margin-top: -48px;
}
@media (max-width: 767px) {
  .bl_scene_imgRow {
    display: block;
    margin-top: 96px;
  }
}
.bl_scene_text {
  line-height: 2.2;
  text-align: left;
}
@media (max-width: 767px) {
  .bl_scene_text {
    width: auto;
    transform: none;
  }
}
.bl_scene_text__01 {
  margin-top: 64px;
  margin-left: auto;
  margin-right: 8%;
  width: fit-content;
}
@media (max-width: 767px) {
  .bl_scene_text__01 {
    margin-top: 28px;
    margin-right: 0;
  }
}
.bl_scene_text__02 {
  margin-top: 16px;
  margin-left: 10%;
}
@media (max-width: 767px) {
  .bl_scene_text__02 {
    margin-top: 28px;
    margin-left: 0;
  }
}
.bl_scene_text-line {
  display: inline-block;
}
.bl_scene_text-line--indent {
  padding-left: 1em;
}.bl_campus .fade-up {
  width: 100%;
}.bl_campus {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .bl_campus {
    padding: 60px 0 72px;
  }
}
.bl_campus_inner {
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_campus_inner {
    padding: 0;
  }
}
.bl_campus_gridWrap {
  position: relative;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  margin-left: 8%;
}
@media (max-width: 767px) {
  .bl_campus_gridWrap {
    padding: 0;
    margin-left: 0;
  }
}
.bl_campus_stroke {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.bl_campus_stroke .border {
  position: absolute;
  opacity: 0;
}
.bl_campus_stroke .border.top,
.bl_campus_stroke .border.bottom {
  width: 200px;
}
@media (max-width: 767px) {
  .bl_campus_stroke .border.top,
  .bl_campus_stroke .border.bottom {
    width: 100%;
  }
}
.bl_campus_stroke .border.top {
  border-top: 2px solid #181818;
  right: 0;
  top: 0;
}
.bl_campus_stroke .border.bottom {
  border-bottom: 2px solid #181818;
  left: 0;
  bottom: 0;
}
.bl_campus_stroke .border.right,
.bl_campus_stroke .border.left {
  height: 200px;
}
@media (max-width: 767px) {
  .bl_campus_stroke .border.right,
  .bl_campus_stroke .border.left {
    height: 100%;
  }
}
.bl_campus_stroke .border.right {
  border-right: 2px solid #181818;
  right: 0;
  top: 0;
}
.bl_campus_stroke .border.left {
  border-left: 2px solid #181818;
  left: 0;
  bottom: 0;
}
.bl_campus_stroke.is-animated .border {
  opacity: 1;
}
.bl_campus_stroke.is-animated .border.top,
.bl_campus_stroke.is-animated .border.bottom {
  animation: campus-stroke-w 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bl_campus_stroke.is-animated .border.right,
.bl_campus_stroke.is-animated .border.left {
  animation: campus-stroke-h 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 767px) {
  .bl_campus_stroke {
    display: none;
  }
}
.bl_campus_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (max-width: 767px) {
  .bl_campus_grid {
    gap: 8px;
  }
}
.bl_campus_text {
  margin-left: auto;
  width: fit-content;
  padding-right: 2%;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .bl_campus_text {
    margin-top: 32px;
    margin-left: 20px;
    width: auto;
    padding-right: 0;
    transform: none;
    line-height: 2;
  }
}

@keyframes campus-stroke-w {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 200px;
    opacity: 1;
  }
}
@keyframes campus-stroke-h {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: 200px;
    opacity: 1;
  }
}.bl_moment .stroke-image {
  display: block;
  width: 100%;
  box-sizing: border-box;
}.bl_moment {
  padding: 80px 0 120px;
}
@media (max-width: 767px) {
  .bl_moment {
    padding: 0 0 72px;
  }
}
.bl_moment_inner {
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_moment_inner {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .bl_moment_imgWrap__16 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.bl_moment_middle {
  display: flex;
  align-items: flex-start;
  margin-top: 90px;
}
@media (max-width: 767px) {
  .bl_moment_middle {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.bl_moment_leftCol {
  flex: 0 0 58%;
}
@media (max-width: 767px) {
  .bl_moment_leftCol {
    display: contents;
  }
}
@media (max-width: 767px) {
  .bl_moment_imgWrap__17 {
    order: 1;
    width: auto;
    padding: 0 32px;
  }
}
.bl_moment_imgWrap__18 {
  flex: 0 0 43%;
  margin-left: -8%;
  margin-top: 320px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bl_moment_imgWrap__18 {
    order: 2;
    align-self: flex-end;
    flex: none;
    width: calc(60% - 16px);
    margin-left: auto;
    margin-right: -16px;
    margin-top: -32px;
  }
}
.bl_moment_text {
  margin-top: 80px;
  padding-left: 30%;
  line-height: 2.4;
}
@media (max-width: 767px) {
  .bl_moment_text {
    order: 3;
    width: auto;
    margin-top: 72px;
    padding-left: 20px;
    padding-right: 20px;
    transform: none;
    line-height: 2.1;
  }
}
@media (max-width: 767px) {
  .bl_moment_text .bl_moment_pc-br {
    display: none;
  }
}.bl_festival .stroke-image {
  display: block;
  width: 100%;
  box-sizing: border-box;
}.bl_festival {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bl_festival {
    padding: 36px 0 72px;
  }
}
.bl_festival_inner {
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_festival_inner {
    padding: 0 20px;
  }
}
.bl_festival_imgWrap__19 {
  width: 72%;
  margin-left: 15%;
}
@media (max-width: 767px) {
  .bl_festival_imgWrap__19 {
    width: 100%;
    margin-left: -20px;
  }
}
.bl_festival_midGroup {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .bl_festival_midGroup {
    margin-top: 72px;
  }
}
.bl_festival_midRow {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .bl_festival_midRow {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
}
.bl_festival_imgWrap__20 {
  flex: 0 0 43%;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .bl_festival_imgWrap__20 {
    order: 2;
    flex: none;
    width: 80%;
    margin-top: 32px;
    margin-left: -20px;
  }
}
.bl_festival_imgWrap__21 {
  flex: 0 0 59%;
  margin-left: 8%;
  margin-bottom: 160px;
  position: relative;
  z-index: 3;
}
@media (max-width: 767px) {
  .bl_festival_imgWrap__21 {
    order: 1;
    flex: none;
    width: 90%;
    margin-left: auto;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.bl_festival_imgWrap__22 {
  width: 59%;
  margin-left: 20%;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bl_festival_imgWrap__22 {
    width: 90%;
    margin-left: auto;
    margin-top: 32px;
  }
}
.bl_festival_bottomRow {
  display: flex;
  align-items: flex-start;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .bl_festival_bottomRow {
    display: grid;
    grid-template-columns: calc(56% - 12px) 1fr;
    column-gap: 20px;
    align-items: start;
    margin-top: 96px;
  }
}
.bl_festival_imgWrap__23 {
  flex: 0 0 42%;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bl_festival_imgWrap__23 {
    flex: 0 0 60%;
  }
}
.bl_festival_bottomRight {
  flex: 1;
  margin-left: -8%;
  margin-top: 144px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .bl_festival_bottomRight {
    display: contents;
  }
}
.bl_festival_bottomCopy {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .bl_festival_bottomCopy {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    align-self: start;
    padding-top: 32px;
  }
}
.bl_festival_text {
  width: fit-content;
  margin-bottom: 40px;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .bl_festival_text {
    width: auto;
    margin-bottom: 0;
    transform: none;
    line-height: 2;
  }
}
@media (max-width: 767px) {
  .bl_festival_text .bl_festival_pc-br {
    display: none;
  }
}
.bl_festival_text .bl_festival_sp-br {
  display: none;
}
@media (max-width: 767px) {
  .bl_festival_text .bl_festival_sp-br {
    display: block;
  }
}
@media (max-width: 767px) {
  .bl_festival_imgWrap__24 {
    grid-column: 1/-1;
    grid-row: 2;
    width: calc(84% - 24px);
    margin-left: auto;
    margin-top: -28px;
  }
}.bl_winter .stroke-image {
  display: block;
  width: 100%;
  box-sizing: border-box;
}.bl_winter {
  padding: 80px 0;
  position: relative;
  isolation: isolate;
}
@media (max-width: 767px) {
  .bl_winter {
    padding: 48px 0 72px;
  }
}
.bl_winter_bg {
  position: absolute;
  top: -160px;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 906px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bl_winter_bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, #f8f8f6 0%, rgba(248, 248, 246, 0) 10%, rgba(248, 248, 246, 0) 90%, #f8f8f6 100%);
}
.bl_winter_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .bl_winter_bg {
    top: -280px;
    height: 480px;
  }
  .bl_winter_bg img {
    object-position: center top;
  }
}
.bl_winter_inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_winter_inner {
    padding: 0 20px;
  }
}
.bl_winter_topRow {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .bl_winter_topRow {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}
.bl_winter_imgWrap__25 {
  flex: 0 0 58%;
}
@media (max-width: 767px) {
  .bl_winter_imgWrap__25 {
    order: 2;
    flex: none;
    width: 78%;
    margin-left: -20px;
  }
}
.bl_winter_text {
  flex: 0 0 auto;
  padding-top: 104px;
  padding-left: 8%;
  line-height: 2.4;
}
@media (max-width: 767px) {
  .bl_winter_text {
    order: 1;
    align-self: flex-end;
    padding-top: 0;
    padding-left: 0;
    padding-right: 12px;
  }
}
@media (max-width: 767px) {
  .bl_winter_text-line--indent {
    display: block;
    padding-left: 1em;
  }
}
.bl_winter_midWrap {
  position: relative;
  z-index: 1;
  width: 100vw;
  overflow: hidden;
}
.bl_winter_midGroup {
  display: flex;
  align-items: flex-end;
  margin-top: 80px;
  padding-left: max(50vw - 480px + 48px, 5vw);
}
@media (max-width: 767px) {
  .bl_winter_midGroup {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
    padding-left: 0;
    padding-right: 0;
  }
}
.bl_winter_imgWrap__27 {
  flex: 0 0 400px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .bl_winter_imgWrap__27 {
    order: 2;
    flex: none;
    width: 64%;
    margin-top: 40px;
    margin-right: auto;
    padding-left: 20px;
  }
}
.bl_winter_imgWrap__26 {
  flex: 1;
  margin-left: 8%;
  margin-right: -24px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .bl_winter_imgWrap__26 {
    order: 1;
    flex: none;
    width: 90%;
    padding-bottom: 0;
    margin-top: 52px;
  }
}
.bl_winter_imgWrap__28 {
  width: 63%;
  margin-left: auto;
  margin-top: 240px;
}
@media (max-width: 767px) {
  .bl_winter_imgWrap__28 {
    width: 90%;
    margin-left: auto;
    margin-top: 80px;
  }
}.bl_lifeis .stroke-image {
  display: block;
  width: 100%;
  box-sizing: border-box;
}.bl_lifeis {
  padding: 80px 0 160px;
}
@media (max-width: 767px) {
  .bl_lifeis {
    padding: 56px 0 88px;
  }
}
.bl_lifeis_inner {
  max-width: var(--w-content);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .bl_lifeis_inner {
    padding: 0 20px;
  }
}
.bl_lifeis_heading {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .bl_lifeis_heading {
    margin-bottom: 40px;
  }
}
.bl_lifeis_heading img {
  width: 100%;
  max-width: 404px;
  height: auto;
}
@media (max-width: 767px) {
  .bl_lifeis_heading img {
    max-width: 260px;
  }
}
.bl_lifeis_imgWrap {
  width: 83%;
  margin-left: 9%;
}
@media (max-width: 767px) {
  .bl_lifeis_imgWrap {
    width: 100%;
    margin-left: 8px;
  }
}
.bl_lifeis_text {
  margin-top: 28px;
  margin-left: 9%;
  text-align: center;
}
@media (max-width: 767px) {
  .bl_lifeis_text {
    width: auto;
    margin-top: 44px;
    margin-left: 0;
    transform: none;
    line-height: 2;
  }
}
.bl_lifeis_text .bl_lifeis_sp-br {
  display: none;
}
@media (max-width: 767px) {
  .bl_lifeis_text .bl_lifeis_sp-br {
    display: block;
  }
}.bl_film {
  --film-gap: 36px;
  --film-duration: 36s;
  background: #000;
  padding: 8px 0 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .bl_film {
    --film-gap: 24px;
    --film-duration: 28s;
  }
}
.bl_film_slider {
  overflow: hidden;
  padding: 0 6%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .bl_film_slider {
    padding: 0 18%;
  }
}
.bl_film_track {
  width: max-content;
  min-width: 100%;
  animation: bl-film-marquee var(--film-duration) linear infinite;
  will-change: transform;
}
.bl_film_list {
  display: flex;
  gap: var(--film-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}
.bl_film_slide {
  flex: 0 0 auto;
  width: min(456px, (88vw - var(--film-gap) * 2) / 3);
  padding: 0;
}
@media (max-width: 767px) {
  .bl_film_slide {
    width: min(64vw, 456px);
  }
}
.bl_film_imgWrap {
  position: relative;
  padding: 44px 0;
}
.bl_film_photo {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.bl_film_frame {
  position: absolute;
  top: 0;
  left: 8px;
  width: calc(100% - 16px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

@keyframes bl-film-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--film-loop-width, 0px)), 0, 0);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --c-white: #fff;
  --c-background: $c-background;
  --w-content: 1024px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

.page-campus {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background-color: #f8f8f6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

:where(.c-long-body) {
  transform-origin: 0 0; /* 要素の左上を基準に変形をかける */
  transform: scaleX(0.92); /* 長体率(%) / 100 */
  width: 108.6956521739%; /* 要素幅調整（100 / 長体率(%) * 100）*/
}