@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap");

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

video {
  margin-top: 1em;
}

button,
input,
select,
textarea {
  font: inherit;
}

:root {
  --color-blue: #003f88;
  --color-border: #e6e6e6;
  --color-text: #000000;
  --color-yellow: #fabe00;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

@media (min-width: 1921px) {
  html {
    font-size: 0.52083vw;
  }
}

body {
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-feature-settings: 'palt';
  line-height: 1.6;
  min-width: 32rem;
  text-align: justify;
}

/* ログイン時（管理バーあり） */
body.admin-bar .site-header {
  top: 32px;
}

/* SP用 */
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site{
  position: relative;
}

.site::before{
  background: url(../images/common/bg-image.webp) no-repeat center/cover;
  content:'';
  left:0;
  height: 100vh;
  position: fixed;
  top:0;
  width: calc((100% - 50rem) * 628 / 900);
  z-index: -1;
}
@media (min-width: 769px ) and (max-width: 1199px) {
  .site::before{
    background:var(--color-blue);
    width: calc((100vw - 50rem) / 2 - 5rem);
  }
}
@media (max-width: 768px) {
  .site::before{
    content: none;
  }
}

.site-header {
  /* border-bottom: 0.4rem solid var(--color-yellow); */
  left:0;
  position: fixed;
  top:0;
  width: calc((100vw - 50rem) * 628 / 900 + 50rem);
  z-index: 10;
}
@media (min-width: 769px ) and (max-width: 1199px) {
  .site-header {
    background: #fff;
    left:calc(50% - 5rem);
    transform: translateX(-50%);
    width: 50rem;
  }
}
@media (max-width: 768px) {
  .site-header{
    background: #fff;
    left:0;
    transform: translateX(0);
    width: 100%;
  }
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 1.6rem;
  height: 6rem;
  justify-content: space-between;
  margin: 0 auto;
}

.site-header__logo {
  align-items: flex-start;
  color: inherit;
  display: flex;
  gap: 1.2rem;
  margin-left: 1rem;
  text-decoration: none;
}

.site-header__party-logo {
  height: 4rem;
  width: auto;
}

.site-header__text {
  display: flex;
  flex-direction: column;
}

.site-header__eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 0.5;
}

.site-header__name {
  font-size: 3.0rem;
  font-weight: 900;
  line-height: 1.3;
}

.site-header__menu {
  align-items: center;
  background: var(--color-blue);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
  height: 6rem;
  padding: 0.4rem 0 0;
  width: 6rem;
  z-index: 2;
}
@media (max-width: 768px) {
  .site-header__menu {
    display: flex;
  }
}

.site-header__menu-lines{
  display: block;
  height: 1.7rem;
  position: relative;
  width: 100%;
}

.site-header__menu-lines span {
  background: #ffffff;
  display: block;
  height: 0.2rem;
  left:1.6rem;
  position: absolute;
  transition: .3s;
  width: 2.8rem;
}

.site-header__menu-lines span:nth-child(1) {
  top: 0rem;
}

.site-header__menu-lines span:nth-child(2) {
  top: 0.75rem;
}

.site-header__menu-lines span:nth-child(3) {
  bottom: 0;
}

.site-header__menu.active .site-header__menu-lines {
  
}

.site-header__menu.active .site-header__menu-lines span:nth-child(1) {
  top: 0.75rem;
  transform:rotate(45deg);
}

.site-header__menu.active .site-header__menu-lines span:nth-child(2) {
  opacity: 0;
}

.site-header__menu.active .site-header__menu-lines span:nth-child(3) {
  top: 0.75rem;
  transform:rotate(-45deg);
}

.site-header__menu-label {
  font-size: 1rem;
  line-height: 1;
}

.site-header__menu-label::after{
  content:'メニュー';
}

.site-header__menu.active .site-header__menu-label::after{
  content:'閉じる';
}

