@charset "UTF-8";
@media screen and (max-width: 768px) {
  .breadcrumbs_wrap {
    max-width: 100%;
    overflow-x: scroll;
  }
}

.breadcrumbs {
  white-space: nowrap;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding-top: 10px;
  padding-bottom: 5px;
  font-size: 0.8125rem;
}
.breadcrumbs ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.breadcrumbs a:after {
  content: ">";
  display: inline-block;
  margin: 0 5px;
}

.mfp_phase_progress {
  margin-bottom: 60px !important;
}

div.mfp_thanks {
  padding: 0 10px 10px;
}
div.mfp_thanks #mfp_thanks {
  padding: 0 0 10px;
  font-size: 14px;
}
div.mfp_thanks #mfp_thanks span {
  display: block;
  font-size: 25px;
  font-weight: bold;
}

ul#mfp_phase_stat.mfp_phase_progress {
  margin: 0 0 80px;
  padding: 0;
  z-index: 0;
  position: relative;
  display: flex;
  justify-content: center;
}
ul#mfp_phase_stat.mfp_phase_progress li {
  width: 25%;
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 0;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
ul#mfp_phase_stat.mfp_phase_progress li::before {
  width: 20px;
  height: 20px;
  line-height: 20px;
  content: "";
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  border: solid 3px #009FE8;
}
ul#mfp_phase_stat.mfp_phase_progress li:not(:first-child)::after {
  width: calc(100% - 20px);
  height: 2px;
  content: "";
  position: absolute;
  background-color: #CCC;
  top: 9px;
  left: calc(-50% + 10px);
  z-index: -1;
}
ul#mfp_phase_stat.mfp_phase_progress li.mfp_active_phase::before {
  background-color: #009FE8;
  animation: blink 1.2s ease-in-out infinite alternate;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ul#mfp_phase_stat.mfp_phase_progress {
  justify-content: center;
}

.outline_section .outline_table {
  width: 100%;
}
.outline_section .outline_table dl {
  display: flex;
  flex-wrap: wrap;
}
.outline_section .outline_table dl:not(:last-child) {
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .outline_section .outline_table dl:not(:last-child) {
    border-bottom: 1px solid #CCC;
    margin-bottom: 0;
  }
}
.outline_section .outline_table dt,
.outline_section .outline_table dd {
  padding: 10px;
}
@media screen and (min-width: 769px) {
  .outline_section .outline_table dt,
  .outline_section .outline_table dd {
    padding: 30px;
  }
}
.outline_section .outline_table dt {
  width: 100%;
  text-align: left;
  font-weight: bold;
  background: #E1F3FF;
}
@media screen and (min-width: 769px) {
  .outline_section .outline_table dt {
    width: 200px;
  }
}
.outline_section .outline_table dd {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .outline_section .outline_table dd {
    width: calc(100% - 200px);
  }
}
.outline_section .address_info p {
  margin-bottom: 0;
}
.outline_section .address_info + .address_info {
  margin-top: 15px;
}

.rule_list {
  display: flex;
  flex-direction: column;
  counter-reset: rule;
  gap: 40px;
}
.rule_list .rule_box {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #EEE;
  padding-bottom: 40px;
  gap: 15px;
}
.rule_list .title {
  font-size: 1.5625rem;
  font-weight: bold;
  border-left: 5px solid #009FE8;
  border-bottom: 1px solid #009FE8;
  padding: 8px;
}
.rule_list .title::before {
  display: inline-block;
  margin-right: 8px;
  content: counter(rule, decimal-leading-zero) ".";
  counter-increment: rule;
}
.rule_list .sub_title {
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}
.rule_list.type_a .title::before {
  content: "第" counter(rule, decimal) "条";
}

.num_list_brackets {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.num_list_brackets > * {
  counter-increment: item;
  position: relative;
  padding-left: 2em;
}

.num_list_brackets > *::before {
  content: "（" counter(item) "）";
  position: absolute;
  left: 0;
}