@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
/* difinition list-------------------------------------------------- */
.flexBox {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* breakpoint */
html {
  overflow: scroll;
}

html, body {
  width: 100%;
  height: 100%;
}

.inner {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  *zoom: 1;
}
.inner:after {
  content: "";
  display: table;
  clear: both;
}

.innerNarrow {
  max-width: 900px;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 99999999;
}
#loading img {
  display: block;
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -25px 0 0 -25px;
}

.arrow-link {
  text-decoration: none;
  position: relative;
  padding-left: 23px;
  line-height: 1.3em;
  display: inline-block;
}
.arrow-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #2e97ff;
  background: url(../img/arrow_r.svg) no-repeat center center;
  background-size: 4.5px;
  transition: background 0.3s;
}
.arrow-link:hover {
  text-decoration: underline;
}
.arrow-link:hover:before {
  background-image: url(../img/arrow_w_r.svg);
  background-color: #2e97ff;
}

/* header---------------------------------------------------------- */
#siteLogo {
  width: 111px;
  height: 390px;
  position: absolute;
  left: calc(50% - 56px);
  top: 8vh;
  z-index: 2000;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  #siteLogo {
    width: 80px !important;
    background: none;
    left: calc(50% - 40px);
  }
}
@media screen and (max-width: 700px) {
  #siteLogo {
    top: 4vh;
    width: 60px !important;
    left: calc(50% - 30px);
  }
}
@media screen and (max-width: 1000px) {
  #siteLogo img {
    display: block;
    width: 100%;
  }
}
#siteLogo a {
  position: relative;
  left: unset;
  top: unset;
  display: block;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.05em;
  letter-spacing: 0.08em;
}
#siteLogo a img {
  width: 111px;
  height: 390px;
}
@media screen and (max-width: 1000px) {
  #siteLogo a {
    background: none !important;
    width: 100%;
  }
  #siteLogo a img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 820px) {
  #siteLogo a {
    padding-top: 15px;
  }
}
@media screen and (max-width: 700px) {
  #siteLogo a {
    font-size: 20px;
  }
}
#siteLogo a span {
  display: block;
  color: #000;
  font-size: 12px;
  letter-spacing: normal;
}
@media screen and (max-width: 700px) {
  #siteLogo a span {
    font-size: 11px;
    color: #555;
  }
}

.catchCopy {
  position: absolute;
  left: calc(50% - 2em);
  top: calc(10vh + 430px);
  color: #fff;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 2em;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  z-index: 1000;
  height: 285px;
}
@media screen and (max-width: 1000px) {
  .catchCopy {
    line-height: 2em;
    top: calc(10vh + 310px);
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 700px) {
  .catchCopy {
    left: 5%;
    top: 5vh;
    line-height: 1.7em;
  }
}

#header {
  background: transparent;
  z-index: 9999;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
#header .headerInner ul.gNavi {
  display: none;
}
#header .headerInner #siteFunction {
  right: unset;
  left: 0;
}
#header .headerInner #siteFunction .siteFunc #bgColorChanger .bgColorLabel {
  color: #fff;
  text-shadow: 0 0 3px #000;
}
@media screen and (max-width: 700px) {
  #header .headerInner #siteFunction .siteFunc #bgColorChanger .bgColorLabel {
    color: #000;
    text-shadow: unset;
  }
}
#header .headerInner #siteFunction .siteFunc #fontSizeChanger .fontSizeLabel {
  color: #fff;
  text-shadow: 0 0 3px #000;
}
@media screen and (max-width: 700px) {
  #header .headerInner #siteFunction .siteFunc #fontSizeChanger .fontSizeLabel {
    color: #000;
    text-shadow: unset;
  }
}
#header #searchButton {
  display: none;
}
@media screen and (max-width: 700px) {
  #header #searchButton {
    display: block;
  }
}
#header .mainContents {
  display: none !important;
}