.site-nav {
  background: var(--color-blue);
  display: block;
  height: 100vh;
  right: 0;
  padding: 0 1.8em;
  position: fixed;
  top:0;
  width: calc((100% - 50rem) * 272 / 900);
  z-index: 1;
}
@media (min-width: 769px ) and (max-width: 1199px) {
  .site-nav {
    left: 50rem; 
    right: auto;
    width: calc((100vw - 50rem) / 2 + 5rem);
  }
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    left:0;
    height: 100vh;
    /* overflow-y: scroll; */
    top:0;
    width: 100vw;
  }
}

.site-nav__inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap:2em;
  justify-content: center;
  height: 100vh;
}
@media (max-width: 768px) {
  .site-nav__inner {
    align-items: center;
    justify-content: flex-start;
    padding: 10rem 5rem 0;
    overflow-y: scroll;
  }
}

.site-nav__title{
  color: #ffffff;
  font-size:1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.5em;
}

.site-nav a {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  transition: .1s;
  width: 100%;
}
.site-nav a::before{
  content:'・';
}
.site-nav a:hover{
  color:var(--color-yellow);
  font-weight: 400;
  text-shadow: 0 0 2rem rgba(0,0,0,0.5);
}
@media (max-width: 768px) {
  .site-nav__title{
  font-size: 2.0rem;
  }
  .site-nav a {
    text-align: center;
    font-size: 3.0rem;
    line-height: 1.6;
    border-bottom: solid 1px #fff;
  }

  .site-nav a::before{
    content:none;
  }
}


.site-main{
  background: #fff;
  box-shadow: -0.3rem 0 0.8rem rgba(255,255,255,0.15);
  margin-left: calc((100% - 50rem) * 628 / 900);
  min-height: 100vh;
  width: 50rem;
}
@media (min-width: 769px ) and (max-width: 1199px) {
  .site-main{
    box-shadow: 0 0 0.5rem rgba(255,255,255,0.15);;
    margin-left:calc((100% - 50rem) / 2 - 5rem);
    padding-top: 6rem;
  }
}
@media (max-width: 768px) {
  .site-main{
    margin-left: 0;
    padding-top: 6rem;
    transform: translateX(0);
    width: 100%;
  }
}

.breadcrumb {
  background: var(--color-yellow);
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  z-index: 11;
  width: 50rem;
}
@media (max-width: 768px) {
  .breadcrumb {
    width: 100%;
  }
}

.breadcrumb__list {
  display: block;
  font-size: 1.2rem;
  list-style: none;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 50rem;
}

.breadcrumb__item {
  display: inline;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  margin: 0 0.6rem;
}

