@charset "UTF-8";
/* Scss Document */
/* ---------------------------------- */
/* 共通 */
/* ---------------------------------- */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

* {
  box-sizing: border-box;
}

a {
  cursor: pointer;
  text-decoration: none;
}
a:hover, a:visited {
  text-decoration: none;
}

img {
  width: 100%;
}

/* ---------------------------------- */
/* フォント */
/* ---------------------------------- */
@font-face {
  font-family: "CezanneB";
  src: url("../font/FOT-CezannePro-B.otf") format("opentype");
}
@font-face {
  font-family: "CezanneM";
  src: url("../font/FOT-CezannePro-M.otf") format("opentype");
}
@font-face {
  font-family: "Axiss";
  src: url("../font/AXISSTD.OTF") format("opentype");
}
@font-face {
  font-family: "Futura";
  src: url("../font/Futura.ttc") format("truetype");
}
.cezanneB {
  font-family: "CezanneB", "Noto Sans JP", sans-serif;
}

.cezanneM {
  font-family: "CezanneM", "Noto Sans JP", sans-serif;
}

.axiss {
  font-family: "Axiss", "Noto Sans JP", sans-serif;
}

.futura {
  font-family: "Futura", "Noto Sans JP", sans-serif;
}

.vertical {
  writing-mode: vertical-rl;
  -ms-text-orientation: upright;
  text-orientation: upright;
}

/* ---------------------------------- */
/* ボタン */
/* ---------------------------------- */
a.join {
  display: block;
  background: #004097;
  border: 2px solid #004097;
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  padding: 15px 0;
}

a.pdf {
  display: block;
  border: 2px solid #FFF;
  text-align: center;
  font-size: 1.7rem;
  padding: 10px 0;
  color: #FFF !important;
}

p.release {
  max-width: 314px;
  background: #004097;
  border: 2px solid #004097;
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  padding: 10px 0;
}

/*--矢印--*/
.arw_icon {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 1px;
  margin: 6.4px 0;
  border-radius: 9999px;
  background-color: #FFF;
}

.arw_icon::before,
.arw_icon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transform-origin: calc(100% - 0.5px) 50%;
}

.arw_icon::before {
  transform: rotate(45deg);
}

.arw_icon::after {
  transform: rotate(-45deg);
}

/* ---------------------------------- */
/* 動き */
/* ---------------------------------- */
/*--上へスライド--*/
.InUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 0.8s;
}

.fadeInU {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*--左へスライド--*/
.InLeft {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  transition: 0.8s;
}

.fadeInL {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*--右へスライド--*/
.InRight {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  transition: 0.8s;
}

.fadeInR {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

/*--順番に表示--*/
.IsShow {
  opacity: 0;
  transition: opacity 2s, translateY 2s;
}

.in.show {
  animation-name: show;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.in01 {
  animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

/*--ぬるりと現れる--*/
.matrix .bg-wrap {
  display: block;
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap .inn {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.anim .bg-wrap {
  opacity: 1;
}

.matrix.anim .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/*--ラベル--*/
.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  transition: 1.3s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.smooth.anim {
  clip-path: inset(0);
}

/*--ラベル（縦）--*/
.smoothY {
  clip-path: inset(0 0 100% 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.smoothY.anim {
  clip-path: inset(0);
}

/*--ふるふる--*/
.Trigger {
  opacity: 0;
  transform: rotate(0deg);
}

.Trigger.anim {
  animation-name: Trigger;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

@keyframes Trigger {
  0% {
    transform: rotate(-5deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
    transform: rotate(5deg);
  }
  50% {
    opacity: 1;
    transform: rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg);
  }
}
/*--イラストアニメ--*/
.Llabel,
.Rlabel {
  opacity: 0;
  transition: opacity 2s, translateY 2s;
  display: inline-block;
}

.Llabel.anim {
  animation-name: Llabel;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.Rlabel.anim {
  animation-name: Rlabel;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@keyframes Llabel {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
@keyframes Rlabel {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  100% {
    opacity: 1;
    webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
/*--ファーストビュー--*/
/*1.色が流れてくる*/
/*2.ぬるりと現れる*/
.matrix-time .bg-wrap {
  display: block;
  opacity: 0;
  overflow: hidden;
}

.matrix-time .bg-wrap .inn {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
}

.matrix-time.anim .bg-wrap {
  opacity: 1;
}

.matrix-time.anim .bg-wrap .inn {
  animation-name: matrix-time;
  animation-delay: 1s;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
@keyframes matrix-time {
  0% {
    transition: cubic-bezier(0.22, 1, 0.36, 1);
    transition-property: clip-path;
  }
  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
/*3.ラベル*/
.smooth-time {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.smooth-time.anim {
  animation-name: smooth-time;
  animation-delay: 0.5s;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
}
@keyframes smooth-time {
  0% {
    transition: cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
  }
  100% {
    opacity: 1;
    clip-path: inset(0);
  }
}
/*--スクロールダウン--*/
.scrolldown {
  position: absolute;
  right: 5%;
  bottom: 45px;
  height: 130px;
  z-index: 3;
  display: block;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 130px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 130px;
  background: #fff;
}

/* ---------------------------------- */
/* ローディング */
/* ---------------------------------- */
#loading {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  z-index: 9999;
}

#fade {
  width: 100%;
  height: 100%;
  display: none;
  background-color: #004097;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9998;
}

.loader {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #8DC21F;
  border-radius: 100%;
  animation: scaleout 1s infinite ease-in-out;
}
@keyframes scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* ---------------------------------- */
/* #mv */
/* ---------------------------------- */
#mv {
  background: #004097;
  width: 100%;
  height: auto;
  aspect-ratio: 600/347;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
#mv .title {
  width: 100%;
  max-width: 1150px;
  height: -moz-max-content;
  height: max-content;
  margin: 0 auto;
}
#mv .txt {
  margin: auto;
  width: 90%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto 5% auto auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
#mv h1 {
  color: #fff;
  font-size: 8.2rem;
  font-weight: 900;
  display: block;
}
#mv h1:first-of-type {
  letter-spacing: 0 !important;
}
#mv h1:nth-of-type(2) {
  letter-spacing: 1rem !important;
  margin-bottom: 2rem;
}
#mv h1:last-of-type {
  font-size: 9.4rem;
}
#mv h1 .matrix-time {
  display: block;
}
#mv h1 .vol {
  max-width: 87px;
  vertical-align: middle;
  margin-left: 2rem;
  position: relative;
  top: -0.8rem;
}
#mv .label span {
  background: #8DC21F;
  color: #FFF;
  font-size: 2.1rem;
  display: inline-block;
  padding: 0 1.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  line-height: 5rem;
}
#mv .label span:last-of-type {
  width: 100%;
  max-width: 480px;
}
#mv .tsuchiya {
  width: 50%;
  height: auto;
  aspect-ratio: 305/347;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
}
#mv ul {
  position: absolute;
  z-index: 4;
  top: 30px;
  right: 30px;
  max-width: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mv ul li {
  max-width: 57px;
  width: 18%;
  margin-right: 7%;
}
#mv ul li:last-of-type {
  margin-right: 0;
}
#mv ul li a {
  display: block;
}
#mv .in.show {
  animation-duration: 0.5s;
}

/* ---------------------------------- */
/* #sun-to-ueda */
/* ---------------------------------- */
#sun-to-ueda {
  background: #8DC21F;
  color: #FFF;
  padding: 3rem 5%;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  text-align: center;
  position: relative;
}
#sun-to-ueda .large {
  font-size: 5.2rem;
  vertical-align: middle;
  margin-left: 3.5rem;
  font-weight: 600;
  position: relative;
  top: -0.5rem;
}

/* ---------------------------------- */
/* #googlemap */
/* ---------------------------------- */
#googlemap {
  background: #D6E4B1;
  padding: 10rem 0 13rem;
  color: #004097;
}
#googlemap .inner {
  max-width: 750px;
  margin: 0 auto;
}
#googlemap h2 {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 4.5rem;
  text-align: center;
}
#googlemap iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 12/7;
  margin: 4rem auto 2rem;
}
#googlemap .detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 500;
}
#googlemap .detail p {
  font-size: 1.6rem;
}
#googlemap .detail p .tel {
  font-size: 2.2rem;
  margin-top: 0.5rem;
  display: inline-block;
}
#googlemap .detail a {
  color: #004097;
}
#googlemap .detail .map {
  display: inline-block;
  font-size: 1.4rem;
  border-bottom: 1px solid #004097;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 0 0 auto;
  padding-bottom: 0.5rem;
}
#googlemap .detail .map .arw_icon {
  background-color: #004097;
  margin-left: 0.5rem;
}
#googlemap .detail .map .arw_icon::before,
#googlemap .detail .map .arw_icon::after {
  background-color: #004097;
}

