@charset "utf-8";
<!--PCとスマートフォンに共通適用されるデザイン情報-->
.title {
  display: inline-block;
  font-weight: 100;
  font-family: "Times New Roman", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro",
    "游明朝", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  font-size: 1rem;
  margin: 0;
}

article {
  margin: 1rem, auto, 1rem;
}

.share {
  padding-right: 2rem;
  margin: 0.5rem, auto, 0.5rem;
  text-align: right;
}

.event {
  margin: 0 auto;
}

a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(19, 42, 219, 0.97);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.2s;
}
a:hover::after {
  transform: scale(1, 1);
}
/*
strong {
  background: linear-gradient(transparent 59%, #b6f0fc 59%);
}*/

.event img {
  display: block;
  margin: auto;
}

.intro {
  overflow: hidden;
  margin: 0 auto;
  line-height: 1.8;
}

.report {
  text-align: right;
}

h1 span {
  display: block;
}


.boxA {
  border: 2px solid #0e63b7;
  border-radius: 4px;
  margin: 1.0em auto 1em;
  padding: 0.5em;
  position: relative;
}

.boxA::before {
  background-color: #fff;
  color: #0e63b7;
  content: "会の詳細";
  font-weight: bold;
  left: 1em;
  padding: 0 0.5em;
  position: absolute;
  top: -1em;
}

li.space1 {
  padding-bottom: 12px;
  padding-top: 12px;
}

li.space2 {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  padding-left: 0em;
}
.list__menu {
  margin: 0.2rem 1rem 1rem -2.4rem;
}
.list__menu li {
  padding-top: 0.6rem;
  padding-bottom: 0rem;
}
.photo img {
  width: 100%;
}

/*戻るボタン*/
#back {
  position: fixed;
  bottom: 2rem;
  right: 0.5rem;
  background-color: rgb(198, 232, 243);
  padding: 0.5rem;
}

.fa-chevron-up {
  font-size: 1rem;
}

.pageTop-chevron {
  color: blue;
  padding: 0.5rem;
}

#back a {
  color: blue;
}
footer {
  margin-top: 2rem;
}
.foot__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 3rem;
}

/*マーカーアニメーション*/

.marker-animation.active {
  background-position: -100% 0.6em;
}

.marker-animation {
  background-image: -webkit-linear-gradient(
    left,
    transparent 50%,
    rgb(255, 127, 127) 50%
  );
  background-image: -moz-linear-gradient(
    left,
    transparent 50%,
    rgb(255, 127, 127) 50%
  );
  background-image: -ms-linear-gradient(
    left,
    transparent 50%,
    rgb(255, 127, 127) 50%
  );
  background-image: linear-gradient(
    left,
    transparent 50%,
    rgb(255, 127, 127) 50%
  );
  background-repeat: repeat-x;
  background-size: 200% 0.8em;
  background-position: 0 0.6em;
  transition: all 1.5s ease;
  font-weight: bold;
}

ul {
  list-style: none;
}
ul li {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.note {
  color: crimson;
}
figure img {
  width: 65vw;
  max-width: 300px;
  height: auto;
}

/*リンク*/

a {
  position: relative;
  display: inline-block;
  font-weight: bolder;
  text-decoration: none;
}
a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(19, 42, 219, 0.97);
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.2s;
}
a:hover::after {
  transform: scale(1, 1);
}
/*タイトルの改行*/
@media screen and (min-width: 700px) {
  .title br {
    display: none;
  }
}

/*Swiper*/
.swiper-pagination-bullet {
  background-color: white;
}

div.swiper{
  margin-bottom: 1.6rem;
}

.swiper-button-next,
.swiper-button-prev {
  text-rendering: auto;
}

/*番号なしList*/
ul.flaglist {
  list-style: none;
  padding-left: 0;
}
ul.flaglist li {
  display: flex;
  align-items: center;
}

/*点滅*/
.blink {
  animation: blink 1s steps(1, start) infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
