@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  background: #fff;
  color: #404040;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-spacing-trim: trim-start;
}

@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
    min-width: 0;
  }
}
a {
  color: #404040;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 1025px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
/* // screen
----------------------------------- */
.sp {
  display: none;
}

.md {
  display: none;
}

.pc {
  display: block;
}

.pconly {
  display: block;
}

@media (max-width: 1024px) {
  .sp {
    display: none;
  }
  .md {
    display: block;
  }
  .pc {
    display: block;
  }
  .pconly {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .md {
    display: block;
  }
  .pc {
    display: none;
  }
  .pconly {
    display: none;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s, transform 0.7s;
}

.fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

/* header
----------------------------------- */
header {
  width: clamp(26px, 18.3vw, 264px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
header .header {
  width: clamp(24px, 16.9vw, 244px);
  height: calc(100vh - 40px);
  max-height: clamp(71px, 49.3vw, 710px);
  background: #fff;
  border-radius: clamp(2px, 1.4vw, 20px);
  margin: clamp(2px, 1.4vw, 20px) 0 0 auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-rows: 1fr max-content;
  overflow-y: auto;
}
header .header .logo {
  display: grid;
  place-content: center;
  padding: clamp(2px, 1.4vw, 20px);
}
header .header .logo a {
  display: contents;
}
header .header .logo img {
  width: 100%;
  max-width: 180px;
}
header .header .gnav {
  padding-bottom: clamp(6px, 4.2vw, 60px);
}
header .header .gnav li {
  border-top: solid 1px #eaf0f5;
}
header .header .gnav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(0rem, 1.5vw, 2.2rem);
  font-weight: 700;
  color: #fa4c4b;
  padding: 0.7em 1.2em;
}
header .header .gnav li a::after {
  content: "";
  width: clamp(2px, 1.1vw, 16px);
  aspect-ratio: 1;
  background: url(../img/icon_arrow_01.webp) no-repeat center/contain;
}
header .header .gnav li.policy a, header .header .gnav li.bokin a {
  letter-spacing: 1em;
}
header #sns_fixed {
  position: absolute;
  right: calc(-1 * (var(--vw100) - 100%));
  bottom: 0;
  width: clamp(6px, 4.4vw, 64px);
  background: #fff;
  border-radius: clamp(2px, 1.4vw, 20px) 0 0 clamp(2px, 1.4vw, 20px);
  display: grid;
  justify-items: center;
  gap: clamp(2px, 1.1vw, 16px);
  padding: clamp(3px, 2.1vw, 30px) 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}
header #sns_fixed h2 {
  font-size: clamp(1px, 1vw, 14px);
}
header #sns_fixed ul {
  width: clamp(3px, 2.1vw, 30px);
  display: grid;
  gap: clamp(2px, 1.1vw, 16px);
}
@media (max-width: 767px) {
  header {
    display: none;
  }
}

/* menu
----------------------------------- */
#menu {
  display: none;
}
@media (max-width: 767px) {
  #menu {
    display: grid;
    place-content: center;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(to bottom, #e4f0fd 0%, #e6f2fd 34%, #f6f5fa 82%, #faeeea 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0s 0.3s;
  }
  .js-menuOpen #menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
  }
  #menu .logo {
    position: absolute;
    width: 14.3rem;
    top: 1rem;
    right: 1rem;
  }
  #menu .site {
    width: 28rem;
    display: grid;
    gap: 0.8rem;
  }
  #menu .site li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.4rem;
    padding: 0 3rem 0 2.5rem;
    background: #fa4c4b;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 1.2rem;
  }
  #menu .site li a::after {
    content: "";
    width: 1.8rem;
    aspect-ratio: 1;
    background: url(../img/icon_arrow_07.png) no-repeat 0 0/contain;
  }
  #menu .sns {
    width: 28rem;
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2.2rem;
  }
  #menu .sns dt {
    font-size: 1.4rem;
    grid-column: 1/3;
    text-align: center;
    margin-bottom: 0.5em;
  }
  #menu .sns > * a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #menu .sns > * a::before {
    content: "";
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.2rem;
    aspect-ratio: 1;
  }
  #menu .sns > * a span {
    display: grid;
    place-content: center;
    border-radius: 2em;
    font-size: 1.2rem;
    width: 10rem;
    height: 2.4rem;
    background: #fff;
  }
  #menu .sns > *.fb a::before {
    background-image: url(../img/icon_fb.webp);
  }
  #menu .sns > *.insta a::before {
    background-image: url(../img/icon_insta.webp);
  }
  #menu .sns > *.tiktok a::before {
    background-image: url(../img/icon_tiktok.webp);
  }
  #menu .sns > *.youtube a::before {
    aspect-ratio: 22/16;
    background-image: url(../img/icon_youtube.webp);
  }
  #menu .sns > *.x a::before {
    background-image: url(../img/icon_x.webp);
  }
  #menu .sns > *.line a::before {
    background-image: url(../img/icon_line.png);
  }
}

