@charset "utf-8";
/* 学生の四季 */
.schedule-wrap {
  background-image: url(../../images/campuslife/schedule-wrap-bg.png);
  background-repeat: repeat-y;
  background-size: contain;
  position: relative;
}
.schedule-wrap::before,
.schedule-wrap::after {
    content: "";
    width: 15px;
    height: 15px;
  border-radius: 50%;
    background-color: #00843b;
    position: absolute;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.schedule-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 3.5rem;
}

.schedule-l,
.schedule-r {
  width: 46%;
}

.mt-adjustment-r {
    margin-top: 50px;
}
.mt-adjustment-l {
    margin-top: 75px;
}

.schedule-date ul {
  margin: 15px 0 0 10px;
  list-style: inside;
  font-size: 85%;
}

.schedule-month {
  font-size: 2rem;
    font-weight: bold;
  position: relative;
}

#april .schedule-month::before,
#june .schedule-month::before,
#august .schedule-month::before,
#october .schedule-month::before,
#december .schedule-month::before,
#february .schedule-month::before {
    content: "";
    width: 110%;
    position: absolute;
    left: 0;
    border-bottom: solid 1px #00843b;
    bottom: -5%;
}
#april .schedule-month::after,
#june .schedule-month::after,
#august .schedule-month::after,
#october .schedule-month::after,
#december .schedule-month::after,
#february .schedule-month::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: solid 1px #00843b;
    position: absolute;
    background: #fff;
    z-index: 1;
    left: 108%;
    bottom: -32%;
    transform: translateY(-50%) translateX(-35%);
}

#may .schedule-month::before,
#july .schedule-month::before,
#september .schedule-month::before,
#november .schedule-month::before,
#january .schedule-month::before,
#march .schedule-month::before {
    content: "";
    width: 110%;
    position: absolute;
    right: 0;
    border-bottom: solid 1px #00843b;
    bottom: -5%;
}
#may .schedule-month::after,
#july .schedule-month::after,
#september .schedule-month::after,
#november .schedule-month::after,
#january .schedule-month::after,
#march .schedule-month::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 100%;
    border: solid 1px #00843b;
    position: absolute;
    background: #fff;
    z-index: 1;
    right: 104%;
    bottom: -32%;
    transform: translateY(-50%) translateX(-40%);
}


.schedule-month span {
  font-size: 1.5rem;
  margin-right: 10px;
}



.anniversaries {
    list-style: none;
    font-size: 16px;
    font-weight: bold;
}


#april .schedule-month,
#april .anniversaries {
  color: #EB748D;
}
#april .schedule-img img {
  box-shadow: 10px 10px 0px 0px #EB748D;
}

#may .schedule-month,
#may .anniversaries {
  color: #76D06F;
}
#may .schedule-img img {
  box-shadow: -10px 10px 0px 0px #76D06F;
}

#june .schedule-month,
#june .anniversaries {
  color: #A99CDF;
}
#june .schedule-img img {
  box-shadow: 10px 10px 0px 0px #A99CDF;
}

#july .schedule-month,
#july .anniversaries {
  color: #FAC10F;
}
#july .schedule-img img {
  box-shadow: -10px 10px 0px 0px #FAC10F;
}

#august .schedule-month,
#august .anniversaries {
  color: #6FC2EA;
}
#august .schedule-img img {
  box-shadow: 10px 10px 0px 0px #6FC2EA;
}

#september .schedule-month,
#september .anniversaries {
  color: #3CAB3B;
}
#september .schedule-img img {
  box-shadow: -10px 10px 0px 0px #3CAB3B;
}

#october .schedule-month,
#october .anniversaries {
  color: #7383D5;
}
#october .schedule-img img {
  box-shadow: 10px 10px 0px 0px #7383D5;
}

#november .schedule-month,
#november .anniversaries {
  color: #F0A037;
}
#november .schedule-img img {
  box-shadow: -10px 10px 0px 0px #F0A037;
}

#december .schedule-month,
#december .anniversaries {
  color: #CE4241;
}
#december .schedule-img img {
  box-shadow: 10px 10px 0px 0px #CE4241;
}

#january .schedule-month,
#january .anniversaries {
  color: #B862D8;
}
#january .schedule-img img {
  box-shadow: -10px 10px 0px 0px #B862D8;
}

#february .schedule-month,
#february .anniversaries {
  color: #FDA5A5;
}
#february .schedule-img img {
  box-shadow: 10px 10px 0px 0px #FDA5A5;
}

#march .schedule-month,
#march .anniversaries {
  color: #C2CB4C;
}
#march .schedule-img img {
  box-shadow: -10px 10px 0px 0px #C2CB4C;
}

.schedule-img img {
  margin-top: 25px;
}

.fadein-content {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.is-visible {
  opacity: 1;
}

.fadein-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}


.fadein-block ul li span:first-child {
    margin-right: 10px;
}

.is-visible .fadein-block {
  opacity: 1;
  transform: translateY(0);
}

/* 在学生インタビュー */
.interview-box {
    padding-bottom: 35px;
}
.profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 25px;
    overflow: hidden;
}

.profile .date-right,
.profile .date-left {
    width: 25%;
    font-size: 1.75rem;
    font-weight: bold;
    /* color: #00843b; */
    color: #000;
    padding: 15px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.profile .date-right::before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, transparent, #ffffff);
    transform-origin: top right;
}

.profile .date-right p {
    position: absolute;
    left: -25%;
    bottom: 0;
}

.profile .date-left::before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(-90deg, transparent, #ffffff);
    transform-origin: top left;
}

.profile .date-left p {
    position: absolute;
    left: 15%;
    bottom: 0;
}

.profile .date-right span,
.profile .date-left span {
    font-size: 1rem;
    font-weight: normal;
}
.profile img {
    width: 75%;
}

/* モニター幅960px以下 */
@media only screen and (max-width:960px){

}


/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:767px){
    .schedule-wrap {
        background-image: none;
    }
    .schedule-wrap::before,
    .schedule-wrap::after {
        content: none;
    }
    .schedule-box {
        padding-bottom: 2.5rem;
    }
    .schedule-l,
    .schedule-r {
      width: 100%;
    }

    .mt-adjustment-r,
    .mt-adjustment-l {
        margin-top: 0;
    }

    #april .schedule-month::before,
    #june .schedule-month::before,
    #august .schedule-month::before,
    #october .schedule-month::before,
    #december .schedule-month::before,
    #february .schedule-month::before,
    #may .schedule-month::before,
    #july .schedule-month::before,
    #september .schedule-month::before,
    #november .schedule-month::before,
    #january .schedule-month::before,
    #march .schedule-month::before {
    content: none;
    }
    #april .schedule-month::after,
    #june .schedule-month::after,
    #august .schedule-month::after,
    #october .schedule-month::after,
    #december .schedule-month::after,
    #february .schedule-month::after,
    #may .schedule-month::after,
    #july .schedule-month::after,
    #september .schedule-month::after,
    #november .schedule-month::after,
    #january .schedule-month::after,
    #march .schedule-month::after {
        content: none;
    }
    .profile {
        flex-wrap: wrap;
        overflow: unset;
    }
    .profile img {
        width: 100%;
    }
    .profile .date-right, 
    .profile .date-left {
        width: 100%;
        font-size: 1.25rem;
        padding: 15px 5px;
    }
    .profile .date-right p,
    .profile .date-left p  {
        position: inherit;
        left: 0;
        margin-bottom: 0;
    }

    .profile .date-right::before,
    .profile .date-right::before {
        content: none;
    }

}

/* スマートフォン 縦(ポートレート) */
@media only screen and (max-width:480px){
}