/* toppage--------------------------------------------------------- */
#branding {
  z-index: 0;
  width: 100%;
}
#branding .mainCopy {
  padding: 0 0 3em;
  text-align: center;
}
#branding .mainCopy h2.lead {
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  color: #000;
  font-weight: bold;
  padding: 0 0 0.5em;
}
@media screen and (max-width: 820px) {
  #branding .mainCopy h2.lead {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 700px) {
  #branding .mainCopy h2.lead {
    font-size: 1.8rem;
  }
}
#branding .mainCopy h2.lead em {
  color: #087E3A;
}
#branding .mainCopy p {
  padding: 1em 0;
  line-height: 1.5em;
}
#branding #slideShow {
  margin: 0;
  padding: 0;
}
#branding #slideShow li {
  width: 100vw;
  height: 100vh;
  max-height: 1050px;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  box-sizing: border-box;
  z-index: -999;
}
@media screen and (max-width: 1000px) {
  #branding #slideShow li {
    height: 75vh;
  }
}
@media screen and (max-width: 700px) {
  #branding #slideShow li {
    height: 50vh;
  }
}
#branding #slideShow li span {
  position: absolute;
  right: 2em;
  bottom: 2em;
  font-size: 0.9rem;
  color: #fff;
  text-shadow: 0 0 3px #000, 0 0 4px #000, 0 0 5px #000;
}
@media screen and (max-width: 820px) {
  #branding #slideShow li span {
    font-size: 0.8rem;
    right: 1em;
    bottom: 1em;
  }
}
#branding #indexMain {
  display: block;
  position: absolute;
  width: 200px;
  left: -5px;
  top: 200px;
}
@media screen and (max-width: 1000px) {
  #branding #indexMain {
    position: absolute;
    top: 100px;
  }
}
@media screen and (max-width: 820px) {
  #branding #indexMain {
    width: 150px;
  }
}
@media screen and (max-width: 700px) {
  #branding #indexMain {
    display: none;
  }
}
#branding #indexMain li {
  padding: 0.8rem 0;
}
#branding #indexMain li img {
  width: 100%;
  box-shadow: 0 0 10px #fff;
  border-radius: 0 15px 15px 0;
}
#branding .homeContent {
  max-width: 330px;
  width: 90%;
  position: absolute;
  right: 5%;
  top: 15%;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
  #branding .homeContent {
    top: 10%;
    right: 1rem;
    width: 140px;
  }
}
#branding .homeContent .newsUnit {
  border: 2px solid #087E3A;
  background-color: #fff;
  padding: 1.7rem 0.3rem 1rem 1.8rem;
  position: relative;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1000px) {
  #branding .homeContent .newsUnit {
    display: none;
  }
}
#branding .homeContent .newsUnit h3 {
  background-color: #087E3A;
  color: #fff;
  font-size: 1.25rem;
  white-space: nowrap;
  letter-spacing: 0.2em;
  padding: 0.4em 1.5em 0.6em;
  position: absolute;
  left: 50%;
  top: -1em;
  transform: translate(-50%, 0);
}
#branding .homeContent .newsUnit .topRecentList {
  margin: 0 0 1rem;
  padding: 0 0.2rem 0 0;
  overflow-y: scroll;
  height: 16rem;
}
#branding .homeContent .newsUnit .topRecentList li {
  padding: 0.5rem 0;
  font-size: 1em;
  line-height: 1.4em;
}
#branding .homeContent .newsUnit .topRecentList li time {
  display: block;
  background-color: #878787;
  color: #fff;
  font-size: 0.85em;
  border-radius: 0.3em;
  width: 6.5em;
  padding: 0rem 0.1rem 0.05rem;
  text-align: center;
  margin-bottom: 0.5em;
  line-height: 1.7em;
}
#branding .homeContent .newsUnit .backNumber {
  text-align: right;
  padding: 0 1em 0 0;
}
#branding .homeContent .homeContentBottom {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
@media screen and (max-width: 1000px) {
  #branding .homeContent .homeContentBottom {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  #branding .homeContent .homeContentBottom {
    display: none;
  }
}
#branding .homeContent .homeContentBottom .searchButton {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  #branding .homeContent .homeContentBottom .searchButton {
    width: 100%;
  }
}
#branding .homeContent .homeContentBottom .searchButton a {
  display: block;
  padding: 0;
  text-align: center;
  color: #087E3A;
  background-color: #fff;
  font-size: 1.5rem;
}
#branding .homeContent .homeContentBottom .searchButton a span {
  display: inline-block;
  background-image: url(../img/icon_search.svg);
  background-repeat: no-repeat;
  background-size: 1.5em;
  background-position: left center;
  padding: 0.6em 0 0.7em 1.9em;
}
#branding .homeContent .homeContentBottom .socialLink {
  width: 45%;
  margin-top: 0.65rem;
  list-style-type: none;
}
@media screen and (max-width: 1000px) {
  #branding .homeContent .homeContentBottom .socialLink {
    width: 100%;
    margin-bottom: 1rem;
    justify-content: space-around;
  }
}