/* mv
----------------------------------- */
#mv {
  position: relative;
}
#mv .mv .logo {
  display: none;
}
#mv .text {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - clamp(26px, 18.3vw, 264px));
  height: 100%;
  padding: 3.6805555556vw clamp(8px, 5.6vw, 80px) 0;
  color: #fff;
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  font-weight: 700;
}
#mv .text hgroup p {
  width: 22.7777777778vw;
  margin-bottom: 1.5277777778vw;
}
#mv .text hgroup h2 {
  width: 40.6944444444vw;
}
#mv .text .lead {
  margin-top: 1.3888888889vw;
  font-size: clamp(0.9rem, 1.25vw, 100vw);
  line-height: 1.7;
}
#mv .text .hirei {
  padding-bottom: 2.7777777778vw;
}
#mv .text .hirei p:nth-child(1) {
  font-size: 1.9444444444vw;
  display: flex;
  align-items: center;
  gap: 0.5em;
  line-height: 1;
}
#mv .text .hirei p:nth-child(1) span {
  font-family: "Montserrat", sans-serif;
  font-size: 2.9166666667vw;
  transform: translateY(4%);
}
#mv .text .hirei p:nth-child(2) {
  font-size: 3.4722222222vw;
}
@media (max-width: 767px) {
  #mv .mv {
    position: relative;
  }
  #mv .mv .logo {
    display: block;
    position: absolute;
    width: 14.3rem;
    right: 1rem;
    bottom: 1rem;
  }
  #mv .text {
    position: static;
    width: auto;
    height: auto;
    padding: 2rem 1.6rem 1.5rem 3rem;
    display: block;
    background: #e71515;
  }
  #mv .text hgroup {
    position: absolute;
    top: 2.8rem;
    left: 2.2rem;
  }
  #mv .text hgroup p {
    width: 19rem;
    margin-bottom: 1.5rem;
  }
  #mv .text hgroup h2 {
    width: 31.9rem;
  }
  #mv .text .lead {
    margin-top: 0;
    font-size: 1.5rem;
    line-height: 1.7;
  }
  #mv .text .hirei {
    margin-top: 2rem;
    padding-bottom: 0;
  }
  #mv .text .hirei p:nth-child(1) {
    font-size: 2.6rem;
  }
  #mv .text .hirei p:nth-child(1) span {
    font-size: 4rem;
  }
  #mv .text .hirei p:nth-child(2) {
    font-size: 3.7rem;
  }
}

/* sns_fixed
----------------------------------- */
/* main
----------------------------------- */
main {
  width: calc(100% - clamp(26px, 18.3vw, 264px));
  margin-left: auto;
  padding: clamp(5px, 3.1vw, 45px) clamp(8px, 5.6vw, 80px) 0;
}
@media (max-width: 767px) {
  main {
    width: auto;
    padding: 5rem 3rem 0;
  }
}

/* news_youtube
----------------------------------- */
.news_youtube {
  margin: 0 calc(-1 * clamp(8px, 5.6vw, 80px)) 0 0;
}
.news_youtube .wrap {
  display: flex;
  justify-content: space-between;
  gap: clamp(9px, 6.3vw, 90px);
}
.news_youtube h2 {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 15px);
  line-height: 1;
}
.news_youtube h2 .en {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 1.9vw, 2.8rem);
  font-weight: 700;
  color: #fa4c4b;
}
.news_youtube h2 .ja {
  font-size: clamp(0rem, 1vw, 1.4rem);
}
.news_youtube #news {
  flex-basis: 400px;
}
@media (min-width: 1441px) {
  .news_youtube #news {
    flex-basis: 40%;
  }
}
.news_youtube #news h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.news_youtube #news h2::before {
  content: "";
  width: clamp(24px, 1.9vw, 27px);
  aspect-ratio: 1;
  background: url(../img/icon_news.webp) no-repeat 0 0/100% auto;
  position: relative;
  top: -0.1em;
}
.news_youtube #news .entries {
  border-top: solid 1px #f6f8fa;
}
.news_youtube #news .entries li {
  border-bottom: solid 1px #f6f8fa;
}
.news_youtube #news .entries li a {
  display: flex;
  align-items: center;
  gap: 0 10px;
  padding: 0.8em 0;
  font-size: 1.5rem;
  position: relative;
}
.news_youtube #news .entries li a::before {
  content: "";
  width: 12px;
  aspect-ratio: 1/1;
  background: url(../img/icon_arrow_03.webp) no-repeat 0 0/100% auto;
  flex-shrink: 0;
}
.news_youtube #news .entries li a .date {
  flex-shrink: 0;
}
.news_youtube #news .entries li a .text {
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.news_youtube #news .others {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
  gap: 20px;
}
.news_youtube #news .others > * {
  display: flex;
  min-width: 160px;
}
.news_youtube #news .others > * a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  color: #fa4c4b;
  padding: 0.6em 1.5em 0.7em;
  border-radius: 2em;
  background: #eaf0f5;
}
.news_youtube #news .others > * a::after {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: url(../img/icon_arrow_04.webp) no-repeat 0 0/100% auto;
}
.news_youtube #youtube {
  width: 55%;
  overflow: hidden;
}
.news_youtube #youtube h2 {
  margin-bottom: 15px;
}
.news_youtube #youtube h2 a.logo {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 15px);
  color: #fa4c4b;
}
.news_youtube #youtube h2 a.logo::before {
  content: "";
  width: clamp(28px, 2.2vw, 32px);
  aspect-ratio: 64/45;
  background: url(../img/icon_youtube.webp) no-repeat 0 0/100% auto;
  position: relative;
}
.news_youtube #youtube h2 span.text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  font-weight: 500;
  color: #404040;
}
.news_youtube #youtube .slides {
  position: relative;
}
.news_youtube #youtube .slides .slide_nav {
  position: absolute;
  top: 50%;
  width: 24px;
  aspect-ratio: 24/60;
  cursor: pointer;
  background: url(../img/icon_next.webp) no-repeat 0 0/100% auto;
  z-index: 1;
  transform: translateY(-100%);
}
.news_youtube #youtube .slides .slide_nav.right {
  right: 0;
}
.news_youtube #youtube .slides .swiper-slide {
  width: 160px;
  margin-right: clamp(2px, 1vw, 15px);
}
.news_youtube #youtube .slides .swiper-slide:last-child {
  margin-right: 0;
}
.news_youtube #youtube .slides .swiper-slide a .thumbnail {
  aspect-ratio: 162/288;
  background: #dddddd;
  border-radius: 10px;
  overflow: hidden;
}
.news_youtube #youtube .slides .swiper-slide a .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news_youtube #youtube .slides .swiper-slide a p {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media (max-width: 1024px) {
  .news_youtube {
    margin: 0;
  }
  .news_youtube .wrap {
    display: block;
  }
  .news_youtube h2 {
    gap: 1.5rem;
  }
  .news_youtube h2 .en {
    font-size: 2.8rem;
  }
  .news_youtube h2 .ja {
    margin-left: 1rem;
    font-size: 1.4rem;
  }
  .news_youtube #news h2 {
    margin-bottom: 0.5rem;
  }
  .news_youtube #news h2::before {
    width: 2.7rem;
  }
  .news_youtube #news .entries {
    border-top: none;
  }
  .news_youtube #news .entries li {
    border-color: #eaf0f5;
  }
  .news_youtube #news .entries li a {
    display: block;
    padding: 0.5em 0 0.5em 2.3rem;
    font-size: 1.5rem;
  }
  .news_youtube #news .entries li a::before {
    position: absolute;
    left: 0;
    top: 0.8em;
  }
  .news_youtube #news .entries li a .date {
    width: auto;
    display: block;
    margin-bottom: 0.2em;
  }
  .news_youtube #youtube {
    width: auto;
    margin: 6.5rem calc(-1 * clamp(8px, 5.6vw, 80px)) 0 0;
  }
  .news_youtube #youtube h2 a.logo {
    gap: 1.5rem;
  }
  .news_youtube #youtube h2 .ja {
    margin-left: 0.5rem;
  }
}
@media (max-width: 767px) {
  .news_youtube #news .others {
    margin-top: 2rem;
    gap: 1rem;
  }
  .news_youtube #news .others > * {
    min-width: 13rem;
  }
  .news_youtube #news .others > * a {
    padding: 0.6em 0.8em 0.7em;
    border-radius: 2em;
    background: #eaf0f5;
  }
  .news_youtube #news .others > * a::after {
    content: "";
    width: 12px;
    aspect-ratio: 1;
    background: url(../img/icon_arrow_04.webp) no-repeat 0 0/100% auto;
  }
  .news_youtube #youtube {
    margin: 6.5rem -3rem 0 0;
  }
  .news_youtube #youtube h2 a.logo {
    gap: 1rem;
  }
}