/* ---------------------------------- */
/* #sec01 */
/* ---------------------------------- */
#sec01 {
  background: #8DC21F;
  padding: 14rem 0 8rem;
  color: #004097;
}
#sec01 .inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
#sec01 .check {
  position: absolute;
  top: -5.7rem;
  left: -2.3rem;
  font-size: 2.9rem;
  letter-spacing: 0.5rem;
  transform: rotate(-5deg);
  padding: 0 2rem 0 2.5rem;
}
#sec01 .check::before, #sec01 .check::after {
  content: "";
  display: inline-block;
  background: #004097;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 30px;
}
#sec01 .check::before {
  left: 0;
  transform: rotate(-30deg);
}
#sec01 .check::after {
  right: 0;
  transform: rotate(30deg);
}
#sec01 .title {
  position: relative;
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0 auto 4.6rem;
}
#sec01 .title .txt h2 {
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
}
#sec01 .title .txt h2 span {
  font-size: 4rem;
  font-weight: 600;
}
#sec01 .title .txt p {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin-top: 3rem;
  line-height: 3rem;
}
#sec01 .tsunagu_list {
  display: flex;
  justify-content: flex-start;
}
#sec01 .tsunagu_list .list_item {
  position: relative;
  width: 22%;
  color: #FFF;
}
#sec01 .tsunagu_list .list_item:not(:last-of-type) {
  margin-right: 3%;
}
#sec01 .tsunagu_list .list_item .fuki {
  position: absolute;
  z-index: 2;
  top: -2.7rem;
  right: -6.5rem;
  width: max(12.2rem, 56%);
  top: -8.2rem;
  left: -4.4rem;
}
#sec01 .tsunagu_list .list_item p {
  margin-bottom: 0.5rem;
  text-align: right;
}
#sec01 .tsunagu_list .list_item a {
  max-width: 314px;
  margin-top: 4.3rem;
}

/* ------------------------------------------------------------ */
/* #sec02 */
/* ------------------------------------------------------------ */
#sec02 {
  padding: 14.3rem 0 22rem;
  background: #fff;
  position: relative;
}
#sec02 .content {
  height: auto;
}
#sec02 .inner {
  max-width: 785px;
  margin: 0 auto;
}
#sec02 .fix_item {
  position: absolute;
  top: 150px;
  right: 20%;
  margin: 0;
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  color: #004097;
  font-weight: 800;
}
#sec02 .fix_item.is-fix {
  position: fixed;
  top: 0;
}
#sec02 .fix_item.is-end {
  position: absolute;
  bottom: 225px;
  top: inherit;
}
#sec02 p {
  width: 50%;
  font-size: 2.2rem;
  line-height: 4.8rem;
  text-align: justify;
}

/* ---------------------------------- */
/* #sec03 */
/* ---------------------------------- */
#sec03 .thema {
  background: #004097;
  text-align: center;
}
#sec03 .thema .inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  position: relative;
  left: -3%;
  padding: 3rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#sec03 .thema .cycle {
  width: max(243px, 20%);
  margin-right: 4rem;
}
#sec03 .thema .title {
  position: relative;
}
#sec03 .thema .title h2 {
  width: 100%;
  max-width: 417px;
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  background: #8DC21F;
  color: #FFF;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}
#sec03 .thema .title h3 {
  color: #FFF;
  font-size: 7.8rem;
  line-height: 9rem;
  text-align: left;
}
#sec03 .thema .title h3 .num {
  display: inline-block;
  font-size: 2.3rem;
}
#sec03 .thema .title h3 .num .large {
  vertical-align: baseline;
  font-size: 5.5rem;
  display: inline-block;
}
#sec03 .thema .tsuchiya {
  width: max(318px, 28%);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
#sec03 .intro_txt {
  max-width: 670px;
  margin: 9.5rem auto 13rem;
}
#sec03 .intro_txt p {
  font-size: 2.2rem;
  line-height: 4.8rem;
}
#sec03 .intro_txt p .clr {
  color: #004097;
  font-weight: 600;
}
#sec03 .vision_list {
  width: 90%;
  max-width: 835px;
  margin: 0 auto 16rem;
}
#sec03 .vision_list .list_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 4rem;
}
#sec03 .vision_list .list_item:last-of-type {
  margin: 0 auto;
}
#sec03 .vision_list .list_item .num {
  font-size: 14rem;
  color: #D6E4B1;
}
#sec03 .vision_list .list_item .txt_box {
  width: max(597px, 74%);
}
#sec03 .vision_list .list_item .txt_box .txt {
  width: 100%;
  position: relative;
}
#sec03 .vision_list .list_item .txt_box p {
  font-size: 1.6rem;
  width: 100%;
  border-radius: 9999px;
  background: #004097;
  color: #FFF;
  padding: 1rem 0;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}
#sec03 .vision_list .list_item .txt_box h4 {
  font-size: 2.8rem;
  line-height: 4rem;
  color: #004097;
  font-weight: 800;
  padding-left: 4%;
  letter-spacing: 0.1rem;
}
#sec03 .vision_list .list_item .pic {
  position: absolute;
  bottom: 0;
}
#sec03 .vision_list .list_item:first-of-type .pic {
  width: max(142px, 24%);
  right: -3%;
}
#sec03 .vision_list .list_item:nth-of-type(2) .pic {
  width: max(74px, 12%);
  right: 7%;
  bottom: -15px;
}
#sec03 .vision_list .list_item:nth-of-type(3) .pic {
  width: max(132px, 22%);
  right: -9%;
  bottom: 20px;
}
#sec03 .vision_list .list_item:nth-of-type(4) .pic {
  width: max(120px, 20%);
  right: -10%;
  bottom: -10px;
}
#sec03 .vision_list .list_item:nth-of-type(5) .pic {
  width: max(147px, 25%);
  right: 5%;
}
#sec03 .vision_list .list_item:last-of-type .pic {
  width: max(138px, 23%);
  right: 7%;
}

