@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl  {
  font-size: 3.5em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  font-family: "Parisienne", cursive;
  color: #fff;
}
.common__ttl > span {
  position: relative;
}
.common__ttl > span span {
  letter-spacing: -0.03em;
}
		.common__ttl > span::before {
			content: "";
			background: url(../img/deco-title1.png) no-repeat center top / contain;
			width: 1.2em;
			height: 0.6em;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: 0.38em;
			left: -1.43em;
		}
		.common__ttl > span::after {
			content: "";
			background: url(../img/deco-title2.png) no-repeat center top / contain;
			width: 1.2em;
			height: 0.6em;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: 0.36em;
			right: -1.35em;
		}

.common__ttl.left  {
  text-align: left;
  margin-left: 1.4em;
}
.common__ttl.big  {
  font-size: 4em;
}

@media (max-width: 767px) {
  .common__ttl  {
    font-size: 3.2em;
  }
  .common__ttl.left  {
    text-align: center;
    margin-left: 0;
  }
  .common__ttl.big  {
    font-size: 3.2em;
  }
  .common__ttl.small_sp  {
    font-size: 3.2em;
  }
}
@media (max-width: 360px) {
  .common__ttl.small_sp  {
    letter-spacing: 0.025em;
  }
}



.common__btn {
  width: max(150px, 20.5rem);
  /* height: max(45px, 6.2rem); */
  margin: 0 auto;
}

/* .common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 2.8rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  background-color: var(--brown);
  width: 5.3rem;
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.common__btn a span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  font-family: var(--font-en);
  color: var(--brown);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
} */
@media (max-width: 767px) {
  .common__btn {
    width: max(190px, 22rem);
  }
}


/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}


@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  width: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  z-index: 2;
}

.hero::before {
  background: url("../img/hero_bg-1.png") repeat-x center / contain;
  height: 36.4rem;
  top: 0;
}

/* .hero::after {
  background: url("../img/hero_bg-2.png") repeat-x center / contain;
  height: 35.7rem;
  bottom: 0;
} */

/* .hero::after {
  content: "";
  background: url(../img/bar1.png) no-repeat center top / contain;
  width: 100%;
  height: 4.5rem;
  position: absolute;
  bottom: -4.5rem;
  left: 0;
  z-index: 1;
} */


.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-family: var(--font-en);
  font-size: max(12px, 1.8rem);
  color: var(--white);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  z-index: 100;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(50px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  padding: 10.5rem 0 10rem;
}

.policy__contents {
  width: 92rem;
  border: solid 1px #b3b3b3;
  text-align: center;
  padding: 6.3rem 8.9rem 5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    padding: 6rem 5% 5rem;
  }
}

.policy__contents h2 {
  font-size: max(18px, 3rem);
  font-weight: 500;
  color: #b2b2b2;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.policy__contents h2::before {
  content: "";
  display: block;
  background: url("../img/policy_ttl-deco.png") no-repeat center / contain;
  width: max(232.3px, 42.6rem);
  height: max(6px, 1.1rem);
}

.policy__contents p {
  letter-spacing: 0.2em;
  line-height: 2.5;
  margin-top: 2rem;
}

.policy__contents span::before,
.policy__contents span::after {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 11.6rem;
  height: 11.6rem;
  position: absolute;
}

.policy__contents span:nth-of-type(1):before {
  top: -0.3rem;
  left: -0.3rem;
}

.policy__contents span:nth-of-type(1)::after {
  transform: scale(-1, 1);
  top: -0.3rem;
  right: -0.3rem;
}

.policy__contents span:nth-of-type(2):before {
  transform: scale(1, -1);
  bottom: -0.3rem;
  left: -0.3rem;
}

.policy__contents span:nth-of-type(2)::after {
  transform: scale(-1, -1);
  bottom: -0.3rem;
  right: -0.3rem;
}

/*============================
	menu
============================*/
.menu {
  padding: 13.5rem 0 14rem;
  position: relative;
  background: url(../img/back-menu.jpg) no-repeat center top / cover;
}

@media (max-width: 767px) {
.menu {
  padding: 8rem 0 16rem;
  }
}

.menu__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;  
  justify-content: space-between;  
  gap: 6.5rem;
  margin: 0rem 0 0 0;
  padding-right: 17rem;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding-right: 0;
  }
}

.menu__txt-wrapper {
  flex-basis: 38%;
  padding-top: 0rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    padding-top: 0;
  }
}

.menu__txt-wrapper h2 {
  margin-bottom: 3rem;
}

.menu__txt-wrapper h3 {
  font-size: 1.375em;
  font-weight: 900;
  line-height: 1.73;
  letter-spacing: 0.05em;
  padding: 0.5rem 0 1.5rem;
}

