@charset "UTF-8";
/* ----------------------------------------------------
　sassを使用しています。このデータは編集しないようご注意ください。
---------------------------------------------------- */
/* ----------------------------------------------------
override
---------------------------------------------------- */
.entry_body > section > section,
.mce-content-body > section > section {
  margin: 50px 0 100px;
}
.entry_body > section > section:last-child,
.mce-content-body > section > section:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .entry_body > section > section,
  .mce-content-body > section > section {
    margin: 3rem 0 7rem;
  }
}

/* ----------------------------------------------------
senkyo_members
---------------------------------------------------- */
.senkyo_members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 15px;
}
.senkyo_members > * {
  display: contents;
}
.senkyo_members > * > a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.senkyo_members > * > a .district {
  background: #F5F6F8;
  text-align: center;
  padding: 2px 0;
  border-radius: 10px;
  margin-bottom: 10px;
}
.senkyo_members > * > a .image {
  margin-bottom: 10px;
}
.senkyo_members > * > a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.senkyo_members > * > a .name {
  font-size: 2rem;
  font-weight: 700;
  color: #FF5466;
}
.senkyo_members.shousen > * > a {
  grid-row: span 3;
}
.senkyo_members.shousen > * > a .name {
  color: #344A8B;
}

@media (max-width: 768px) {
  .senkyo_members {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
  .senkyo_members > * > a .image {
    margin-bottom: 0.5rem;
  }
  .senkyo_members > * > a .name {
    font-size: 1.8rem;
  }
}
/* ----------------------------------------------------
candidate
---------------------------------------------------- */
.candidate {
  display: flex;
  justify-content: space-between;
}
.candidate .image {
  width: 26%;
}
.candidate .detail {
  width: 67%;
}
.candidate .detail .name {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.candidate .detail .data {
  margin-bottom: 30px;
  font-size: 2rem;
}
.candidate .detail .data p {
  margin: 0;
}
.candidate .detail .data .belong {
  font-weight: 700;
}
.candidate .detail .sns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.candidate .detail .sns li {
  width: 158px;
}
.candidate .detail .sns li a {
  display: flex;
  border-radius: 2em;
  border: solid 1px #CBCBCB;
  padding: 5px 15px;
}
.candidate .detail .sns li a::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  flex-shrink: 0;
}
.candidate .detail .sns li a span {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex: 1;
}
.candidate .detail .sns li.hp a::before {
  width: 0;
  height: 24px;
  aspect-ratio: auto;
}
.candidate .detail .sns li.x a {
  padding-right: 0;
}
.candidate .detail .sns li.x a::before {
  background-image: url(../images/common/icon_sns_x.png);
}
.candidate .detail .sns li.facebook a::before {
  background-image: url(../images/common/icon_sns_facebook.png);
}
.candidate .detail .sns li.youtube a::before {
  background-image: url(../images/common/icon_sns_youtube.png);
}
.candidate .detail .sns li.line a::before {
  background-image: url(../images/common/icon_sns_line.png);
}
.candidate .detail .sns li.instagram a::before {
  background-image: url(../images/common/icon_sns_instagram.png);
}
.candidate .detail .sns li.tiktok a::before {
  background-size: auto 24px;
  background-image: url(../images/common/icon_sns_tiktok.png);
}
.candidate .detail .text {
  margin-top: 3em;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .candidate {
    display: block;
  }
  .candidate .image {
    width: auto;
    text-align: center;
    margin-bottom: 2rem;
  }
  .candidate .detail {
    width: auto;
  }
  .candidate .detail .name {
    width: fit-content;
    font-size: 3rem;
    margin: 0 auto 2rem;
  }
  .candidate .detail .data {
    width: fit-content;
    margin: 0 auto 3rem;
    font-size: 1.8rem;
  }
  .candidate .detail .sns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .candidate .detail .sns li {
    width: auto;
  }
  .candidate .detail .sns li a {
    padding: 0.5rem 1.5rem;
  }
  .candidate .detail .sns li a::before {
    width: 2.4rem;
  }
  .candidate .detail .sns li.hp a::before {
    height: 2.4rem;
  }
  .candidate .detail .sns li.tiktok a .icon {
    background-size: auto 2.4rem;
  }
  .candidate .detail .text {
    margin-top: 3em;
    font-size: 1.6rem;
  }
}
/* ----------------------------------------------------
senkyo_footer
---------------------------------------------------- */
.senkyo_footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.senkyo_footer .senkyo_share {
  background: #F5F6F8;
  border-radius: 12px;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  font-weight: 500;
  text-align: center;
}
.senkyo_footer .senkyo_share p {
  margin: 0;
}
.senkyo_footer .senkyo_share .sns {
  display: inline-flex;
  justify-content: center;
  gap: 15px;
}
.senkyo_footer .senkyo_share .sns > * {
  width: 30px;
}
.vote + .senkyo_footer {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .senkyo_footer {
    display: block;
  }
  .senkyo_footer .senkyo_share {
    border-radius: 1.2rem;
    padding: 1rem 0 1.5rem;
    display: block;
    margin-bottom: 2rem;
  }
  .senkyo_footer .senkyo_share .sns {
    margin-top: 0.5rem;
    gap: 1.5rem;
  }
  .senkyo_footer .senkyo_share .sns > * {
    width: 3rem;
  }
  .vote + .senkyo_footer {
    margin-top: 5rem;
  }
}