/* election_broadcast
----------------------------------- */
#election_broadcast {
  margin: clamp(7px, 4.9vw, 70px) 0 clamp(17px, 11.8vw, 170px);
}
#election_broadcast .movie {
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
}
#election_broadcast .movie iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #election_broadcast {
    margin: 5rem 0 12rem;
  }
}

/* party_info
----------------------------------- */
.party_info {
  max-width: 1016px;
  margin: 0 auto;
}
.party_info .header {
  position: relative;
  border-radius: clamp(2px, 1.4vw, 20px);
  color: #fff;
  min-height: clamp(26px, 18.1vw, 260px);
}
.party_info .header .person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-40%);
}
.party_info .header .person p {
  font-size: clamp(0rem, 1.3vw, 1.8rem);
  font-weight: 700;
  position: absolute;
  right: -3%;
  top: 45%;
  transform: translate(80%, -70%) rotate(-12deg);
}
.party_info .header .person p::before, .party_info .header .person p::after {
  content: "";
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  transform-origin: 0 0;
}
.party_info .header .person p::before {
  width: 65%;
  top: calc(-1 * clamp(1px, 0.5vw, 7px));
  transform: translate(-3%, 0) rotate(-12deg);
}
.party_info .header .person p::after {
  width: 75%;
  bottom: calc(-1 * clamp(1px, 0.5vw, 7px));
  transform: translate(-3%, 0) rotate(6deg);
}
.party_info .contents > section {
  background: #fa4c4b;
  border-radius: clamp(2px, 1.4vw, 20px);
  margin-top: clamp(3px, 2.1vw, 30px);
  display: flow-root;
}
.party_info .contents > section h3 {
  display: flex;
  align-items: center;
  gap: clamp(3px, 1.7vw, 25px);
  padding: 0.7em clamp(12px, 8.3vw, 120px) 0.7em clamp(4px, 2.4vw, 35px);
  min-height: clamp(11px, 7.8vw, 112px);
  font-size: clamp(0rem, 2.4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.party_info .contents > section h3 .num {
  width: clamp(5px, 3.3vw, 48px);
  aspect-ratio: 1;
  background: #ec3635;
  border-radius: 5px;
  display: grid;
  place-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0rem, 2.1vw, 3rem);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.party_info .contents > section h3::after {
  content: "";
  width: clamp(2px, 1.7vw, 24px);
  aspect-ratio: 1;
  background: url(../img/icon_plus.webp) no-repeat 0 0/contain;
  position: absolute;
  right: clamp(9px, 6.3vw, 90px);
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.party_info .contents > section h3.open::after {
  transform: translateY(-50%) rotate(225deg);
}
.party_info .contents > section .detail {
  margin: clamp(3px, 2.1vw, 30px) clamp(4px, 2.4vw, 35px) clamp(4px, 2.4vw, 35px);
  background: #fff;
  border-radius: clamp(2px, 1vw, 15px);
  padding: clamp(4px, 2.4vw, 35px);
  display: none;
}
.party_info .contents > section .detail a[target=_blank]::after {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: url(../img/icon_arrow_08.png) no-repeat 0 0/contain;
  display: inline-block;
  margin-left: 0.5em;
}
.party_info .contents > section .detail p {
  font-size: clamp(0rem, 1.7vw, 2.4rem);
}
.party_info .contents > section .detail p + * {
  margin-top: clamp(3px, 2.1vw, 30px);
}
.party_info .contents > section .detail h4,
.party_info .contents > section .detail .str {
  font-size: clamp(0rem, 1.7vw, 2.4rem);
  color: #fa4c4b;
  margin-bottom: 0.8em;
}
.party_info .contents > section .detail ul + * {
  margin-top: clamp(3px, 2.1vw, 30px);
}
.party_info .contents > section .detail ul li {
  padding-left: 1em;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  font-size: clamp(0rem, 1.7vw, 2.4rem);
}
.party_info .contents > section .detail ul li + * {
  margin-top: 0.7em;
}
.party_info .contents > section .detail ul li .issue {
  line-height: 1.7;
  transform: translateY(-10%);
}
.party_info .contents > section .detail ul li .issue span {
  padding: 0.1em 0 0.1em 0.5em;
  background: #eee;
}
.party_info .contents > section .detail ul li .do {
  display: inline-block;
  padding-left: 1.2em;
  position: relative;
  font-weight: 700;
  margin: 0;
}
.party_info .contents > section .detail ul li .do::before {
  content: "";
  width: clamp(1px, 1vw, 14px);
  aspect-ratio: 14/21;
  background: url(../img/icon_arrow_06.webp) no-repeat center/contain;
  position: absolute;
  left: 0;
  transform: translateY(25%);
}
.party_info .contents > section .detail .movie_short {
  margin-top: 50px;
}
.party_info .contents > section .detail .movie_short .short {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  overflow: hidden;
}
.party_info .contents > section .detail .movie_short .short iframe {
  width: 100%;
  height: 100%;
}
.party_info .contents > section .detail .movie_short p {
  max-width: 320px;
  margin: 0 auto;
  font-size: 1.6rem;
}
.party_info .contents > section .detail .movie_short .btn_detail {
  margin-top: 50px;
}
.party_info .contents > section .detail .movie_short .btn_detail a {
  display: block;
  background: #fa5425;
  border-radius: 2em;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding: 0.9em 1.7em;
  position: relative;
  color: #fff;
}
.party_info .contents > section .detail .movie_short .btn_detail a::after {
  content: "";
  width: 13px;
  aspect-ratio: 1;
  background: url(../img/icon_arrow_05.webp) no-repeat 0 0/100% auto;
  position: absolute;
  right: 1.7em;
  top: 50%;
  transform: translateY(-50%);
}
.party_info#policy .header {
  background: url(../img/policy_bg.webp) no-repeat center/cover;
  padding: clamp(4px, 2.4vw, 35px) clamp(6px, 3.8vw, 55px) clamp(2px, 1.4vw, 20px);
}
.party_info#policy .header::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(43px, 30.1vw, 434px);
  aspect-ratio: 867/277;
  background: url(../img/policy_img_01.webp) no-repeat center/contain;
  transform: translateY(-71%);
  z-index: 1;
  mix-blend-mode: multiply;
}
.party_info#policy .header h2 {
  font-size: clamp(4px, 2.8vw, 40px);
  font-weight: 700;
  margin-bottom: 0.3em;
}
.party_info#policy .header .lead {
  font-size: clamp(0rem, 1.1vw, 1.6rem);
  font-weight: 700;
  line-height: 1.7;
}
.party_info#policy .header .person {
  width: clamp(26px, 18vw, 259px);
}
.party_info#policy .header .btn {
  position: absolute;
  right: clamp(6px, 3.8vw, 55px);
  bottom: clamp(3px, 2.1vw, 30px);
}
.party_info#policy .header .btn a {
  display: block;
  background: #fff;
  border-radius: 2em;
  width: clamp(24px, 16.7vw, 240px);
  padding: 0.9em 1.7em;
  font-size: clamp(0rem, 1.1vw, 1.6rem);
  position: relative;
}
.party_info#policy .header .btn a::after {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: url(../img/icon_arrow_03.webp) no-repeat 0 0/100% auto;
  position: absolute;
  right: 1.7em;
  top: 50%;
  transform: translateY(-50%);
}
.party_info#push {
  margin-top: clamp(9px, 6.3vw, 90px);
}
.party_info#push h2 {
  font-size: clamp(1rem, 5.6vw, 8rem);
  color: #fa5425;
  text-align: center;
  margin-bottom: clamp(2px, 1.4vw, 20px);
}
.party_info#push .header {
  background: url(../img/push_bg.webp) no-repeat center/cover;
  padding: clamp(5px, 3.5vw, 50px) clamp(6px, 3.8vw, 55px) clamp(2px, 1.4vw, 20px);
}
.party_info#push .header .lead {
  font-size: clamp(0rem, 1.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.7;
}
.party_info#push .header .person {
  width: clamp(47px, 32.7vw, 471px);
  transform: translateX(-30%);
}
.party_info#push .header .person p {
  transform: translate(80%, -100%) rotate(-12deg);
}
.party_info#push .header .person p::before {
  width: 75%;
  transform: translate(-3%, 0) rotate(-12deg);
}
.party_info#push .header .person p::after {
  width: 85%;
  transform: translate(-3%, 0) rotate(3deg);
}
.party_info#push .contents > section {
  background: #fa5425;
}
.party_info#data {
  margin-top: clamp(16px, 11.1vw, 160px);
}
.party_info#data .header {
  background: url(../img/data_bg.webp) no-repeat center/cover;
  padding: clamp(3px, 2.1vw, 30px) clamp(6px, 3.8vw, 55px) clamp(2px, 1.4vw, 20px);
}
.party_info#data .header::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(33px, 22.7vw, 327px);
  aspect-ratio: 654/199;
  background: url(../img/data_img_01.webp) no-repeat center/contain;
  transform: translateY(-83%);
  z-index: 1;
  mix-blend-mode: multiply;
}
.party_info#data .header h2 {
  font-size: clamp(4px, 2.8vw, 40px);
  font-weight: 700;
  margin-bottom: 0.3em;
}
.party_info#data .header .lead {
  font-size: clamp(0rem, 1.1vw, 1.6rem);
  font-weight: 700;
  line-height: 1.7;
}
.party_info#data .header .person {
  width: clamp(29px, 20.4vw, 294px);
  transform: translateX(-28%);
}
.party_info#data .header .person p {
  transform: translate(70%, -90%) rotate(-12deg);
}
.party_info#data .header .person p::before {
  width: 90%;
  transform: translate(-3%, 0) rotate(-16deg);
}
.party_info#data .header .person p::after {
  width: 95%;
  transform: translate(-3%, 5px) rotate(6deg);
}
.party_info#data .data {
  margin-top: clamp(5px, 3.1vw, 45px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2px, 1.7vw, 24px) clamp(3px, 2.4vw, 34px);
}
.party_info#data .data > * {
  aspect-ratio: 316/380;
  position: relative;
}
.party_info#data .data > * .card {
  position: absolute;
  transition: all 0.5s ease-out 0s;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  cursor: pointer;
  backface-visibility: hidden;
  border-radius: clamp(2px, 1.4vw, 20px);
}
.party_info#data .data > * .card.front {
  background: #e6eef8;
  text-align: center;
  padding: clamp(3px, 2.1vw, 30px) 0 clamp(4px, 2.4vw, 35px);
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  place-items: center;
  z-index: 1;
}
.party_info#data .data > * .card.front::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(7px, 5vw, 72px);
  aspect-ratio: 1;
  background: url(../img/data_card_img.webp) no-repeat center/contain;
}
.party_info#data .data > * .card.front p:nth-child(1) {
  font-size: clamp(0rem, 2.2vw, 3.2rem);
  font-weight: 700;
}
.party_info#data .data > * .card.front p:last-child {
  font-size: clamp(0rem, 1.7vw, 2.4rem);
}
.party_info#data .data > * .card.back {
  background: #7ea5d2;
  color: #fff;
  padding: clamp(3px, 2.1vw, 30px) clamp(3px, 2.1vw, 30px) clamp(3px, 1.7vw, 25px);
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  place-items: center;
  z-index: 0;
  transform: rotateY(180deg);
}
.party_info#data .data > * .card.back h3 {
  font-size: clamp(0rem, 1.4vw, 2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}
