@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : outline.css
Description : 開催概要
===================================================================== */
@keyframes textAnime {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
/* =====================================================================
    outline
======================================================================*/
.outline h2.sec_ttl {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  animation: textAnime 1s steps(7) forwards;
  display: inline-block;
}
.outline_list li {
  position: relative;
  padding: calc(40 / 680 * 100%) calc(50 / 680 * 100%);
  letter-spacing: 0.1em;
  line-height: 1.466;
  text-align: left;
  background: url(../images/common/line_dot.png) repeat-x bottom left/50rem;
}
.outline_list_ttl {
  margin-bottom: 0.2em;
  font-weight: 700;
  font-size: 2.4rem;
  color: #d94869;
}
.outline_list p {
  font-weight: 700;
}
.outline_list p strong {
  font-size: 133%;
}
.outline_list p small {
  font-size: 86%;
  letter-spacing: 0;
}
.outline .btn_map_box {
  width: 100%;
  text-align: right;
}
.outline .btn_map {
  position: relative;
  display: inline-block;
  margin: 0.5em 0 0;
  padding: 0.2em 1.8em;
  background: #d94869;
  color: #ffffff;
}
.outline .btn_map::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 0.8em;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.33em solid transparent;
  border-bottom: 0.33em solid transparent;
  border-left: 0.5em solid #ffffff;
  border-right: 0;
  transition: 0.3s ease;
}

@media screen and (min-width: 768px) {
  .outline_list {
    margin: 0 auto;
    max-width: 880px;
  }
  .outline_list li {
    display: flex;
    align-items: center;
    padding: 3.4090909091% 0;
    line-height: 1.625;
    flex-wrap: wrap;
  }
  .outline_list_ttl {
    flex-shrink: 0;
    text-align: center;
    margin: 0 2.2727272727% 0 0;
    width: 19.3181818182%;
    font-size: 100%;
    font-weight: 700;
    color: #d94869;
  }
  .outline_list p {
    flex-grow: 1;
  }
  .outline_list p strong {
    font-size: 150%;
  }
  .outline_list p.pdR10 {
    display: block;
    width: 19.3181818182%;
    margin-right: 25rem;
  }
  .outline .btn_map {
    position: absolute;
    top: calc(50% - 1.5rem);
    right: 3rem;
    display: inline-block;
    margin-top: auto;
  }
}