@charset "utf-8";
/* CSS Document */

/* -------------------------------
  共通
------------------------------- */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}

.wrapper {
  width:95%;
  max-width:1080px;
  margin:0 auto;
}

h2 {
  letter-spacing: 0.1em;
  padding:15px;
}

.wrapper h2 {
  background:#6184d1;
  color:#fff;
  margin:50px 0 30px;
  border-radius: 5px;
}

h3 {
  text-align: center;
  margin-bottom:30px;
}

p {
  line-height: 1.8rem;
}

a {
  text-decoration: none;
  color:#000;
}

li {
  list-style-type: none;
}

/* -------------------------------
  共通：非会員ログインボタン
------------------------------- */
.LinkArea {
  margin: 10px 0;
  background: #fff;
  padding: 30px;
}

.LinkArea ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  color: #3C3C35;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}

.LinkArea ul li.ReadMoreLinkStandard a {
  display: block;
  width: 240px;
  margin: 0 5px 5px 0;
  margin: 0 5px 5px 0\9;
  padding: 8px 10px 6px 12px;
  color: #FFF;
  font-weight: bold;
  background: #f5f5ee;
  background: -o-linear-gradient(top, #5886dc 0%, #7c9ede 99%);
  background: -webkit-gradient(linear, left top, left bottom, from(#5886dc), color-stop(99%, #7c9ede));
  background: linear-gradient(to bottom, #5886dc 0%, #7c9ede 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5886dc',endColorstr='#7c9ede',GradientType=0 );
  border: 2px solid #7c9ede;
  border-radius: 4px;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}
.LinkArea ul li.ReadMoreLinkStandard a.NoMember {
  color: #FFF;
  background: #f5f5ee;
  background: -o-linear-gradient(top, #5886dc 0%, #7c9ede 99%);
  background: -webkit-gradient(linear, left top, left bottom, from(#5886dc), color-stop(99%, #7c9ede));
  background: linear-gradient(to bottom, #5886dc 0%, #7c9ede 99%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5886dc',endColorstr='#7c9ede',GradientType=0 );
  border: 2px solid #7c9ede;
  text-decoration: none;
}
.LinkArea ul li.ReadMoreLinkStandard a.LogoutMember {
  color: #1E1E17;
  background: #FFF;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff',endColorstr='#ffffff',GradientType=0 );
  border: 2px solid #D2D2CB;
  text-decoration: none;
}

/* -------------------------------
  共通：ハンバーガーメニュー
------------------------------- */
#gloval-nav {
  background: #2795a8;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
#nav-toggle {
  position: fixed;
  top: 1%;
  right: 2%;
  height: 30px;
  cursor: pointer;
}
#nav-toggle div {
  position: relative;
  width: 40px;
}
#nav-toggle span {
  width: 100%;
  height: 5px;
  left: 0;
  display: block;
  background: #2c2b2b;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease;
  border-radius: 5px;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}

#nav-toggle span:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle span:hover span:nth-child(3) {
  top: 23px;
}

.open #nav-toggle span {
  background: #2c2b2b;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}
.close #gloval-nav {
  display: none;
  visibility: hidden;
}

/* z-index */
#nav-toggle {
  z-index: 10000;
}
#container {
  z-index: 900;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 20px 0;
  transition: color .6s ease;
  font-size: 24px;
}
#gloval-nav a:hover {
  color: #2bdfa2;
}

#gloval-nav ul {
  list-style: none;
}
#gloval-nav li {
  opacity: 0;
  transform: translateX(200px);
  transition:  transform .6s ease, opacity .2s ease;
}
#gloval-nav li:nth-child(2) {
  transition-delay: .15s;
}
#gloval-nav li:nth-child(3) {
  transition-delay: .3s;
}
#gloval-nav li:nth-child(4) {
  transition-delay: .45s;
}
#gloval-nav li:nth-child(5) {
  transition-delay: .6s;
}
#gloval-nav li:nth-child(6) {
  transition-delay: .75s;
}
#gloval-nav li:nth-child(7) {
  transition-delay: .9s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition:  transform 1s ease, opacity .9s ease;
}
/******************** nav_End ********************/