.breadcrumb__link{
  color: inherit;
  text-decoration: none;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

.breadcrumb__current {
  color: inherit;
}

.site-footer{
  width: 100%;
}

.site-footer__social {
  align-items: center;
  background: var(--color-yellow);
  display: flex;
  flex-direction: column;
  gap: 2rem; 
  justify-content: center;
  padding: 2.5rem 8rem;
}

.site-footer__social-list {
  align-items: center;
  display: flex;
  gap: 2.7rem; 
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__social-item--x{
  font-size: 2.515rem;
}

.site-footer__social-item--fb{
  font-size: 2.8rem;
}

.site-footer__social-item--ig{
  font-size: 2.45rem;
}

.site-footer__social-item--th{
  font-size: 2.35rem;
}

.site-footer__social-item--yt{
  font-size: 2.985rem;
}

.site-footer__social-item--tk{
  font-size: 2.95rem;
}

.site-footer__social-item--note{
  width:5rem;
}

.site-footer__social-item--mixi2{
  width:3.8rem;
}


.site-footer__social-link {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-weight: 700;
  justify-content: center;
  text-decoration: none;
}

.site-footer__social-text {
  display: block;
}

.site-footer__branding {
  background: #ffffff;
  padding: 5rem 1.6rem 4.8rem;
  text-align: center;
}

.site-footer__logo {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.site-footer__text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.site-footer__eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.site-footer__name {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.3;
}

.site-footer__party-logo {
  height: 4rem;
  width: auto;
}

.site-footer__logo-image {
  height: 5.6rem;
  width: auto;
}

.site-footer__copyright {
  font-size: 1.2rem;
  line-height: 1;
  margin: 2rem 0 0;
}

.site-footer__logo-text {
  font-size: 2rem;
  font-weight: 700;
}


/*
// common style
*/
.common-button {
  background: var(--color-blue);
  border:0.2rem solid var(--color-blue);
  border-radius: 0.5rem;
  color: #ffffff;
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin: auto;
  padding: 0.8em 1rem;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  width: 29.5rem;
}

.common-button:hover{
  background: #fff;
  border:0.2rem solid var(--color-blue);
  color: var(--color-blue);
  font-weight: 700;
}

.common-content-title {
  border-bottom:1px solid var(--color-yellow);
  display: block;
  font-size:3.2rem;
  font-weight: 900;
  margin:0 auto 5rem;
  width:fit-content;
}

.common-content__inner {
  padding: 5.3rem 2rem 5rem;
}


/*
// top
*/

.top-fv__image{
  display: none;
}
@media (max-width: 1199px) {
.top-fv__image{
    display: block;
  }
  .top-fv__image img{
    max-width: none;
    width: 100%;
  }
}

.top-greeting__copy {
  color:var(--color-blue);
  font-size:4.36rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 1em;
  text-align: center;
}

.top-greeting__text {
  font-size:2.0rem;
}

.top-sns .site-footer__social {
  padding: 2.5rem 2.5rem;
}

.top-policy {
  background: var(--color-yellow);
}
.top-policy__title {
  border-color:#fff;
}
.top-policy__list {
  display: flex;
  flex-direction: column;
  gap:5rem;
}
.top-policy__item-title {
  background: var(--color-blue);
  color:#fff;
  font-size:2.4rem;
  font-weight: 700;
  line-height: 1.35;
  padding: 0.5em 1em;
  text-align: center;
}
.top-policy__item-text {
  color:#000;
  margin-top: 1em;
  font-size:2.0rem;
  font-weight: 700;
}

.top-policy__item-text span {
  background: linear-gradient(
    to bottom,
    transparent 50%,
    #fff);
}

.top-profile__image {
  margin-bottom: 1em;
  margin-left: -2rem;
  width: 50rem;
}
@media (max-width: 768px) {
  .top-profile__image {
    margin-left: -2rem;
    width: 100vw;
  }
  .top-profile__image img{
    max-width: none;
    width: 100%;
  }
}
.top-profile__text {
  margin: 1em 0 2em;
  font-size:2.0rem;
}
.top-profile__gallery {
  display: flex;
  justify-content: space-between;
}
.top-profile__gallery img{
  width: 48.8%;
}
.top-message__copy {
  color:var(--color-blue);
  font-size:4.36rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 1em;
  text-align: center;
}
.top-news {
  background: #f5f5f5;
}


/*
// news-list
*/
.news-list {
  
}
.news-list--top {}
.news-list__items {
  margin-bottom: 5rem;
}
.news-list__item {
  border-bottom:1px solid var(--color-border);
  padding:0 0 0.5em;
}
.news-list__date {
  color:#646464;
  font-size:1.2rem;
  margin-top: 1em;
}
.news-list__item-title a{
  color:var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}
.news-list__item-title a:hover{
  text-decoration: underline;
}


/*
// news-archive
*/

/*
// news-single
*/

.news-single__article {
  margin: 0;
}

.news-single__date {
  color: #646464;
  font-size: 1.2rem;
  margin: 0 0 0.5em;
}

.news-single__title {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-blue);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 3em;
  padding: 0 0 1em;
}

.news-single__content {
  font-size: 1.6rem;
}

.news-single__content p,
.news-single__content img{
  margin: 0 auto 2.4rem;
}

.news-single__figure {
  margin: 3.2rem 0 0;
}

.news-single__image {
  display: block;
  height: auto;
  width: 100%;
}

.news-single__actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3em 0 0;
}




@media (min-width: 1200px) {

  .news-single__inner {
    margin: 0 auto;
    max-width: 72rem;
    padding: 4rem 2.4rem 6rem;
  }
}


/*
// 404
*/

.error-404{
  margin-bottom: 5rem;
}

.error-404__text{
  text-align: center;
}