@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Roboto+Condensed:wght@300;400;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

/*
    font-family: 'Roboto Condensed', sans-serif;
    font-family: 'Crimson Text', serif;
*/
/* automatic size vw */
/* automatic size vh */
/* text clamp */
/* anime In order */
/*
    Form Parts
*/
input {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  display: inline-block;
  padding: 5px 10px 5px 30px;
  position: relative;
  font-size: 13px;
}
@media (max-width: 750px) {
  input[type=checkbox] + label {
    text-align: left;
    font-size: 24px;
    font-size: 6.4vw;
  }
}
input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 16px;
  transform-origin: center; /* y-offset-keyword | x-offset-keyword | z-offset */
  transform: rotate(45deg) translate(-50%, -60%);
}
input[type=radio] {
  display: none;
}
input[type=radio] + label {
  display: inline-block;
  padding: 5px 10px 5px 40px;
  position: relative;
  font-size: 13px;
}
@media (max-width: 750px) {
  input[type=radio] + label {
    text-align: left;
    font-size: 26px;
    font-size: 6.9333333333vw;
  }
}
input[type=radio] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  margin-top: -14px;
}
input[type=radio]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 16px;
  transform-origin: center; /* y-offset-keyword | x-offset-keyword | z-offset */
  transform: rotate(45deg) translate(-50%, -60%);
}

textarea {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

button {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}

/*
    Button
*/
a.btn.contact {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4CBCFC;
  border-radius: 60px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
}
@media (max-width: 750px) {
  a.btn.contact {
    max-width: 100%;
    height: 14.6667vw;
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
a.btn.contact > span {
  padding: 0 30px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  a.btn.contact > span {
    padding: 0 8vw 0 0;
  }
}
a.btn.contact > span:after {
  content: "";
  display: block;
  width: 25px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  a.btn.contact > span:after {
    width: 6.6667vw;
    height: 5.3333vw;
  }
}
a.btn.list {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 9px;
  color: #4CBCFC;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  border: 1px solid #4CBCFC;
}
@media (max-width: 750px) {
  a.btn.list {
    max-width: 100%;
    height: 14.6667vw;
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
a.btn.list:hover {
  opacity: 1;
  background-color: #4CBCFC;
  color: #fff;
}
a.btn.list2 {
  margin: 0 auto;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  color: #4CBCFC;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.11em;
  border: 1px solid #4CBCFC;
  padding: 0 20px;
}
@media (max-width: 750px) {
  a.btn.list2 {
    max-width: 100%;
    min-width: 61.3333vw;
    height: 8vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
a.btn.list2:hover {
  opacity: 1;
  background-color: #4CBCFC;
  color: #fff;
}
a.btn.detail {
  width: 100%;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  color: #4CBCFC;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  border: 1px solid #4CBCFC;
  padding: 0 20px;
}
a.btn.follow {
  display: inline-block;
  padding: 8px 20px;
  background-color: #2581E5;
  border-radius: 50px;
  font-size: 11.5px;
  color: #fff;
}
@media (max-width: 750px) {
  a.btn.follow {
    width: 100%;
    padding: 3.2vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
a.btn.download {
  display: block;
  background-color: #fff;
  border: 1px solid #52BDF9;
  border-radius: 40px;
  padding: 12px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: #52BDF9;
  letter-spacing: 0;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 750px) {
  a.btn.download {
    padding: 2.6666666667vw 0 2.1333333333vw;
    font-size: 17px;
    font-size: 4.5333333333vw;
  }
}
a.btn.download:hover {
  background-color: #52BDF9;
  color: #fff;
  opacity: 1;
}
a.btn.news {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4CBCFC;
  border-radius: 30px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.11em;
  border: 1px solid #4CBCFC;
}
@media (max-width: 750px) {
  a.btn.news {
    max-width: 100%;
    height: 14.6667vw;
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}

/*
    popup
*/
.anime {
  opacity: 0;
}
.anime.animated {
  animation: slideTitle 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

@keyframes slideTitle {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInEnlarge {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleXwidth {
  0% {
    transform: scaleX(0);
    transform-origin: top left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: top left;
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInLoop {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  60% {
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInCenter {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3) translate(-50%, -50%);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01) translate(-50%, -50%);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99) translate(-50%, -50%);
  }
  to {
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes bounceOut {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInroll {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  20% {
    opacity: 1;
    transform: translate(0, -10px);
  }
  40% {
    transform: translate(0, 0);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    opacity: 0;
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -20deg);
  }
  20% {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 10deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 2deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -1deg);
  }
  to {
    opacity: 1;
    transform-origin: left bottom;
    transform: none;
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes shadowSlide {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-15px, -15px);
  }
  20% {
    opacity: 1;
    transform: translate(-15px, -15px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes shadowSlide_sp {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-7px, -7px);
  }
  20% {
    opacity: 1;
    transform: translate(-7px, -7px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes blurInTitle {
  from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes Turnboard {
  from {
    transform: perspective(300px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in-out;
    opacity: 0;
  }
  40% {
    transform: perspective(300px) rotate3d(0, 1, 0, -10deg);
    animation-timing-function: ease-in-out;
  }
  60% {
    transform: perspective(300px) rotate3d(0, 1, 0, 5deg);
    opacity: 1;
  }
  80% {
    transform: perspective(300px) rotate3d(0, 1, 0, -2deg);
  }
  to {
    opacity: 1;
    transform: perspective(300px);
  }
}
@keyframes fuwafuwa {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeOutAnime {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: scale(1, 1);
  }
  60% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(0, 0);
  }
}
@keyframes fadeOutAnimeBtn {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-100%, -80%) scale(1, 1);
  }
  60% {
    transform: translate(-100%, -80%) scale(1.2, 1.2);
  }
  100% {
    transform: translate(-50%, -40%) scale(0, 0);
  }
}
@keyframes bounceInDown {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1, 1, 1) translate(0, -40px);
  }
  20% {
    transform: scale3d(1, 1, 1);
  }
  40% {
    transform: scale3d(1.1, 0.9, 1) translate(0, 5px);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.95, 1.05, 1) translate(0, -2px);
  }
  80% {
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(1, 1, 1) translate(0, 0);
    opacity: 1;
  }
}
@keyframes bounceOutUp {
  from, to {
    animation-timing-function: cubic-bezier(0.915, 0.03, 0.91, 0.35);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(0, 0, 1) translate(0, 120px);
    opacity: 0;
  }
}
@keyframes kujiOpen1step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 50%;
  }
  to {
    height: 0;
  }
}
@keyframes kujiOpen2step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 0;
  }
  to {
    height: 50%;
  }
}
@keyframes rotationInner {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes kujiOpen3step {
  0%, 40%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    top: 15%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    top: -13%;
  }
  to {
    opacity: 1;
    top: -10%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
}
@keyframes kujifadeout {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  50% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  to {
    top: 48.5%;
    width: 67.33vw;
    opacity: 1;
    transform: scale(1, 1);
  }
}
/*
    個別にアニメーション
*/
@keyframes lottery_fuwa01 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -20%) rotate(-20deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes lottery_fuwa02 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  50% {
    transform: translate(-40%, -80%) rotate(25deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
}
@keyframes lottery_fuwa03 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
  50% {
    transform: translate(-60%, 10%) rotate(-79deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
}
@keyframes lottery_fuwa04 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
  50% {
    transform: translate(-40%, -40%) rotate(-133deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
}
@keyframes lottery_fuwa05 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
  50% {
    transform: translate(-50%, -90%) rotate(-66deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
}
@keyframes lottery_fuwa08 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
  50% {
    transform: translate(-50%, 10%) rotate(-192deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
}
/*
    common
*/
html,
body {
  width: 100%;
  height: auto;
  font-size: 100%;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Roboto Condensed", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: center;
  overflow-x: hidden;
  color: #333;
}
html.hidden,
body.hidden {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Roboto Condensed", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

sup {
  vertical-align: super;
  font-size: 80%;
}

.util_sp {
  display: none !important;
}
@media (max-width: 750px) {
  .util_sp {
    display: block !important;
  }
}

.util_pc {
  display: block !important;
}
@media (max-width: 750px) {
  .util_pc {
    display: none !important;
  }
}

@media print {
  img {
    display: none;
  }
}
/*
    Error
*/
p.error {
  font-size: 13px;
  margin-bottom: 15px;
}
@media (max-width: 750px) {
  p.error {
    margin-bottom: 2vw;
    font-size: 26px;
    font-size: 6.9333333333vw;
  }
}

/*
    loader
*/
/*
    header
*/
@media (max-width: 750px) {
  header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 2;
    border-bottom: 1px solid #DDDDDD;
  }
}
header#header > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1230px;
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 750px) {
  header#header > .inner {
    padding: 3.46667vw 5.3333vw;
  }
}

body:not(.home) header#header {
  border-bottom: 3px solid #F55881;
}

header#header > .inner #logo img {
  width: 150px;
}
@media (max-width: 750px) {
  header#header > .inner #logo img {
    width: 28vw;
  }
}
header#header > .inner #logo a {
  color: #333;
  display: flex;
  align-items: flex-end;
}
header#header > .inner #logo span {
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-left: 0.5em;
  margin-bottom: 0.25em;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (max-width: 750px) {
  header#header > .inner #logo span {
    font-size: 17px;
    font-size: 4.5333333333vw;
    margin-left: 0.3em;
  }
}
header#header > .inner #sp_menu {
  display: none;
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu {
    position: absolute;
    top: 50%;
    right: 5.3333vw;
    transform: translate(0, -50%);
    opacity: 1;
    display: block;
    width: 5vw;
    height: 5vw;
  }
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu > span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    transition: 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu > span:nth-of-type(1) {
    top: 15%;
  }
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu > span:nth-of-type(2) {
    top: 50%;
  }
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu > span:nth-of-type(3) {
    top: 85%;
  }
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu.active > span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu.active > span:nth-of-type(2) {
    top: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (max-width: 750px) {
  header#header > .inner #sp_menu.active > span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
}

/*
    footer
*/
footer#footer > .inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 35px 15px 35px;
  border-top: 1px solid #DDDDDD;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  footer#footer > .inner {
    max-width: 87.4667vw;
    padding: 4.8vw 0 9.33333vw;
  }
}
footer#footer > .inner > ul.f_link {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  footer#footer > .inner > ul.f_link {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 5.3333333333vw;
  }
}
footer#footer > .inner > ul.f_link > li {
  padding: 0 25px;
  font-size: 14px;
  letter-spacing: 0.15em;
}
@media (max-width: 750px) {
  footer#footer > .inner > ul.f_link > li {
    padding: 0 1.6667vw;
    font-size: 16px;
    font-weight: 500;
  }
}
footer#footer > .inner > ul.f_link > li a {
  color: #333;
}
footer#footer > .inner #f_logo {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 750px) {
  footer#footer > .inner #f_logo {
    margin-top: 14.66667vw;
  }
}
footer#footer > .inner #f_logo img {
  width: 150px;
}
@media (max-width: 750px) {
  footer#footer > .inner #f_logo img {
    width: 44vw;
  }
}
footer#footer > .inner #f_logo a {
  color: #333;
  display: flex;
  align-items: flex-end;
}
footer#footer > .inner #f_logo span {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  margin-bottom: 0.2em;
  letter-spacing: 0.04em;
}
@media (max-width: 750px) {
  footer#footer > .inner #f_logo span {
    font-size: 24px;
    font-size: 6.4vw;
    margin-left: 0.3em;
    margin-bottom: 0.32em;
  }
}
footer#footer > .copyright {
  padding: 35px 15px;
  background-color: #4CBCFC;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
}
@media (max-width: 750px) {
  footer#footer > .copyright {
    padding: 9.33333vw 4vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}

