@charset "UTF-8";
/* CSS Document */
.section-top {
  margin-bottom: 40px;
}
h1 {
  text-align: center;
  margin-bottom: 15px;
}
.section-top__pc-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
@media(min-width:767px){
	.section-top__pc-image{
		padding-bottom: 40px;
	}
}
#slick-slider {
  width: 100%;
  height: auto;
}
#slick-slider img{
	object-fit: cover;
	width: 100%;
}

@media(min-width:767px) {
  #slick-slider {
    display: none;
  }
}
.section-top__mobile-title {
  width: 70%;
  margin: 50px auto 10px;
}
.section-top_date {
  font-size: 1.8rem;
  font-weight: 700;
}
.section-top__big-text {
  font-size: 3.0rem;
  font-weight: 700;
}
.section-top__medium-text {
  font-size: 1.9rem;
  font-weight: 700;
}
.section-top__time {
  font-weight: 700;
  margin-top: 15px;
}
.section-top_place {
  font-weight: 700;
}
@media(min-width:767px) {
  .section-top__tablet-title {
    display: block;
    text-align: left;
  }
  .section-top__pc-title {
    display: none;
  }
}
.section-message, .section-about, .section-information,.section-instagram,.section-x {
  margin-bottom: 54px;
}
@media(min-width:767px){
	.section-message, .section-about, .section-information,.section-instagram,.section-x  {
  margin-bottom: 70px;
}
}
.section-message h2, .section-about h2, .section-information h2,.section-instagram h2, .section-x h2 {
  padding-bottom: 15px;
}
.section-about__pc-image {
  display: none;
}
.section-about__mobile-image {
  width: 100%;
  height: auto;
}
.section-about__sign {
  width: 80%;
  height: auto;
  padding: 10px 0;
}
.arrow-wrapper {
  display: flex;
  justify-content: flex-end;
}
/*矢印に関する挙動*/
/*矢印が右に移動する*/
.arrow {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 20px;
  color: #333;
  text-decoration: none;
  outline: none;
}
/*矢印と下線の形状*/
.arrow::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -8px;
  left: 15%;
  /*下線の形状*/
  width: 85%;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .3s;
}
.arrow::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: -3px;
  right: 0;
  /*矢印の形状*/
  width: 15px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.arrow:hover::before {
  left: 20%;
}
.arrow:hover::after {
  right: -5%;
}
/*矢印に関する挙動おわり*/
.section-information__image {
  display: none;
}
.section-information ol {
  list-style: none;
}
.section-information ol li {
  padding-bottom: 10px;
}
.section-information a {
  text-decoration: none;
  color: #4c4948;
}
.section-information__view-more {
  padding: 10px;
  text-align: end;
}
.section-x__space{
	padding: 3%;
}



@media(min-width:767px) {
  .section-message h2, .section-about h2, .section-information h2,.section-instagram h2,.section-x h2 {
    padding-bottom: 25px;
  }
  .section-about__wrapper, .section-information__wrapper {
    display: flex;
	  align-items: flex-start;
  }
  .section-about__mobile-image {
    display: none
  }
  .section-about__pc-image, .section-information__image {
    display: block;
    width: 50%;
    height: auto;
    margin-right: 5%;
  }
  .arrow-wrapper {
    margin-top: 15px;
  }
  .section-information ol li time {
    font-size: 1.8rem;
  }
	.section-instagram__post{
		display: flex;
		justify-content: space-around;
	}
	.section-instagram__space{
		padding: 3%;
	}
	.section-x__post{
		display: flex;
		justify-content: space-around;
	}
}