.index_main_wrap {
  width: 100%;
  overflow: hidden;
}

.index-header {
  position: relative;
  overflow: hidden;
}
.index-header__photo {
  max-height: 860px;
  max-width: 55.2%;
  margin-left: auto;
  margin-right: 0;
  animation: photo-anim 1.8s ease-in-out forwards;
}
@media screen and (max-width: 767px) {
  .index-header__photo {
    max-height: 100%;
    max-width: 100%;
    margin-left: 0;
    animation: fade-in 1.8s ease-in-out forwards;
  }
  .index-header__photo img {
    width: 100%;
    height: 100%;
  }
}
.index-header__text {
  position: absolute;
  animation: text-anim 2s 0.5s ease-out forwards;
  opacity: 0;
  width: 17.5%;
  height: auto;
  top: 18.5416vw;
  left: 11.04166%;
}
@media screen and (max-width: 767px) {
  .index-header__text {
    width: 80%;
    top: auto;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: fade-in 2s 1s ease-out forwards;
  }
}
@keyframes photo-anim {
  0% {
    opacity: 0;
    transform: translate(100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes text-anim {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.message-wrap {
  padding-top: 7.5rem;
  padding-bottom: 7rem;
}
.message-wrap .messageSwiper {
  overflow: hidden;
  width: 100vw;
}
.message__header {
  margin-bottom: 3rem;
  font-size: 1.125rem;
  position: relative;
  padding-left: 13%;
}
.message__header::before {
  position: absolute;
  content: "";
  background-image: url("/assets/images/index/message-title-img.png");
  background-repeat: no-repeat;
  width: 11.2727%;
  height: 200px;
  max-height: 18.181818vw;
  background-size: contain;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .message__header {
    padding-left: 0;
    padding-top: calc(36.125vw + 2rem);
  }
  .message__header::before {
    left: 50%;
    margin-left: -11.25%;
    width: 22.5vw;
    height: 36.125vw;
    max-height: none;
  }
}
.message__title {
  font-size: 2.25rem;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.message__title > span {
  font-size: 1.5rem;
  display: block;
}
.message__image {
  display: flex;
  justify-content: space-between;
}
.message__image > * {
  width: 30%;
}

.about {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  align-items: center;
}
.about-wrap {
  margin-top: 7.5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .about-wrap {
    margin-top: 0;
    margin-bottom: 7rem;
  }
}
.about--revers {
  flex-direction: row-reverse;
  margin-bottom: 0;
}
.about > * {
  width: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .about {
    flex-direction: column;
    align-items: center;
  }
  .about > * {
    width: 100%;
  }
  .about > *:first-child {
    margin-bottom: 2rem;
  }
}
.about__title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 6.25vw;
  }
}
.about__text {
  font-size: 1.125rem;
}
.about__text > * {
  max-width: 63%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .about__text > * {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .about__text > * {
    max-width: 100%;
  }
}
.about__text .point-text {
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__text {
    padding-right: 1rem;
    padding-left: 1rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .about__text {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.about__text > p {
  margin-bottom: 1.2em;
}
.about > *:first-child {
  position: relative;
}
@media screen and (max-width: 1100px) {
  .about > *:first-child > img {
    position: sticky;
    top: 3rem;
  }
}

.instagram__wrap {
  background: #f4f4f4;
  padding: 5.5rem 0;
}
@media screen and (max-width: 767px) {
  .instagram__wrap {
    padding: 3rem 0;
  }
}
.instagram__title {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .instagram__title {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }
  .instagram__title img {
    width: 100%;
  }
}
.instagram__btn-wrap {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .instagram__btn-wrap {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .instagram__btn-wrap {
    max-width: 80%;
  }
}
.instagram-info {
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .instagram-info {
    margin-bottom: 1rem;
    flex-direction: column;
  }
}
.instagram-info > * {
  width: 46%;
}
@media screen and (max-width: 1100px) {
  .instagram-info > * {
    width: 48%;
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .instagram-info > * {
    width: 100%;
    font-size: 1rem;
  }
}
.instagram-info > * .instagram-btn {
  display: block;
  border: 1px solid #333333;
  padding: 1em 0.5em;
  box-sizing: border-box;
  color: #333333;
  margin-top: 0.5em;
  font-size: 1.125rem;
  background: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease-in;
}
.instagram-info > * .instagram-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .instagram-info > * .instagram-btn {
    margin-bottom: 2rem;
    font-size: 1.125rem;
  }
}
.instagram__message {
  text-align: center;
  font-size: 1.125rem;
}
.instagram__message > a {
  color: #333333;
  text-decoration: underline;
}

.insta-posts {
  width: 100%;
  border: none;
  height: 300px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .insta-posts {
    height: 55vw;
  }
}

.swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-slide > a {
  display: block;
  opacity: 1;
  transition: all 0.3s;
  transition-timing-function: ease-in;
}
.swiper-slide > a:hover {
  opacity: 0.5;
}

.info {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
.info-wrap {
  margin-top: 7.5rem;
  margin-bottom: 8rem;
}
.info__title {
  font-size: 2.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .info {
    flex-direction: column;
  }
}
.info > *:first-child {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .info > *:first-child {
    width: 100%;
  }
}
.info__img > img {
  width: 48.8636%;
}
@media screen and (max-width: 767px) {
  .info__img > img {
    width: 100%;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .info__img {
    width: 60%;
  }
}

/*# sourceMappingURL=index.css.map */