.socialLink {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
}
.socialLink li {
  border-right: 1px solid #000;
  padding-right: 20px;
}
.socialLink li img {
  height: 32px;
}
.socialLink li:last-child {
  border: none;
  padding-left: 20px;
}
.socialLink #globalNavigation {
  position: absolute;
  left: 0;
  top: 25px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation {
    display: none;
    left: 0;
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 95%;
    z-index: 9999;
    overflow-y: scroll;
  }
}
.socialLink #globalNavigation ul#mainMenu {
  width: fit-content;
  margin-left: auto;
  padding-right: 20px;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu {
    width: auto;
    padding: 5em 1em 0;
    margin: 0;
  }
}
.socialLink #globalNavigation ul#mainMenu li {
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li {
    display: block;
  }
}
.socialLink #globalNavigation ul#mainMenu li.home, .socialLink #globalNavigation ul#mainMenu li.others {
  display: none;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li.home, .socialLink #globalNavigation ul#mainMenu li.others {
    display: block;
  }
}
.socialLink #globalNavigation ul#mainMenu li.topLevel a.hover:after {
  content: "";
  display: block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid #087E3A;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
.socialLink #globalNavigation ul#mainMenu li a {
  display: block;
  padding: 1.1em;
  font-size: 1em;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #000;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li a {
    font-size: 1.2em;
    padding: 1em 0;
    border-top: 1px solid #087e3a;
    background: url(../img/arrow_r.svg) no-repeat right center;
    background-size: 0.5em;
  }
}
.socialLink #globalNavigation ul#mainMenu li a:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background-color: #087E3A;
  transition: all 0.2s cubic-bezier(0.8, 0, 0.2, 1);
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li a:after {
    display: none;
  }
}
.socialLink #globalNavigation ul#mainMenu li a:before {
  content: "";
  position: absolute;
  top: 3.2em;
  left: 0;
  width: 1px;
  height: 0px;
  transition: height 0.2s cubic-bezier(0.8, 0, 0.2, 1);
  transition-delay: 0.2s;
  background-color: #087E3A;
  z-index: 5555;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li a:before {
    display: none;
  }
}
.socialLink #globalNavigation ul#mainMenu li a:hover:after {
  width: 100%;
  left: 0;
}
.socialLink #globalNavigation ul#mainMenu li a.hover:after {
  width: 100%;
  left: 0;
}
.socialLink #globalNavigation ul#mainMenu li a.hover:before {
  height: 30px;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu {
  position: absolute;
  border-bottom: 1px solid #087e3a;
  left: 0;
  top: 47px;
  width: 100%;
  height: auto;
  max-height: 28px;
  z-index: 1100;
  display: none;
  background-color: #fff;
  transition: max-height 0.4s ease-in-out;
  transition-delay: 0.3s;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li .subMenu {
    display: block;
    position: relative;
    left: unset;
    top: unset;
    max-height: unset;
    pointer-events: auto;
    border-bottom: 0;
  }
}
@media screen and (max-width: 700px) {
  .socialLink #globalNavigation ul#mainMenu li .subMenu {
    display: none;
  }
}
.socialLink #globalNavigation ul#mainMenu li .subMenu.smopen {
  pointer-events: auto;
  height: auto;
  max-height: 90vh;
  transition: max-height 0.4s ease-in-out;
  transition-delay: 0.3s;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .menuTitle {
  font-size: 1.2rem;
  margin-top: -1px;
  padding-bottom: 1em;
  color: #087E3A;
  border-top: 1px solid #087E3A;
  padding-top: 1em;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li .subMenu .menuTitle {
    display: none;
  }
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner {
  padding: 2em 4em 4em;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li .subMenu .smInner {
    padding: 0 1em 1em;
  }
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul {
  display: block;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li {
  display: block;
  padding: 0.4em 2% 0.4em 0;
  width: 18%;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li:last-child {
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li {
    padding: 0 3.3333% 0 0;
    width: 30%;
    visibility: visible;
  }
}
@media screen and (max-width: 700px) {
  .socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li {
    padding: 0 3% 0 0;
    width: 47%;
  }
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li a {
  text-decoration: none;
  position: relative;
  padding-left: 23px;
  line-height: 1.3em;
  display: inline-block;
  padding: 0.4em 0 0.4em 1.7em;
  border: 0;
  font-size: 0.9rem;
  letter-spacing: normal;
  background: none;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #2e97ff;
  background: url(../img/arrow_r.svg) no-repeat center center;
  background-size: 4.5px;
  transition: background 0.3s;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li a:hover {
  text-decoration: underline;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li a:hover:before {
  background-image: url(../img/arrow_w_r.svg);
  background-color: #2e97ff;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li a {
    font-size: 0.8rem;
  }
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li a:after {
  display: none;
}
.socialLink #globalNavigation ul#mainMenu li .subMenu .smInner ul li a:hover {
  text-decoration: none;
}
.socialLink #globalNavigation .outpatient {
  padding-bottom: 2em;
  display: none;
}
@media screen and (max-width: 1000px) {
  .socialLink #globalNavigation .outpatient {
    display: block;
  }
}

#wrapper {
  position: relative;
  z-index: 1;
  width: auto;
  padding: 0;
}

.unitBox {
  padding: 7rem 0;
  clear: both;
}
.unitBox .topUnitTitle {
  color: #087E3A;
  font-size: 2.5em;
  line-height: 1.3em;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .unitBox .topUnitTitle {
    font-size: 2em;
  }
}
@media screen and (max-width: 500px) {
  .unitBox .topUnitTitle {
    font-size: 1.8em;
  }
}
.unitBox .topUnitTitle small {
  display: block;
  color: #555;
  font-size: 0.4em;
  line-height: 2em;
  letter-spacing: normal;
}
.unitBox .moreInfo {
  text-align: center;
}

/* information -------------------------------------------- */
#information {
  padding-top: 4rem;
}
#information .recentList {
  padding-bottom: 3em;
}
#information .recentList li {
  width: 100%;
  padding: 1em 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.4em;
  background-image: linear-gradient(to right, #555, #555 2px, transparent 2px, transparent 8px);
  background-size: 8px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
#information .recentList li .update {
  border: 1px solid #087E3A;
  color: #087E3A;
  margin-right: 1em;
  font-size: 0.9em;
  border-radius: 0.5em;
  width: 9em;
  text-align: center;
  padding: 0.3em 0;
}
#information .recentList li .infoTitle {
  width: calc(100% - 11em);
  font-size: 1.1em;
}
@media screen and (max-width: 500px) {
  #information .recentList li .infoTitle {
    margin-top: 0.5em;
    width: 100%;
  }
}
#information .topfixed {
  border: 2px solid #087E3A;
  padding: 1em;
  margin-bottom: 1em;
}
#information .topfixed li {
  background: none;
  padding: 0.5em 0;
}
#information .topfixed li .update {
  background-color: #087E3A;
  color: #fff;
}