/* ---------------------------------- */
/* #sec04 */
/* ---------------------------------- */
#sec04 {
  background: linear-gradient(160deg, #8DC21F 0%, #8DC21F 50%, #D6E4B1 50%, #D6E4B1 100%);
  padding: 9rem 0 14rem;
}
#sec04 .inner {
  max-width: 908px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#sec04 h2 {
  color: #fff;
  font-size: 9.6rem;
  position: relative;
  z-index: -1;
}
#sec04 dl {
  line-height: 3.9rem;
  margin: 0 0 4rem 6rem;
}
#sec04 dl.education {
  max-width: 460px;
  margin-top: -2rem;
}
#sec04 dl.job {
  max-width: 410px;
}
#sec04 dl.parliament {
  max-width: 560px;
}
#sec04 dl.mayor {
  max-width: 480px;
}
#sec04 dl.officer {
  max-width: 500px;
}
#sec04 dl dt {
  font-size: 2.4rem;
  font-weight: 500;
}
#sec04 dl dd {
  position: relative;
  padding-left: 20px;
  font-size: 2.1rem;
  display: inline-block;
  margin-right: 1rem;
}
#sec04 dl dd::before {
  content: "●";
  display: inline-block;
  color: #004097;
  font-size: 1.5rem;
  vertical-align: top;
  position: absolute;
  left: 0;
}
#sec04 figure {
  max-width: 325px;
  position: absolute;
  right: 0;
  top: 133px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
}
#sec04 figure img {
  max-width: 216px;
}
#sec04 figure h2 {
  color: #000;
  font-weight: 600;
  font-size: 7.6rem;
}
#sec04 figure h2 span {
  color: #004097;
}
#sec04 figure p {
  position: absolute;
  bottom: -67px;
  left: 75px;
  width: -moz-max-content;
  width: max-content;
  font-size: 2.1rem;
  line-height: 2.8rem;
}
#sec04 .cl-blue {
  color: #004097;
}

/* ---------------------------------- */
/* #sec05 */
/* ---------------------------------- */
#sec05 {
  background: linear-gradient(#fff 0%, #fff 50%, #8DC21F 50%, #8DC21F 100%);
  padding: 10rem 0 12.6rem;
}
#sec05 .inner {
  max-width: 501px;
  margin: 0 auto;
  text-align: center;
}
#sec05 h2 {
  text-align: center;
  color: #004097;
  font-size: 5.4rem;
  letter-spacing: 0.25rem;
  margin: 0 auto 25px;
}
#sec05 ul {
  display: flex;
  justify-content: space-between;
  max-width: 280px;
  margin: 5.2rem auto 0;
}
#sec05 ul li {
  width: auto;
  margin-right: 9%;
}
#sec05 ul li:last-of-type {
  margin-right: 0;
}

/* ---------------------------------- */
/* #sec06 */
/* ---------------------------------- */
#sec06 {
  background: #004097;
  color: #fff;
  padding: 11.3rem 0 12rem;
}
#sec06 .cycle {
  max-width: 220px;
  width: 24%;
  position: absolute;
  top: -14rem;
  right: 0;
}
#sec06 .inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
#sec06 .txt {
  max-width: 725px;
  margin: 0 auto 10rem;
  text-align: justify;
}
#sec06 .txt h2 {
  display: block;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.25rem;
  margin: 0 auto 5rem;
  font-weight: 500;
  max-width: -moz-max-content;
  max-width: max-content;
}
#sec06 .txt h2 span {
  display: inline-block;
  background: #8DC21F;
  color: #004097;
  font-size: 2.4rem;
  padding: 1rem 4rem;
  margin: 0 auto 3rem;
}
#sec06 .txt h5 {
  text-align: right;
  font-size: 2.7rem;
}
#sec06 .txt p {
  font-size: 2.2rem;
  line-height: 4rem;
}
#sec06 .txt p span {
  color: #8DC21F;
}
#sec06 .voice {
  max-width: 725px;
  margin: 0 auto 14.5rem;
}
#sec06 .voice h2 {
  display: block;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.25rem;
  margin: 0 auto 5rem;
  font-weight: 500;
}
#sec06 .voice h2 span {
  display: inline-block;
  background: #8DC21F;
  color: #004097;
  font-size: 2.4rem;
  padding: 1rem 4rem;
  margin: 0 auto 3rem;
}
#sec06 .voice h5 {
  display: inline-block;
  font-size: 2.2rem;
  border-bottom: 2px solid #D2ECFA;
  padding: 0 0 1rem;
  margin: 0 0 2rem;
}
#sec06 .voice p {
  font-size: 1.8rem;
  line-height: 3.2rem;
}
#sec06 .voice li {
  border: 2px solid #D2ECFA;
  border-radius: 10px;
  position: relative;
  padding: 4.4rem 5rem;
  margin-bottom: 6rem;
  text-align: justify;
}
#sec06 .voice li::after {
  content: "";
  display: block;
  width: 41px;
  height: 41px;
  background: url("../img/sec06_img_01.webp") center/100% no-repeat;
  position: absolute;
  left: 50px;
  bottom: -39px;
}
#sec06 .voice li:nth-of-type(even)::after {
  right: 50px;
  left: auto;
  transform: scale(-1, 1);
}
#sec06 .tel {
  background: #fff;
  padding: 6rem;
  text-align: center;
  color: #004097;
  font-weight: 700;
}
#sec06 .tel h3 {
  display: inline-block;
  font-size: 3rem;
  background: linear-gradient(transparent 67%, #8DC21F 67%);
  line-height: 5rem;
  padding: 0 1rem;
  letter-spacing: 0.2rem;
}
#sec06 .tel h4 {
  font-size: 3.9rem;
}
#sec06 .tel h4 span {
  display: block;
  font-size: 2.5rem;
  margin: 3.5rem auto 1rem;
  font-weight: 400;
}

/* ---------------------------------- */
/* #sec07 */
/* ---------------------------------- */
#sec07 {
  background: #FFF;
  padding: 12rem 0 0;
  text-align: center;
}
#sec07 .title {
  margin-bottom: 8rem;
}
#sec07 .title h2 {
  color: #004097;
  font-size: 2.8rem;
  border: 2px solid #004097;
  border-radius: 9999px;
  max-width: 568px;
  margin: 0 auto;
  padding: 1.7rem 0;
  font-weight: 600;
}
#sec07 .title h3 {
  margin: 7.2rem auto 4rem;
  font-weight: 800;
}
#sec07 .title h3 .large {
  display: block;
  max-width: 664px;
  margin: 0 auto 3rem;
}
#sec07 .title h3 .small {
  font-size: 5.3rem;
  letter-spacing: 0.5rem;
  color: #004097;
  position: relative;
  left: 2rem;
}
#sec07 .title p {
  font-size: 2.2rem;
  line-height: 4.8rem;
}