/*
    Navigation
*/
nav#nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75em;
}
@media (max-width: 750px) {
  nav#nav {
    position: absolute;
    top: 16.53333vw;
    right: 0;
    display: block;
    width: 100%;
    height: calc(100vh - 16.53333vw);
    background-color: #E8F5FC;
    overflow: auto;
    padding-top: 0;
    padding-bottom: 5.3333vw;
    display: none;
  }
}
@media (max-width: 750px) {
  nav#nav > p {
    margin-top: 13.3333vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
    text-align: left;
    letter-spacing: 0.15em;
    padding: 0 5.3333vw;
  }
}
nav#nav > ul {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  nav#nav > ul {
    display: block;
    text-align: left;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link {
    margin-top: 12.2667vw;
    padding: 0 5.3333vw;
  }
}
nav#nav > ul.h_link > li {
  padding: 0 12px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.15em;
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li {
    width: auto;
    padding: 0;
  }
}
nav#nav > ul.h_link > li a {
  color: #333;
  white-space: nowrap;
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a {
    display: block;
    border-bottom: 1px solid #DDDDDD;
    padding: 6.4vw 0;
    font-size: 16px;
    font-size: 4.2666666667vw;
    position: relative;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 3vw;
    height: 3vw;
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    transform: translate(0, -50%) rotate(45deg);
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropdown:before {
    content: "";
    display: block;
    width: 2.93333vw;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #333;
    opacity: 1;
    transform: translate(0, -50%) rotate(0);
    transition: 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropdown:after {
    border: none;
    width: 2.93333vw;
    height: 1px;
    background-color: #333;
    transform: translate(0, -50%) rotate(90deg);
    opacity: 1;
    transition: 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropdown:hover {
    opacity: 1;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropdown.active:before {
    transform: translate(0, -50%) rotate(90deg);
    opacity: 0;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropdown.active:after {
    transform: translate(0, -50%) rotate(180deg);
  }
}
nav#nav > ul.h_link > li a.dropmenu_mega {
  position: relative;
  font-size: 18px;
}
@media screen and (min-width: 751px) {
  nav#nav > ul.h_link > li a.dropmenu_mega:hover:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.5em;
    width: 100%;
    height: 2px;
    background-color: #8D8D8D;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropmenu_mega:before {
    content: "";
    display: block;
    width: 2.93333vw;
    height: 1px;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #333;
    opacity: 1;
    transform: translate(0, -50%) rotate(0);
    transition: 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropmenu_mega:after {
    border: none;
    width: 2.93333vw;
    height: 1px;
    background-color: #333;
    transform: translate(0, -50%) rotate(90deg);
    opacity: 1;
    transition: 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropmenu_mega:hover {
    opacity: 1;
  }
}
nav#nav > ul.h_link > li a.dropmenu_mega.active {
  opacity: 0.5;
}
@media screen and (min-width: 751px) {
  nav#nav > ul.h_link > li a.dropmenu_mega.active:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -0.5em;
    width: 100%;
    height: 2px;
    background-color: #8D8D8D;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropmenu_mega.active:before {
    transform: translate(0, -50%) rotate(90deg);
    opacity: 0;
  }
}
@media (max-width: 750px) {
  nav#nav > ul.h_link > li a.dropmenu_mega.active:after {
    transform: translate(0, -50%) rotate(180deg);
  }
}
nav#nav > ul.sns_link {
  margin-left: 30px;
}
@media (max-width: 750px) {
  nav#nav > ul.sns_link {
    display: flex;
    margin-left: 0;
    margin-top: 4vw;
    padding: 0 5.3333vw;
  }
}
nav#nav > ul.sns_link > li {
  padding: 0 5px;
}
@media (max-width: 750px) {
  nav#nav > ul.sns_link > li {
    padding: 0 5.33333vw 0 0;
  }
}
nav#nav > ul.sns_link > li img {
  width: 32px;
}
@media (max-width: 750px) {
  nav#nav > ul.sns_link > li img {
    width: 8.8vw;
  }
}
nav#nav > ul > li > ul {
  background-color: #fff;
  display: none;
}
@media (max-width: 750px) {
  nav#nav > ul > li > ul {
    margin: 0 -5.3333vw;
    padding: 2.6667vw 5.3333vw;
  }
}
@media (max-width: 750px) {
  nav#nav > ul > li > ul > li a {
    padding: 2.6667vw 0 !important;
    border: none !important;
  }
}
@media (max-width: 750px) {
  nav#nav > ul > li > ul > li a:after {
    content: none !important;
  }
}
@media (max-width: 750px) {
  nav#nav > ul > li > ul > li.title {
    padding: 2.6667vw 0;
  }
}

.dropmenu_wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100vw;
  background-color: #E4EAEF;
  padding: 20px 10px;
  z-index: 2;
  display: none;
}
@media (max-width: 750px) {
  .dropmenu_wrapper {
    position: static;
    transform: translate(0, 0);
    margin: 0 -5.3333vw;
    padding: 0;
  }
}
.dropmenu_wrapper > ul {
  margin: 0 auto;
  width: 100%;
  max-width: 925px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 750px) {
  .dropmenu_wrapper > ul {
    display: block;
  }
}
.dropmenu_wrapper > ul > li {
  padding: 20px 10px;
}
@media (max-width: 750px) {
  .dropmenu_wrapper > ul > li {
    padding: 0 5.3333vw;
  }
}
@media (max-width: 750px) {
  .dropmenu_wrapper > ul > li a {
    padding: 4.6667vw 0 !important;
  }
}

