@charset "utf-8";

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-align: center;
/*   background-color: white; */
}

/* ＝＝＝＝＝フォントサイズ＝＝＝＝＝ */
div,p {
  font-size: 16px;
}

a{
  font-size: 20px;
}

.h1 {
  font-size: 48px;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 24px;
  display: block;
  /* font-family: 'Yusei+Magic&display', sans-serif; */
}

.h2 {
  font-size: 36px;
  font-weight: normal;
}

.h3 {
  font-size: 24px;
  font-weight: normal;
}

.h4 {
  font-size: 12px;
  font-weight: normal;
}


/* ＝＝＝＝＝本体の設定＝＝＝＝＝ */

body{
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 1000px;
  margin:0 auto

}

li{
  list-style: none;
}

a {
  text-decoration: none;
}

section{
  margin-top: 20px;
}

.h2{
  padding-top: 10px;
  padding-bottom: 30px;
}

/* ＝＝＝＝＝ヘッダー＝＝＝＝＝ */

.header {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}

.h-img{
  max-width: 30%;
  min-width: 200px;
  height: auto;
}

.h-img img{
  width: 100%;
}
 

.sm-only{
  display: none;
}

/* ＝＝＝＝＝メニューボタン＝＝＝＝＝ */

.menu{
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 80%;
  margin: 0 auto !important;
  text-align: center;      
}


.menu-container{
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.menu-item {
  max-width: 45%;
  min-width: 250px;
  background-color: rgb(253, 228, 192);
  margin-top: 24px;
  padding: 20px;
  /* 画像の上にカーソルが来た時にゆっくり大きくなる */
  transition: all 0.6s ease 0s;
  width: 562px;
  background-color: rgb(253, 228, 192)
}

.menu-item a{
  color: #333;
}

/* ボタンの上にカーソルきたら色変わる */
.menu-item:hover {
  background-color: rgb(252, 180, 87);
}

.menu-item a:hover {
  color: #fff;
}


/* ＝＝＝＝＝イベント一覧＝＝＝＝＝ */

.event-container{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 100%;
    padding: 0;
}

.event-item{
  max-width: 32%;
  min-width:300px ;
  border: solid 1px #333;
  padding: 20px 15px;
  margin: 10px auto;
}

.event-img img{
  width: 100%;
  margin-bottom: 5px;
  box-shadow: 0 0 5px #333;
}

/* 最後の行が奇数個の時に左揃えにする */
.event-container::after {
  display: block;
  content:"";
  max-width: 32%;
  min-width:300px ;
  margin: 10px auto;
}


.event-sentence{
 line-height: 1,2;
}

/* イベントのタグ */

.event-tag {
  color: rgb(59, 12, 0);
  background-color:rgb(253, 228, 192);
  display: inline-block;
  border: 1px solid rgb(253, 228, 192);
  padding: 2px 6px;
  margin: 2px;
}


/* イベント詳細ボタン */

.event-button {
  background-color: rgb(252, 180, 87);
  padding: 1em;
  margin: 15px 0 5px;
}

.event-button a {
  padding: 1em;
  text-decoration: none;
  color: #fff;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5)
}

/* ボタンの上にカーソルきたら色変わる */
.event-button:hover {
  background-color: rgb(253, 228, 192);
  color: #333;
}

.event-button a:hover {
  color: #333;
}


/* ＝＝＝＝＝オフィシャル＝＝＝＝＝ */

.sns-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px; 
  max-width: 80%;
  padding: 0;
  margin: 0 auto 40px;
  /* align-items: center; */
}

.sns-item{
  max-width: 100px;
  margin: 15px auto;
}

.sns-item a{
  /* display: inline-block; */
  justify-content: center;
  padding: 5px;
}

.sns-item img{
  max-width: 100%;
}





/* ＝＝＝＝＝スマホ用＝＝＝＝＝ */

@media screen and (max-width: 768px) {
   /* 文字の大きさ指定 */
  .h1 {
    font-size: 36px;
  }

  .h2 {
    font-size: 24px;
  }

  .h3 {
    font-size: 20px;
  }

  .sm-only{
    display: block;
  }

    /* 文字の改行をとる */
  br.pc-only{
    display: none;
  }


.event-container{
  display: flex;
  justify-content: space-around;
  
  flex-flow: colum;
  max-width: 90%;
}

.event-item{
  width: 100%;
}


}