@charset "UTF-8";
/*==========================================================================
Font
============================================================================*/
/*==========================================================================
Color
カラーコード変換 https://tech-unlimited.com/color.html
============================================================================*/
/*==========================================================================
Line Height
==========================================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto;
  }
  99% {
    opacity: 0;
    display: block;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    display: block;
    pointer-events: auto;
  }
  99% {
    opacity: 0;
    display: block;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    overflow: hidden;
    display: none;
    pointer-events: none;
  }
}
/*loader*/
/*
#loader {
  .bar {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.loaded #loader {
  .bar {
    transform: scaleX(1);
  }
  animation:fadeOut .9s alternate forwards .8s;
}*/
/*--ScrollEvent----------------------------------------------------*/
/*
.scEv {
  opacity: 0;
		transition: all .5s .1s ease-out;
	  transition: opacity .2s ease-out, transform .3s ease-out;
	transform: translateX(-10px);
	  will-change: opacity, transform;
}

.view {
 opacity: 1;
transform: translateX(0px);
}

.msk {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  animation-name: play;
  animation-duration: .6s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8, 0, .5, 1);
  position: relative;
  &:before {
    position: absolute;
    content: '';
    width: 0%;
    left: 0;
    top: 0;
    height: 100%;
    background: $colorBlack;
    transition: width .4s cubic-bezier(.8, 0, .5, 1);
  }
}

.view .msk {
  &:before {
    animation-name: maskOut;
    animation-duration: .5s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    content: '';
    position: absolute;
    top: 0;
    left: 1px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: $colorBlack;
  }
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  90% {
    transform: translate(0, 100px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
*/
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05rem;
  font-size: clamp(1.25rem, 1.162rem + 0.38vw, 1.5rem);
  background: #fff;
  color: #000;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  body {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:visited {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:hover {
  color: #000;
  text-decoration: underline;
  outline: none;
}

a:active {
  color: #000;
  text-decoration: none;
  outline: none;
}

li {
  list-style: none;
}

/* ----------common parts---------------------------------------------------------------------
-------------------------------------------------------------------------------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sp {
    display: block;
  }
}

.sps {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sps {
    display: none;
  }
}
@media screen and (max-width: 412px) {
  .sps {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none;
  }
}

.textL {
  text-align: left;
}

.textC {
  text-align: center;
}

.textR {
  text-align: right;
}

.pt60 {
  padding-top: 60px;
}
@media screen and (max-width: 1000px) {
  .pt60 {
    padding-top: 60px;
  }
}

.w1000 {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .w1000 {
    width: 90%;
  }
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .w1200 {
    width: 90%;
  }
}

.w1100 {
  width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .w1100 {
    width: 90%;
  }
}

.w100 {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .w100 {
    width: 100%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mb1rem {
  margin: 0 0 1rem 0 !important;
}

/*===================================================================
    Transformicons
===================================================================*/
.tcon {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1.8em;
  background: transparent;
  outline: none;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tcon > * {
  display: block;
}

.tcon:hover, .tcon:focus {
  outline: none;
}

.tcon::-moz-focus-inner {
  border: 0;
}

.tcon-menu__lines {
  display: inline-block;
  height: 0.15em;
  width: 1.8em;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #000;
  position: relative;
}

.tcon-menu__lines::before, .tcon-menu__lines::after {
  display: inline-block;
  height: 0.15em;
  width: 1.8em;
  border-radius: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #000;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform-origin: 0.1607142857em center;
          transform-origin: 0.1607142857em center;
  width: 100%;
}

.tcon-menu__lines::before {
  top: 0.5625em;
}

.tcon-menu__lines::after {
  top: -0.5625em;
}

.tcon-transform .tcon-menu__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
          transform: scale3d(0.8, 0.8, 0.8);
}

.tcon:hover .tcon-menu__lines {
  background: #1F64C3;
}

.tcon:hover .tcon-menu__lines::before, .tcon:hover .tcon-menu__lines::after {
  background: #1F64C3;
}

.tcon-menu--xcross {
  width: auto;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines {
  background: transparent;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before, .tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: 0;
  width: 2.25em;
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
          transform: rotate3d(0, 0, 1, 45deg);
}

.tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
          transform: rotate3d(0, 0, 1, -45deg);
}