.party_info#data .data > * .card.back p {
  font-size: clamp(0rem, 1.3vw, 1.8rem);
  line-height: 1.7;
}
.party_info#data .data > *:hover .back {
  transform: rotateY(0);
}
.party_info#data .data > *:hover .front {
  transform: rotateY(-180deg);
}
.party_info#data .data > *.data01 .front .image {
  width: clamp(27px, 18.4vw, 265px);
}
.party_info#data .data > *.data01 .back .image {
  width: clamp(13px, 9vw, 130px);
}
.party_info#data .data > *.data02 .front .image {
  width: clamp(25px, 17.3vw, 249px);
}
.party_info#data .data > *.data02 .back .image {
  width: clamp(8px, 5.3vw, 76px);
}
.party_info#data .data > *.data03 .front .image {
  width: clamp(26px, 18.1vw, 261px);
}
.party_info#data .data > *.data03 .back .image {
  width: clamp(11px, 7.3vw, 105px);
}
.party_info#data .data > *.data04 .front .image {
  width: clamp(26px, 17.7vw, 255px);
}
.party_info#data .data > *.data04 .back .image {
  width: clamp(9px, 6vw, 87px);
}
.party_info#data .data > *.data05 .front .image {
  width: clamp(25px, 17.4vw, 250px);
}
.party_info#data .data > *.data05 .back .image {
  width: clamp(13px, 9.2vw, 133px);
}
.party_info#data .data > *.data06 .front .image {
  width: clamp(18px, 12.3vw, 177px);
}
.party_info#data .data > *.data06 .back .image {
  width: clamp(9px, 6.1vw, 88px);
}
@media (max-width: 767px) {
  .party_info .header {
    border-radius: 2rem;
    min-height: 0;
  }
  .party_info .header .person {
    left: auto;
    right: 0;
    transform: none;
  }
  .party_info .header .person img {
    display: none;
  }
  .party_info .header .person p {
    font-size: 1.5rem;
    right: auto;
    left: 1rem;
    top: auto;
    bottom: 14rem;
    transform: rotate(10deg);
  }
  .party_info .header .person p::before, .party_info .header .person p::after {
    transform-origin: right bottom;
  }
  .party_info .header .person p::before {
    width: 80%;
    top: -0.7rem;
    transform: translate(6%, 0) rotate(2deg);
  }
  .party_info .header .person p::after {
    width: 76%;
    bottom: -0.5rem;
    transform: translate(10%, 0) rotate(-9deg);
  }
  .party_info .contents {
    margin-top: 3rem;
  }
  .party_info .contents > section {
    border-radius: 1.2rem;
    margin-top: 1.5rem;
  }
  .party_info .contents > section h3 {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 3rem 4rem 2rem;
    min-height: 13rem;
    font-size: 2rem;
    line-height: 1.8;
  }
  .party_info .contents > section h3 .num {
    width: 3rem;
    border-radius: 0.5rem;
    font-size: 1.9rem;
    transform: translateY(0.5rem);
  }
  .party_info .contents > section h3::after {
    width: 2rem;
    right: 2.5rem;
    top: auto;
    bottom: 2rem;
    transform: none;
  }
  .party_info .contents > section h3.open::after {
    transform: rotate(225deg);
  }
  .party_info .contents > section .detail {
    margin: 0.6rem 1rem 1rem;
    border-radius: 1.5rem;
    padding: 2rem;
    display: none;
  }
  .party_info .contents > section .detail p {
    font-size: 1.8rem;
  }
  .party_info .contents > section .detail p + * {
    margin-top: 2rem;
  }
  .party_info .contents > section .detail h4,
  .party_info .contents > section .detail .str {
    font-size: 1.8rem;
  }
  .party_info .contents > section .detail ul + * {
    margin-top: 2rem;
  }
  .party_info .contents > section .detail ul li {
    gap: 0 1em;
    font-size: 1.8rem;
  }
  .party_info .contents > section .detail ul li + * {
    margin-top: 1.2em;
  }
  .party_info .contents > section .detail ul li .do {
    padding-left: 1.8rem;
  }
  .party_info .contents > section .detail ul li .do::before {
    width: 1rem;
    transform: translateY(35%);
  }
  .party_info .contents > section .detail .movie_short {
    margin-top: 3rem;
  }
  .party_info .contents > section .detail .movie_short .short {
    max-width: 18rem;
    margin: 0 auto 2rem;
    border-radius: 1rem;
  }
  .party_info .contents > section .detail .movie_short p {
    max-width: none;
    font-size: 1.5rem;
  }
  .party_info .contents > section .detail .movie_short .btn_detail {
    margin-top: 4rem;
  }
  .party_info .contents > section .detail .movie_short .btn_detail a {
    max-width: 24rem;
    padding: 0.9em 1.7em;
    position: relative;
    color: #fff;
  }
  .party_info .contents > section .detail .movie_short .btn_detail a::after {
    width: 1.3rem;
    right: 1.7em;
  }
  .party_info#policy .header {
    background: url(../img/policy_bg_sp.webp) no-repeat left bottom/cover;
    padding: 3rem 2rem;
    min-height: 55.8rem;
  }
  .party_info#policy .header::before {
    width: 26rem;
    transform: translateY(-71%);
  }
  .party_info#policy .header h2 {
    font-size: 3.8rem;
    line-height: 1.4;
    margin-bottom: 0.7em;
  }
  .party_info#policy .header .lead {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .party_info#policy .header .person {
    width: 100%;
  }
  .party_info#policy .header .btn {
    right: auto;
    left: 0;
    bottom: 3rem;
    width: 100%;
    padding: 0 2.7rem;
  }
  .party_info#policy .header .btn a {
    width: auto;
    padding: 0.9em 3.5rem;
    font-size: 1.6rem;
  }
  .party_info#policy .header .btn a::after {
    right: 3.5rem;
  }
  .party_info#push {
    margin-top: 6rem;
  }
  .party_info#push h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
  }
  .party_info#push .header {
    background: url(../img/push_bg_sp.webp) no-repeat center/cover;
    padding: 3rem 2rem;
    min-height: 45rem;
  }
  .party_info#push .header .lead {
    font-size: 1.7rem;
    line-height: 1.7;
  }
  .party_info#push .header .person {
    width: 100%;
    transform: none;
  }
  .party_info#push .header .person p {
    transform: rotate(13deg);
    bottom: 18rem;
    left: 1.7rem;
  }
  .party_info#push .header .person p::before {
    width: 90%;
    top: -0.5rem;
    transform: translate(8%, 0) rotate(8deg);
  }
  .party_info#push .header .person p::after {
    width: 95%;
    bottom: -0.5rem;
    transform: translate(4%, 0) rotate(-7deg);
  }
  .party_info#push .contents {
    margin-top: 0;
  }
  .party_info#push .contents > section {
    background: #fa5425;
  }
  .party_info#push .contents > section h3 {
    min-height: 10rem;
    padding: 0 3rem 0 2rem;
    align-items: center;
  }
  .party_info#push .contents > section h3 .num {
    transform: none;
  }
  .party_info#push .contents > section h3::after {
    bottom: auto;
  }
  .party_info#data {
    margin-top: 10.5rem;
  }
  .party_info#data .header {
    background: url(../img/data_bg_sp.webp) no-repeat center/cover;
    padding: 3rem 2rem;
    min-height: 51rem;
  }
  .party_info#data .header::before {
    width: 19.7rem;
    transform: translateY(-71%);
  }
  .party_info#data .header h2 {
    font-size: 3.8rem;
    line-height: 1.4;
    margin-bottom: 0.5em;
  }
  .party_info#data .header .lead {
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .party_info#data .header .person {
    width: 100%;
    transform: none;
  }
  .party_info#data .header .person p {
    transform: rotate(8deg);
    bottom: 13rem;
    left: 3.8rem;
  }
  .party_info#data .header .person p::before {
    width: 108%;
    top: -1.5rem;
    transform: translate(2%, 0) rotate(8deg);
  }
  .party_info#data .header .person p::after {
    width: 115%;
    bottom: -1rem;
    transform: translate(2%, 0) rotate(-12deg);
  }
  .party_info#data .data {
    margin-top: 2rem;
    display: block;
  }
  .party_info#data .data > * {
    margin-top: 1rem;
  }
  .party_info#data .data > * .card {
    border-radius: 2rem;
  }
  .party_info#data .data > * .card.front {
    padding: 3rem 0 3.5rem;
  }
  .party_info#data .data > * .card.front::after {
    width: 7.2rem;
  }
  .party_info#data .data > * .card.front p:nth-child(1) {
    font-size: 3.2rem;
  }
  .party_info#data .data > * .card.front p:last-child {
    font-size: 2.4rem;
  }
  .party_info#data .data > * .card.back {
    padding: 3rem 3rem 2.5rem;
  }
  .party_info#data .data > * .card.back::before {
    width: 8rem;
  }
  .party_info#data .data > * .card.back h3 {
    font-size: 2rem;
  }
  .party_info#data .data > * .card.back p {
    font-size: 1.8rem;
  }
  .party_info#data .data > *.data01 .front .image {
    width: 26.5rem;
  }
  .party_info#data .data > *.data01 .back .image {
    width: 13rem;
  }
  .party_info#data .data > *.data02 .front .image {
    width: 24.9rem;
  }
  .party_info#data .data > *.data02 .back .image {
    width: 7.6rem;
  }
  .party_info#data .data > *.data03 .front .image {
    width: 26.1rem;
  }
  .party_info#data .data > *.data03 .back .image {
    width: 10.5rem;
  }
  .party_info#data .data > *.data04 .front .image {
    width: 25.5rem;
  }
  .party_info#data .data > *.data04 .back .image {
    width: 8.7rem;
  }
  .party_info#data .data > *.data05 .front .image {
    width: 25rem;
  }
  .party_info#data .data > *.data05 .back .image {
    width: 13.3rem;
  }
  .party_info#data .data > *.data06 .front .image {
    width: 17.7rem;
  }
  .party_info#data .data > *.data06 .back .image {
    width: 8.8rem;
  }
}