/* -------------------------------
  共通：ページTOPに戻る
------------------------------- */
#page_top {
  width: 50px;
  height: 50px;
  background-color: #59a5e2;
  position: fixed;
  right: 0;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* -------------------------------
  共通：ナビ
------------------------------- */
.under_nav {
  margin: 50px 30px;
}

.under_nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.under_nav li {
  background: #49b99f;
  min-width: 230px;
  margin:10px;
  border-radius: 3px;
}

.under_nav a {
  color: #ff0;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 10px;
}

.under_nav li:hover {
  background: #5aad9a;
}

/* -------------------------------
  共通：フッター
------------------------------- */

footer {
  background: #c1c1c2;
  /* display: flex; */
  width: 100%;
  /* height: 50px;
  justify-content: center;
  align-items: center; */
}

footer p {
  color:#6f6f72;
  text-align: center;
}

/* -------------------------------
  LP:ヘッダー
------------------------------- */
#lp header {
  background: #0271fd;
  height: 60px;
}

#lp header img {
  margin: 8px;
}

/* -------------------------------
  LP:背景
------------------------------- */
#lp {
  background:#e9f5f5;
}

/* -------------------------------
  LP:トップ画像
------------------------------- */

.top_image {
  background: url("../img/top_pc.jpg") no-repeat;
  background-size:cover;
  background-position:0% 50%;
  height:600px;
  text-align: center;
  position:relative;
}

.top_image h1 {
  display: inline-block;
  max-width:1080px;
}

.top_image img {
  width:70%;
}

/* -------------------------------
  LP:カウントダウンタイマー
------------------------------- */
.countDown {
  width: 70%;
  max-width: 800px;
  position: absolute;
  left: 50%;
  bottom:10%;
  transform: translateX(-50%);
}
.countDown p {
  font-size: 2.6rem;
  display: block;
  color: #fff;
  background: rgba(43, 223, 162 , 0.8);
  padding-top: 10px;
  line-height: 1.4;
  letter-spacing: 0.2rem;
}

/*折り返しさせない*/
.nowrap {
  white-space: nowrap;
}

/*数字のフォント*/
.countDownText {
  font-size: 5rem;
  font-weight: bold;
  color: #ffe547;
}

/* -------------------------------
  LP:ニュース
------------------------------- */

.news_area {
  width: 80%;
  max-width: 950px;
  margin: 50px auto;
}

.news_area h2 {
  text-align: center;
  background: #0EA298;
  color: #fff;
}

.news_wrapper {
  height: 300px;
  padding:20px;
  background: #fff;
  overflow-y: scroll;  /*縦方向はスクロール可*/
  overflow-x: hidden;  /*横方向はスクロール不可*/
}

.news_wrapper a:hover {
  color:#0b09ee;
}

/*サムネイル付きニュース*/
.thumbnail_news {
  margin-bottom: 15px;
}

.thumbnail_news a {
  display: flex;
}

.thumbnail {
  position:relative;
  min-width:100px;
  height:100%;
  margin-right: 25px;
}

.thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.thumbnail_img {/*トリミング枠*/
  position:absolute;
  width: 100%;
  height: 100%;
  top:0;
}

.thumbnail_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: center top; background-size: cover;';
  border-radius: 5px;
}

/*見出しのみニュース*/
.text_news_list {
  padding: 20px 20px 0;
}

.text_news_list li {
  list-style-type: initial;
  margin-bottom: 15px;
}

.text_news_list a {
  line-height: 1.8;
}

/* -------------------------------
  LP:立候補予定者一覧
------------------------------- */
.candidate {
  width: 90%;
  margin: auto;
}

.candidate li {
  margin: 15px 0;
}

/* <<< 候補リストの効果 */
.candidate li {
  background-color: #e9f5f5;
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.candidate li:hover {
  background-color: #dbfdfd;
  padding: 10px 20px;
}
/* >>> 候補リストの効果 */

.candidate a {
    display: flex;
    align-items: flex-start;
}

.candidate img {
  width: 150px;
  border-radius: 5px;
  margin-right: 30px;
}

/*立候補予定者　氏名*/
.candidate_name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 30px;
  padding-top: 70px;
}

/*立候補予定者　肩書*/
.candidate_title {
  font-size: 1.2rem;
  padding-top: 70px;
}