/* pickup -------------------------------------------- */
#pickup {
  position: relative;
  padding-top: 2rem;
}
#pickup .bx-wrapper {
  margin: 0 auto 70px;
}
#pickup #pu_carousel {
  padding-bottom: 3rem;
  position: relative;
  *zoom: 1;
}
#pickup #pu_carousel:after {
  content: "";
  display: table;
  clear: both;
}
#pickup #pu_carousel li {
  padding: 0 0 1rem;
}
#pickup #pu_carousel li a {
  display: block;
  position: relative;
  padding: 0 0.2rem;
}
#pickup #pu_carousel li a:hover {
  text-decoration: none;
}
#pickup #pu_carousel li a img {
  display: block;
  margin: 0 auto;
}
#pickup #pu_carousel li a .cp-caption {
  display: block;
  background-color: #fff;
  border-radius: 4rem;
  box-shadow: 0 0 5px #777;
  color: #000;
  margin-top: 1rem;
  padding: 1rem 2rem;
  text-decoration: none;
  line-height: 1.3em;
  z-index: 10;
  font-size: 0.85em;
  text-align: center;
}
@media screen and (max-width: 700px) {
  #pickup #pu_carousel li a .cp-caption {
    border-radius: 2rem;
    padding: 0.5rem 1rem;
  }
}
#pickup .pickup {
  *zoom: 1;
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
}
#pickup .pickup:after {
  content: "";
  display: table;
  clear: both;
}
#pickup .pickup li {
  display: inline;
  padding: 0 25px;
}
#pickup .pickup .slick-slide img {
  margin: 0 auto;
}
#pickup .slick-dots {
  bottom: -25px;
}