/* mdl
----------------------------------- */
.mdl {
  background: linear-gradient(to bottom, #e4f0fd 0%, #e6f2fd 34%, #f6f5fa 82%, #faeeea 100%);
  margin: clamp(10px, 6.9vw, 100px) calc(-1 * clamp(8px, 5.6vw, 80px)) 0 calc(-1 * clamp(34px, 23.9vw, 344px));
}
.mdl .inner {
  width: calc(100% - clamp(26px, 18.3vw, 264px));
  margin-left: auto;
  padding: clamp(8px, 5.6vw, 80px);
}
@media (max-width: 767px) {
  .mdl {
    margin: 8rem -3rem;
  }
  .mdl .inner {
    width: auto;
    padding: 6rem 3rem;
  }
}

/* candidate
----------------------------------- */
#candidate hgroup {
  color: #fa5425;
}
#candidate hgroup p {
  font-size: clamp(0rem, 2.1vw, 3rem);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
#candidate hgroup p::before, #candidate hgroup p::after {
  content: "";
  width: clamp(3px, 1.9vw, 28px);
  aspect-ratio: 56/71;
  background: url(../img/line_01.webp) no-repeat 0 0/contain;
  transform: translateY(10%);
}
#candidate hgroup p::after {
  transform: translateY(10%) scale(-1, 1);
}
#candidate hgroup h2 {
  font-size: clamp(1rem, 5.6vw, 8rem);
  text-align: center;
}
#candidate .image {
  margin: clamp(5px, 3.5vw, 50px) calc(-1 * clamp(8px, 5.6vw, 80px)) clamp(3px, 2.1vw, 30px);
}
#candidate .btn a {
  display: block;
  text-align: center;
  background: #fa5425;
  border-radius: 2.2em;
  width: clamp(49px, 33.9vw, 488px);
  padding: 1.5em 2em;
  font-size: clamp(0rem, 1.8vw, 2.6rem);
  margin: 0 auto;
  color: #fff;
  position: relative;
}
#candidate .btn a::after {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: url(../img/icon_arrow_05.webp) no-repeat 0 0/100% auto;
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  #candidate {
    margin: 0 -3rem;
  }
  #candidate hgroup p {
    font-size: 2.4rem;
    gap: 0.5rem;
  }
  #candidate hgroup p::before, #candidate hgroup p::after {
    width: 2.7rem;
  }
  #candidate hgroup h2 {
    margin-top: 1rem;
    font-size: 5rem;
  }
  #candidate .image {
    margin: 2rem 0 3rem;
  }
  #candidate .btn a {
    width: 31.5rem;
    padding: 1.35em 2em;
    font-size: 2rem;
    text-align: left;
  }
  #candidate .btn a::after {
    width: 2rem;
    right: 1.5em;
  }
}