.tcon-visuallyhidden {
  border: 0;
  margin: 10px 0 0 0;
  color: #fff;
  height: 0.5rem;
}

.tcon-visuallyhidden:active, .tcon-visuallyhidden:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

#header {
  width: 100%;
  margin: 0px auto;
  padding: 0 2vw;
  height: auto;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 200;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 80px;
}
@media screen and (max-width: 1000px) {
  #header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0px auto;
    width: 100%;
    padding: 0 3vw;
    height: 60px;
  }
}
@media screen and (max-width: 412px) {
  #header {
    width: 100%;
  }
}
#header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header .logo a {
  line-height: 0;
}
#header .logo img {
  margin: 0;
  width: auto;
  height: 40%;
}
@media screen and (max-width: 1000px) {
  #header .logo img {
    height: auto;
    width: 60%;
  }
}
@media screen and (max-width: 412px) {
  #header .logo img {
    height: auto;
    width: 60%;
  }
}
@media screen and (max-width: 1000px) {
  #header .ham-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
  }
  #header .ham-btn .tcon-menu--xcross {
    font-size: 1rem;
  }
}
#header .Menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  #header .Menu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#header .contact {
  padding: 0px;
  margin: 0 10px 0 0px;
  font-size: clamp(11px, 1.4vw, 18px);
  line-height: 1;
  white-space: nowrap;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
  #header .contact {
    margin: 0 10px 0 0px;
  }
}
@media screen and (max-width: 412px) {
  #header .contact {
    margin: 0 5px 0 0px;
  }
}
#header .contact a {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  display: block;
  font-weight: 600;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  color: #fff;
  border-radius: 8px;
  background: #000;
}
@media screen and (max-width: 1000px) {
  #header .contact a {
    display: block;
    border-radius: 4px;
    text-align: center;
    padding: 10px 10px;
  }
}
@media screen and (max-width: 412px) {
  #header .contact a {
    padding: 10px 8px;
    border: 1px solid #fff;
  }
}
#header .contact a:hover {
  opacity: 0.6;
  text-decoration: none;
}
#header .contact .entry {
  background: #FBCF5D;
  border: none;
  /*box-shadow: 0px 6px 0px 0px rgba(98, 6, 6, 1);*/
  padding: 12px 20px 12px 15px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  #header .contact .entry {
    padding: 12px 15px 12px 8px;
    /*box-shadow: 0px 4px 0px 0px rgba(98, 6, 6, 1);*/
  }
}
@media screen and (max-width: 412px) {
  #header .contact .entry {
    padding: 11px 14px 11px 8px;
  }
}
#header .contact .entry::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 5px solid #fff;
}
#header .h_nav .g_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: clamp(1rem, 0.95rem + 0.19vw, 1.125rem);
  margin: 0 0px 0 0;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  #header .h_nav .g_nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin: 0 0px 0 0;
  }
}
#header .h_nav .g_nav li {
  padding: 0px 0.8rem 0 0.8rem;
}
@media screen and (max-width: 1000px) {
  #header .h_nav .g_nav li {
    padding: 0.2rem 0;
  }
}
#header .h_nav .g_nav li a {
  padding: 0rem 0rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  font-weight: 500;
  color: #000;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
#header .h_nav .g_nav li a:hover {
  opacity: 0.6;
  text-decoration: none;
}
@media screen and (max-width: 1000px) {
  #header .h_nav {
    width: 100%;
    height: 100vh;
    padding: 100px 0;
    background-color: #299888;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0);
            transform: scale(0);
    overflow-y: auto;
  }
  #header .h_nav .g_nav {
    text-align: center;
    margin: -1.1363636364em 0;
  }
  #header .h_nav .g_nav li {
    font-size: clamp(1rem, 0.95rem + 0.19vw, 1.125rem);
  }
  #header .h_nav .g_nav li a {
    padding: 1rem 0;
    font-weight: 500;
    display: block;
    color: #fff;
  }
}
@media screen and (max-width: 1000px) {
  #header.nav_active .ham-btn .tcon-menu__lines::after, #header.nav_active .ham-btn .tcon-menu__lines::before {
    background-color: #000;
  }
  #header.nav_active .h_nav {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.over {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: easeInOutQuad;
          transition-timing-function: easeInOutQuad;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.over:hover {
  opacity: 0.6;
}