/* purpose -------------------------------------------- */
#purpose {
  background-color: #e3f3ea;
}
#purpose .purposeList {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
#purpose .purposeList li {
  width: 23%;
  margin: 0 0 1em;
  position: relative;
}
@media screen and (max-width: 500px) {
  #purpose .purposeList li {
    width: 32%;
  }
}
#purpose .purposeList li img {
  width: 100%;
  border-radius: 1em;
}
#purpose .purposeList li h3 {
  position: absolute;
  background-color: #fff;
  border-radius: 3em;
  color: #000;
  text-align: center;
  font-size: 1.3em;
  line-height: 1.3em;
  padding: 0.3em 1em;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0.7em;
  white-space: nowrap;
}
@media screen and (max-width: 700px) {
  #purpose .purposeList li h3 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  #purpose .purposeList li h3 {
    bottom: -0.5em;
  }
}

/* about -------------------------------------------- */
#about .aboutList {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-bottom: 8em;
  list-style-type: none;
}
#about .aboutList li {
  width: 22%;
}
@media screen and (max-width: 700px) {
  #about .aboutList li {
    width: 48%;
    margin-bottom: 2em;
  }
}
#about .aboutList li .aboutCircle {
  padding-bottom: 0.5em;
}
#about .aboutList li .aboutCircle a {
  display: block;
  margin: 0 auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #777;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  #about .aboutList li .aboutCircle a {
    width: 20vw;
    height: 20vw;
  }
}
@media screen and (max-width: 700px) {
  #about .aboutList li .aboutCircle a {
    width: 34vw;
    height: 34vw;
  }
}
#about .aboutList li .aboutCircle a span.aboutTitle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5), 0 0 3px rgb(0, 0, 0);
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  #about .aboutList li .aboutCircle a span.aboutTitle {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 700px) {
  #about .aboutList li .aboutCircle a span.aboutTitle {
    font-size: 4vw;
  }
}
#about .aboutList li .aboutCircle .municipal {
  background-image: url(../img/circle_municipal.jpg);
}
#about .aboutList li .aboutCircle .education {
  background-image: url(../img/circle_education.jpg);
}
#about .aboutList li .aboutCircle .disaster {
  background-image: url(../img/circle_disaster.jpg);
}
#about .aboutList li .aboutCircle .business {
  background-image: url(../img/circle_business.jpg);
}
#about .aboutList li p {
  padding: 1rem 1rem 0;
  line-height: 1.7em;
  font-size: 1.2em;
  text-align: center;
}
@media screen and (max-width: 820px) {
  #about .aboutList li p {
    font-size: 1em;
    padding: 0.5rem 0 0;
  }
}
#about .aboutOther {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  padding-bottom: 5em;
}
#about .aboutOther li {
  list-style-type: none;
  width: 32%;
  margin-bottom: 1.7rem;
}
@media screen and (max-width: 1000px) {
  #about .aboutOther li {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 820px) {
  #about .aboutOther li {
    width: 49%;
  }
}
@media screen and (max-width: 500px) {
  #about .aboutOther li {
    width: 100%;
  }
}
#about .aboutOther li a, #about .aboutOther li .aoInner {
  display: block;
  position: relative;
  border: 2px solid #087E3A;
  padding: 3.5rem 2rem;
}
#about .aboutOther li a h3, #about .aboutOther li .aoInner h3 {
  color: #087E3A;
  font-size: 1.6em;
}
#about .aboutOther li a:hover {
  text-decoration: none;
}
#about .aboutOther .mayor, #about .aboutOther .parliament {
  width: 49%;
}
@media screen and (max-width: 500px) {
  #about .aboutOther .mayor, #about .aboutOther .parliament {
    width: 100%;
  }
}
#about .aboutOther .mayor a:before {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  width: 118px;
  height: 170px;
  background: url(../img/about_mayor.png) no-repeat center center;
}
@media screen and (max-width: 820px) {
  #about .aboutOther .mayor {
    width: 100%;
  }
}
#about .aboutOther .parliament a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  box-sizing: border-box;
  background-image: url(../img/about_gikai.jpg);
}
#about .aboutOther .agencies a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../img/logo_asocity.svg) no-repeat center center;
  background-size: auto 50%;
}
#about .aboutOther .magazine a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../img/logo_magazine.svg) no-repeat center center;
  background-size: auto 50%;
}
#about .aboutOther .sns ul.snsList {
  width: 146px;
  height: 34px;
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translate(0, -50%);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: flex-start;
}
#about .aboutOther .sns ul.snsList li {
  width: 34px;
  height: 34px;
  margin: 0 0 0 12px;
}
#about .aboutOther .sns ul.snsList li a {
  border: 0;
  padding: 0;
}
#about .aboutOther .sns ul.snsList li a img {
  width: 100%;
}
#about .aboutBottom {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
#about .aboutBottom h4 {
  position: relative;
  color: #087E3A;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 700px) {
  #about .aboutBottom h4 {
    font-size: 1.2rem;
  }
}
#about .aboutBottom h4 em {
  display: inline-block;
  background-color: #fff;
  letter-spacing: 0.05em;
  padding: 0 1em;
  font-weight: bold;
  font-style: normal;
}
#about .aboutBottom h4:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #087E3A;
  top: 50%;
  left: 0;
  z-index: -1;
}
#about .aboutBottom .halfUnit {
  width: 48%;
  padding-bottom: 3em;
}
@media screen and (max-width: 820px) {
  #about .aboutBottom .halfUnit {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  #about .aboutBottom .halfUnit iframe {
    width: 90% !important;
    display: block;
    margin: 0 auto;
  }
}
#about .aboutBottom .aboutProfile {
  border: 1px solid #087E3A;
  border-radius: 1em;
  padding: 2em;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
}
#about .aboutBottom .aboutProfile .profileMap {
  width: calc(60% - 2em);
}
#about .aboutBottom .aboutProfile .profilePopulation h5 {
  color: #087E3A;
  font-size: 1.4rem;
  margin: 1em 0;
  text-align: center;
}
#about .aboutBottom .aboutProfile .profilePopulation .topPopulation {
  text-align: center;
}
#about .aboutBottom .aboutProfile .profilePopulation .topPopulation dt {
  margin: 1em 0 0.4em;
  padding: 0.2em;
  font-weight: bold;
  color: #fff;
  background-color: #777;
  border-radius: 0.2em;
}
#about .aboutBottom .aboutProfile .profilePopulation .topPopulation dd {
  font-size: 1.4em;
  text-shadow: 0 0 3px #fff, 0 0 3px #fff;
  color: #000;
}
#about .aboutBottom .aboutProfile .profilePopulation .topPopTime {
  font-size: 0.9em;
  padding-top: 2rem;
  text-align: center;
}