/* support
----------------------------------- */
#support {
  max-width: 1016px;
  margin: clamp(10px, 6.9vw, 100px) auto 0;
}
#support h2 {
  font-size: clamp(0rem, 2.1vw, 3rem);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
  margin-bottom: clamp(2px, 1vw, 15px);
  color: #fa5425;
}
#support h2::before, #support h2::after {
  content: "";
  width: clamp(3px, 1.9vw, 28px);
  aspect-ratio: 56/71;
  background: url(../img/line_01.webp) no-repeat 0 0/contain;
  transform: translateY(10%);
}
#support h2::after {
  transform: translateY(10%) scale(-1, 1);
}
#support .bnr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4px, 2.8vw, 40px);
  align-items: end;
}
@media (max-width: 767px) {
  #support {
    margin: 6.5rem auto 0;
  }
  #support h2 {
    font-size: 2.4rem;
    gap: 1rem;
    margin: 0 -3rem 2rem;
  }
  #support h2::before, #support h2::after {
    width: 2.7rem;
  }
  #support .bnr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* other_info
----------------------------------- */
.other_info {
  margin: clamp(10px, 6.9vw, 100px) calc(-1 * clamp(8px, 5.6vw, 80px)) 0 calc(-1 * clamp(34px, 23.9vw, 344px));
  background: #fa4c4b;
}
.other_info .wrap {
  width: calc(100% - clamp(26px, 18.3vw, 264px));
  margin-left: auto;
  padding: 0 clamp(8px, 5.6vw, 80px);
}
.other_info .info {
  max-width: 1016px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.other_info .info > * {
  display: grid;
  grid-template-rows: max-content 1fr max-content;
  padding: clamp(6px, 3.8vw, 55px) clamp(1px, 0.7vw, 10px) clamp(7px, 4.9vw, 70px) clamp(4px, 2.4vw, 35px);
  height: clamp(36px, 25vw, 360px);
  border-left: solid 2px #fb8281;
  color: #fff;
}
.other_info .info > *:first-child {
  border: none;
}
.other_info .info > * p {
  grid-row: 1/2;
  font-size: clamp(0rem, 1.1vw, 1.6rem);
}
.other_info .info > * h2 {
  grid-row: 2/3;
  margin-top: 1em;
  font-size: clamp(0rem, 1.9vw, 2.8rem);
  font-weight: 700;
}
.other_info .info > * .btn a {
  background: #fff;
  border-radius: 2em;
  padding: 0.9em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: clamp(18px, 12.5vw, 180px);
  font-size: clamp(0rem, 1.1vw, 1.6rem);
}
.other_info .info > * .btn a::after {
  content: "";
  width: clamp(1px, 0.8vw, 12px);
  aspect-ratio: 1/1;
  background: url(../img/icon_arrow_03.webp) no-repeat 0 0/100% auto;
}
@media (max-width: 767px) {
  .other_info {
    margin: 6rem -3rem 0;
  }
  .other_info .wrap {
    width: auto;
    padding: 0;
  }
  .other_info .info {
    display: block;
  }
  .other_info .info > * {
    padding: 3rem 3rem 3.5rem;
    height: 24rem;
    border-left: none;
    border-top: solid 2px #fb8281;
  }
  .other_info .info > * p {
    font-size: 1.8rem;
  }
  .other_info .info > * h2 {
    margin-top: 0.5rem;
    font-size: 3.2rem;
  }
  .other_info .info > * .btn a {
    width: 18rem;
    font-size: 1.6rem;
    margin-left: auto;
  }
  .other_info .info > * .btn a::after {
    width: 1.2rem;
  }
}

/* vote
----------------------------------- */
#vote {
  margin-top: clamp(4px, 2.4vw, 35px);
  text-align: center;
}
@media (max-width: 767px) {
  #vote {
    margin-top: 3rem;
  }
}