.menu__txt-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin: 2rem 0 5rem;
}

@media (max-width: 1100px) {
  .menu__txt-wrapper {
    flex-basis: 44%;
  }
}
@media (max-width: 900px) {
  .menu__txt-wrapper {
    flex-basis: 52%;
  }
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  flex: 1;
  margin-right: 0rem;
}
.menu__img img {
  width: 100%;
  height: auto;
  object-fit: inherit;
  overflow: inherit;
  vertical-align: inherit;
}

@media (max-width: 767px) {
    .menu::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
    }

  .menu__txt-wrapper h2 {
    margin-bottom: 5rem;
  }
  .menu__txt-wrapper p {
    line-height: 2.0;
    margin: 2rem 0 9rem;
    padding-right: 0rem;
  }
  .menu__img {
    width: 100%;
    margin: 0;
  }
  .menu__contents {
    padding-left: 0;
    margin-inline: auto;
  }
}




/*============================
	menu2
============================*/
.menu2 {
  padding: 3rem 0 12rem;
  position: relative;
background: url(../img/back-cast.jpg) no-repeat center top / cover;
}

@media (max-width: 767px) {
.menu2 {
    padding: 15rem 0 20rem;
    position: relative;
    background: url(../img/back-cast.jpg) no-repeat right top / cover;
  }

      .menu2::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.65);
    }

}

.menu2__contents {
  width: 120rem;
  display: flex;
  gap: 4rem;
  margin: 4rem auto 0;
}

@media (max-width: 767px) {
  .menu2__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu2__txt-wrapper {
  width: 100%;
  padding-top: 5rem;
}

@media (max-width: 767px) {
  .menu2__txt-wrapper {
    padding-top: 0;
  }
}

.menu2__txt-wrapper h3 {
  font-size: max(13px, 2.1rem);
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding: 0.5rem 0 1.5rem;
}

.menu2__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.0;
  margin: 3rem 0 6rem;
  text-align: center;
}

.menu2__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: -9rem;
}

@media (max-width: 767px) {
  .menu2__txt-wrapper p {
    line-height: 2.0;
    margin: 2rem 0 8rem;
    padding-right: 0rem;
  }
  .menu2__img {
    width: 100%;
    margin: 0;
  }
}





/*============================
	news
============================*/
.news {
  background: url(../img/back-news.jpg) no-repeat center top / cover;
  padding: 13rem 0 12rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: flex;
  gap: 6rem 4rem;
  margin: 5.5rem auto 6rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    flex-direction: column;
    margin: 8.5rem auto 10rem;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
  width: 34rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    width: 100%;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 23rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
  margin-right: 2rem;
}

.CMS-NEWS-TIME {
  font-size: 0.9em;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  /* border-bottom: 0.06rem solid #fff; */
  margin-bottom: 1rem;


    /* border-bottom: 0.06rem solid;
    border-image: linear-gradient(to right, #f0c131 0.56%, #f7e7a4 25.2%, #bc8e31 59.5%, #e7d085 87%, #f8eba2 100%);
    border-image-slice: 1; */
    border-bottom: 0.1rem solid #999;

}
@media (max-width: 767px) {
  .CMS-NEWS-LINK {
    font-size: 1.1em;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	insta
============================*/
.insta {
  background: url(../img/back-insta.jpg) no-repeat center top / cover;
  padding: 13rem 0 15rem;
  color: #000;
}

.insta__contents {
  width: 95rem;
  margin: 7.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 3rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 29.5rem;
  height: 29.5rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}


/*============================
	gallery
============================*/
.gallery {
  background: url(../img/back-gallery.jpg) no-repeat center top / cover;
  padding: 13.5rem 0 11.5rem;
}

.gallery__slider {
  margin: 5rem 0 7.5rem;
  padding: 1rem 0;
  /* background: linear-gradient(to right, #f0c131 0.56%, #f7e7a4 25.2%, #bc8e31 59.5%, #e7d085 87%, #f8eba2 100%); */
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30.4rem;
  margin-left: 1.3rem;
}




/*============================
	access
============================*/
.access {
  background: url(../img/back-access.jpg) no-repeat center top / cover;
  padding: 12rem 0 12rem;
}

.access__map {
  height: 45rem;
}
.access__map.gray {
  filter: grayscale(100%);
}
@media (max-width: 767px) {
  .access {
    padding: 13rem 0 14rem;
  }
  .access__map {
    height: 65rem;
  }
}


.access__contents {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 2rem 7.1rem;
  margin: 7rem 0 0;
  
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    margin: 5rem auto 0;
    flex-direction: column-reverse;
  }
}

.access__text {
  flex-basis: 38%;
}
.access__img {
  flex-basis: 44.8%;
}
.access__img img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  width: max(90px, 12.5rem);
  font-weight: 400;
  /* display: flex; */
  /* justify-content: center; */
  padding: 2.7rem 0 2.7rem 1rem;
}