/* ---------------------------------- */
/* #sec08 */
/* ---------------------------------- */
#sec08 {
  background: linear-gradient(160deg, #D6E4B1 0%, #D6E4B1 50%, #FFF 50%, #FFF 100%);
  color: #004097;
  padding: 8rem 0 14rem;
}
#sec08 .inner {
  max-width: 926px;
  width: 90%;
  margin: 0 auto;
}
#sec08 .fix_content {
  position: relative;
  margin-bottom: 3rem;
}
#sec08 .fix_content .fix_item {
  position: sticky;
  top: 150px;
  left: 0;
  margin: 0;
  font-size: 7.3rem;
  line-height: 8rem;
  font-weight: 900;
  letter-spacing: 0.2rem;
  color: #000;
  float: left;
}
#sec08 .fix_content .fix_item .small {
  font-size: 3.2rem;
  line-height: normal;
  color: #004097;
  display: block;
  margin-left: 1.5rem;
  letter-spacing: 0;
}
#sec08 .fix_content .content {
  width: max(719px, 78%);
  margin: 0 0 0 auto;
  position: relative;
  float: right;
}
#sec08 .fix_content .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sec08 .fix_content .title .img {
  width: max(214px, 29%);
}
#sec08 .fix_content .title .txt {
  width: max(452px, 63%);
  flex: 1;
}
#sec08 .task_list .list_item {
  border: 1px solid #004097;
  background: #FFF;
  border-radius: 30px;
  padding: 2.5rem 3% 2.8rem;
  margin-bottom: 3rem;
}
#sec08 .task_list .list_item .num {
  font-size: 4.4rem;
  color: #8DC21F;
}
#sec08 .task_list .list_item .txt {
  flex: 1;
}
#sec08 .task_list .list_item .modal_btn {
  background: #004097;
  color: #FFF;
  border-radius: 9999px;
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 1.3rem;
  padding: 1rem 0;
  margin-top: 3.5rem;
}
#sec08 .task_list .list_item .modal_btn .arw_icon {
  margin-left: 0.8rem;
}
#sec08 .task_list .list_item .label_box {
  position: relative;
}
#sec08 .main_item .list_item {
  width: 100%;
  padding: 1rem 3.7rem 4.6rem 3rem;
}
#sec08 .main_item .list_item .item_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#sec08 .main_item .list_item .num {
  font-size: 10rem;
  margin-right: 4rem;
}
#sec08 .main_item .list_item .txt {
  margin-top: 3rem;
}
#sec08 .main_item .list_item .txt p {
  margin-top: 2.1rem;
  font-size: 2.2rem;
  font-weight: 600;
}
#sec08 .main_item .list_item .label {
  width: max(100px, 19%);
  position: absolute;
  right: -3%;
  top: -1.8rem;
}
#sec08 .main_item .list_item h3 {
  color: #C30D23;
  font-size: 2.4rem;
  line-height: 4.4rem;
  font-weight: 700;
  max-width: 438px;
  width: 81%;
}
#sec08 .sub_item {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#sec08 .sub_item .list_item {
  width: 31.3333333333%;
  height: auto;
  aspect-ratio: 1/1;
  margin-right: 3%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#sec08 .sub_item .list_item:nth-of-type(3n) {
  margin-right: 0;
}
#sec08 .sub_item .list_item .num {
  text-align: center;
}
#sec08 .sub_item .list_item .txt p {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  line-height: 3.2rem;
  min-height: 95px;
  font-weight: 600;
}
#sec08 .sub_item .list_item .txt p .bdr {
  display: inline;
  border-bottom: 3px solid #8DC21F;
}
#sec08 .resolve {
  font-size: 3.2rem;
  line-height: 5.8rem;
  text-align: center;
  letter-spacing: 0.2rem;
  font-weight: 800;
  color: #000;
  margin-top: 11rem;
}

/* ---------------------------------- */
/* #separate */
/* ---------------------------------- */
#separate {
  position: relative;
  width: 100%;
  height: 700px;
}
#separate .bg02 {
  width: 100%;
  height: 700px;
  background: url("../img/separate_img_01.webp") center/cover no-repeat #8DC21F;
  background-attachment: fixed;
}

/* ---------------------------------- */
/* #fixed */
/* ---------------------------------- */
#fixed {
  width: 100%;
  display: flex;
  margin: 0 auto;
  background: #8DC21F;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s;
  transform: translateY(100%);
  text-align: center;
  border-top: 1px solid #000;
}
#fixed.is-fixed {
  transform: translateY(0);
}
#fixed.is-hide {
  transform: translateY(100%);
}
#fixed a {
  width: calc(60% - 2px);
  height: 100%;
  text-align: center;
  font-size: 2.4rem;
  color: #004097;
  border-right: 2px solid #000;
  padding: 1rem 0;
  transition: 0.3s;
  letter-spacing: 0.3rem;
}
#fixed a:last-child {
  border-right: none;
  width: 40%;
}
#fixed a:hover {
  background: #D6E4B1;
}

/* ---------------------------------- */
/* form 共通 */
/* ---------------------------------- */
input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  display: block;
  max-width: 314px;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background: #004097;
  color: #fff;
  font-size: 2.4rem;
  margin: 1.5rem auto 0;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

input[type=submit]:hover,
input[type=button]:hover {
  background: none;
  border: 2px solid #004097;
  color: #004097;
}

input[type=text],
input[type=mail],
input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0;
  outline: none;
  width: calc(100% - 32px);
  height: 37px;
  font-size: 1.6rem;
  font-size: 1.4rem;
  padding: 0 1.5rem;
  border-color: #000;
  border-width: 1px;
}

input[type=radio] {
  -webkit-appearance: none;
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: 5px;
  background: #fff;
  border: 1px solid #000;
}

input[type=radio]:checked:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  background: #004097;
  border-radius: 50%;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
  background: none transparent;
  vertical-align: middle;
  border: 1px solid #000;
  outline: none;
  width: 100%;
  height: 37px;
  font-size: 1.4rem;
  padding: 0 1.5rem;
  border-color: #000;
  border-width: 1px;
  position: relative;
  color: #000;
}

textarea {
  width: calc(100% - 32px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
  border: 1px solid #000;
  resize: none;
  padding: 1.5rem;
  font-size: 1.4rem;
}

span.blue {
  background: #004097;
  color: #fff;
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
}

span.auto {
  background: #004097;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  height: 37px;
  max-width: 150px;
  width: 100%;
  margin-left: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #004097;
  transition: 0.3s;
}
span.auto:hover {
  background: none;
  color: #004097;
}

.box div {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
.box div:last-of-type {
  align-items: flex-start;
}
.box div label {
  width: 26%;
  max-width: 180px;
  font-size: 1.6rem;
}
.box div input,
.box div textarea {
  width: 74%;
}

h2.guide-tit {
  text-align: center;
  margin: 0 auto 6.5rem;
  font-size: 3.3rem;
  color: #004097;
  display: block;
  font-weight: 600;
}
h2.guide-tit span {
  font-size: 5rem;
  display: block;
  font-weight: 800;
  letter-spacing: 0.3rem;
}

.contect-tit {
  color: #004097;
  text-align: center;
  margin: 0 auto 7.5rem;
}
.contect-tit h2 {
  font-size: 3.4rem;
  margin: 0 auto 3.5rem;
  font-weight: 600;
}
.contect-tit h2 .wt {
  background: #fff;
  font-size: 2.4rem;
  display: inline-block;
  padding: 0.7rem 4rem;
  letter-spacing: 0.2rem;
  margin: 0 auto 2.5rem;
}
.contect-tit h3 {
  font-size: 2.5rem;
}
.contect-tit h3 span {
  font-size: 3.9rem;
  margin: 0.5rem auto 0;
  display: block;
  font-weight: 800;
}

/* ---------------------------------- */
/* #guide */
/* ---------------------------------- */
#guide form {
  background: #fff;
  padding: 12.5rem 0 18rem;
  color: #000;
}
#guide form .inner {
  max-width: 750px;
  margin: 0 auto;
}
#guide form .box div {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
}
#guide form .box div:last-of-type {
  align-items: flex-start;
}
#guide form .box div.pref, #guide form .box div.radiobox {
  margin: 0;
  align-items: center;
}
#guide form .box div.pref {
  width: 40%;
  font-size: 1.5rem;
}
#guide form .box div input[type=radio] {
  width: 18px;
  margin-right: 0.5rem;
}
#guide form .box div.residents input, #guide form .box div.post input {
  width: 36%;
}
#guide form .box div.introducer {
  margin: 0;
}
#guide form .box div.if {
  display: block;
  margin: 0 0 5rem;
}
#guide form .box div.if div {
  margin: 0;
}
#guide form .box div.if span {
  width: 76%;
  float: right;
  display: block;
  margin: 1.5rem 0 0;
}
#guide form .box div.if label {
  display: block;
  max-width: 100%;
  width: 100%;
  font-size: 1.6rem;
  margin: 0 0 1rem;
}
#guide form .box div.if input {
  width: calc(100% - 32px);
}
#guide form .box div.textarea {
  display: block;
}
#guide form .box div.textarea label {
  display: block;
  text-align: center;
  max-width: 100%;
  width: 100%;
  font-size: 1.6rem;
  margin: 0 auto 2rem;
}
#guide form .box div.textarea label .large {
  font-size: 1.9rem;
  display: block;
  font-weight: 500;
  margin: 0 auto 1.5rem;
}
#guide form .box div.textarea label .color {
  color: #004097;
}
#guide form .box div.textarea textarea {
  width: calc(100% - 32px);
}
#guide form .box div.spam-check {
  margin-bottom: 10rem;
}
#guide form .radiobox span {
  display: flex;
  align-items: flex-start;
  display: block;
}
#guide form .radiobox span:first-of-type {
  margin-right: 7.5rem;
}
#guide form .pref article {
  width: 100%;
  background: #fff;
  position: relative;
  z-index: 2;
}
#guide form .pref article::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  background: #004097;
  height: 37px;
  width: 37px;
  z-index: -2;
}
#guide form .pref article::after {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  top: 10px;
  right: 12.5px;
  height: 10px;
  width: 10px;
  z-index: -1;
}