/* footer
----------------------------------- */
footer {
  width: calc(100% - clamp(26px, 18.3vw, 264px));
  margin-left: auto;
  padding: clamp(2px, 1.4vw, 20px) clamp(8px, 5.6vw, 80px) clamp(3px, 1.7vw, 25px);
}
footer .footer {
  max-width: 1016px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .hirei {
  font-size: clamp(1rem, 5.6vw, 8rem);
  font-weight: 700;
  color: #fa4c4b;
  line-height: 1;
}
footer .share p {
  text-align: center;
  font-size: clamp(0rem, 1.4vw, 2rem);
  font-weight: 700;
  color: #fa4c4b;
  margin-bottom: 5px;
}
footer .share .sns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #eaf0f5;
  width: clamp(24px, 16.7vw, 240px);
  border-radius: clamp(3px, 1.9vw, 28px);
  padding: clamp(1px, 0.8vw, 12px);
  align-items: center;
}
footer .share .sns > * {
  text-align: center;
  border-left: solid 1px #d1ddea;
}
footer .share .sns > *:first-child {
  border-left: none;
}
footer .share .sns > * a {
  display: inline-block;
}
footer .share .sns > *.x a {
  width: clamp(3px, 1.7vw, 25px);
}
footer .share .sns > *.fb a {
  width: clamp(3px, 2.1vw, 30px);
}
footer .share .sns > *.line a {
  width: clamp(3px, 2.2vw, 32px);
}
footer .fnav {
  display: none;
}
@media (max-width: 767px) {
  footer {
    width: auto;
    padding: 3.5rem 0 11.5rem;
  }
  footer .footer {
    display: block;
  }
  footer .hirei {
    font-size: 5.2rem;
    line-height: 1.3;
    text-align: center;
  }
  footer .share {
    margin-top: 3rem;
  }
  footer .share p {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  footer .share .sns {
    width: 24rem;
    border-radius: 2.8rem;
    padding: 1.2rem;
    margin: 0 auto;
  }
  footer .share .sns > *.x a {
    width: 2.5rem;
  }
  footer .share .sns > *.fb a {
    width: 3rem;
  }
  footer .share .sns > *.line a {
    width: 3.2rem;
  }
  footer .fnav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: solid 2px #fa5425;
    background: #fff;
    z-index: 20;
  }
  footer .fnav > * {
    border-left: solid 1px #fa5425;
  }
  footer .fnav > *:first-child {
    border: none;
  }
  footer .fnav > * a {
    height: 7rem;
    display: grid;
    grid-template-rows: 1fr max-content;
    padding: 0.3rem 0 1rem 0;
    justify-items: center;
    align-items: center;
    font-size: 1.2rem;
  }
  footer .fnav > * a::before {
    content: "";
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
  }
  footer .fnav > *.candidate a::before {
    width: 1.9rem;
    aspect-ratio: 37/51;
    background-image: url(../img/icon_candidate.webp);
  }
  footer .fnav > *.policy a {
    letter-spacing: 0.8em;
    text-indent: 0.8em;
  }
  footer .fnav > *.policy a::before {
    width: 2.3rem;
    aspect-ratio: 23/22;
    background-image: url(../img/icon_policy.webp);
  }
  footer .fnav > *.bokin a {
    letter-spacing: 0.8em;
    text-indent: 0.8em;
  }
  footer .fnav > *.bokin a::before {
    width: 3.2rem;
    aspect-ratio: 64/49;
    background-image: url(../img/icon_bokin.webp);
  }
  footer .fnav > *.volunteer {
    letter-spacing: -0.05em;
  }
  footer .fnav > *.volunteer a::before {
    width: 2.5rem;
    aspect-ratio: 49/41;
    background-image: url(../img/icon_volunteer.webp);
  }
  footer .fnav > *.btn_menu a::before {
    display: none;
  }
  footer .fnav > *.btn_menu a .line {
    width: 2.4rem;
    height: 2rem;
    position: relative;
  }
  footer .fnav > *.btn_menu a .line span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fa5425;
    transition: 0.3s;
  }
  footer .fnav > *.btn_menu a .line span:nth-child(1) {
    top: 0;
  }
  footer .fnav > *.btn_menu a .line span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  footer .fnav > *.btn_menu a .line span:nth-child(3) {
    bottom: 0;
  }
  .js-menuOpen footer .fnav > *.btn_menu a .line span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
  }
  .js-menuOpen footer .fnav > *.btn_menu a .line span:nth-child(2) {
    opacity: 0;
  }
  .js-menuOpen footer .fnav > *.btn_menu a .line span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
  }
}