/* onlineService -------------------------------------------- */
#onlineService {
  background-color: #e3f3ea;
}
#onlineService .serviceList {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  list-style-type: none;
}
#onlineService .serviceList li {
  width: 23%;
  margin: 0 1% 2%;
}
@media screen and (max-width: 1000px) {
  #onlineService .serviceList li {
    width: 31%;
  }
}
@media screen and (max-width: 700px) {
  #onlineService .serviceList li {
    width: 48%;
  }
}
#onlineService .serviceList li a {
  display: block;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
#onlineService .serviceList li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  #onlineService .serviceList li a {
    padding: 1em;
  }
}
#onlineService .serviceList li a span.serviceIcon {
  display: block;
  width: 120px;
  margin: 0 auto;
}
#onlineService .serviceList li a span.serviceIcon img {
  width: 100%;
}
#onlineService .serviceList li a span.serviceLabel {
  color: #000;
  display: block;
  padding-top: 0.5rem;
  font-size: 1.2em;
  line-height: 1.4em;
}
@media screen and (max-width: 500px) {
  #onlineService .serviceList li a span.serviceLabel {
    font-size: 0.9em;
  }
}

/* videos -------------------------------------------- */
#videos .recentList {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  list-style: none;
  margin: 0 0 3em;
}
#videos .recentList li {
  width: 30%;
  list-style-type: none;
  position: relative;
}
#videos .recentList li .upDate {
  padding: 0 0 0.5rem;
}
@media screen and (max-width: 700px) {
  #videos .recentList li h3 {
    font-size: 1em;
  }
}
#videos .recentList li .thumbs {
  padding-bottom: 1em;
}
#videos .recentList li .thumbs img {
  width: 100%;
}
@media screen and (max-width: 820px) {
  #videos .recentList li {
    width: 48%;
  }
}
@media screen and (max-width: 820px) {
  #videos .recentList .item3 {
    display: none;
  }
}