.access__list dd {
  width: calc(100% - max(90px, 12.5rem));
  /* border-bottom: solid 1px #5e2c00; */
  padding: 2.7rem 0 2.7rem 2rem;
    /* border-bottom: 0.06rem solid;
    border-image: linear-gradient(to right, #f0c131 0.56%, #f7e7a4 25.2%, #bc8e31 59.5%, #e7d085 87%, #f8eba2 100%);
    border-image-slice: 1; */
        border-bottom: 0.1rem solid #999;

}
.access__list dd:last-of-type {
  border-bottom: none;
}

@media (min-width: 768px) {
  .access__list dt {
  /* border-bottom: solid 1px #fff; */

    /* border-bottom: 0.06rem solid;
    border-image: linear-gradient(to right, #f0c131 0.56%, #f7e7a4 25.2%, #bc8e31 59.5%, #e7d085 87%, #f8eba2 100%);
    border-image-slice: 1; */
      border-bottom: 0.1rem solid #999;

  }
.access__list dt:last-of-type {
  border-bottom: none;
}

  .access__list dt:first-of-type {
    /* border-top: solid 1px var(--brown); */
  }

  .access__list dd:first-of-type {
    /* border-top: solid 1px var(--white); */
    /* padding: 1.1rem 0 1.1rem 2rem; */
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    justify-content: flex-start;
    padding: 4rem 1.6rem 1rem;
    font-weight: bold;
  }

  .access__list dd {
    padding: 0 1.6rem 4rem;
    position: relative;
  }

}

.access .common__btn {
  margin: 6rem 0 0;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 5rem auto 0;
  }
}






/*============================
	cast
============================*/
.cast {
  padding: 10.5rem 0 10rem;
  position: relative;
  background: url(../img/back-cast.jpg) no-repeat center top / cover;
}

@media (max-width: 767px) {
  .cast {
    padding: 8rem 0 16rem;
    background: url(../img/back-cast.jpg) no-repeat left -20rem top / cover;
  }
}

.cast__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;  
  justify-content: space-between;  
  gap: 6.5rem;
  margin: 0rem 0 0 0;
  padding-right: 17rem;
}

@media (max-width: 767px) {
  .cast__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding-right: 0;
  }
}

.cast__txt-wrapper {
  flex-basis: 38%;
  padding-top: 0rem;
}

@media (max-width: 767px) {
  .cast__txt-wrapper {
    padding-top: 0;
  }
}

.cast__txt-wrapper h2 {
  margin-bottom: 3rem;
}

.cast__txt-wrapper h3 {
  font-size: 1.375em;
  font-weight: 900;
  line-height: 1.73;
  letter-spacing: 0.05em;
  padding: 0.5rem 0 1.5rem;
}

.cast__txt-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin: 2rem 0 5rem;
}

@media (max-width: 1100px) {
  .cast__txt-wrapper {
    flex-basis: 44%;
  }
}
@media (max-width: 900px) {
  .cast__txt-wrapper {
    flex-basis: 52%;
  }
}

@media (min-width: 768px) {
  .cast .common__btn {
    margin: 0;
  }
}

.cast__img {
  flex: 1;
  margin-right: 0rem;
}
.cast__img img {
  width: 100%;
  height: auto;
  object-fit: inherit;
  overflow: inherit;
  vertical-align: inherit;
}

@media (max-width: 767px) {
    .cast::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

  .cast__txt-wrapper h2 {
    margin-bottom: 5rem;
  }
  .cast__txt-wrapper p {
    line-height: 2.0;
    margin: 2rem 0 9rem;
    padding-right: 0rem;
  }
  .cast__img {
    width: 100%;
    margin: 0;
  }
  .cast__contents {
    padding-left: 0;
    margin-inline: auto;
  }
}








.blog {
  width: max-content;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .blog {
    width: 500px;
  }
}

.blog__ttl {
  background-color: var(--white);
  width: 100%;
  color: var(--black);
  line-height: 1.8;
  text-align: center;
}

@media (min-width: 768px) {
  .blog iframe {
    width: 100% !important;
    height: 400px !important;
  }
}






/*============================
	Recruit
============================*/
.recruit {
  background: url(../img/back-recruit.jpg) no-repeat center top / cover;
  padding: 11rem 0 10rem;
  color: #fff;
}
.recruit__txtwrapper {
  max-width: 70rem;
  margin: 0 auto;
}