/* ---------------------------------- */
/* #contact */
/* ---------------------------------- */
#contact form {
  background: #D6E4B1;
  padding: 10.4rem 0 18rem;
}
#contact form .inner {
  max-width: 750px;
  margin: 0 auto;
}
#contact form input[type=text],
#contact form textarea {
  background: #fff;
}
#contact form .att {
  background: #fff;
  padding: 4rem;
  margin: 0 auto 6rem;
  font-size: 1.4rem;
}
#contact form .att h5 {
  font-weight: 600;
  font-size: 1.6rem;
}

/* ---------------------------------- */
/* form 確認画面 */
/* ---------------------------------- */
.conf {
  padding-top: 7rem;
}
.conf#guide {
  background: #fff;
}
.conf#guide .formArea {
  border: 1px solid #000;
}
.conf#contact {
  background: #D6E4B1;
}
.conf h1 {
  text-align: center;
  max-width: 310px;
  margin: 0 auto;
}
.conf h1 img {
  width: 100%;
}
.conf .reservation {
  color: #000;
  padding: 0 0 7rem;
}
.conf .formArea {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  padding: 6rem;
}
.conf .formArea h3.confirm {
  font-size: 2.8rem;
  text-align: center;
}
.conf .formArea .formArea {
  padding: 3.5rem 6rem 0;
}
.conf .formArea .formArea form {
  background: #fff;
  padding: 0;
}
.conf .formArea .formArea form dl {
  margin: 0 0 2rem;
}
.conf .formArea .formArea form dl:last-of-type {
  margin-bottom: 4rem;
}
.conf .formArea .formArea form dt {
  background: #777;
  color: #fff;
  padding: 0.5rem 1rem;
}
.conf .formArea .formArea form dd {
  padding: 0.5rem 1rem;
}
.conf .notice {
  text-align: center;
  margin: 0 0 3rem;
}
.conf .error_messe {
  text-align: center;
  color: #004097;
}
.conf .error_messe:last-of-type {
  margin-bottom: 4rem;
}
.conf .submitBox .btn {
  display: block;
  max-width: 314px;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background: #004097;
  font-size: 2.4rem;
  margin: 1.5rem auto 0;
  font-weight: 800;
  transition: 0.3s;
}
.conf .submitBox .btn a {
  color: #fff;
}
.conf .submitBox .btn:hover {
  background: none;
  border: 2px solid #004097;
}
.conf .submitBox .btn:hover a {
  color: #004097;
}

