/* oym memo 
* ・スクロール時のis_show追加
* ・縦方向のmarginでは理由がない限りvwは使用しない
*/
/***
* Main Visual
*/
.topMV {
  position: relative;
  height: calc(100dvh - var(--header-height));
}
@media screen and (max-width: 980px) {
  .topMV {
    height: calc(100dvh - var(--header-sp-height));
  }
}
.topMv_sliderArea {
  width: 86%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .topMv_sliderArea {
    width: 100%;
  }
}
.slider_wrap {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--header-height));
}
.slider_wrap {
  opacity: 0;
  transition: opacity .3s linear;
}
.slider_wrap.slick-initialized{
  opacity: 1;
}
@media screen and (max-width: 980px) {
  .slider_wrap {
    height: calc(100dvh - var(--header-sp-height));
  }
}
.slider_wrap .slick-list {
  height: 100%;
}
.slider_wrap.slick-slider .slick-track {
  height: 100%;
}


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

/* .slider_item {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 980px) {
  .slider_item {
    width: 100%;
  }
} */
/* .slider_item img {
  animation-duration: 25s;
  animation-iteration-count: infinite;
  animation-name: slideAnime;
  animation-timing-function: ease;
  display: flex;
  width: 100%;
  height: calc(100vh - var(--header-height));
  opacity: 0;
}
@media screen and (max-width: 980px) {
  .slider_item img {
    height: calc(100vh - var(--header-sp-height));
  }
}
.slider_item img.slider_item_sp {
  display: none;
}
.slider_item:nth-of-type(1) img {
  animation-delay: 0s;
}
.slider_item:nth-of-type(2) img {
  animation-delay: 5s;
}
.slider_item:nth-of-type(3) img {
  animation-delay: 10s;
}
.slider_item:nth-of-type(4) img {
  animation-delay: 15s;
}
.slider_item:nth-of-type(5) img {
  animation-delay: 20s;
}
@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  9% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
} */
.slider_item img {
  object-fit: cover;
  object-position: top;
}
.topMv_caption {
  font-size: clamp(2.4rem, 3vw, 4.8rem);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
  color: var(--color-white);
  font-weight: 500;
  position: absolute;
  top: 200px;
  left: 20%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 980px) {
  .topMv_caption {
    font-size: clamp(2.0rem, 5vw, 4.8rem);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
}
.topMv_scroll {
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 700;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.topMv_scroll p::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  width: 2px;
  height: 50px;
  background: var(--color-white);
  animation: pathmove 1.4s ease-in-out infinite;
  /*opacity: 0;*/
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 20px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}

/***
* Top Message
*/
.topMessage {
  position: relative;
  min-height: 590px;
}
@media screen and (max-width: 980px) {
  .topMessage {
    padding: 0 max(2%, 15px);
  }
}
.topMessage_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 980px) {
  .topMessage_wrapper {
    max-width: 690px;
    margin: 0;
  }
}
/* left */
.topMessage_content {
  margin-top: 120px;
  margin-left: 30px;
}
@media screen and (max-width: 980px) {
  .topMessage_content {
    margin-top: 60px;
    margin-left: 0;
  }
}
.topMessage_logo {
  width: 480px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(15px);
  transition: all .5s ease;
}
.is_show .topMessage_logo {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .topMessage_logo {
    max-width: 245px;
    width: 73%;
    margin-bottom: 25px;
  }
}
.topMessage_txt {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 700;
  opacity: 0;
  transform: translateY(15px);
  transition: all .5s ease .3s;
}
.topMessage_txt:nth-of-type(2) {
  transition: all .5s ease .8s;
}
.is_show .topMessage_txt {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 980px) {
  .topMessage_txt {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.topMessage_txt + .topMessage_txt {
  margin-top: 40px;
}
@media screen and (max-width: 980px) {
  .topMessage_txt + .topMessage_txt {
    margin-top: 25px;
  }
}
/* right */
.topMessage_img_content {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 980px) {
  .topMessage_img_content {
    opacity: .4;
  }
}
.topMessage_img_inner {
  display: flex;
  opacity: 0;
  transition: all 5s ease .5s;
}
.is_show .topMessage_img_inner {
  opacity: 1;
}
.topMessage_img_inner:first-of-type {
  width: 450px;
  gap: 0 130px;
  margin: 0 0 0 auto;
}
.topMessageIcon_01, .topMessageIcon_02 {
  display: block;
  width: 160px;
  height: 160px;
}
.topMessageIcon_01 {
  background: var(--color-lightgray);
  opacity: 0;
  transform: translateY(30px);
  transition: all .5s ease;
}
.is_show .topMessageIcon_01 {
  opacity: 1;
  transform: translateY(0);
}

.topMessageIcon_02 {
  background: var(--color-blue);
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease;
}
.is_show .topMessageIcon_02 {
  opacity: 1;
  transform: translateY(0);
}

.topMessage_img_inner:nth-of-type(2) {
  width: 290px;
  margin: 0 0 0 auto;
  gap: 0 80px;
}
.topMessageIcon_03 {
  display: block;
  width: 130px;
  height: 130px;
  background: var(--color-green);
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease .2s;
}
.is_show .topMessageIcon_03 {
  opacity: 1;
  transform: translateY(0);
}

.topMessageIcon_04 {
  background: var(--color-lightgray);
  width: 80px;
  height: 80px;
  margin-top: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease .5s;
}
.is_show .topMessageIcon_04 {
  opacity: 1;
  transform: translateY(0);
}

.topMessage_img_inner:nth-of-type(3) {
  width: 570px;
  margin: 0 0 0 auto;
}
.topMessage_img_inner img {
  width: 280px;
  height: 280px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s ease .8s;
}
.is_show .topMessage_img_inner img {
  opacity: 1;
  transform: translateY(0);
}

.topMessageIcon_05, .topMessageIcon_06 {
  display: block;
  width: 80px;
  height: 80px;
}
.topMessageIcon_05 {
  background: var(--color-lightgray);
  margin-left: 130px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease .8s;
}
.is_show .topMessageIcon_05 {
  opacity: 1;
  transform: translateY(0);
}

.topMessageIcon_06 {
  background: var(--color-green);
  margin-top: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease 1.2s;
}
.is_show .topMessageIcon_06 {
  opacity: 1;
  transform: translateY(0);
}
/***
* Top Service
*/
.topService {
  padding: 160px 0 0;
  position: relative;
}
@media screen and (max-width: 980px) {
  .topService {
    padding: 60px max(2%, 15px);
  }
}
.topService_wrapper,
.topChildcare_support_wrapper,
.topStaffing_wrapper,.topRecruitment_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .topService_wrapper,
  .topChildcare_support_wrapper,
  .topStaffing_wrapper,.topRecruitment_wrapper {
    width: 100%;
    padding: 0;
  }
}
.topService_link {
  display: flex;
}
@media screen and (max-width: 980px) {
  .topService_link {
    display: block;
  }
}
.topService_content{
  flex: 1;
}
@media screen and (max-width: 980px) {
  .topService_content {
    max-width: 580px;
    width: 86%;
  }
}
.sp_topService_title {
  display: none;
}
@media screen and (max-width: 980px) {
  .sp_topService_title {
    display: block;
    max-width: 180px;
    width: 70%;
    min-width: 180px;
    border-top: 1px solid;
    font-size: 2.8rem;
    font-weight: 700;
    opacity: 0;
    /* transform: translateY(15px); */
    transition: all .5s ease;
  }
  .is_show .sp_topService_title {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 980px) {
  .sp_topService_title span {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
  }
}
.topService_image {
  width: 55%;
  transform: translateX(-30%);
  opacity: 0;
  transition: all 1.5s ease .5s;
}
@media screen and (max-width: 980px) {
  .topService_image {
    margin-top: 20px;
    width: 86%;
    max-width: 580px;
    transform: translateY(30px);
  }
}
.is_show .topService_image {
  opacity: 1;
  transform: translateX(-20%);
}
@media screen and (max-width: 980px) {
  .is_show .topService_image {
    transform: translateY(0);
  }
}
.topService_image img {
  width: 100%;
}

.topService_title,
.topChildcare_support_title,
.topStaffing_title,.topRecruitment_title {
  font-size: 4rem;
  font-weight: 700;
  opacity: 0;
  /* transform: translateY(30px); */
  transition: all .5s ease;
}
.is_show .topService_title,
.is_show .topStaffing_title {
  opacity: 1;
  /* transform: translateY(0); */
}
@media screen and (max-width: 980px) {
  .topChildcare_support_title,.topRecruitment_title {
    font-size: 2.8rem;
  }
}
.topService_title{
  width: 230px;
  border-top: 1px solid;
}
.topStaffing_title {
  width: 230px;
  border-top: 1px solid;
}
@media screen and (max-width: 980px) {
  .topService_title {
    display: none;
  }
}
.topService_title span,
.topChildcare_support_title span,
.topStaffing_title span,.topRecruitment_title span {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 980px) {
  .topChildcare_support_title span,.topRecruitment_title span {
    font-size: 1.4rem;
  }
}
.topService_txtInner {
  margin-top: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .3s;
}
.is_show .topService_txtInner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .topService_txtInner {
    margin-top: 20px;
  }
}
.topService_txt,
.topChildcare_support_txt,
.topStaffing_txt,.topRecruitment_txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 980px) {
  .topService_txt,
  .topChildcare_support_txt,
  .topStaffing_txt,.topRecruitment_txt,.sp_topRecruitment_txt {
    font-size: 1.6rem;
  }
}
.topService_txt {
  margin-bottom: 25px;
}
.topService_decoration_text {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 40%;
  z-index: -1;
}
@media screen and (max-width: 980px) {
  .topService_decoration_text {
    width: 65%;
    bottom: 40px;
    left: auto;
  }
}
.topService_decoration_text img {
  width: 100%;
}
/***
* Top Childcare_support
*/
.topChildcare_support {
  padding: 200px 0 100px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .topChildcare_support {
    padding: 60px max(2%, 15px);
  }
}
.topChildcare_support_link {
  display: flex;
  column-gap: 5.7%;
}
@media screen and (max-width: 980px) {
  .topChildcare_support_link {
    justify-content: end;
    column-gap: min(6%, 50px);
  }
}
.topChildcare_support_titleInner {
  writing-mode: vertical-rl;
  opacity: 0;
  /* transform: translateY(100px); */
  transition: all .5s ease;
  transform: translateY(70px);
}
.is_show .topChildcare_support_titleInner {
  opacity: 1;
  transform: translateY(70px);
}
@media screen and (max-width: 980px) {
  .topChildcare_support_titleInner {
    /* transform: translateY(60px); */
    transform: translateY(40px);
  }
  .is_show .topChildcare_support_titleInner {
    transform: translateY(40px);
  }
}
.line {
  display: block;
  width: 1px;
  height: 280px;
  background: var(--color-black);
}
@media screen and (max-width: 980px) {
  .line {
    height: 200px;
  }
}
.topChildcare_support_title {
  transform: none;
  opacity: 1;
}

