@charset "UTF-8";
/* 現地説明会 */
.stoplink_button {
  display: flex;
  justify-content: center;
}
.stoplink_button a {
  background-color: #ef8291;
  color: white;
  border-radius: 100px;
  padding: 16px;
  text-decoration: none;
}
.stoplink_button .app_btn {
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: auto 1em;
  background-color: #ef8291;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .stoplink_button a {
    height: 60px;
    width: 530px;
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .stoplink_button {
    margin: 0;
  }
  .stoplink_button a {
    height: 45px;
    width: 94%;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
  }
}

.briefing_main {
  position: relative;
  margin: 50px 0 0 0;
}
.briefing_main .briefing_title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin: 0 0 20px 0;
  letter-spacing: 1px;
}
.briefing_main p {
  text-align: center;
  font-size: 16px;
}
.briefing_main .memo_box {
  background-color: #fce8e6;
  border-radius: 10px;
  padding: 20px 30px;
  margin: 40px auto 0;
  width: 700px;
}
.briefing_main .memo_box.box2 {
  margin: 20px auto 0;
}
.briefing_main .memo_box h3 {
  color: #77155a;
  font-size: 20px;
}
.briefing_main .memo_box p {
  text-align: left;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .briefing_main {
    margin: 30px 0 0 0;
  }
  .briefing_main .briefing_title {
    font-size: 18px;
  }
  .briefing_main p {
    font-size: 14px;
  }
  .briefing_main .memo_box {
    width: 100%;
    margin: 30px auto 0;
  }
  .briefing_main .memo_box h3 {
    color: #77155a;
    font-size: 16px;
  }
}

/* スケジュール */
.prefecture_group {
  display: flex;
  flex-wrap: wrap;
}
.prefecture_group > .slide_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: #a3a3a3 solid 2px;
  background-color: white;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.prefecture_group > .slide_btn.active {
  border-color: #77155a;
  background-color: #77155a;
  color: white;
}
@media (min-width: 768px) {
  .prefecture_group {
    margin: -7.5px -7.5px 32.5px;
  }
  .prefecture_group > .slide_btn {
    height: 50px;
    border-radius: 25px;
    width: calc(20% - 15px);
    margin: 7.5px;
  }
}
@media (max-width: 767.98px) {
  .prefecture_group {
    margin: -5px -5px 25px;
  }
  .prefecture_group > .slide_btn {
    height: 40px;
    border-radius: 20px;
    font-size: 12px;
    width: calc(33.33% - 10px);
    margin: 5px;
  }
}

.root_list {
  display: flex;
}
.root_list > a {
  text-decoration: none;
  position: relative;
}
.root_list > a > div {
  background-color: white;
  position: relative;
  z-index: 2;
  transition: 0.3s;
  border: #a3a3a3 solid 2px;
}
.root_list > a > div > p {
  transition: 0.3s;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.root_list > a > div > p > span, .root_list > a > div > p > strong {
  line-height: 1.4em;
  display: block;
}
.root_list > a > div > p > span {
  background-color: #ef8291;
  color: white;
  border-radius: 2em;
  text-align: center;
  width: 4em;
}
.root_list > a > div > p > strong {
  font-weight: 500;
}
.root_list > a > div > p.app_btn {
  background-image: url(../../../common/images/icon/arrow_link.svg);
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: auto 1em;
  background-color: #ef8291;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.root_list > a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  background-color: #a3a3a3;
  transition: 0.3s;
}
.root_list > a:hover {
  opacity: 1;
}
.root_list > a:hover > div {
  background-color: white;
  border-color: white;
}
.root_list > a:hover > div > p.app_btn {
  background-color: #ef8291;
}
.root_list > a:hover::after {
  background-color: #ef8291;
}
@media (min-width: 768px) {
  .root_list {
    flex-wrap: wrap;
    margin: -15px;
  }
  .root_list > a {
    width: calc(33.33% - 30px);
    margin: 15px;
    padding: 2px;
  }
  .root_list > a > div {
    display: flex;
    flex-direction: column;
    padding: 6.5px 7.5px 48px;
    border-radius: 7.5px;
    transform: translate(-2px, -2px);
    height: 100%;
  }
  .root_list > a > div > p {
    margin: 10px 7.5px;
  }
  .root_list > a > div > p > span {
    font-size: 12px;
    margin: 0 5px 0 0;
  }
  .root_list > a > div > p > strong {
    font-size: 14px;
    width: calc(100% - 50px);
  }
  .root_list > a > div > p.app_btn {
    font-size: 14px;
    height: 30px;
    border-radius: 15px;
    position: absolute;
    left: 7.5px;
    bottom: 2px;
    width: calc(100% - 30px);
  }
  .root_list > a::after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 7.5px;
  }
  .root_list > a:hover > div {
    transform: translate(0px, 0px);
  }
  .root_list > a:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}
@media (max-width: 767.98px) {
  .root_list {
    flex-direction: column;
    margin: -15px 0;
    padding: 0 24px;
  }
  .root_list > a {
    width: 100%;
    margin: 15px 0;
    padding: 2px;
  }
  .root_list > a > div {
    padding: 7.5px 7.5px;
    border-radius: 7.5px;
    transform: translate(-2px, -2px);
  }
  .root_list > a > div > p {
    margin: 10px 7.5px;
  }
  .root_list > a > div > p > span {
    font-size: 11px;
    margin-top: 3px;
  }
  .root_list > a > div > p > strong {
    font-size: 14px;
    width: calc(100% - 50px);
  }
  .root_list > a > div > p.app_btn {
    font-size: 14px;
    height: 30px;
    border-radius: 15px;
    margin-top: 13px;
  }
  .root_list > a::after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 7.5px;
  }
  .root_list > a:hover > div {
    transform: translate(0px, 0px);
  }
  .root_list > a:hover::after {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
}/*# sourceMappingURL=briefing.css.map */