@media only screen and (max-width: 1100px) {
  /* ---------------------------------- */
  /* mv */
  /* ---------------------------------- */
  #mv .label span {
    font-size: 1.8rem;
    line-height: normal;
  }
  #mv .label span:last-of-type {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }
  #mv .txt {
    top: 2rem;
    margin-right: 9%;
  }
  #mv h1 {
    font-size: 6rem;
  }
  #mv h1:nth-of-type(2) {
    margin-bottom: 0;
  }
  #mv h1:last-of-type {
    font-size: 7.5rem;
  }
  /* ---------------------------------- */
  /* sec02 */
  /* ---------------------------------- */
  #sec02 .inner {
    max-width: 85%;
  }
  #sec02 p {
    font-size: 1.9rem;
  }
  #sec02 .fix_item {
    right: 10%;
    font-size: 4rem;
  }
  /* ---------------------------------- */
  /* sec03 */
  /* ---------------------------------- */
  #sec03 .thema {
    position: relative;
  }
  #sec03 .thema .inner {
    position: initial;
  }
  #sec03 .thema .title {
    z-index: 2;
  }
  #sec03 .thema .title h2 {
    max-width: 320px;
    font-size: 2rem;
  }
  #sec03 .thema .title h3 {
    font-size: 6rem;
    line-height: 7.5rem;
  }
  #sec03 .thema .cycle {
    margin-right: 2rem;
    width: 20%;
  }
  #sec03 .thema .tsuchiya {
    width: 28%;
    z-index: 1;
  }
  #sec03 .vision_list {
    max-width: 740px;
  }
  #sec03 .vision_list .list_item .num {
    font-size: 9rem;
  }
  #sec03 .vision_list .list_item .txt_box p {
    font-size: 1.4rem;
  }
  #sec03 .vision_list .list_item .txt_box h4 {
    font-size: 2.3rem;
    line-height: 3.5rem;
  }
  #sec03 .vision_list .list_item:first-of-type .pic {
    width: 19%;
    right: 0;
  }
  #sec03 .vision_list .list_item:nth-of-type(2) .pic {
    width: 12%;
    right: 5%;
  }
  #sec03 .vision_list .list_item:nth-of-type(3) .pic {
    width: 19%;
    right: 0;
    bottom: -15px;
  }
  #sec03 .vision_list .list_item:nth-of-type(5) .pic {
    width: 15%;
    bottom: -10px;
  }
  #sec03 .vision_list .list_item:last-of-type .pic {
    width: 25%;
    right: 3%;
    bottom: -10px;
  }
  /* ---------------------------------- */
  /* sec04 */
  /* ---------------------------------- */
  #sec04 .inner {
    max-width: 90%;
  }
  #sec04 dl.education, #sec04 dl.job, #sec04 dl.mayor {
    max-width: 40%;
  }
  #sec04 dl.parliament, #sec04 dl.officer {
    max-width: 60%;
  }
  #sec04 figure {
    right: 10%;
  }
  /* ---------------------------------- */
  /* sec05 */
  /* ---------------------------------- */
  #sec05 .inner {
    max-width: 60%;
  }
  /* ---------------------------------- */
  /* sec06 */
  /* ---------------------------------- */
  #sec06 .cycle {
    top: -3rem;
  }
  #sec06 .inner {
    max-width: 90%;
  }
  #sec06 .txt {
    max-width: 80%;
  }
  /* ---------------------------------- */
  /* sec07 */
  /* ---------------------------------- */
  #sec07 {
    padding: 6.7rem 0 0;
  }
  #sec07 .title {
    margin-bottom: 6rem;
  }
  #sec07 .title h2 {
    font-size: 1.5rem;
    max-width: 275px;
    padding: 0.5rem 0;
  }
  #sec07 .title h3 {
    width: -moz-max-content;
    width: max-content;
    margin: 2.8rem auto 2rem;
  }
  #sec07 .title h3 .large {
    margin-bottom: 1rem;
    max-width: 320px;
    width: 100%;
  }
  #sec07 .title h3 .small {
    font-size: 2.8rem;
    letter-spacing: 0.1rem;
    position: relative;
    left: 1.3rem;
  }
  #sec07 .title p {
    font-size: 1.6rem;
    line-height: 3.5rem;
  }
  /* ---------------------------------- */
  /* #guide, #contact */
  /* ---------------------------------- */
  #guide form .inner,
  #contact form .inner {
    max-width: 80%;
  }
}
/*ここまでmax-width: 1100px*/
@media only screen and (max-width: 970px) {
  /* ---------------------------------- */
  /* #sec08 */
  /* ---------------------------------- */
  #sec08 .fix_content .fix_item {
    font-size: 6rem;
    line-height: 7rem;
  }
  #sec08 .fix_content .fix_item .small {
    font-size: 3rem;
    line-height: 3.5rem;
    margin-left: 1rem;
  }
  #sec08 .fix_content .content {
    width: 78%;
  }
}
/*ここまでmax-width: 970px*/
@media only screen and (max-width: 768px) {
  /* ---------------------------------- */
  /* 共通 */
  /* ---------------------------------- */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  a.pdf {
    margin: 0 auto;
    font-size: 1.4rem;
  }
  /* ---------------------------------- */
  /* 動き */
  /* ---------------------------------- */
  /*--スクロールダウン--*/
  .scrolldown {
    right: 3%;
    bottom: 1.5rem;
    height: 50px;
  }
  .scrolldown::after {
    height: 50px;
  }
  .scrolldown::before {
    left: -3px;
    width: 8px;
    height: 8px;
  }
  /*下からの距離が変化して丸の全体が上から下に動く*/
  @keyframes circlemove {
    0% {
      bottom: 50px;
    }
    100% {
      bottom: -5px;
    }
  }
  /* ---------------------------------- */
  /* #mv */
  /* ---------------------------------- */
  #mv {
    min-height: 512px;
    aspect-ratio: 375/512;
    overflow: hidden;
    display: block;
    padding: 10% 0;
  }
  #mv h1 {
    color: #FFF;
    text-align: center;
  }
  #mv h1:first-of-type {
    font-size: 4rem;
    line-height: normal;
    letter-spacing: 0.1rem !important;
    float: none;
    margin: 0 auto;
  }
  #mv h1:nth-of-type(2) {
    font-size: 4rem;
    line-height: normal;
    letter-spacing: 0.1rem !important;
    float: none;
    margin: 0 auto;
  }
  #mv h1:last-of-type {
    writing-mode: vertical-rl;
    height: -moz-max-content;
    height: max-content;
    position: absolute;
    right: 8%;
    top: 40%;
    bottom: 0;
    margin: auto 0;
    color: #004097;
    font-size: 3.6rem;
    letter-spacing: 0.2rem;
  }
  #mv h1:last-of-type .inn {
    background: #FFF;
    padding: 1.5rem 0.2rem;
  }
  #mv h1 .vol {
    position: initial;
    max-width: 42px;
    margin-left: 0.7rem;
  }
  #mv .title {
    display: flex;
    flex-direction: row-reverse;
    max-width: 100%;
    margin: 0 auto;
  }
  #mv .txt {
    width: 69%;
    max-width: 600px;
    margin: auto 2% auto 0;
  }
  #mv .label span {
    font-size: 2.1rem;
    line-height: 4rem;
  }
  #mv .label span:last-of-type {
    max-width: 280px;
    padding: 0;
    margin-bottom: 1rem;
  }
  #mv .tsuchiya {
    width: 85%;
    padding: 0;
    position: absolute;
    z-index: 1;
  }
  #mv .txt {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: initial;
  }
  #mv ul {
    top: auto;
    right: 3%;
    bottom: 23%;
    max-width: 44%;
    width: 100%;
  }
  #mv ul li {
    width: auto;
    margin-left: 5%;
  }
  #mv ul li:last-of-type {
    margin-left: 6%;
  }
  /* ---------------------------------- */
  /* #sun-to-ueda */
  /* ---------------------------------- */
  #sun-to-ueda {
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-align: left;
    line-height: normal;
    letter-spacing: 0.1rem;
    padding: 1.1rem 5%;
  }
  #sun-to-ueda .large {
    font-size: 3.3rem;
    margin: 0.3rem 0 0;
  }
  #sun-to-ueda ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 44%;
    width: 100%;
    margin: 0.5rem 2rem 0 auto;
  }
  #sun-to-ueda ul li {
    min-width: 35px;
    width: 22.5%;
    margin-left: 5%;
  }
  /* ---------------------------------- */
  /* #googlemap */
  /* ---------------------------------- */
  #googlemap {
    padding: 6rem 0 8rem;
  }
  #googlemap .inner {
    max-width: 85%;
  }
  #googlemap h2 {
    font-size: 1.7rem;
    line-height: 3rem;
    text-align: left;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0 auto;
  }
  #googlemap iframe {
    margin: 4rem auto 1rem;
  }
  #googlemap .detail {
    display: block;
  }
  #googlemap .detail p {
    font-size: 1.5rem;
  }
  #googlemap .detail p .tel {
    font-size: 2rem;
  }
  #googlemap .detail .map {
    display: block;
    text-align: right;
    margin-top: 1.5rem;
  }
  /* ---------------------------------- */
  /* #sec01 */
  /* ---------------------------------- */
  #sec01 {
    padding: 8.3rem 0 7rem;
  }
  #sec01 .check {
    top: -4.4rem;
    left: 6rem;
    font-size: 2.1rem;
    letter-spacing: 0.2rem;
    padding: 0 2rem;
  }
  #sec01 .check::before, #sec01 .check::after {
    width: 1px;
    height: 20px;
  }
  #sec01 .title {
    margin: 0 auto 6rem;
  }
  #sec01 .title .txt h2 {
    font-size: 2.7rem;
    letter-spacing: 0.3rem;
  }
  #sec01 .title .txt h2 span {
    font-size: 2.7rem;
    letter-spacing: 0.4rem;
  }
  #sec01 .title .txt p {
    letter-spacing: 0.2rem;
    margin-top: 2rem;
    line-height: 3rem;
  }
  #sec01 .tsunagu_list {
    flex-wrap: wrap;
  }
  #sec01 .tsunagu_list .list_item {
    width: 47%;
    margin: 0 6% 3rem 0;
  }
  #sec01 .tsunagu_list .list_item:not(:last-of-type) {
    margin-right: 6%;
  }
  #sec01 .tsunagu_list .list_item:nth-of-type(2n) {
    margin-right: 0;
  }
  #sec01 .tsunagu_list .list_item .fuki {
    position: absolute;
    z-index: 2;
    top: -2.7rem;
    right: -6.5rem;
    width: max(12.2rem, 56%);
    top: -8.2rem;
    left: -4.4rem;
  }
  #sec01 .tsunagu_list .list_item a {
    margin-top: 2rem;
  }
  #sec01 .tsunagu_list .list_item .fuki {
    width: 81px;
    top: -4rem;
    left: -5%;
  }
  /* ---------------------------------- */
  /* #sec02 */
  /* ---------------------------------- */
  #sec02 {
    padding: 7rem 0 11.5rem;
  }
  #sec02 .inner {
    max-width: 80%;
  }
  #sec02 .fix_item {
    position: initial;
    margin: 0 auto 4rem;
    font-size: 3.4rem;
    line-height: 6rem;
  }
  #sec02 p {
    width: 100%;
    font-size: 1.8rem;
    line-height: 4.1rem;
  }
  /* ---------------------------------- */
  /* #sec03 */
  /* ---------------------------------- */
  #sec03 .thema .inner {
    padding: 1.8rem 8% 2rem;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    left: 0;
  }
  #sec03 .thema .inner .cycle {
    max-width: 178px;
    width: 47%;
  }
  #sec03 .thema .title h2 {
    max-width: 200px;
    font-size: 1.4rem;
    padding: 0.7rem 0;
  }
  #sec03 .thema .title h3 {
    font-size: 3.3rem;
    line-height: 4.1rem;
    margin-bottom: 1rem;
  }
  #sec03 .thema .title h3 .num {
    font-size: 1.1rem;
  }
  #sec03 .thema .title h3 .num .large {
    font-size: 2.6rem;
  }
  #sec03 .thema .tsuchiya {
    width: max(186px, 50%);
  }
  #sec03 .intro_txt {
    max-width: 85%;
    margin: 3.6rem auto 5rem;
  }
  #sec03 .intro_txt p {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
  #sec03 .vision_list {
    margin-bottom: 11.4rem;
  }
  #sec03 .vision_list .list_item {
    text-align: center;
    display: block;
    margin-bottom: 5.4rem;
    max-width: 100%;
  }
  #sec03 .vision_list .list_item .txt_box {
    width: 100%;
    position: relative;
  }
  #sec03 .vision_list .list_item .txt_box h4 {
    padding: 0;
  }
  #sec03 .vision_list .list_item .txt_box p {
    margin-bottom: 2.4rem;
    border-radius: 20px;
  }
  #sec03 .vision_list .list_item .txt_box .txt {
    position: initial;
  }
  #sec03 .vision_list .list_item .num {
    font-size: 8.4rem;
  }
  #sec03 .vision_list .list_item .pic {
    bottom: auto;
  }
  #sec03 .vision_list .list_item:first-of-type .pic {
    width: 105px;
    right: 0;
    top: -8rem;
  }
  #sec03 .vision_list .list_item:nth-of-type(2) .pic {
    width: 78px;
    right: auto;
    left: 5%;
    top: -9.5rem;
    bottom: auto;
  }
  #sec03 .vision_list .list_item:nth-of-type(3) .pic {
    width: 102px;
    right: 0;
    top: -6rem;
    bottom: auto;
  }
  #sec03 .vision_list .list_item:nth-of-type(4) .pic {
    width: 90px;
    right: auto;
    left: 0;
    top: -8rem;
    bottom: auto;
  }
  #sec03 .vision_list .list_item:nth-of-type(5) .pic {
    width: 79px;
    right: 5%;
    top: -8rem;
    bottom: auto;
  }
  #sec03 .vision_list .list_item:last-of-type .pic {
    width: 257px;
    right: 0;
    left: 0;
    top: -6rem;
    bottom: auto;
    margin: 0 auto;
  }
  /* ---------------------------------- */
  /* #sec04 */
  /* ---------------------------------- */
  #sec04 {
    background: linear-gradient(170deg, #8DC21F 0%, #8DC21F 17%, #D6E4B1 17%, #D6E4B1 100%);
    padding: 3.8rem 0 5.8rem;
  }
  #sec04 h2 {
    font-size: 3.5rem;
    margin-bottom: -3rem;
  }
  #sec04 figure {
    max-width: 100%;
    display: flex;
    flex-direction: initial;
    justify-content: normal;
    align-items: center;
    position: initial;
    left: 0;
  }
  #sec04 figure .txt {
    margin-right: 2.5rem;
  }
  #sec04 figure h2 {
    position: initial;
    font-size: 3.7rem;
    margin-bottom: 1rem;
  }
  #sec04 figure p {
    position: initial;
  }
  #sec04 figure img {
    position: initial;
    max-width: 15%;
  }
  #sec04 .vertical {
    writing-mode: revert;
  }
  #sec04 dl {
    font-size: 1.5rem;
    line-height: 2.8rem;
    margin: 0 0 4rem;
  }
  #sec04 dl.education {
    margin-top: 0;
  }
  #sec04 dl.education, #sec04 dl.job, #sec04 dl.mayor, #sec04 dl.parliament, #sec04 dl.officer {
    max-width: 100%;
  }
  #sec04 dl dt,
  #sec04 dl dd {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
  #sec04 dl dt {
    font-weight: 600;
  }
  #sec04 dl dd {
    font-weight: 400;
  }
  /* ---------------------------------- */
  /* #sec05 */
  /* ---------------------------------- */
  #sec05 {
    padding: 5rem 0 6.3rem;
  }
  #sec05 .inner {
    max-width: 90%;
  }
  #sec05 h2 {
    font-size: 3.2rem;
    margin: 0 auto 1.5rem;
  }
  #sec05 iframe {
    margin: auto;
    left: 0;
    right: 0;
  }
  #sec05 .fb_iframe_widget {
    display: block;
  }
  #sec05 .fb_iframe_widget_fluid span {
    width: 100% !important;
  }
  #sec05 ul {
    max-width: 220px;
    margin: 4rem auto 0;
  }
  #sec05 ul li {
    margin-right: 10%;
  }
  /* ---------------------------------- */
  /* #sec06 */
  /* ---------------------------------- */
  #sec06 {
    padding: 6.7rem 0 8.7rem;
  }
  #sec06 .cycle {
    top: -5.5rem;
    right: -2%;
  }
  #sec06 .txt {
    max-width: 100%;
    margin: 0 auto 8.7rem;
  }
  #sec06 .txt h2 {
    font-size: 2.5rem;
    line-height: 3.7rem;
    letter-spacing: 0.1rem;
    margin: 0 auto 3.5rem;
  }
  #sec06 .txt h2 span {
    font-size: 1.9rem;
    padding: 0.2rem 4rem;
  }
  #sec06 .txt p {
    font-size: 1.6rem;
    line-height: 3.8rem;
  }
  #sec06 .txt h5 {
    font-size: 2rem;
    margin-top: 2rem;
  }
  #sec06 .voice {
    margin: 0 auto 125px;
  }
  #sec06 .voice li {
    padding: 30px;
  }
  #sec06 .voice li::after {
    bottom: -39px;
  }
  #sec06 .voice h2 {
    font-size: 2.5rem;
    line-height: 3.7rem;
    letter-spacing: 0.1rem;
    margin: 0 auto 3.5rem;
  }
  #sec06 .voice h2 span {
    font-size: 1.9rem;
    padding: 0.2rem 4rem;
  }
  #sec06 .voice p {
    font-size: 1.4rem;
    line-height: 3.2rem;
  }
  #sec06 .voice h5 {
    font-size: 1.7rem;
    margin: 0 0 1.5rem;
  }
  #sec06 .tel {
    padding: 3.5rem 0;
  }
  #sec06 .tel h3 {
    background: none;
    font-size: 2.5rem;
    line-height: 3.6rem;
  }
  #sec06 .tel .ylw {
    display: inline-block;
    background: linear-gradient(transparent 65%, #8DC21F 65%);
    padding: 0 1rem;
  }
  #sec06 .tel h4 {
    font-size: 3.1rem;
  }
  #sec06 .tel h4 span {
    font-size: 2rem;
    margin: 3rem auto 0.5rem;
  }
  /* ---------------------------------- */
  /* #sec08 */
  /* ---------------------------------- */
  #sec08 {
    padding: 3.5rem 0 8rem;
    background: linear-gradient(160deg, #D6E4B1 0%, #D6E4B1 520px, #FFF 520px, #FFF 100%);
  }
  #sec08 .fix_content {
    margin-bottom: 2rem;
  }
  #sec08 .fix_content .fix_item {
    position: absolute;
    left: 5%;
    top: 0;
    font-size: 5.2rem;
    line-height: 7rem;
  }
  #sec08 .fix_content .fix_item .small {
    font-size: 2.4rem;
    margin-left: 0.5rem;
  }
  #sec08 .fix_content .title {
    flex-direction: column-reverse;
  }
  #sec08 .fix_content .title .txt {
    width: max(152px, 48%);
    margin: 0 7% 0 auto;
  }
  #sec08 .fix_content .title .img {
    width: max(187px, 58%);
    margin: 3.5rem 5% 0 auto;
  }
  #sec08 .fix_content .content {
    float: none;
    width: 100%;
  }
  #sec08 .main_item .list_item {
    padding: 3rem 5% 3.3rem;
    margin-bottom: 5rem;
  }
  #sec08 .main_item .list_item .num {
    font-size: 8rem;
    margin-right: 1.5rem;
  }
  #sec08 .main_item .list_item h3 {
    font-size: 2rem;
    line-height: 3.2rem;
    max-width: 100%;
    width: 100%;
  }
  #sec08 .main_item .list_item .label {
    width: 78px;
    top: -8.5rem;
  }
  #sec08 .main_item .list_item .txt {
    margin-top: 1.5rem;
  }
  #sec08 .main_item .list_item .txt p {
    font-size: 1.8rem;
    line-height: 3.1rem;
    margin-top: 1.7rem;
  }
  #sec08 .sub_item .list_item {
    padding: 1.2rem 3%;
    width: 47%;
    margin-right: 6%;
    margin-bottom: 2rem;
  }
  #sec08 .sub_item .list_item:nth-of-type(3n) {
    margin-right: 6%;
  }
  #sec08 .sub_item .list_item:nth-of-type(2n) {
    margin-right: 0;
  }
  #sec08 .sub_item .list_item .num {
    line-height: 4rem;
  }
  #sec08 .sub_item .list_item .txt p {
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin-top: 1rem;
    min-height: auto;
  }
  #sec08 .task_list .list_item .modal_btn {
    margin-top: 1.7rem;
  }
  #sec08 .resolve {
    font-size: 2rem;
    line-height: 4rem;
    margin-top: 6rem;
    letter-spacing: 0.1rem;
  }
  /* ---------------------------------- */
  /* #separate */
  /* ---------------------------------- */
  #separate {
    height: 260px;
  }
  #separate .bg02 {
    height: 260px;
    background: url("../img/separate_img_01_sp.webp") center/cover no-repeat #8DC21F;
    background-attachment: inherit;
  }
  /* ---------------------------------- */
  /* #fixed */
  /* ---------------------------------- */
  #fixed a {
    font-size: 1.6rem;
    align-items: center;
    padding: 1.2rem 0;
  }
  #fixed a::after {
    display: none;
  }
  #fixed a img {
    width: auto;
    height: 16px;
    margin-right: 0.6rem;
  }
  #fixed a:last-of-type img {
    height: 19px;
  }
  /* ---------------------------------- */
  /* form */
  /* ---------------------------------- */
  form {
    padding: 0 0 5rem;
  }
  form .inner {
    padding: 4rem 2rem 2rem;
  }
  select,
  input[type=text],
  input[type=mail],
  input[type=tel],
  textarea,
  .radio {
    font-size: 1.4rem;
  }
  input[type=submit],
  input[type=button] {
    max-width: 100%;
    font-size: 1.8rem;
  }
  .box div label {
    font-size: 1.4rem;
  }
  /*確認画面*/
  .conf {
    padding-top: 4.5rem;
    max-width: 90%;
    margin: 0 auto;
  }
  .conf h1 {
    max-width: 50%;
  }
  .conf .reservation {
    padding: 2.5rem 0 5rem;
  }
  .conf .formArea {
    max-width: 90%;
    padding: 3.5rem 2rem 4rem;
  }
  .conf .formArea form dl {
    font-size: 1.4rem;
  }
  .conf .formArea form dl:last-of-type {
    margin-bottom: 3rem;
  }
  .conf .formArea h3.confirm {
    font-size: 1.9rem;
  }
  .conf .formArea .formArea {
    max-width: 100%;
    padding: 2.5rem 0 0;
  }
  .conf .notice {
    text-align: left;
    font-size: 1.4rem;
  }
  .conf .error_messe {
    text-align: left;
    font-size: 1.4rem;
  }
  .conf input[type=submit] {
    margin: 1.5rem auto 0;
  }
  /* ---------------------------------- */
  /* #contact */
  /* ---------------------------------- */
  #contact form .att {
    padding: 2.5rem;
    margin: 0 auto 2.5rem;
    font-size: 1.3rem;
  }
  #contact form .att h5 {
    font-weight: 800;
    font-size: 1.4rem;
  }
  /* ---------------------------------- */
  /* #guide, #contact */
  /* ---------------------------------- */
  #guide form,
  #contact form {
    padding: 5rem 0 11rem;
  }
  #guide form .inner,
  #contact form .inner {
    max-width: 90%;
    padding: 0;
  }
  #guide form .box div,
  #contact form .box div {
    display: block;
  }
  #guide form .box div label,
  #contact form .box div label {
    display: block;
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }
  #guide form .box div.pref,
  #contact form .box div.pref {
    width: 60%;
  }
  #guide form .box div input,
  #guide form .box div textarea,
  #contact form .box div input,
  #contact form .box div textarea {
    width: calc(100% - 32px);
  }
  #guide form .box div.radiobox,
  #contact form .box div.radiobox {
    display: flex;
  }
  #guide form .box div.radiobox span,
  #contact form .box div.radiobox span {
    font-size: 1.4rem;
  }
  #guide form .box div.radiobox span:first-of-type,
  #contact form .box div.radiobox span:first-of-type {
    margin-right: 4rem;
  }
  #guide form .box div.residents input,
  #contact form .box div.residents input {
    width: 43%;
  }
  #guide form .box div.post input,
  #contact form .box div.post input {
    width: 43%;
    margin-right: 5%;
    float: left;
  }
  #guide form .box div.if,
  #contact form .box div.if {
    margin: 0 0 3.5rem;
  }
  #guide form .box div.if span,
  #contact form .box div.if span {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    float: none;
    width: 100%;
  }
  #guide form .box div.if label,
  #contact form .box div.if label {
    font-size: 1.5rem;
    line-height: 2.3rem;
    margin: 1rem 0 0;
  }
  #guide form .box div.textarea,
  #contact form .box div.textarea {
    margin: 0 auto 2rem;
  }
  #guide form .box div.textarea label,
  #contact form .box div.textarea label {
    font-size: 1.4rem;
    text-align: left;
  }
  #guide form .box div.spam-check,
  #contact form .box div.spam-check {
    margin-bottom: 4rem;
  }
  h2.guide-tit {
    font-size: 2.2rem;
    margin: 0 auto 4rem;
  }
  h2.guide-tit span {
    font-size: 3.3rem;
  }
  span.auto {
    max-width: 40%;
  }
  .contect-tit {
    margin: 0 auto 30px;
  }
  .contect-tit h3 {
    font-size: 2.2rem;
  }
  .contect-tit h3 span {
    font-size: 3rem;
  }
  .contect-tit h2 .wt {
    font-size: 1.9rem;
    padding: 0.8rem 4rem;
  }
}
/*ここまでmax-width: 768px*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* ---------------------------------- */
  /* 動き */
  /* ---------------------------------- */
  /*--ラベル--*/
  .smooth,
  .smooth-time {
    opacity: 0;
    transition: opacity 2s, translateY 2s;
  }
  .in.anim {
    animation-name: show;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
  }
  @keyframes show {
    0% {
      opacity: 0;
      transform: translateY(50%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/*ここまでIEのみ適用の設定*/
@supports (-ms-ime-align: auto) {
  /* ---------------------------------- */
  /* 動き */
  /* ---------------------------------- */
  /*--ラベル--*/
  .smooth,
  .smooth-time {
    opacity: 0;
    transition: opacity 2s, translateY 2s;
  }
  .in.anim {
    animation-name: show;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
  }
  @keyframes show {
    0% {
      opacity: 0;
      transform: translateY(50%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/*ここまでEdgeのみ適用の設定*//*# sourceMappingURL=common.css.map */