@charset "UTF-8";
/* CSS Document */
.main_imgBox {
  height: 50vh;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 30s 0s infinite;
  animation: anime 30s 0s infinite;
}
.main_img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.main_img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}
.main_img:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}
.main_img:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0
  }
}
.section-top {
  padding: 50px 45px 30px;
  margin: 0 auto;
  max-width: 1150px;
}
.section-top_catch-copy img {
  width: 100%;
  max-width: 480px;
}
.section-top_catch-copy p {
  padding: 20px 0 20px;
  line-height: 3.7rem;
  font-size: 1.2rem;
}
.section-top__instagram {
  text-align: right;
  position: relative;
  margin-bottom: 40px;
}
.instagram-button {
  padding: 15px 25px 20px;
  border: solid 0.5px #707070;
  border-radius: 100px;
  width: 180px;
  margin-left: auto;
  font-family: Cormorant Garamond;
  font-size: 2.0rem;
  text-decoration: none;
  color: #5A5E62;
  text-align: left;
  display: inline-block;
  outline: none;
  position: relative;
}
/*矢印と下線の形状*/
.instagram-button::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: 10px;
  left: 15%;
  /*下線の形状*/
  width: 70%;
  height: 0.5px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .3s;
}
.instagram-button::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: 14px;
  right: 25px;
  /*矢印の形状*/
  width: 15px;
  height: 0.5px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.instagram-button:hover::before {
  left: 20%;
}
.instagram-button:hover::after {
  right: 8%;
}
.section-top_catch-copy__image img {
  width: 100%;
  max-width: 530px;
}
@media(min-width: 960px) {
  .main_imgBox {
    height: 100vh;
  }
  .section-top {
    display: flex;
    gap: 5%;
    padding: 70px 45px 100px;
  }
  .section-top_catch-copy {
    text-align: left;
  }
  .section-top_catch-copy img {
    margin-top: 35px;
  }
  .section-top_catch-copy p {
    text-align: left;
    font-size: 1.6rem;
    padding: 20px 0 40px 30px;
  }
}
.section-menu {
  padding: 0px 36px 40px;
  max-width: 1150px;
  margin: 0 auto;
}
.section-menu ul {
  display: flex;
  flex-wrap: wrap;
}
.section-menu ul li {
  display: inline-block;
  position: relative;
  width: 48%;
}
.section-menu ul li img {
  width: 100%;
  opacity: 0.75;
}
.section-menu ul li p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.0rem;
  text-shadow: 0px 3px 3px #aaa;
  font-family: Cormorant Garamond;
}
.section-menu__beside {
  margin-bottom: 5px;
}
.vertical {
  margin-right: 2%;
}
@media(min-width: 768px) {
  .section-menu ul li p {
    font-size: 3.0rem;
  }
}
@media(min-width: 960px) {
  .section-menu ul li p {
    font-size: 3.5rem;
  }
  .section-menu__beside {
    margin-bottom: 20px;
  }
}