@charset "utf-8";

/* ローディング */
.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fff;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}

.loading_img_wrapper{
  display: inline-block;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading_img {
  animation: loading 5s linear 0ms infinite normal both;
}

@keyframes loading {
  0% { transform: rotate( 0deg ); }
  100% { transform: rotate( 360deg ); }
}

/* ファーストビュー */
.mv_section {
  height: calc(var(--vh, 1vh) * 100);
  margin: 0 auto 4em;
}

.h1 {
  height: inherit;
}

.mv_img {
  height: inherit;
  object-fit: cover;
  object-position: center;
}

.pc_only {
  display: none;
}

/* ファーストビュー SP */
@media screen and (min-width: 821px) {
  .sp_only {
    display: none;
  }

  .pc_only {
    display: block;
  }
}

@media screen and (min-width: 820px) {
  .flex_container {
    max-width: 1000px;
    margin: 0 auto;
    justify-content: start;
  }

  .flex_container > .section {
    width: 46%;
    margin: 0 0 6em 0;
  }
}

/* h2デザイン */

.h2_wrapper {
  text-align: center;
}

.h2 {
  display: inline-block;
}

/* 出店者募集 */

.recruitment_wrapper .button {
  width: 80%;
  max-width: 400px;
  margin: 0 auto 1em auto;
}

@media screen and (min-width: 768px) {
  .flex_container {
    justify-content: space-evenly;
  }

  .flex_container > .section {
    width: 45%;
    margin: 0 0 6em 0;
  }

  .recruitment_wrapper,
  .twitter_wrapper {
    display: inline-block;
    width: 100%;
  }

  .recruitment_wrapper .h2_wrapper {
    display: inline-block;
    width: 18em;
  }

  .recruitment_wrapper .button {
    width: 18em;
    margin: 0 0 1em 0 ;
  }
}

/* ツイッター */

.h2_twitter {
  font-size: var(--font-size-headline_3);
  padding-bottom: 0.75em;
}

.txt_twitter {
  padding-bottom: 0.75em;
}

.twitter_wrapper {
  width: 100%;
}

/* 猫道楽とは */
/* 説明_1 */
.about_nekodouraku_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin-bottom: 2em;
}

.about_nekodouraku_list_item {
  position: relative;
  background-color: #fff;
  border: solid 1px #d1a366;
  width: 17.5em;
  height: 17.5em;
  border-radius: 10em;
  margin: 0 0.25em 2em 0.25em;
}

.about_nekodouraku_list_item .initial {
  position: absolute;
  display: block;
  font-family: "Yuji Syuku", serif;
  font-size: 2.875rem;
  color: #f9f8f4;
  background-color: #be4d4d;
  width: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 10em;
}

.about_nekodouraku_list_item .des_wrapper {
  margin-top: 3em;
}

.about_nekodouraku_list_item .ttl {
  width: 60%;
  font-size: 1.375em;
  line-height: 1.25em;
  text-align: left;
  margin: 0 0 0.5em 4.5em;
}

.about_nekodouraku_list_item .des {
  width: 65%;
  margin: 0 auto;
  text-align: left;
  line-height: 1.5em;
}

/* 説明_2 */
.about_nekodouraku_des h3 {
  word-break: keep-all;
  line-height: 1.25em;
}

.about_nekodouraku_des_list .ttl {
  display: inline-block;
  font-size: var(--font-size-large);
  padding: 0.5em;
  margin-bottom: 1em;
}

.about_nekodouraku_des_list .des {
  margin-bottom: 2.5em;
}

/* 開催概要  */

.overview_list {
  display: flex;
  flex-wrap: wrap;
  border: solid 1px #082839;
  max-width: 600px;
  margin: 0 auto;
}

.overview_list .list_dt {
  background-color: #082839;
  color: #ffffff;
  width: 30%;
  padding: 1.2em 1em;
  line-height: 1.25em;
}

.overview_list .list_dt:not(:last-of-type) {
  border-bottom: solid 1px #ffffff;
}

.overview_list .list_dd {
  background-color: #ffffff;
  width: 70%;
  padding: 1.2em 1em;
  line-height: 1.25em;
  word-break: keep-all;
}

.overview_list .list_dd:not(:last-of-type) {
  border-bottom: solid 1px #082839;
}
/*協賛エリア*/
.co_wrapper{
text-align: center;
max-width: 800px;
	margin: 0 auto;

}
.co_wrapper img{
	background-color: #FFFFFF;
	margin:30Px auto  10px auto;
	width: 50%

}


@media screen and (max-width: 768px) {
	.co_wrapper img{
		width: 50%;
	}
}