/*****************************************
*
* 獅子舞
*
******************************************/

/*------------------------------------------*/
/* メイン
/*------------------------------------------*/

.submain-logo {
  background: url('./img/submain.png') no-repeat;
  background-size: 100%;
}

/*------------------------------------------*/
/* guide
/*------------------------------------------*/

@media screen and (min-width: 768px), print {
  .shishimai-guide .cont {
    text-align: left;
  }
}

@media screen and (min-width: 834px), print {
  .shishimai-guide .contents {
    padding: 60px 100px;
  }
}

/* 見出し --------------------------------*/
.shishimai-guide .cont .heading {
  display: inline-block;
  border: solid 1px white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0 10px;
}

.shishimai-guide .cont .heading .min {
  font-size: 1rem;
}

@media screen and (min-width: 834px), print {
  .shishimai-guide .cont .heading {
    font-size: 1.6rem;
    padding: 0 15px;
  }

  .shishimai-guide .cont .heading .min {
    font-size: 1.4rem;
  }
}

/* テキスト --------------------------------*/
.shishimai-guide .cont .text {
  font-size: 1rem;
  margin-top: 20px;
}

.shishimai-guide .cont .text .min {
  font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
  .shishimai-guide .cont .text {
    display: inline-block;
  }
}

@media screen and (min-width: 834px), print {
  .shishimai-guide .cont .text {
    font-size: 1.4rem;
  }

  .shishimai-guide .cont .text .min {
    font-size: 1.2rem;
  }
}


/*------------------------------------------*/
/* 一覧
/*------------------------------------------*/

.shishimai-list-box {
  background: rgba(255, 255, 255, 0.5);
  text-align: left;
  border-radius: 20px;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 2;
  padding: 40px 20px;
}

@media screen and (min-width: 834px), print {
  .shishimai-list-box {
    padding: 40px;
  }
}


/* 見出し --------------------------------*/
.shishimai-list-box .heading {
  display: grid;
  grid-template-columns: 25px 1fr;
  column-gap: 10px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.shishimai-list-box .heading .num {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--color-green);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  color: var(--color-green);
  font-size: 1.2rem;
  font-weight: 700;
  padding-top: 0.1em;
}

.shishimai-list-box .heading h2 {
  color: var(--color-green);
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (min-width: 834px), print {
  .shishimai-list-box .heading {
    grid-template-columns: 35px 1fr;
    column-gap: 10px;
    margin-bottom: 20px;
  }

  .shishimai-list-box .heading .num {
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
  }

  .shishimai-list-box .heading h2 {
    font-size: 2rem;
  }
}

/* catch --------------------------------*/
.shishimai-list-box .catch {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media screen and (min-width: 834px), print {
  .shishimai-list-box .catch {
    font-size: 1.2rem;
  }
}

/* アイコン --------------------------------*/
.shishimai-list-box .category {
  text-align: left;
}

.shishimai-list-box .category li {
  display: inline-block;
  background: var(--color-green);
  border-radius: 4px;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.1;
  padding: 5px;
}

.shishimai-list-box .category li.orange {
  background: var(--color-orange);
}


/* 所在地 --------------------------------*/
.shishimai-list-box .location-wrap {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-weight: 500;
  margin-top: 10px;
}

.shishimai-list-box .location-wrap .location p {
  display: inline-block;
  text-align: center;
  border: solid 1px var(--color-green);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
  padding: 5px 10px;
}

/* ポイント --------------------------------*/
.point-wrap {
  position: relative;
  margin-top: 30px;
}

.shishimai-list-box .point {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/common/oshi-point.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 310/74;
  width: 120px;
  max-width: 100%;
  height: auto;
}

.shishimai-list-box .point::after {
  content: '';
  display: inline-block;
  background: var(--color-green);
  width: calc(100% - 130px);
  height: 2px;
  position: absolute;
  top: 10px;
  right: 0;
}

@media screen and (min-width: 834px), print {
  .shishimai-list-box .point {
    width: 160px;
  }

  .shishimai-list-box .point::after {
    top: 20px;
    width: calc(100% - 180px);
  }
}