.recruit h3 {
  text-align: center;
  margin: 5rem 0 0rem;
  line-height: 2;
  font-size: max(17px, 2.2rem);
  font-weight: 900;
  line-height: 1.75;
}

.recruit p {
  text-align: center;
  margin: 4rem 0 7rem;
  line-height: 2;
}
@media (max-width: 1000px) {
.recruit__txtwrapper {
    max-width: 95rem;
  }
}
@media (max-width: 767px) {
  .recruit {
    padding: 13rem 0 12rem;
  }
  .recruit__txtwrapper {
    width: 90%;
    margin: 0 auto;
  }
}




/*============================
	concept
============================*/
.concept {
  background: 
  url(../img/bar-recruit.png) no-repeat center top / 100%,
  url(../img/bar-recruit.png) no-repeat center bottom / 100%,
  url(../img/back-recruit.jpg) no-repeat center top / cover;
  padding: 10rem 0 11rem;
  color: #fff;
}
.concept__txtwrapper {
  max-width: 47rem;
  margin: 0 auto;
}
.concept h3 {
  text-align: center;
  margin: 3rem 0 0rem;
  line-height: 2;
  font-size: max(17px, 2.2rem);
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.concept p {
  text-align: center;
  margin: 2.8rem 0 4rem;
  line-height: 2.25;
  font-weight: 500;

}
@media (max-width: 1000px) {
  .concept__txtwrapper {
    max-width: 75rem;
  }
}
@media (max-width: 767px) {
  .concept {
    padding: 13rem 0 13rem;
  }
  .concept__txtwrapper {
    width: 90%;
    margin: 0 auto;
  }
  .concept h3 {
    margin: 4rem 0 0rem;
  }
  .concept p {
    margin: 4rem 0 6rem;
  }
}







/*============================
	sister
============================*/
.sister {
  padding: 10.5rem 0 10rem;
  position: relative;
  background: url(../img/back-sister.jpg) no-repeat center top / cover;
}

@media (max-width: 767px) {
  .sister {
    padding: 14rem 0 3rem;
    background: url(../img/back-sister.jpg) no-repeat right top / cover;
  }
}

.sister__contents {
  width: 100%;
  display: flex;
  flex-direction: row;  
  justify-content: space-between;  
  gap: 6.5rem 5.5em;
  margin: 0rem 0 0 0;
  padding-left: 17rem;
}

@media (max-width: 767px) {
  .sister__contents {
    width: 90%;
    flex-direction: column;
    padding-right: 0;
  }
}

.sister__txt-wrapper {
  flex-basis: 40%;
  padding-top: 0rem;
}

@media (max-width: 767px) {
  .sister__txt-wrapper {
    padding-top: 0;
  }
}

.sister__txt-wrapper h2 {
  margin-bottom: 3rem;
}

.sister__txt-wrapper h3 {
  font-size: 1.375em;
  font-weight: 900;
  line-height: 1.73;
  letter-spacing: 0.05em;
  padding: 0.5rem 0 1.5rem;
}

.sister__txt-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin: 1rem 0 4rem;
  padding-right: 3rem;
}

.sister__img {
  flex: 1;
  margin-right: 0rem;
  padding-top: 2em;
}
.sister__img img {
  width: 28em;
  height: auto;
  object-fit: inherit;
  overflow: inherit;
  vertical-align: inherit;
}

.sister__wrap {
  display: flex;
}
.sister_insta {
  margin-left: 2em;
}
.sister_insta img {
  width: 2.8em;
  height: auto;
}

@media (max-width: 1100px) {
  .sister__txt-wrapper {
    flex-basis: 47%;
  }
}
@media (max-width: 900px) {
  .sister__contents {
    gap: 6.5rem 2.5em;
  }
  .sister__txt-wrapper {
    flex-basis: 60%;
  }
  .sister__img img {
    width: 20em;
  }
}

@media (min-width: 768px) {
  .sister .common__btn {
    margin: 0;
  }
}

@media (max-width: 767px) {
    .sister::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.6);
    }

  .sister__txt-wrapper h2 {
    margin-bottom: 5rem;
  }
  .sister__txt-wrapper p {
    line-height: 2.0;
    margin: 2rem 0 5rem;
    padding-right: 0rem;
  }
  .sister__img {
    width: 100%;
    margin: 0;
    text-align: center;
    padding-top: 0;
  }
  .sister__img img {
    width: 70%;
  }
  .sister__contents {
    padding-left: 0;
    margin-inline: auto;
  }
.sister__wrap {
  display: flex;
  flex-direction: column-reverse;
}
.sister_insta {
  margin: 0em auto 2em;
}
.sister_insta img {
  width: 2.8em;
  height: auto;
}
}