/* 立候補予定者　肩書 詳細 */
.candidate_title .more {
  color: #fff;
  background: #65a1b0;
  font-size: 80%;
  font-weight: bold;
  padding: 2px 15px;
  border-radius: 15px;
}

/* -------------------------------
  LP:連載
------------------------------- */
.serialization {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.serialization li {
  margin-bottom: 20px;
  width:49%;

}

.serialization img {
  width:100%;
  border-radius: 5px;
}

.serialization img:hover {
  opacity: 0.7;
}

/* -------------------------------
  LP:兵庫の課題
------------------------------- */

.issue {
  margin-bottom: 150px;
  text-align: center;
}

.issue img {
  width:90%;
}

/* -------------------------------
  LP:事前世論調査
------------------------------- */

.opinion {
  margin-bottom: 150px;
  text-align: center;
}

.opinion img {
  width:90%;
}

/* -------------------------------
  LP:動画
------------------------------- */
.movie {
  text-align: center;
  margin-bottom: 40px;
}

.movie {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -------------------------------
  LP:知事選Q&A
------------------------------- */

.hatena {
  font-size: 2rem;
  color: #ffeb3b;
}

.sub_title {
  font-size: 1.2rem;
  letter-spacing: initial;
}

.qa {
  width: 90%;
  margin: 50px auto;
}

.qa li {
  border-bottom: 1.5px solid #7bb2c0;
  padding-bottom: 15px;
}

.qa .thumbnail_news a:hover {
  color:#0b09ee;
}

/*記事一覧へボタン*/

.link_btn {
  text-align: right;
  margin-top:30px;
}

.link_btn a {
  display: inline-block;
  text-align: center;
  width: 150px;
  padding: 15px;
  border-radius: 25px;
  background:#65a1b0;
  color: #fff;
  font-weight: bold;
}

.link_btn :hover {
  background:#84abb4;
}

/* -------------------------------
  LP:自民分裂状況
------------------------------- */

.map {
  text-align: center;
}

.map img {
  width:90%;
}

/* -------------------------------
  立候補者ページ:ヘッダー
------------------------------- */
#individual header {
  background: #3873bc;
  height: 60px;
}

header img {
  margin: 8px;
}

/* -------------------------------
  立候補者ページ:背景
------------------------------- */

#individual {
  background:#f5f5f5;
}

/* -------------------------------
  立候補者ページ:タイトル
------------------------------- */
.title_area h1 {
  background: #35bad0;
  text-align: center;
  letter-spacing: 0.1rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: normal;
  font-size: 4.6rem;
  text-shadow: 0em 0em 0.7em rgb(99 236 196 / 90%);
  margin: 0;
  padding: 20px;
}

.title_area a {
  color: #fff;
}

/* -------------------------------
  立候補者ページ:プロフィール
------------------------------- */
.profile {
  display: flex;
  align-items: flex-start;
}

/*////////// プロフィール画像 //////////*/
.profile_img {
  flex: 1 1 auto;
  margin-right: 20px;
  border-radius: 7px;
  width: 100%;
  min-width: 200px;
  max-width: 320px;
}
.profile_img img {
  max-width: 100%;
}

