@charset "UTF-8";
.contents_wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}
.fix_mainTitle{
  font-size: 2.6rem;
  line-height: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.fix_subTitle{
  background-color: #eee;
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: bold;
  padding: 10px 12px;
  margin-bottom: 20px;
}
.fix_sectionTitle{
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.fix_sectionTitle::before{
  background-color: #f75993;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.fix_text{
  font-size: 1.6rem;
  line-height: 3rem;
  margin-bottom: 10px;
}
.fix_text:last-child{
  margin-bottom: 0;
}
.fix_text a{
  text-decoration: underline;
}
.fix_localNav{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2%;
  margin-bottom: 50px;
}
.fix_localNav_item{
  width: 49%;
}
.fix_localNav_item a{
  display: block;
  border: 1px solid #f85993;
  color: #f85993;
  padding: 10px 35px;
  font-size: 1.6rem;
  line-height: 2.24rem;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.fix_localNav_item a::after{
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #f85993;
  border-bottom: 2px solid #f85993;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}