.topChildcare_support_content {
  width: 88%;
  max-width: 1000px;
}
@media screen and (max-width: 980px) {
  .topChildcare_support_content {
    width: 100%;
  }
}
.topChildcare_support_image {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease .3s;
}
.is_show .topChildcare_support_image {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .topChildcare_support_image {
    max-width: 580px;
    width: calc(100% + max(2%, 15px));
  }
}
.topChildcare_support_image img {
  width: 100%;
}
.topChildcare_support_txtInner {
  display: flex;
  position: relative;
  margin: 40px 0 60px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease .8s;
}
.is_show .topChildcare_support_txtInner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .topChildcare_support_txtInner {
    display: block;
    margin: 25px 0 0;
  }
}
.topChildcare_support_txt {
  margin-right: 70px;
}
@media screen and (max-width: 980px) {
  .topChildcare_support_txt {
    margin: 0 0 25px;
  }
}
.topChildcare_support_txtInner .viewBtn::before {
  display: block;
  width: 2px;
  height: 100px;
  background: var(--color-black);
  content: "";
  margin-right: 25px;
}
a:hover .topChildcare_support_txtInner .viewBtn {
  gap: 25px;
}
@media screen and (max-width: 980px) {
  .topChildcare_support_txtInner .viewBtn::before {
    display: none;
  }
  a:hover .topChildcare_support_txtInner .viewBtn {
    gap: 0 30px;
  }
}
.topChildcare_support_decoration_text {
  position: absolute;
  bottom: -116px;
  z-index: -1;
}
@media screen and (max-width: 980px) {
  .topChildcare_support_decoration_text {
    width: max(65%, 200px);
    bottom: 0;
  }
}
@media screen and (max-width: 980px) {
  .topChildcare_support_decoration_text img {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .topChildcare_support_txtInner .viewBtn {
    justify-content: end;
    /*transform: translateX(-30px);*/
  }
}
.topChildcare_support_bg {
  position: absolute;
  top: -100px;
  right: -360px;
  z-index: -1;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease 1s;
}
@media screen and (max-width: 980px) {
  .topChildcare_support_bg {
    width: 40%;
    top: -8vw;
    right: -30px;
  }
}
.is_show .topChildcare_support_bg {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 980px) {
  .topChildcare_support_bg img,.topRecruitment_bg img {
    width: 100%;
  }
}
/***
* Top Staffing
*/
.topStaffing {
  padding: 152px 0 140px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .topStaffing {
    padding: 92px max(2%, 15px) 60px;
  }
}
.topStaffing_img_content {
  display: flex;
}
.topStaffingIcon_01 {
  display: block;
  width: 11vw;
  height: 11vw;
  background: var(--color-lightgray);
  position: absolute;
  top: calc(150px + -18.8vw);
  left: 0;
  z-index: -2;
  opacity: 0;
  transform: translateY(30px);
  transition: all .5s ease;
}
.is_show .topStaffingIcon_01 {
  opacity: 1;
  transform: translateY(0);
}
.topStaffingIcon_02 {
  display: block;
  width: 7.8vw;
  height: 7.8vw;
  background: var(--color-green);
  position: absolute;
  top: calc(150px + -7.8vw);
  left: 11vw;
  z-index: -2;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease .2s;
}
.is_show .topStaffingIcon_02 {
  opacity: 1;
  transform: translateY(0);
}

.topStaffing_link {
  display: flex;
  column-gap: 50px;
}
.topStaffing_content {
  width: 60%;
}
@media screen and (max-width: 980px) {
  .topStaffing_link {
    display: block;
  }
  .topStaffing_content {
    width: 100%; 
  }
}
.sp_topStaffing_title {
  display: none;
}
@media screen and (max-width: 980px) {
  .sp_topStaffing_title {
    display: block;
    width: 175px;
    height: 90px;
    border-top: 1px solid;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 0 auto;
    opacity: 0;
    /* transform: translateY(30px); */
    transition: all .5s ease .1s;
  }
  .is_show .sp_topStaffing_title {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 980px) {
  .sp_topStaffing_title span {
    font-size: 1.4rem;
    display: block;
  }
}
.topStaffing_image {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1.5s ease .3s;
}
.is_show .topStaffing_image {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 980px) {
  .topStaffing_image {
    max-width: 580px;
    width: 100%;
  }
}
.topStaffing_image img {
  width: 100%;
}
.topStaffing_txtInner {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease .3s;
}
.is_show .topStaffing_txtInner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .topStaffing_txtInner {
    margin-top: 25px;
  }
}
.topStaffing_txt {
  margin-bottom: 25px;
}
.topStaffing_decoration_text {
  position: absolute;
  top: 110px;
  right: -20%;
  width: 80%;
  z-index: -1;
  opacity: 0;
  transform: translateY(30px);
  transition: all .5s ease;
}
@media screen and (max-width: 980px) {
  .topStaffing_decoration_text {
    width: 70%;
    top: auto;
    bottom: 20px;
    right: 0;
  }
}
.is_show .topStaffing_decoration_text {
  opacity: 1;
  transform: translateY(0);
}
.topStaffing_decoration_text img {
  width: 100%;
}
.topStaffing_titleInner {
  transform: translateY(70px);
}
@media screen and (max-width: 980px) {
  .topStaffing_titleInner {
    display: none;
  }
}
/***
* Top Recruitment
*/
.topRecruitment {
  padding: 100px 0 140px;
}
@media screen and (max-width: 980px) {
  .topRecruitment {
    padding: 60px max(2%, 15px) 140px;
  }
}
.topRecruitment_content {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(10%);
  transition: all 1.5S ease .3s;
  column-gap: 5.7%;
  position: relative;
}
@media screen and (max-width: 980px) {
  .topRecruitment_content {
    justify-content: flex-start;
    column-gap: min(6%, 50px);
    transform: none;
  }
}
.is_show .topRecruitment_content {
  opacity: 1;
  transform: translateX(10%);
}
@media screen and (max-width: 980px) {
  .is_show .topRecruitment_content {
    transform: none;
  }
}
.topRecruitment_titleInner {
  writing-mode: vertical-rl;
  opacity: 0;
  transition: all .5s ease;
  transform: translateY(70px);
}
.is_show .topRecruitment_titleInner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .topRecruitment_titleInner {
    transform: translateY(40px);
  }
  .is_show .topRecruitment_titleInner {
    transform: translateY(0px);
  }
}
.topRecruitment_titleInner .line {
  height: 230px;
}
@media screen and (max-width: 980px) {
  .topRecruitment_titleInner .line {
    height: 160px;
  }
}
.topRecruitment_title {
  transform: none;
  opacity: 1;
}
.topRecruitment_image {
  opacity: 0;
  transform: translateY(50px) ;
  transition: all 1.5s ease .3s;
}
.is_show .topRecruitment_image {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 980px) {
  .topRecruitment_image {
    max-width: 580px;
    width: calc(100% + max(2%, 15px));
  }
}
.topRecruitment_image img {
  width: 100%;
}
.topRecruitment_bg {
  position: absolute;
  bottom: -130px;
  right: -360px;
  z-index: -1;
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s ease 1s;
}
.is_show .topRecruitment_bg {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 980px) {
  .topRecruitment_bg {
    width: 40%;
    bottom: -4vw;
    right: -30px;
  }
}
@media screen and (max-width: 480px) {
  .topRecruitment_bg {
    bottom: auto;
    top: 22vw;
  }
}
.sp_topRecruitment_txtInner{
  display: none;
}
@media screen and (max-width: 480px) {
  .sp_topRecruitment_txtInner {
    display: block;
    transform: translateY(75px);
    transition: all 1.5s ease .8s;
  }
}
@media screen and (max-width: 480px) {
  .is_show .sp_topRecruitment_txtInner {
    transform: translateY(25px);
  }
}
@media screen and (max-width: 480px) {
  .sp_topRecruitment_txtInner .topRecruitment_txt {
    border: none;
    padding: 0;
    margin: 25px 0;
  }
}
.topRecruitment_txtInner {
  display: inline-block;
  margin: 40px 0 60px;
  opacity: 0;
  transform: translate(20%,50px);
  transition: all 1.5s ease .8s;
}
.is_show .topRecruitment_txtInner {
  opacity: 1;
  transform: translate(20%,0);
}
@media screen and (max-width: 980px) {
  .topRecruitment_txtInner {
    margin: 25px 0 0;
    transform: translate(0,50px);
  }
}
@media screen and (max-width: 980px) {
  .is_show .topRecruitment_txtInner {
    transform: translate(0);
  }
}
@media screen and (max-width: 480px) {
  .topRecruitment_txtInner {
    display: none;
  }
}
.topRecruitment_txt{
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 30px;
  margin-bottom: 30px;
  max-width: 500px;
}
.topRecruitment_txtInner .viewBtn,.sp_topRecruitment_txtInner .viewBtn{
  justify-content: flex-end;
}
.topRecruitment_decoration_text{
  position: absolute;
  bottom: 20px;
  z-index: -1;
}
@media screen and (max-width: 980px) {
  .topRecruitment_decoration_text {
    width: max(65%, 200px);
    bottom: -40px;
  }
}
@media screen and (max-width: 480px) {
  .topRecruitment_decoration_text {
    bottom: 30px;
    right: 0;
  }
}
@media screen and (max-width: 980px) {
  .topRecruitment_decoration_text img {
    width: 100%;
  }
}