/*
    Style
*/
#main {
  min-height: calc(100vh - 340px);
  overflow: hidden;
}
@media (max-width: 750px) {
  #main {
    padding-top: 17.53333vw;
    min-height: 1vh;
  }
}
#main section.section > .inner .pagenation > .p-blog__pager > ul.page-numbers {
  display: flex;
  justify-content: center;
}
#main section.section > .inner .pagenation > .p-blog__pager > ul.page-numbers > li {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}
#main section.section > .inner .pagenation > .p-blog__pager > ul.page-numbers > li a {
  color: #DDDDDD;
}
#main section.section > .inner .pagenation > .p-blog__pager > ul.page-numbers > li span.current {
  color: #4CBCFC;
}
#main section.section > .inner .pagenation > .p-blog__pager > ul.page-numbers > li span.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9px;
  height: 18px;
  background-image: url("../images/common/icon_arrow_prev3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main section.section > .inner .pagenation > .p-blog__pager > ul.page-numbers > li span.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9px;
  height: 18px;
  background-image: url("../images/common/icon_arrow_next3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main section.section#mainview > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  max-height: 400px;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner {
    max-height: 123.4667vw;
  }
}
#main section.section#mainview > .inner ul.container_mv_slider {
  opacity: 0;
}
#main section.section#mainview > .inner .slick-slider {
  opacity: 0;
  transition: opacity 0.3s linear;
}
#main section.section#mainview > .inner .slick-slider.slick-initialized {
  opacity: 1;
}
#main section.section#mainview > .inner .slick-prev {
  width: 20px;
  height: 40px;
  left: 100px;
  z-index: 1;
  background-image: url("../images/common/icon_arrow_prev2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .slick-prev {
    width: 4vw;
    height: 8vw;
    left: 8vw;
  }
}
#main section.section#mainview > .inner .slick-prev:before {
  content: none;
}
#main section.section#mainview > .inner .slick-next {
  width: 20px;
  height: 40px;
  right: 100px;
  z-index: 1;
  background-image: url("../images/common/icon_arrow_next2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .slick-next {
    width: 4vw;
    height: 8vw;
    right: 8vw;
  }
}
#main section.section#mainview > .inner .slick-next:before {
  content: none;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .slick-dots {
    bottom: -6.6667vw;
  }
}
#main section.section#mainview > .inner .slick-dots li {
  width: auto;
  height: auto;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .slick-dots li {
    margin: 0 1.86667vw;
  }
}
#main section.section#mainview > .inner .slick-dots li button {
  padding: 0;
  border-radius: 50%;
  background-color: #B7B8B8;
  width: 7px;
  height: 7px;
}
#main section.section#mainview > .inner .slick-dots li button:before {
  content: none;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .slick-dots li button {
    width: 1.86667vw;
    height: 1.86667vw;
  }
}
#main section.section#mainview > .inner .slick-dots li.slick-active button {
  background-color: #595757;
}
#main section.section#mainview > .inner .content_mv_slider {
  position: relative;
}
#main section.section#mainview > .inner .content_mv_slider_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 750px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  color: #fff;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .content_mv_slider_inner {
    padding-top: 5.3333vw;
    max-width: 74.6667vw;
    justify-content: flex-start;
    align-items: center;
  }
}
#main section.section#mainview > .inner .content_mv_slider_inner a {
  color: #fff;
}
#main section.section#mainview > .inner .content_mv_slider_inner > h1 {
  font-size: 40px;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .content_mv_slider_inner > h1 {
    font-size: 34px;
    font-size: 9.0666666667vw;
  }
}
#main section.section#mainview > .inner .content_mv_slider_inner > p.strong {
  font-family: "Crimson Text";
  font-size: 111px;
  font-weight: 600;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .content_mv_slider_inner > p.strong {
    font-size: 99px;
    font-size: 26.4vw;
  }
}
#main section.section#mainview > .inner .content_mv_slider_inner > .link {
  margin-top: 0.5em;
  font-size: 16px;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .content_mv_slider_inner > .link {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
#main section.section#mainview > .inner .content_mv_slider_inner > .link a {
  display: inline-block;
  position: relative;
  padding: 0 30px 0 0;
  text-decoration: underline;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .content_mv_slider_inner > .link a {
    padding: 0 6.6667vw 0 0;
  }
}
#main section.section#mainview > .inner .content_mv_slider_inner > .link a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #fff;
}
@media (max-width: 750px) {
  #main section.section#mainview > .inner .content_mv_slider_inner > .link a:after {
    border-width: 1.3333vw 0 1.3333vw 2.32vw;
  }
}
#main section.section#mainview > .inner .content_mv_slider_inner > .link a:hover {
  text-decoration: none;
}
#main section.section#topics > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 100px 0;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner {
    padding: 40px 6.26667vw;
  }
}
#main section.section > .inner > h2 {
  font-size: 34px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 750px) {
  #main section.section > .inner > h2 {
    font-size: 30px;
    font-size: 8vw;
  }
}
#main section.section > .inner > h2 > span {
  margin-bottom: 15px;
  display: block;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #F55881;
  font-weight: 400;
}
@media (max-width: 750px) {
  #main section.section > .inner > h2 > span {
    font-size: 15px;
    font-size: 4vw;
  }
}
#main section.section#topics > .inner > .container {
  margin-top: 40px;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container {
    margin-top: 10.66667vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider {
  margin: 0 -43px;
  display: flex;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider {
    display: block;
    margin: 0 auto;
    width: 65.6vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li {
  padding: 0 43px;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li {
    padding: 0;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics {
  width: 275px;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics {
    width: 65.6vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .thumbnail {
  position: relative;
  overflow: hidden;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .thumbnail:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 53.4693%;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text {
  margin-top: 15px;
  text-align: left;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text {
    margin-top: 4vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta {
    margin-bottom: 5.33333vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li {
  font-size: 20px;
  padding: 0;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a {
  color: #333;
  display: inline-block;
  position: relative;
  letter-spacing: 0.15em;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-top: -0.2em;
  margin-right: 0.5em;
  vertical-align: middle;
  line-height: 0;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a:before {
    width: 7.46667vw;
    height: 7.46667vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a.policyinfo:before {
  background-image: url("../images/common/icon_topics_policy.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a.information:before {
  background-image: url("../images/common/icon_topics_info.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a.regionalinfo:before {
  background-image: url("../images/common/icon_topics_regional.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a.activitiesinfo:before {
  background-image: url("../images/common/icon_topics_activities.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li a.electioninfo:before {
  background-image: url("../images/common/icon_topics_election.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .meta > li .icon_new {
  display: inline-block;
  margin-left: 0.5em;
  color: #D40012;
  font-size: 90%;
  font-weight: 600;
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4CBCFC;
  line-height: 1.5;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > h3 {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .text_exp {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .text_exp {
    margin-top: 8vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
#main section.section#topics > .inner > .container ul.container_topics_slider li .content_topics > .text > .text_exp a {
  color: #008ED7;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container .slick-prev {
    width: 4vw;
    height: 8vw;
    background-image: url("../images/common/icon_arrow_prev.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    left: -10.6667vw;
  }
}
#main section.section#topics > .inner > .container .slick-prev:before {
  content: none;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container .slick-next {
    width: 4vw;
    height: 8vw;
    background-image: url("../images/common/icon_arrow_next.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    right: -10.6667vw;
  }
}
#main section.section#topics > .inner > .container .slick-next:before {
  content: none;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container .slick-dots {
    bottom: -6.6667vw;
  }
}
#main section.section#topics > .inner > .container .slick-dots li {
  width: auto;
  height: auto;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container .slick-dots li {
    margin: 0 1.86667vw;
  }
}
#main section.section#topics > .inner > .container .slick-dots li button {
  padding: 0;
}
#main section.section#topics > .inner > .container .slick-dots li button:before {
  content: none;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container .slick-dots li button {
    width: 1.86667vw;
    height: 1.86667vw;
    border-radius: 50%;
    background-color: #B7B8B8;
  }
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container .slick-dots li.slick-active button {
    background-color: #595757;
  }
}
#main section.section#topics > .inner > .container > .container_btn {
  margin-top: 40px;
}
@media (max-width: 750px) {
  #main section.section#topics > .inner > .container > .container_btn {
    margin-top: 26.6667vw;
  }
}

/* -------member ------- */

#main section.section#member > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 80px 15px 0;
}
@media (max-width: 750px) {
  #main section.section#member > .inner {
    padding: 6.6667vw 6.26667vw 0;
  }
}
#main section.section#member > .inner > p {
  margin-top: 35px;
  font-size: 16px;
}
@media (max-width: 750px) {
  #main section.section#member > .inner > p {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
#main section.section#member > .inner > .container {
  margin-top: 40px;
  position: relative;
}

/* 議員紹介 - タイトル・スライダーエリア */
.member-title-slider-area {
  background-color: #F7F7F7;
  padding: 100px 0 60px;
  margin-top: 40px;
}

/* 議員紹介 - タイトルセクション */
.member-title-section {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px 40px;
}

.member-title-section h2 {
  font-size: 34px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 750px) {
  .member-title-section h2 {
    font-size: 30px;
    font-size: 8vw;
  }
}

.member-title-section h2 > span {
  margin-bottom: 15px;
  display: block;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #F55881;
  font-weight: 400;
}
@media (max-width: 750px) {
  .member-title-section h2 > span {
    font-size: 15px;
    font-size: 4vw;
  }
}
@media (max-width: 750px) {
  .member-title-section {
    padding: 0 6.26667vw 10.6667vw;
  }
}
@media (max-width: 750px) {
  .member-title-slider-area {
    padding: 8vw 0 12vw;
    margin-top: 10.6667vw;
  }
}

/* 議員紹介 - スライダーセクション */
.member-slider-section {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 750px) {
  .member-slider-section {
    padding: 0 6.26667vw;
  }
}

/* 議員カード */
.member-card {
  display: block;
  border: 1px solid #E9E9E9;
  background: #FFF;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 750px) {
  .member-card {
    padding: 5.3333vw;
  }
}

.member-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.member-photo {
  margin-bottom: 15px;
}
@media (max-width: 750px) {
  .member-photo {
    margin-bottom: 4vw;
  }
}

.member-photo img {
  width: 70%;
  aspect-ratio: 165/188;
  object-fit: cover;
  object-position: top;
}
@media (max-width: 750px) {
  .member-photo img {
    width: 70%;
    aspect-ratio: 165/188;
  }
}

.member-furigana {
  color: #000;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
@media (max-width: 750px) {
  .member-furigana {
    margin-bottom: 2.1333vw;
  }
}

.member-name {
  color: #008BFE;
  text-align: center;
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
  text-decoration: underline;
  text-decoration-color: #008BFE;
}
@media (max-width: 750px) {
  .member-name {
    margin-bottom: 2.1333vw;
  }
}

.member-type {
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.9px;
  color: #333;
}

/* Swiper スタイル */
.member-swiper {
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  .member-swiper {
    padding-bottom: 13.3333vw;
  }
}

.member-swiper .swiper-button-next,
.member-swiper .swiper-button-prev {
  color: #4CBCFC;
  width: 30px;
  height: 30px;
}
@media (max-width: 750px) {
  .member-swiper .swiper-button-next,
  .member-swiper .swiper-button-prev {
    width: 8vw;
    height: 8vw;
  }
}



/* シンプルなprev/nextボタンスタイル */
.member-swiper .swiper-button-next,
.member-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
@media (max-width: 750px) {
  .member-swiper .swiper-button-next,
  .member-swiper .swiper-button-prev {
    width: 10.6667vw;
    height: 10.6667vw;
  }
}

.member-swiper .swiper-button-next:hover,
.member-swiper .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.member-swiper .swiper-button-next:after,
.member-swiper .swiper-button-prev:after {
  font-size: 14px;
  color: #4CBCFC;
  font-weight: 700;
}
@media (max-width: 750px) {
  .member-swiper .swiper-button-next:after,
  .member-swiper .swiper-button-prev:after {
    font-size: 3.7333vw;
  }
}
@media (max-width: 750px) {
  .member-swiper .swiper-button-next:after,
  .member-swiper .swiper-button-prev:after {
    font-size: 4.2667vw;
  }
}

/* 議員紹介 - 検索フォームエリア */
.member-search-area {
  background: rgba(76, 188, 251, 0.30);
  padding: 50px 0;
}
@media (max-width: 750px) {
  .member-search-area {
    padding: 32px 0;
  }
}

.member-search-area h3{
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.member-search-section {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 750px) {
  .member-search-section {
    padding: 0 6.26667vw;
  }
}

.search-form-row {
  display: flex;
  gap: 20px;
  align-items: end;
  flex-wrap: wrap;
}

.search-form-row-1 {
  display: flex;
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
  justify-content: center;
}

.search-form-row-2 {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .search-form-row {
    display: block;
  }
  
  .search-form-row-1 {
    display: block;
    margin-bottom: 20px;
  }
  
  .search-form-row-2 {
    display: flex;
    gap: 16px;
  }
}

.search-field {
  flex: 1;
}

.search-form-row-1 .search-field {
  max-width: 300px;
  flex: 0 0 300px;
}

.search-form-row-2 .search-field {
  flex: 1;
  max-width: none;
}

.search-form-row-2 .search-field:last-child {
  flex: 0 0 120px;
}
@media (max-width: 750px) {
  .search-field {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .search-form-row-1 .search-field {
    max-width: unset;
    margin: 0 auto 8px;
  }
  
  .search-form-row-2 {
    display: flex;
    gap: 16px;
  }
  
  .search-form-row-2 .search-field:last-child {
    flex: 0 0 48px;
  }
}

.search-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
@media (max-width: 750px) {
  .search-field label {
    font-size: 3.7333vw;
    margin-bottom: 2.1333vw;
  }
}

.search-field select,
.search-field input[type="text"] {
  width: 100%;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
  background-color: #fff;
  font-weight: 700;
  height: 60px;
}

.search-field select {
  background-color: #008BFE;
  color: #FFF;
  border-radius: 4px;
  height: 60px;
  padding: 0 50px 0 20px;
  font-size: 18px;
  text-align: center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align-last: center;
  padding-left: 35px;
  padding-right: 35px;
}
@media (max-width: 750px) {
  .search-field select,
  .search-field input[type="text"] {
    padding: 0 16px;
    border-radius: 4px;
    font-size: 16px;
    height: 48px;
  }
  
  .search-field select {
    width: 100%;
    max-width: none;
    padding: 0 40px 0 16px;
    font-size: 16px;
    background-size: 16px;
    background-position: right 12px center;
    text-align-last: center;
  }
}

.search-field select:focus,
.search-field input[type="text"]:focus {
  outline: none;
  border-color: #4CBCFC;
  box-shadow: 0 0 0 2px rgba(76, 188, 252, 0.2);
}

.search-btn {
  background-color: #008BFE;
  color: #fff;
  border: none;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 120px;
  height: 60px;
}
@media (max-width: 750px) {
  .search-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 4px;
    font-size: 0;
    min-width: 48px;
    max-width: 48px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ffffff'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    flex-shrink: 0;
  }
}

.search-btn:hover {
  background-color: #3aa5e0;
}

/* クリアボタン */
.search-clear-btn {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 750px) {
  .search-clear-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 4px;
    font-size: 0;
    min-width: 48px;
    max-width: 48px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 18L18 6M6 6l12 12'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    flex-shrink: 0;
  }
}

.search-clear-btn:hover {
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

/* 検索結果関連のスタイル追加 */
.loading, .error, .no-results {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 16px;
}

/* 議員紹介 - 検索結果エリア */
.member-results-area {
  background-color: #F7F7F7;
  padding: 50px 0;
}
@media (max-width: 750px) {
  .member-results-area {
    padding: 13.3333vw 0;
  }
}

.member-search-results {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 750px) {
  .member-search-results {
    padding: 0 6.26667vw;
  }
}

.search-results-header {
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 750px) {
  .search-results-header {
    margin-bottom: 8vw;
  }
}

.search-results-title {
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  color: #333;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .search-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 750px) {
  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 5.3333vw;
  }
}

/* 検索結果用の横長カード */
.member-card-horizontal {
  display: flex;
  align-items: center;
  border: 1px solid #E9E9E9;
  background: #FFF;
  border-radius: 4px;
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 750px) {
  .member-card-horizontal {
    padding: 14px;
  }
}

.member-card-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: #008BFE;
}

.member-photo-horizontal {
  flex-shrink: 0;
  margin-right: 20px;
}
@media (max-width: 750px) {
  .member-photo-horizontal {
    margin-right: 5.3333vw;
  }
}

.member-photo-horizontal img {
  width: 80px;
  height: 120px;
  aspect-ratio: 120/180;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 750px) {
  .member-photo-horizontal img {
    width: 21.3333vw;
    height: 32vw;
  }
}

.member-info-horizontal {
  flex: 1;
  text-align: left;
}

.member-name-horizontal {
  color: #008BFE;
  font-size: clamp(18px, calc((24 / 1440) * 100vw), 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-decoration: underline;
  text-decoration-color: #008BFE;
}
@media (max-width: 750px) {
  .member-name-horizontal {
    margin-bottom: 2.1333vw;
  }
}

.member-furigana-horizontal {
  color: #000;
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.7px;
  margin-bottom: 6px;
}
@media (max-width: 750px) {
  .member-furigana-horizontal {
    margin-bottom: 1.6vw;
  }
}

.member-type-horizontal {
  font-size: clamp(14px, calc((16 / 1440) * 100vw), 16px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  color: #333;
}

/* 検索結果エリア内のボタン */
.member-title-slider-area .container_btn {
  margin-top: 40px;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
@media (max-width: 750px) {
  .member-title-slider-area .container_btn {
    margin-top: 10.6667vw;
    padding: 0 6.26667vw;
  }
}
@media (max-width: 750px) {
  .member-title-slider-area .container_btn {
    padding: 0 6.26667vw;
  }
}

.btn.members {
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4CBCFC;
  border-radius: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.11em;
  border: 1px solid #4CBCFC;
}
@media (max-width: 750px) {
  .btn.members {
    max-width: 100%;
    height: 14.6667vw;
    font-size: 5.3333vw;
  }
}
/*
#main section.section#member > .inner > .container:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 61%;
}
@media (max-width: 750px) {
  #main section.section#member > .inner > .container:before {
    padding-top: 166%;
  }
}
#main section.section#member > .inner > .container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main section.section#member > .inner > ul.attend_txt {
  margin-top: 1.5em;
}
#main section.section#member > .inner > ul.attend_txt > li {
  font-size: 14px;
}
@media (max-width: 750px) {
  #main section.section#member > .inner > ul.attend_txt > li {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.3;
  }
}
  */

/* -------sns ------- */
#main section.section#sns > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1030px;
  padding: 30px 15px;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner {
    padding: 6.6667vw 6.26667vw;
  }
}
#main section.section#sns > .inner > h2 {
  font-size: 34px;
  letter-spacing: 0.15em;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > h2 {
    font-size: 34px;
    font-size: 9.0666666667vw;
  }
}
#main section.section#sns > .inner > ul.sns_link {
  display: none;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > ul.sns_link {
    margin-top: 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > ul.sns_link > li {
    padding: 0 2.6667vw;
  }
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > ul.sns_link > li img {
    width: 16vw;
  }
}
#main section.section#sns > .inner > .container {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container {
    margin-top: 4vw;
    display: block;
  }
}
#main section.section#sns > .inner > .container > .content_tweet {
  width: 50%;
  max-width: 490px;
  border: 1px solid #CACBCB;
  line-height: 0;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container > .content_tweet {
    width: 100%;
    max-width: 100%;
    margin: 2.6667vw 0;
  }
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header {
  background-color: rgba(76, 188, 252, 0.3);
  line-height: 1.34;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px 25px 80px;
  color: #333;
  position: relative;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container > .content_tweet > .container_tw_header {
    padding: 6.6667vw 4vw 6.6667vw 16vw;
  }
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header:before {
  content: "";
  display: block;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
  background-color: #fff;
  border-radius: 50%;
  background-image: url("../images/common/icon_tw_logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container > .content_tweet > .container_tw_header:before {
    width: 10.13333vw;
    height: 10.13333vw;
    top: 12vw;
    left: 4vw;
  }
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header a {
  color: #333;
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header a.follow {
  color: #fff;
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header > div.container_tw_head {
  text-align: left;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container > .content_tweet > .container_tw_header > div.container_tw_head {
    width: 38.6667vw;
  }
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header > div.container_tw_head > h3 {
  font-size: 18px;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container > .content_tweet > .container_tw_header > div.container_tw_head > h3 {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header > div.container_tw_head > p {
  font-size: 16px;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container > .content_tweet > .container_tw_header > div.container_tw_head > p {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container > .content_tweet > .container_tw_header > div.container_btn_follow {
    width: 25.6vw;
  }
}
#main section.section#sns > .inner > .container > .content_tweet > .container_tw_header.honbu:before {
  background-image: url("../images/common/komeikoho.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main section.section#sns > .inner > .container .twitter-timeline {
    height: 96.53333vw !important;
    overflow: hidden;
  }
}
#main section.section#contact > .inner {
  padding: 60px 15px 60px;
}
@media (max-width: 750px) {
  #main section.section#contact > .inner {
    padding: 12.6667vw 6.26667vw 18.6667vw;
  }
}

/*
    topics
*/
.container_cate_select {
  text-align: right;
}
@media (max-width: 750px) {
  .container_cate_select {
    margin-top: 8vw;
  }
}
.container_cate_select .box_cate_select {
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  .container_cate_select .box_cate_select {
    width: 100%;
  }
}
.container_cate_select .box_cate_select > .container_selected {
  display: block;
  padding: 13px;
  text-align: center;
  background-color: #949494;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 750px) {
  .container_cate_select .box_cate_select > .container_selected {
    width: 100%;
    padding: 4vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
    text-align: left;
  }
}
.container_cate_select .box_cate_select > ul {
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 0 13px;
  border: 1px solid #949494;
  overflow: auto;
  max-height: 187px;
  display: none;
}
@media (max-width: 750px) {
  .container_cate_select .box_cate_select > ul {
    top: 12.2667vw;
    max-height: 61.4vw;
  }
}
.container_cate_select .box_cate_select > ul > li {
  text-align: left;
}
.container_cate_select .box_cate_select > ul > li a {
  display: block;
  white-space: nowrap;
  color: #949494;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  border-top: 1px solid #DDDDDD;
}
@media (max-width: 750px) {
  .container_cate_select .box_cate_select > ul > li a {
    font-size: 16px;
    font-size: 4.2666666667vw;
    padding: 2.6667vw 0;
  }
}
.container_cate_select .box_cate_select > ul > li a.active {
  color: #D40012;
}
.container_cate_select .box_cate_select > ul > li:nth-of-type(1) a {
  border: none;
}

.content_topics_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -43px;
}
@media (max-width: 750px) {
  .content_topics_list {
    margin: -8vw 0 0;
  }
}
.content_topics_list > li {
  padding: 35px 43px;
}
@media (max-width: 750px) {
  .content_topics_list > li {
    padding: 8vw 0;
  }
}
.content_topics_list > li .content_topics {
  width: 275px;
}
@media (max-width: 750px) {
  .content_topics_list > li .content_topics {
    width: 100%;
  }
}
.content_topics_list > li .content_topics > .thumbnail {
  position: relative;
  overflow: hidden;
}
.content_topics_list > li .content_topics > .thumbnail:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 53.4693%;
}
.content_topics_list > li .content_topics > .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_topics_list > li .content_topics > .text {
  margin-top: 15px;
  text-align: left;
}
@media (max-width: 750px) {
  .content_topics_list > li .content_topics > .text {
    margin-top: 4vw;
  }
}
.content_topics_list > li .content_topics > .text > .meta {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  .content_topics_list > li .content_topics > .text > .meta {
    margin-bottom: 5.33333vw;
  }
}
.content_topics_list > li .content_topics > .text > .meta > li {
  font-size: 20px;
}
@media (max-width: 750px) {
  .content_topics_list > li .content_topics > .text > .meta > li {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
.content_topics_list > li .content_topics > .text > .meta > li a {
  color: #333;
  display: inline-block;
  position: relative;
}
.content_topics_list > li .content_topics > .text > .meta > li a:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-top: -0.2em;
  margin-right: 0.5em;
  vertical-align: middle;
  line-height: 0;
}
@media (max-width: 750px) {
  .content_topics_list > li .content_topics > .text > .meta > li a:before {
    width: 7.46667vw;
    height: 7.46667vw;
  }
}
.content_topics_list > li .content_topics > .text > .meta > li a.policyinfo:before {
  background-image: url("../images/common/icon_topics_policy.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.content_topics_list > li .content_topics > .text > .meta > li a.information:before {
  background-image: url("../images/common/icon_topics_info.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.content_topics_list > li .content_topics > .text > .meta > li a.regionalinfo:before {
  background-image: url("../images/common/icon_topics_regional.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.content_topics_list > li .content_topics > .text > .meta > li a.activitiesinfo:before {
  background-image: url("../images/common/icon_topics_activities.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.content_topics_list > li .content_topics > .text > .meta > li a.electioninfo:before {
  background-image: url("../images/common/icon_topics_election.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.content_topics_list > li .content_topics > .text > .meta > li .icon_new {
  display: inline-block;
  margin-left: 0.5em;
  color: #D40012;
  font-size: 90%;
  font-weight: 600;
}
.content_topics_list > li .content_topics > .text > h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4CBCFC;
  line-height: 1.5;
}
@media (max-width: 750px) {
  .content_topics_list > li .content_topics > .text > h3 {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.content_topics_list > li .content_topics > .text > .text_exp {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
}
@media (max-width: 750px) {
  .content_topics_list > li .content_topics > .text > .text_exp {
    margin-top: 8vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.content_topics_list > li .content_topics > .text > .text_exp a {
  color: #008ED7;
}

/*
    Single
*/
.container_breadcrumb > ul {
  display: flex;
}
.container_breadcrumb > ul > li {
  font-size: 14px;
  position: relative;
}
@media (max-width: 750px) {
  .container_breadcrumb > ul > li {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
.container_breadcrumb > ul > li:after {
  content: "＞";
  display: inline-block;
  margin: 0 0.5em;
}
.container_breadcrumb > ul > li a {
  color: #333;
}
.container_breadcrumb > ul > li:last-of-type:after {
  content: none;
}

.container_single {
  margin: 0 auto;
  max-width: 760px;
  padding: 30px 0 0;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (max-width: 750px) {
  .container_single {
    padding: 5.3333vw 0 0;
  }
}
.container_single .container_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container_single .container_meta > div {
  font-size: 20px;
}
@media (max-width: 750px) {
  .container_single .container_meta > div {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.container_single .container_meta > div a {
  color: #333;
  display: inline-block;
  position: relative;
  letter-spacing: 0.15em;
}
.container_single .container_meta > div a:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-top: -0.2em;
  margin-right: 0.5em;
  vertical-align: middle;
  line-height: 0;
}
@media (max-width: 750px) {
  .container_single .container_meta > div a:before {
    width: 7.73333vw;
    height: 7.73333vw;
  }
}
.container_single .container_meta > div a.policyinfo:before {
  background-image: url("../images/common/icon_topics_policy.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.container_single .container_meta > div a.information:before {
  background-image: url("../images/common/icon_topics_info.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.container_single .container_meta > div a.regionalinfo:before {
  background-image: url("../images/common/icon_topics_regional.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.container_single .container_meta > div a.activitiesinfo:before {
  background-image: url("../images/common/icon_topics_activities.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.container_single .container_meta > div a.electioninfo:before {
  background-image: url("../images/common/icon_topics_election.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.container_single .container_meta > div .icon_new {
  display: inline-block;
  margin-left: 0.5em;
  color: #D40012;
  font-weight: 600;
}
.container_single .container_meta > div span.date {
  font-size: 12px;
}
@media (max-width: 750px) {
  .container_single .container_meta > div span.date {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
.container_single .container_single_body {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .container_single .container_single_body {
    margin-top: 2.6667vw;
  }
}
.container_single .container_single_body .container_single_the_content {
  text-align: left;
  line-height: 1.3;
  font-size: 16px;
  padding-bottom: 1.5em;
  border-bottom: 2px solid #949494;
  margin-bottom: 35px;
}
@media (max-width: 750px) {
  .container_single .container_single_body .container_single_the_content {
    font-size: 18px;
    font-size: 4.8vw;
    margin-bottom: 8vw;
  }
}
.container_single .container_single_body .container_single_the_content ul, .container_single .container_single_body .container_single_the_content ol {
  list-style: inherit;
}
.container_single .container_single_body .container_single_the_content > h1 {
  font-size: 150%;
  font-weight: 600;
  color: #4CBCFC;
  margin-bottom: 1em;
}
.container_single .container_single_body .images {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .container_single .container_single_body .images {
    margin-top: 2.6667vw;
  }
}
.container_single .container_single_body .youtube {
  margin-top: 20px;
  position: relative;
}
@media (max-width: 750px) {
  .container_single .container_single_body .youtube {
    margin-top: 2.6667vw;
  }
}
.container_single .container_single_body .youtube:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56%;
}
.container_single .container_single_body .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container_single .container_single_body .subtitle {
  margin-top: 40px;
  font-size: 20px;
  text-align: left;
}
@media (max-width: 750px) {
  .container_single .container_single_body .subtitle {
    margin-top: 8vw;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.container_single .container_single_body .topics_text {
  margin-top: 15px;
  text-align: left;
  font-size: 16px;
  line-height: 1.83;
}
@media (max-width: 750px) {
  .container_single .container_single_body .topics_text {
    margin-top: 8vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.container_single .container_single_body .link {
  display: flex;
  flex-wrap: wrap;
  margin: 60px -5px 0;
}
@media (max-width: 750px) {
  .container_single .container_single_body .link {
    justify-content: center;
  }
}
.container_single .container_single_body .link > li {
  padding: 5px;
}
@media (max-width: 750px) {
  .container_single .container_single_body .link > li {
    padding: 1.3333vw 0;
  }
}
.container_single .pagenation {
  margin-top: 90px;
}
@media (max-width: 750px) {
  .container_single .pagenation {
    margin-top: 8vw;
  }
}
.container_single .pagenation .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.15em;
}
.container_single .pagenation .nav-links > div {
  padding: 0 30px;
}
@media (max-width: 750px) {
  .container_single .pagenation .nav-links > div {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
.container_single .pagenation .nav-links > div a {
  color: #4CBCFC;
  line-height: 1;
}
.container_single .pagenation .nav-links > div a img {
  width: 12px;
  vertical-align: middle;
  margin-top: -0.2em;
}
@media (max-width: 750px) {
  .container_single .pagenation .nav-links > div a img {
    width: 2.4vw;
  }
}

/*
    Special
*/
section.section#specialmv > .inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
  position: relative;
}
@media (max-width: 750px) {
  section.section#specialmv > .inner {
    padding: 0;
  }
}
section.section#specialmv > .inner .container_special_fv {
  min-height: 400px;
  position: relative;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#specialmv > .inner .container_special_fv {
    min-height: 107.2vw;
  }
}
section.section#specialmv > .inner .container_special_fv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.section#specialmv > .inner .container_special_fv .content_special_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 630px;
  max-height: 340px;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 2;
  z-index: 1;
  letter-spacing: 0.15em;
  font-size: 14px;
}
@media (max-width: 750px) {
  section.section#specialmv > .inner .container_special_fv .content_special_copy {
    max-width: 91.2vw;
    max-height: 89.867vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
section.section#specialmv > .inner .container_special_fv .content_special_copy > h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4516;
}
@media (max-width: 750px) {
  section.section#specialmv > .inner .container_special_fv .content_special_copy > h1 {
    font-size: 31px;
    font-size: 8.2666666667vw;
  }
}
section.section#specialmv > .inner .container_special_fv .content_special_copy > .content_special_text {
  margin-top: 20px;
}
@media (max-width: 750px) {
  section.section#specialmv > .inner .container_special_fv .content_special_copy > .content_special_text {
    margin-top: 5.3333vw;
    letter-spacing: 0;
  }
}
section.section#special > .inner {
  padding: 80px 0 50px;
  letter-spacing: 0.15em;
}
@media (max-width: 750px) {
  section.section#special > .inner {
    padding: 13.3333vw 0 13.3333vw;
  }
}
section.section#special > .inner > h2 {
  font-size: 34px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#special > .inner > h2 {
    font-size: 24px;
    font-size: 6.4vw;
  }
}
section.section#special > .inner > .container_special_wrapper {
  margin: 100px auto 0;
  width: 100%;
  max-width: 945px;
  padding: 0 15px;
}
@media (max-width: 750px) {
  section.section#special > .inner > .container_special_wrapper {
    margin-top: 7.2vw;
    padding: 0 2.6667vw;
  }
}
section.section#special > .inner > .container_special_wrapper > ul > li {
  padding: 27.5px 0;
}
@media (max-width: 750px) {
  section.section#special > .inner > .container_special_wrapper > ul > li {
    padding: 6.1333vw 0;
  }
}
section.section#special > .inner .content_special_candidate {
  padding: 74px 54px;
  background-color: #E4EAEF;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate {
    display: block;
    padding: 32vw 8.5333vw 8.5333vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_frame {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #2581E5;
  color: #fff;
  width: 300px;
  padding: 15px 30px;
  text-align: left;
  border-radius: 0 0 0 35px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_frame {
    width: 80vw;
    font-size: 18px;
    font-size: 4.8vw;
    border-radius: 0 0 0 9.3333vw;
    padding: 3.2vw 3.2vw 3.2vw 9.3333vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_frame > p.title {
  font-size: 30px;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_frame > p.title {
    font-size: 30px;
    font-size: 8vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_image {
  width: 31.598%;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_image {
    width: 100%;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_icon {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 105px;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_icon {
    top: 23vw;
    left: 1vw;
    width: 25.1333vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_sns {
  margin-top: 1em;
  line-height: 1;
  text-align: center;
  font-size: 16px;
}
section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_sns > ul {
  display: flex;
  justify-content: center;
  margin: 0.5em -5px 0;
}
section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_sns > ul > li {
  padding: 5px;
  width: 37px;
}
section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_sns > ul > li img {
  border-radius: 50%;
  overflow: hidden;
}
section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_db {
  margin-top: 20px;
}
section.section#special > .inner .content_special_candidate > .content_special_image > .content_special_db ul > li {
  padding: 8px 0;
}
section.section#special > .inner .content_special_candidate > .content_special_text {
  width: 63.816%;
  text-align: left;
  padding: 60px 0 0;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text {
    width: 100%;
    padding: 9.3333vw 0 0;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_title > h3 {
  font-size: 33px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_title > h3 {
    font-size: 30px;
    font-size: 8vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_title > ul {
  display: flex;
  align-items: center;
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_title > ul > li {
  padding: 3px;
  width: 49px;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_title > ul > li {
    padding: 1.0667vw;
    width: 10.0667vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_title > ul > li img {
  border-radius: 50%;
  overflow: hidden;
}
section.section#special > .inner .content_special_candidate > .content_special_text > h4 {
  margin-top: 1em;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3214;
  color: #2581E5;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > h4 {
    font-size: 24px;
    font-size: 6.4vw;
    letter-spacing: 0.1em;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_profile {
  margin-top: 50px;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_profile {
    margin-top: 6.6667vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_profile > h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2581E5;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_profile > h5 {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_profile > .text {
  margin-top: 0.7em;
  font-size: 18px;
  line-height: 1.8333;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_profile > .text {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_speciel_description {
  margin-top: 25px;
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_speciel_description > .content_speciel_desc_wrap {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #C1C1C1;
  letter-spacing: 0;
  line-height: 1.9444444444;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_speciel_description > .content_speciel_desc_wrap {
    padding: 4vw 0;
    line-height: 1.7647058824;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_speciel_description > .content_speciel_desc_wrap > .content_speciel_desc_title {
  width: 160px;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_speciel_description > .content_speciel_desc_wrap > .content_speciel_desc_title {
    width: 32vw;
    font-size: 17px;
    font-size: 4.5333333333vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_speciel_description > .content_speciel_desc_wrap > .content_speciel_desc_text {
  width: calc(100% - 160px);
  font-size: 18px;
  font-weight: 500;
  padding-top: 0.1em;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_speciel_description > .content_speciel_desc_wrap > .content_speciel_desc_text {
    width: 45.3333333333vw;
    padding-top: 0;
    font-size: 17px;
    font-size: 4.5333333333vw;
  }
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_sns {
    margin-top: 8vw;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_sns > ul {
  display: flex;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_sns > ul {
    margin: 6.6667vw -1.6vw 0;
    justify-content: center;
  }
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_sns > ul > li {
    padding: 1.6vw;
    width: 13.3333vw;
  }
}
section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_sns > ul > li img {
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_db {
    margin-top: 5.3333333333vw;
  }
}
@media (max-width: 750px) {
  section.section#special > .inner .content_special_candidate > .content_special_text > .content_special_db ul > li {
    padding: 2.1333333333vw 0;
  }
}

/*
    Special Detail
*/
section.section#main_special_content {
  background-color: #E4EAEF;
}
section.section#main_special_content > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 40px 15px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner {
    padding: 0;
  }
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_breadcrumb {
    background-color: #fff;
    padding: 7.6667vw 6.4vw;
  }
}
section.section#main_special_content > .inner .container_special_upper {
  margin: 40px auto 0;
  max-width: 920px;
  letter-spacing: 0.1em;
  padding: 0 0 60px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper {
    padding: 0 0 2.6667vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image {
    display: block;
    padding: 0 6.4vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail {
  position: relative;
  width: 46.739%;
  border: 5px solid #fff;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail {
    width: 100%;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name {
  position: absolute;
  top: 3%;
  right: 3%;
  text-align: right;
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > span.icon_star {
  margin: 0 0 0.2em auto;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../images/special/icon_badge.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > span.icon_star {
    width: 6.1333vw;
    height: 6.1333vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > span.icon_label {
  display: block;
  width: 108px;
  height: 108px;
  margin-bottom: 3px;
  background-image: url("../images/special/icon_tosen.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > span.icon_label {
    width: 14vw;
    height: 14vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > span.icon_label.election {
  width: 95px;
  height: 95px;
  background-image: url("../images/special/icon_tosen2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > span.icon_label.election {
    width: 14vw;
    height: 14vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > p {
  transform: translate(98%, 0.5em) rotate(90deg) scale(0.8);
  transform-origin: left top;
  font-size: 19px;
  display: inline-block;
  color: #A3A3A4;
  letter-spacing: 0.25em;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name > p {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name.no:before {
  content: none;
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_thumbnail .special_candidate_name.no > p {
  transform: translate(98%, -0.3em) rotate(90deg) scale(0.8);
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body {
  width: 450px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body {
    margin-top: 4.2667vw;
    width: 100%;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > h1 {
  font-size: 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > h1 {
    font-size: 31px;
    font-size: 8.2666666667vw;
    display: block;
    text-align: left;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > h1 > span.icon {
  margin-left: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 34px;
  height: 34px;
  border: 2px solid #2581E5;
  border-radius: 50%;
  font-size: 17px;
  color: #2581E5;
  letter-spacing: 0;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > h1 > span.icon {
    margin-left: 0;
    margin-top: auto;
    display: inline-block;
    width: 7.2vw;
    height: 7.2vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
    text-align: center;
    line-height: 6.2vw;
    vertical-align: middle;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > h1 > span.icon > span {
  margin-left: -0.1em;
  margin-top: 0.15em;
  transform: scale(0.73);
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > h1 > span.icon.period {
  background-color: #2581E5;
  color: #fff;
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .container_address {
  background-color: #2581E5;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 0 60px 60px 0;
  text-align: left;
  margin: 1em 0 0.5em 0;
  line-height: 1.32;
  font-size: 18px;
  max-width: 267px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .container_address {
    padding: 1.86667vw 3.7333vw;
    font-size: 14px;
    font-size: 3.7333333333vw;
    border-radius: 0 5.8667vw 5.8667vw 0;
    max-width: 57.3333vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .container_address > h5 {
  font-size: 30px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .container_address > h5 {
    font-size: 24px;
    font-size: 6.4vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .container_address > h5 > span {
  font-size: 24px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .container_address > h5 > span {
    font-size: 19px;
    font-size: 5.0666666667vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .catchcopy {
  margin-top: 1em;
  text-align: left;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .catchcopy {
    font-size: 23px;
    font-size: 6.1333333333vw;
    letter-spacing: 0;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .catchcopy > span.line {
  color: #008ED7;
  display: inline-block;
  position: relative;
  z-index: 1;
}
section.section#main_special_content > .inner .container_special_upper .container_profile_image > .container_body > .catchcopy > span.line:before {
  content: "";
  display: block;
  z-index: -1;
  width: 100%;
  height: 50%;
  background-color: rgba(76, 188, 252, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
}
section.section#main_special_content > .inner .container_special_upper .container_profile {
  margin-top: 30px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile {
    margin-top: 9.3333vw;
    padding: 0 6.4vw 0;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > h2 {
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #2581E5;
  padding-bottom: 0.5em;
  border-bottom: 5px solid #2581E5;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > h2 {
    font-size: 18px;
    font-size: 4.8vw;
    border-bottom: 1.33333vw solid #2581E5;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner {
  display: flex;
  justify-content: space-between;
  padding: 25px 0 0;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner {
    display: block;
    padding: 5.33333vw 0 0;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .text {
  width: calc(100% - 430px);
  text-align: left;
  font-size: 16px;
  line-height: 1.83;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .text {
    width: 100%;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns {
  width: 370px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns {
    margin-top: 10.6667vw;
    width: 100%;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > h3 {
  font-size: 18px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > h3 {
    text-align: center;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > ul {
  display: flex;
  margin: 20px -8px 0;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > ul {
    margin: 4.8vw 0 0;
    justify-content: center;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > ul > li {
  padding: 0 8px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > ul > li {
    padding: 0 1.73334vw;
  }
}
section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > ul > li img {
  width: 48px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_upper .container_profile > .container_inner > .container_sns > ul > li img {
    width: 10.0267vw;
  }
}
section.section#main_special_content > .inner .container_special_lower {
  padding: 45px 0;
  overflow: hidden;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_lower {
    padding: 8vw 0;
  }
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner {
  margin: 0 auto;
  max-width: 920px;
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .container_slider_banner li {
  padding: 7px;
  float: left;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_lower .container_special_banner .container_slider_banner li {
    padding: 2.13333vw;
  }
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .container_slider_banner li img {
  width: 295px;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_lower .container_special_banner .container_slider_banner li img {
    width: 78.6667vw;
  }
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots {
  bottom: -40px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots {
    bottom: -8vw;
  }
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots li {
  width: auto;
  height: auto;
  padding: 0;
  float: inherit;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots li {
    margin: 0 1.86667vw;
  }
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots li button {
  padding: 0;
  border-radius: 50%;
  background-color: #B7B8B8;
  width: 7px;
  height: 7px;
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots li button:before {
  content: none;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots li button {
    width: 1.86667vw;
    height: 1.86667vw;
  }
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots li.slick-active button {
  background-color: #595757;
}
section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots.slick-slider {
  bottom: -40px;
}
@media (max-width: 750px) {
  section.section#main_special_content > .inner .container_special_lower .container_special_banner .slick-dots.slick-slider {
    bottom: -8vw;
  }
}
section.section#main_special_content > .inner .container_special_lower .container_sp_detail_youtube {
  margin: 0 auto 20px;
  position: relative;
  width: 100%;
  max-width: 920px;
}
section.section#main_special_content > .inner .container_special_lower .container_sp_detail_youtube:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
section.section#main_special_content > .inner .container_special_lower .container_sp_detail_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section#main_special_content.city > .inner .container_special_upper .container_profile_image > .container_body > h1 > span.icon {
  border: 2px solid #4CBCFC;
  color: #4CBCFC;
}
section.section#main_special_content.city > .inner .container_special_upper .container_profile_image > .container_body > h1 > span.icon.period {
  background-color: #4CBCFC;
  color: #fff;
}
section.section#main_special_content.city > .inner .container_special_upper .container_profile_image > .container_body > .container_address {
  background-color: #4CBCFC;
}
section.section#main_special_content.city > .inner .container_special_upper .container_profile > h2 {
  color: #4CBCFC;
  border-bottom: 5px solid #4CBCFC;
}
@media (max-width: 750px) {
  section.section#main_special_content.city > .inner .container_special_upper .container_profile > h2 {
    border-bottom: 1.33333vw solid #4CBCFC;
  }
}
section.section#main_special_content2 {
  border-bottom: 1px solid #DDDDDD;
}
section.section#main_special_content2 > .inner {
  margin: 0 auto;
  max-width: 795px;
  padding: 90px 15px 30px;
}
@media (max-width: 750px) {
  section.section#main_special_content2 > .inner {
    padding: 18.6667vw 0 7.6667vw;
  }
}
section.section#main_special_content2 > .inner .container_sp_detail_photo {
  margin-bottom: 20px;
}
section.section#main_special_content2 > .inner .container_sp_detail_youtube {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
section.section#main_special_content2 > .inner .container_sp_detail_youtube:before {
  content: "";
  display: block;
  padding-top: 54%;
}
section.section#main_special_content2 > .inner .container_sp_detail_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.section#main_special_content2 > .inner .content_detail_block {
  padding: 30px 0;
  text-align: left;
  letter-spacing: 0.03em;
}
@media (max-width: 750px) {
  section.section#main_special_content2 > .inner .content_detail_block {
    padding: 6.6667vw 6.4vw;
  }
}
section.section#main_special_content2 > .inner .content_detail_block > h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2581E5;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  section.section#main_special_content2 > .inner .content_detail_block > h2 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    margin-bottom: 6.6667vw;
    line-height: 1.3;
  }
}
section.section#main_special_content2 > .inner .content_detail_block > p {
  line-height: 1.83333;
  font-size: 16px;
}
@media (max-width: 750px) {
  section.section#main_special_content2 > .inner .content_detail_block > p {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
section.section#main_special_content2.city > .inner .content_detail_block > h2 {
  color: #4CBCFC;
}

/* --- 追加・修正: アーカイブページh1対応 --- */
.member-title-section h1 {
  font-size: 34px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 750px) {
  .member-title-section h1 {
    font-size: 30px;
    font-size: 8vw;
  }
}
.member-title-section h1 > span {
  margin-bottom: 15px;
  display: block;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #F55881;
  font-weight: 400;
}
@media (max-width: 750px) {
  .member-title-section h1 > span {
    font-size: 15px;
    font-size: 4vw;
  }
}

/* --- 追加: 議員一覧グリッド（アーカイブ用） --- */
.parliament-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .parliament-members-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 750px) {
  .parliament-members-grid {
    grid-template-columns: 1fr;
    gap: 5.3333vw;
  }
}

/* --- 追加: .member-archive 用の余白調整（必要に応じて）--- */
.member-archive {
  padding-top: 40px;
}

/* --- 追加: 全議員エリアの余白 --- */
.all-members-area {
  padding: 50px 0;
}
@media (max-width: 750px) {
  .all-members-area {
    padding: 32px 0;
  }
}

/* --- 追加: 全議員エリアの余白（検索結果エリアと統一） --- */
.all-members-area {
  padding: 50px 0;
}
@media (max-width: 750px) {
  .all-members-area {
    padding: 13.3333vw 0;
  }
}

/* --- 追加: 全議員エリアの左右余白を検索結果と揃える --- */
.all-members-inner {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 750px) {
  .all-members-inner {
    padding: 0 6.26667vw;
  }
}

/* --- 追加: 議会グループ見出しデザイン --- */
.parliament-title {
  background: #C4E5F8;
  color: #000;
  text-align: left;
  padding: 16px 24px;
  margin-bottom: 32px;
  font-weight: bold;
  font-size: 24px;
  border-radius: 6px;
}
@media (max-width: 750px) {
  .parliament-title {
    font-size: 18px;
    padding: 12px 12px;
    margin-bottom: 20px;
  }
}

/* --- 追加: 議会グループ間の余白 --- */
.parliament-group {
  margin-bottom: 48px;
}
@media (max-width: 750px) {
  .parliament-group {
    margin-bottom: 28px;
  }
}

/* --- 追加: アーカイブページの検索結果エリア背景を白に --- */
.member-archive .member-results-area {
  background: #FFF;
}

/* --- 議員アーカイブページ用ページネーションカスタム --- */
.parliament-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 32px 0 0 0;
  padding: 0;
}
.parliament-pagination li {
  display: inline-block;
  margin: 0 2px;
}
.parliament-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #e0e0e0;
  color: #333;
  font-weight: normal;
  font-size: 1.1em;
  border: none;
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.parliament-pagination .current {
  background: #6fd3ff;
  color: #fff;
}
.parliament-pagination .prev,
.parliament-pagination .next {
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  position: relative;
  color: transparent;
}
.parliament-pagination .prev::before,
.parliament-pagination .next::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 3px 0 0 3px;
  border-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.parliament-pagination .next::before {
  border-width: 3px 3px 0 0;
  border-color: #333;
  transform: translate(-50%, -50%) rotate(45deg);
}
.parliament-pagination .prev.disabled,
.parliament-pagination .next.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* --- 議員アーカイブページ用ページネーション（既存スタイル適用） --- */
.member-archive .pagenation .p-blog__pager > ul.page-numbers {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.member-archive .pagenation .p-blog__pager > ul.page-numbers > li {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
}
.member-archive .pagenation .p-blog__pager > ul.page-numbers > li a {
  color: #DDDDDD;
}
.member-archive .pagenation .p-blog__pager > ul.page-numbers > li span.current {
  color: #4CBCFC;
}
.member-archive .pagenation .p-blog__pager > ul.page-numbers > li span.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9px;
  height: 18px;
  background-image: url("../images/common/icon_arrow_prev3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.member-archive .pagenation .p-blog__pager > ul.page-numbers > li span.next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9px;
  height: 18px;
  background-image: url("../images/common/icon_arrow_next3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/* 検索結果ヘッダーのレイアウト */
.search-results-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.search-results-title {
  flex: 1;
  margin: 0;
}

/* 検索クリアボタン */
.search-clear-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-clear-button:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  transform: scale(1.05);
}

.search-clear-button:active {
  transform: scale(0.95);
}

.clear-icon {
  font-size: 14px;
  color: #6c757d;
  font-weight: bold;
  line-height: 1;
}

.search-clear-button:hover .clear-icon {
  color: #495057;
}

/* スマホ対応 */
@media (max-width: 750px) {
  .search-results-title-wrapper {
    gap: 8px;
  }
  
  .search-clear-button {
    width: 28px;
    height: 28px;
  }
  
  .clear-icon {
    font-size: 12px;
  }
}

/* ============================================= */
/* 議員詳細ページ */
/* ============================================= */
.member-detail {
  padding-top: 40px;
}

.member-detail-area {
  padding: 50px 0;
  background-color: #F7F7F7;
}
@media (max-width: 750px) {
  .member-detail-area {
    padding: 13.3333vw 0;
  }
}

.member-detail-inner {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 750px) {
  .member-detail-inner {
    padding: 0 6.26667vw;
  }
}

.member-detail-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .member-detail-content {
    display: block;
    gap: 0;
  }
}

/* 左カラム：写真とSNS */
.member-detail-left {
  flex: 0 0 300px;
  text-align: center;
}
@media (max-width: 750px) {
  .member-detail-left {
    flex: none;
  }
}

.member-detail-photo {
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  .member-detail-photo {
    margin-bottom: 8vw;
  }
}

.member-detail-photo img {
  width: 100%;
  max-width: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

/* SNSボタン */
.member-detail-sns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PC用SNSボタン */
.pc-only {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 750px) {
  .pc-only {
    display: none;
  }
}

/* スマホ用SNSボタン */
.sp-only {
  display: none;
}
@media (max-width: 750px) {
  .sp-only {
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
    margin-top: 8vw;
    text-align: center;
  }
}
@media (max-width: 750px) {
  .member-detail-sns {
    gap: 3.2vw;
  }
}

.sns-button {
  display: block;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  text-align: center;
}
@media (max-width: 750px) {
  .sns-button {
    padding: 3.2vw 5.3333vw;
    font-size: 3.7333vw;
  }
}

.sns-button.official {
  background-color: #4CBCFC;
}

.sns-button.facebook {
  background-color: #1877F2;
}

.sns-button.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.sns-button.youtube {
  background-color: #FF0000;
}

.sns-button.x {
  background-color: #000000;
}

.sns-button:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* 右カラム：議員情報 */
.member-detail-right {
  flex: 1;
}

.member-detail-name {
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 750px) {
  .member-detail-name {
    margin-bottom: 8vw;
    text-align: center;
    margin-top: 24px;
  }
}

.member-detail-furigana {
  color: #000;
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
}

.member-detail-title {
  color: #333;
  font-size: clamp(32px, calc((40 / 1440) * 100vw), 40px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  margin: 0;
}

/* 議員情報テーブル */
.member-detail-info {
  border-radius: 8px;
}

.member-info-table {
  width: 100%;
  border-collapse: collapse;
}

.member-info-table th,
.member-info-table td {
  padding: 20px 0;
  text-align: left;
  border-bottom: 1px solid #E9E9E9;
  vertical-align: baseline;
}

.member-info-table tr:last-child th,
.member-info-table tr:last-child td {
  border-bottom: none;
}

.member-info-table th {
  width: 180px;
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  font-weight: 600;
  color: #333;
  padding-right: 20px;
}
@media (max-width: 750px) {
  .member-info-table th {
    font-size: 16px;
    border-bottom: none;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
  }
}

.member-info-table td {
  font-size: clamp(16px, calc((18 / 1440) * 100vw), 18px);
  color: #333;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 750px) {
  .member-info-table td {
    font-size: 16px;
    border-bottom: none;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.member-info-table .profile-text {
  line-height: 1.8;
}

/* 戻るボタン */
.member-detail-back {
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 750px) {
  .member-detail-back {
    padding: 13.3333vw 6.26667vw;
  }
}

/* レスポンシブ対応：スマホでは縦並び */
@media (max-width: 750px) {
  .member-info-table,
  .member-info-table tbody,
  .member-info-table tr,
  .member-info-table th,
  .member-info-table td {
    display: block;
  }
  
  .member-info-table tr {
    border-bottom: 1px solid #E9E9E9;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  
  .member-info-table tr:first-child {
    border-top: 1px solid #E9E9E9;
  }
}