@charset "UTF-8";
/* CSS Document */
/***************共通前提****************/
html {
  font-size: 100%;
}
* {
  margin: 0;
}
ul {
  padding: 0;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/***************色設定****************/

.green {color: #009b62;} /* デフォルトカラー*/
.white {color: white;}
.bg-green {background-color: #009b62;} /* デフォルトカラー*/
.red {color: #ff0000;}
.bg-lightgray {background-color: rgba(0, 155, 98);}
.bg-green-transparent {background-color: rgba(0, 155, 98);}

/***************共通レイアウト****************/
.container {
  margin: 0 auto;
  max-width: 1220px;
}
.inner {
 padding: 80px 10px 90px 10px;
}
.inner2 {
 padding: 10px 10px 15px 10px;
}
@media (max-width:768px) {
  .container {
    margin: 0 auto;
    max-width: 768px;
  }
  .inner {
    padding: 80px 30px;
  }
}
@media (max-width:480px) {
  .container {
    margin: 0 auto;
    max-width: 480px;
  }
  .inner {
    padding: 20px 15px 50px;
  }
}
/***************共通要素****************/
body {
  font-family:  'Noto Sans JP', sans-serif;
  font-weight: 400;
}

h1 {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  margin: 15px;
}
h2 {
  font-family:YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  /*color: #ffffff;*/
  font-size: 40px;
  font-weight: 600;
  line-height: 1.7;
  margin:1em 0 0;
  padding: 0;
}
h3 {
  color: white;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  padding: 50px 0px 80px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
  position: relative;
  background-color: #009b62;
  background-image: -webkit-linear-gradient(-90deg, #bab7b7 0%, #fff 100%);
  background-image: -moz-linear-gradient(-90deg, #bab7b7 0%, #fff 100%);
  background-image: -o-linear-gradient(-90deg, #bab7b7 0%, #fff 100%);
  background-image: linear-gradient(180deg, #bab7b7 0%, #fff 100%);
  background-blend-mode: multiply;
}
h4 {
  padding: 40px 0 20px;
  margin-left: 19px;
  color: #3C3C3C;
  font-size: 34px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.title_inner {
  position: relative;
  display: inline-block;
  top: -20px;
}
.title_inner::after {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: white;
}
p {
  font-size: 16px;
}
.center {
  text-align: center;
}
.text-end {
  text-align: end;
}
@media (max-width:768px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }
  h1 {
    font-size: 14px;
  }
  h2 {
    font-size: 50px;
    line-height: 1.7;
    margin: 1em 0 0.5em;
  }
  h4 {
    font-size: 24px;
    padding: 20px 0 10px;
  }
}
@media (max-width:768px) {
  h3 {
    padding: 30px 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    height: 120px;
  }
  .title_inner::after {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: white;
  }
}
@media(max-width:480px) {
  h3 {
    margin-top: 0px;
  }
}
/***************共通ボタン****************/
.btn {
  border: 1px solid rgba(0, 155, 98, 0.501961);
  padding: 13px 66px;
  border-radius: 20.5px;
  position: relative;
  background-color: #fff;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-top: 50px;
  cursor: pointer;
}
.btn::after {
  content: "▶️";
  color: rgba(0, 155, 98, .5);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);  
}
.btn:hover {
  background-color: rgba(0, 155, 98, 0.501961);
  color: white;
}
/******************************************************************************************
****************************各セクション毎******************************/
/***************ヘッダー****************/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header ul {
  display: flex;
  padding: 0 35px 0 0;
}
.header__nav-link {
  border-right: 0.5px solid #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: #000;
  padding: 0 23px;
  position: relative;
}
 header ul.pc li:first-child a{
  border-left: 0.5px solid #000;
}
.header__nav-link::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #009b62;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header__nav-link:hover::after {
  width: 100%;
}
header li::first-child {
  border-left: 0.5px solid #000;
}
@media(max-width:480px) {
  header ul {
    display: none;
  }
}
/***************MV****************/
.mv {
  width: 100%;
  height: 590px;
  /*background-image: url(  "../images/mv_pc.jpg");*/
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.mv__title {
   font-family: NotoSerifJP;
  font-size: 65px;
  font-weight: 600;
  line-height: 65px;
  text-align: end;
  padding: 0;
  margin-bottom: 40px;
}
.mv__container {
  margin: 0 auto;
  /*max-width: 1220px;*/
  padding-top: 200px;
}
.mv__title__inner {
  width: 70%;
  margin-left: auto;
  margin-right: 50px;/*20px*/
}
.mv p {
  text-align: end;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
}
@media(max-width:480px) {
  .mv {
    height: 270px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    /*background-image: url("../images/mv_mb.jpg")*/
  }
  .mv__container {
    margin: 0 auto;
    max-width: 480px;
    padding-top:100px;
  }
  .mv__title__inner {
    width: 250px;
    margin-right: 0;
  }
  .mv p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-right: 15px;
  }
  .mv__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 20px;
    margin-right: 15px;
  }
}
/***************イントロ****************/
.intro h1 {
  font-size: 60px;
  margin: 0 0 40px;
}
.intro_title_text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 70px;
  text-align: center;
}
.intro_text {
  max-width: 980px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}
@media(max-width:480px) {
  .intro h1 {
    font-size: 25px;
    margin: 0 0 10px;
    font-weight: 600;
  }
  .intro_title_text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  .intro_text {
    font-size: 16px;
    line-height: 1.7;
  }
}
/***************SNS情報****************/
.info__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 50px;
  padding-top: 80px;
}
.info-content {
  width: calc((100% - 40px) / 3);
  margin:0 20px 40px 0;}

.info-content:nth-child(3n) {
  margin: 0 0 40px 0;
}
.info-content:nth-child(-n+3) {
  margin-bottom: 40px;
}
h5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}
.info-text{
  margin-bottom: 21px;
  margin-top: 21px;}

.info-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.info-content ul{
  margin-bottom: 21px;
  margin-top: 10px;}

.info-content img {
 object-fit: cover;
 /*height: 210px;
 width:374px;*/
 max-height: 210px;
 width: auto;
 display: block;
 margin: 0 auto;
 height: 100%;
}
.retweet {
  color: #919090;
  font-size: 15px;
  border-bottom: 1px solid #919090;
  padding-bottom: 0px;
  
}
.retweet:hover {
  color: rgba(0, 155, 98, 0.501961);
  border-bottom: 1px solid rgba(0, 155, 98, 0.501961);
}
.fa-retweet {
  margin-right: 7px;
}
@media (max-width:480px) {
  .info-content {
    width: calc((100% - 20px) / 2);
    margin: 0 20px 40px 0;
    height: 100%;
   }
  .info-content:nth-child(3n) {
    margin: 0 20px 40px 0;
   }
   .info-content:nth-child(2n) {
    margin: 0 0 40px 0;
   }
  .info__inner{
    padding:0;
  }
  .info-content:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .info-content p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
  }
  .info-content img{
    margin-bottom: 21px;
  }
  .info-content a {
    font-size: 13px;
    line-height: 1.6;
  }
  .info-content:nth-child(-n+3) {
    margin-bottom: 41px;
  }
  .hashtag p {
    font-size: 13px;
    line-height: 1.6;
    margin:0;
  }
    .hashtag_list{
      margin:0;
  }
  h5 {
    width: 100%;
  }
}
/***************ワードプレス情報****************/
.wordpress-info__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.wordpress-info__content {
  width: 95%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.wordpress-info__media {
  width: 90%;
  margin-left: 10px;
}
.wordpress-info__date {
  font-family: 'Noto Sans JP', sans-serif;
  color: #919090;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 5px;
}
.wordpress-info__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
  margin: 0 0 15px 0;
  margin-top: 0;
  padding: 0;
}
.wordpress-info__text {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.wordpress-info__link {
  color: rgba(0, 155, 98, 0.501961);
  font-size: 13px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-top: 24px;
  text-align: end;
  position: relative;
}
.wordpress-info__link::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #009b62;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.wordpress-info__link:hover {
  color: #009b62;
}
.wordpress-info__link:hover::after {
  width: 100%;
}
.wordpress-info__img img {
	width: 120px;
	height: 128px;
	object-fit: cover;
}
@media(max-width:480px) {
  .wordpress-info__inner {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px 0;
  }
  .wordpress-info__content {
    display: block;
    position: relative;
    border-bottom: 1px dotted #000;
    padding-bottom: 0;
    margin-bottom: 22px;
      width:100%;
  }
  .wordpress-info__content:last-child {
    margin-bottom: 40px;
  }
  .wordpress-info__img {
    position: absolute;
    width: 74px;
    top: 0px;
    left: 0px;
  }
  .wordpress-info__media {
    width: 100%;
    margin: 0;
  }
  .wordpress-info__date {
    margin-left: 91px;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
  }
  .wordpress-info__title {
    margin-left: 91px;
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 20px;
	  min-height: 42px;
  }
  .wordpress-info__text {
    font-family: 'Noto Sans JP', sans-serif;
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: -15px;
  }
  .wordpress-info__link {
    font-size: 13px;
    font-weight: 700;
    line-height: 48px;
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 0;
  }
}
/***************アーカイブ****************/
.archive__inner-box {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
  margin: 0 auto ;
  max-width: 1220px;
}
.archive_content a {
    font-family: 'Noto Sans JP', sans-serif;
  /*font-family: "Lucida Sans Unicode", "Lucida Grande", "sans-serif";*/
    color:#000;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.archive_content img{object-fit: cover;}
.archive_content h5 {
    margin-bottom: 5px;
}
ul {
  padding: 0;
}
@media (max-width:480px) {
  .archive__inner-box {
    display: block;
    margin: 0 auto;
    max-width: 480px;
    padding: 30px 0;
  }
  .archive_content {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
    margin-bottom: 33px;
  }
  /*.archive_content img {
    width: 74px;
    height: 76px;
    position: absolute;
    top: 0;
    left: 10%;
  }*/
  .archive_content h5, .archive__list {
    margin-left: 40%;
  }
  .archive_link {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }
}
/***************基本施策****************/
.measures__icon {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #ffffff;
  font-size: 50px;
  font-weight: 500;
  /*line-height: 26px;　2文字の時*/
  line-height: 60px;/*　1文字の時*/
  width: 143px;
  height: 143px;
  border-radius: 50%;
  padding-top: 45px;
  text-align: center;
  margin-bottom: 1em;
}
.measeures__title {
  margin-bottom: 0px;
  display: flex;
}
.measures__article {
  display: flex;
  justify-content: space-between;
}
.measures__article p {
  width: 65%;
  font-size: 18px;
  line-height: 1.7;
  padding-right: 5px;
}
@media(max-width:480px) {
  .measeures__title {
    display: block;
    margin-bottom: 10px;
  }
  .info-box {
    margin: 0;
  }
  .measures__article p {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
  }
  .measures__article {
    display: block;
    margin-bottom: 40px;
  }
  .measures__icon {
    font-size: 30px;
    font-weight: 500;
    /*line-height: 26px;　2文字の時*/
    line-height: 60px;/*　1文字の時*/
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding-top: 14px;
    text-align: center;
    margin: 0 auto;
  }
}
/***************プロフィール****************/
.profile__name {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #009b62;
  font-size: 50px;
  font-weight: 700;
  line-height: 29px;
  padding: 0;
  margin-left: 0px;
  margin-bottom: 73px;
}
.profile__name__box {
  position: relative;
  z-index: 1;
}
.profile__name::after {
  content: "Satoshi Terao";
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #e8e9e9;
  font-size: 80px;
  font-weight: 700;
  line-height: 57.511px;
  position: absolute;
  z-index: -1;
  bottom: -60px;
  right: -10px;
}
.profile__top-box {
  position: relative;
  margin-bottom: 25px;
  width:50%;
  margin-right:0px;
  margin-left:auto;}

.profile__text {
  width: 100%;
  line-height: 28px;}

.profile__top-box_text {
    width: 100%;
    padding-bottom: 25px;
    margin-right: 0px;
    margin-left: auto;
}
.congressman-photo {
  position: absolute;
  left: -30em;
  top: 0em;
  z-index: -1;
  width: 80%;
}
.profile__bottom {
  border-width: 5px;
  border-color: #c3c3c6;
  border-style: solid;
  padding: 40px 52px;
  margin-bottom: 57px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}
.profile__bottom p {
  width: 49%;
  line-height: 26px;
}
@media(max-width:480px) {
  .profile__text {
    width: 100%;
  }
  .profile__top-box {
  display: block;
  align-content: center;
  position: relative;
  margin-bottom: 25px;
  width:100%;
}
 .profile__top-box_text {
    width: 100%;
    padding-bottom: 25px;
    margin-right: auto;
    margin-left: auto;
}

 .profile__bottom p {
  width: 100%;
}
  .congressman-photo {
    width: 160px;
    height: auto;
    left: 5px;
    top: -6em;
    margin: 0px;
  }
  
  .profile__name {
    font-size: 30px;
    font-weight: 700;
    line-height: 28px;
    margin-left: 50%;
    margin-bottom: 58px;
    margin-top: 50px;
    padding: 0;
  }
  .profile__name::after {
    font-size: 32px;
    font-weight: 700;
    position: absolute;
    z-index: -1;
    bottom: -40px;
    right: -10px;
  }
  .profile__bottom {
    border-width: 5px;
    border-color: #c3c3c6;
    border-style: solid;
    padding: 20px 10px 20px 15px;
    margin-bottom: 57px;
    font-size: 13px;
    line-height: 22px;
    display:block;
  }
}
/***************フッター****************/
footer {
  
  padding: 40px 0;
}
.footer_name {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 500;
  line-height: 1.7;
  font-size: 32px;
  margin-bottom: 22px;
}
.footer_slogan {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 61px;
}
footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 27px;
}
footer a {
  font-size: 12px;
  font-weight: 400;
}

.footer__nav-link a {
  border-right: 0.5px solid #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  padding: 0 21px;
  position: relative;
  color: #ffffff;
}

 footer ul li:first-child a{border-left: 0.5px solid #fff}

.footer__nav-link a::after {
  position: absolute;
  left: 0;
  bottom: -2;
  display: block;
  content: "";
  width: 0%;
  height: 0.5px;
  background: #fff;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  margin: 0 10px;
}
.footer__nav-link a:hover::after {
  width: 80%;
}


@media(max-width:480px) {
    footer{margin:0;}

  .footer_name {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .footer_slogan {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .footer__nav-link a {
    font-size: 10px;
    font-weight: 400;
    line-height: 24px;
  }
}