/*TOP-------------------------------------------------------------------------------
------------------------------------------------------------------------------------*/
#top {
  text-align: center;
  /* ----------MV---------------------------------------------------------------------*/
  /* ---------syukai---------------------------------------------------------------------*/
  /* ---------hope---------------------------------------------------------------------*/
  /* ---------policy---------------------------------------------------------------------*/
  /* ---------profile---------------------------------------------------------------------*/
  /* ---------support---------------------------------------------------------------------*/
  /* ---------supporters---------------------------------------------------------------------*/
  /* ---------office---------------------------------------------------------------------*/
}
#top p {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.56vw, 1.5rem);
  line-height: 1.9;
}
#top h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 1.625rem + 1.67vw, 3.125rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin: 1rem auto;
  line-height: 1.9;
  display: block;
}
@media screen and (max-width: 1000px) {
  #top h2 {
    margin: 10px auto;
    letter-spacing: 0.05rem;
    line-height: 1.9;
  }
}
#top h2 small {
  font-size: 60%;
}
#top h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.625rem, 1.375rem + 1.11vw, 2.375rem);
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin: 1rem auto;
  line-height: 1.9;
  display: block;
  color: #4395D0;
}
#top #mv {
  width: 100vw;
  z-index: -1;
  padding: 80px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#top #mv .imgBox {
  width: 65vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #299888;
}
#top #mv .imgBox strong {
  position: absolute;
  bottom: 3%;
  left: 3%;
  display: block;
  text-align: left;
  color: #fff;
  font-size: clamp(1.5rem, 0.958rem + 2.41vw, 3.125rem);
  text-shadow: #000 1px 1px 5px;
  letter-spacing: 0.1rem;
  font-weight: 800;
}
#top #mv .imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #mv .textBox {
  width: 35vw;
  background-color: #299888;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top #mv .textBox img {
  height: 90%;
  margin: 0 auto;
}
#top #mv .textBox .circle {
  position: absolute;
  bottom: 3%;
  right: 95%;
  -webkit-transform: translate(0%, 0);
          transform: translate(0%, 0);
}
#top #mv .textBox .circle img {
  width: 20vw;
  height: auto;
}
@media screen and (max-width: 1000px) {
  #top #mv {
    padding: 60px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #top #mv .imgBox {
    width: 100vw;
    height: 500px;
  }
  #top #mv .imgBox strong {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    right: 3%;
    bottom: inherit;
    top: 5%;
    text-shadow: #253704 1px 1px 5px;
  }
  #top #mv .textBox {
    width: 100vw;
  }
  #top #mv .textBox img {
    width: 90%;
    padding: 5vw 0;
  }
  #top #mv .textBox .circle {
    left: auto;
    left: 2%;
    bottom: 95%;
    -webkit-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
  #top #mv .textBox .circle img {
    padding: 0px 0;
    width: 30vw;
  }
}
@media screen and (max-width: 412px) {
  #top #mv .imgBox {
    height: 450px;
  }
}
#top .syukaibanner {
  padding: 0 0 0 0;
  width: 1000px;
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 1000px) {
  #top .syukaibanner {
    width: 90%;
  }
}
#top .syukaibanner img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#top .syukaibanner img:hover {
  opacity: 0.6;
}
#top #syukai {
  padding: 0px 0 80px 0;
}
@media screen and (max-width: 1000px) {
  #top #syukai {
    padding: 0px 0 40px 0;
  }
}
#top #syukai h2 {
  color: #299888;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  #top #syukai h2 {
    line-height: 1.5;
    padding: 0 0 0.5rem 0;
  }
}
#top #syukai .att {
  font-size: clamp(1rem, 0.958rem + 0.19vw, 1.125rem);
}
#top #syukai .syukai-box {
  width: 800px;
  margin: 40px auto;
  padding: 1% 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  border: 5px solid #9FC9C3;
}
@media screen and (max-width: 1000px) {
  #top #syukai .syukai-box {
    width: 90%;
    padding: 0% 5%;
  }
}
#top #syukai .syukai-box ul {
  padding: 0;
  margin: 0;
}
#top #syukai .syukai-box li {
  padding: 4% 0;
  border-bottom: 5px solid #9FC9C3;
}
#top #syukai .syukai-box li:last-child {
  border: none;
}
@media screen and (max-width: 1000px) {
  #top #syukai .syukai-box li {
    padding: 7% 0;
  }
}
#top #syukai .syukai-box li .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #top #syukai .syukai-box li .time {
    gap: 10px;
  }
}
#top #syukai .syukai-box li .time span {
  background: #E9832C;
  display: inline-block;
  color: #fff;
  font-size: clamp(1rem, 0.792rem + 0.93vw, 1.625rem);
  padding: 0 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#top #syukai .syukai-box li .time span b {
  font-size: 140%;
  font-weight: 500;
}
#top #syukai .syukai-box li .time strong {
  display: inline-block;
  color: #E9832C;
  font-size: clamp(1.375rem, 1.125rem + 1.11vw, 2.125rem);
}
#top #syukai .syukai-box li .title {
  font-size: clamp(1.688rem, 1.375rem + 1.39vw, 2.625rem);
  padding: 2rem 0 1rem 0;
  font-weight: 800;
}
#top #syukai .syukai-box li .title small {
  display: block;
  font-size: 80%;
  font-weight: 500;
}
#top #syukai .syukai-box li .title b {
  font-size: 120%;
  color: #299888;
}
@media screen and (max-width: 1000px) {
  #top #syukai .syukai-box li .title {
    padding: 1rem 0;
  }
}
#top #syukai .syukai-box li table th {
  font-size: clamp(1rem, 0.917rem + 0.37vw, 1.25rem);
  line-height: 1.8;
  padding: 0 0 0.5rem 0;
  width: 18%;
  vertical-align: top;
}
#top #syukai .syukai-box li table td {
  font-size: clamp(1rem, 0.917rem + 0.37vw, 1.25rem);
  line-height: 1.5;
  padding: 0 0 0.5rem 0;
}
#top #syukai .syukai-box li table td strong {
  display: inline-block;
  font-size: 180%;
  line-height: 1;
}
#top #syukai .syukai-box li table td .kaijyo {
  font-size: 120%;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  #top #syukai .syukai-box li table td .kaijyo {
    font-size: 110%;
  }
}
#top #hope {
  padding: 80px 0;
}
@media screen and (max-width: 1000px) {
  #top #hope {
    padding: 40px 0;
  }
}
#top #hope p {
  text-align: left;
  line-height: 2.1;
}
#top #hope h2 {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  #top #hope h2 {
    line-height: 1.6;
  }
}
#top #hope h3 {
  padding: 2rem 0 0rem 0;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  #top #hope h3 {
    padding: 1rem 0 0rem 0;
    line-height: 1.6;
  }
}
#top #hope img {
  width: 100%;
  margin: 1rem auto;
  height: auto;
}
#top #hope .widthS {
  width: 60%;
}
@media screen and (max-width: 1000px) {
  #top #hope .widthS {
    width: 100%;
  }
}
#top #policy {
  padding: 80px 0 40px 0;
  background-color: #299888;
}
@media screen and (max-width: 1000px) {
  #top #policy {
    padding: 40px 0 5px 0;
  }
}
#top #policy h2 {
  color: #fff;
  line-height: 1.3;
  padding: 0px 0 0px 0;
}
@media screen and (max-width: 1000px) {
  #top #policy h2 {
    display: block;
    padding: 0px 0 10px 0;
    line-height: 1.3;
  }
}
#top #policy h2 strong {
  color: #FBCF5D;
  font-size: 200%;
}
#top #policy .mi {
  margin: 0 0 20px 0;
  background: #fff;
  border-radius: 40px;
  display: inline-block;
  padding: 1% 4%;
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + 0.56vw, 1.5rem);
  color: #299888;
}
@media screen and (max-width: 1000px) {
  #top #policy .mi {
    width: 80%;
    padding: 2%;
  }
}
#top #policy .challenge-section {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 2% 8%;
  text-align: center;
  width: 100%;
  margin: 80px auto 80px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  #top #policy .challenge-section {
    padding: 2% 5%;
    margin: 40px auto 60px auto;
  }
}
#top #policy .challenge-section .badge {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #FBCF5D;
  color: #299888;
  font-size: clamp(2.5rem, 2.292rem + 0.93vw, 3.125rem);
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  #top #policy .challenge-section .badge {
    width: 60px;
    height: 60px;
  }
}
#top #policy .challenge-section .tag {
  display: inline-block;
  background: #299888;
  color: #fff;
  padding: 1%;
  width: 100%;
  border-radius: 4px;
  margin: 30px auto 0 auto;
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + 0.56vw, 1.5rem);
}
@media screen and (max-width: 1000px) {
  #top #policy .challenge-section .tag {
    margin: 40px auto 0 auto;
    padding: 2% 0;
  }
}
#top #policy .challenge-section .title {
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 1000px) {
  #top #policy .challenge-section .title {
    line-height: 1.6;
  }
}
#top #policy .challenge-section .title .highlight-primary {
  color: #299888;
}
#top #policy .challenge-section .title .highlight-accent {
  color: #E9832C;
}
#top #policy .challenge-section .subtitle {
  font-size: clamp(1.375rem, 1.167rem + 0.93vw, 2rem);
  color: #299888;
  margin: 0 0 20px;
  font-weight: 800;
}
@media screen and (max-width: 1000px) {
  #top #policy .challenge-section .subtitle {
    letter-spacing: 0.05rem;
    line-height: 1.6;
  }
}
#top #policy .challenge-section .description {
  text-align: left;
  line-height: 2.1;
}
#top #prof {
  padding: 0 0 100px 0;
}
@media screen and (max-width: 1000px) {
  #top #prof {
    padding: 0px 0 40px 0;
  }
}
#top #prof .profile-section {
  text-align: left;
  background: #4395D0;
  color: #fff;
  padding: 5%;
  border-radius: 10px;
  margin: 0 auto;
}
#top #prof .profile-section h2 {
  margin-bottom: 5%;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section h2 {
    line-height: 1.6;
    text-align: center;
  }
}
#top #prof .profile-section h2 .name {
  font-size: 110%;
}
#top #prof .profile-section .profile-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
#top #prof .profile-section .profile-content .profile-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 65%;
          flex: 1 1 65%;
  line-height: 2.1;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section .profile-content .profile-text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