/*////////// プロフィール横顔 //////////*/
.profile-side {
  color: var(--main-color, #6184d1);
  text-align: center;
  background: #fff;
  border: 2px solid var(--main-color, #6184d1);
  border-radius: 3px;
  margin: 10px 15%;
  padding: 10px;
}
.profile-side a {
  color: var(--main-color);
  font-weight: bold;
  font-size: 130%;
  display: block;
  padding: 10px;
}
#profile_area .profile-side:hover {
  background: var(--nav-hover);
}
/*////////// プロフィール文 //////////*/

.profile_text p {
  line-height: 1.8rem;
}

/* -------------------------------
  立候補者ページ:アコーディオン
------------------------------- */

.accordion {
  width: 100%;
  margin-bottom:20px;
}

/* チェックボックスは非表示 */
.accordion-hidden {
  display: none;
}

/* Question部分 */
.accordion-open {
  display: block;
  padding: 10px 80px 10px 10px;
  cursor: pointer;
  position: relative;
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}
.accordion-open.graph::before, .accordion-open.graph::after {
  background: var(--main-color, #6184d1);
}

/* 一本は縦にして+を作る */
.accordion-open::after, .accordion-open.graph::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked + .accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s; /* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 0;
  background: #fff;
}

/* Q&A部分 */
.accordion_qa .Q {
  position: relative;
  line-height: 1.8;
  /* padding-left: 1em; */
  font-size: 120%;
}
.accordion_qa .accordion-open {
  padding-left: 2.6em;
}
.accordion_qa .Q::before {
  /* content: 'Q.'; */
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -.5em;
  left: -1em;
}
.accordion_qa .A {
  position: relative;
  padding-left: 3.4em;
}
.accordion_qa .A::before {
  /* content: 'A.'; */
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -.1em;
  left: 0.8em;
}

/* -------------------------------
  立候補者ページ:明日の動き
------------------------------- */
dl {
  display: flex;
  padding: 0 20px;
}

dt {
  display: inline-block;
  margin-right: 40px;
  font-weight: bold;
  flex-shrink: 0;
}

/* -------------------------------
  立候補者ページ:候補者活動
------------------------------- */
.activities {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.activities li {
  list-style: none;
  width:24%;
  max-width:260px;
  margin: 0.5%;
  height: 100%;
  position: relative;
}

.activities li::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.activities li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.activities img {
  width:100%;
  height:100%;
  border-radius: 5px;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: center top; background-size: cover;';
}

/*写真ホバー時*/
.activities img:hover {
  opacity: 0.5;
}

/*もっと見るボタン*/
.more_btn {
  text-align: right;
  margin-top:30px;
}

.more_btn a {
  display: inline-block;
  text-align: center;
  width: 150px;
  padding: 15px;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
}

/* -------------------------------
    立候補者ページ:陣営にきく
------------------------------- */

.jinei {
  padding: 0 20px;
}

.jinei li {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
}

.jinei img {
  width: 100px;
  height:130px;
  object-fit: cover;
  border-radius: 5px;
  margin: 0 20px 10px 0;
  font-family: "background-size: cover;";
}

.jinei_text_box {
  padding-top: 10px;
}

/*陣営　氏名*/
.jinei_name {
  font-size: 1.3rem;
  font-weight: bold;
}

/*陣営　肩書*/
.jinei_title {
  font-size: 1rem;
  margin-left: 30px;
}

/*陣営　コメント*/
.jinei_comment {
  margin-top: 10px;
}

/* -------------------------------
  立候補者ページ:下部ナビ
------------------------------- */

#individual .under_nav li {
  box-sizing: border-box;
}

#individual .under_nav a {
  font-weight: bold;
}

#individual .under_nav li.normal {
  background: #666;
  border: none;
}
#individual .under_nav li.normal a {
  color: #fff;
}
#profile_area .under_nav li.normal:hover {
  background: #444;
}


/* -------------------------------
  立候補者ページテーマカラー
  @import _kouho-theme.css
------------------------------- */

/* 見出し */
#profile_area h2 {
  background: var(--main-color, #6184d1);
}

/* アコーディオン */
#profile_area .accordion-open {
  background: var(--sub-color, #0EA297);
}
#profile_area .accordion-open.graph {
  border-left: 13px solid var(--sub-color, #0EA297);
  border-bottom: 3px solid var(--sub-color, #0EA297);
  background-color: var(--nav-hover);
}

/* 陣営にきく　下線 */
#profile_area .jinei li {
  border-bottom: 1.5px solid var(--sub-color, #7bb2c0);
}

/* もっと見るボタン */
#profile_area .more_btn a {
  background: var(--more_btn, #65a1b0);
}

#profile_area .more_btn :hover {
  background:var(--more_btn-hover, #84abb4);
}

/* 下部ナビ */
#profile_area .under_nav li {
  background: #fff;
  border: 2px solid var(--main-color, #6184d1);
}

#profile_area .under_nav a {
  color: var(--main-color, #6184d1);
}

/* 下部ナビホバー */
#profile_area .under_nav li:hover {
  background: var(--nav-hover);
}

/* ページトップへ戻るボタン */
#profile_area #page_top {
  background: var(--main-color, #6184d1);
}