/* banner -------------------------------------------- */
#banner {
  background: url(../img/banner_bg.jpg) no-repeat bottom center;
  background-size: 100%;
  padding: 15vw 0 7rem;
}
#banner .bannerList {
  text-align: center;
}
@media screen and (max-width: 700px) {
  #banner .bannerList {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-around;
  }
}
#banner .bannerList li {
  display: inline-block;
  padding: 0.5rem;
}
@media screen and (max-width: 700px) {
  #banner .bannerList li {
    padding: 2%;
    width: 46%;
  }
}

/* info------------------------------------------------------- */
ul.recentList {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  align-content: flex-start;
  list-style: none;
  margin: 0;
}
ul.recentList li {
  width: 30%;
  list-style-type: none;
  position: relative;
}
ul.recentList li a {
  display: block;
  position: relative;
  text-decoration: none !important;
}
ul.recentList li .itemImg {
  width: auto;
  margin-bottom: 7px;
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/noimg.png);
  background-color: #eee;
  overflow: hidden;
}
ul.recentList li .itemImg a {
  display: block;
}
ul.recentList li h3 {
  margin-bottom: 0.5em;
  padding: 0;
  font-weight: bold;
  line-height: 1.4em;
}
ul.recentList li .upDate {
  color: #087E3A;
  padding: 0.4rem 0 1rem;
  width: auto;
  font-size: 0.8em;
}
ul.recentList li a:hover .upDate {
  text-decoration: none;
}
ul.recentList li .itemTxt {
  font-size: 0.85em;
  line-height: 1.4em;
  padding: 0;
  color: #666;
  text-overflow: ellipsis;
}

/* container------------------------------------------------------- */
#container {
  width: 100%;
}
#container #contentsArea p {
  padding-bottom: 2em;
  line-height: 1.8em;
}
#container #contentsArea .recruitList {
  margin: 0;
  padding: 0 0 50px;
  *zoom: 1;
}
#container #contentsArea .recruitList:after {
  content: "";
  display: table;
  clear: both;
}
#container #contentsArea .recruitList li {
  float: left;
  margin: 0 10px 20px;
  width: 220px;
  list-style: none;
}
#container #contentsArea .recruitList li a {
  border-radius: 3px;
  padding: 20px;
  font-size: 120%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  display: block;
  background: #3d9d63;
}
#container #contentsArea .detailButton {
  padding: 0.5em 0;
}
#container .noteList {
  padding-bottom: 10px;
}
#container .noteList li {
  color: #666;
  font-size: 70%;
  line-height: 130%;
}
#container .noteList li:before {
  content: "※";
}

/* imageHeader */
#imageHeader {
  position: relative;
  padding: 18vh 0;
  line-height: 1.3em;
}
#imageHeader .ihBG {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 820px) {
  #imageHeader .inner {
    width: 90%;
    margin: 0 auto;
  }
}
#imageHeader h1 {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 0 0 4px #000;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}
#imageHeader .topLevelCopy {
  padding-top: 1.5em;
  color: #fff;
  text-shadow: 0 0 4px #000;
  letter-spacing: 0.05em;
}

/* responsive structure-------------------------------------------- */
@media print {
  #header {
    position: relative;
  }
}

/*# sourceMappingURL=index.css.map */