#top #prof .profile-section .profile-content .profile-photo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  text-align: center;
  margin: -100px 0 0 0;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section .profile-content .profile-photo {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    margin: 0px 0 0 0;
  }
}
#top #prof .profile-section .profile-content .profile-photo img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section .profile-content .profile-photo img {
    width: 60%;
  }
}
#top #prof .profile-section .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section .gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top #prof .profile-section .gallery div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#top #prof .profile-section .gallery div img {
  width: 100%;
  height: auto;
}
#top #prof .profile-section .gallery div p {
  font-size: clamp(1rem, 0.917rem + 0.37vw, 1.25rem);
  color: #fff;
  text-align: center;
  padding: 0;
  margin: 0;
  line-height: 1.6;
}
#top #prof .profile-section .career-table {
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 3% 5%;
  margin: 60px 0 20px 0;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section .career-table {
    padding: 5%;
  }
}
#top #prof .profile-section .career-table h3 {
  text-align: center;
  color: #4395D0;
  margin: 0 0 1rem 0;
}
#top #prof .profile-section .career-table table {
  width: 100%;
  border-collapse: collapse;
}
#top #prof .profile-section .career-table table th {
  width: 15%;
  padding: 3% 3% 3% 0;
  border-top: 1px solid #ccc;
  vertical-align: top;
  font-size: clamp(1.125rem, 1rem + 0.56vw, 1.5rem);
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section .career-table table th {
    display: block;
    width: 100%;
    padding: 3% 0% 3% 0;
  }
}
#top #prof .profile-section .career-table table td {
  padding: 3% 3% 3% 0;
  width: 85%;
  border-top: 1px solid #ccc;
  vertical-align: top;
  font-size: clamp(1.125rem, 1rem + 0.56vw, 1.5rem);
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  #top #prof .profile-section .career-table table td {
    padding: 0% 0% 3% 0;
    display: block;
    width: 100%;
    border-top: none;
  }
}
#top #support {
  padding: 100px 0;
}
@media screen and (max-width: 1000px) {
  #top #support {
    padding: 40px 0;
  }
}
#top #support .inner {
  border: 10px solid #1F64C3;
  border-radius: 10px;
  padding: 5% 10%;
}
@media screen and (max-width: 1000px) {
  #top #support .inner {
    border: 8px solid #1F64C3;
    padding: 8% 5%;
  }
}
#top #support .inner strong {
  color: #1F64C3;
  line-height: 2.1;
  font-size: clamp(1.25rem, 1.083rem + 0.74vw, 1.75rem);
}
@media screen and (max-width: 1000px) {
  #top #support .inner strong {
    line-height: 1.9;
  }
}
#top #support .inner h2 {
  color: #1F64C3;
  line-height: 1.9;
  margin: 2rem 0 0 0;
  font-weight: 800;
}
@media screen and (max-width: 1000px) {
  #top #support .inner h2 {
    line-height: 1.6;
    margin: 1rem 0 0 0;
  }
}
#top #support .inner p {
  text-align: left;
  line-height: 2.1;
}
#top #support .inner .name {
  text-align: right;
  display: block;
  font-weight: 600;
  color: #1F64C3;
  font-size: clamp(1.125rem, 1rem + 0.56vw, 1.5rem);
  margin: 40px auto;
}
#top #support .inner .phbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#top #support .inner .phbox .box {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#top #support .inner .phbox .box img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  #top #support .inner .phbox .box {
    width: 100%;
  }
}
#top #support .inner .phbox .box .comm {
  display: block;
  padding: 0.5rem 0 1rem 0;
  font-size: clamp(1rem, 0.917rem + 0.37vw, 1.25rem);
}
#top #supporters {
  padding: 60px 0 80px 0;
  background-color: #E0F4FD;
}
@media screen and (max-width: 1000px) {
  #top #supporters {
    padding: 30px 0 40px 0;
  }
}
#top #supporters h2 {
  color: #1F64C3;
  line-height: 1.9;
}
@media screen and (max-width: 1000px) {
  #top #supporters h2 {
    line-height: 1.6;
  }
}
#top #supporters p {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.125rem, 1rem + 0.56vw, 1.5rem);
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #top #supporters p {
    text-align: left;
  }
}
#top #supporters .donation {
  margin: 40px 0 0 0;
  background: #f8fbfc;
  padding: 5% 5% 5% 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  #top #supporters .donation {
    margin: 20px 0 0 0;
    padding: 6% 4%;
  }
}
#top #supporters .donation .naiyo {
  display: none;
}
#top #supporters .donation p {
  text-align: left;
  font-size: clamp(1.125rem, 1.042rem + 0.37vw, 1.375rem);
  font-weight: 400;
}
#top #supporters .donation .mi {
  font-size: clamp(1.25rem, 1rem + 1.11vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  display: block;
  cursor: pointer;
  position: relative;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
#top #supporters .donation .mi::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: #000 4px solid;
  border-right: #000 4px solid;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: 2%;
  top: 0;
  bottom: 15%;
  margin: auto;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media screen and (max-width: 1000px) {
  #top #supporters .donation .mi::after {
    width: 10px;
    height: 10px;
  }
}
#top #supporters .donation .mi:hover {
  color: #1F64C3;
}
#top #supporters .donation .show::after {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
#top #supporters .donation .attention {
  margin: 60px 0;
}
@media screen and (max-width: 1000px) {
  #top #supporters .donation .attention {
    margin: 30px 0;
  }
}
#top #supporters .donation .attention ul {
  margin: 0.5rem 0 0.5rem -1rem;
}
#top #supporters .donation .attention ul li {
  text-align: left;
  list-style: disc;
  padding: 1% 0 1% 0;
  font-size: clamp(1.063rem, 1rem + 0.28vw, 1.25rem);
  line-height: 1.9;
  font-weight: 400;
}
#top #supporters .donation .rec {
  text-align: center;
  font-weight: 700;
  color: #1F64C3;
}
#top #supporters .donation .recp {
  text-align: center;
  line-height: 2.1;
  margin: 1rem 0;
  padding: 0;
  color: #1F64C3;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  #top #supporters .donation .recp {
    text-align: left;
    line-height: 1.9;
  }
}
#top #supporters .support-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3% 5%;
  width: 60%;
  font-size: clamp(1.5rem, 1.208rem + 1.3vw, 2.375rem);
  font-weight: bold;
  color: #1F64C3;
  border: 4px solid #1F64C3;
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ffffff), color-stop(50%, #f3f9fd));
  background: linear-gradient(to bottom, #ffffff 50%, #f3f9fd 50%);
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  gap: 20px;
  margin: 30px auto 30px auto;
}
@media screen and (max-width: 1000px) {
  #top #supporters .support-button {
    width: 90%;
    padding: 5% 2%;
    margin: 20px auto 20px auto;
    gap: 10px;
  }
}
#top #supporters .support-button:hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #1F64C3), color-stop(50%, #1F64C3));
  background: linear-gradient(to bottom, #1F64C3 50%, #1F64C3 50%);
  color: #fff;
  border-color: #154db8;
}
#top #supporters .dona {
  background: #1F64C3;
  color: #fff;
}
#top #supporters .dona:hover {
  background: #1F64C3;
  color: #fff;
  opacity: 0.6;
}
#top #supporters .arrow {
  font-size: clamp(1.25rem, 1.083rem + 0.74vw, 1.75rem);
  line-height: 1;
}
#top #office {
  padding: 60px 0 10px 0;
}
@media screen and (max-width: 1000px) {
  #top #office {
    padding: 30px 0 5px 0;
  }
}
#top #office .contact-box {
  background: #1F64C3;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  padding: 1% 5% 2% 5%;
  margin: 0 auto;
  text-align: center;
}
#top #office .contact-box h3 {
  color: #fff;
  line-height: 1.6;
  font-size: clamp(1.25rem, 1.208rem + 0.19vw, 1.375rem);
  letter-spacing: 0.05rem;
  margin: 20px 0 20px 0;
}
@media screen and (max-width: 1000px) {
  #top #office .contact-box h3 {
    margin: 20px 0 10px 0;
  }
}
#top #office .contact-box strong {
  color: #fff;
  line-height: 1.6;
  display: block;
  font-size: clamp(0.938rem, 0.917rem + 0.09vw, 1rem);
}
#top #office .contact-box .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 20px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  #top #office .contact-box .contact-info {
    gap: 10px;
  }
}
#top #office .contact-box .contact-info .line-box {
  background: #6BC11E;
  color: #fff;
  padding: 1% 1% 0% 1%;
  border-radius: 10px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1000px) {
  #top #office .contact-box .contact-info .line-box {
    padding: 2% 2% 0% 2%;
  }
}
#top #office .contact-box .contact-info .line-box img {
  width: 25%;
  height: auto;
}
#top #office .contact-box .contact-info .line-box p {
  font-weight: 600;
  font-size: clamp(0.938rem, 0.875rem + 0.28vw, 1.125rem);
  margin: 0;
  padding: 0 0rem 0.5rem 0;
  line-height: 1.6;
}
#top #office .contact-box .contact-info .contact-access {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  #top #office .contact-box .contact-info .contact-access {
    gap: 10px;
  }
}
#top #office .contact-box .contact-info .box {
  background: #fff;
  color: #1F64C3;
  border-radius: 10px;
  padding: 1%;
  text-align: center;
}
#top #office .contact-box .contact-info .box .label {
  font-size: clamp(1rem, 0.958rem + 0.19vw, 1.125rem);
  font-weight: 500;
  padding: 0;
  margin: 0;
}
#top #office .contact-box .contact-info .box .value {
  padding: 0;
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0;
  font-size: clamp(0.938rem, 0.875rem + 0.28vw, 1.125rem);
}
#top #office .contact-box .contact-info .box .tel {
  font-size: 105%;
}
#top #office .contact-box .contact-info .box a {
  color: #1F64C3;
}

/* ----------footer---------------------------------------------------------------------*/
footer {
  width: 100%;
  text-align: center;
  padding: 20px 0 30px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  footer {
    margin: 0px auto;
    width: 96%;
  }
}
footer .fmenu {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 200;
  font-size: clamp(0.875rem, 0.825rem + 0.19vw, 1rem);
  padding: 0px 0 0 0;
  text-align: center;
  font-weight: 400;
  line-height: 1.9;
}
footer .fmenu a {
  white-space: nowrap;
}
footer .logo {
  padding: 0 0 0px 0;
  margin: 20px auto;
}
@media screen and (max-width: 1000px) {
  footer .logo {
    padding: 0 0 0px 0;
    margin: 10px auto;
  }
}
footer .logo img {
  width: 225px;
}
@media screen and (max-width: 1000px) {
  footer .logo img {
    width: 40%;
  }
}
footer .copyright {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(9px, 1.5vw, 12px);
  color: #000;
  padding: 1rem 0;
  text-align: center;
}